class Azure::Resources::Mgmt::V2019_05_01::Models::DeploymentExtended

Deployment information.

Attributes

id[RW]

@return [String] The ID of the deployment.

location[RW]

@return [String] the location of the deployment.

name[RW]

@return [String] The name of the deployment.

properties[RW]

@return [DeploymentPropertiesExtended] Deployment properties.

type[RW]

@return [String] The type of the deployment.

Public Class Methods

mapper() click to toggle source

Mapper for DeploymentExtended class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2019-05-01/generated/azure_mgmt_resources/models/deployment_extended.rb, line 35
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: false,
          read_only: true,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        location: {
          client_side_validation: true,
          required: false,
          serialized_name: 'location',
          type: {
            name: 'String'
          }
        },
        properties: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties',
          type: {
            name: 'Composite',
            class_name: 'DeploymentPropertiesExtended'
          }
        }
      }
    }
  }
end