azure_sdk 0.65.0 → 0.69.1
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/cognitiveservices_profile_module.rb +68 -64
- data/lib/latest/modules/compute_profile_module.rb +380 -338
- data/lib/latest/modules/containerregistry_profile_module.rb +130 -74
- data/lib/latest/modules/datafactory_profile_module.rb +516 -428
- data/lib/latest/modules/eventhub_profile_module.rb +79 -57
- data/lib/latest/modules/hdinsight_profile_module.rb +163 -135
- data/lib/latest/modules/kusto_profile_module.rb +164 -160
- data/lib/latest/modules/monitor_profile_module.rb +226 -122
- data/lib/latest/modules/policyinsights_profile_module.rb +8 -0
- data/lib/latest/modules/security_profile_module.rb +492 -224
- data/lib/latest/modules/synapse_profile_module.rb +404 -208
- data/lib/v2019_03_01_hybrid/modules/monitor_profile_module.rb +65 -35
- data/lib/v2020_09_01_hybrid/module_definition.rb +7 -0
- data/lib/v2020_09_01_hybrid/modules/authorization_profile_module.rb +133 -0
- data/lib/v2020_09_01_hybrid/modules/commerce_profile_module.rb +99 -0
- data/lib/v2020_09_01_hybrid/modules/compute_profile_module.rb +1325 -0
- data/lib/v2020_09_01_hybrid/modules/databoxedge_profile_module.rb +539 -0
- data/lib/v2020_09_01_hybrid/modules/dns_profile_module.rb +139 -0
- data/lib/v2020_09_01_hybrid/modules/eventhub_profile_module.rb +411 -0
- data/lib/v2020_09_01_hybrid/modules/iothub_profile_module.rb +385 -0
- data/lib/v2020_09_01_hybrid/modules/keyvault_profile_module.rb +657 -0
- data/lib/v2020_09_01_hybrid/modules/locks_profile_module.rb +79 -0
- data/lib/v2020_09_01_hybrid/modules/monitor_profile_module.rb +315 -0
- data/lib/v2020_09_01_hybrid/modules/network_profile_module.rb +1925 -0
- data/lib/v2020_09_01_hybrid/modules/policy_profile_module.rb +75 -0
- data/lib/v2020_09_01_hybrid/modules/resources_profile_module.rb +387 -0
- data/lib/v2020_09_01_hybrid/modules/storage_profile_module.rb +693 -0
- data/lib/v2020_09_01_hybrid/modules/web_profile_module.rb +1445 -0
- data/lib/v2020_09_01_hybrid/v2020_09_01_hybrid_profile_client.rb +200 -0
- metadata +70 -53
@@ -0,0 +1,75 @@
|
|
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_policy'
|
6
|
+
|
7
|
+
module Azure::Profiles::V2020_09_01_Hybrid
|
8
|
+
module Policy
|
9
|
+
module Mgmt
|
10
|
+
PolicyDefinitions = Azure::Policy::Mgmt::V2016_12_01::PolicyDefinitions
|
11
|
+
PolicyAssignments = Azure::Policy::Mgmt::V2016_12_01::PolicyAssignments
|
12
|
+
|
13
|
+
module Models
|
14
|
+
PolicyAssignment = Azure::Policy::Mgmt::V2016_12_01::Models::PolicyAssignment
|
15
|
+
PolicyDefinition = Azure::Policy::Mgmt::V2016_12_01::Models::PolicyDefinition
|
16
|
+
PolicyAssignmentListResult = Azure::Policy::Mgmt::V2016_12_01::Models::PolicyAssignmentListResult
|
17
|
+
PolicyDefinitionListResult = Azure::Policy::Mgmt::V2016_12_01::Models::PolicyDefinitionListResult
|
18
|
+
PolicyType = Azure::Policy::Mgmt::V2016_12_01::Models::PolicyType
|
19
|
+
PolicyMode = Azure::Policy::Mgmt::V2016_12_01::Models::PolicyMode
|
20
|
+
end
|
21
|
+
|
22
|
+
class PolicyManagementClass
|
23
|
+
attr_reader :policy_definitions, :policy_assignments, :configurable, :base_url, :options, :model_classes
|
24
|
+
|
25
|
+
def initialize(configurable, base_url=nil, options=nil)
|
26
|
+
@configurable, @base_url, @options = configurable, base_url, options
|
27
|
+
|
28
|
+
@client_0 = Azure::Policy::Mgmt::V2016_12_01::PolicyClient.new(configurable.credentials, base_url, options)
|
29
|
+
if(@client_0.respond_to?(:subscription_id))
|
30
|
+
@client_0.subscription_id = configurable.subscription_id
|
31
|
+
end
|
32
|
+
add_telemetry(@client_0)
|
33
|
+
@policy_definitions = @client_0.policy_definitions
|
34
|
+
@policy_assignments = @client_0.policy_assignments
|
35
|
+
|
36
|
+
@model_classes = ModelClasses.new
|
37
|
+
end
|
38
|
+
|
39
|
+
def add_telemetry(client)
|
40
|
+
profile_information = "Profiles/azure_sdk/#{Azure::VERSION}/V2020_09_01_Hybrid/Policy/Mgmt"
|
41
|
+
client.add_user_agent_information(profile_information)
|
42
|
+
end
|
43
|
+
|
44
|
+
def method_missing(method, *args)
|
45
|
+
if @client_0.respond_to?method
|
46
|
+
@client_0.send(method, *args)
|
47
|
+
else
|
48
|
+
super
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
class ModelClasses
|
53
|
+
def policy_assignment
|
54
|
+
Azure::Policy::Mgmt::V2016_12_01::Models::PolicyAssignment
|
55
|
+
end
|
56
|
+
def policy_definition
|
57
|
+
Azure::Policy::Mgmt::V2016_12_01::Models::PolicyDefinition
|
58
|
+
end
|
59
|
+
def policy_assignment_list_result
|
60
|
+
Azure::Policy::Mgmt::V2016_12_01::Models::PolicyAssignmentListResult
|
61
|
+
end
|
62
|
+
def policy_definition_list_result
|
63
|
+
Azure::Policy::Mgmt::V2016_12_01::Models::PolicyDefinitionListResult
|
64
|
+
end
|
65
|
+
def policy_type
|
66
|
+
Azure::Policy::Mgmt::V2016_12_01::Models::PolicyType
|
67
|
+
end
|
68
|
+
def policy_mode
|
69
|
+
Azure::Policy::Mgmt::V2016_12_01::Models::PolicyMode
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
@@ -0,0 +1,387 @@
|
|
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_resources'
|
6
|
+
|
7
|
+
module Azure::Profiles::V2020_09_01_Hybrid
|
8
|
+
module Resources
|
9
|
+
module Mgmt
|
10
|
+
Tags = Azure::Resources::Mgmt::V2018_05_01::Tags
|
11
|
+
Operations = Azure::Resources::Mgmt::V2019_10_01::Operations
|
12
|
+
Deployments = Azure::Resources::Mgmt::V2019_10_01::Deployments
|
13
|
+
Providers = Azure::Resources::Mgmt::V2019_10_01::Providers
|
14
|
+
Resources = Azure::Resources::Mgmt::V2019_10_01::Resources
|
15
|
+
ResourceGroups = Azure::Resources::Mgmt::V2019_10_01::ResourceGroups
|
16
|
+
TagsOperations = Azure::Resources::Mgmt::V2019_10_01::TagsOperations
|
17
|
+
DeploymentOperations = Azure::Resources::Mgmt::V2019_10_01::DeploymentOperations
|
18
|
+
|
19
|
+
module Models
|
20
|
+
ResourceManagementErrorWithDetails = Azure::Resources::Mgmt::V2018_05_01::Models::ResourceManagementErrorWithDetails
|
21
|
+
AliasPathType = Azure::Resources::Mgmt::V2018_05_01::Models::AliasPathType
|
22
|
+
Sku = Azure::Resources::Mgmt::V2019_10_01::Models::Sku
|
23
|
+
IdentityUserAssignedIdentitiesValue = Azure::Resources::Mgmt::V2019_10_01::Models::IdentityUserAssignedIdentitiesValue
|
24
|
+
GenericResourceFilter = Azure::Resources::Mgmt::V2019_10_01::Models::GenericResourceFilter
|
25
|
+
Identity = Azure::Resources::Mgmt::V2019_10_01::Models::Identity
|
26
|
+
TemplateLink = Azure::Resources::Mgmt::V2019_10_01::Models::TemplateLink
|
27
|
+
ParametersLink = Azure::Resources::Mgmt::V2019_10_01::Models::ParametersLink
|
28
|
+
DebugSetting = Azure::Resources::Mgmt::V2019_10_01::Models::DebugSetting
|
29
|
+
TagsResource = Azure::Resources::Mgmt::V2019_10_01::Models::TagsResource
|
30
|
+
DeploymentProperties = Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentProperties
|
31
|
+
TagsPatchResource = Azure::Resources::Mgmt::V2019_10_01::Models::TagsPatchResource
|
32
|
+
ScopedDeployment = Azure::Resources::Mgmt::V2019_10_01::Models::ScopedDeployment
|
33
|
+
ResourceListResult = Azure::Resources::Mgmt::V2019_10_01::Models::ResourceListResult
|
34
|
+
DeploymentWhatIfSettings = Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentWhatIfSettings
|
35
|
+
ResourceGroupProperties = Azure::Resources::Mgmt::V2019_10_01::Models::ResourceGroupProperties
|
36
|
+
DeploymentWhatIf = Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentWhatIf
|
37
|
+
ResourceGroup = Azure::Resources::Mgmt::V2019_10_01::Models::ResourceGroup
|
38
|
+
ErrorAdditionalInfo = Azure::Resources::Mgmt::V2019_10_01::Models::ErrorAdditionalInfo
|
39
|
+
ResourceGroupPatchable = Azure::Resources::Mgmt::V2019_10_01::Models::ResourceGroupPatchable
|
40
|
+
ResourceGroupListResult = Azure::Resources::Mgmt::V2019_10_01::Models::ResourceGroupListResult
|
41
|
+
AliasPath = Azure::Resources::Mgmt::V2019_10_01::Models::AliasPath
|
42
|
+
ResourcesMoveInfo = Azure::Resources::Mgmt::V2019_10_01::Models::ResourcesMoveInfo
|
43
|
+
ProviderResourceType = Azure::Resources::Mgmt::V2019_10_01::Models::ProviderResourceType
|
44
|
+
ExportTemplateRequest = Azure::Resources::Mgmt::V2019_10_01::Models::ExportTemplateRequest
|
45
|
+
BasicDependency = Azure::Resources::Mgmt::V2019_10_01::Models::BasicDependency
|
46
|
+
TagCount = Azure::Resources::Mgmt::V2019_10_01::Models::TagCount
|
47
|
+
OnErrorDeploymentExtended = Azure::Resources::Mgmt::V2019_10_01::Models::OnErrorDeploymentExtended
|
48
|
+
TagValue = Azure::Resources::Mgmt::V2019_10_01::Models::TagValue
|
49
|
+
DeploymentPropertiesExtended = Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentPropertiesExtended
|
50
|
+
TagDetails = Azure::Resources::Mgmt::V2019_10_01::Models::TagDetails
|
51
|
+
DeploymentExtended = Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentExtended
|
52
|
+
TagsListResult = Azure::Resources::Mgmt::V2019_10_01::Models::TagsListResult
|
53
|
+
ProviderListResult = Azure::Resources::Mgmt::V2019_10_01::Models::ProviderListResult
|
54
|
+
TargetResource = Azure::Resources::Mgmt::V2019_10_01::Models::TargetResource
|
55
|
+
DeploymentExtendedFilter = Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentExtendedFilter
|
56
|
+
HttpMessage = Azure::Resources::Mgmt::V2019_10_01::Models::HttpMessage
|
57
|
+
OnErrorDeployment = Azure::Resources::Mgmt::V2019_10_01::Models::OnErrorDeployment
|
58
|
+
DeploymentOperationProperties = Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentOperationProperties
|
59
|
+
DeploymentExportResult = Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentExportResult
|
60
|
+
DeploymentOperation = Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentOperation
|
61
|
+
ScopedDeploymentWhatIf = Azure::Resources::Mgmt::V2019_10_01::Models::ScopedDeploymentWhatIf
|
62
|
+
DeploymentOperationsListResult = Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentOperationsListResult
|
63
|
+
AliasPattern = Azure::Resources::Mgmt::V2019_10_01::Models::AliasPattern
|
64
|
+
ResourceProviderOperationDisplayProperties = Azure::Resources::Mgmt::V2019_10_01::Models::ResourceProviderOperationDisplayProperties
|
65
|
+
Provider = Azure::Resources::Mgmt::V2019_10_01::Models::Provider
|
66
|
+
Resource = Azure::Resources::Mgmt::V2019_10_01::Models::Resource
|
67
|
+
ResourceReference = Azure::Resources::Mgmt::V2019_10_01::Models::ResourceReference
|
68
|
+
SubResource = Azure::Resources::Mgmt::V2019_10_01::Models::SubResource
|
69
|
+
DeploymentListResult = Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentListResult
|
70
|
+
ResourceGroupExportResult = Azure::Resources::Mgmt::V2019_10_01::Models::ResourceGroupExportResult
|
71
|
+
ResourceGroupFilter = Azure::Resources::Mgmt::V2019_10_01::Models::ResourceGroupFilter
|
72
|
+
OperationDisplay = Azure::Resources::Mgmt::V2019_10_01::Models::OperationDisplay
|
73
|
+
Tags = Azure::Resources::Mgmt::V2019_10_01::Models::Tags
|
74
|
+
ErrorResponse = Azure::Resources::Mgmt::V2019_10_01::Models::ErrorResponse
|
75
|
+
Operation = Azure::Resources::Mgmt::V2019_10_01::Models::Operation
|
76
|
+
Dependency = Azure::Resources::Mgmt::V2019_10_01::Models::Dependency
|
77
|
+
OperationListResult = Azure::Resources::Mgmt::V2019_10_01::Models::OperationListResult
|
78
|
+
Plan = Azure::Resources::Mgmt::V2019_10_01::Models::Plan
|
79
|
+
TemplateHashResult = Azure::Resources::Mgmt::V2019_10_01::Models::TemplateHashResult
|
80
|
+
AliasModel = Azure::Resources::Mgmt::V2019_10_01::Models::AliasModel
|
81
|
+
WhatIfPropertyChange = Azure::Resources::Mgmt::V2019_10_01::Models::WhatIfPropertyChange
|
82
|
+
Deployment = Azure::Resources::Mgmt::V2019_10_01::Models::Deployment
|
83
|
+
WhatIfChange = Azure::Resources::Mgmt::V2019_10_01::Models::WhatIfChange
|
84
|
+
DeploymentValidateResult = Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentValidateResult
|
85
|
+
WhatIfOperationResult = Azure::Resources::Mgmt::V2019_10_01::Models::WhatIfOperationResult
|
86
|
+
DeploymentWhatIfProperties = Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentWhatIfProperties
|
87
|
+
GenericResource = Azure::Resources::Mgmt::V2019_10_01::Models::GenericResource
|
88
|
+
GenericResourceExpanded = Azure::Resources::Mgmt::V2019_10_01::Models::GenericResourceExpanded
|
89
|
+
DeploymentMode = Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentMode
|
90
|
+
OnErrorDeploymentType = Azure::Resources::Mgmt::V2019_10_01::Models::OnErrorDeploymentType
|
91
|
+
WhatIfResultFormat = Azure::Resources::Mgmt::V2019_10_01::Models::WhatIfResultFormat
|
92
|
+
AliasPatternType = Azure::Resources::Mgmt::V2019_10_01::Models::AliasPatternType
|
93
|
+
AliasType = Azure::Resources::Mgmt::V2019_10_01::Models::AliasType
|
94
|
+
ResourceIdentityType = Azure::Resources::Mgmt::V2019_10_01::Models::ResourceIdentityType
|
95
|
+
ProvisioningOperation = Azure::Resources::Mgmt::V2019_10_01::Models::ProvisioningOperation
|
96
|
+
PropertyChangeType = Azure::Resources::Mgmt::V2019_10_01::Models::PropertyChangeType
|
97
|
+
ChangeType = Azure::Resources::Mgmt::V2019_10_01::Models::ChangeType
|
98
|
+
TagsPatchOperation = Azure::Resources::Mgmt::V2019_10_01::Models::TagsPatchOperation
|
99
|
+
end
|
100
|
+
|
101
|
+
class ResourcesManagementClass
|
102
|
+
attr_reader :tags, :operations, :deployments, :providers, :resources, :resource_groups, :tags_operations, :deployment_operations, :configurable, :base_url, :options, :model_classes
|
103
|
+
|
104
|
+
def initialize(configurable, base_url=nil, options=nil)
|
105
|
+
@configurable, @base_url, @options = configurable, base_url, options
|
106
|
+
|
107
|
+
@client_0 = Azure::Resources::Mgmt::V2018_05_01::ResourceManagementClient.new(configurable.credentials, base_url, options)
|
108
|
+
if(@client_0.respond_to?(:subscription_id))
|
109
|
+
@client_0.subscription_id = configurable.subscription_id
|
110
|
+
end
|
111
|
+
add_telemetry(@client_0)
|
112
|
+
@tags = @client_0.tags
|
113
|
+
|
114
|
+
@client_1 = Azure::Resources::Mgmt::V2019_10_01::ResourceManagementClient.new(configurable.credentials, base_url, options)
|
115
|
+
if(@client_1.respond_to?(:subscription_id))
|
116
|
+
@client_1.subscription_id = configurable.subscription_id
|
117
|
+
end
|
118
|
+
add_telemetry(@client_1)
|
119
|
+
@operations = @client_1.operations
|
120
|
+
@deployments = @client_1.deployments
|
121
|
+
@providers = @client_1.providers
|
122
|
+
@resources = @client_1.resources
|
123
|
+
@resource_groups = @client_1.resource_groups
|
124
|
+
@tags_operations = @client_1.tags_operations
|
125
|
+
@deployment_operations = @client_1.deployment_operations
|
126
|
+
|
127
|
+
@model_classes = ModelClasses.new
|
128
|
+
end
|
129
|
+
|
130
|
+
def add_telemetry(client)
|
131
|
+
profile_information = "Profiles/azure_sdk/#{Azure::VERSION}/V2020_09_01_Hybrid/Resources/Mgmt"
|
132
|
+
client.add_user_agent_information(profile_information)
|
133
|
+
end
|
134
|
+
|
135
|
+
def method_missing(method, *args)
|
136
|
+
if @client_1.respond_to?method
|
137
|
+
@client_1.send(method, *args)
|
138
|
+
elsif @client_0.respond_to?method
|
139
|
+
@client_0.send(method, *args)
|
140
|
+
else
|
141
|
+
super
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
class ModelClasses
|
146
|
+
def resource_management_error_with_details
|
147
|
+
Azure::Resources::Mgmt::V2018_05_01::Models::ResourceManagementErrorWithDetails
|
148
|
+
end
|
149
|
+
def alias_path_type
|
150
|
+
Azure::Resources::Mgmt::V2018_05_01::Models::AliasPathType
|
151
|
+
end
|
152
|
+
def sku
|
153
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::Sku
|
154
|
+
end
|
155
|
+
def identity_user_assigned_identities_value
|
156
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::IdentityUserAssignedIdentitiesValue
|
157
|
+
end
|
158
|
+
def generic_resource_filter
|
159
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::GenericResourceFilter
|
160
|
+
end
|
161
|
+
def identity
|
162
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::Identity
|
163
|
+
end
|
164
|
+
def template_link
|
165
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::TemplateLink
|
166
|
+
end
|
167
|
+
def parameters_link
|
168
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ParametersLink
|
169
|
+
end
|
170
|
+
def debug_setting
|
171
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::DebugSetting
|
172
|
+
end
|
173
|
+
def tags_resource
|
174
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::TagsResource
|
175
|
+
end
|
176
|
+
def deployment_properties
|
177
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentProperties
|
178
|
+
end
|
179
|
+
def tags_patch_resource
|
180
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::TagsPatchResource
|
181
|
+
end
|
182
|
+
def scoped_deployment
|
183
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ScopedDeployment
|
184
|
+
end
|
185
|
+
def resource_list_result
|
186
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ResourceListResult
|
187
|
+
end
|
188
|
+
def deployment_what_if_settings
|
189
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentWhatIfSettings
|
190
|
+
end
|
191
|
+
def resource_group_properties
|
192
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ResourceGroupProperties
|
193
|
+
end
|
194
|
+
def deployment_what_if
|
195
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentWhatIf
|
196
|
+
end
|
197
|
+
def resource_group
|
198
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ResourceGroup
|
199
|
+
end
|
200
|
+
def error_additional_info
|
201
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ErrorAdditionalInfo
|
202
|
+
end
|
203
|
+
def resource_group_patchable
|
204
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ResourceGroupPatchable
|
205
|
+
end
|
206
|
+
def resource_group_list_result
|
207
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ResourceGroupListResult
|
208
|
+
end
|
209
|
+
def alias_path
|
210
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::AliasPath
|
211
|
+
end
|
212
|
+
def resources_move_info
|
213
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ResourcesMoveInfo
|
214
|
+
end
|
215
|
+
def provider_resource_type
|
216
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ProviderResourceType
|
217
|
+
end
|
218
|
+
def export_template_request
|
219
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ExportTemplateRequest
|
220
|
+
end
|
221
|
+
def basic_dependency
|
222
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::BasicDependency
|
223
|
+
end
|
224
|
+
def tag_count
|
225
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::TagCount
|
226
|
+
end
|
227
|
+
def on_error_deployment_extended
|
228
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::OnErrorDeploymentExtended
|
229
|
+
end
|
230
|
+
def tag_value
|
231
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::TagValue
|
232
|
+
end
|
233
|
+
def deployment_properties_extended
|
234
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentPropertiesExtended
|
235
|
+
end
|
236
|
+
def tag_details
|
237
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::TagDetails
|
238
|
+
end
|
239
|
+
def deployment_extended
|
240
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentExtended
|
241
|
+
end
|
242
|
+
def tags_list_result
|
243
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::TagsListResult
|
244
|
+
end
|
245
|
+
def provider_list_result
|
246
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ProviderListResult
|
247
|
+
end
|
248
|
+
def target_resource
|
249
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::TargetResource
|
250
|
+
end
|
251
|
+
def deployment_extended_filter
|
252
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentExtendedFilter
|
253
|
+
end
|
254
|
+
def http_message
|
255
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::HttpMessage
|
256
|
+
end
|
257
|
+
def on_error_deployment
|
258
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::OnErrorDeployment
|
259
|
+
end
|
260
|
+
def deployment_operation_properties
|
261
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentOperationProperties
|
262
|
+
end
|
263
|
+
def deployment_export_result
|
264
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentExportResult
|
265
|
+
end
|
266
|
+
def deployment_operation
|
267
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentOperation
|
268
|
+
end
|
269
|
+
def scoped_deployment_what_if
|
270
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ScopedDeploymentWhatIf
|
271
|
+
end
|
272
|
+
def deployment_operations_list_result
|
273
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentOperationsListResult
|
274
|
+
end
|
275
|
+
def alias_pattern
|
276
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::AliasPattern
|
277
|
+
end
|
278
|
+
def resource_provider_operation_display_properties
|
279
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ResourceProviderOperationDisplayProperties
|
280
|
+
end
|
281
|
+
def provider
|
282
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::Provider
|
283
|
+
end
|
284
|
+
def resource
|
285
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::Resource
|
286
|
+
end
|
287
|
+
def resource_reference
|
288
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ResourceReference
|
289
|
+
end
|
290
|
+
def sub_resource
|
291
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::SubResource
|
292
|
+
end
|
293
|
+
def deployment_list_result
|
294
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentListResult
|
295
|
+
end
|
296
|
+
def resource_group_export_result
|
297
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ResourceGroupExportResult
|
298
|
+
end
|
299
|
+
def resource_group_filter
|
300
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ResourceGroupFilter
|
301
|
+
end
|
302
|
+
def operation_display
|
303
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::OperationDisplay
|
304
|
+
end
|
305
|
+
def tags
|
306
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::Tags
|
307
|
+
end
|
308
|
+
def error_response
|
309
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ErrorResponse
|
310
|
+
end
|
311
|
+
def operation
|
312
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::Operation
|
313
|
+
end
|
314
|
+
def dependency
|
315
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::Dependency
|
316
|
+
end
|
317
|
+
def operation_list_result
|
318
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::OperationListResult
|
319
|
+
end
|
320
|
+
def plan
|
321
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::Plan
|
322
|
+
end
|
323
|
+
def template_hash_result
|
324
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::TemplateHashResult
|
325
|
+
end
|
326
|
+
def alias_model
|
327
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::AliasModel
|
328
|
+
end
|
329
|
+
def what_if_property_change
|
330
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::WhatIfPropertyChange
|
331
|
+
end
|
332
|
+
def deployment
|
333
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::Deployment
|
334
|
+
end
|
335
|
+
def what_if_change
|
336
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::WhatIfChange
|
337
|
+
end
|
338
|
+
def deployment_validate_result
|
339
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentValidateResult
|
340
|
+
end
|
341
|
+
def what_if_operation_result
|
342
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::WhatIfOperationResult
|
343
|
+
end
|
344
|
+
def deployment_what_if_properties
|
345
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentWhatIfProperties
|
346
|
+
end
|
347
|
+
def generic_resource
|
348
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::GenericResource
|
349
|
+
end
|
350
|
+
def generic_resource_expanded
|
351
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::GenericResourceExpanded
|
352
|
+
end
|
353
|
+
def deployment_mode
|
354
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::DeploymentMode
|
355
|
+
end
|
356
|
+
def on_error_deployment_type
|
357
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::OnErrorDeploymentType
|
358
|
+
end
|
359
|
+
def what_if_result_format
|
360
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::WhatIfResultFormat
|
361
|
+
end
|
362
|
+
def alias_pattern_type
|
363
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::AliasPatternType
|
364
|
+
end
|
365
|
+
def alias_type
|
366
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::AliasType
|
367
|
+
end
|
368
|
+
def resource_identity_type
|
369
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ResourceIdentityType
|
370
|
+
end
|
371
|
+
def provisioning_operation
|
372
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ProvisioningOperation
|
373
|
+
end
|
374
|
+
def property_change_type
|
375
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::PropertyChangeType
|
376
|
+
end
|
377
|
+
def change_type
|
378
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::ChangeType
|
379
|
+
end
|
380
|
+
def tags_patch_operation
|
381
|
+
Azure::Resources::Mgmt::V2019_10_01::Models::TagsPatchOperation
|
382
|
+
end
|
383
|
+
end
|
384
|
+
end
|
385
|
+
end
|
386
|
+
end
|
387
|
+
end
|