Class: Azure::ARM::Network::Models::AzureReachabilityReportParameters
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::AzureReachabilityReportParameters
- Includes:
- MsRest::JSONable, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_network/models/azure_reachability_report_parameters.rb
Overview
Geographic and time constraints for Azure reachability report.
Instance Attribute Summary collapse
-
#azure_locations ⇒ Array<String>
Optional Azure regions to scope the query to.
-
#end_time ⇒ DateTime
The end time for the Azure reachability report.
- #provider_location ⇒ AzureReachabilityReportLocation
-
#providers ⇒ Array<String>
List of Internet service providers.
-
#start_time ⇒ DateTime
The start time for the Azure reachability report.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AzureReachabilityReportParameters class as Ruby Hash.
Instance Attribute Details
#azure_locations ⇒ Array<String>
Returns Optional Azure regions to scope the query to.
23 24 25 |
# File 'lib/generated/azure_mgmt_network/models/azure_reachability_report_parameters.rb', line 23 def azure_locations @azure_locations end |
#end_time ⇒ DateTime
Returns The end time for the Azure reachability report.
29 30 31 |
# File 'lib/generated/azure_mgmt_network/models/azure_reachability_report_parameters.rb', line 29 def end_time @end_time end |
#provider_location ⇒ AzureReachabilityReportLocation
17 18 19 |
# File 'lib/generated/azure_mgmt_network/models/azure_reachability_report_parameters.rb', line 17 def provider_location @provider_location end |
#providers ⇒ Array<String>
Returns List of Internet service providers.
20 21 22 |
# File 'lib/generated/azure_mgmt_network/models/azure_reachability_report_parameters.rb', line 20 def providers @providers end |
#start_time ⇒ DateTime
Returns The start time for the Azure reachability report.
26 27 28 |
# File 'lib/generated/azure_mgmt_network/models/azure_reachability_report_parameters.rb', line 26 def start_time @start_time end |
Class Method Details
.mapper ⇒ Object
Mapper for AzureReachabilityReportParameters class as Ruby Hash. This will be used for serialization/deserialization.
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
# File 'lib/generated/azure_mgmt_network/models/azure_reachability_report_parameters.rb', line 36 def self.mapper() { required: false, serialized_name: 'AzureReachabilityReportParameters', type: { name: 'Composite', class_name: 'AzureReachabilityReportParameters', model_properties: { provider_location: { required: true, serialized_name: 'providerLocation', type: { name: 'Composite', class_name: 'AzureReachabilityReportLocation' } }, providers: { required: false, serialized_name: 'providers', type: { name: 'Sequence', element: { required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, azure_locations: { required: false, serialized_name: 'azureLocations', type: { name: 'Sequence', element: { required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } }, start_time: { required: true, serialized_name: 'startTime', type: { name: 'DateTime' } }, end_time: { required: true, serialized_name: 'endTime', type: { name: 'DateTime' } } } } } end |