Class: Azure::Network::Mgmt::V2018_06_01::Models::NetworkConfigurationDiagnosticResult
- Inherits:
-
Object
- Object
- Azure::Network::Mgmt::V2018_06_01::Models::NetworkConfigurationDiagnosticResult
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01/generated/azure_mgmt_network/models/network_configuration_diagnostic_result.rb
Overview
Network configuration diagnostic result corresponded to provided traffic query.
Instance Attribute Summary collapse
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for NetworkConfigurationDiagnosticResult class as Ruby Hash.
Instance Attribute Details
#network_security_group_result ⇒ NetworkSecurityGroupResult
20 21 22 |
# File 'lib/2018-06-01/generated/azure_mgmt_network/models/network_configuration_diagnostic_result.rb', line 20 def network_security_group_result @network_security_group_result end |
#traffic_query ⇒ TrafficQuery
17 18 19 |
# File 'lib/2018-06-01/generated/azure_mgmt_network/models/network_configuration_diagnostic_result.rb', line 17 def traffic_query @traffic_query end |
Class Method Details
.mapper ⇒ Object
Mapper for NetworkConfigurationDiagnosticResult 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 |
# File 'lib/2018-06-01/generated/azure_mgmt_network/models/network_configuration_diagnostic_result.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'NetworkConfigurationDiagnosticResult', type: { name: 'Composite', class_name: 'NetworkConfigurationDiagnosticResult', model_properties: { traffic_query: { client_side_validation: true, required: false, serialized_name: 'trafficQuery', type: { name: 'Composite', class_name: 'TrafficQuery' } }, network_security_group_result: { client_side_validation: true, required: false, serialized_name: 'networkSecurityGroupResult', type: { name: 'Composite', class_name: 'NetworkSecurityGroupResult' } } } } } end |