Class: Azure::Network::Mgmt::V2018_08_01::Models::SecurityGroupViewResult
- Inherits:
-
Object
- Object
- Azure::Network::Mgmt::V2018_08_01::Models::SecurityGroupViewResult
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-08-01/generated/azure_mgmt_network/models/security_group_view_result.rb
Overview
The information about security rules applied to the specified VM.
Instance Attribute Summary collapse
-
#network_interfaces ⇒ Array<SecurityGroupNetworkInterface>
interfaces on the specified VM.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for SecurityGroupViewResult class as Ruby Hash.
Instance Attribute Details
#network_interfaces ⇒ Array<SecurityGroupNetworkInterface>
interfaces on the specified VM.
17 18 19 |
# File 'lib/2018-08-01/generated/azure_mgmt_network/models/security_group_view_result.rb', line 17 def network_interfaces @network_interfaces end |
Class Method Details
.mapper ⇒ Object
Mapper for SecurityGroupViewResult class as Ruby Hash. This will be used for serialization/deserialization.
24 25 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/2018-08-01/generated/azure_mgmt_network/models/security_group_view_result.rb', line 24 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'SecurityGroupViewResult', type: { name: 'Composite', class_name: 'SecurityGroupViewResult', model_properties: { network_interfaces: { client_side_validation: true, required: false, serialized_name: 'networkInterfaces', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'SecurityGroupNetworkInterfaceElementType', type: { name: 'Composite', class_name: 'SecurityGroupNetworkInterface' } } } } } } } end |