Class: Azure::ARM::DevTestLabs::Models::ExternalSubnetFragment
- Inherits:
-
Object
- Object
- Azure::ARM::DevTestLabs::Models::ExternalSubnetFragment
- 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
-
#id ⇒ String
Gets or sets the identifier.
-
#name ⇒ String
Gets or sets the name.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ExternalSubnetFragment class as Ruby Hash.
Instance Attribute Details
#id ⇒ String
Returns 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 |
#name ⇒ String
Returns 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
.mapper ⇒ Object
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 |