azure_sdk 0.62.0 → 0.67.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/azure_sdk.rb +2 -1
- data/lib/azure_sdk/version.rb +1 -1
- data/lib/latest/latest_profile_client.rb +31 -1
- data/lib/latest/modules/automanage_profile_module.rb +183 -0
- data/lib/latest/modules/cognitiveservices_profile_module.rb +68 -64
- data/lib/latest/modules/compute_profile_module.rb +961 -805
- data/lib/latest/modules/containerregistry_profile_module.rb +130 -74
- data/lib/latest/modules/containerservice_profile_module.rb +143 -139
- data/lib/latest/modules/datafactory_profile_module.rb +594 -490
- data/lib/latest/modules/digitaltwins_profile_module.rb +137 -0
- data/lib/latest/modules/eventhub_profile_module.rb +79 -57
- data/lib/latest/modules/hdinsight_profile_module.rb +9 -9
- 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 +164 -160
- data/lib/latest/modules/mariadb_profile_module.rb +20 -4
- data/lib/latest/modules/monitor_profile_module.rb +226 -122
- data/lib/latest/modules/mysql_profile_module.rb +122 -12
- data/lib/latest/modules/netapp_profile_module.rb +229 -107
- data/lib/latest/modules/network_profile_module.rb +1733 -1633
- data/lib/latest/modules/operationalinsights_profile_module.rb +173 -173
- data/lib/latest/modules/policyinsights_profile_module.rb +8 -0
- data/lib/latest/modules/security_profile_module.rb +492 -224
- data/lib/latest/modules/storage_profile_module.rb +391 -377
- data/lib/latest/modules/subscriptions_profile_module.rb +92 -72
- 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 +1287 -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 +118 -56
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1b4886cd9a00b7602b57583e6a725d81cc3d1091d702fc93cc599fb96530b0a1
|
4
|
+
data.tar.gz: 7c74930b73bcef93b7f7365e12d1657291740d95eb935c04af8db665a83b3b58
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 10b137e5999c23c36b0557a646b98493dff8bc0a595f9e3fe406f2fd6340f55d18efb73e1f21765acf281c4d0be8fca8628391e050ffbbc8872e1cc976d466e2
|
7
|
+
data.tar.gz: 17a27475926b17670c7017679e5c6ab0ea386a9e34dd801e0f2f695823a4e99bcf5cddc2cfeeec3e01dc74b2ac5da5fc0fcbcf978970646a8e81563e12228c9d
|
data/lib/azure_sdk.rb
CHANGED
@@ -3,7 +3,8 @@
|
|
3
3
|
# Licensed under the MIT License. See License.txt in the project root for license information.
|
4
4
|
|
5
5
|
require 'azure_sdk/version'
|
6
|
+
require 'v2020_09_01_hybrid/v2020_09_01_hybrid_profile_client'
|
6
7
|
require 'latest/latest_profile_client'
|
7
8
|
require 'v2017_03_09/v2017_03_09_profile_client'
|
8
|
-
require 'v2018_03_01/v2018_03_01_profile_client'
|
9
9
|
require 'v2019_03_01_hybrid/v2019_03_01_hybrid_profile_client'
|
10
|
+
require 'v2018_03_01/v2018_03_01_profile_client'
|
data/lib/azure_sdk/version.rb
CHANGED
@@ -11,6 +11,7 @@ require 'latest/modules/apimanagement_profile_module'
|
|
11
11
|
require 'latest/modules/appconfiguration_profile_module'
|
12
12
|
require 'latest/modules/attestation_profile_module'
|
13
13
|
require 'latest/modules/authorization_profile_module'
|
14
|
+
require 'latest/modules/automanage_profile_module'
|
14
15
|
require 'latest/modules/automation_profile_module'
|
15
16
|
require 'latest/modules/azurestack_profile_module'
|
16
17
|
require 'latest/modules/azurestackhci_profile_module'
|
@@ -38,6 +39,7 @@ require 'latest/modules/datafactory_profile_module'
|
|
38
39
|
require 'latest/modules/deploymentmanager_profile_module'
|
39
40
|
require 'latest/modules/devspaces_profile_module'
|
40
41
|
require 'latest/modules/devtestlabs_profile_module'
|
42
|
+
require 'latest/modules/digitaltwins_profile_module'
|
41
43
|
require 'latest/modules/dns_profile_module'
|
42
44
|
require 'latest/modules/edgegateway_profile_module'
|
43
45
|
require 'latest/modules/eventgrid_profile_module'
|
@@ -45,6 +47,7 @@ require 'latest/modules/eventhub_profile_module'
|
|
45
47
|
require 'latest/modules/features_profile_module'
|
46
48
|
require 'latest/modules/hanaonazure_profile_module'
|
47
49
|
require 'latest/modules/hdinsight_profile_module'
|
50
|
+
require 'latest/modules/hybridcompute_profile_module'
|
48
51
|
require 'latest/modules/graphrbac_profile_module'
|
49
52
|
require 'latest/modules/importexport_profile_module'
|
50
53
|
require 'latest/modules/iotcentral_profile_module'
|
@@ -144,7 +147,7 @@ module Azure::Profiles::Latest
|
|
144
147
|
class Client
|
145
148
|
include MsRestAzure::Common::Configurable
|
146
149
|
|
147
|
-
attr_reader :adhybrid_health_service, :advisor, :alerts_management, :analysis_services, :api_management, :appconfiguration, :attestation, :authorization, :automation, :azure_stack, :azure_stack_hci, :batch, :batch_ai, :billing, :bot_service, :cdn, :cognitive_services, :commerce, :compute, :consumption, :container_instance, :container_registry, :container_service, :cosmosdb, :cost_management, :customer_insights, :data_box, :data_share, :data_lake_analytics, :data_lake_store, :data_migration, :data_factory, :deployment_manager, :dev_spaces, :dev_test_labs, :dns, :edge_gateway, :event_grid, :event_hub, :features, :hanaonazure, :hdinsight, :graph_rbac, :import_export, :iot_central, :iot_hub, :key_vault, :kubernetes_configuration, :kusto, :labservices, :links, :locks, :logic, :machine_learning, :machine_learning_services, :maintenance, :managed_applications, :maria_db, :marketplace_ordering, :media_services, :migrate, :mixed_reality, :monitor, :managed_service_identity, :mysql, :net_app, :network, :notification_hubs, :operational_insights, :operations_management, :peering, :policy, :policy_insights, :portal, :postgresql, :power_bi_embedded, :power_bi_dedicated, :private_dns, :recovery_services, :recovery_services_backup, :recovery_services_site_recovery, :redis, :relay, :reservations, :resource_health, :resource_graph, :resources, :resources_management, :scheduler, :search, :security, :serialconsole, :service_bus, :service_fabric, :signalr, :sql, :sqlvirtualmachine, :stor_simple8000_series, :storage, :storage_sync, :storage_cache, :stream_analytics, :subscriptions, :support, :synapse, :time_series_insights, :traffic_manager, :vmware_cloud_simple, :web, :anomaly_detector, :autosuggest, :customimagesearch, :computer_vision, :content_moderator, :custom_search, :customvisiontraining, :customvisionprediction, :entity_search, :face, :form_recognizer, :image_search, :local_search, :luis_runtime, :luis_authoring, :news_search, :personalizer, :qnamaker, :qnamaker_runtime, :spell_check, :text_analytics, :video_search, :web_search, :visual_search
|
150
|
+
attr_reader :adhybrid_health_service, :advisor, :alerts_management, :analysis_services, :api_management, :appconfiguration, :attestation, :authorization, :automanage, :automation, :azure_stack, :azure_stack_hci, :batch, :batch_ai, :billing, :bot_service, :cdn, :cognitive_services, :commerce, :compute, :consumption, :container_instance, :container_registry, :container_service, :cosmosdb, :cost_management, :customer_insights, :data_box, :data_share, :data_lake_analytics, :data_lake_store, :data_migration, :data_factory, :deployment_manager, :dev_spaces, :dev_test_labs, :digital_twins, :dns, :edge_gateway, :event_grid, :event_hub, :features, :hanaonazure, :hdinsight, :hybrid_compute, :graph_rbac, :import_export, :iot_central, :iot_hub, :key_vault, :kubernetes_configuration, :kusto, :labservices, :links, :locks, :logic, :machine_learning, :machine_learning_services, :maintenance, :managed_applications, :maria_db, :marketplace_ordering, :media_services, :migrate, :mixed_reality, :monitor, :managed_service_identity, :mysql, :net_app, :network, :notification_hubs, :operational_insights, :operations_management, :peering, :policy, :policy_insights, :portal, :postgresql, :power_bi_embedded, :power_bi_dedicated, :private_dns, :recovery_services, :recovery_services_backup, :recovery_services_site_recovery, :redis, :relay, :reservations, :resource_health, :resource_graph, :resources, :resources_management, :scheduler, :search, :security, :serialconsole, :service_bus, :service_fabric, :signalr, :sql, :sqlvirtualmachine, :stor_simple8000_series, :storage, :storage_sync, :storage_cache, :stream_analytics, :subscriptions, :support, :synapse, :time_series_insights, :traffic_manager, :vmware_cloud_simple, :web, :anomaly_detector, :autosuggest, :customimagesearch, :computer_vision, :content_moderator, :custom_search, :customvisiontraining, :customvisionprediction, :entity_search, :face, :form_recognizer, :image_search, :local_search, :luis_runtime, :luis_authoring, :news_search, :personalizer, :qnamaker, :qnamaker_runtime, :spell_check, :text_analytics, :video_search, :web_search, :visual_search
|
148
151
|
|
149
152
|
#
|
150
153
|
# Initializes a new instance of the Client class.
|
@@ -184,6 +187,7 @@ module Azure::Profiles::Latest
|
|
184
187
|
@appconfiguration = AppconfigurationAdapter.new(self, base_url, sdk_options)
|
185
188
|
@attestation = AttestationAdapter.new(self, base_url, sdk_options)
|
186
189
|
@authorization = AuthorizationAdapter.new(self, base_url, sdk_options)
|
190
|
+
@automanage = AutomanageAdapter.new(self, base_url, sdk_options)
|
187
191
|
@automation = AutomationAdapter.new(self, base_url, sdk_options)
|
188
192
|
@azure_stack = AzureStackAdapter.new(self, base_url, sdk_options)
|
189
193
|
@azure_stack_hci = AzureStackHCIAdapter.new(self, base_url, sdk_options)
|
@@ -211,6 +215,7 @@ module Azure::Profiles::Latest
|
|
211
215
|
@deployment_manager = DeploymentManagerAdapter.new(self, base_url, sdk_options)
|
212
216
|
@dev_spaces = DevSpacesAdapter.new(self, base_url, sdk_options)
|
213
217
|
@dev_test_labs = DevTestLabsAdapter.new(self, base_url, sdk_options)
|
218
|
+
@digital_twins = DigitalTwinsAdapter.new(self, base_url, sdk_options)
|
214
219
|
@dns = DnsAdapter.new(self, base_url, sdk_options)
|
215
220
|
@edge_gateway = EdgeGatewayAdapter.new(self, base_url, sdk_options)
|
216
221
|
@event_grid = EventGridAdapter.new(self, base_url, sdk_options)
|
@@ -218,6 +223,7 @@ module Azure::Profiles::Latest
|
|
218
223
|
@features = FeaturesAdapter.new(self, base_url, sdk_options)
|
219
224
|
@hanaonazure = HanaonazureAdapter.new(self, base_url, sdk_options)
|
220
225
|
@hdinsight = HdinsightAdapter.new(self, base_url, sdk_options)
|
226
|
+
@hybrid_compute = HybridComputeAdapter.new(self, base_url, sdk_options)
|
221
227
|
@graph_rbac = GraphRbacAdapter.new(self, base_url, sdk_options)
|
222
228
|
@import_export = ImportExportAdapter.new(self, base_url, sdk_options)
|
223
229
|
@iot_central = IotCentralAdapter.new(self, base_url, sdk_options)
|
@@ -375,6 +381,14 @@ module Azure::Profiles::Latest
|
|
375
381
|
end
|
376
382
|
end
|
377
383
|
|
384
|
+
class AutomanageAdapter
|
385
|
+
attr_accessor :mgmt
|
386
|
+
|
387
|
+
def initialize(context, base_url, options)
|
388
|
+
@mgmt = Azure::Profiles::Latest::Automanage::Mgmt::AutomanageManagementClass.new(context, base_url, options)
|
389
|
+
end
|
390
|
+
end
|
391
|
+
|
378
392
|
class AutomationAdapter
|
379
393
|
attr_accessor :mgmt
|
380
394
|
|
@@ -591,6 +605,14 @@ module Azure::Profiles::Latest
|
|
591
605
|
end
|
592
606
|
end
|
593
607
|
|
608
|
+
class DigitalTwinsAdapter
|
609
|
+
attr_accessor :mgmt
|
610
|
+
|
611
|
+
def initialize(context, base_url, options)
|
612
|
+
@mgmt = Azure::Profiles::Latest::DigitalTwins::Mgmt::DigitalTwinsManagementClass.new(context, base_url, options)
|
613
|
+
end
|
614
|
+
end
|
615
|
+
|
594
616
|
class DnsAdapter
|
595
617
|
attr_accessor :mgmt
|
596
618
|
|
@@ -648,6 +670,14 @@ module Azure::Profiles::Latest
|
|
648
670
|
end
|
649
671
|
end
|
650
672
|
|
673
|
+
class HybridComputeAdapter
|
674
|
+
attr_accessor :mgmt
|
675
|
+
|
676
|
+
def initialize(context, base_url, options)
|
677
|
+
@mgmt = Azure::Profiles::Latest::HybridCompute::Mgmt::HybridComputeManagementClass.new(context, base_url, options)
|
678
|
+
end
|
679
|
+
end
|
680
|
+
|
651
681
|
class GraphRbacAdapter < Azure::Profiles::Latest::GraphRbac::GraphRbacDataClass
|
652
682
|
|
653
683
|
def initialize(context, base_url, options)
|
@@ -0,0 +1,183 @@
|
|
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_automanage'
|
6
|
+
|
7
|
+
module Azure::Profiles::Latest
|
8
|
+
module Automanage
|
9
|
+
module Mgmt
|
10
|
+
Accounts = Azure::Automanage::Mgmt::V2020_06_30_preview::Accounts
|
11
|
+
ConfigurationProfileAssignments = Azure::Automanage::Mgmt::V2020_06_30_preview::ConfigurationProfileAssignments
|
12
|
+
ConfigurationProfilePreferences = Azure::Automanage::Mgmt::V2020_06_30_preview::ConfigurationProfilePreferences
|
13
|
+
Operations = Azure::Automanage::Mgmt::V2020_06_30_preview::Operations
|
14
|
+
|
15
|
+
module Models
|
16
|
+
ConfigurationProfilePreferenceProperties = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfilePreferenceProperties
|
17
|
+
AccountIdentity = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::AccountIdentity
|
18
|
+
ErrorAdditionalInfo = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ErrorAdditionalInfo
|
19
|
+
ErrorResponse = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ErrorResponse
|
20
|
+
AccountList = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::AccountList
|
21
|
+
ErrorResponseError = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ErrorResponseError
|
22
|
+
ConfigurationProfileAssignmentProperties = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfileAssignmentProperties
|
23
|
+
ConfigurationProfileAssignmentList = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfileAssignmentList
|
24
|
+
ConfigurationProfilePreferenceList = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfilePreferenceList
|
25
|
+
ConfigurationProfilePreferenceAntiMalware = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfilePreferenceAntiMalware
|
26
|
+
OperationDisplay = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::OperationDisplay
|
27
|
+
Resource = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::Resource
|
28
|
+
Operation = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::Operation
|
29
|
+
ConfigurationProfileAssignmentCompliance = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfileAssignmentCompliance
|
30
|
+
OperationList = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::OperationList
|
31
|
+
ConfigurationProfilePreferenceVmBackup = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfilePreferenceVmBackup
|
32
|
+
UpdateResource = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::UpdateResource
|
33
|
+
Account = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::Account
|
34
|
+
AccountUpdate = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::AccountUpdate
|
35
|
+
ConfigurationProfileAssignment = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfileAssignment
|
36
|
+
ConfigurationProfilePreference = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfilePreference
|
37
|
+
ConfigurationProfilePreferenceUpdate = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfilePreferenceUpdate
|
38
|
+
ProxyResource = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ProxyResource
|
39
|
+
AzureEntityResource = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::AzureEntityResource
|
40
|
+
TrackedResource = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::TrackedResource
|
41
|
+
ResourceIdentityType = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ResourceIdentityType
|
42
|
+
ConfigurationProfile = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfile
|
43
|
+
ProvisioningState = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ProvisioningState
|
44
|
+
UpdateStatus = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::UpdateStatus
|
45
|
+
EnableRealTimeProtection = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::EnableRealTimeProtection
|
46
|
+
RunScheduledScan = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::RunScheduledScan
|
47
|
+
ScanType = Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ScanType
|
48
|
+
end
|
49
|
+
|
50
|
+
class AutomanageManagementClass
|
51
|
+
attr_reader :accounts, :configuration_profile_assignments, :configuration_profile_preferences, :operations, :configurable, :base_url, :options, :model_classes
|
52
|
+
|
53
|
+
def initialize(configurable, base_url=nil, options=nil)
|
54
|
+
@configurable, @base_url, @options = configurable, base_url, options
|
55
|
+
|
56
|
+
@client_0 = Azure::Automanage::Mgmt::V2020_06_30_preview::AutomanageClient.new(configurable.credentials, base_url, options)
|
57
|
+
if(@client_0.respond_to?(:subscription_id))
|
58
|
+
@client_0.subscription_id = configurable.subscription_id
|
59
|
+
end
|
60
|
+
add_telemetry(@client_0)
|
61
|
+
@accounts = @client_0.accounts
|
62
|
+
@configuration_profile_assignments = @client_0.configuration_profile_assignments
|
63
|
+
@configuration_profile_preferences = @client_0.configuration_profile_preferences
|
64
|
+
@operations = @client_0.operations
|
65
|
+
|
66
|
+
@model_classes = ModelClasses.new
|
67
|
+
end
|
68
|
+
|
69
|
+
def add_telemetry(client)
|
70
|
+
profile_information = "Profiles/azure_sdk/#{Azure::VERSION}/Latest/Automanage/Mgmt"
|
71
|
+
client.add_user_agent_information(profile_information)
|
72
|
+
end
|
73
|
+
|
74
|
+
def method_missing(method, *args)
|
75
|
+
if @client_0.respond_to?method
|
76
|
+
@client_0.send(method, *args)
|
77
|
+
else
|
78
|
+
super
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
class ModelClasses
|
83
|
+
def configuration_profile_preference_properties
|
84
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfilePreferenceProperties
|
85
|
+
end
|
86
|
+
def account_identity
|
87
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::AccountIdentity
|
88
|
+
end
|
89
|
+
def error_additional_info
|
90
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ErrorAdditionalInfo
|
91
|
+
end
|
92
|
+
def error_response
|
93
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ErrorResponse
|
94
|
+
end
|
95
|
+
def account_list
|
96
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::AccountList
|
97
|
+
end
|
98
|
+
def error_response_error
|
99
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ErrorResponseError
|
100
|
+
end
|
101
|
+
def configuration_profile_assignment_properties
|
102
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfileAssignmentProperties
|
103
|
+
end
|
104
|
+
def configuration_profile_assignment_list
|
105
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfileAssignmentList
|
106
|
+
end
|
107
|
+
def configuration_profile_preference_list
|
108
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfilePreferenceList
|
109
|
+
end
|
110
|
+
def configuration_profile_preference_anti_malware
|
111
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfilePreferenceAntiMalware
|
112
|
+
end
|
113
|
+
def operation_display
|
114
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::OperationDisplay
|
115
|
+
end
|
116
|
+
def resource
|
117
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::Resource
|
118
|
+
end
|
119
|
+
def operation
|
120
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::Operation
|
121
|
+
end
|
122
|
+
def configuration_profile_assignment_compliance
|
123
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfileAssignmentCompliance
|
124
|
+
end
|
125
|
+
def operation_list
|
126
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::OperationList
|
127
|
+
end
|
128
|
+
def configuration_profile_preference_vm_backup
|
129
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfilePreferenceVmBackup
|
130
|
+
end
|
131
|
+
def update_resource
|
132
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::UpdateResource
|
133
|
+
end
|
134
|
+
def account
|
135
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::Account
|
136
|
+
end
|
137
|
+
def account_update
|
138
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::AccountUpdate
|
139
|
+
end
|
140
|
+
def configuration_profile_assignment
|
141
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfileAssignment
|
142
|
+
end
|
143
|
+
def configuration_profile_preference
|
144
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfilePreference
|
145
|
+
end
|
146
|
+
def configuration_profile_preference_update
|
147
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfilePreferenceUpdate
|
148
|
+
end
|
149
|
+
def proxy_resource
|
150
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ProxyResource
|
151
|
+
end
|
152
|
+
def azure_entity_resource
|
153
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::AzureEntityResource
|
154
|
+
end
|
155
|
+
def tracked_resource
|
156
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::TrackedResource
|
157
|
+
end
|
158
|
+
def resource_identity_type
|
159
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ResourceIdentityType
|
160
|
+
end
|
161
|
+
def configuration_profile
|
162
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ConfigurationProfile
|
163
|
+
end
|
164
|
+
def provisioning_state
|
165
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ProvisioningState
|
166
|
+
end
|
167
|
+
def update_status
|
168
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::UpdateStatus
|
169
|
+
end
|
170
|
+
def enable_real_time_protection
|
171
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::EnableRealTimeProtection
|
172
|
+
end
|
173
|
+
def run_scheduled_scan
|
174
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::RunScheduledScan
|
175
|
+
end
|
176
|
+
def scan_type
|
177
|
+
Azure::Automanage::Mgmt::V2020_06_30_preview::Models::ScanType
|
178
|
+
end
|
179
|
+
end
|
180
|
+
end
|
181
|
+
end
|
182
|
+
end
|
183
|
+
end
|
@@ -15,45 +15,46 @@ module Azure::Profiles::Latest
|
|
15
15
|
|
16
16
|
module Models
|
17
17
|
Usage = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::Usage
|
18
|
-
Sku = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::Sku
|
19
18
|
UsagesResult = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::UsagesResult
|
20
|
-
|
19
|
+
SkuCapability = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::SkuCapability
|
21
20
|
ErrorBody = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::ErrorBody
|
22
|
-
|
21
|
+
VirtualNetworkRule = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::VirtualNetworkRule
|
23
22
|
Error = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::Error
|
24
|
-
|
23
|
+
KeyVaultProperties = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::KeyVaultProperties
|
25
24
|
OperationDisplayInfo = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::OperationDisplayInfo
|
26
|
-
|
25
|
+
UserOwnedStorage = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::UserOwnedStorage
|
27
26
|
OperationEntity = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::OperationEntity
|
28
|
-
|
27
|
+
PrivateLinkServiceConnectionState = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::PrivateLinkServiceConnectionState
|
29
28
|
OperationEntityListResult = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::OperationEntityListResult
|
29
|
+
PrivateEndpoint = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::PrivateEndpoint
|
30
30
|
CognitiveServicesAccountApiProperties = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CognitiveServicesAccountApiProperties
|
31
|
-
|
31
|
+
PrivateEndpointConnectionProperties = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::PrivateEndpointConnectionProperties
|
32
32
|
UserAssignedIdentity = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::UserAssignedIdentity
|
33
|
-
CheckSkuAvailabilityResult = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CheckSkuAvailabilityResult
|
34
33
|
CognitiveServicesAccount = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CognitiveServicesAccount
|
35
|
-
|
34
|
+
CheckSkuAvailabilityParameter = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CheckSkuAvailabilityParameter
|
36
35
|
CognitiveServicesAccountKeys = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CognitiveServicesAccountKeys
|
37
|
-
|
36
|
+
CheckSkuAvailabilityResult = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CheckSkuAvailabilityResult
|
38
37
|
CognitiveServicesResourceAndSku = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CognitiveServicesResourceAndSku
|
39
|
-
|
38
|
+
CheckSkuAvailabilityResultList = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CheckSkuAvailabilityResultList
|
40
39
|
MetricName = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::MetricName
|
40
|
+
CheckDomainAvailabilityParameter = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CheckDomainAvailabilityParameter
|
41
|
+
IpRule = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::IpRule
|
42
|
+
CheckDomainAvailabilityResult = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CheckDomainAvailabilityResult
|
43
|
+
Encryption = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::Encryption
|
41
44
|
ResourceSkuRestrictionInfo = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::ResourceSkuRestrictionInfo
|
42
|
-
|
45
|
+
Identity = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::Identity
|
43
46
|
ResourceSkuRestrictions = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::ResourceSkuRestrictions
|
44
|
-
|
47
|
+
RegenerateKeyParameters = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::RegenerateKeyParameters
|
45
48
|
ResourceSku = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::ResourceSku
|
46
|
-
|
49
|
+
Sku = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::Sku
|
50
|
+
ResourceSkusResult = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::ResourceSkusResult
|
47
51
|
CognitiveServicesAccountProperties = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CognitiveServicesAccountProperties
|
48
|
-
|
49
|
-
CognitiveServicesAccountListResult = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CognitiveServicesAccountListResult
|
52
|
+
PrivateEndpointConnectionListResult = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::PrivateEndpointConnectionListResult
|
50
53
|
CognitiveServicesAccountEnumerateSkusResult = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CognitiveServicesAccountEnumerateSkusResult
|
51
|
-
ResourceSkusResult = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::ResourceSkusResult
|
52
|
-
Identity = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::Identity
|
53
54
|
PrivateLinkResourceProperties = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::PrivateLinkResourceProperties
|
54
|
-
|
55
|
+
CognitiveServicesAccountListResult = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CognitiveServicesAccountListResult
|
55
56
|
Resource = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::Resource
|
56
|
-
|
57
|
+
NetworkRuleSet = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::NetworkRuleSet
|
57
58
|
PrivateLinkResourceListResult = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::PrivateLinkResourceListResult
|
58
59
|
PrivateEndpointConnection = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::PrivateEndpointConnection
|
59
60
|
PrivateLinkResource = Azure::CognitiveServices::Mgmt::V2017_04_18::Models::PrivateLinkResource
|
@@ -111,122 +112,125 @@ module Azure::Profiles::Latest
|
|
111
112
|
def usage
|
112
113
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::Usage
|
113
114
|
end
|
114
|
-
def sku
|
115
|
-
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::Sku
|
116
|
-
end
|
117
115
|
def usages_result
|
118
116
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::UsagesResult
|
119
117
|
end
|
120
|
-
def
|
121
|
-
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::
|
118
|
+
def sku_capability
|
119
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::SkuCapability
|
122
120
|
end
|
123
121
|
def error_body
|
124
122
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::ErrorBody
|
125
123
|
end
|
126
|
-
def
|
127
|
-
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::
|
124
|
+
def virtual_network_rule
|
125
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::VirtualNetworkRule
|
128
126
|
end
|
129
127
|
def error
|
130
128
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::Error
|
131
129
|
end
|
132
|
-
def
|
133
|
-
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::
|
130
|
+
def key_vault_properties
|
131
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::KeyVaultProperties
|
134
132
|
end
|
135
133
|
def operation_display_info
|
136
134
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::OperationDisplayInfo
|
137
135
|
end
|
138
|
-
def
|
139
|
-
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::
|
136
|
+
def user_owned_storage
|
137
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::UserOwnedStorage
|
140
138
|
end
|
141
139
|
def operation_entity
|
142
140
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::OperationEntity
|
143
141
|
end
|
144
|
-
def
|
145
|
-
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::
|
142
|
+
def private_link_service_connection_state
|
143
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::PrivateLinkServiceConnectionState
|
146
144
|
end
|
147
145
|
def operation_entity_list_result
|
148
146
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::OperationEntityListResult
|
149
147
|
end
|
148
|
+
def private_endpoint
|
149
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::PrivateEndpoint
|
150
|
+
end
|
150
151
|
def cognitive_services_account_api_properties
|
151
152
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CognitiveServicesAccountApiProperties
|
152
153
|
end
|
153
|
-
def
|
154
|
-
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::
|
154
|
+
def private_endpoint_connection_properties
|
155
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::PrivateEndpointConnectionProperties
|
155
156
|
end
|
156
157
|
def user_assigned_identity
|
157
158
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::UserAssignedIdentity
|
158
159
|
end
|
160
|
+
def cognitive_services_account
|
161
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CognitiveServicesAccount
|
162
|
+
end
|
163
|
+
def check_sku_availability_parameter
|
164
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CheckSkuAvailabilityParameter
|
165
|
+
end
|
166
|
+
def cognitive_services_account_keys
|
167
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CognitiveServicesAccountKeys
|
168
|
+
end
|
159
169
|
def check_sku_availability_result
|
160
170
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CheckSkuAvailabilityResult
|
161
171
|
end
|
162
|
-
def
|
163
|
-
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::
|
172
|
+
def cognitive_services_resource_and_sku
|
173
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CognitiveServicesResourceAndSku
|
164
174
|
end
|
165
175
|
def check_sku_availability_result_list
|
166
176
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CheckSkuAvailabilityResultList
|
167
177
|
end
|
168
|
-
def
|
169
|
-
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::
|
178
|
+
def metric_name
|
179
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::MetricName
|
170
180
|
end
|
171
181
|
def check_domain_availability_parameter
|
172
182
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CheckDomainAvailabilityParameter
|
173
183
|
end
|
174
|
-
def
|
175
|
-
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::
|
184
|
+
def ip_rule
|
185
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::IpRule
|
176
186
|
end
|
177
187
|
def check_domain_availability_result
|
178
188
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CheckDomainAvailabilityResult
|
179
189
|
end
|
180
|
-
def
|
181
|
-
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::
|
190
|
+
def encryption
|
191
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::Encryption
|
182
192
|
end
|
183
193
|
def resource_sku_restriction_info
|
184
194
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::ResourceSkuRestrictionInfo
|
185
195
|
end
|
186
|
-
def
|
187
|
-
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::
|
196
|
+
def identity
|
197
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::Identity
|
188
198
|
end
|
189
199
|
def resource_sku_restrictions
|
190
200
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::ResourceSkuRestrictions
|
191
201
|
end
|
192
|
-
def
|
193
|
-
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::
|
202
|
+
def regenerate_key_parameters
|
203
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::RegenerateKeyParameters
|
194
204
|
end
|
195
205
|
def resource_sku
|
196
206
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::ResourceSku
|
197
207
|
end
|
198
|
-
def
|
199
|
-
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::
|
208
|
+
def sku
|
209
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::Sku
|
210
|
+
end
|
211
|
+
def resource_skus_result
|
212
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::ResourceSkusResult
|
200
213
|
end
|
201
214
|
def cognitive_services_account_properties
|
202
215
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CognitiveServicesAccountProperties
|
203
216
|
end
|
204
|
-
def
|
205
|
-
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::
|
206
|
-
end
|
207
|
-
def cognitive_services_account_list_result
|
208
|
-
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CognitiveServicesAccountListResult
|
217
|
+
def private_endpoint_connection_list_result
|
218
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::PrivateEndpointConnectionListResult
|
209
219
|
end
|
210
220
|
def cognitive_services_account_enumerate_skus_result
|
211
221
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CognitiveServicesAccountEnumerateSkusResult
|
212
222
|
end
|
213
|
-
def resource_skus_result
|
214
|
-
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::ResourceSkusResult
|
215
|
-
end
|
216
|
-
def identity
|
217
|
-
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::Identity
|
218
|
-
end
|
219
223
|
def private_link_resource_properties
|
220
224
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::PrivateLinkResourceProperties
|
221
225
|
end
|
222
|
-
def
|
223
|
-
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::
|
226
|
+
def cognitive_services_account_list_result
|
227
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::CognitiveServicesAccountListResult
|
224
228
|
end
|
225
229
|
def resource
|
226
230
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::Resource
|
227
231
|
end
|
228
|
-
def
|
229
|
-
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::
|
232
|
+
def network_rule_set
|
233
|
+
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::NetworkRuleSet
|
230
234
|
end
|
231
235
|
def private_link_resource_list_result
|
232
236
|
Azure::CognitiveServices::Mgmt::V2017_04_18::Models::PrivateLinkResourceListResult
|