class Azure::Web::Mgmt::V2018_02_01::Models::HostingEnvironmentDeploymentInfo

Information needed to create resources on an App Service Environment.

Attributes

location[RW]

@return [String] Location of the App Service Environment.

name[RW]

@return [String] Name of the App Service Environment.

Private Class Methods

mapper() click to toggle source

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

# File lib/2018-02-01/generated/azure_mgmt_web/models/hosting_environment_deployment_info.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'HostingEnvironmentDeploymentInfo',
    type: {
      name: 'Composite',
      class_name: 'HostingEnvironmentDeploymentInfo',
      model_properties: {
        name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        },
        location: {
          client_side_validation: true,
          required: false,
          serialized_name: 'location',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end