Class: Azure::Network::Mgmt::V2017_03_01::Models::SecurityGroupNetworkInterface

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

Overview

Network interface and all its associated security rules.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#idString

Returns ID of the network interface.

Returns:

  • (String)

    ID of the network interface.



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

def id
  @id
end

#security_rule_associationsSecurityRuleAssociations



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

def security_rule_associations
  @security_rule_associations
end

Class Method Details

.mapperObject

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

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