Class: Azure::ARM::DevTestLabs::Models::ExternalSubnetFragment

Inherits:
Object
  • Object
show all
Includes:
MsRest::JSONable, MsRestAzure
Defined in:
lib/generated/azure_mgmt_devtestlabs/models/external_subnet_fragment.rb

Overview

Subnet information as returned by the Microsoft.Network API.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#idString

Returns Gets or sets the identifier.

Returns:

  • (String)

    Gets or sets the identifier.



17
18
19
# File 'lib/generated/azure_mgmt_devtestlabs/models/external_subnet_fragment.rb', line 17

def id
  @id
end

#nameString

Returns Gets or sets the name.

Returns:

  • (String)

    Gets or sets the name.



20
21
22
# File 'lib/generated/azure_mgmt_devtestlabs/models/external_subnet_fragment.rb', line 20

def name
  @name
end

Class Method Details

.mapperObject

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



27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# File 'lib/generated/azure_mgmt_devtestlabs/models/external_subnet_fragment.rb', line 27

def self.mapper()
  {
    required: false,
    serialized_name: 'ExternalSubnetFragment',
    type: {
      name: 'Composite',
      class_name: 'ExternalSubnetFragment',
      model_properties: {
        id: {
          required: false,
          serialized_name: 'id',
          type: {
            name: 'String'
          }
        },
        name: {
          required: false,
          serialized_name: 'name',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end