azure_sdk 0.18.6 → 0.18.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/azure_sdk.rb +1 -0
- data/lib/azure_sdk/version.rb +1 -1
- data/lib/latest/modules/compute_profile_module.rb +140 -128
- data/lib/latest/modules/dns_profile_module.rb +42 -30
- data/lib/latest/modules/features_profile_module.rb +18 -6
- data/lib/latest/modules/links_profile_module.rb +23 -9
- data/lib/latest/modules/locks_profile_module.rb +21 -7
- data/lib/latest/modules/mediaservices_profile_module.rb +512 -424
- data/lib/latest/modules/resources_profile_module.rb +92 -78
- data/lib/latest/modules/subscriptions_profile_module.rb +27 -13
- data/lib/latest/modules/web_profile_module.rb +315 -285
- data/lib/v2017_03_09/modules/authorization_profile_module.rb +141 -0
- data/lib/v2017_03_09/modules/dns_profile_module.rb +139 -0
- data/lib/v2017_03_09/modules/features_profile_module.rb +18 -6
- data/lib/v2017_03_09/modules/keyvault_profile_module.rb +559 -0
- data/lib/v2017_03_09/modules/links_profile_module.rb +23 -9
- data/lib/v2017_03_09/modules/subscriptions_profile_module.rb +27 -13
- data/lib/v2017_03_09/v2017_03_09_profile_client.rb +56 -25
- data/lib/v2018_03_01/module_definition.rb +7 -0
- data/lib/v2018_03_01/modules/authorization_profile_module.rb +133 -0
- data/lib/v2018_03_01/modules/compute_profile_module.rb +755 -0
- data/lib/v2018_03_01/modules/dns_profile_module.rb +139 -0
- data/lib/v2018_03_01/modules/keyvault_profile_module.rb +559 -0
- data/lib/v2018_03_01/modules/locks_profile_module.rb +79 -0
- data/lib/v2018_03_01/modules/network_profile_module.rb +1309 -0
- data/lib/v2018_03_01/modules/policy_profile_module.rb +75 -0
- data/lib/v2018_03_01/modules/resources_profile_module.rb +259 -0
- data/lib/v2018_03_01/modules/storage_profile_module.rb +163 -0
- data/lib/v2018_03_01/modules/subscriptions_profile_module.rb +101 -0
- data/lib/v2018_03_01/modules/web_profile_module.rb +1223 -0
- data/lib/v2018_03_01/v2018_03_01_profile_client.rb +160 -0
- metadata +49 -33
@@ -0,0 +1,79 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
+
# Licensed under the MIT License. See License.txt in the project root for license information.
|
4
|
+
|
5
|
+
require 'azure_mgmt_locks'
|
6
|
+
|
7
|
+
module Azure::Profiles::V2018_03_01
|
8
|
+
module Locks
|
9
|
+
module Mgmt
|
10
|
+
AuthorizationOperations = Azure::Locks::Mgmt::V2016_09_01::AuthorizationOperations
|
11
|
+
ManagementLocks = Azure::Locks::Mgmt::V2016_09_01::ManagementLocks
|
12
|
+
|
13
|
+
module Models
|
14
|
+
OperationDisplay = Azure::Locks::Mgmt::V2016_09_01::Models::OperationDisplay
|
15
|
+
ManagementLockOwner = Azure::Locks::Mgmt::V2016_09_01::Models::ManagementLockOwner
|
16
|
+
Operation = Azure::Locks::Mgmt::V2016_09_01::Models::Operation
|
17
|
+
ManagementLockListResult = Azure::Locks::Mgmt::V2016_09_01::Models::ManagementLockListResult
|
18
|
+
OperationListResult = Azure::Locks::Mgmt::V2016_09_01::Models::OperationListResult
|
19
|
+
ManagementLockObject = Azure::Locks::Mgmt::V2016_09_01::Models::ManagementLockObject
|
20
|
+
LockLevel = Azure::Locks::Mgmt::V2016_09_01::Models::LockLevel
|
21
|
+
end
|
22
|
+
|
23
|
+
class LocksManagementClass
|
24
|
+
attr_reader :authorization_operations, :management_locks, :configurable, :base_url, :options, :model_classes
|
25
|
+
|
26
|
+
def initialize(configurable, base_url=nil, options=nil)
|
27
|
+
@configurable, @base_url, @options = configurable, base_url, options
|
28
|
+
|
29
|
+
@client_0 = Azure::Locks::Mgmt::V2016_09_01::ManagementLockClient.new(configurable.credentials, base_url, options)
|
30
|
+
if(@client_0.respond_to?(:subscription_id))
|
31
|
+
@client_0.subscription_id = configurable.subscription_id
|
32
|
+
end
|
33
|
+
add_telemetry(@client_0)
|
34
|
+
@authorization_operations = @client_0.authorization_operations
|
35
|
+
@management_locks = @client_0.management_locks
|
36
|
+
|
37
|
+
@model_classes = ModelClasses.new
|
38
|
+
end
|
39
|
+
|
40
|
+
def add_telemetry(client)
|
41
|
+
profile_information = "Profiles/azure_sdk/#{Azure::VERSION}/V2018_03_01/Locks/Mgmt"
|
42
|
+
client.add_user_agent_information(profile_information)
|
43
|
+
end
|
44
|
+
|
45
|
+
def method_missing(method, *args)
|
46
|
+
if @client_0.respond_to?method
|
47
|
+
@client_0.send(method, *args)
|
48
|
+
else
|
49
|
+
super
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
class ModelClasses
|
54
|
+
def operation_display
|
55
|
+
Azure::Locks::Mgmt::V2016_09_01::Models::OperationDisplay
|
56
|
+
end
|
57
|
+
def management_lock_owner
|
58
|
+
Azure::Locks::Mgmt::V2016_09_01::Models::ManagementLockOwner
|
59
|
+
end
|
60
|
+
def operation
|
61
|
+
Azure::Locks::Mgmt::V2016_09_01::Models::Operation
|
62
|
+
end
|
63
|
+
def management_lock_list_result
|
64
|
+
Azure::Locks::Mgmt::V2016_09_01::Models::ManagementLockListResult
|
65
|
+
end
|
66
|
+
def operation_list_result
|
67
|
+
Azure::Locks::Mgmt::V2016_09_01::Models::OperationListResult
|
68
|
+
end
|
69
|
+
def management_lock_object
|
70
|
+
Azure::Locks::Mgmt::V2016_09_01::Models::ManagementLockObject
|
71
|
+
end
|
72
|
+
def lock_level
|
73
|
+
Azure::Locks::Mgmt::V2016_09_01::Models::LockLevel
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
@@ -0,0 +1,1309 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
# Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
+
# Licensed under the MIT License. See License.txt in the project root for license information.
|
4
|
+
|
5
|
+
require 'azure_mgmt_network'
|
6
|
+
|
7
|
+
module Azure::Profiles::V2018_03_01
|
8
|
+
module Network
|
9
|
+
module Mgmt
|
10
|
+
ApplicationGateways = Azure::Network::Mgmt::V2017_10_01::ApplicationGateways
|
11
|
+
ApplicationSecurityGroups = Azure::Network::Mgmt::V2017_10_01::ApplicationSecurityGroups
|
12
|
+
AvailableEndpointServices = Azure::Network::Mgmt::V2017_10_01::AvailableEndpointServices
|
13
|
+
ExpressRouteCircuitAuthorizations = Azure::Network::Mgmt::V2017_10_01::ExpressRouteCircuitAuthorizations
|
14
|
+
ExpressRouteCircuitPeerings = Azure::Network::Mgmt::V2017_10_01::ExpressRouteCircuitPeerings
|
15
|
+
ExpressRouteCircuits = Azure::Network::Mgmt::V2017_10_01::ExpressRouteCircuits
|
16
|
+
ExpressRouteServiceProviders = Azure::Network::Mgmt::V2017_10_01::ExpressRouteServiceProviders
|
17
|
+
LoadBalancers = Azure::Network::Mgmt::V2017_10_01::LoadBalancers
|
18
|
+
LoadBalancerBackendAddressPools = Azure::Network::Mgmt::V2017_10_01::LoadBalancerBackendAddressPools
|
19
|
+
LoadBalancerFrontendIPConfigurations = Azure::Network::Mgmt::V2017_10_01::LoadBalancerFrontendIPConfigurations
|
20
|
+
InboundNatRules = Azure::Network::Mgmt::V2017_10_01::InboundNatRules
|
21
|
+
LoadBalancerLoadBalancingRules = Azure::Network::Mgmt::V2017_10_01::LoadBalancerLoadBalancingRules
|
22
|
+
LoadBalancerNetworkInterfaces = Azure::Network::Mgmt::V2017_10_01::LoadBalancerNetworkInterfaces
|
23
|
+
LoadBalancerProbes = Azure::Network::Mgmt::V2017_10_01::LoadBalancerProbes
|
24
|
+
NetworkInterfaces = Azure::Network::Mgmt::V2017_10_01::NetworkInterfaces
|
25
|
+
NetworkInterfaceIPConfigurations = Azure::Network::Mgmt::V2017_10_01::NetworkInterfaceIPConfigurations
|
26
|
+
NetworkInterfaceLoadBalancers = Azure::Network::Mgmt::V2017_10_01::NetworkInterfaceLoadBalancers
|
27
|
+
NetworkSecurityGroups = Azure::Network::Mgmt::V2017_10_01::NetworkSecurityGroups
|
28
|
+
SecurityRules = Azure::Network::Mgmt::V2017_10_01::SecurityRules
|
29
|
+
DefaultSecurityRules = Azure::Network::Mgmt::V2017_10_01::DefaultSecurityRules
|
30
|
+
NetworkWatchers = Azure::Network::Mgmt::V2017_10_01::NetworkWatchers
|
31
|
+
PacketCaptures = Azure::Network::Mgmt::V2017_10_01::PacketCaptures
|
32
|
+
ConnectionMonitors = Azure::Network::Mgmt::V2017_10_01::ConnectionMonitors
|
33
|
+
Operations = Azure::Network::Mgmt::V2017_10_01::Operations
|
34
|
+
PublicIPAddresses = Azure::Network::Mgmt::V2017_10_01::PublicIPAddresses
|
35
|
+
RouteFilters = Azure::Network::Mgmt::V2017_10_01::RouteFilters
|
36
|
+
RouteFilterRules = Azure::Network::Mgmt::V2017_10_01::RouteFilterRules
|
37
|
+
RouteTables = Azure::Network::Mgmt::V2017_10_01::RouteTables
|
38
|
+
Routes = Azure::Network::Mgmt::V2017_10_01::Routes
|
39
|
+
BgpServiceCommunities = Azure::Network::Mgmt::V2017_10_01::BgpServiceCommunities
|
40
|
+
Usages = Azure::Network::Mgmt::V2017_10_01::Usages
|
41
|
+
VirtualNetworks = Azure::Network::Mgmt::V2017_10_01::VirtualNetworks
|
42
|
+
Subnets = Azure::Network::Mgmt::V2017_10_01::Subnets
|
43
|
+
VirtualNetworkPeerings = Azure::Network::Mgmt::V2017_10_01::VirtualNetworkPeerings
|
44
|
+
VirtualNetworkGateways = Azure::Network::Mgmt::V2017_10_01::VirtualNetworkGateways
|
45
|
+
VirtualNetworkGatewayConnections = Azure::Network::Mgmt::V2017_10_01::VirtualNetworkGatewayConnections
|
46
|
+
LocalNetworkGateways = Azure::Network::Mgmt::V2017_10_01::LocalNetworkGateways
|
47
|
+
|
48
|
+
module Models
|
49
|
+
IpTag = Azure::Network::Mgmt::V2017_03_30::Models::IpTag
|
50
|
+
EndpointService = Azure::Network::Mgmt::V2017_03_30::Models::EndpointService
|
51
|
+
Delegation = Azure::Network::Mgmt::V2017_03_30::Models::Delegation
|
52
|
+
ServiceAssociationLink = Azure::Network::Mgmt::V2017_03_30::Models::ServiceAssociationLink
|
53
|
+
InterfaceEndpoint = Azure::Network::Mgmt::V2017_03_30::Models::InterfaceEndpoint
|
54
|
+
NetworkInterfaceTapConfiguration = Azure::Network::Mgmt::V2017_03_30::Models::NetworkInterfaceTapConfiguration
|
55
|
+
VirtualNetworkTap = Azure::Network::Mgmt::V2017_03_30::Models::VirtualNetworkTap
|
56
|
+
ServiceEndpointPolicyDefinition = Azure::Network::Mgmt::V2017_03_30::Models::ServiceEndpointPolicyDefinition
|
57
|
+
ServiceEndpointPolicy = Azure::Network::Mgmt::V2017_03_30::Models::ServiceEndpointPolicy
|
58
|
+
IPConfigurationProfile = Azure::Network::Mgmt::V2017_03_30::Models::IPConfigurationProfile
|
59
|
+
TopologyAssociation = Azure::Network::Mgmt::V2017_10_01::Models::TopologyAssociation
|
60
|
+
SubResource = Azure::Network::Mgmt::V2017_10_01::Models::SubResource
|
61
|
+
TopologyResource = Azure::Network::Mgmt::V2017_10_01::Models::TopologyResource
|
62
|
+
OperationListResult = Azure::Network::Mgmt::V2017_10_01::Models::OperationListResult
|
63
|
+
Operation = Azure::Network::Mgmt::V2017_10_01::Models::Operation
|
64
|
+
NetworkInterfaceDnsSettings = Azure::Network::Mgmt::V2017_10_01::Models::NetworkInterfaceDnsSettings
|
65
|
+
OperationPropertiesFormatServiceSpecification = Azure::Network::Mgmt::V2017_10_01::Models::OperationPropertiesFormatServiceSpecification
|
66
|
+
VirtualNetworkConnectionGatewayReference = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkConnectionGatewayReference
|
67
|
+
LoadBalancerListResult = Azure::Network::Mgmt::V2017_10_01::Models::LoadBalancerListResult
|
68
|
+
ConnectionSharedKey = Azure::Network::Mgmt::V2017_10_01::Models::ConnectionSharedKey
|
69
|
+
InboundNatRuleListResult = Azure::Network::Mgmt::V2017_10_01::Models::InboundNatRuleListResult
|
70
|
+
PublicIPAddressSku = Azure::Network::Mgmt::V2017_10_01::Models::PublicIPAddressSku
|
71
|
+
LoadBalancerBackendAddressPoolListResult = Azure::Network::Mgmt::V2017_10_01::Models::LoadBalancerBackendAddressPoolListResult
|
72
|
+
ConnectionResetSharedKey = Azure::Network::Mgmt::V2017_10_01::Models::ConnectionResetSharedKey
|
73
|
+
LoadBalancerFrontendIPConfigurationListResult = Azure::Network::Mgmt::V2017_10_01::Models::LoadBalancerFrontendIPConfigurationListResult
|
74
|
+
IpsecPolicy = Azure::Network::Mgmt::V2017_10_01::Models::IpsecPolicy
|
75
|
+
LoadBalancerLoadBalancingRuleListResult = Azure::Network::Mgmt::V2017_10_01::Models::LoadBalancerLoadBalancingRuleListResult
|
76
|
+
GatewayRouteListResult = Azure::Network::Mgmt::V2017_10_01::Models::GatewayRouteListResult
|
77
|
+
LoadBalancerProbeListResult = Azure::Network::Mgmt::V2017_10_01::Models::LoadBalancerProbeListResult
|
78
|
+
BgpPeerStatusListResult = Azure::Network::Mgmt::V2017_10_01::Models::BgpPeerStatusListResult
|
79
|
+
NetworkInterfaceListResult = Azure::Network::Mgmt::V2017_10_01::Models::NetworkInterfaceListResult
|
80
|
+
VirtualNetworkGatewayListResult = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewayListResult
|
81
|
+
ErrorDetails = Azure::Network::Mgmt::V2017_10_01::Models::ErrorDetails
|
82
|
+
ApplicationGatewayBackendHealthHttpSettings = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayBackendHealthHttpSettings
|
83
|
+
Error = Azure::Network::Mgmt::V2017_10_01::Models::Error
|
84
|
+
ApplicationGatewayBackendHealth = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayBackendHealth
|
85
|
+
AzureAsyncOperationResult = Azure::Network::Mgmt::V2017_10_01::Models::AzureAsyncOperationResult
|
86
|
+
ApplicationGatewaySslPolicy = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewaySslPolicy
|
87
|
+
NetworkInterfaceIPConfigurationListResult = Azure::Network::Mgmt::V2017_10_01::Models::NetworkInterfaceIPConfigurationListResult
|
88
|
+
GatewayRoute = Azure::Network::Mgmt::V2017_10_01::Models::GatewayRoute
|
89
|
+
NetworkInterfaceLoadBalancerListResult = Azure::Network::Mgmt::V2017_10_01::Models::NetworkInterfaceLoadBalancerListResult
|
90
|
+
BgpSettings = Azure::Network::Mgmt::V2017_10_01::Models::BgpSettings
|
91
|
+
EffectiveNetworkSecurityGroupAssociation = Azure::Network::Mgmt::V2017_10_01::Models::EffectiveNetworkSecurityGroupAssociation
|
92
|
+
VirtualNetworkGatewaySku = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewaySku
|
93
|
+
EffectiveNetworkSecurityRule = Azure::Network::Mgmt::V2017_10_01::Models::EffectiveNetworkSecurityRule
|
94
|
+
ApplicationGatewayProbeHealthResponseMatch = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayProbeHealthResponseMatch
|
95
|
+
EffectiveNetworkSecurityGroup = Azure::Network::Mgmt::V2017_10_01::Models::EffectiveNetworkSecurityGroup
|
96
|
+
VirtualNetworkUsageName = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkUsageName
|
97
|
+
EffectiveNetworkSecurityGroupListResult = Azure::Network::Mgmt::V2017_10_01::Models::EffectiveNetworkSecurityGroupListResult
|
98
|
+
VirtualNetworkListResult = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkListResult
|
99
|
+
EffectiveRoute = Azure::Network::Mgmt::V2017_10_01::Models::EffectiveRoute
|
100
|
+
ApplicationGatewayWebApplicationFirewallConfiguration = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayWebApplicationFirewallConfiguration
|
101
|
+
EffectiveRouteListResult = Azure::Network::Mgmt::V2017_10_01::Models::EffectiveRouteListResult
|
102
|
+
ApplicationGatewayListResult = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayListResult
|
103
|
+
SecurityRuleListResult = Azure::Network::Mgmt::V2017_10_01::Models::SecurityRuleListResult
|
104
|
+
ApplicationGatewayFirewallRuleGroup = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayFirewallRuleGroup
|
105
|
+
NetworkSecurityGroupListResult = Azure::Network::Mgmt::V2017_10_01::Models::NetworkSecurityGroupListResult
|
106
|
+
ApplicationGatewayAvailableWafRuleSetsResult = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayAvailableWafRuleSetsResult
|
107
|
+
LogSpecification = Azure::Network::Mgmt::V2017_10_01::Models::LogSpecification
|
108
|
+
AddressSpace = Azure::Network::Mgmt::V2017_10_01::Models::AddressSpace
|
109
|
+
NetworkWatcherListResult = Azure::Network::Mgmt::V2017_10_01::Models::NetworkWatcherListResult
|
110
|
+
Resource = Azure::Network::Mgmt::V2017_10_01::Models::Resource
|
111
|
+
TopologyParameters = Azure::Network::Mgmt::V2017_10_01::Models::TopologyParameters
|
112
|
+
ApplicationSecurityGroupListResult = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationSecurityGroupListResult
|
113
|
+
DnsNameAvailabilityResult = Azure::Network::Mgmt::V2017_10_01::Models::DnsNameAvailabilityResult
|
114
|
+
Dimension = Azure::Network::Mgmt::V2017_10_01::Models::Dimension
|
115
|
+
EndpointServicesListResult = Azure::Network::Mgmt::V2017_10_01::Models::EndpointServicesListResult
|
116
|
+
MetricSpecification = Azure::Network::Mgmt::V2017_10_01::Models::MetricSpecification
|
117
|
+
AuthorizationListResult = Azure::Network::Mgmt::V2017_10_01::Models::AuthorizationListResult
|
118
|
+
Topology = Azure::Network::Mgmt::V2017_10_01::Models::Topology
|
119
|
+
UsageName = Azure::Network::Mgmt::V2017_10_01::Models::UsageName
|
120
|
+
VerificationIPFlowParameters = Azure::Network::Mgmt::V2017_10_01::Models::VerificationIPFlowParameters
|
121
|
+
BgpServiceCommunityListResult = Azure::Network::Mgmt::V2017_10_01::Models::BgpServiceCommunityListResult
|
122
|
+
VerificationIPFlowResult = Azure::Network::Mgmt::V2017_10_01::Models::VerificationIPFlowResult
|
123
|
+
Ipv6ExpressRouteCircuitPeeringConfig = Azure::Network::Mgmt::V2017_10_01::Models::Ipv6ExpressRouteCircuitPeeringConfig
|
124
|
+
NextHopParameters = Azure::Network::Mgmt::V2017_10_01::Models::NextHopParameters
|
125
|
+
ExpressRouteCircuitSku = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitSku
|
126
|
+
NextHopResult = Azure::Network::Mgmt::V2017_10_01::Models::NextHopResult
|
127
|
+
RouteListResult = Azure::Network::Mgmt::V2017_10_01::Models::RouteListResult
|
128
|
+
SecurityGroupViewParameters = Azure::Network::Mgmt::V2017_10_01::Models::SecurityGroupViewParameters
|
129
|
+
ExpressRouteCircuitsArpTableListResult = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitsArpTableListResult
|
130
|
+
NetworkInterfaceAssociation = Azure::Network::Mgmt::V2017_10_01::Models::NetworkInterfaceAssociation
|
131
|
+
ExpressRouteCircuitsRoutesTableListResult = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitsRoutesTableListResult
|
132
|
+
SubnetAssociation = Azure::Network::Mgmt::V2017_10_01::Models::SubnetAssociation
|
133
|
+
ExpressRouteCircuitsRoutesTableSummaryListResult = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitsRoutesTableSummaryListResult
|
134
|
+
SecurityRuleAssociations = Azure::Network::Mgmt::V2017_10_01::Models::SecurityRuleAssociations
|
135
|
+
ExpressRouteServiceProviderBandwidthsOffered = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteServiceProviderBandwidthsOffered
|
136
|
+
SecurityGroupNetworkInterface = Azure::Network::Mgmt::V2017_10_01::Models::SecurityGroupNetworkInterface
|
137
|
+
ExpressRouteServiceProviderListResult = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteServiceProviderListResult
|
138
|
+
SecurityGroupViewResult = Azure::Network::Mgmt::V2017_10_01::Models::SecurityGroupViewResult
|
139
|
+
RouteFilterRuleListResult = Azure::Network::Mgmt::V2017_10_01::Models::RouteFilterRuleListResult
|
140
|
+
PacketCaptureStorageLocation = Azure::Network::Mgmt::V2017_10_01::Models::PacketCaptureStorageLocation
|
141
|
+
PublicIPAddressListResult = Azure::Network::Mgmt::V2017_10_01::Models::PublicIPAddressListResult
|
142
|
+
PacketCaptureFilter = Azure::Network::Mgmt::V2017_10_01::Models::PacketCaptureFilter
|
143
|
+
VirtualNetworkGatewayListConnectionsResult = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewayListConnectionsResult
|
144
|
+
PacketCaptureParameters = Azure::Network::Mgmt::V2017_10_01::Models::PacketCaptureParameters
|
145
|
+
ServiceEndpointPropertiesFormat = Azure::Network::Mgmt::V2017_10_01::Models::ServiceEndpointPropertiesFormat
|
146
|
+
PacketCapture = Azure::Network::Mgmt::V2017_10_01::Models::PacketCapture
|
147
|
+
VirtualNetworkGatewayConnectionListResult = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewayConnectionListResult
|
148
|
+
PacketCaptureResult = Azure::Network::Mgmt::V2017_10_01::Models::PacketCaptureResult
|
149
|
+
ApplicationGatewayBackendAddress = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayBackendAddress
|
150
|
+
PacketCaptureListResult = Azure::Network::Mgmt::V2017_10_01::Models::PacketCaptureListResult
|
151
|
+
ApplicationGatewayBackendHealthServer = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayBackendHealthServer
|
152
|
+
PacketCaptureQueryStatusResult = Azure::Network::Mgmt::V2017_10_01::Models::PacketCaptureQueryStatusResult
|
153
|
+
ApplicationGatewaySku = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewaySku
|
154
|
+
TroubleshootingParameters = Azure::Network::Mgmt::V2017_10_01::Models::TroubleshootingParameters
|
155
|
+
BgpPeerStatus = Azure::Network::Mgmt::V2017_10_01::Models::BgpPeerStatus
|
156
|
+
QueryTroubleshootingParameters = Azure::Network::Mgmt::V2017_10_01::Models::QueryTroubleshootingParameters
|
157
|
+
VirtualNetworkListUsageResult = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkListUsageResult
|
158
|
+
TroubleshootingRecommendedActions = Azure::Network::Mgmt::V2017_10_01::Models::TroubleshootingRecommendedActions
|
159
|
+
IPAddressAvailabilityResult = Azure::Network::Mgmt::V2017_10_01::Models::IPAddressAvailabilityResult
|
160
|
+
TroubleshootingDetails = Azure::Network::Mgmt::V2017_10_01::Models::TroubleshootingDetails
|
161
|
+
DhcpOptions = Azure::Network::Mgmt::V2017_10_01::Models::DhcpOptions
|
162
|
+
TroubleshootingResult = Azure::Network::Mgmt::V2017_10_01::Models::TroubleshootingResult
|
163
|
+
VirtualNetworkPeeringListResult = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkPeeringListResult
|
164
|
+
RetentionPolicyParameters = Azure::Network::Mgmt::V2017_10_01::Models::RetentionPolicyParameters
|
165
|
+
ApplicationGatewayAvailableSslPredefinedPolicies = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayAvailableSslPredefinedPolicies
|
166
|
+
FlowLogStatusParameters = Azure::Network::Mgmt::V2017_10_01::Models::FlowLogStatusParameters
|
167
|
+
UsagesListResult = Azure::Network::Mgmt::V2017_10_01::Models::UsagesListResult
|
168
|
+
FlowLogInformation = Azure::Network::Mgmt::V2017_10_01::Models::FlowLogInformation
|
169
|
+
ExpressRouteCircuitPeeringConfig = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitPeeringConfig
|
170
|
+
ConnectivitySource = Azure::Network::Mgmt::V2017_10_01::Models::ConnectivitySource
|
171
|
+
BGPCommunity = Azure::Network::Mgmt::V2017_10_01::Models::BGPCommunity
|
172
|
+
ConnectivityDestination = Azure::Network::Mgmt::V2017_10_01::Models::ConnectivityDestination
|
173
|
+
ExpressRouteCircuitServiceProviderProperties = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitServiceProviderProperties
|
174
|
+
ConnectivityParameters = Azure::Network::Mgmt::V2017_10_01::Models::ConnectivityParameters
|
175
|
+
ExpressRouteCircuitRoutesTable = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitRoutesTable
|
176
|
+
ConnectivityIssue = Azure::Network::Mgmt::V2017_10_01::Models::ConnectivityIssue
|
177
|
+
ExpressRouteCircuitListResult = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitListResult
|
178
|
+
ConnectivityHop = Azure::Network::Mgmt::V2017_10_01::Models::ConnectivityHop
|
179
|
+
LoadBalancerSku = Azure::Network::Mgmt::V2017_10_01::Models::LoadBalancerSku
|
180
|
+
ConnectivityInformation = Azure::Network::Mgmt::V2017_10_01::Models::ConnectivityInformation
|
181
|
+
VpnDeviceScriptParameters = Azure::Network::Mgmt::V2017_10_01::Models::VpnDeviceScriptParameters
|
182
|
+
AzureReachabilityReportLocation = Azure::Network::Mgmt::V2017_10_01::Models::AzureReachabilityReportLocation
|
183
|
+
PublicIPAddressDnsSettings = Azure::Network::Mgmt::V2017_10_01::Models::PublicIPAddressDnsSettings
|
184
|
+
AzureReachabilityReportParameters = Azure::Network::Mgmt::V2017_10_01::Models::AzureReachabilityReportParameters
|
185
|
+
ApplicationGatewayConnectionDraining = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayConnectionDraining
|
186
|
+
AzureReachabilityReportLatencyInfo = Azure::Network::Mgmt::V2017_10_01::Models::AzureReachabilityReportLatencyInfo
|
187
|
+
VpnClientParameters = Azure::Network::Mgmt::V2017_10_01::Models::VpnClientParameters
|
188
|
+
AzureReachabilityReportItem = Azure::Network::Mgmt::V2017_10_01::Models::AzureReachabilityReportItem
|
189
|
+
VirtualNetworkUsage = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkUsage
|
190
|
+
AzureReachabilityReport = Azure::Network::Mgmt::V2017_10_01::Models::AzureReachabilityReport
|
191
|
+
ApplicationGatewayFirewallRule = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayFirewallRule
|
192
|
+
AvailableProvidersListParameters = Azure::Network::Mgmt::V2017_10_01::Models::AvailableProvidersListParameters
|
193
|
+
TagsObject = Azure::Network::Mgmt::V2017_10_01::Models::TagsObject
|
194
|
+
AvailableProvidersListCity = Azure::Network::Mgmt::V2017_10_01::Models::AvailableProvidersListCity
|
195
|
+
ExpressRouteCircuitStats = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitStats
|
196
|
+
AvailableProvidersListState = Azure::Network::Mgmt::V2017_10_01::Models::AvailableProvidersListState
|
197
|
+
ExpressRouteCircuitArpTable = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitArpTable
|
198
|
+
AvailableProvidersListCountry = Azure::Network::Mgmt::V2017_10_01::Models::AvailableProvidersListCountry
|
199
|
+
RouteTableListResult = Azure::Network::Mgmt::V2017_10_01::Models::RouteTableListResult
|
200
|
+
AvailableProvidersList = Azure::Network::Mgmt::V2017_10_01::Models::AvailableProvidersList
|
201
|
+
LocalNetworkGatewayListResult = Azure::Network::Mgmt::V2017_10_01::Models::LocalNetworkGatewayListResult
|
202
|
+
ConnectionMonitorSource = Azure::Network::Mgmt::V2017_10_01::Models::ConnectionMonitorSource
|
203
|
+
ApplicationGatewayBackendHealthPool = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayBackendHealthPool
|
204
|
+
ConnectionMonitorDestination = Azure::Network::Mgmt::V2017_10_01::Models::ConnectionMonitorDestination
|
205
|
+
ApplicationGatewayFirewallDisabledRuleGroup = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayFirewallDisabledRuleGroup
|
206
|
+
ConnectionMonitorParameters = Azure::Network::Mgmt::V2017_10_01::Models::ConnectionMonitorParameters
|
207
|
+
Usage = Azure::Network::Mgmt::V2017_10_01::Models::Usage
|
208
|
+
ConnectionMonitor = Azure::Network::Mgmt::V2017_10_01::Models::ConnectionMonitor
|
209
|
+
ExpressRouteCircuitRoutesTableSummary = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitRoutesTableSummary
|
210
|
+
ConnectionMonitorResult = Azure::Network::Mgmt::V2017_10_01::Models::ConnectionMonitorResult
|
211
|
+
TunnelConnectionHealth = Azure::Network::Mgmt::V2017_10_01::Models::TunnelConnectionHealth
|
212
|
+
ConnectionMonitorListResult = Azure::Network::Mgmt::V2017_10_01::Models::ConnectionMonitorListResult
|
213
|
+
SubnetListResult = Azure::Network::Mgmt::V2017_10_01::Models::SubnetListResult
|
214
|
+
ConnectionStateSnapshot = Azure::Network::Mgmt::V2017_10_01::Models::ConnectionStateSnapshot
|
215
|
+
RouteFilterListResult = Azure::Network::Mgmt::V2017_10_01::Models::RouteFilterListResult
|
216
|
+
ConnectionMonitorQueryResult = Azure::Network::Mgmt::V2017_10_01::Models::ConnectionMonitorQueryResult
|
217
|
+
ExpressRouteCircuitPeeringListResult = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitPeeringListResult
|
218
|
+
OperationDisplay = Azure::Network::Mgmt::V2017_10_01::Models::OperationDisplay
|
219
|
+
VpnClientConfiguration = Azure::Network::Mgmt::V2017_10_01::Models::VpnClientConfiguration
|
220
|
+
Availability = Azure::Network::Mgmt::V2017_10_01::Models::Availability
|
221
|
+
BackendAddressPool = Azure::Network::Mgmt::V2017_10_01::Models::BackendAddressPool
|
222
|
+
InboundNatRule = Azure::Network::Mgmt::V2017_10_01::Models::InboundNatRule
|
223
|
+
ApplicationSecurityGroup = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationSecurityGroup
|
224
|
+
SecurityRule = Azure::Network::Mgmt::V2017_10_01::Models::SecurityRule
|
225
|
+
NetworkInterface = Azure::Network::Mgmt::V2017_10_01::Models::NetworkInterface
|
226
|
+
NetworkSecurityGroup = Azure::Network::Mgmt::V2017_10_01::Models::NetworkSecurityGroup
|
227
|
+
Route = Azure::Network::Mgmt::V2017_10_01::Models::Route
|
228
|
+
RouteTable = Azure::Network::Mgmt::V2017_10_01::Models::RouteTable
|
229
|
+
PublicIPAddress = Azure::Network::Mgmt::V2017_10_01::Models::PublicIPAddress
|
230
|
+
IPConfiguration = Azure::Network::Mgmt::V2017_10_01::Models::IPConfiguration
|
231
|
+
ResourceNavigationLink = Azure::Network::Mgmt::V2017_10_01::Models::ResourceNavigationLink
|
232
|
+
Subnet = Azure::Network::Mgmt::V2017_10_01::Models::Subnet
|
233
|
+
NetworkInterfaceIPConfiguration = Azure::Network::Mgmt::V2017_10_01::Models::NetworkInterfaceIPConfiguration
|
234
|
+
ApplicationGatewayBackendAddressPool = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayBackendAddressPool
|
235
|
+
ApplicationGatewayBackendHttpSettings = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayBackendHttpSettings
|
236
|
+
ApplicationGatewayIPConfiguration = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayIPConfiguration
|
237
|
+
ApplicationGatewayAuthenticationCertificate = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayAuthenticationCertificate
|
238
|
+
ApplicationGatewaySslCertificate = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewaySslCertificate
|
239
|
+
ApplicationGatewayFrontendIPConfiguration = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayFrontendIPConfiguration
|
240
|
+
ApplicationGatewayFrontendPort = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayFrontendPort
|
241
|
+
ApplicationGatewayHttpListener = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayHttpListener
|
242
|
+
ApplicationGatewayPathRule = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayPathRule
|
243
|
+
ApplicationGatewayProbe = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayProbe
|
244
|
+
ApplicationGatewayRequestRoutingRule = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayRequestRoutingRule
|
245
|
+
ApplicationGatewayRedirectConfiguration = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayRedirectConfiguration
|
246
|
+
ApplicationGatewayUrlPathMap = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayUrlPathMap
|
247
|
+
ApplicationGateway = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGateway
|
248
|
+
ApplicationGatewayFirewallRuleSet = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayFirewallRuleSet
|
249
|
+
ApplicationGatewayAvailableSslOptions = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayAvailableSslOptions
|
250
|
+
ApplicationGatewaySslPredefinedPolicy = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewaySslPredefinedPolicy
|
251
|
+
EndpointServiceResult = Azure::Network::Mgmt::V2017_10_01::Models::EndpointServiceResult
|
252
|
+
ExpressRouteCircuitAuthorization = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitAuthorization
|
253
|
+
RouteFilterRule = Azure::Network::Mgmt::V2017_10_01::Models::RouteFilterRule
|
254
|
+
ExpressRouteCircuitPeering = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitPeering
|
255
|
+
RouteFilter = Azure::Network::Mgmt::V2017_10_01::Models::RouteFilter
|
256
|
+
ExpressRouteCircuit = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuit
|
257
|
+
ExpressRouteServiceProvider = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteServiceProvider
|
258
|
+
FrontendIPConfiguration = Azure::Network::Mgmt::V2017_10_01::Models::FrontendIPConfiguration
|
259
|
+
LoadBalancingRule = Azure::Network::Mgmt::V2017_10_01::Models::LoadBalancingRule
|
260
|
+
Probe = Azure::Network::Mgmt::V2017_10_01::Models::Probe
|
261
|
+
InboundNatPool = Azure::Network::Mgmt::V2017_10_01::Models::InboundNatPool
|
262
|
+
OutboundNatRule = Azure::Network::Mgmt::V2017_10_01::Models::OutboundNatRule
|
263
|
+
LoadBalancer = Azure::Network::Mgmt::V2017_10_01::Models::LoadBalancer
|
264
|
+
NetworkWatcher = Azure::Network::Mgmt::V2017_10_01::Models::NetworkWatcher
|
265
|
+
PatchRouteFilterRule = Azure::Network::Mgmt::V2017_10_01::Models::PatchRouteFilterRule
|
266
|
+
PatchRouteFilter = Azure::Network::Mgmt::V2017_10_01::Models::PatchRouteFilter
|
267
|
+
BgpServiceCommunity = Azure::Network::Mgmt::V2017_10_01::Models::BgpServiceCommunity
|
268
|
+
VirtualNetworkPeering = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkPeering
|
269
|
+
VirtualNetwork = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetwork
|
270
|
+
VirtualNetworkGatewayIPConfiguration = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewayIPConfiguration
|
271
|
+
VpnClientRootCertificate = Azure::Network::Mgmt::V2017_10_01::Models::VpnClientRootCertificate
|
272
|
+
VpnClientRevokedCertificate = Azure::Network::Mgmt::V2017_10_01::Models::VpnClientRevokedCertificate
|
273
|
+
VirtualNetworkGateway = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGateway
|
274
|
+
LocalNetworkGateway = Azure::Network::Mgmt::V2017_10_01::Models::LocalNetworkGateway
|
275
|
+
VirtualNetworkGatewayConnection = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewayConnection
|
276
|
+
VirtualNetworkGatewayConnectionListEntity = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewayConnectionListEntity
|
277
|
+
TransportProtocol = Azure::Network::Mgmt::V2017_10_01::Models::TransportProtocol
|
278
|
+
IPAllocationMethod = Azure::Network::Mgmt::V2017_10_01::Models::IPAllocationMethod
|
279
|
+
IPVersion = Azure::Network::Mgmt::V2017_10_01::Models::IPVersion
|
280
|
+
SecurityRuleProtocol = Azure::Network::Mgmt::V2017_10_01::Models::SecurityRuleProtocol
|
281
|
+
SecurityRuleAccess = Azure::Network::Mgmt::V2017_10_01::Models::SecurityRuleAccess
|
282
|
+
SecurityRuleDirection = Azure::Network::Mgmt::V2017_10_01::Models::SecurityRuleDirection
|
283
|
+
RouteNextHopType = Azure::Network::Mgmt::V2017_10_01::Models::RouteNextHopType
|
284
|
+
PublicIPAddressSkuName = Azure::Network::Mgmt::V2017_10_01::Models::PublicIPAddressSkuName
|
285
|
+
ApplicationGatewayProtocol = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayProtocol
|
286
|
+
ApplicationGatewayCookieBasedAffinity = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayCookieBasedAffinity
|
287
|
+
ApplicationGatewayBackendHealthServerHealth = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayBackendHealthServerHealth
|
288
|
+
ApplicationGatewaySkuName = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewaySkuName
|
289
|
+
ApplicationGatewayTier = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayTier
|
290
|
+
ApplicationGatewaySslProtocol = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewaySslProtocol
|
291
|
+
ApplicationGatewaySslPolicyType = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewaySslPolicyType
|
292
|
+
ApplicationGatewaySslPolicyName = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewaySslPolicyName
|
293
|
+
ApplicationGatewaySslCipherSuite = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewaySslCipherSuite
|
294
|
+
ApplicationGatewayRequestRoutingRuleType = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayRequestRoutingRuleType
|
295
|
+
ApplicationGatewayRedirectType = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayRedirectType
|
296
|
+
ApplicationGatewayOperationalState = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayOperationalState
|
297
|
+
ApplicationGatewayFirewallMode = Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayFirewallMode
|
298
|
+
AuthorizationUseStatus = Azure::Network::Mgmt::V2017_10_01::Models::AuthorizationUseStatus
|
299
|
+
ExpressRouteCircuitPeeringAdvertisedPublicPrefixState = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitPeeringAdvertisedPublicPrefixState
|
300
|
+
Access = Azure::Network::Mgmt::V2017_10_01::Models::Access
|
301
|
+
ExpressRouteCircuitPeeringType = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitPeeringType
|
302
|
+
ExpressRouteCircuitPeeringState = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitPeeringState
|
303
|
+
ExpressRouteCircuitSkuTier = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitSkuTier
|
304
|
+
ExpressRouteCircuitSkuFamily = Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitSkuFamily
|
305
|
+
ServiceProviderProvisioningState = Azure::Network::Mgmt::V2017_10_01::Models::ServiceProviderProvisioningState
|
306
|
+
LoadBalancerSkuName = Azure::Network::Mgmt::V2017_10_01::Models::LoadBalancerSkuName
|
307
|
+
LoadDistribution = Azure::Network::Mgmt::V2017_10_01::Models::LoadDistribution
|
308
|
+
ProbeProtocol = Azure::Network::Mgmt::V2017_10_01::Models::ProbeProtocol
|
309
|
+
NetworkOperationStatus = Azure::Network::Mgmt::V2017_10_01::Models::NetworkOperationStatus
|
310
|
+
EffectiveSecurityRuleProtocol = Azure::Network::Mgmt::V2017_10_01::Models::EffectiveSecurityRuleProtocol
|
311
|
+
EffectiveRouteSource = Azure::Network::Mgmt::V2017_10_01::Models::EffectiveRouteSource
|
312
|
+
EffectiveRouteState = Azure::Network::Mgmt::V2017_10_01::Models::EffectiveRouteState
|
313
|
+
ProvisioningState = Azure::Network::Mgmt::V2017_10_01::Models::ProvisioningState
|
314
|
+
AssociationType = Azure::Network::Mgmt::V2017_10_01::Models::AssociationType
|
315
|
+
Direction = Azure::Network::Mgmt::V2017_10_01::Models::Direction
|
316
|
+
Protocol = Azure::Network::Mgmt::V2017_10_01::Models::Protocol
|
317
|
+
NextHopType = Azure::Network::Mgmt::V2017_10_01::Models::NextHopType
|
318
|
+
PcProtocol = Azure::Network::Mgmt::V2017_10_01::Models::PcProtocol
|
319
|
+
PcStatus = Azure::Network::Mgmt::V2017_10_01::Models::PcStatus
|
320
|
+
PcError = Azure::Network::Mgmt::V2017_10_01::Models::PcError
|
321
|
+
Origin = Azure::Network::Mgmt::V2017_10_01::Models::Origin
|
322
|
+
Severity = Azure::Network::Mgmt::V2017_10_01::Models::Severity
|
323
|
+
IssueType = Azure::Network::Mgmt::V2017_10_01::Models::IssueType
|
324
|
+
ConnectionStatus = Azure::Network::Mgmt::V2017_10_01::Models::ConnectionStatus
|
325
|
+
ConnectionState = Azure::Network::Mgmt::V2017_10_01::Models::ConnectionState
|
326
|
+
EvaluationState = Azure::Network::Mgmt::V2017_10_01::Models::EvaluationState
|
327
|
+
VirtualNetworkPeeringState = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkPeeringState
|
328
|
+
VirtualNetworkGatewayType = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewayType
|
329
|
+
VpnType = Azure::Network::Mgmt::V2017_10_01::Models::VpnType
|
330
|
+
VirtualNetworkGatewaySkuName = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewaySkuName
|
331
|
+
VirtualNetworkGatewaySkuTier = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewaySkuTier
|
332
|
+
VpnClientProtocol = Azure::Network::Mgmt::V2017_10_01::Models::VpnClientProtocol
|
333
|
+
BgpPeerState = Azure::Network::Mgmt::V2017_10_01::Models::BgpPeerState
|
334
|
+
ProcessorArchitecture = Azure::Network::Mgmt::V2017_10_01::Models::ProcessorArchitecture
|
335
|
+
AuthenticationMethod = Azure::Network::Mgmt::V2017_10_01::Models::AuthenticationMethod
|
336
|
+
VirtualNetworkGatewayConnectionStatus = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewayConnectionStatus
|
337
|
+
VirtualNetworkGatewayConnectionType = Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewayConnectionType
|
338
|
+
IpsecEncryption = Azure::Network::Mgmt::V2017_10_01::Models::IpsecEncryption
|
339
|
+
IpsecIntegrity = Azure::Network::Mgmt::V2017_10_01::Models::IpsecIntegrity
|
340
|
+
IkeEncryption = Azure::Network::Mgmt::V2017_10_01::Models::IkeEncryption
|
341
|
+
IkeIntegrity = Azure::Network::Mgmt::V2017_10_01::Models::IkeIntegrity
|
342
|
+
DhGroup = Azure::Network::Mgmt::V2017_10_01::Models::DhGroup
|
343
|
+
PfsGroup = Azure::Network::Mgmt::V2017_10_01::Models::PfsGroup
|
344
|
+
end
|
345
|
+
|
346
|
+
class NetworkManagementClass
|
347
|
+
attr_reader :application_gateways, :application_security_groups, :available_endpoint_services, :express_route_circuit_authorizations, :express_route_circuit_peerings, :express_route_circuits, :express_route_service_providers, :load_balancers, :load_balancer_backend_address_pools, :load_balancer_frontend_ipconfigurations, :inbound_nat_rules, :load_balancer_load_balancing_rules, :load_balancer_network_interfaces, :load_balancer_probes, :network_interfaces, :network_interface_ipconfigurations, :network_interface_load_balancers, :network_security_groups, :security_rules, :default_security_rules, :network_watchers, :packet_captures, :connection_monitors, :operations, :public_ipaddresses, :route_filters, :route_filter_rules, :route_tables, :routes, :bgp_service_communities, :usages, :virtual_networks, :subnets, :virtual_network_peerings, :virtual_network_gateways, :virtual_network_gateway_connections, :local_network_gateways, :configurable, :base_url, :options, :model_classes
|
348
|
+
|
349
|
+
def initialize(configurable, base_url=nil, options=nil)
|
350
|
+
@configurable, @base_url, @options = configurable, base_url, options
|
351
|
+
|
352
|
+
@client_0 = Azure::Network::Mgmt::V2017_03_30::NetworkManagementClient.new(configurable.credentials, base_url, options)
|
353
|
+
if(@client_0.respond_to?(:subscription_id))
|
354
|
+
@client_0.subscription_id = configurable.subscription_id
|
355
|
+
end
|
356
|
+
add_telemetry(@client_0)
|
357
|
+
|
358
|
+
@client_1 = Azure::Network::Mgmt::V2017_10_01::NetworkManagementClient.new(configurable.credentials, base_url, options)
|
359
|
+
if(@client_1.respond_to?(:subscription_id))
|
360
|
+
@client_1.subscription_id = configurable.subscription_id
|
361
|
+
end
|
362
|
+
add_telemetry(@client_1)
|
363
|
+
@application_gateways = @client_1.application_gateways
|
364
|
+
@application_security_groups = @client_1.application_security_groups
|
365
|
+
@available_endpoint_services = @client_1.available_endpoint_services
|
366
|
+
@express_route_circuit_authorizations = @client_1.express_route_circuit_authorizations
|
367
|
+
@express_route_circuit_peerings = @client_1.express_route_circuit_peerings
|
368
|
+
@express_route_circuits = @client_1.express_route_circuits
|
369
|
+
@express_route_service_providers = @client_1.express_route_service_providers
|
370
|
+
@load_balancers = @client_1.load_balancers
|
371
|
+
@load_balancer_backend_address_pools = @client_1.load_balancer_backend_address_pools
|
372
|
+
@load_balancer_frontend_ipconfigurations = @client_1.load_balancer_frontend_ipconfigurations
|
373
|
+
@inbound_nat_rules = @client_1.inbound_nat_rules
|
374
|
+
@load_balancer_load_balancing_rules = @client_1.load_balancer_load_balancing_rules
|
375
|
+
@load_balancer_network_interfaces = @client_1.load_balancer_network_interfaces
|
376
|
+
@load_balancer_probes = @client_1.load_balancer_probes
|
377
|
+
@network_interfaces = @client_1.network_interfaces
|
378
|
+
@network_interface_ipconfigurations = @client_1.network_interface_ipconfigurations
|
379
|
+
@network_interface_load_balancers = @client_1.network_interface_load_balancers
|
380
|
+
@network_security_groups = @client_1.network_security_groups
|
381
|
+
@security_rules = @client_1.security_rules
|
382
|
+
@default_security_rules = @client_1.default_security_rules
|
383
|
+
@network_watchers = @client_1.network_watchers
|
384
|
+
@packet_captures = @client_1.packet_captures
|
385
|
+
@connection_monitors = @client_1.connection_monitors
|
386
|
+
@operations = @client_1.operations
|
387
|
+
@public_ipaddresses = @client_1.public_ipaddresses
|
388
|
+
@route_filters = @client_1.route_filters
|
389
|
+
@route_filter_rules = @client_1.route_filter_rules
|
390
|
+
@route_tables = @client_1.route_tables
|
391
|
+
@routes = @client_1.routes
|
392
|
+
@bgp_service_communities = @client_1.bgp_service_communities
|
393
|
+
@usages = @client_1.usages
|
394
|
+
@virtual_networks = @client_1.virtual_networks
|
395
|
+
@subnets = @client_1.subnets
|
396
|
+
@virtual_network_peerings = @client_1.virtual_network_peerings
|
397
|
+
@virtual_network_gateways = @client_1.virtual_network_gateways
|
398
|
+
@virtual_network_gateway_connections = @client_1.virtual_network_gateway_connections
|
399
|
+
@local_network_gateways = @client_1.local_network_gateways
|
400
|
+
|
401
|
+
@model_classes = ModelClasses.new
|
402
|
+
end
|
403
|
+
|
404
|
+
def add_telemetry(client)
|
405
|
+
profile_information = "Profiles/azure_sdk/#{Azure::VERSION}/V2018_03_01/Network/Mgmt"
|
406
|
+
client.add_user_agent_information(profile_information)
|
407
|
+
end
|
408
|
+
|
409
|
+
def method_missing(method, *args)
|
410
|
+
if @client_1.respond_to?method
|
411
|
+
@client_1.send(method, *args)
|
412
|
+
elsif @client_0.respond_to?method
|
413
|
+
@client_0.send(method, *args)
|
414
|
+
else
|
415
|
+
super
|
416
|
+
end
|
417
|
+
end
|
418
|
+
|
419
|
+
class ModelClasses
|
420
|
+
def ip_tag
|
421
|
+
Azure::Network::Mgmt::V2017_03_30::Models::IpTag
|
422
|
+
end
|
423
|
+
def endpoint_service
|
424
|
+
Azure::Network::Mgmt::V2017_03_30::Models::EndpointService
|
425
|
+
end
|
426
|
+
def delegation
|
427
|
+
Azure::Network::Mgmt::V2017_03_30::Models::Delegation
|
428
|
+
end
|
429
|
+
def service_association_link
|
430
|
+
Azure::Network::Mgmt::V2017_03_30::Models::ServiceAssociationLink
|
431
|
+
end
|
432
|
+
def interface_endpoint
|
433
|
+
Azure::Network::Mgmt::V2017_03_30::Models::InterfaceEndpoint
|
434
|
+
end
|
435
|
+
def network_interface_tap_configuration
|
436
|
+
Azure::Network::Mgmt::V2017_03_30::Models::NetworkInterfaceTapConfiguration
|
437
|
+
end
|
438
|
+
def virtual_network_tap
|
439
|
+
Azure::Network::Mgmt::V2017_03_30::Models::VirtualNetworkTap
|
440
|
+
end
|
441
|
+
def service_endpoint_policy_definition
|
442
|
+
Azure::Network::Mgmt::V2017_03_30::Models::ServiceEndpointPolicyDefinition
|
443
|
+
end
|
444
|
+
def service_endpoint_policy
|
445
|
+
Azure::Network::Mgmt::V2017_03_30::Models::ServiceEndpointPolicy
|
446
|
+
end
|
447
|
+
def ipconfiguration_profile
|
448
|
+
Azure::Network::Mgmt::V2017_03_30::Models::IPConfigurationProfile
|
449
|
+
end
|
450
|
+
def topology_association
|
451
|
+
Azure::Network::Mgmt::V2017_10_01::Models::TopologyAssociation
|
452
|
+
end
|
453
|
+
def sub_resource
|
454
|
+
Azure::Network::Mgmt::V2017_10_01::Models::SubResource
|
455
|
+
end
|
456
|
+
def topology_resource
|
457
|
+
Azure::Network::Mgmt::V2017_10_01::Models::TopologyResource
|
458
|
+
end
|
459
|
+
def operation_list_result
|
460
|
+
Azure::Network::Mgmt::V2017_10_01::Models::OperationListResult
|
461
|
+
end
|
462
|
+
def operation
|
463
|
+
Azure::Network::Mgmt::V2017_10_01::Models::Operation
|
464
|
+
end
|
465
|
+
def network_interface_dns_settings
|
466
|
+
Azure::Network::Mgmt::V2017_10_01::Models::NetworkInterfaceDnsSettings
|
467
|
+
end
|
468
|
+
def operation_properties_format_service_specification
|
469
|
+
Azure::Network::Mgmt::V2017_10_01::Models::OperationPropertiesFormatServiceSpecification
|
470
|
+
end
|
471
|
+
def virtual_network_connection_gateway_reference
|
472
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkConnectionGatewayReference
|
473
|
+
end
|
474
|
+
def load_balancer_list_result
|
475
|
+
Azure::Network::Mgmt::V2017_10_01::Models::LoadBalancerListResult
|
476
|
+
end
|
477
|
+
def connection_shared_key
|
478
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ConnectionSharedKey
|
479
|
+
end
|
480
|
+
def inbound_nat_rule_list_result
|
481
|
+
Azure::Network::Mgmt::V2017_10_01::Models::InboundNatRuleListResult
|
482
|
+
end
|
483
|
+
def public_ipaddress_sku
|
484
|
+
Azure::Network::Mgmt::V2017_10_01::Models::PublicIPAddressSku
|
485
|
+
end
|
486
|
+
def load_balancer_backend_address_pool_list_result
|
487
|
+
Azure::Network::Mgmt::V2017_10_01::Models::LoadBalancerBackendAddressPoolListResult
|
488
|
+
end
|
489
|
+
def connection_reset_shared_key
|
490
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ConnectionResetSharedKey
|
491
|
+
end
|
492
|
+
def load_balancer_frontend_ipconfiguration_list_result
|
493
|
+
Azure::Network::Mgmt::V2017_10_01::Models::LoadBalancerFrontendIPConfigurationListResult
|
494
|
+
end
|
495
|
+
def ipsec_policy
|
496
|
+
Azure::Network::Mgmt::V2017_10_01::Models::IpsecPolicy
|
497
|
+
end
|
498
|
+
def load_balancer_load_balancing_rule_list_result
|
499
|
+
Azure::Network::Mgmt::V2017_10_01::Models::LoadBalancerLoadBalancingRuleListResult
|
500
|
+
end
|
501
|
+
def gateway_route_list_result
|
502
|
+
Azure::Network::Mgmt::V2017_10_01::Models::GatewayRouteListResult
|
503
|
+
end
|
504
|
+
def load_balancer_probe_list_result
|
505
|
+
Azure::Network::Mgmt::V2017_10_01::Models::LoadBalancerProbeListResult
|
506
|
+
end
|
507
|
+
def bgp_peer_status_list_result
|
508
|
+
Azure::Network::Mgmt::V2017_10_01::Models::BgpPeerStatusListResult
|
509
|
+
end
|
510
|
+
def network_interface_list_result
|
511
|
+
Azure::Network::Mgmt::V2017_10_01::Models::NetworkInterfaceListResult
|
512
|
+
end
|
513
|
+
def virtual_network_gateway_list_result
|
514
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewayListResult
|
515
|
+
end
|
516
|
+
def error_details
|
517
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ErrorDetails
|
518
|
+
end
|
519
|
+
def application_gateway_backend_health_http_settings
|
520
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayBackendHealthHttpSettings
|
521
|
+
end
|
522
|
+
def error
|
523
|
+
Azure::Network::Mgmt::V2017_10_01::Models::Error
|
524
|
+
end
|
525
|
+
def application_gateway_backend_health
|
526
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayBackendHealth
|
527
|
+
end
|
528
|
+
def azure_async_operation_result
|
529
|
+
Azure::Network::Mgmt::V2017_10_01::Models::AzureAsyncOperationResult
|
530
|
+
end
|
531
|
+
def application_gateway_ssl_policy
|
532
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewaySslPolicy
|
533
|
+
end
|
534
|
+
def network_interface_ipconfiguration_list_result
|
535
|
+
Azure::Network::Mgmt::V2017_10_01::Models::NetworkInterfaceIPConfigurationListResult
|
536
|
+
end
|
537
|
+
def gateway_route
|
538
|
+
Azure::Network::Mgmt::V2017_10_01::Models::GatewayRoute
|
539
|
+
end
|
540
|
+
def network_interface_load_balancer_list_result
|
541
|
+
Azure::Network::Mgmt::V2017_10_01::Models::NetworkInterfaceLoadBalancerListResult
|
542
|
+
end
|
543
|
+
def bgp_settings
|
544
|
+
Azure::Network::Mgmt::V2017_10_01::Models::BgpSettings
|
545
|
+
end
|
546
|
+
def effective_network_security_group_association
|
547
|
+
Azure::Network::Mgmt::V2017_10_01::Models::EffectiveNetworkSecurityGroupAssociation
|
548
|
+
end
|
549
|
+
def virtual_network_gateway_sku
|
550
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewaySku
|
551
|
+
end
|
552
|
+
def effective_network_security_rule
|
553
|
+
Azure::Network::Mgmt::V2017_10_01::Models::EffectiveNetworkSecurityRule
|
554
|
+
end
|
555
|
+
def application_gateway_probe_health_response_match
|
556
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayProbeHealthResponseMatch
|
557
|
+
end
|
558
|
+
def effective_network_security_group
|
559
|
+
Azure::Network::Mgmt::V2017_10_01::Models::EffectiveNetworkSecurityGroup
|
560
|
+
end
|
561
|
+
def virtual_network_usage_name
|
562
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkUsageName
|
563
|
+
end
|
564
|
+
def effective_network_security_group_list_result
|
565
|
+
Azure::Network::Mgmt::V2017_10_01::Models::EffectiveNetworkSecurityGroupListResult
|
566
|
+
end
|
567
|
+
def virtual_network_list_result
|
568
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkListResult
|
569
|
+
end
|
570
|
+
def effective_route
|
571
|
+
Azure::Network::Mgmt::V2017_10_01::Models::EffectiveRoute
|
572
|
+
end
|
573
|
+
def application_gateway_web_application_firewall_configuration
|
574
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayWebApplicationFirewallConfiguration
|
575
|
+
end
|
576
|
+
def effective_route_list_result
|
577
|
+
Azure::Network::Mgmt::V2017_10_01::Models::EffectiveRouteListResult
|
578
|
+
end
|
579
|
+
def application_gateway_list_result
|
580
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayListResult
|
581
|
+
end
|
582
|
+
def security_rule_list_result
|
583
|
+
Azure::Network::Mgmt::V2017_10_01::Models::SecurityRuleListResult
|
584
|
+
end
|
585
|
+
def application_gateway_firewall_rule_group
|
586
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayFirewallRuleGroup
|
587
|
+
end
|
588
|
+
def network_security_group_list_result
|
589
|
+
Azure::Network::Mgmt::V2017_10_01::Models::NetworkSecurityGroupListResult
|
590
|
+
end
|
591
|
+
def application_gateway_available_waf_rule_sets_result
|
592
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayAvailableWafRuleSetsResult
|
593
|
+
end
|
594
|
+
def log_specification
|
595
|
+
Azure::Network::Mgmt::V2017_10_01::Models::LogSpecification
|
596
|
+
end
|
597
|
+
def address_space
|
598
|
+
Azure::Network::Mgmt::V2017_10_01::Models::AddressSpace
|
599
|
+
end
|
600
|
+
def network_watcher_list_result
|
601
|
+
Azure::Network::Mgmt::V2017_10_01::Models::NetworkWatcherListResult
|
602
|
+
end
|
603
|
+
def resource
|
604
|
+
Azure::Network::Mgmt::V2017_10_01::Models::Resource
|
605
|
+
end
|
606
|
+
def topology_parameters
|
607
|
+
Azure::Network::Mgmt::V2017_10_01::Models::TopologyParameters
|
608
|
+
end
|
609
|
+
def application_security_group_list_result
|
610
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationSecurityGroupListResult
|
611
|
+
end
|
612
|
+
def dns_name_availability_result
|
613
|
+
Azure::Network::Mgmt::V2017_10_01::Models::DnsNameAvailabilityResult
|
614
|
+
end
|
615
|
+
def dimension
|
616
|
+
Azure::Network::Mgmt::V2017_10_01::Models::Dimension
|
617
|
+
end
|
618
|
+
def endpoint_services_list_result
|
619
|
+
Azure::Network::Mgmt::V2017_10_01::Models::EndpointServicesListResult
|
620
|
+
end
|
621
|
+
def metric_specification
|
622
|
+
Azure::Network::Mgmt::V2017_10_01::Models::MetricSpecification
|
623
|
+
end
|
624
|
+
def authorization_list_result
|
625
|
+
Azure::Network::Mgmt::V2017_10_01::Models::AuthorizationListResult
|
626
|
+
end
|
627
|
+
def topology
|
628
|
+
Azure::Network::Mgmt::V2017_10_01::Models::Topology
|
629
|
+
end
|
630
|
+
def usage_name
|
631
|
+
Azure::Network::Mgmt::V2017_10_01::Models::UsageName
|
632
|
+
end
|
633
|
+
def verification_ipflow_parameters
|
634
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VerificationIPFlowParameters
|
635
|
+
end
|
636
|
+
def bgp_service_community_list_result
|
637
|
+
Azure::Network::Mgmt::V2017_10_01::Models::BgpServiceCommunityListResult
|
638
|
+
end
|
639
|
+
def verification_ipflow_result
|
640
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VerificationIPFlowResult
|
641
|
+
end
|
642
|
+
def ipv6_express_route_circuit_peering_config
|
643
|
+
Azure::Network::Mgmt::V2017_10_01::Models::Ipv6ExpressRouteCircuitPeeringConfig
|
644
|
+
end
|
645
|
+
def next_hop_parameters
|
646
|
+
Azure::Network::Mgmt::V2017_10_01::Models::NextHopParameters
|
647
|
+
end
|
648
|
+
def express_route_circuit_sku
|
649
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitSku
|
650
|
+
end
|
651
|
+
def next_hop_result
|
652
|
+
Azure::Network::Mgmt::V2017_10_01::Models::NextHopResult
|
653
|
+
end
|
654
|
+
def route_list_result
|
655
|
+
Azure::Network::Mgmt::V2017_10_01::Models::RouteListResult
|
656
|
+
end
|
657
|
+
def security_group_view_parameters
|
658
|
+
Azure::Network::Mgmt::V2017_10_01::Models::SecurityGroupViewParameters
|
659
|
+
end
|
660
|
+
def express_route_circuits_arp_table_list_result
|
661
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitsArpTableListResult
|
662
|
+
end
|
663
|
+
def network_interface_association
|
664
|
+
Azure::Network::Mgmt::V2017_10_01::Models::NetworkInterfaceAssociation
|
665
|
+
end
|
666
|
+
def express_route_circuits_routes_table_list_result
|
667
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitsRoutesTableListResult
|
668
|
+
end
|
669
|
+
def subnet_association
|
670
|
+
Azure::Network::Mgmt::V2017_10_01::Models::SubnetAssociation
|
671
|
+
end
|
672
|
+
def express_route_circuits_routes_table_summary_list_result
|
673
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitsRoutesTableSummaryListResult
|
674
|
+
end
|
675
|
+
def security_rule_associations
|
676
|
+
Azure::Network::Mgmt::V2017_10_01::Models::SecurityRuleAssociations
|
677
|
+
end
|
678
|
+
def express_route_service_provider_bandwidths_offered
|
679
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteServiceProviderBandwidthsOffered
|
680
|
+
end
|
681
|
+
def security_group_network_interface
|
682
|
+
Azure::Network::Mgmt::V2017_10_01::Models::SecurityGroupNetworkInterface
|
683
|
+
end
|
684
|
+
def express_route_service_provider_list_result
|
685
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteServiceProviderListResult
|
686
|
+
end
|
687
|
+
def security_group_view_result
|
688
|
+
Azure::Network::Mgmt::V2017_10_01::Models::SecurityGroupViewResult
|
689
|
+
end
|
690
|
+
def route_filter_rule_list_result
|
691
|
+
Azure::Network::Mgmt::V2017_10_01::Models::RouteFilterRuleListResult
|
692
|
+
end
|
693
|
+
def packet_capture_storage_location
|
694
|
+
Azure::Network::Mgmt::V2017_10_01::Models::PacketCaptureStorageLocation
|
695
|
+
end
|
696
|
+
def public_ipaddress_list_result
|
697
|
+
Azure::Network::Mgmt::V2017_10_01::Models::PublicIPAddressListResult
|
698
|
+
end
|
699
|
+
def packet_capture_filter
|
700
|
+
Azure::Network::Mgmt::V2017_10_01::Models::PacketCaptureFilter
|
701
|
+
end
|
702
|
+
def virtual_network_gateway_list_connections_result
|
703
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewayListConnectionsResult
|
704
|
+
end
|
705
|
+
def packet_capture_parameters
|
706
|
+
Azure::Network::Mgmt::V2017_10_01::Models::PacketCaptureParameters
|
707
|
+
end
|
708
|
+
def service_endpoint_properties_format
|
709
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ServiceEndpointPropertiesFormat
|
710
|
+
end
|
711
|
+
def packet_capture
|
712
|
+
Azure::Network::Mgmt::V2017_10_01::Models::PacketCapture
|
713
|
+
end
|
714
|
+
def virtual_network_gateway_connection_list_result
|
715
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewayConnectionListResult
|
716
|
+
end
|
717
|
+
def packet_capture_result
|
718
|
+
Azure::Network::Mgmt::V2017_10_01::Models::PacketCaptureResult
|
719
|
+
end
|
720
|
+
def application_gateway_backend_address
|
721
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayBackendAddress
|
722
|
+
end
|
723
|
+
def packet_capture_list_result
|
724
|
+
Azure::Network::Mgmt::V2017_10_01::Models::PacketCaptureListResult
|
725
|
+
end
|
726
|
+
def application_gateway_backend_health_server
|
727
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayBackendHealthServer
|
728
|
+
end
|
729
|
+
def packet_capture_query_status_result
|
730
|
+
Azure::Network::Mgmt::V2017_10_01::Models::PacketCaptureQueryStatusResult
|
731
|
+
end
|
732
|
+
def application_gateway_sku
|
733
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewaySku
|
734
|
+
end
|
735
|
+
def troubleshooting_parameters
|
736
|
+
Azure::Network::Mgmt::V2017_10_01::Models::TroubleshootingParameters
|
737
|
+
end
|
738
|
+
def bgp_peer_status
|
739
|
+
Azure::Network::Mgmt::V2017_10_01::Models::BgpPeerStatus
|
740
|
+
end
|
741
|
+
def query_troubleshooting_parameters
|
742
|
+
Azure::Network::Mgmt::V2017_10_01::Models::QueryTroubleshootingParameters
|
743
|
+
end
|
744
|
+
def virtual_network_list_usage_result
|
745
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkListUsageResult
|
746
|
+
end
|
747
|
+
def troubleshooting_recommended_actions
|
748
|
+
Azure::Network::Mgmt::V2017_10_01::Models::TroubleshootingRecommendedActions
|
749
|
+
end
|
750
|
+
def ipaddress_availability_result
|
751
|
+
Azure::Network::Mgmt::V2017_10_01::Models::IPAddressAvailabilityResult
|
752
|
+
end
|
753
|
+
def troubleshooting_details
|
754
|
+
Azure::Network::Mgmt::V2017_10_01::Models::TroubleshootingDetails
|
755
|
+
end
|
756
|
+
def dhcp_options
|
757
|
+
Azure::Network::Mgmt::V2017_10_01::Models::DhcpOptions
|
758
|
+
end
|
759
|
+
def troubleshooting_result
|
760
|
+
Azure::Network::Mgmt::V2017_10_01::Models::TroubleshootingResult
|
761
|
+
end
|
762
|
+
def virtual_network_peering_list_result
|
763
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkPeeringListResult
|
764
|
+
end
|
765
|
+
def retention_policy_parameters
|
766
|
+
Azure::Network::Mgmt::V2017_10_01::Models::RetentionPolicyParameters
|
767
|
+
end
|
768
|
+
def application_gateway_available_ssl_predefined_policies
|
769
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayAvailableSslPredefinedPolicies
|
770
|
+
end
|
771
|
+
def flow_log_status_parameters
|
772
|
+
Azure::Network::Mgmt::V2017_10_01::Models::FlowLogStatusParameters
|
773
|
+
end
|
774
|
+
def usages_list_result
|
775
|
+
Azure::Network::Mgmt::V2017_10_01::Models::UsagesListResult
|
776
|
+
end
|
777
|
+
def flow_log_information
|
778
|
+
Azure::Network::Mgmt::V2017_10_01::Models::FlowLogInformation
|
779
|
+
end
|
780
|
+
def express_route_circuit_peering_config
|
781
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitPeeringConfig
|
782
|
+
end
|
783
|
+
def connectivity_source
|
784
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ConnectivitySource
|
785
|
+
end
|
786
|
+
def bgpcommunity
|
787
|
+
Azure::Network::Mgmt::V2017_10_01::Models::BGPCommunity
|
788
|
+
end
|
789
|
+
def connectivity_destination
|
790
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ConnectivityDestination
|
791
|
+
end
|
792
|
+
def express_route_circuit_service_provider_properties
|
793
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitServiceProviderProperties
|
794
|
+
end
|
795
|
+
def connectivity_parameters
|
796
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ConnectivityParameters
|
797
|
+
end
|
798
|
+
def express_route_circuit_routes_table
|
799
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitRoutesTable
|
800
|
+
end
|
801
|
+
def connectivity_issue
|
802
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ConnectivityIssue
|
803
|
+
end
|
804
|
+
def express_route_circuit_list_result
|
805
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitListResult
|
806
|
+
end
|
807
|
+
def connectivity_hop
|
808
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ConnectivityHop
|
809
|
+
end
|
810
|
+
def load_balancer_sku
|
811
|
+
Azure::Network::Mgmt::V2017_10_01::Models::LoadBalancerSku
|
812
|
+
end
|
813
|
+
def connectivity_information
|
814
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ConnectivityInformation
|
815
|
+
end
|
816
|
+
def vpn_device_script_parameters
|
817
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VpnDeviceScriptParameters
|
818
|
+
end
|
819
|
+
def azure_reachability_report_location
|
820
|
+
Azure::Network::Mgmt::V2017_10_01::Models::AzureReachabilityReportLocation
|
821
|
+
end
|
822
|
+
def public_ipaddress_dns_settings
|
823
|
+
Azure::Network::Mgmt::V2017_10_01::Models::PublicIPAddressDnsSettings
|
824
|
+
end
|
825
|
+
def azure_reachability_report_parameters
|
826
|
+
Azure::Network::Mgmt::V2017_10_01::Models::AzureReachabilityReportParameters
|
827
|
+
end
|
828
|
+
def application_gateway_connection_draining
|
829
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayConnectionDraining
|
830
|
+
end
|
831
|
+
def azure_reachability_report_latency_info
|
832
|
+
Azure::Network::Mgmt::V2017_10_01::Models::AzureReachabilityReportLatencyInfo
|
833
|
+
end
|
834
|
+
def vpn_client_parameters
|
835
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VpnClientParameters
|
836
|
+
end
|
837
|
+
def azure_reachability_report_item
|
838
|
+
Azure::Network::Mgmt::V2017_10_01::Models::AzureReachabilityReportItem
|
839
|
+
end
|
840
|
+
def virtual_network_usage
|
841
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkUsage
|
842
|
+
end
|
843
|
+
def azure_reachability_report
|
844
|
+
Azure::Network::Mgmt::V2017_10_01::Models::AzureReachabilityReport
|
845
|
+
end
|
846
|
+
def application_gateway_firewall_rule
|
847
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayFirewallRule
|
848
|
+
end
|
849
|
+
def available_providers_list_parameters
|
850
|
+
Azure::Network::Mgmt::V2017_10_01::Models::AvailableProvidersListParameters
|
851
|
+
end
|
852
|
+
def tags_object
|
853
|
+
Azure::Network::Mgmt::V2017_10_01::Models::TagsObject
|
854
|
+
end
|
855
|
+
def available_providers_list_city
|
856
|
+
Azure::Network::Mgmt::V2017_10_01::Models::AvailableProvidersListCity
|
857
|
+
end
|
858
|
+
def express_route_circuit_stats
|
859
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitStats
|
860
|
+
end
|
861
|
+
def available_providers_list_state
|
862
|
+
Azure::Network::Mgmt::V2017_10_01::Models::AvailableProvidersListState
|
863
|
+
end
|
864
|
+
def express_route_circuit_arp_table
|
865
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitArpTable
|
866
|
+
end
|
867
|
+
def available_providers_list_country
|
868
|
+
Azure::Network::Mgmt::V2017_10_01::Models::AvailableProvidersListCountry
|
869
|
+
end
|
870
|
+
def route_table_list_result
|
871
|
+
Azure::Network::Mgmt::V2017_10_01::Models::RouteTableListResult
|
872
|
+
end
|
873
|
+
def available_providers_list
|
874
|
+
Azure::Network::Mgmt::V2017_10_01::Models::AvailableProvidersList
|
875
|
+
end
|
876
|
+
def local_network_gateway_list_result
|
877
|
+
Azure::Network::Mgmt::V2017_10_01::Models::LocalNetworkGatewayListResult
|
878
|
+
end
|
879
|
+
def connection_monitor_source
|
880
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ConnectionMonitorSource
|
881
|
+
end
|
882
|
+
def application_gateway_backend_health_pool
|
883
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayBackendHealthPool
|
884
|
+
end
|
885
|
+
def connection_monitor_destination
|
886
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ConnectionMonitorDestination
|
887
|
+
end
|
888
|
+
def application_gateway_firewall_disabled_rule_group
|
889
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayFirewallDisabledRuleGroup
|
890
|
+
end
|
891
|
+
def connection_monitor_parameters
|
892
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ConnectionMonitorParameters
|
893
|
+
end
|
894
|
+
def usage
|
895
|
+
Azure::Network::Mgmt::V2017_10_01::Models::Usage
|
896
|
+
end
|
897
|
+
def connection_monitor
|
898
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ConnectionMonitor
|
899
|
+
end
|
900
|
+
def express_route_circuit_routes_table_summary
|
901
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitRoutesTableSummary
|
902
|
+
end
|
903
|
+
def connection_monitor_result
|
904
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ConnectionMonitorResult
|
905
|
+
end
|
906
|
+
def tunnel_connection_health
|
907
|
+
Azure::Network::Mgmt::V2017_10_01::Models::TunnelConnectionHealth
|
908
|
+
end
|
909
|
+
def connection_monitor_list_result
|
910
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ConnectionMonitorListResult
|
911
|
+
end
|
912
|
+
def subnet_list_result
|
913
|
+
Azure::Network::Mgmt::V2017_10_01::Models::SubnetListResult
|
914
|
+
end
|
915
|
+
def connection_state_snapshot
|
916
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ConnectionStateSnapshot
|
917
|
+
end
|
918
|
+
def route_filter_list_result
|
919
|
+
Azure::Network::Mgmt::V2017_10_01::Models::RouteFilterListResult
|
920
|
+
end
|
921
|
+
def connection_monitor_query_result
|
922
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ConnectionMonitorQueryResult
|
923
|
+
end
|
924
|
+
def express_route_circuit_peering_list_result
|
925
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitPeeringListResult
|
926
|
+
end
|
927
|
+
def operation_display
|
928
|
+
Azure::Network::Mgmt::V2017_10_01::Models::OperationDisplay
|
929
|
+
end
|
930
|
+
def vpn_client_configuration
|
931
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VpnClientConfiguration
|
932
|
+
end
|
933
|
+
def availability
|
934
|
+
Azure::Network::Mgmt::V2017_10_01::Models::Availability
|
935
|
+
end
|
936
|
+
def backend_address_pool
|
937
|
+
Azure::Network::Mgmt::V2017_10_01::Models::BackendAddressPool
|
938
|
+
end
|
939
|
+
def inbound_nat_rule
|
940
|
+
Azure::Network::Mgmt::V2017_10_01::Models::InboundNatRule
|
941
|
+
end
|
942
|
+
def application_security_group
|
943
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationSecurityGroup
|
944
|
+
end
|
945
|
+
def security_rule
|
946
|
+
Azure::Network::Mgmt::V2017_10_01::Models::SecurityRule
|
947
|
+
end
|
948
|
+
def network_interface
|
949
|
+
Azure::Network::Mgmt::V2017_10_01::Models::NetworkInterface
|
950
|
+
end
|
951
|
+
def network_security_group
|
952
|
+
Azure::Network::Mgmt::V2017_10_01::Models::NetworkSecurityGroup
|
953
|
+
end
|
954
|
+
def route
|
955
|
+
Azure::Network::Mgmt::V2017_10_01::Models::Route
|
956
|
+
end
|
957
|
+
def route_table
|
958
|
+
Azure::Network::Mgmt::V2017_10_01::Models::RouteTable
|
959
|
+
end
|
960
|
+
def public_ipaddress
|
961
|
+
Azure::Network::Mgmt::V2017_10_01::Models::PublicIPAddress
|
962
|
+
end
|
963
|
+
def ipconfiguration
|
964
|
+
Azure::Network::Mgmt::V2017_10_01::Models::IPConfiguration
|
965
|
+
end
|
966
|
+
def resource_navigation_link
|
967
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ResourceNavigationLink
|
968
|
+
end
|
969
|
+
def subnet
|
970
|
+
Azure::Network::Mgmt::V2017_10_01::Models::Subnet
|
971
|
+
end
|
972
|
+
def network_interface_ipconfiguration
|
973
|
+
Azure::Network::Mgmt::V2017_10_01::Models::NetworkInterfaceIPConfiguration
|
974
|
+
end
|
975
|
+
def application_gateway_backend_address_pool
|
976
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayBackendAddressPool
|
977
|
+
end
|
978
|
+
def application_gateway_backend_http_settings
|
979
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayBackendHttpSettings
|
980
|
+
end
|
981
|
+
def application_gateway_ipconfiguration
|
982
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayIPConfiguration
|
983
|
+
end
|
984
|
+
def application_gateway_authentication_certificate
|
985
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayAuthenticationCertificate
|
986
|
+
end
|
987
|
+
def application_gateway_ssl_certificate
|
988
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewaySslCertificate
|
989
|
+
end
|
990
|
+
def application_gateway_frontend_ipconfiguration
|
991
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayFrontendIPConfiguration
|
992
|
+
end
|
993
|
+
def application_gateway_frontend_port
|
994
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayFrontendPort
|
995
|
+
end
|
996
|
+
def application_gateway_http_listener
|
997
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayHttpListener
|
998
|
+
end
|
999
|
+
def application_gateway_path_rule
|
1000
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayPathRule
|
1001
|
+
end
|
1002
|
+
def application_gateway_probe
|
1003
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayProbe
|
1004
|
+
end
|
1005
|
+
def application_gateway_request_routing_rule
|
1006
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayRequestRoutingRule
|
1007
|
+
end
|
1008
|
+
def application_gateway_redirect_configuration
|
1009
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayRedirectConfiguration
|
1010
|
+
end
|
1011
|
+
def application_gateway_url_path_map
|
1012
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayUrlPathMap
|
1013
|
+
end
|
1014
|
+
def application_gateway
|
1015
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGateway
|
1016
|
+
end
|
1017
|
+
def application_gateway_firewall_rule_set
|
1018
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayFirewallRuleSet
|
1019
|
+
end
|
1020
|
+
def application_gateway_available_ssl_options
|
1021
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayAvailableSslOptions
|
1022
|
+
end
|
1023
|
+
def application_gateway_ssl_predefined_policy
|
1024
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewaySslPredefinedPolicy
|
1025
|
+
end
|
1026
|
+
def endpoint_service_result
|
1027
|
+
Azure::Network::Mgmt::V2017_10_01::Models::EndpointServiceResult
|
1028
|
+
end
|
1029
|
+
def express_route_circuit_authorization
|
1030
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitAuthorization
|
1031
|
+
end
|
1032
|
+
def route_filter_rule
|
1033
|
+
Azure::Network::Mgmt::V2017_10_01::Models::RouteFilterRule
|
1034
|
+
end
|
1035
|
+
def express_route_circuit_peering
|
1036
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitPeering
|
1037
|
+
end
|
1038
|
+
def route_filter
|
1039
|
+
Azure::Network::Mgmt::V2017_10_01::Models::RouteFilter
|
1040
|
+
end
|
1041
|
+
def express_route_circuit
|
1042
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuit
|
1043
|
+
end
|
1044
|
+
def express_route_service_provider
|
1045
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteServiceProvider
|
1046
|
+
end
|
1047
|
+
def frontend_ipconfiguration
|
1048
|
+
Azure::Network::Mgmt::V2017_10_01::Models::FrontendIPConfiguration
|
1049
|
+
end
|
1050
|
+
def load_balancing_rule
|
1051
|
+
Azure::Network::Mgmt::V2017_10_01::Models::LoadBalancingRule
|
1052
|
+
end
|
1053
|
+
def probe
|
1054
|
+
Azure::Network::Mgmt::V2017_10_01::Models::Probe
|
1055
|
+
end
|
1056
|
+
def inbound_nat_pool
|
1057
|
+
Azure::Network::Mgmt::V2017_10_01::Models::InboundNatPool
|
1058
|
+
end
|
1059
|
+
def outbound_nat_rule
|
1060
|
+
Azure::Network::Mgmt::V2017_10_01::Models::OutboundNatRule
|
1061
|
+
end
|
1062
|
+
def load_balancer
|
1063
|
+
Azure::Network::Mgmt::V2017_10_01::Models::LoadBalancer
|
1064
|
+
end
|
1065
|
+
def network_watcher
|
1066
|
+
Azure::Network::Mgmt::V2017_10_01::Models::NetworkWatcher
|
1067
|
+
end
|
1068
|
+
def patch_route_filter_rule
|
1069
|
+
Azure::Network::Mgmt::V2017_10_01::Models::PatchRouteFilterRule
|
1070
|
+
end
|
1071
|
+
def patch_route_filter
|
1072
|
+
Azure::Network::Mgmt::V2017_10_01::Models::PatchRouteFilter
|
1073
|
+
end
|
1074
|
+
def bgp_service_community
|
1075
|
+
Azure::Network::Mgmt::V2017_10_01::Models::BgpServiceCommunity
|
1076
|
+
end
|
1077
|
+
def virtual_network_peering
|
1078
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkPeering
|
1079
|
+
end
|
1080
|
+
def virtual_network
|
1081
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetwork
|
1082
|
+
end
|
1083
|
+
def virtual_network_gateway_ipconfiguration
|
1084
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewayIPConfiguration
|
1085
|
+
end
|
1086
|
+
def vpn_client_root_certificate
|
1087
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VpnClientRootCertificate
|
1088
|
+
end
|
1089
|
+
def vpn_client_revoked_certificate
|
1090
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VpnClientRevokedCertificate
|
1091
|
+
end
|
1092
|
+
def virtual_network_gateway
|
1093
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGateway
|
1094
|
+
end
|
1095
|
+
def local_network_gateway
|
1096
|
+
Azure::Network::Mgmt::V2017_10_01::Models::LocalNetworkGateway
|
1097
|
+
end
|
1098
|
+
def virtual_network_gateway_connection
|
1099
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewayConnection
|
1100
|
+
end
|
1101
|
+
def virtual_network_gateway_connection_list_entity
|
1102
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewayConnectionListEntity
|
1103
|
+
end
|
1104
|
+
def transport_protocol
|
1105
|
+
Azure::Network::Mgmt::V2017_10_01::Models::TransportProtocol
|
1106
|
+
end
|
1107
|
+
def ipallocation_method
|
1108
|
+
Azure::Network::Mgmt::V2017_10_01::Models::IPAllocationMethod
|
1109
|
+
end
|
1110
|
+
def ipversion
|
1111
|
+
Azure::Network::Mgmt::V2017_10_01::Models::IPVersion
|
1112
|
+
end
|
1113
|
+
def security_rule_protocol
|
1114
|
+
Azure::Network::Mgmt::V2017_10_01::Models::SecurityRuleProtocol
|
1115
|
+
end
|
1116
|
+
def security_rule_access
|
1117
|
+
Azure::Network::Mgmt::V2017_10_01::Models::SecurityRuleAccess
|
1118
|
+
end
|
1119
|
+
def security_rule_direction
|
1120
|
+
Azure::Network::Mgmt::V2017_10_01::Models::SecurityRuleDirection
|
1121
|
+
end
|
1122
|
+
def route_next_hop_type
|
1123
|
+
Azure::Network::Mgmt::V2017_10_01::Models::RouteNextHopType
|
1124
|
+
end
|
1125
|
+
def public_ipaddress_sku_name
|
1126
|
+
Azure::Network::Mgmt::V2017_10_01::Models::PublicIPAddressSkuName
|
1127
|
+
end
|
1128
|
+
def application_gateway_protocol
|
1129
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayProtocol
|
1130
|
+
end
|
1131
|
+
def application_gateway_cookie_based_affinity
|
1132
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayCookieBasedAffinity
|
1133
|
+
end
|
1134
|
+
def application_gateway_backend_health_server_health
|
1135
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayBackendHealthServerHealth
|
1136
|
+
end
|
1137
|
+
def application_gateway_sku_name
|
1138
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewaySkuName
|
1139
|
+
end
|
1140
|
+
def application_gateway_tier
|
1141
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayTier
|
1142
|
+
end
|
1143
|
+
def application_gateway_ssl_protocol
|
1144
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewaySslProtocol
|
1145
|
+
end
|
1146
|
+
def application_gateway_ssl_policy_type
|
1147
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewaySslPolicyType
|
1148
|
+
end
|
1149
|
+
def application_gateway_ssl_policy_name
|
1150
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewaySslPolicyName
|
1151
|
+
end
|
1152
|
+
def application_gateway_ssl_cipher_suite
|
1153
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewaySslCipherSuite
|
1154
|
+
end
|
1155
|
+
def application_gateway_request_routing_rule_type
|
1156
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayRequestRoutingRuleType
|
1157
|
+
end
|
1158
|
+
def application_gateway_redirect_type
|
1159
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayRedirectType
|
1160
|
+
end
|
1161
|
+
def application_gateway_operational_state
|
1162
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayOperationalState
|
1163
|
+
end
|
1164
|
+
def application_gateway_firewall_mode
|
1165
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ApplicationGatewayFirewallMode
|
1166
|
+
end
|
1167
|
+
def authorization_use_status
|
1168
|
+
Azure::Network::Mgmt::V2017_10_01::Models::AuthorizationUseStatus
|
1169
|
+
end
|
1170
|
+
def express_route_circuit_peering_advertised_public_prefix_state
|
1171
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitPeeringAdvertisedPublicPrefixState
|
1172
|
+
end
|
1173
|
+
def access
|
1174
|
+
Azure::Network::Mgmt::V2017_10_01::Models::Access
|
1175
|
+
end
|
1176
|
+
def express_route_circuit_peering_type
|
1177
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitPeeringType
|
1178
|
+
end
|
1179
|
+
def express_route_circuit_peering_state
|
1180
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitPeeringState
|
1181
|
+
end
|
1182
|
+
def express_route_circuit_sku_tier
|
1183
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitSkuTier
|
1184
|
+
end
|
1185
|
+
def express_route_circuit_sku_family
|
1186
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ExpressRouteCircuitSkuFamily
|
1187
|
+
end
|
1188
|
+
def service_provider_provisioning_state
|
1189
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ServiceProviderProvisioningState
|
1190
|
+
end
|
1191
|
+
def load_balancer_sku_name
|
1192
|
+
Azure::Network::Mgmt::V2017_10_01::Models::LoadBalancerSkuName
|
1193
|
+
end
|
1194
|
+
def load_distribution
|
1195
|
+
Azure::Network::Mgmt::V2017_10_01::Models::LoadDistribution
|
1196
|
+
end
|
1197
|
+
def probe_protocol
|
1198
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ProbeProtocol
|
1199
|
+
end
|
1200
|
+
def network_operation_status
|
1201
|
+
Azure::Network::Mgmt::V2017_10_01::Models::NetworkOperationStatus
|
1202
|
+
end
|
1203
|
+
def effective_security_rule_protocol
|
1204
|
+
Azure::Network::Mgmt::V2017_10_01::Models::EffectiveSecurityRuleProtocol
|
1205
|
+
end
|
1206
|
+
def effective_route_source
|
1207
|
+
Azure::Network::Mgmt::V2017_10_01::Models::EffectiveRouteSource
|
1208
|
+
end
|
1209
|
+
def effective_route_state
|
1210
|
+
Azure::Network::Mgmt::V2017_10_01::Models::EffectiveRouteState
|
1211
|
+
end
|
1212
|
+
def provisioning_state
|
1213
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ProvisioningState
|
1214
|
+
end
|
1215
|
+
def association_type
|
1216
|
+
Azure::Network::Mgmt::V2017_10_01::Models::AssociationType
|
1217
|
+
end
|
1218
|
+
def direction
|
1219
|
+
Azure::Network::Mgmt::V2017_10_01::Models::Direction
|
1220
|
+
end
|
1221
|
+
def protocol
|
1222
|
+
Azure::Network::Mgmt::V2017_10_01::Models::Protocol
|
1223
|
+
end
|
1224
|
+
def next_hop_type
|
1225
|
+
Azure::Network::Mgmt::V2017_10_01::Models::NextHopType
|
1226
|
+
end
|
1227
|
+
def pc_protocol
|
1228
|
+
Azure::Network::Mgmt::V2017_10_01::Models::PcProtocol
|
1229
|
+
end
|
1230
|
+
def pc_status
|
1231
|
+
Azure::Network::Mgmt::V2017_10_01::Models::PcStatus
|
1232
|
+
end
|
1233
|
+
def pc_error
|
1234
|
+
Azure::Network::Mgmt::V2017_10_01::Models::PcError
|
1235
|
+
end
|
1236
|
+
def origin
|
1237
|
+
Azure::Network::Mgmt::V2017_10_01::Models::Origin
|
1238
|
+
end
|
1239
|
+
def severity
|
1240
|
+
Azure::Network::Mgmt::V2017_10_01::Models::Severity
|
1241
|
+
end
|
1242
|
+
def issue_type
|
1243
|
+
Azure::Network::Mgmt::V2017_10_01::Models::IssueType
|
1244
|
+
end
|
1245
|
+
def connection_status
|
1246
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ConnectionStatus
|
1247
|
+
end
|
1248
|
+
def connection_state
|
1249
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ConnectionState
|
1250
|
+
end
|
1251
|
+
def evaluation_state
|
1252
|
+
Azure::Network::Mgmt::V2017_10_01::Models::EvaluationState
|
1253
|
+
end
|
1254
|
+
def virtual_network_peering_state
|
1255
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkPeeringState
|
1256
|
+
end
|
1257
|
+
def virtual_network_gateway_type
|
1258
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewayType
|
1259
|
+
end
|
1260
|
+
def vpn_type
|
1261
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VpnType
|
1262
|
+
end
|
1263
|
+
def virtual_network_gateway_sku_name
|
1264
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewaySkuName
|
1265
|
+
end
|
1266
|
+
def virtual_network_gateway_sku_tier
|
1267
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewaySkuTier
|
1268
|
+
end
|
1269
|
+
def vpn_client_protocol
|
1270
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VpnClientProtocol
|
1271
|
+
end
|
1272
|
+
def bgp_peer_state
|
1273
|
+
Azure::Network::Mgmt::V2017_10_01::Models::BgpPeerState
|
1274
|
+
end
|
1275
|
+
def processor_architecture
|
1276
|
+
Azure::Network::Mgmt::V2017_10_01::Models::ProcessorArchitecture
|
1277
|
+
end
|
1278
|
+
def authentication_method
|
1279
|
+
Azure::Network::Mgmt::V2017_10_01::Models::AuthenticationMethod
|
1280
|
+
end
|
1281
|
+
def virtual_network_gateway_connection_status
|
1282
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewayConnectionStatus
|
1283
|
+
end
|
1284
|
+
def virtual_network_gateway_connection_type
|
1285
|
+
Azure::Network::Mgmt::V2017_10_01::Models::VirtualNetworkGatewayConnectionType
|
1286
|
+
end
|
1287
|
+
def ipsec_encryption
|
1288
|
+
Azure::Network::Mgmt::V2017_10_01::Models::IpsecEncryption
|
1289
|
+
end
|
1290
|
+
def ipsec_integrity
|
1291
|
+
Azure::Network::Mgmt::V2017_10_01::Models::IpsecIntegrity
|
1292
|
+
end
|
1293
|
+
def ike_encryption
|
1294
|
+
Azure::Network::Mgmt::V2017_10_01::Models::IkeEncryption
|
1295
|
+
end
|
1296
|
+
def ike_integrity
|
1297
|
+
Azure::Network::Mgmt::V2017_10_01::Models::IkeIntegrity
|
1298
|
+
end
|
1299
|
+
def dh_group
|
1300
|
+
Azure::Network::Mgmt::V2017_10_01::Models::DhGroup
|
1301
|
+
end
|
1302
|
+
def pfs_group
|
1303
|
+
Azure::Network::Mgmt::V2017_10_01::Models::PfsGroup
|
1304
|
+
end
|
1305
|
+
end
|
1306
|
+
end
|
1307
|
+
end
|
1308
|
+
end
|
1309
|
+
end
|