class Azure::Resources::Mgmt::V2016_09_01::Models::DeploymentExtended
Deployment
information.
Attributes
id[RW]
@return [String] The ID of the deployment.
name[RW]
@return [String] The name of the deployment.
properties[RW]
@return [DeploymentPropertiesExtended] Deployment
properties.
Public Class Methods
mapper()
click to toggle source
Mapper for DeploymentExtended
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-09-01/generated/azure_mgmt_resources/models/deployment_extended.rb, line 29 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DeploymentExtended', type: { name: 'Composite', class_name: 'DeploymentExtended', model_properties: { id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: true, serialized_name: 'name', type: { name: 'String' } }, properties: { client_side_validation: true, required: false, serialized_name: 'properties', type: { name: 'Composite', class_name: 'DeploymentPropertiesExtended' } } } } } end