Class: Azure::Security::Mgmt::V2020_01_01::Models::EffectiveNetworkSecurityGroups
- Inherits:
-
Object
- Object
- Azure::Security::Mgmt::V2020_01_01::Models::EffectiveNetworkSecurityGroups
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-01-01/generated/azure_mgmt_security/models/effective_network_security_groups.rb
Overview
Describes the Network Security Groups effective on a network interface
Instance Attribute Summary collapse
-
#network_interface ⇒ String
The Azure resource ID of the network interface.
-
#network_security_groups ⇒ Array<String>
network interface.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for EffectiveNetworkSecurityGroups class as Ruby Hash.
Instance Attribute Details
#network_interface ⇒ String
Returns The Azure resource ID of the network interface.
16 17 18 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/effective_network_security_groups.rb', line 16 def network_interface @network_interface end |
#network_security_groups ⇒ Array<String>
network interface
20 21 22 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/effective_network_security_groups.rb', line 20 def network_security_groups @network_security_groups end |
Class Method Details
.mapper ⇒ Object
Mapper for EffectiveNetworkSecurityGroups 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 53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/2020-01-01/generated/azure_mgmt_security/models/effective_network_security_groups.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'EffectiveNetworkSecurityGroups', type: { name: 'Composite', class_name: 'EffectiveNetworkSecurityGroups', model_properties: { network_interface: { client_side_validation: true, required: false, serialized_name: 'networkInterface', type: { name: 'String' } }, network_security_groups: { client_side_validation: true, required: false, serialized_name: 'networkSecurityGroups', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end |