class Azure::Resources::Mgmt::V2019_05_10::Models::AliasPathType

The type of the paths for alias.

Attributes

api_versions[RW]

@return [Array<String>] The API versions.

path[RW]

@return [String] The path of an alias.

Private Class Methods

mapper() click to toggle source

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

# File lib/2019-05-10/generated/azure_mgmt_resources/models/alias_path_type.rb, line 25
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AliasPathType',
    type: {
      name: 'Composite',
      class_name: 'AliasPathType',
      model_properties: {
        path: {
          client_side_validation: true,
          required: false,
          serialized_name: 'path',
          type: {
            name: 'String'
          }
        },
        api_versions: {
          client_side_validation: true,
          required: false,
          serialized_name: 'apiVersions',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'StringElementType',
                type: {
                  name: 'String'
                }
            }
          }
        }
      }
    }
  }
end