Class: Azure::ARM::Network::Models::TopologyAssociation
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::TopologyAssociation
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_network/models/topology_association.rb
Overview
Resources that have an association with the parent resource.
Instance Attribute Summary collapse
-
#association_type ⇒ AssociationType
the parent resource.
-
#name ⇒ String
parent resource.
-
#resource_id ⇒ String
parent resource.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for TopologyAssociation class as Ruby Hash.
Instance Attribute Details
#association_type ⇒ AssociationType
the parent resource. Possible values include: ‘Associated’, ‘Contains’
26 27 28 |
# File 'lib/generated/azure_mgmt_network/models/topology_association.rb', line 26 def association_type @association_type end |
#name ⇒ String
parent resource.
18 19 20 |
# File 'lib/generated/azure_mgmt_network/models/topology_association.rb', line 18 def name @name end |
#resource_id ⇒ String
parent resource.
22 23 24 |
# File 'lib/generated/azure_mgmt_network/models/topology_association.rb', line 22 def resource_id @resource_id end |
Class Method Details
.mapper ⇒ Object
Mapper for TopologyAssociation class as Ruby Hash. This will be used for serialization/deserialization.
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 62 63 64 65 |
# File 'lib/generated/azure_mgmt_network/models/topology_association.rb', line 33 def self.mapper() { required: false, serialized_name: 'TopologyAssociation', type: { name: 'Composite', class_name: 'TopologyAssociation', model_properties: { name: { required: false, serialized_name: 'name', type: { name: 'String' } }, resource_id: { required: false, serialized_name: 'resourceId', type: { name: 'String' } }, association_type: { required: false, serialized_name: 'associationType', type: { name: 'String' } } } } } end |