class Azure::Network::Mgmt::V2019_02_01::Models::NetworkConfigurationDiagnosticParameters

Parameters to get network configuration diagnostic.

Attributes

profiles[RW]

@return [Array<NetworkConfigurationDiagnosticProfile>] List of network configuration diagnostic profiles.

target_resource_id[RW]

@return [String] The ID of the target resource to perform network configuration diagnostic. Valid options are VM, NetworkInterface, VMSS/NetworkInterface and Application Gateway.

verbosity_level[RW]

@return [VerbosityLevel] Verbosity level. Accepted values are 'Normal', 'Minimum', 'Full'. Possible values include: 'Normal', 'Minimum', 'Full'

Public Class Methods

mapper() click to toggle source

Mapper for NetworkConfigurationDiagnosticParameters class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2019-02-01/generated/azure_mgmt_network/models/network_configuration_diagnostic_parameters.rb, line 32
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'NetworkConfigurationDiagnosticParameters',
    type: {
      name: 'Composite',
      class_name: 'NetworkConfigurationDiagnosticParameters',
      model_properties: {
        target_resource_id: {
          client_side_validation: true,
          required: true,
          serialized_name: 'targetResourceId',
          type: {
            name: 'String'
          }
        },
        verbosity_level: {
          client_side_validation: true,
          required: false,
          serialized_name: 'verbosityLevel',
          type: {
            name: 'String'
          }
        },
        profiles: {
          client_side_validation: true,
          required: true,
          serialized_name: 'profiles',
          type: {
            name: 'Sequence',
            element: {
                client_side_validation: true,
                required: false,
                serialized_name: 'NetworkConfigurationDiagnosticProfileElementType',
                type: {
                  name: 'Composite',
                  class_name: 'NetworkConfigurationDiagnosticProfile'
                }
            }
          }
        }
      }
    }
  }
end