class Azure::Network::Mgmt::V2019_02_01::Models::TroubleshootingParameters
Parameters that define the resource to troubleshoot.
Attributes
storage_id[RW]
@return [String] The ID for the storage account to save the troubleshoot result.
storage_path[RW]
@return [String] The path to the blob to save the troubleshoot result in.
target_resource_id[RW]
@return [String] The target resource to troubleshoot.
Public Class Methods
mapper()
click to toggle source
Mapper for TroubleshootingParameters class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-02-01/generated/azure_mgmt_network/models/troubleshooting_parameters.rb, line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'TroubleshootingParameters', type: { name: 'Composite', class_name: 'TroubleshootingParameters', model_properties: { target_resource_id: { client_side_validation: true, required: true, serialized_name: 'targetResourceId', type: { name: 'String' } }, storage_id: { client_side_validation: true, required: true, serialized_name: 'properties.storageId', type: { name: 'String' } }, storage_path: { client_side_validation: true, required: true, serialized_name: 'properties.storagePath', type: { name: 'String' } } } } } end