Class: Azure::Resources::Mgmt::V2020_06_01::Models::AliasPathMetadata

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2020-06-01/generated/azure_mgmt_resources/models/alias_path_metadata.rb

Overview

Model object.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#attributesAliasPathAttributes

alias path is referring to. Possible values include: ‘None’, ‘Modifiable’

Returns:



24
25
26
# File 'lib/2020-06-01/generated/azure_mgmt_resources/models/alias_path_metadata.rb', line 24

def attributes
  @attributes
end

#typeAliasPathTokenType

is referring to. Possible values include: ‘NotSpecified’, ‘Any’, ‘String’, ‘Object’, ‘Array’, ‘Integer’, ‘Number’, ‘Boolean’

Returns:



19
20
21
# File 'lib/2020-06-01/generated/azure_mgmt_resources/models/alias_path_metadata.rb', line 19

def type
  @type
end

Class Method Details

.mapperObject

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



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# 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