azure_sdk 0.53.0 → 0.58.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/version.rb +1 -1
- data/lib/latest/latest_profile_client.rb +11 -1
- data/lib/latest/modules/apimanagement_profile_module.rb +735 -641
- data/lib/latest/modules/cognitiveservices_profile_module.rb +131 -43
- data/lib/latest/modules/compute_profile_module.rb +891 -821
- data/lib/latest/modules/datashare_profile_module.rb +212 -196
- data/lib/latest/modules/eventgrid_profile_module.rb +130 -130
- data/lib/latest/modules/hdinsight_profile_module.rb +123 -113
- data/lib/latest/modules/kubernetesconfiguration_profile_module.rb +123 -0
- data/lib/latest/modules/kusto_profile_module.rb +169 -157
- data/lib/latest/modules/luisauthoring_profile_module.rb +141 -133
- data/lib/latest/modules/mixedreality_profile_module.rb +100 -56
- data/lib/latest/modules/netapp_profile_module.rb +92 -94
- data/lib/latest/modules/network_profile_module.rb +1634 -1522
- data/lib/latest/modules/operationalinsights_profile_module.rb +291 -145
- data/lib/latest/modules/recoveryservices_profile_module.rb +95 -53
- data/lib/latest/modules/recoveryservicesbackup_profile_module.rb +60 -18
- data/lib/latest/modules/signalr_profile_module.rb +143 -71
- data/lib/latest/modules/storage_profile_module.rb +170 -124
- data/lib/latest/modules/storagecache_profile_module.rb +131 -87
- metadata +286 -271
@@ -0,0 +1,123 @@
|
|
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_kubernetes_configuration'
|
6
|
+
|
7
|
+
module Azure::Profiles::Latest
|
8
|
+
module KubernetesConfiguration
|
9
|
+
module Mgmt
|
10
|
+
SourceControlConfigurations = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::SourceControlConfigurations
|
11
|
+
Operations = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Operations
|
12
|
+
|
13
|
+
module Models
|
14
|
+
HelmOperatorProperties = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::HelmOperatorProperties
|
15
|
+
Resource = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::Resource
|
16
|
+
ResourceProviderOperationList = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::ResourceProviderOperationList
|
17
|
+
Result = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::Result
|
18
|
+
ErrorResponse = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::ErrorResponse
|
19
|
+
SourceControlConfigurationList = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::SourceControlConfigurationList
|
20
|
+
ErrorDefinition = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::ErrorDefinition
|
21
|
+
ResourceProviderOperationDisplay = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::ResourceProviderOperationDisplay
|
22
|
+
ComplianceStatus = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::ComplianceStatus
|
23
|
+
ResourceProviderOperation = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::ResourceProviderOperation
|
24
|
+
ProxyResource = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::ProxyResource
|
25
|
+
SourceControlConfiguration = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::SourceControlConfiguration
|
26
|
+
ComplianceState = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::ComplianceState
|
27
|
+
MessageLevel = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::MessageLevel
|
28
|
+
OperatorType = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::OperatorType
|
29
|
+
OperatorScope = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::OperatorScope
|
30
|
+
EnableHelmOperator = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::EnableHelmOperator
|
31
|
+
ProvisioningState = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::ProvisioningState
|
32
|
+
end
|
33
|
+
|
34
|
+
class KubernetesConfigurationManagementClass
|
35
|
+
attr_reader :source_control_configurations, :operations, :configurable, :base_url, :options, :model_classes
|
36
|
+
|
37
|
+
def initialize(configurable, base_url=nil, options=nil)
|
38
|
+
@configurable, @base_url, @options = configurable, base_url, options
|
39
|
+
|
40
|
+
@client_0 = Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::SourceControlConfigurationClient.new(configurable.credentials, base_url, options)
|
41
|
+
if(@client_0.respond_to?(:subscription_id))
|
42
|
+
@client_0.subscription_id = configurable.subscription_id
|
43
|
+
end
|
44
|
+
add_telemetry(@client_0)
|
45
|
+
@source_control_configurations = @client_0.source_control_configurations
|
46
|
+
@operations = @client_0.operations
|
47
|
+
|
48
|
+
@model_classes = ModelClasses.new
|
49
|
+
end
|
50
|
+
|
51
|
+
def add_telemetry(client)
|
52
|
+
profile_information = "Profiles/azure_sdk/#{Azure::VERSION}/Latest/KubernetesConfiguration/Mgmt"
|
53
|
+
client.add_user_agent_information(profile_information)
|
54
|
+
end
|
55
|
+
|
56
|
+
def method_missing(method, *args)
|
57
|
+
if @client_0.respond_to?method
|
58
|
+
@client_0.send(method, *args)
|
59
|
+
else
|
60
|
+
super
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
class ModelClasses
|
65
|
+
def helm_operator_properties
|
66
|
+
Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::HelmOperatorProperties
|
67
|
+
end
|
68
|
+
def resource
|
69
|
+
Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::Resource
|
70
|
+
end
|
71
|
+
def resource_provider_operation_list
|
72
|
+
Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::ResourceProviderOperationList
|
73
|
+
end
|
74
|
+
def result
|
75
|
+
Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::Result
|
76
|
+
end
|
77
|
+
def error_response
|
78
|
+
Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::ErrorResponse
|
79
|
+
end
|
80
|
+
def source_control_configuration_list
|
81
|
+
Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::SourceControlConfigurationList
|
82
|
+
end
|
83
|
+
def error_definition
|
84
|
+
Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::ErrorDefinition
|
85
|
+
end
|
86
|
+
def resource_provider_operation_display
|
87
|
+
Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::ResourceProviderOperationDisplay
|
88
|
+
end
|
89
|
+
def compliance_status
|
90
|
+
Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::ComplianceStatus
|
91
|
+
end
|
92
|
+
def resource_provider_operation
|
93
|
+
Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::ResourceProviderOperation
|
94
|
+
end
|
95
|
+
def proxy_resource
|
96
|
+
Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::ProxyResource
|
97
|
+
end
|
98
|
+
def source_control_configuration
|
99
|
+
Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::SourceControlConfiguration
|
100
|
+
end
|
101
|
+
def compliance_state
|
102
|
+
Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::ComplianceState
|
103
|
+
end
|
104
|
+
def message_level
|
105
|
+
Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::MessageLevel
|
106
|
+
end
|
107
|
+
def operator_type
|
108
|
+
Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::OperatorType
|
109
|
+
end
|
110
|
+
def operator_scope
|
111
|
+
Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::OperatorScope
|
112
|
+
end
|
113
|
+
def enable_helm_operator
|
114
|
+
Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::EnableHelmOperator
|
115
|
+
end
|
116
|
+
def provisioning_state
|
117
|
+
Azure::KubernetesConfiguration::Mgmt::V2019_11_01_preview::Models::ProvisioningState
|
118
|
+
end
|
119
|
+
end
|
120
|
+
end
|
121
|
+
end
|
122
|
+
end
|
123
|
+
end
|
@@ -7,87 +7,90 @@ require 'azure_mgmt_kusto'
|
|
7
7
|
module Azure::Profiles::Latest
|
8
8
|
module Kusto
|
9
9
|
module Mgmt
|
10
|
-
Clusters = Azure::Kusto::Mgmt::
|
11
|
-
ClusterPrincipalAssignments = Azure::Kusto::Mgmt::
|
12
|
-
Databases = Azure::Kusto::Mgmt::
|
13
|
-
DatabasePrincipalAssignments = Azure::Kusto::Mgmt::
|
14
|
-
AttachedDatabaseConfigurations = Azure::Kusto::Mgmt::
|
15
|
-
DataConnections = Azure::Kusto::Mgmt::
|
16
|
-
Operations = Azure::Kusto::Mgmt::
|
10
|
+
Clusters = Azure::Kusto::Mgmt::V2020_02_15::Clusters
|
11
|
+
ClusterPrincipalAssignments = Azure::Kusto::Mgmt::V2020_02_15::ClusterPrincipalAssignments
|
12
|
+
Databases = Azure::Kusto::Mgmt::V2020_02_15::Databases
|
13
|
+
DatabasePrincipalAssignments = Azure::Kusto::Mgmt::V2020_02_15::DatabasePrincipalAssignments
|
14
|
+
AttachedDatabaseConfigurations = Azure::Kusto::Mgmt::V2020_02_15::AttachedDatabaseConfigurations
|
15
|
+
DataConnections = Azure::Kusto::Mgmt::V2020_02_15::DataConnections
|
16
|
+
Operations = Azure::Kusto::Mgmt::V2020_02_15::Operations
|
17
17
|
|
18
18
|
module Models
|
19
|
-
|
20
|
-
|
21
|
-
OptimizedAutoscale = Azure::Kusto::Mgmt::
|
22
|
-
|
23
|
-
KeyVaultProperties = Azure::Kusto::Mgmt::
|
24
|
-
|
25
|
-
|
26
|
-
VirtualNetworkConfiguration = Azure::Kusto::Mgmt::
|
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
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
19
|
+
ClusterPrincipalAssignmentListResult = Azure::Kusto::Mgmt::V2020_02_15::Models::ClusterPrincipalAssignmentListResult
|
20
|
+
DatabasePrincipalListResult = Azure::Kusto::Mgmt::V2020_02_15::Models::DatabasePrincipalListResult
|
21
|
+
OptimizedAutoscale = Azure::Kusto::Mgmt::V2020_02_15::Models::OptimizedAutoscale
|
22
|
+
FollowerDatabaseDefinition = Azure::Kusto::Mgmt::V2020_02_15::Models::FollowerDatabaseDefinition
|
23
|
+
KeyVaultProperties = Azure::Kusto::Mgmt::V2020_02_15::Models::KeyVaultProperties
|
24
|
+
FollowerDatabaseListResult = Azure::Kusto::Mgmt::V2020_02_15::Models::FollowerDatabaseListResult
|
25
|
+
LanguageExtensionsList = Azure::Kusto::Mgmt::V2020_02_15::Models::LanguageExtensionsList
|
26
|
+
VirtualNetworkConfiguration = Azure::Kusto::Mgmt::V2020_02_15::Models::VirtualNetworkConfiguration
|
27
|
+
AzureCapacity = Azure::Kusto::Mgmt::V2020_02_15::Models::AzureCapacity
|
28
|
+
LanguageExtension = Azure::Kusto::Mgmt::V2020_02_15::Models::LanguageExtension
|
29
|
+
SkuLocationInfoItem = Azure::Kusto::Mgmt::V2020_02_15::Models::SkuLocationInfoItem
|
30
|
+
AzureSku = Azure::Kusto::Mgmt::V2020_02_15::Models::AzureSku
|
31
|
+
SkuDescriptionList = Azure::Kusto::Mgmt::V2020_02_15::Models::SkuDescriptionList
|
32
|
+
AzureResourceSku = Azure::Kusto::Mgmt::V2020_02_15::Models::AzureResourceSku
|
33
|
+
SkuDescription = Azure::Kusto::Mgmt::V2020_02_15::Models::SkuDescription
|
34
|
+
Identity = Azure::Kusto::Mgmt::V2020_02_15::Models::Identity
|
35
|
+
DatabaseStatistics = Azure::Kusto::Mgmt::V2020_02_15::Models::DatabaseStatistics
|
36
|
+
IdentityUserAssignedIdentitiesValue = Azure::Kusto::Mgmt::V2020_02_15::Models::IdentityUserAssignedIdentitiesValue
|
37
|
+
AttachedDatabaseConfigurationListResult = Azure::Kusto::Mgmt::V2020_02_15::Models::AttachedDatabaseConfigurationListResult
|
38
|
+
ClusterCheckNameRequest = Azure::Kusto::Mgmt::V2020_02_15::Models::ClusterCheckNameRequest
|
39
|
+
ClusterPrincipalAssignmentCheckNameRequest = Azure::Kusto::Mgmt::V2020_02_15::Models::ClusterPrincipalAssignmentCheckNameRequest
|
40
|
+
DataConnectionCheckNameRequest = Azure::Kusto::Mgmt::V2020_02_15::Models::DataConnectionCheckNameRequest
|
41
|
+
DatabasePrincipal = Azure::Kusto::Mgmt::V2020_02_15::Models::DatabasePrincipal
|
42
|
+
DataConnectionValidationResult = Azure::Kusto::Mgmt::V2020_02_15::Models::DataConnectionValidationResult
|
43
|
+
DatabasePrincipalAssignmentCheckNameRequest = Azure::Kusto::Mgmt::V2020_02_15::Models::DatabasePrincipalAssignmentCheckNameRequest
|
44
|
+
DatabasePrincipalListRequest = Azure::Kusto::Mgmt::V2020_02_15::Models::DatabasePrincipalListRequest
|
45
|
+
DatabaseListResult = Azure::Kusto::Mgmt::V2020_02_15::Models::DatabaseListResult
|
46
|
+
DiagnoseVirtualNetworkResult = Azure::Kusto::Mgmt::V2020_02_15::Models::DiagnoseVirtualNetworkResult
|
47
|
+
TrustedExternalTenant = Azure::Kusto::Mgmt::V2020_02_15::Models::TrustedExternalTenant
|
48
|
+
DataConnectionValidation = Azure::Kusto::Mgmt::V2020_02_15::Models::DataConnectionValidation
|
49
|
+
ListResourceSkusResult = Azure::Kusto::Mgmt::V2020_02_15::Models::ListResourceSkusResult
|
50
|
+
Resource = Azure::Kusto::Mgmt::V2020_02_15::Models::Resource
|
51
|
+
CheckNameResult = Azure::Kusto::Mgmt::V2020_02_15::Models::CheckNameResult
|
52
|
+
OperationListResult = Azure::Kusto::Mgmt::V2020_02_15::Models::OperationListResult
|
53
|
+
DatabasePrincipalAssignmentListResult = Azure::Kusto::Mgmt::V2020_02_15::Models::DatabasePrincipalAssignmentListResult
|
54
|
+
Operation = Azure::Kusto::Mgmt::V2020_02_15::Models::Operation
|
55
|
+
CheckNameRequest = Azure::Kusto::Mgmt::V2020_02_15::Models::CheckNameRequest
|
56
|
+
DataConnectionValidationListResult = Azure::Kusto::Mgmt::V2020_02_15::Models::DataConnectionValidationListResult
|
57
|
+
OperationDisplay = Azure::Kusto::Mgmt::V2020_02_15::Models::OperationDisplay
|
58
|
+
DataConnectionListResult = Azure::Kusto::Mgmt::V2020_02_15::Models::DataConnectionListResult
|
59
|
+
ClusterListResult = Azure::Kusto::Mgmt::V2020_02_15::Models::ClusterListResult
|
60
|
+
Cluster = Azure::Kusto::Mgmt::V2020_02_15::Models::Cluster
|
61
|
+
ClusterUpdate = Azure::Kusto::Mgmt::V2020_02_15::Models::ClusterUpdate
|
62
|
+
ReadWriteDatabase = Azure::Kusto::Mgmt::V2020_02_15::Models::ReadWriteDatabase
|
63
|
+
ReadOnlyFollowingDatabase = Azure::Kusto::Mgmt::V2020_02_15::Models::ReadOnlyFollowingDatabase
|
64
|
+
ProxyResource = Azure::Kusto::Mgmt::V2020_02_15::Models::ProxyResource
|
65
|
+
AttachedDatabaseConfiguration = Azure::Kusto::Mgmt::V2020_02_15::Models::AttachedDatabaseConfiguration
|
66
|
+
Database = Azure::Kusto::Mgmt::V2020_02_15::Models::Database
|
67
|
+
DatabasePrincipalAssignment = Azure::Kusto::Mgmt::V2020_02_15::Models::DatabasePrincipalAssignment
|
68
|
+
ClusterPrincipalAssignment = Azure::Kusto::Mgmt::V2020_02_15::Models::ClusterPrincipalAssignment
|
69
|
+
DataConnection = Azure::Kusto::Mgmt::V2020_02_15::Models::DataConnection
|
70
|
+
EventHubDataConnection = Azure::Kusto::Mgmt::V2020_02_15::Models::EventHubDataConnection
|
71
|
+
IotHubDataConnection = Azure::Kusto::Mgmt::V2020_02_15::Models::IotHubDataConnection
|
72
|
+
EventGridDataConnection = Azure::Kusto::Mgmt::V2020_02_15::Models::EventGridDataConnection
|
73
|
+
TrackedResource = Azure::Kusto::Mgmt::V2020_02_15::Models::TrackedResource
|
74
|
+
AzureEntityResource = Azure::Kusto::Mgmt::V2020_02_15::Models::AzureEntityResource
|
75
|
+
State = Azure::Kusto::Mgmt::V2020_02_15::Models::State
|
76
|
+
ProvisioningState = Azure::Kusto::Mgmt::V2020_02_15::Models::ProvisioningState
|
77
|
+
LanguageExtensionName = Azure::Kusto::Mgmt::V2020_02_15::Models::LanguageExtensionName
|
78
|
+
AzureSkuName = Azure::Kusto::Mgmt::V2020_02_15::Models::AzureSkuName
|
79
|
+
AzureSkuTier = Azure::Kusto::Mgmt::V2020_02_15::Models::AzureSkuTier
|
80
|
+
AzureScaleType = Azure::Kusto::Mgmt::V2020_02_15::Models::AzureScaleType
|
81
|
+
DefaultPrincipalsModificationKind = Azure::Kusto::Mgmt::V2020_02_15::Models::DefaultPrincipalsModificationKind
|
82
|
+
PrincipalsModificationKind = Azure::Kusto::Mgmt::V2020_02_15::Models::PrincipalsModificationKind
|
83
|
+
EventHubDataFormat = Azure::Kusto::Mgmt::V2020_02_15::Models::EventHubDataFormat
|
84
|
+
Compression = Azure::Kusto::Mgmt::V2020_02_15::Models::Compression
|
85
|
+
IotHubDataFormat = Azure::Kusto::Mgmt::V2020_02_15::Models::IotHubDataFormat
|
86
|
+
EventGridDataFormat = Azure::Kusto::Mgmt::V2020_02_15::Models::EventGridDataFormat
|
87
|
+
IdentityType = Azure::Kusto::Mgmt::V2020_02_15::Models::IdentityType
|
88
|
+
DatabasePrincipalRole = Azure::Kusto::Mgmt::V2020_02_15::Models::DatabasePrincipalRole
|
89
|
+
DatabasePrincipalType = Azure::Kusto::Mgmt::V2020_02_15::Models::DatabasePrincipalType
|
90
|
+
PrincipalType = Azure::Kusto::Mgmt::V2020_02_15::Models::PrincipalType
|
91
|
+
ClusterPrincipalRole = Azure::Kusto::Mgmt::V2020_02_15::Models::ClusterPrincipalRole
|
92
|
+
Type = Azure::Kusto::Mgmt::V2020_02_15::Models::Type
|
93
|
+
Reason = Azure::Kusto::Mgmt::V2020_02_15::Models::Reason
|
91
94
|
end
|
92
95
|
|
93
96
|
class KustoManagementClass
|
@@ -96,7 +99,7 @@ module Azure::Profiles::Latest
|
|
96
99
|
def initialize(configurable, base_url=nil, options=nil)
|
97
100
|
@configurable, @base_url, @options = configurable, base_url, options
|
98
101
|
|
99
|
-
@client_0 = Azure::Kusto::Mgmt::
|
102
|
+
@client_0 = Azure::Kusto::Mgmt::V2020_02_15::KustoManagementClient.new(configurable.credentials, base_url, options)
|
100
103
|
if(@client_0.respond_to?(:subscription_id))
|
101
104
|
@client_0.subscription_id = configurable.subscription_id
|
102
105
|
end
|
@@ -126,221 +129,230 @@ module Azure::Profiles::Latest
|
|
126
129
|
end
|
127
130
|
|
128
131
|
class ModelClasses
|
132
|
+
def cluster_principal_assignment_list_result
|
133
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::ClusterPrincipalAssignmentListResult
|
134
|
+
end
|
129
135
|
def database_principal_list_result
|
130
|
-
Azure::Kusto::Mgmt::
|
136
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::DatabasePrincipalListResult
|
137
|
+
end
|
138
|
+
def optimized_autoscale
|
139
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::OptimizedAutoscale
|
131
140
|
end
|
132
141
|
def follower_database_definition
|
133
|
-
Azure::Kusto::Mgmt::
|
142
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::FollowerDatabaseDefinition
|
134
143
|
end
|
135
|
-
def
|
136
|
-
Azure::Kusto::Mgmt::
|
144
|
+
def key_vault_properties
|
145
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::KeyVaultProperties
|
137
146
|
end
|
138
147
|
def follower_database_list_result
|
139
|
-
Azure::Kusto::Mgmt::
|
148
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::FollowerDatabaseListResult
|
140
149
|
end
|
141
|
-
def
|
142
|
-
Azure::Kusto::Mgmt::
|
150
|
+
def language_extensions_list
|
151
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::LanguageExtensionsList
|
143
152
|
end
|
144
|
-
def
|
145
|
-
Azure::Kusto::Mgmt::
|
153
|
+
def virtual_network_configuration
|
154
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::VirtualNetworkConfiguration
|
146
155
|
end
|
147
156
|
def azure_capacity
|
148
|
-
Azure::Kusto::Mgmt::
|
157
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::AzureCapacity
|
149
158
|
end
|
150
|
-
def
|
151
|
-
Azure::Kusto::Mgmt::
|
159
|
+
def language_extension
|
160
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::LanguageExtension
|
152
161
|
end
|
153
162
|
def sku_location_info_item
|
154
|
-
Azure::Kusto::Mgmt::
|
163
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::SkuLocationInfoItem
|
155
164
|
end
|
156
165
|
def azure_sku
|
157
|
-
Azure::Kusto::Mgmt::
|
166
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::AzureSku
|
158
167
|
end
|
159
168
|
def sku_description_list
|
160
|
-
Azure::Kusto::Mgmt::
|
169
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::SkuDescriptionList
|
161
170
|
end
|
162
171
|
def azure_resource_sku
|
163
|
-
Azure::Kusto::Mgmt::
|
172
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::AzureResourceSku
|
164
173
|
end
|
165
174
|
def sku_description
|
166
|
-
Azure::Kusto::Mgmt::
|
175
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::SkuDescription
|
167
176
|
end
|
168
177
|
def identity
|
169
|
-
Azure::Kusto::Mgmt::
|
178
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::Identity
|
170
179
|
end
|
171
180
|
def database_statistics
|
172
|
-
Azure::Kusto::Mgmt::
|
181
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::DatabaseStatistics
|
173
182
|
end
|
174
183
|
def identity_user_assigned_identities_value
|
175
|
-
Azure::Kusto::Mgmt::
|
184
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::IdentityUserAssignedIdentitiesValue
|
176
185
|
end
|
177
186
|
def attached_database_configuration_list_result
|
178
|
-
Azure::Kusto::Mgmt::
|
187
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::AttachedDatabaseConfigurationListResult
|
179
188
|
end
|
180
189
|
def cluster_check_name_request
|
181
|
-
Azure::Kusto::Mgmt::
|
190
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::ClusterCheckNameRequest
|
182
191
|
end
|
183
192
|
def cluster_principal_assignment_check_name_request
|
184
|
-
Azure::Kusto::Mgmt::
|
193
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::ClusterPrincipalAssignmentCheckNameRequest
|
185
194
|
end
|
186
195
|
def data_connection_check_name_request
|
187
|
-
Azure::Kusto::Mgmt::
|
196
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::DataConnectionCheckNameRequest
|
188
197
|
end
|
189
198
|
def database_principal
|
190
|
-
Azure::Kusto::Mgmt::
|
199
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::DatabasePrincipal
|
191
200
|
end
|
192
201
|
def data_connection_validation_result
|
193
|
-
Azure::Kusto::Mgmt::
|
202
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::DataConnectionValidationResult
|
194
203
|
end
|
195
204
|
def database_principal_assignment_check_name_request
|
196
|
-
Azure::Kusto::Mgmt::
|
205
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::DatabasePrincipalAssignmentCheckNameRequest
|
197
206
|
end
|
198
207
|
def database_principal_list_request
|
199
|
-
Azure::Kusto::Mgmt::
|
208
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::DatabasePrincipalListRequest
|
200
209
|
end
|
201
210
|
def database_list_result
|
202
|
-
Azure::Kusto::Mgmt::
|
211
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::DatabaseListResult
|
203
212
|
end
|
204
213
|
def diagnose_virtual_network_result
|
205
|
-
Azure::Kusto::Mgmt::
|
214
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::DiagnoseVirtualNetworkResult
|
206
215
|
end
|
207
|
-
def
|
208
|
-
Azure::Kusto::Mgmt::
|
216
|
+
def trusted_external_tenant
|
217
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::TrustedExternalTenant
|
209
218
|
end
|
210
219
|
def data_connection_validation
|
211
|
-
Azure::Kusto::Mgmt::
|
220
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::DataConnectionValidation
|
212
221
|
end
|
213
222
|
def list_resource_skus_result
|
214
|
-
Azure::Kusto::Mgmt::
|
223
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::ListResourceSkusResult
|
215
224
|
end
|
216
225
|
def resource
|
217
|
-
Azure::Kusto::Mgmt::
|
226
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::Resource
|
218
227
|
end
|
219
228
|
def check_name_result
|
220
|
-
Azure::Kusto::Mgmt::
|
229
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::CheckNameResult
|
221
230
|
end
|
222
231
|
def operation_list_result
|
223
|
-
Azure::Kusto::Mgmt::
|
232
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::OperationListResult
|
224
233
|
end
|
225
234
|
def database_principal_assignment_list_result
|
226
|
-
Azure::Kusto::Mgmt::
|
235
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::DatabasePrincipalAssignmentListResult
|
227
236
|
end
|
228
237
|
def operation
|
229
|
-
Azure::Kusto::Mgmt::
|
238
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::Operation
|
230
239
|
end
|
231
240
|
def check_name_request
|
232
|
-
Azure::Kusto::Mgmt::
|
241
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::CheckNameRequest
|
233
242
|
end
|
234
243
|
def data_connection_validation_list_result
|
235
|
-
Azure::Kusto::Mgmt::
|
244
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::DataConnectionValidationListResult
|
236
245
|
end
|
237
246
|
def operation_display
|
238
|
-
Azure::Kusto::Mgmt::
|
247
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::OperationDisplay
|
239
248
|
end
|
240
249
|
def data_connection_list_result
|
241
|
-
Azure::Kusto::Mgmt::
|
250
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::DataConnectionListResult
|
242
251
|
end
|
243
252
|
def cluster_list_result
|
244
|
-
Azure::Kusto::Mgmt::
|
253
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::ClusterListResult
|
245
254
|
end
|
246
255
|
def cluster
|
247
|
-
Azure::Kusto::Mgmt::
|
256
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::Cluster
|
248
257
|
end
|
249
258
|
def cluster_update
|
250
|
-
Azure::Kusto::Mgmt::
|
259
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::ClusterUpdate
|
251
260
|
end
|
252
261
|
def read_write_database
|
253
|
-
Azure::Kusto::Mgmt::
|
262
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::ReadWriteDatabase
|
254
263
|
end
|
255
264
|
def read_only_following_database
|
256
|
-
Azure::Kusto::Mgmt::
|
265
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::ReadOnlyFollowingDatabase
|
257
266
|
end
|
258
267
|
def proxy_resource
|
259
|
-
Azure::Kusto::Mgmt::
|
268
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::ProxyResource
|
260
269
|
end
|
261
270
|
def attached_database_configuration
|
262
|
-
Azure::Kusto::Mgmt::
|
271
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::AttachedDatabaseConfiguration
|
263
272
|
end
|
264
273
|
def database
|
265
|
-
Azure::Kusto::Mgmt::
|
274
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::Database
|
266
275
|
end
|
267
276
|
def database_principal_assignment
|
268
|
-
Azure::Kusto::Mgmt::
|
277
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::DatabasePrincipalAssignment
|
269
278
|
end
|
270
279
|
def cluster_principal_assignment
|
271
|
-
Azure::Kusto::Mgmt::
|
280
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::ClusterPrincipalAssignment
|
272
281
|
end
|
273
282
|
def data_connection
|
274
|
-
Azure::Kusto::Mgmt::
|
283
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::DataConnection
|
275
284
|
end
|
276
285
|
def event_hub_data_connection
|
277
|
-
Azure::Kusto::Mgmt::
|
286
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::EventHubDataConnection
|
278
287
|
end
|
279
288
|
def iot_hub_data_connection
|
280
|
-
Azure::Kusto::Mgmt::
|
289
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::IotHubDataConnection
|
281
290
|
end
|
282
291
|
def event_grid_data_connection
|
283
|
-
Azure::Kusto::Mgmt::
|
292
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::EventGridDataConnection
|
284
293
|
end
|
285
294
|
def tracked_resource
|
286
|
-
Azure::Kusto::Mgmt::
|
295
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::TrackedResource
|
287
296
|
end
|
288
297
|
def azure_entity_resource
|
289
|
-
Azure::Kusto::Mgmt::
|
298
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::AzureEntityResource
|
290
299
|
end
|
291
300
|
def state
|
292
|
-
Azure::Kusto::Mgmt::
|
301
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::State
|
293
302
|
end
|
294
303
|
def provisioning_state
|
295
|
-
Azure::Kusto::Mgmt::
|
304
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::ProvisioningState
|
305
|
+
end
|
306
|
+
def language_extension_name
|
307
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::LanguageExtensionName
|
296
308
|
end
|
297
309
|
def azure_sku_name
|
298
|
-
Azure::Kusto::Mgmt::
|
310
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::AzureSkuName
|
299
311
|
end
|
300
312
|
def azure_sku_tier
|
301
|
-
Azure::Kusto::Mgmt::
|
313
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::AzureSkuTier
|
302
314
|
end
|
303
315
|
def azure_scale_type
|
304
|
-
Azure::Kusto::Mgmt::
|
316
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::AzureScaleType
|
305
317
|
end
|
306
318
|
def default_principals_modification_kind
|
307
|
-
Azure::Kusto::Mgmt::
|
319
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::DefaultPrincipalsModificationKind
|
308
320
|
end
|
309
321
|
def principals_modification_kind
|
310
|
-
Azure::Kusto::Mgmt::
|
322
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::PrincipalsModificationKind
|
311
323
|
end
|
312
324
|
def event_hub_data_format
|
313
|
-
Azure::Kusto::Mgmt::
|
325
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::EventHubDataFormat
|
314
326
|
end
|
315
327
|
def compression
|
316
|
-
Azure::Kusto::Mgmt::
|
328
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::Compression
|
317
329
|
end
|
318
330
|
def iot_hub_data_format
|
319
|
-
Azure::Kusto::Mgmt::
|
331
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::IotHubDataFormat
|
320
332
|
end
|
321
333
|
def event_grid_data_format
|
322
|
-
Azure::Kusto::Mgmt::
|
334
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::EventGridDataFormat
|
323
335
|
end
|
324
336
|
def identity_type
|
325
|
-
Azure::Kusto::Mgmt::
|
337
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::IdentityType
|
326
338
|
end
|
327
339
|
def database_principal_role
|
328
|
-
Azure::Kusto::Mgmt::
|
340
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::DatabasePrincipalRole
|
329
341
|
end
|
330
342
|
def database_principal_type
|
331
|
-
Azure::Kusto::Mgmt::
|
343
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::DatabasePrincipalType
|
332
344
|
end
|
333
345
|
def principal_type
|
334
|
-
Azure::Kusto::Mgmt::
|
346
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::PrincipalType
|
335
347
|
end
|
336
348
|
def cluster_principal_role
|
337
|
-
Azure::Kusto::Mgmt::
|
349
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::ClusterPrincipalRole
|
338
350
|
end
|
339
351
|
def type
|
340
|
-
Azure::Kusto::Mgmt::
|
352
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::Type
|
341
353
|
end
|
342
354
|
def reason
|
343
|
-
Azure::Kusto::Mgmt::
|
355
|
+
Azure::Kusto::Mgmt::V2020_02_15::Models::Reason
|
344
356
|
end
|
345
357
|
end
|
346
358
|
end
|