Class: Azure::Network::Mgmt::V2017_03_01::Models::EffectiveNetworkSecurityGroupAssociation

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-03-01/generated/azure_mgmt_network/models/effective_network_security_group_association.rb

Overview

The effective network security group association.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#network_interfaceSubResource

Returns The ID of the network interface if assigned.

Returns:

  • (SubResource)

    The ID of the network interface if assigned.



19
20
21
# File 'lib/2017-03-01/generated/azure_mgmt_network/models/effective_network_security_group_association.rb', line 19

def network_interface
  @network_interface
end

#subnetSubResource

Returns The ID of the subnet if assigned.

Returns:



16
17
18
# File 'lib/2017-03-01/generated/azure_mgmt_network/models/effective_network_security_group_association.rb', line 16

def subnet
  @subnet
end

Class Method Details

.mapperObject

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



26
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
53
# File 'lib/2017-03-01/generated/azure_mgmt_network/models/effective_network_security_group_association.rb', line 26

def self.mapper()
  {
    required: false,
    serialized_name: 'EffectiveNetworkSecurityGroupAssociation',
    type: {
      name: 'Composite',
      class_name: 'EffectiveNetworkSecurityGroupAssociation',
      model_properties: {
        subnet: {
          required: false,
          serialized_name: 'subnet',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        },
        network_interface: {
          required: false,
          serialized_name: 'networkInterface',
          type: {
            name: 'Composite',
            class_name: 'SubResource'
          }
        }
      }
    }
  }
end