Class: Azure::Network::Mgmt::V2017_09_01::Models::AzureReachabilityReportParameters

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-09-01/generated/azure_mgmt_network/models/azure_reachability_report_parameters.rb

Overview

Geographic and time constraints for Azure reachability report.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#azure_locationsArray<String>

Returns Optional Azure regions to scope the query to.

Returns:

  • (Array<String>)

    Optional Azure regions to scope the query to.



22
23
24
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/azure_reachability_report_parameters.rb', line 22

def azure_locations
  @azure_locations
end

#end_timeDateTime

Returns The end time for the Azure reachability report.

Returns:

  • (DateTime)

    The end time for the Azure reachability report.



28
29
30
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/azure_reachability_report_parameters.rb', line 28

def end_time
  @end_time
end

#provider_locationAzureReachabilityReportLocation



16
17
18
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/azure_reachability_report_parameters.rb', line 16

def provider_location
  @provider_location
end

#providersArray<String>

Returns List of Internet service providers.

Returns:

  • (Array<String>)

    List of Internet service providers.



19
20
21
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/azure_reachability_report_parameters.rb', line 19

def providers
  @providers
end

#start_timeDateTime

Returns The start time for the Azure reachability report.

Returns:

  • (DateTime)

    The start time for the Azure reachability report.



25
26
27
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/azure_reachability_report_parameters.rb', line 25

def start_time
  @start_time
end

Class Method Details

.mapperObject

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



35
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
# File 'lib/2017-09-01/generated/azure_mgmt_network/models/azure_reachability_report_parameters.rb', line 35

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