class Azure::Network::Mgmt::V2019_04_01::Models::AzureReachabilityReportParameters
Geographic and time constraints for Azure
reachability report.
Attributes
azure_locations[RW]
@return [Array<String>] Optional Azure
regions to scope the query to.
end_time[RW]
@return [DateTime] The end time for the Azure
reachability report.
provider_location[RW]
@return [AzureReachabilityReportLocation] Parameters that define a geographic location.
providers[RW]
@return [Array<String>] List of Internet service providers.
start_time[RW]
@return [DateTime] The start time for the Azure
reachability report.
Public Class Methods
mapper()
click to toggle source
Mapper for AzureReachabilityReportParameters
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2019-04-01/generated/azure_mgmt_network/models/azure_reachability_report_parameters.rb, line 36 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AzureReachabilityReportParameters', type: { name: 'Composite', class_name: 'AzureReachabilityReportParameters', model_properties: { provider_location: { client_side_validation: true, required: true, serialized_name: 'providerLocation', type: { name: 'Composite', class_name: 'AzureReachabilityReportLocation' } }, providers: { client_side_validation: true, required: false, serialized_name: 'providers', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, azure_locations: { client_side_validation: true, required: false, serialized_name: 'azureLocations', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, start_time: { client_side_validation: true, required: true, serialized_name: 'startTime', type: { name: 'DateTime' } }, end_time: { client_side_validation: true, required: true, serialized_name: 'endTime', type: { name: 'DateTime' } } } } } end