class Azure::Resources::Mgmt::V2020_06_01::Models::AliasPathMetadata

Model object.

Attributes

attributes[RW]

@return [AliasPathAttributes] The attributes of the token that the alias path is referring to. Possible values include: 'None', 'Modifiable'

type[RW]

@return [AliasPathTokenType] The type of the token that the alias path is referring to. Possible values include: 'NotSpecified', 'Any', 'String', 'Object', 'Array', 'Integer', 'Number', 'Boolean'

Private Class Methods

mapper() click to toggle source

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

# File lib/2020-06-01/generated/azure_mgmt_resources/models/alias_path_metadata.rb, line 31
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'AliasPathMetadata',
    type: {
      name: 'Composite',
      class_name: 'AliasPathMetadata',
      model_properties: {
        type: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'type',
          type: {
            name: 'String'
          }
        },
        attributes: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'attributes',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end