Class: Azure::Network::Mgmt::V2020_04_01::Models::NetworkConfigurationDiagnosticResponse

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2020-04-01/generated/azure_mgmt_network/models/network_configuration_diagnostic_response.rb

Overview

Results of network configuration diagnostic on the target resource.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#resultsArray<NetworkConfigurationDiagnosticResult>

configuration diagnostic results.

Returns:



17
18
19
# File 'lib/2020-04-01/generated/azure_mgmt_network/models/network_configuration_diagnostic_response.rb', line 17

def results
  @results
end

Class Method Details

.mapperObject

Mapper for NetworkConfigurationDiagnosticResponse 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
54
# File 'lib/2020-04-01/generated/azure_mgmt_network/models/network_configuration_diagnostic_response.rb', line 24

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'NetworkConfigurationDiagnosticResponse',
    type: {
      name: 'Composite',
      class_name: 'NetworkConfigurationDiagnosticResponse',
      model_properties: {
        results: {
          client_side_validation: true,
          required: false,
          read_only: true,
          serialized_name: 'results',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'NetworkConfigurationDiagnosticResultElementType',
                type: {
                  name: 'Composite',
                  class_name: 'NetworkConfigurationDiagnosticResult'
                }
            }
          }
        }
      }
    }
  }
end