azure_sdk 0.60.0 → 0.65.0
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 -1
- data/lib/azure_sdk/version.rb +1 -1
- data/lib/latest/latest_profile_client.rb +41 -1
- data/lib/latest/modules/appconfiguration_profile_module.rb +89 -81
- data/lib/latest/modules/automanage_profile_module.rb +183 -0
- data/lib/latest/modules/azurestackhci_profile_module.rb +119 -0
- data/lib/latest/modules/cdn_profile_module.rb +576 -174
- data/lib/latest/modules/compute_profile_module.rb +961 -805
- data/lib/latest/modules/containerservice_profile_module.rb +143 -139
- data/lib/latest/modules/datafactory_profile_module.rb +419 -351
- data/lib/latest/modules/digitaltwins_profile_module.rb +137 -0
- data/lib/latest/modules/hdinsight_profile_module.rb +85 -65
- data/lib/latest/modules/hybridcompute_profile_module.rb +177 -0
- data/lib/latest/modules/keyvault_profile_module.rb +426 -272
- data/lib/latest/modules/kusto_profile_module.rb +162 -158
- data/lib/latest/modules/mariadb_profile_module.rb +20 -4
- data/lib/latest/modules/mysql_profile_module.rb +122 -12
- data/lib/latest/modules/netapp_profile_module.rb +231 -105
- data/lib/latest/modules/network_profile_module.rb +1733 -1633
- data/lib/latest/modules/operationalinsights_profile_module.rb +173 -173
- data/lib/latest/modules/reservations_profile_module.rb +47 -59
- data/lib/latest/modules/storage_profile_module.rb +391 -377
- data/lib/latest/modules/subscriptions_profile_module.rb +92 -72
- metadata +102 -42
@@ -0,0 +1,119 @@
|
|
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_azurestack_hci'
|
6
|
+
|
7
|
+
module Azure::Profiles::Latest
|
8
|
+
module AzureStackHCI
|
9
|
+
module Mgmt
|
10
|
+
Operations = Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Operations
|
11
|
+
Clusters = Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Clusters
|
12
|
+
|
13
|
+
module Models
|
14
|
+
OperationList = Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::OperationList
|
15
|
+
Operation = Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::Operation
|
16
|
+
ClusterNode = Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::ClusterNode
|
17
|
+
ErrorAdditionalInfo = Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::ErrorAdditionalInfo
|
18
|
+
ClusterList = Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::ClusterList
|
19
|
+
OperationDisplay = Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::OperationDisplay
|
20
|
+
ErrorResponse = Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::ErrorResponse
|
21
|
+
ClusterUpdate = Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::ClusterUpdate
|
22
|
+
Resource = Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::Resource
|
23
|
+
ClusterReportedProperties = Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::ClusterReportedProperties
|
24
|
+
ErrorResponseError = Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::ErrorResponseError
|
25
|
+
Cluster = Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::Cluster
|
26
|
+
ProxyResource = Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::ProxyResource
|
27
|
+
AzureEntityResource = Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::AzureEntityResource
|
28
|
+
TrackedResource = Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::TrackedResource
|
29
|
+
ProvisioningState = Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::ProvisioningState
|
30
|
+
Status = Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::Status
|
31
|
+
end
|
32
|
+
|
33
|
+
class AzureStackHCIManagementClass
|
34
|
+
attr_reader :operations, :clusters, :configurable, :base_url, :options, :model_classes
|
35
|
+
|
36
|
+
def initialize(configurable, base_url=nil, options=nil)
|
37
|
+
@configurable, @base_url, @options = configurable, base_url, options
|
38
|
+
|
39
|
+
@client_0 = Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::AzureStackHCIClient.new(configurable.credentials, base_url, options)
|
40
|
+
if(@client_0.respond_to?(:subscription_id))
|
41
|
+
@client_0.subscription_id = configurable.subscription_id
|
42
|
+
end
|
43
|
+
add_telemetry(@client_0)
|
44
|
+
@operations = @client_0.operations
|
45
|
+
@clusters = @client_0.clusters
|
46
|
+
|
47
|
+
@model_classes = ModelClasses.new
|
48
|
+
end
|
49
|
+
|
50
|
+
def add_telemetry(client)
|
51
|
+
profile_information = "Profiles/azure_sdk/#{Azure::VERSION}/Latest/AzureStackHCI/Mgmt"
|
52
|
+
client.add_user_agent_information(profile_information)
|
53
|
+
end
|
54
|
+
|
55
|
+
def method_missing(method, *args)
|
56
|
+
if @client_0.respond_to?method
|
57
|
+
@client_0.send(method, *args)
|
58
|
+
else
|
59
|
+
super
|
60
|
+
end
|
61
|
+
end
|
62
|
+
|
63
|
+
class ModelClasses
|
64
|
+
def operation_list
|
65
|
+
Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::OperationList
|
66
|
+
end
|
67
|
+
def operation
|
68
|
+
Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::Operation
|
69
|
+
end
|
70
|
+
def cluster_node
|
71
|
+
Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::ClusterNode
|
72
|
+
end
|
73
|
+
def error_additional_info
|
74
|
+
Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::ErrorAdditionalInfo
|
75
|
+
end
|
76
|
+
def cluster_list
|
77
|
+
Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::ClusterList
|
78
|
+
end
|
79
|
+
def operation_display
|
80
|
+
Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::OperationDisplay
|
81
|
+
end
|
82
|
+
def error_response
|
83
|
+
Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::ErrorResponse
|
84
|
+
end
|
85
|
+
def cluster_update
|
86
|
+
Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::ClusterUpdate
|
87
|
+
end
|
88
|
+
def resource
|
89
|
+
Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::Resource
|
90
|
+
end
|
91
|
+
def cluster_reported_properties
|
92
|
+
Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::ClusterReportedProperties
|
93
|
+
end
|
94
|
+
def error_response_error
|
95
|
+
Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::ErrorResponseError
|
96
|
+
end
|
97
|
+
def cluster
|
98
|
+
Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::Cluster
|
99
|
+
end
|
100
|
+
def proxy_resource
|
101
|
+
Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::ProxyResource
|
102
|
+
end
|
103
|
+
def azure_entity_resource
|
104
|
+
Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::AzureEntityResource
|
105
|
+
end
|
106
|
+
def tracked_resource
|
107
|
+
Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::TrackedResource
|
108
|
+
end
|
109
|
+
def provisioning_state
|
110
|
+
Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::ProvisioningState
|
111
|
+
end
|
112
|
+
def status
|
113
|
+
Azure::AzureStackHCI::Mgmt::V2020_03_01_preview::Models::Status
|
114
|
+
end
|
115
|
+
end
|
116
|
+
end
|
117
|
+
end
|
118
|
+
end
|
119
|
+
end
|
@@ -7,90 +7,192 @@ require 'azure_mgmt_cdn'
|
|
7
7
|
module Azure::Profiles::Latest
|
8
8
|
module CDN
|
9
9
|
module Mgmt
|
10
|
-
Profiles = Azure::CDN::Mgmt::
|
11
|
-
Endpoints = Azure::CDN::Mgmt::
|
12
|
-
Origins = Azure::CDN::Mgmt::
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
10
|
+
Profiles = Azure::CDN::Mgmt::V2020_04_15::Profiles
|
11
|
+
Endpoints = Azure::CDN::Mgmt::V2020_04_15::Endpoints
|
12
|
+
Origins = Azure::CDN::Mgmt::V2020_04_15::Origins
|
13
|
+
OriginGroups = Azure::CDN::Mgmt::V2020_04_15::OriginGroups
|
14
|
+
CustomDomains = Azure::CDN::Mgmt::V2020_04_15::CustomDomains
|
15
|
+
ResourceUsageOperations = Azure::CDN::Mgmt::V2020_04_15::ResourceUsageOperations
|
16
|
+
Operations = Azure::CDN::Mgmt::V2020_04_15::Operations
|
17
|
+
EdgeNodes = Azure::CDN::Mgmt::V2020_04_15::EdgeNodes
|
18
|
+
Policies = Azure::CDN::Mgmt::V2020_04_15::Policies
|
19
|
+
ManagedRuleSets = Azure::CDN::Mgmt::V2020_04_15::ManagedRuleSets
|
17
20
|
|
18
21
|
module Models
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
ProfileListResult = Azure::CDN::Mgmt::
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
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
|
-
|
22
|
+
UrlRedirectActionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::UrlRedirectActionParameters
|
23
|
+
PolicySettings = Azure::CDN::Mgmt::V2020_04_15::Models::PolicySettings
|
24
|
+
UrlFileNameMatchConditionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::UrlFileNameMatchConditionParameters
|
25
|
+
ProfileListResult = Azure::CDN::Mgmt::V2020_04_15::Models::ProfileListResult
|
26
|
+
ResourceUsageListResult = Azure::CDN::Mgmt::V2020_04_15::Models::ResourceUsageListResult
|
27
|
+
SsoUri = Azure::CDN::Mgmt::V2020_04_15::Models::SsoUri
|
28
|
+
HttpVersionMatchConditionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::HttpVersionMatchConditionParameters
|
29
|
+
DeepCreatedOrigin = Azure::CDN::Mgmt::V2020_04_15::Models::DeepCreatedOrigin
|
30
|
+
ResourceUsage = Azure::CDN::Mgmt::V2020_04_15::Models::ResourceUsage
|
31
|
+
ResourceReference = Azure::CDN::Mgmt::V2020_04_15::Models::ResourceReference
|
32
|
+
CookiesMatchConditionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::CookiesMatchConditionParameters
|
33
|
+
ResponseBasedOriginErrorDetectionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::ResponseBasedOriginErrorDetectionParameters
|
34
|
+
ValidateProbeOutput = Azure::CDN::Mgmt::V2020_04_15::Models::ValidateProbeOutput
|
35
|
+
ErrorResponse = Azure::CDN::Mgmt::V2020_04_15::Models::ErrorResponse
|
36
|
+
IsDeviceMatchConditionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::IsDeviceMatchConditionParameters
|
37
|
+
GeoFilter = Azure::CDN::Mgmt::V2020_04_15::Models::GeoFilter
|
38
|
+
ValidateProbeInput = Azure::CDN::Mgmt::V2020_04_15::Models::ValidateProbeInput
|
39
|
+
UrlSigningKey = Azure::CDN::Mgmt::V2020_04_15::Models::UrlSigningKey
|
40
|
+
Sku = Azure::CDN::Mgmt::V2020_04_15::Models::Sku
|
41
|
+
DeliveryRuleAction = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleAction
|
42
|
+
MatchCondition = Azure::CDN::Mgmt::V2020_04_15::Models::MatchCondition
|
43
|
+
EndpointPropertiesUpdateParametersDeliveryPolicy = Azure::CDN::Mgmt::V2020_04_15::Models::EndpointPropertiesUpdateParametersDeliveryPolicy
|
44
|
+
UrlSigningParamIdentifier = Azure::CDN::Mgmt::V2020_04_15::Models::UrlSigningParamIdentifier
|
45
|
+
EndpointUpdateParameters = Azure::CDN::Mgmt::V2020_04_15::Models::EndpointUpdateParameters
|
46
|
+
UrlSigningActionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::UrlSigningActionParameters
|
47
|
+
CustomRuleList = Azure::CDN::Mgmt::V2020_04_15::Models::CustomRuleList
|
48
|
+
RateLimitRuleList = Azure::CDN::Mgmt::V2020_04_15::Models::RateLimitRuleList
|
49
|
+
ManagedRuleOverride = Azure::CDN::Mgmt::V2020_04_15::Models::ManagedRuleOverride
|
50
|
+
UrlRewriteActionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::UrlRewriteActionParameters
|
51
|
+
Resource = Azure::CDN::Mgmt::V2020_04_15::Models::Resource
|
52
|
+
CustomRule = Azure::CDN::Mgmt::V2020_04_15::Models::CustomRule
|
53
|
+
EdgenodeResult = Azure::CDN::Mgmt::V2020_04_15::Models::EdgenodeResult
|
54
|
+
HeaderActionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::HeaderActionParameters
|
55
|
+
ManagedRuleGroupOverride = Azure::CDN::Mgmt::V2020_04_15::Models::ManagedRuleGroupOverride
|
56
|
+
IpAddressGroup = Azure::CDN::Mgmt::V2020_04_15::Models::IpAddressGroup
|
57
|
+
ManagedRuleSetDefinitionList = Azure::CDN::Mgmt::V2020_04_15::Models::ManagedRuleSetDefinitionList
|
58
|
+
CidrIpAddress = Azure::CDN::Mgmt::V2020_04_15::Models::CidrIpAddress
|
59
|
+
CacheExpirationActionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::CacheExpirationActionParameters
|
60
|
+
OperationsListResult = Azure::CDN::Mgmt::V2020_04_15::Models::OperationsListResult
|
61
|
+
ManagedRuleGroupDefinition = Azure::CDN::Mgmt::V2020_04_15::Models::ManagedRuleGroupDefinition
|
62
|
+
Operation = Azure::CDN::Mgmt::V2020_04_15::Models::Operation
|
63
|
+
CacheKeyQueryStringActionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::CacheKeyQueryStringActionParameters
|
64
|
+
OperationDisplay = Azure::CDN::Mgmt::V2020_04_15::Models::OperationDisplay
|
65
|
+
ManagedRuleDefinition = Azure::CDN::Mgmt::V2020_04_15::Models::ManagedRuleDefinition
|
66
|
+
SupportedOptimizationTypesListResult = Azure::CDN::Mgmt::V2020_04_15::Models::SupportedOptimizationTypesListResult
|
67
|
+
PurgeParameters = Azure::CDN::Mgmt::V2020_04_15::Models::PurgeParameters
|
68
|
+
HttpErrorRangeParameters = Azure::CDN::Mgmt::V2020_04_15::Models::HttpErrorRangeParameters
|
69
|
+
LoadParameters = Azure::CDN::Mgmt::V2020_04_15::Models::LoadParameters
|
70
|
+
EndpointListResult = Azure::CDN::Mgmt::V2020_04_15::Models::EndpointListResult
|
71
|
+
CdnWebApplicationFirewallPolicyPatchParameters = Azure::CDN::Mgmt::V2020_04_15::Models::CdnWebApplicationFirewallPolicyPatchParameters
|
72
|
+
DeliveryRuleCondition = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleCondition
|
73
|
+
OriginUpdateParameters = Azure::CDN::Mgmt::V2020_04_15::Models::OriginUpdateParameters
|
74
|
+
EndpointPropertiesUpdateParametersWebApplicationFirewallPolicyLink = Azure::CDN::Mgmt::V2020_04_15::Models::EndpointPropertiesUpdateParametersWebApplicationFirewallPolicyLink
|
75
|
+
OriginListResult = Azure::CDN::Mgmt::V2020_04_15::Models::OriginListResult
|
76
|
+
RequestMethodMatchConditionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::RequestMethodMatchConditionParameters
|
77
|
+
CdnWebApplicationFirewallPolicyList = Azure::CDN::Mgmt::V2020_04_15::Models::CdnWebApplicationFirewallPolicyList
|
78
|
+
PostArgsMatchConditionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::PostArgsMatchConditionParameters
|
79
|
+
OriginGroupUpdateParameters = Azure::CDN::Mgmt::V2020_04_15::Models::OriginGroupUpdateParameters
|
80
|
+
RequestHeaderMatchConditionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::RequestHeaderMatchConditionParameters
|
81
|
+
OriginGroupListResult = Azure::CDN::Mgmt::V2020_04_15::Models::OriginGroupListResult
|
82
|
+
RequestSchemeMatchConditionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::RequestSchemeMatchConditionParameters
|
83
|
+
CdnEndpoint = Azure::CDN::Mgmt::V2020_04_15::Models::CdnEndpoint
|
84
|
+
UrlFileExtensionMatchConditionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::UrlFileExtensionMatchConditionParameters
|
85
|
+
CustomDomainParameters = Azure::CDN::Mgmt::V2020_04_15::Models::CustomDomainParameters
|
86
|
+
HealthProbeParameters = Azure::CDN::Mgmt::V2020_04_15::Models::HealthProbeParameters
|
87
|
+
CustomDomainHttpsParameters = Azure::CDN::Mgmt::V2020_04_15::Models::CustomDomainHttpsParameters
|
88
|
+
KeyVaultSigningKeyParameters = Azure::CDN::Mgmt::V2020_04_15::Models::KeyVaultSigningKeyParameters
|
89
|
+
CdnCertificateSourceParameters = Azure::CDN::Mgmt::V2020_04_15::Models::CdnCertificateSourceParameters
|
90
|
+
RemoteAddressMatchConditionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::RemoteAddressMatchConditionParameters
|
91
|
+
ManagedRuleSetList = Azure::CDN::Mgmt::V2020_04_15::Models::ManagedRuleSetList
|
92
|
+
RequestUriMatchConditionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::RequestUriMatchConditionParameters
|
93
|
+
KeyVaultCertificateSourceParameters = Azure::CDN::Mgmt::V2020_04_15::Models::KeyVaultCertificateSourceParameters
|
94
|
+
UrlPathMatchConditionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::UrlPathMatchConditionParameters
|
95
|
+
ManagedRuleSet = Azure::CDN::Mgmt::V2020_04_15::Models::ManagedRuleSet
|
96
|
+
DeepCreatedOriginGroup = Azure::CDN::Mgmt::V2020_04_15::Models::DeepCreatedOriginGroup
|
97
|
+
CustomDomainListResult = Azure::CDN::Mgmt::V2020_04_15::Models::CustomDomainListResult
|
98
|
+
QueryStringMatchConditionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::QueryStringMatchConditionParameters
|
99
|
+
ValidateCustomDomainInput = Azure::CDN::Mgmt::V2020_04_15::Models::ValidateCustomDomainInput
|
100
|
+
ProfileUpdateParameters = Azure::CDN::Mgmt::V2020_04_15::Models::ProfileUpdateParameters
|
101
|
+
ValidateCustomDomainOutput = Azure::CDN::Mgmt::V2020_04_15::Models::ValidateCustomDomainOutput
|
102
|
+
RequestBodyMatchConditionParameters = Azure::CDN::Mgmt::V2020_04_15::Models::RequestBodyMatchConditionParameters
|
103
|
+
CheckNameAvailabilityInput = Azure::CDN::Mgmt::V2020_04_15::Models::CheckNameAvailabilityInput
|
104
|
+
DeliveryRule = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRule
|
105
|
+
CheckNameAvailabilityOutput = Azure::CDN::Mgmt::V2020_04_15::Models::CheckNameAvailabilityOutput
|
106
|
+
Profile = Azure::CDN::Mgmt::V2020_04_15::Models::Profile
|
107
|
+
Endpoint = Azure::CDN::Mgmt::V2020_04_15::Models::Endpoint
|
108
|
+
DeliveryRuleRemoteAddressCondition = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleRemoteAddressCondition
|
109
|
+
DeliveryRuleRequestMethodCondition = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleRequestMethodCondition
|
110
|
+
DeliveryRuleQueryStringCondition = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleQueryStringCondition
|
111
|
+
DeliveryRulePostArgsCondition = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRulePostArgsCondition
|
112
|
+
DeliveryRuleRequestUriCondition = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleRequestUriCondition
|
113
|
+
DeliveryRuleRequestHeaderCondition = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleRequestHeaderCondition
|
114
|
+
DeliveryRuleRequestBodyCondition = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleRequestBodyCondition
|
115
|
+
DeliveryRuleRequestSchemeCondition = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleRequestSchemeCondition
|
116
|
+
DeliveryRuleUrlPathCondition = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleUrlPathCondition
|
117
|
+
DeliveryRuleUrlFileExtensionCondition = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleUrlFileExtensionCondition
|
118
|
+
DeliveryRuleUrlFileNameCondition = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleUrlFileNameCondition
|
119
|
+
DeliveryRuleHttpVersionCondition = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleHttpVersionCondition
|
120
|
+
DeliveryRuleCookiesCondition = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleCookiesCondition
|
121
|
+
DeliveryRuleIsDeviceCondition = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleIsDeviceCondition
|
122
|
+
UrlRedirectAction = Azure::CDN::Mgmt::V2020_04_15::Models::UrlRedirectAction
|
123
|
+
UrlSigningAction = Azure::CDN::Mgmt::V2020_04_15::Models::UrlSigningAction
|
124
|
+
UrlRewriteAction = Azure::CDN::Mgmt::V2020_04_15::Models::UrlRewriteAction
|
125
|
+
DeliveryRuleRequestHeaderAction = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleRequestHeaderAction
|
126
|
+
DeliveryRuleResponseHeaderAction = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleResponseHeaderAction
|
127
|
+
DeliveryRuleCacheExpirationAction = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleCacheExpirationAction
|
128
|
+
DeliveryRuleCacheKeyQueryStringAction = Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleCacheKeyQueryStringAction
|
129
|
+
ProxyResource = Azure::CDN::Mgmt::V2020_04_15::Models::ProxyResource
|
130
|
+
Origin = Azure::CDN::Mgmt::V2020_04_15::Models::Origin
|
131
|
+
OriginGroup = Azure::CDN::Mgmt::V2020_04_15::Models::OriginGroup
|
132
|
+
CustomDomain = Azure::CDN::Mgmt::V2020_04_15::Models::CustomDomain
|
133
|
+
CdnManagedHttpsParameters = Azure::CDN::Mgmt::V2020_04_15::Models::CdnManagedHttpsParameters
|
134
|
+
UserManagedHttpsParameters = Azure::CDN::Mgmt::V2020_04_15::Models::UserManagedHttpsParameters
|
135
|
+
EdgeNode = Azure::CDN::Mgmt::V2020_04_15::Models::EdgeNode
|
136
|
+
TrackedResource = Azure::CDN::Mgmt::V2020_04_15::Models::TrackedResource
|
137
|
+
RateLimitRule = Azure::CDN::Mgmt::V2020_04_15::Models::RateLimitRule
|
138
|
+
CdnWebApplicationFirewallPolicy = Azure::CDN::Mgmt::V2020_04_15::Models::CdnWebApplicationFirewallPolicy
|
139
|
+
ManagedRuleSetDefinition = Azure::CDN::Mgmt::V2020_04_15::Models::ManagedRuleSetDefinition
|
140
|
+
SkuName = Azure::CDN::Mgmt::V2020_04_15::Models::SkuName
|
141
|
+
ProfileResourceState = Azure::CDN::Mgmt::V2020_04_15::Models::ProfileResourceState
|
142
|
+
OptimizationType = Azure::CDN::Mgmt::V2020_04_15::Models::OptimizationType
|
143
|
+
HealthProbeRequestType = Azure::CDN::Mgmt::V2020_04_15::Models::HealthProbeRequestType
|
144
|
+
ProbeProtocol = Azure::CDN::Mgmt::V2020_04_15::Models::ProbeProtocol
|
145
|
+
ResponseBasedDetectedErrorTypes = Azure::CDN::Mgmt::V2020_04_15::Models::ResponseBasedDetectedErrorTypes
|
146
|
+
EndpointResourceState = Azure::CDN::Mgmt::V2020_04_15::Models::EndpointResourceState
|
147
|
+
QueryStringCachingBehavior = Azure::CDN::Mgmt::V2020_04_15::Models::QueryStringCachingBehavior
|
148
|
+
GeoFilterActions = Azure::CDN::Mgmt::V2020_04_15::Models::GeoFilterActions
|
149
|
+
RemoteAddressOperator = Azure::CDN::Mgmt::V2020_04_15::Models::RemoteAddressOperator
|
150
|
+
Transform = Azure::CDN::Mgmt::V2020_04_15::Models::Transform
|
151
|
+
QueryStringOperator = Azure::CDN::Mgmt::V2020_04_15::Models::QueryStringOperator
|
152
|
+
PostArgsOperator = Azure::CDN::Mgmt::V2020_04_15::Models::PostArgsOperator
|
153
|
+
RequestUriOperator = Azure::CDN::Mgmt::V2020_04_15::Models::RequestUriOperator
|
154
|
+
RequestHeaderOperator = Azure::CDN::Mgmt::V2020_04_15::Models::RequestHeaderOperator
|
155
|
+
RequestBodyOperator = Azure::CDN::Mgmt::V2020_04_15::Models::RequestBodyOperator
|
156
|
+
UrlPathOperator = Azure::CDN::Mgmt::V2020_04_15::Models::UrlPathOperator
|
157
|
+
UrlFileExtensionOperator = Azure::CDN::Mgmt::V2020_04_15::Models::UrlFileExtensionOperator
|
158
|
+
UrlFileNameOperator = Azure::CDN::Mgmt::V2020_04_15::Models::UrlFileNameOperator
|
159
|
+
CookiesOperator = Azure::CDN::Mgmt::V2020_04_15::Models::CookiesOperator
|
160
|
+
RedirectType = Azure::CDN::Mgmt::V2020_04_15::Models::RedirectType
|
161
|
+
DestinationProtocol = Azure::CDN::Mgmt::V2020_04_15::Models::DestinationProtocol
|
162
|
+
Algorithm = Azure::CDN::Mgmt::V2020_04_15::Models::Algorithm
|
163
|
+
ParamIndicator = Azure::CDN::Mgmt::V2020_04_15::Models::ParamIndicator
|
164
|
+
HeaderAction = Azure::CDN::Mgmt::V2020_04_15::Models::HeaderAction
|
165
|
+
CacheBehavior = Azure::CDN::Mgmt::V2020_04_15::Models::CacheBehavior
|
166
|
+
QueryStringBehavior = Azure::CDN::Mgmt::V2020_04_15::Models::QueryStringBehavior
|
167
|
+
OriginResourceState = Azure::CDN::Mgmt::V2020_04_15::Models::OriginResourceState
|
168
|
+
PrivateEndpointStatus = Azure::CDN::Mgmt::V2020_04_15::Models::PrivateEndpointStatus
|
169
|
+
OriginGroupResourceState = Azure::CDN::Mgmt::V2020_04_15::Models::OriginGroupResourceState
|
170
|
+
CustomDomainResourceState = Azure::CDN::Mgmt::V2020_04_15::Models::CustomDomainResourceState
|
171
|
+
CustomHttpsProvisioningState = Azure::CDN::Mgmt::V2020_04_15::Models::CustomHttpsProvisioningState
|
172
|
+
CustomHttpsProvisioningSubstate = Azure::CDN::Mgmt::V2020_04_15::Models::CustomHttpsProvisioningSubstate
|
173
|
+
ProtocolType = Azure::CDN::Mgmt::V2020_04_15::Models::ProtocolType
|
174
|
+
MinimumTlsVersion = Azure::CDN::Mgmt::V2020_04_15::Models::MinimumTlsVersion
|
175
|
+
CertificateType = Azure::CDN::Mgmt::V2020_04_15::Models::CertificateType
|
176
|
+
ResourceType = Azure::CDN::Mgmt::V2020_04_15::Models::ResourceType
|
177
|
+
PolicyEnabledState = Azure::CDN::Mgmt::V2020_04_15::Models::PolicyEnabledState
|
178
|
+
PolicyMode = Azure::CDN::Mgmt::V2020_04_15::Models::PolicyMode
|
179
|
+
CustomRuleEnabledState = Azure::CDN::Mgmt::V2020_04_15::Models::CustomRuleEnabledState
|
180
|
+
MatchVariable = Azure::CDN::Mgmt::V2020_04_15::Models::MatchVariable
|
181
|
+
Operator = Azure::CDN::Mgmt::V2020_04_15::Models::Operator
|
182
|
+
TransformType = Azure::CDN::Mgmt::V2020_04_15::Models::TransformType
|
183
|
+
ActionType = Azure::CDN::Mgmt::V2020_04_15::Models::ActionType
|
184
|
+
ManagedRuleEnabledState = Azure::CDN::Mgmt::V2020_04_15::Models::ManagedRuleEnabledState
|
185
|
+
ProvisioningState = Azure::CDN::Mgmt::V2020_04_15::Models::ProvisioningState
|
186
|
+
PolicyResourceState = Azure::CDN::Mgmt::V2020_04_15::Models::PolicyResourceState
|
85
187
|
end
|
86
188
|
|
87
189
|
class CDNManagementClass
|
88
|
-
attr_reader :profiles, :endpoints, :origins, :custom_domains, :resource_usage_operations, :operations, :edge_nodes, :configurable, :base_url, :options, :model_classes
|
190
|
+
attr_reader :profiles, :endpoints, :origins, :origin_groups, :custom_domains, :resource_usage_operations, :operations, :edge_nodes, :policies, :managed_rule_sets, :configurable, :base_url, :options, :model_classes
|
89
191
|
|
90
192
|
def initialize(configurable, base_url=nil, options=nil)
|
91
193
|
@configurable, @base_url, @options = configurable, base_url, options
|
92
194
|
|
93
|
-
@client_0 = Azure::CDN::Mgmt::
|
195
|
+
@client_0 = Azure::CDN::Mgmt::V2020_04_15::CdnManagementClient.new(configurable.credentials, base_url, options)
|
94
196
|
if(@client_0.respond_to?(:subscription_id))
|
95
197
|
@client_0.subscription_id = configurable.subscription_id
|
96
198
|
end
|
@@ -98,10 +200,13 @@ module Azure::Profiles::Latest
|
|
98
200
|
@profiles = @client_0.profiles
|
99
201
|
@endpoints = @client_0.endpoints
|
100
202
|
@origins = @client_0.origins
|
203
|
+
@origin_groups = @client_0.origin_groups
|
101
204
|
@custom_domains = @client_0.custom_domains
|
102
205
|
@resource_usage_operations = @client_0.resource_usage_operations
|
103
206
|
@operations = @client_0.operations
|
104
207
|
@edge_nodes = @client_0.edge_nodes
|
208
|
+
@policies = @client_0.policies
|
209
|
+
@managed_rule_sets = @client_0.managed_rule_sets
|
105
210
|
|
106
211
|
@model_classes = ModelClasses.new
|
107
212
|
end
|
@@ -120,203 +225,500 @@ module Azure::Profiles::Latest
|
|
120
225
|
end
|
121
226
|
|
122
227
|
class ModelClasses
|
123
|
-
def
|
124
|
-
Azure::CDN::Mgmt::
|
228
|
+
def url_redirect_action_parameters
|
229
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::UrlRedirectActionParameters
|
125
230
|
end
|
126
|
-
def
|
127
|
-
Azure::CDN::Mgmt::
|
231
|
+
def policy_settings
|
232
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::PolicySettings
|
128
233
|
end
|
129
|
-
def
|
130
|
-
Azure::CDN::Mgmt::
|
234
|
+
def url_file_name_match_condition_parameters
|
235
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::UrlFileNameMatchConditionParameters
|
131
236
|
end
|
132
237
|
def profile_list_result
|
133
|
-
Azure::CDN::Mgmt::
|
238
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ProfileListResult
|
239
|
+
end
|
240
|
+
def resource_usage_list_result
|
241
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ResourceUsageListResult
|
134
242
|
end
|
135
243
|
def sso_uri
|
136
|
-
Azure::CDN::Mgmt::
|
244
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::SsoUri
|
137
245
|
end
|
138
|
-
def
|
139
|
-
Azure::CDN::Mgmt::
|
246
|
+
def http_version_match_condition_parameters
|
247
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::HttpVersionMatchConditionParameters
|
140
248
|
end
|
141
249
|
def deep_created_origin
|
142
|
-
Azure::CDN::Mgmt::
|
250
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeepCreatedOrigin
|
143
251
|
end
|
144
|
-
def
|
145
|
-
Azure::CDN::Mgmt::
|
252
|
+
def resource_usage
|
253
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ResourceUsage
|
146
254
|
end
|
147
|
-
def
|
148
|
-
Azure::CDN::Mgmt::
|
255
|
+
def resource_reference
|
256
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ResourceReference
|
149
257
|
end
|
150
|
-
def
|
151
|
-
Azure::CDN::Mgmt::
|
258
|
+
def cookies_match_condition_parameters
|
259
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CookiesMatchConditionParameters
|
152
260
|
end
|
153
|
-
def
|
154
|
-
Azure::CDN::Mgmt::
|
261
|
+
def response_based_origin_error_detection_parameters
|
262
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ResponseBasedOriginErrorDetectionParameters
|
263
|
+
end
|
264
|
+
def validate_probe_output
|
265
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ValidateProbeOutput
|
155
266
|
end
|
156
267
|
def error_response
|
157
|
-
Azure::CDN::Mgmt::
|
268
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ErrorResponse
|
158
269
|
end
|
159
|
-
def
|
160
|
-
Azure::CDN::Mgmt::
|
270
|
+
def is_device_match_condition_parameters
|
271
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::IsDeviceMatchConditionParameters
|
161
272
|
end
|
162
|
-
def
|
163
|
-
Azure::CDN::Mgmt::
|
273
|
+
def geo_filter
|
274
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::GeoFilter
|
275
|
+
end
|
276
|
+
def validate_probe_input
|
277
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ValidateProbeInput
|
278
|
+
end
|
279
|
+
def url_signing_key
|
280
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::UrlSigningKey
|
281
|
+
end
|
282
|
+
def sku
|
283
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::Sku
|
284
|
+
end
|
285
|
+
def delivery_rule_action
|
286
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleAction
|
287
|
+
end
|
288
|
+
def match_condition
|
289
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::MatchCondition
|
290
|
+
end
|
291
|
+
def endpoint_properties_update_parameters_delivery_policy
|
292
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::EndpointPropertiesUpdateParametersDeliveryPolicy
|
293
|
+
end
|
294
|
+
def url_signing_param_identifier
|
295
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::UrlSigningParamIdentifier
|
164
296
|
end
|
165
297
|
def endpoint_update_parameters
|
166
|
-
Azure::CDN::Mgmt::
|
298
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::EndpointUpdateParameters
|
299
|
+
end
|
300
|
+
def url_signing_action_parameters
|
301
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::UrlSigningActionParameters
|
302
|
+
end
|
303
|
+
def custom_rule_list
|
304
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CustomRuleList
|
305
|
+
end
|
306
|
+
def rate_limit_rule_list
|
307
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::RateLimitRuleList
|
308
|
+
end
|
309
|
+
def managed_rule_override
|
310
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ManagedRuleOverride
|
167
311
|
end
|
168
|
-
def
|
169
|
-
Azure::CDN::Mgmt::
|
312
|
+
def url_rewrite_action_parameters
|
313
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::UrlRewriteActionParameters
|
314
|
+
end
|
315
|
+
def resource
|
316
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::Resource
|
317
|
+
end
|
318
|
+
def custom_rule
|
319
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CustomRule
|
170
320
|
end
|
171
321
|
def edgenode_result
|
172
|
-
Azure::CDN::Mgmt::
|
322
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::EdgenodeResult
|
173
323
|
end
|
174
|
-
def
|
175
|
-
Azure::CDN::Mgmt::
|
324
|
+
def header_action_parameters
|
325
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::HeaderActionParameters
|
176
326
|
end
|
177
|
-
def
|
178
|
-
Azure::CDN::Mgmt::
|
327
|
+
def managed_rule_group_override
|
328
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ManagedRuleGroupOverride
|
179
329
|
end
|
180
|
-
def
|
181
|
-
Azure::CDN::Mgmt::
|
330
|
+
def ip_address_group
|
331
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::IpAddressGroup
|
182
332
|
end
|
183
|
-
def
|
184
|
-
Azure::CDN::Mgmt::
|
333
|
+
def managed_rule_set_definition_list
|
334
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ManagedRuleSetDefinitionList
|
185
335
|
end
|
186
|
-
def
|
187
|
-
Azure::CDN::Mgmt::
|
336
|
+
def cidr_ip_address
|
337
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CidrIpAddress
|
188
338
|
end
|
189
|
-
def
|
190
|
-
Azure::CDN::Mgmt::
|
339
|
+
def cache_expiration_action_parameters
|
340
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CacheExpirationActionParameters
|
191
341
|
end
|
192
|
-
def
|
193
|
-
Azure::CDN::Mgmt::
|
342
|
+
def operations_list_result
|
343
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::OperationsListResult
|
344
|
+
end
|
345
|
+
def managed_rule_group_definition
|
346
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ManagedRuleGroupDefinition
|
194
347
|
end
|
195
348
|
def operation
|
196
|
-
Azure::CDN::Mgmt::
|
349
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::Operation
|
197
350
|
end
|
198
|
-
def
|
199
|
-
Azure::CDN::Mgmt::
|
351
|
+
def cache_key_query_string_action_parameters
|
352
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CacheKeyQueryStringActionParameters
|
353
|
+
end
|
354
|
+
def operation_display
|
355
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::OperationDisplay
|
356
|
+
end
|
357
|
+
def managed_rule_definition
|
358
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ManagedRuleDefinition
|
359
|
+
end
|
360
|
+
def supported_optimization_types_list_result
|
361
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::SupportedOptimizationTypesListResult
|
362
|
+
end
|
363
|
+
def purge_parameters
|
364
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::PurgeParameters
|
365
|
+
end
|
366
|
+
def http_error_range_parameters
|
367
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::HttpErrorRangeParameters
|
200
368
|
end
|
201
369
|
def load_parameters
|
202
|
-
Azure::CDN::Mgmt::
|
370
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::LoadParameters
|
203
371
|
end
|
204
|
-
def
|
205
|
-
Azure::CDN::Mgmt::
|
372
|
+
def endpoint_list_result
|
373
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::EndpointListResult
|
206
374
|
end
|
207
|
-
def
|
208
|
-
Azure::CDN::Mgmt::
|
375
|
+
def cdn_web_application_firewall_policy_patch_parameters
|
376
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CdnWebApplicationFirewallPolicyPatchParameters
|
209
377
|
end
|
210
378
|
def delivery_rule_condition
|
211
|
-
Azure::CDN::Mgmt::
|
379
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleCondition
|
212
380
|
end
|
213
|
-
def
|
214
|
-
Azure::CDN::Mgmt::
|
381
|
+
def origin_update_parameters
|
382
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::OriginUpdateParameters
|
215
383
|
end
|
216
|
-
def
|
217
|
-
Azure::CDN::Mgmt::
|
384
|
+
def endpoint_properties_update_parameters_web_application_firewall_policy_link
|
385
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::EndpointPropertiesUpdateParametersWebApplicationFirewallPolicyLink
|
218
386
|
end
|
219
|
-
def
|
220
|
-
Azure::CDN::Mgmt::
|
387
|
+
def origin_list_result
|
388
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::OriginListResult
|
221
389
|
end
|
222
|
-
def
|
223
|
-
Azure::CDN::Mgmt::
|
390
|
+
def request_method_match_condition_parameters
|
391
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::RequestMethodMatchConditionParameters
|
224
392
|
end
|
225
|
-
def
|
226
|
-
Azure::CDN::Mgmt::
|
393
|
+
def cdn_web_application_firewall_policy_list
|
394
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CdnWebApplicationFirewallPolicyList
|
227
395
|
end
|
228
|
-
def
|
229
|
-
Azure::CDN::Mgmt::
|
396
|
+
def post_args_match_condition_parameters
|
397
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::PostArgsMatchConditionParameters
|
230
398
|
end
|
231
|
-
def
|
232
|
-
Azure::CDN::Mgmt::
|
399
|
+
def origin_group_update_parameters
|
400
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::OriginGroupUpdateParameters
|
233
401
|
end
|
234
|
-
def
|
235
|
-
Azure::CDN::Mgmt::
|
402
|
+
def request_header_match_condition_parameters
|
403
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::RequestHeaderMatchConditionParameters
|
236
404
|
end
|
237
|
-
def
|
238
|
-
Azure::CDN::Mgmt::
|
405
|
+
def origin_group_list_result
|
406
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::OriginGroupListResult
|
239
407
|
end
|
240
|
-
def
|
241
|
-
Azure::CDN::Mgmt::
|
408
|
+
def request_scheme_match_condition_parameters
|
409
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::RequestSchemeMatchConditionParameters
|
242
410
|
end
|
243
|
-
def
|
244
|
-
Azure::CDN::Mgmt::
|
411
|
+
def cdn_endpoint
|
412
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CdnEndpoint
|
413
|
+
end
|
414
|
+
def url_file_extension_match_condition_parameters
|
415
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::UrlFileExtensionMatchConditionParameters
|
416
|
+
end
|
417
|
+
def custom_domain_parameters
|
418
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CustomDomainParameters
|
419
|
+
end
|
420
|
+
def health_probe_parameters
|
421
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::HealthProbeParameters
|
422
|
+
end
|
423
|
+
def custom_domain_https_parameters
|
424
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CustomDomainHttpsParameters
|
425
|
+
end
|
426
|
+
def key_vault_signing_key_parameters
|
427
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::KeyVaultSigningKeyParameters
|
428
|
+
end
|
429
|
+
def cdn_certificate_source_parameters
|
430
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CdnCertificateSourceParameters
|
431
|
+
end
|
432
|
+
def remote_address_match_condition_parameters
|
433
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::RemoteAddressMatchConditionParameters
|
434
|
+
end
|
435
|
+
def managed_rule_set_list
|
436
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ManagedRuleSetList
|
437
|
+
end
|
438
|
+
def request_uri_match_condition_parameters
|
439
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::RequestUriMatchConditionParameters
|
440
|
+
end
|
441
|
+
def key_vault_certificate_source_parameters
|
442
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::KeyVaultCertificateSourceParameters
|
443
|
+
end
|
444
|
+
def url_path_match_condition_parameters
|
445
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::UrlPathMatchConditionParameters
|
446
|
+
end
|
447
|
+
def managed_rule_set
|
448
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ManagedRuleSet
|
449
|
+
end
|
450
|
+
def deep_created_origin_group
|
451
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeepCreatedOriginGroup
|
452
|
+
end
|
453
|
+
def custom_domain_list_result
|
454
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CustomDomainListResult
|
455
|
+
end
|
456
|
+
def query_string_match_condition_parameters
|
457
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::QueryStringMatchConditionParameters
|
458
|
+
end
|
459
|
+
def validate_custom_domain_input
|
460
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ValidateCustomDomainInput
|
461
|
+
end
|
462
|
+
def profile_update_parameters
|
463
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ProfileUpdateParameters
|
464
|
+
end
|
465
|
+
def validate_custom_domain_output
|
466
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ValidateCustomDomainOutput
|
467
|
+
end
|
468
|
+
def request_body_match_condition_parameters
|
469
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::RequestBodyMatchConditionParameters
|
470
|
+
end
|
471
|
+
def check_name_availability_input
|
472
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CheckNameAvailabilityInput
|
473
|
+
end
|
474
|
+
def delivery_rule
|
475
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRule
|
476
|
+
end
|
477
|
+
def check_name_availability_output
|
478
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CheckNameAvailabilityOutput
|
245
479
|
end
|
246
480
|
def profile
|
247
|
-
Azure::CDN::Mgmt::
|
481
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::Profile
|
248
482
|
end
|
249
483
|
def endpoint
|
250
|
-
Azure::CDN::Mgmt::
|
484
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::Endpoint
|
485
|
+
end
|
486
|
+
def delivery_rule_remote_address_condition
|
487
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleRemoteAddressCondition
|
488
|
+
end
|
489
|
+
def delivery_rule_request_method_condition
|
490
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleRequestMethodCondition
|
491
|
+
end
|
492
|
+
def delivery_rule_query_string_condition
|
493
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleQueryStringCondition
|
494
|
+
end
|
495
|
+
def delivery_rule_post_args_condition
|
496
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRulePostArgsCondition
|
497
|
+
end
|
498
|
+
def delivery_rule_request_uri_condition
|
499
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleRequestUriCondition
|
500
|
+
end
|
501
|
+
def delivery_rule_request_header_condition
|
502
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleRequestHeaderCondition
|
503
|
+
end
|
504
|
+
def delivery_rule_request_body_condition
|
505
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleRequestBodyCondition
|
506
|
+
end
|
507
|
+
def delivery_rule_request_scheme_condition
|
508
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleRequestSchemeCondition
|
251
509
|
end
|
252
510
|
def delivery_rule_url_path_condition
|
253
|
-
Azure::CDN::Mgmt::
|
511
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleUrlPathCondition
|
254
512
|
end
|
255
513
|
def delivery_rule_url_file_extension_condition
|
256
|
-
Azure::CDN::Mgmt::
|
514
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleUrlFileExtensionCondition
|
515
|
+
end
|
516
|
+
def delivery_rule_url_file_name_condition
|
517
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleUrlFileNameCondition
|
518
|
+
end
|
519
|
+
def delivery_rule_http_version_condition
|
520
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleHttpVersionCondition
|
521
|
+
end
|
522
|
+
def delivery_rule_cookies_condition
|
523
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleCookiesCondition
|
524
|
+
end
|
525
|
+
def delivery_rule_is_device_condition
|
526
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleIsDeviceCondition
|
527
|
+
end
|
528
|
+
def url_redirect_action
|
529
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::UrlRedirectAction
|
530
|
+
end
|
531
|
+
def url_signing_action
|
532
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::UrlSigningAction
|
533
|
+
end
|
534
|
+
def url_rewrite_action
|
535
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::UrlRewriteAction
|
536
|
+
end
|
537
|
+
def delivery_rule_request_header_action
|
538
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleRequestHeaderAction
|
539
|
+
end
|
540
|
+
def delivery_rule_response_header_action
|
541
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleResponseHeaderAction
|
257
542
|
end
|
258
543
|
def delivery_rule_cache_expiration_action
|
259
|
-
Azure::CDN::Mgmt::
|
544
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleCacheExpirationAction
|
260
545
|
end
|
261
|
-
def
|
262
|
-
Azure::CDN::Mgmt::
|
546
|
+
def delivery_rule_cache_key_query_string_action
|
547
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DeliveryRuleCacheKeyQueryStringAction
|
263
548
|
end
|
264
549
|
def proxy_resource
|
265
|
-
Azure::CDN::Mgmt::
|
550
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ProxyResource
|
551
|
+
end
|
552
|
+
def origin
|
553
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::Origin
|
554
|
+
end
|
555
|
+
def origin_group
|
556
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::OriginGroup
|
266
557
|
end
|
267
558
|
def custom_domain
|
268
|
-
Azure::CDN::Mgmt::
|
559
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CustomDomain
|
269
560
|
end
|
270
561
|
def cdn_managed_https_parameters
|
271
|
-
Azure::CDN::Mgmt::
|
562
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CdnManagedHttpsParameters
|
272
563
|
end
|
273
564
|
def user_managed_https_parameters
|
274
|
-
Azure::CDN::Mgmt::
|
565
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::UserManagedHttpsParameters
|
275
566
|
end
|
276
567
|
def edge_node
|
277
|
-
Azure::CDN::Mgmt::
|
568
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::EdgeNode
|
278
569
|
end
|
279
570
|
def tracked_resource
|
280
|
-
Azure::CDN::Mgmt::
|
571
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::TrackedResource
|
572
|
+
end
|
573
|
+
def rate_limit_rule
|
574
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::RateLimitRule
|
575
|
+
end
|
576
|
+
def cdn_web_application_firewall_policy
|
577
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CdnWebApplicationFirewallPolicy
|
578
|
+
end
|
579
|
+
def managed_rule_set_definition
|
580
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ManagedRuleSetDefinition
|
281
581
|
end
|
282
582
|
def sku_name
|
283
|
-
Azure::CDN::Mgmt::
|
583
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::SkuName
|
284
584
|
end
|
285
585
|
def profile_resource_state
|
286
|
-
Azure::CDN::Mgmt::
|
586
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ProfileResourceState
|
287
587
|
end
|
288
588
|
def optimization_type
|
289
|
-
Azure::CDN::Mgmt::
|
589
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::OptimizationType
|
590
|
+
end
|
591
|
+
def health_probe_request_type
|
592
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::HealthProbeRequestType
|
593
|
+
end
|
594
|
+
def probe_protocol
|
595
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ProbeProtocol
|
596
|
+
end
|
597
|
+
def response_based_detected_error_types
|
598
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ResponseBasedDetectedErrorTypes
|
290
599
|
end
|
291
600
|
def endpoint_resource_state
|
292
|
-
Azure::CDN::Mgmt::
|
601
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::EndpointResourceState
|
293
602
|
end
|
294
603
|
def query_string_caching_behavior
|
295
|
-
Azure::CDN::Mgmt::
|
604
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::QueryStringCachingBehavior
|
296
605
|
end
|
297
606
|
def geo_filter_actions
|
298
|
-
Azure::CDN::Mgmt::
|
607
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::GeoFilterActions
|
608
|
+
end
|
609
|
+
def remote_address_operator
|
610
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::RemoteAddressOperator
|
611
|
+
end
|
612
|
+
def transform
|
613
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::Transform
|
614
|
+
end
|
615
|
+
def query_string_operator
|
616
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::QueryStringOperator
|
617
|
+
end
|
618
|
+
def post_args_operator
|
619
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::PostArgsOperator
|
620
|
+
end
|
621
|
+
def request_uri_operator
|
622
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::RequestUriOperator
|
623
|
+
end
|
624
|
+
def request_header_operator
|
625
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::RequestHeaderOperator
|
626
|
+
end
|
627
|
+
def request_body_operator
|
628
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::RequestBodyOperator
|
629
|
+
end
|
630
|
+
def url_path_operator
|
631
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::UrlPathOperator
|
632
|
+
end
|
633
|
+
def url_file_extension_operator
|
634
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::UrlFileExtensionOperator
|
635
|
+
end
|
636
|
+
def url_file_name_operator
|
637
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::UrlFileNameOperator
|
638
|
+
end
|
639
|
+
def cookies_operator
|
640
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CookiesOperator
|
641
|
+
end
|
642
|
+
def redirect_type
|
643
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::RedirectType
|
644
|
+
end
|
645
|
+
def destination_protocol
|
646
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::DestinationProtocol
|
647
|
+
end
|
648
|
+
def algorithm
|
649
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::Algorithm
|
650
|
+
end
|
651
|
+
def param_indicator
|
652
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ParamIndicator
|
653
|
+
end
|
654
|
+
def header_action
|
655
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::HeaderAction
|
656
|
+
end
|
657
|
+
def cache_behavior
|
658
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CacheBehavior
|
659
|
+
end
|
660
|
+
def query_string_behavior
|
661
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::QueryStringBehavior
|
299
662
|
end
|
300
663
|
def origin_resource_state
|
301
|
-
Azure::CDN::Mgmt::
|
664
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::OriginResourceState
|
665
|
+
end
|
666
|
+
def private_endpoint_status
|
667
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::PrivateEndpointStatus
|
668
|
+
end
|
669
|
+
def origin_group_resource_state
|
670
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::OriginGroupResourceState
|
302
671
|
end
|
303
672
|
def custom_domain_resource_state
|
304
|
-
Azure::CDN::Mgmt::
|
673
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CustomDomainResourceState
|
305
674
|
end
|
306
675
|
def custom_https_provisioning_state
|
307
|
-
Azure::CDN::Mgmt::
|
676
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CustomHttpsProvisioningState
|
308
677
|
end
|
309
678
|
def custom_https_provisioning_substate
|
310
|
-
Azure::CDN::Mgmt::
|
679
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CustomHttpsProvisioningSubstate
|
311
680
|
end
|
312
681
|
def protocol_type
|
313
|
-
Azure::CDN::Mgmt::
|
682
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ProtocolType
|
683
|
+
end
|
684
|
+
def minimum_tls_version
|
685
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::MinimumTlsVersion
|
314
686
|
end
|
315
687
|
def certificate_type
|
316
|
-
Azure::CDN::Mgmt::
|
688
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CertificateType
|
317
689
|
end
|
318
690
|
def resource_type
|
319
|
-
Azure::CDN::Mgmt::
|
691
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ResourceType
|
692
|
+
end
|
693
|
+
def policy_enabled_state
|
694
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::PolicyEnabledState
|
695
|
+
end
|
696
|
+
def policy_mode
|
697
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::PolicyMode
|
698
|
+
end
|
699
|
+
def custom_rule_enabled_state
|
700
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::CustomRuleEnabledState
|
701
|
+
end
|
702
|
+
def match_variable
|
703
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::MatchVariable
|
704
|
+
end
|
705
|
+
def operator
|
706
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::Operator
|
707
|
+
end
|
708
|
+
def transform_type
|
709
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::TransformType
|
710
|
+
end
|
711
|
+
def action_type
|
712
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ActionType
|
713
|
+
end
|
714
|
+
def managed_rule_enabled_state
|
715
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ManagedRuleEnabledState
|
716
|
+
end
|
717
|
+
def provisioning_state
|
718
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::ProvisioningState
|
719
|
+
end
|
720
|
+
def policy_resource_state
|
721
|
+
Azure::CDN::Mgmt::V2020_04_15::Models::PolicyResourceState
|
320
722
|
end
|
321
723
|
end
|
322
724
|
end
|