azure_sdk 0.44.0 → 0.45.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/version.rb +1 -1
- data/lib/latest/latest_profile_client.rb +31 -1
- data/lib/latest/modules/batch_profile_module.rb +417 -377
- data/lib/latest/modules/consumption_profile_module.rb +345 -255
- data/lib/latest/modules/eventhub_profile_module.rb +195 -171
- data/lib/latest/modules/importexport_profile_module.rb +135 -0
- data/lib/latest/modules/maintenance_profile_module.rb +121 -121
- data/lib/latest/modules/netapp_profile_module.rb +185 -185
- data/lib/latest/modules/portal_profile_module.rb +95 -0
- data/lib/latest/modules/resourcehealth_profile_module.rb +111 -0
- data/lib/latest/modules/sql_profile_module.rb +1765 -1765
- data/lib/latest/modules/sqlvirtualmachine_profile_module.rb +235 -223
- metadata +64 -19
@@ -0,0 +1,95 @@
|
|
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_portal'
|
6
|
+
|
7
|
+
module Azure::Profiles::Latest
|
8
|
+
module Portal
|
9
|
+
module Mgmt
|
10
|
+
Operations = Azure::Portal::Mgmt::V2019_01_01_preview::Operations
|
11
|
+
Dashboards = Azure::Portal::Mgmt::V2019_01_01_preview::Dashboards
|
12
|
+
|
13
|
+
module Models
|
14
|
+
PatchableDashboard = Azure::Portal::Mgmt::V2019_01_01_preview::Models::PatchableDashboard
|
15
|
+
ResourceProviderOperationDisplay = Azure::Portal::Mgmt::V2019_01_01_preview::Models::ResourceProviderOperationDisplay
|
16
|
+
DashboardParts = Azure::Portal::Mgmt::V2019_01_01_preview::Models::DashboardParts
|
17
|
+
ResourceProviderOperation = Azure::Portal::Mgmt::V2019_01_01_preview::Models::ResourceProviderOperation
|
18
|
+
Dashboard = Azure::Portal::Mgmt::V2019_01_01_preview::Models::Dashboard
|
19
|
+
ResourceProviderOperationList = Azure::Portal::Mgmt::V2019_01_01_preview::Models::ResourceProviderOperationList
|
20
|
+
DashboardPartsPosition = Azure::Portal::Mgmt::V2019_01_01_preview::Models::DashboardPartsPosition
|
21
|
+
ErrorDefinition = Azure::Portal::Mgmt::V2019_01_01_preview::Models::ErrorDefinition
|
22
|
+
DashboardListResult = Azure::Portal::Mgmt::V2019_01_01_preview::Models::DashboardListResult
|
23
|
+
ErrorResponse = Azure::Portal::Mgmt::V2019_01_01_preview::Models::ErrorResponse
|
24
|
+
DashboardLens = Azure::Portal::Mgmt::V2019_01_01_preview::Models::DashboardLens
|
25
|
+
end
|
26
|
+
|
27
|
+
class PortalManagementClass
|
28
|
+
attr_reader :operations, :dashboards, :configurable, :base_url, :options, :model_classes
|
29
|
+
|
30
|
+
def initialize(configurable, base_url=nil, options=nil)
|
31
|
+
@configurable, @base_url, @options = configurable, base_url, options
|
32
|
+
|
33
|
+
@client_0 = Azure::Portal::Mgmt::V2019_01_01_preview::PortalClient.new(configurable.credentials, base_url, options)
|
34
|
+
if(@client_0.respond_to?(:subscription_id))
|
35
|
+
@client_0.subscription_id = configurable.subscription_id
|
36
|
+
end
|
37
|
+
add_telemetry(@client_0)
|
38
|
+
@operations = @client_0.operations
|
39
|
+
@dashboards = @client_0.dashboards
|
40
|
+
|
41
|
+
@model_classes = ModelClasses.new
|
42
|
+
end
|
43
|
+
|
44
|
+
def add_telemetry(client)
|
45
|
+
profile_information = "Profiles/azure_sdk/#{Azure::VERSION}/Latest/Portal/Mgmt"
|
46
|
+
client.add_user_agent_information(profile_information)
|
47
|
+
end
|
48
|
+
|
49
|
+
def method_missing(method, *args)
|
50
|
+
if @client_0.respond_to?method
|
51
|
+
@client_0.send(method, *args)
|
52
|
+
else
|
53
|
+
super
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
class ModelClasses
|
58
|
+
def patchable_dashboard
|
59
|
+
Azure::Portal::Mgmt::V2019_01_01_preview::Models::PatchableDashboard
|
60
|
+
end
|
61
|
+
def resource_provider_operation_display
|
62
|
+
Azure::Portal::Mgmt::V2019_01_01_preview::Models::ResourceProviderOperationDisplay
|
63
|
+
end
|
64
|
+
def dashboard_parts
|
65
|
+
Azure::Portal::Mgmt::V2019_01_01_preview::Models::DashboardParts
|
66
|
+
end
|
67
|
+
def resource_provider_operation
|
68
|
+
Azure::Portal::Mgmt::V2019_01_01_preview::Models::ResourceProviderOperation
|
69
|
+
end
|
70
|
+
def dashboard
|
71
|
+
Azure::Portal::Mgmt::V2019_01_01_preview::Models::Dashboard
|
72
|
+
end
|
73
|
+
def resource_provider_operation_list
|
74
|
+
Azure::Portal::Mgmt::V2019_01_01_preview::Models::ResourceProviderOperationList
|
75
|
+
end
|
76
|
+
def dashboard_parts_position
|
77
|
+
Azure::Portal::Mgmt::V2019_01_01_preview::Models::DashboardPartsPosition
|
78
|
+
end
|
79
|
+
def error_definition
|
80
|
+
Azure::Portal::Mgmt::V2019_01_01_preview::Models::ErrorDefinition
|
81
|
+
end
|
82
|
+
def dashboard_list_result
|
83
|
+
Azure::Portal::Mgmt::V2019_01_01_preview::Models::DashboardListResult
|
84
|
+
end
|
85
|
+
def error_response
|
86
|
+
Azure::Portal::Mgmt::V2019_01_01_preview::Models::ErrorResponse
|
87
|
+
end
|
88
|
+
def dashboard_lens
|
89
|
+
Azure::Portal::Mgmt::V2019_01_01_preview::Models::DashboardLens
|
90
|
+
end
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
94
|
+
end
|
95
|
+
end
|
@@ -0,0 +1,111 @@
|
|
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_resource_health'
|
6
|
+
|
7
|
+
module Azure::Profiles::Latest
|
8
|
+
module ResourceHealth
|
9
|
+
module Mgmt
|
10
|
+
AvailabilityStatuses = Azure::ResourceHealth::Mgmt::V2017_07_01::AvailabilityStatuses
|
11
|
+
ChildAvailabilityStatuses = Azure::ResourceHealth::Mgmt::V2017_07_01::ChildAvailabilityStatuses
|
12
|
+
ChildResources = Azure::ResourceHealth::Mgmt::V2017_07_01::ChildResources
|
13
|
+
Operations = Azure::ResourceHealth::Mgmt::V2017_07_01::Operations
|
14
|
+
|
15
|
+
module Models
|
16
|
+
AvailabilityStatus = Azure::ResourceHealth::Mgmt::V2017_07_01::Models::AvailabilityStatus
|
17
|
+
AvailabilityStatusPropertiesRecentlyResolvedState = Azure::ResourceHealth::Mgmt::V2017_07_01::Models::AvailabilityStatusPropertiesRecentlyResolvedState
|
18
|
+
AvailabilityStatusListResult = Azure::ResourceHealth::Mgmt::V2017_07_01::Models::AvailabilityStatusListResult
|
19
|
+
ServiceImpactingEventStatus = Azure::ResourceHealth::Mgmt::V2017_07_01::Models::ServiceImpactingEventStatus
|
20
|
+
OperationDisplay = Azure::ResourceHealth::Mgmt::V2017_07_01::Models::OperationDisplay
|
21
|
+
ServiceImpactingEvent = Azure::ResourceHealth::Mgmt::V2017_07_01::Models::ServiceImpactingEvent
|
22
|
+
Operation = Azure::ResourceHealth::Mgmt::V2017_07_01::Models::Operation
|
23
|
+
RecommendedAction = Azure::ResourceHealth::Mgmt::V2017_07_01::Models::RecommendedAction
|
24
|
+
OperationListResult = Azure::ResourceHealth::Mgmt::V2017_07_01::Models::OperationListResult
|
25
|
+
AvailabilityStatusProperties = Azure::ResourceHealth::Mgmt::V2017_07_01::Models::AvailabilityStatusProperties
|
26
|
+
ErrorResponse = Azure::ResourceHealth::Mgmt::V2017_07_01::Models::ErrorResponse
|
27
|
+
ServiceImpactingEventIncidentProperties = Azure::ResourceHealth::Mgmt::V2017_07_01::Models::ServiceImpactingEventIncidentProperties
|
28
|
+
AvailabilityStateValues = Azure::ResourceHealth::Mgmt::V2017_07_01::Models::AvailabilityStateValues
|
29
|
+
ReasonChronicityTypes = Azure::ResourceHealth::Mgmt::V2017_07_01::Models::ReasonChronicityTypes
|
30
|
+
end
|
31
|
+
|
32
|
+
class ResourceHealthManagementClass
|
33
|
+
attr_reader :availability_statuses, :child_availability_statuses, :child_resources, :operations, :configurable, :base_url, :options, :model_classes
|
34
|
+
|
35
|
+
def initialize(configurable, base_url=nil, options=nil)
|
36
|
+
@configurable, @base_url, @options = configurable, base_url, options
|
37
|
+
|
38
|
+
@client_0 = Azure::ResourceHealth::Mgmt::V2017_07_01::ResourceHealthClient.new(configurable.credentials, base_url, options)
|
39
|
+
if(@client_0.respond_to?(:subscription_id))
|
40
|
+
@client_0.subscription_id = configurable.subscription_id
|
41
|
+
end
|
42
|
+
add_telemetry(@client_0)
|
43
|
+
@availability_statuses = @client_0.availability_statuses
|
44
|
+
@child_availability_statuses = @client_0.child_availability_statuses
|
45
|
+
@child_resources = @client_0.child_resources
|
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/ResourceHealth/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 availability_status
|
66
|
+
Azure::ResourceHealth::Mgmt::V2017_07_01::Models::AvailabilityStatus
|
67
|
+
end
|
68
|
+
def availability_status_properties_recently_resolved_state
|
69
|
+
Azure::ResourceHealth::Mgmt::V2017_07_01::Models::AvailabilityStatusPropertiesRecentlyResolvedState
|
70
|
+
end
|
71
|
+
def availability_status_list_result
|
72
|
+
Azure::ResourceHealth::Mgmt::V2017_07_01::Models::AvailabilityStatusListResult
|
73
|
+
end
|
74
|
+
def service_impacting_event_status
|
75
|
+
Azure::ResourceHealth::Mgmt::V2017_07_01::Models::ServiceImpactingEventStatus
|
76
|
+
end
|
77
|
+
def operation_display
|
78
|
+
Azure::ResourceHealth::Mgmt::V2017_07_01::Models::OperationDisplay
|
79
|
+
end
|
80
|
+
def service_impacting_event
|
81
|
+
Azure::ResourceHealth::Mgmt::V2017_07_01::Models::ServiceImpactingEvent
|
82
|
+
end
|
83
|
+
def operation
|
84
|
+
Azure::ResourceHealth::Mgmt::V2017_07_01::Models::Operation
|
85
|
+
end
|
86
|
+
def recommended_action
|
87
|
+
Azure::ResourceHealth::Mgmt::V2017_07_01::Models::RecommendedAction
|
88
|
+
end
|
89
|
+
def operation_list_result
|
90
|
+
Azure::ResourceHealth::Mgmt::V2017_07_01::Models::OperationListResult
|
91
|
+
end
|
92
|
+
def availability_status_properties
|
93
|
+
Azure::ResourceHealth::Mgmt::V2017_07_01::Models::AvailabilityStatusProperties
|
94
|
+
end
|
95
|
+
def error_response
|
96
|
+
Azure::ResourceHealth::Mgmt::V2017_07_01::Models::ErrorResponse
|
97
|
+
end
|
98
|
+
def service_impacting_event_incident_properties
|
99
|
+
Azure::ResourceHealth::Mgmt::V2017_07_01::Models::ServiceImpactingEventIncidentProperties
|
100
|
+
end
|
101
|
+
def availability_state_values
|
102
|
+
Azure::ResourceHealth::Mgmt::V2017_07_01::Models::AvailabilityStateValues
|
103
|
+
end
|
104
|
+
def reason_chronicity_types
|
105
|
+
Azure::ResourceHealth::Mgmt::V2017_07_01::Models::ReasonChronicityTypes
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|
109
|
+
end
|
110
|
+
end
|
111
|
+
end
|
@@ -1,1765 +1,1765 @@
|
|
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_sql'
|
6
|
-
|
7
|
-
module Azure::Profiles::Latest
|
8
|
-
module SQL
|
9
|
-
module Mgmt
|
10
|
-
BackupLongTermRetentionVaults = Azure::SQL::Mgmt::V2014_04_01::BackupLongTermRetentionVaults
|
11
|
-
RecoverableDatabases = Azure::SQL::Mgmt::V2014_04_01::RecoverableDatabases
|
12
|
-
RestorableDroppedDatabases = Azure::SQL::Mgmt::V2014_04_01::RestorableDroppedDatabases
|
13
|
-
ServerConnectionPolicies = Azure::SQL::Mgmt::V2014_04_01::ServerConnectionPolicies
|
14
|
-
DatabaseThreatDetectionPolicies = Azure::SQL::Mgmt::V2014_04_01::DatabaseThreatDetectionPolicies
|
15
|
-
DataMaskingPolicies = Azure::SQL::Mgmt::V2014_04_01::DataMaskingPolicies
|
16
|
-
DataMaskingRules = Azure::SQL::Mgmt::V2014_04_01::DataMaskingRules
|
17
|
-
TransparentDataEncryptionConfigurations = Azure::SQL::Mgmt::V2014_04_01::TransparentDataEncryptionConfigurations
|
18
|
-
Extensions = Azure::SQL::Mgmt::V2014_04_01::Extensions
|
19
|
-
DisasterRecoveryConfigurations = Azure::SQL::Mgmt::V2014_04_01::DisasterRecoveryConfigurations
|
20
|
-
GeoBackupPolicies = Azure::SQL::Mgmt::V2014_04_01::GeoBackupPolicies
|
21
|
-
Queries = Azure::SQL::Mgmt::V2014_04_01::Queries
|
22
|
-
QueryStatistics = Azure::SQL::Mgmt::V2014_04_01::QueryStatistics
|
23
|
-
QueryTexts = Azure::SQL::Mgmt::V2014_04_01::QueryTexts
|
24
|
-
RecommendedElasticPools = Azure::SQL::Mgmt::V2014_04_01::RecommendedElasticPools
|
25
|
-
ReplicationLinks = Azure::SQL::Mgmt::V2014_04_01::ReplicationLinks
|
26
|
-
ServerAzureADAdministrators = Azure::SQL::Mgmt::V2014_04_01::ServerAzureADAdministrators
|
27
|
-
ServerCommunicationLinks = Azure::SQL::Mgmt::V2014_04_01::ServerCommunicationLinks
|
28
|
-
ServiceObjectives = Azure::SQL::Mgmt::V2014_04_01::ServiceObjectives
|
29
|
-
ElasticPoolActivities = Azure::SQL::Mgmt::V2014_04_01::ElasticPoolActivities
|
30
|
-
ElasticPoolDatabaseActivities = Azure::SQL::Mgmt::V2014_04_01::ElasticPoolDatabaseActivities
|
31
|
-
ServiceTierAdvisors = Azure::SQL::Mgmt::V2014_04_01::ServiceTierAdvisors
|
32
|
-
TransparentDataEncryptions = Azure::SQL::Mgmt::V2014_04_01::TransparentDataEncryptions
|
33
|
-
TransparentDataEncryptionActivities = Azure::SQL::Mgmt::V2014_04_01::TransparentDataEncryptionActivities
|
34
|
-
ServerTableAuditingPolicies = Azure::SQL::Mgmt::V2014_04_01::ServerTableAuditingPolicies
|
35
|
-
DatabaseTableAuditingPolicies = Azure::SQL::Mgmt::V2014_04_01::DatabaseTableAuditingPolicies
|
36
|
-
DatabaseConnectionPolicies = Azure::SQL::Mgmt::V2014_04_01::DatabaseConnectionPolicies
|
37
|
-
ServerUsages = Azure::SQL::Mgmt::V2014_04_01::ServerUsages
|
38
|
-
DatabaseUsages = Azure::SQL::Mgmt::V2014_04_01::DatabaseUsages
|
39
|
-
DatabaseAdvisors = Azure::SQL::Mgmt::V2015_05_01_preview::DatabaseAdvisors
|
40
|
-
DatabaseRecommendedActions = Azure::SQL::Mgmt::V2015_05_01_preview::DatabaseRecommendedActions
|
41
|
-
ServerAdvisors = Azure::SQL::Mgmt::V2015_05_01_preview::ServerAdvisors
|
42
|
-
DatabaseAutomaticTuningOperations = Azure::SQL::Mgmt::V2015_05_01_preview::DatabaseAutomaticTuningOperations
|
43
|
-
EncryptionProtectors = Azure::SQL::Mgmt::V2015_05_01_preview::EncryptionProtectors
|
44
|
-
FailoverGroups = Azure::SQL::Mgmt::V2015_05_01_preview::FailoverGroups
|
45
|
-
FirewallRules = Azure::SQL::Mgmt::V2015_05_01_preview::FirewallRules
|
46
|
-
ManagedInstances = Azure::SQL::Mgmt::V2015_05_01_preview::ManagedInstances
|
47
|
-
Operations = Azure::SQL::Mgmt::V2015_05_01_preview::Operations
|
48
|
-
ServerKeys = Azure::SQL::Mgmt::V2015_05_01_preview::ServerKeys
|
49
|
-
Servers = Azure::SQL::Mgmt::V2015_05_01_preview::Servers
|
50
|
-
SyncAgents = Azure::SQL::Mgmt::V2015_05_01_preview::SyncAgents
|
51
|
-
SyncGroups = Azure::SQL::Mgmt::V2015_05_01_preview::SyncGroups
|
52
|
-
SyncMembers = Azure::SQL::Mgmt::V2015_05_01_preview::SyncMembers
|
53
|
-
SubscriptionUsages = Azure::SQL::Mgmt::V2015_05_01_preview::SubscriptionUsages
|
54
|
-
VirtualClusters = Azure::SQL::Mgmt::V2015_05_01_preview::VirtualClusters
|
55
|
-
VirtualNetworkRules = Azure::SQL::Mgmt::V2015_05_01_preview::VirtualNetworkRules
|
56
|
-
ExtendedDatabaseBlobAuditingPolicies = Azure::SQL::Mgmt::V2017_03_01_preview::ExtendedDatabaseBlobAuditingPolicies
|
57
|
-
ExtendedServerBlobAuditingPolicies = Azure::SQL::Mgmt::V2017_03_01_preview::ExtendedServerBlobAuditingPolicies
|
58
|
-
ServerBlobAuditingPolicies = Azure::SQL::Mgmt::V2017_03_01_preview::ServerBlobAuditingPolicies
|
59
|
-
DatabaseBlobAuditingPolicies = Azure::SQL::Mgmt::V2017_03_01_preview::DatabaseBlobAuditingPolicies
|
60
|
-
DatabaseVulnerabilityAssessmentRuleBaselines = Azure::SQL::Mgmt::V2017_03_01_preview::DatabaseVulnerabilityAssessmentRuleBaselines
|
61
|
-
DatabaseVulnerabilityAssessments = Azure::SQL::Mgmt::V2017_03_01_preview::DatabaseVulnerabilityAssessments
|
62
|
-
DataWarehouseUserActivitiesOperations = Azure::SQL::Mgmt::V2017_03_01_preview::DataWarehouseUserActivitiesOperations
|
63
|
-
JobAgents = Azure::SQL::Mgmt::V2017_03_01_preview::JobAgents
|
64
|
-
JobCredentials = Azure::SQL::Mgmt::V2017_03_01_preview::JobCredentials
|
65
|
-
JobExecutions = Azure::SQL::Mgmt::V2017_03_01_preview::JobExecutions
|
66
|
-
Jobs = Azure::SQL::Mgmt::V2017_03_01_preview::Jobs
|
67
|
-
JobStepExecutions = Azure::SQL::Mgmt::V2017_03_01_preview::JobStepExecutions
|
68
|
-
JobSteps = Azure::SQL::Mgmt::V2017_03_01_preview::JobSteps
|
69
|
-
JobTargetExecutions = Azure::SQL::Mgmt::V2017_03_01_preview::JobTargetExecutions
|
70
|
-
JobTargetGroups = Azure::SQL::Mgmt::V2017_03_01_preview::JobTargetGroups
|
71
|
-
JobVersions = Azure::SQL::Mgmt::V2017_03_01_preview::JobVersions
|
72
|
-
LongTermRetentionBackups = Azure::SQL::Mgmt::V2017_03_01_preview::LongTermRetentionBackups
|
73
|
-
BackupLongTermRetentionPolicies = Azure::SQL::Mgmt::V2017_03_01_preview::BackupLongTermRetentionPolicies
|
74
|
-
ManagedBackupShortTermRetentionPolicies = Azure::SQL::Mgmt::V2017_03_01_preview::ManagedBackupShortTermRetentionPolicies
|
75
|
-
ManagedDatabases = Azure::SQL::Mgmt::V2017_03_01_preview::ManagedDatabases
|
76
|
-
ManagedRestorableDroppedDatabaseBackupShortTermRetentionPolicies = Azure::SQL::Mgmt::V2017_03_01_preview::ManagedRestorableDroppedDatabaseBackupShortTermRetentionPolicies
|
77
|
-
RestorableDroppedManagedDatabases = Azure::SQL::Mgmt::V2017_03_01_preview::RestorableDroppedManagedDatabases
|
78
|
-
RestorePoints = Azure::SQL::Mgmt::V2017_03_01_preview::RestorePoints
|
79
|
-
ServerAutomaticTuningOperations = Azure::SQL::Mgmt::V2017_03_01_preview::ServerAutomaticTuningOperations
|
80
|
-
ServerDnsAliases = Azure::SQL::Mgmt::V2017_03_01_preview::ServerDnsAliases
|
81
|
-
ServerSecurityAlertPolicies = Azure::SQL::Mgmt::V2017_03_01_preview::ServerSecurityAlertPolicies
|
82
|
-
ManagedDatabaseSecurityAlertPolicies = Azure::SQL::Mgmt::V2017_03_01_preview::ManagedDatabaseSecurityAlertPolicies
|
83
|
-
ManagedServerSecurityAlertPolicies = Azure::SQL::Mgmt::V2017_03_01_preview::ManagedServerSecurityAlertPolicies
|
84
|
-
SensitivityLabels = Azure::SQL::Mgmt::V2017_03_01_preview::SensitivityLabels
|
85
|
-
ManagedInstanceAdministrators = Azure::SQL::Mgmt::V2017_03_01_preview::ManagedInstanceAdministrators
|
86
|
-
DatabaseOperations = Azure::SQL::Mgmt::V2017_10_01_preview::DatabaseOperations
|
87
|
-
ElasticPoolOperations = Azure::SQL::Mgmt::V2017_10_01_preview::ElasticPoolOperations
|
88
|
-
DatabaseVulnerabilityAssessmentScans = Azure::SQL::Mgmt::V2017_10_01_preview::DatabaseVulnerabilityAssessmentScans
|
89
|
-
ManagedDatabaseVulnerabilityAssessmentRuleBaselines = Azure::SQL::Mgmt::V2017_10_01_preview::ManagedDatabaseVulnerabilityAssessmentRuleBaselines
|
90
|
-
ManagedDatabaseVulnerabilityAssessmentScans = Azure::SQL::Mgmt::V2017_10_01_preview::ManagedDatabaseVulnerabilityAssessmentScans
|
91
|
-
ManagedDatabaseVulnerabilityAssessments = Azure::SQL::Mgmt::V2017_10_01_preview::ManagedDatabaseVulnerabilityAssessments
|
92
|
-
Capabilities = Azure::SQL::Mgmt::V2017_10_01_preview::Capabilities
|
93
|
-
Databases = Azure::SQL::Mgmt::V2017_10_01_preview::Databases
|
94
|
-
ElasticPools = Azure::SQL::Mgmt::V2017_10_01_preview::ElasticPools
|
95
|
-
InstanceFailoverGroups = Azure::SQL::Mgmt::V2017_10_01_preview::InstanceFailoverGroups
|
96
|
-
BackupShortTermRetentionPolicies = Azure::SQL::Mgmt::V2017_10_01_preview::BackupShortTermRetentionPolicies
|
97
|
-
TdeCertificates = Azure::SQL::Mgmt::V2017_10_01_preview::TdeCertificates
|
98
|
-
ManagedInstanceTdeCertificates = Azure::SQL::Mgmt::V2017_10_01_preview::ManagedInstanceTdeCertificates
|
99
|
-
ManagedInstanceKeys = Azure::SQL::Mgmt::V2017_10_01_preview::ManagedInstanceKeys
|
100
|
-
ManagedInstanceEncryptionProtectors = Azure::SQL::Mgmt::V2017_10_01_preview::ManagedInstanceEncryptionProtectors
|
101
|
-
RecoverableManagedDatabases = Azure::SQL::Mgmt::V2017_10_01_preview::RecoverableManagedDatabases
|
102
|
-
DatabaseColumns = Azure::SQL::Mgmt::V2018_06_01_preview::DatabaseColumns
|
103
|
-
DatabaseSchemas = Azure::SQL::Mgmt::V2018_06_01_preview::DatabaseSchemas
|
104
|
-
DatabaseTables = Azure::SQL::Mgmt::V2018_06_01_preview::DatabaseTables
|
105
|
-
DatabaseSecurityAlertPolicies = Azure::SQL::Mgmt::V2018_06_01_preview::DatabaseSecurityAlertPolicies
|
106
|
-
ManagedDatabaseColumns = Azure::SQL::Mgmt::V2018_06_01_preview::ManagedDatabaseColumns
|
107
|
-
ManagedDatabaseSchemas = Azure::SQL::Mgmt::V2018_06_01_preview::ManagedDatabaseSchemas
|
108
|
-
ManagedDatabaseTables = Azure::SQL::Mgmt::V2018_06_01_preview::ManagedDatabaseTables
|
109
|
-
ManagedInstanceVulnerabilityAssessments = Azure::SQL::Mgmt::V2018_06_01_preview::ManagedInstanceVulnerabilityAssessments
|
110
|
-
ServerVulnerabilityAssessments = Azure::SQL::Mgmt::V2018_06_01_preview::ServerVulnerabilityAssessments
|
111
|
-
InstancePools = Azure::SQL::Mgmt::V2018_06_01_preview::InstancePools
|
112
|
-
ManagedDatabaseSensitivityLabels = Azure::SQL::Mgmt::V2018_06_01_preview::ManagedDatabaseSensitivityLabels
|
113
|
-
|
114
|
-
module Models
|
115
|
-
MetricValue = Azure::SQL::Mgmt::V2014_04_01::Models::MetricValue
|
116
|
-
ServiceObjectiveListResult = Azure::SQL::Mgmt::V2014_04_01::Models::ServiceObjectiveListResult
|
117
|
-
DataMaskingRuleListResult = Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingRuleListResult
|
118
|
-
QueryText = Azure::SQL::Mgmt::V2014_04_01::Models::QueryText
|
119
|
-
DatabaseUsageListResult = Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseUsageListResult
|
120
|
-
TransparentDataEncryptionListResult = Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionListResult
|
121
|
-
DatabaseUsage = Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseUsage
|
122
|
-
ExtensionListResult = Azure::SQL::Mgmt::V2014_04_01::Models::ExtensionListResult
|
123
|
-
ServerUsageListResult = Azure::SQL::Mgmt::V2014_04_01::Models::ServerUsageListResult
|
124
|
-
ServerCommunicationLinkListResult = Azure::SQL::Mgmt::V2014_04_01::Models::ServerCommunicationLinkListResult
|
125
|
-
ServerUsage = Azure::SQL::Mgmt::V2014_04_01::Models::ServerUsage
|
126
|
-
DisasterRecoveryConfigurationListResult = Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfigurationListResult
|
127
|
-
ServerAdministratorListResult = Azure::SQL::Mgmt::V2014_04_01::Models::ServerAdministratorListResult
|
128
|
-
ElasticPoolPerDatabaseMaxDtuCapability = Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolPerDatabaseMaxDtuCapability
|
129
|
-
ReplicationLinkListResult = Azure::SQL::Mgmt::V2014_04_01::Models::ReplicationLinkListResult
|
130
|
-
CheckNameAvailabilityResponse = Azure::SQL::Mgmt::V2014_04_01::Models::CheckNameAvailabilityResponse
|
131
|
-
RecommendedElasticPoolListMetricsResult = Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedElasticPoolListMetricsResult
|
132
|
-
SloUsageMetric = Azure::SQL::Mgmt::V2014_04_01::Models::SloUsageMetric
|
133
|
-
GeoBackupPolicyListResult = Azure::SQL::Mgmt::V2014_04_01::Models::GeoBackupPolicyListResult
|
134
|
-
TableAuditingPolicyProperties = Azure::SQL::Mgmt::V2014_04_01::Models::TableAuditingPolicyProperties
|
135
|
-
ImportExtensionRequest = Azure::SQL::Mgmt::V2014_04_01::Models::ImportExtensionRequest
|
136
|
-
TransparentDataEncryptionActivityListResult = Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionActivityListResult
|
137
|
-
RecommendedElasticPoolListResult = Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedElasticPoolListResult
|
138
|
-
ElasticPoolDatabaseActivityListResult = Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolDatabaseActivityListResult
|
139
|
-
RecommendedElasticPoolMetric = Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedElasticPoolMetric
|
140
|
-
ElasticPoolActivityListResult = Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolActivityListResult
|
141
|
-
ExportRequest = Azure::SQL::Mgmt::V2014_04_01::Models::ExportRequest
|
142
|
-
QueryTextListResult = Azure::SQL::Mgmt::V2014_04_01::Models::QueryTextListResult
|
143
|
-
BackupLongTermRetentionVaultListResult = Azure::SQL::Mgmt::V2014_04_01::Models::BackupLongTermRetentionVaultListResult
|
144
|
-
MetricName = Azure::SQL::Mgmt::V2014_04_01::Models::MetricName
|
145
|
-
RestorableDroppedDatabaseListResult = Azure::SQL::Mgmt::V2014_04_01::Models::RestorableDroppedDatabaseListResult
|
146
|
-
Metric = Azure::SQL::Mgmt::V2014_04_01::Models::Metric
|
147
|
-
ElasticPoolPerDatabaseMinDtuCapability = Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolPerDatabaseMinDtuCapability
|
148
|
-
MetricListResult = Azure::SQL::Mgmt::V2014_04_01::Models::MetricListResult
|
149
|
-
MetricAvailability = Azure::SQL::Mgmt::V2014_04_01::Models::MetricAvailability
|
150
|
-
ServerTableAuditingPolicyListResult = Azure::SQL::Mgmt::V2014_04_01::Models::ServerTableAuditingPolicyListResult
|
151
|
-
MetricDefinition = Azure::SQL::Mgmt::V2014_04_01::Models::MetricDefinition
|
152
|
-
OperationImpact = Azure::SQL::Mgmt::V2014_04_01::Models::OperationImpact
|
153
|
-
MetricDefinitionListResult = Azure::SQL::Mgmt::V2014_04_01::Models::MetricDefinitionListResult
|
154
|
-
BackupLongTermRetentionPolicyListResult = Azure::SQL::Mgmt::V2014_04_01::Models::BackupLongTermRetentionPolicyListResult
|
155
|
-
CheckNameAvailabilityRequest = Azure::SQL::Mgmt::V2014_04_01::Models::CheckNameAvailabilityRequest
|
156
|
-
QueryMetric = Azure::SQL::Mgmt::V2014_04_01::Models::QueryMetric
|
157
|
-
ServiceTierAdvisorListResult = Azure::SQL::Mgmt::V2014_04_01::Models::ServiceTierAdvisorListResult
|
158
|
-
QueryInterval = Azure::SQL::Mgmt::V2014_04_01::Models::QueryInterval
|
159
|
-
RecoverableDatabaseListResult = Azure::SQL::Mgmt::V2014_04_01::Models::RecoverableDatabaseListResult
|
160
|
-
QueryStatistic = Azure::SQL::Mgmt::V2014_04_01::Models::QueryStatistic
|
161
|
-
DatabaseTableAuditingPolicyListResult = Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseTableAuditingPolicyListResult
|
162
|
-
TopQueries = Azure::SQL::Mgmt::V2014_04_01::Models::TopQueries
|
163
|
-
ElasticPoolDtuCapability = Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolDtuCapability
|
164
|
-
TopQueriesListResult = Azure::SQL::Mgmt::V2014_04_01::Models::TopQueriesListResult
|
165
|
-
AdvisorListResult = Azure::SQL::Mgmt::V2014_04_01::Models::AdvisorListResult
|
166
|
-
QueryStatisticListResult = Azure::SQL::Mgmt::V2014_04_01::Models::QueryStatisticListResult
|
167
|
-
BackupLongTermRetentionVault = Azure::SQL::Mgmt::V2014_04_01::Models::BackupLongTermRetentionVault
|
168
|
-
RecoverableDatabase = Azure::SQL::Mgmt::V2014_04_01::Models::RecoverableDatabase
|
169
|
-
RestorableDroppedDatabase = Azure::SQL::Mgmt::V2014_04_01::Models::RestorableDroppedDatabase
|
170
|
-
ServerConnectionPolicy = Azure::SQL::Mgmt::V2014_04_01::Models::ServerConnectionPolicy
|
171
|
-
ServiceTierAdvisor = Azure::SQL::Mgmt::V2014_04_01::Models::ServiceTierAdvisor
|
172
|
-
TransparentDataEncryption = Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryption
|
173
|
-
RecommendedIndex = Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedIndex
|
174
|
-
DataMaskingPolicy = Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingPolicy
|
175
|
-
DataMaskingRule = Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingRule
|
176
|
-
DisasterRecoveryConfiguration = Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfiguration
|
177
|
-
GeoBackupPolicy = Azure::SQL::Mgmt::V2014_04_01::Models::GeoBackupPolicy
|
178
|
-
ImportExportResponse = Azure::SQL::Mgmt::V2014_04_01::Models::ImportExportResponse
|
179
|
-
ImportRequest = Azure::SQL::Mgmt::V2014_04_01::Models::ImportRequest
|
180
|
-
RecommendedElasticPool = Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedElasticPool
|
181
|
-
ReplicationLink = Azure::SQL::Mgmt::V2014_04_01::Models::ReplicationLink
|
182
|
-
ServerAzureADAdministrator = Azure::SQL::Mgmt::V2014_04_01::Models::ServerAzureADAdministrator
|
183
|
-
ServerCommunicationLink = Azure::SQL::Mgmt::V2014_04_01::Models::ServerCommunicationLink
|
184
|
-
ServiceObjective = Azure::SQL::Mgmt::V2014_04_01::Models::ServiceObjective
|
185
|
-
ElasticPoolActivity = Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolActivity
|
186
|
-
ElasticPoolDatabaseActivity = Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolDatabaseActivity
|
187
|
-
TransparentDataEncryptionActivity = Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionActivity
|
188
|
-
DatabaseConnectionPolicy = Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseConnectionPolicy
|
189
|
-
DatabaseTableAuditingPolicy = Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseTableAuditingPolicy
|
190
|
-
ServerTableAuditingPolicy = Azure::SQL::Mgmt::V2014_04_01::Models::ServerTableAuditingPolicy
|
191
|
-
BackupLongTermRetentionPolicyState = Azure::SQL::Mgmt::V2014_04_01::Models::BackupLongTermRetentionPolicyState
|
192
|
-
MaxSizeUnits = Azure::SQL::Mgmt::V2014_04_01::Models::MaxSizeUnits
|
193
|
-
CheckNameAvailabilityReason = Azure::SQL::Mgmt::V2014_04_01::Models::CheckNameAvailabilityReason
|
194
|
-
ServerConnectionType = Azure::SQL::Mgmt::V2014_04_01::Models::ServerConnectionType
|
195
|
-
DatabaseEdition = Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseEdition
|
196
|
-
ServiceObjectiveName = Azure::SQL::Mgmt::V2014_04_01::Models::ServiceObjectiveName
|
197
|
-
TransparentDataEncryptionStatus = Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionStatus
|
198
|
-
RecommendedIndexAction = Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedIndexAction
|
199
|
-
RecommendedIndexState = Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedIndexState
|
200
|
-
RecommendedIndexType = Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedIndexType
|
201
|
-
ReadScale = Azure::SQL::Mgmt::V2014_04_01::Models::ReadScale
|
202
|
-
SecurityAlertPolicyEmailAccountAdmins = Azure::SQL::Mgmt::V2014_04_01::Models::SecurityAlertPolicyEmailAccountAdmins
|
203
|
-
SecurityAlertPolicyUseServerDefault = Azure::SQL::Mgmt::V2014_04_01::Models::SecurityAlertPolicyUseServerDefault
|
204
|
-
DataMaskingState = Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingState
|
205
|
-
DataMaskingRuleState = Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingRuleState
|
206
|
-
DataMaskingFunction = Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingFunction
|
207
|
-
DisasterRecoveryConfigurationStatus = Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfigurationStatus
|
208
|
-
DisasterRecoveryConfigurationAutoFailover = Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfigurationAutoFailover
|
209
|
-
DisasterRecoveryConfigurationFailoverPolicy = Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfigurationFailoverPolicy
|
210
|
-
DisasterRecoveryConfigurationRole = Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfigurationRole
|
211
|
-
ElasticPoolEdition = Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolEdition
|
212
|
-
GeoBackupPolicyState = Azure::SQL::Mgmt::V2014_04_01::Models::GeoBackupPolicyState
|
213
|
-
StorageKeyType = Azure::SQL::Mgmt::V2014_04_01::Models::StorageKeyType
|
214
|
-
AuthenticationType = Azure::SQL::Mgmt::V2014_04_01::Models::AuthenticationType
|
215
|
-
UnitType = Azure::SQL::Mgmt::V2014_04_01::Models::UnitType
|
216
|
-
PrimaryAggregationType = Azure::SQL::Mgmt::V2014_04_01::Models::PrimaryAggregationType
|
217
|
-
UnitDefinitionType = Azure::SQL::Mgmt::V2014_04_01::Models::UnitDefinitionType
|
218
|
-
QueryAggregationFunction = Azure::SQL::Mgmt::V2014_04_01::Models::QueryAggregationFunction
|
219
|
-
QueryExecutionType = Azure::SQL::Mgmt::V2014_04_01::Models::QueryExecutionType
|
220
|
-
QueryObservedMetricType = Azure::SQL::Mgmt::V2014_04_01::Models::QueryObservedMetricType
|
221
|
-
QueryMetricUnit = Azure::SQL::Mgmt::V2014_04_01::Models::QueryMetricUnit
|
222
|
-
ReplicationRole = Azure::SQL::Mgmt::V2014_04_01::Models::ReplicationRole
|
223
|
-
ReplicationState = Azure::SQL::Mgmt::V2014_04_01::Models::ReplicationState
|
224
|
-
ServerVersion = Azure::SQL::Mgmt::V2014_04_01::Models::ServerVersion
|
225
|
-
ServerState = Azure::SQL::Mgmt::V2014_04_01::Models::ServerState
|
226
|
-
TransparentDataEncryptionActivityStatus = Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionActivityStatus
|
227
|
-
OperationListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::OperationListResult
|
228
|
-
RecommendedActionStateInfo = Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionStateInfo
|
229
|
-
ManagedInstanceListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedInstanceListResult
|
230
|
-
ManagedInstanceUpdate = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedInstanceUpdate
|
231
|
-
RecommendedActionImpactRecord = Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionImpactRecord
|
232
|
-
OperationDisplay = Azure::SQL::Mgmt::V2015_05_01_preview::Models::OperationDisplay
|
233
|
-
ResourceIdentity = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ResourceIdentity
|
234
|
-
SyncGroupListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupListResult
|
235
|
-
SyncFullSchemaPropertiesListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncFullSchemaPropertiesListResult
|
236
|
-
SyncFullSchemaTable = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncFullSchemaTable
|
237
|
-
SubscriptionUsageListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SubscriptionUsageListResult
|
238
|
-
RecommendedActionErrorInfo = Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionErrorInfo
|
239
|
-
SyncGroupSchema = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupSchema
|
240
|
-
RecommendedActionMetricInfo = Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionMetricInfo
|
241
|
-
EncryptionProtectorListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::EncryptionProtectorListResult
|
242
|
-
SyncFullSchemaProperties = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncFullSchemaProperties
|
243
|
-
FailoverGroupReadOnlyEndpoint = Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroupReadOnlyEndpoint
|
244
|
-
Operation = Azure::SQL::Mgmt::V2015_05_01_preview::Models::Operation
|
245
|
-
SyncGroupSchemaTableColumn = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupSchemaTableColumn
|
246
|
-
RecommendedActionImplementationInfo = Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionImplementationInfo
|
247
|
-
FailoverGroupListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroupListResult
|
248
|
-
SyncGroupLogListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupLogListResult
|
249
|
-
ServerKeyListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ServerKeyListResult
|
250
|
-
FirewallRuleListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::FirewallRuleListResult
|
251
|
-
VirtualNetworkRuleListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualNetworkRuleListResult
|
252
|
-
SyncMemberListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncMemberListResult
|
253
|
-
ServerListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ServerListResult
|
254
|
-
AutomaticTuningOptions = Azure::SQL::Mgmt::V2015_05_01_preview::Models::AutomaticTuningOptions
|
255
|
-
ServerUpdate = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ServerUpdate
|
256
|
-
FailoverGroupReadWriteEndpoint = Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroupReadWriteEndpoint
|
257
|
-
VirtualClusterUpdate = Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualClusterUpdate
|
258
|
-
FailoverGroupUpdate = Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroupUpdate
|
259
|
-
SyncAgentListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentListResult
|
260
|
-
SyncGroupLogProperties = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupLogProperties
|
261
|
-
SyncAgentKeyProperties = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentKeyProperties
|
262
|
-
VirtualClusterListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualClusterListResult
|
263
|
-
PartnerInfo = Azure::SQL::Mgmt::V2015_05_01_preview::Models::PartnerInfo
|
264
|
-
SyncAgentLinkedDatabaseListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentLinkedDatabaseListResult
|
265
|
-
FirewallRuleList = Azure::SQL::Mgmt::V2015_05_01_preview::Models::FirewallRuleList
|
266
|
-
SyncDatabaseIdProperties = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncDatabaseIdProperties
|
267
|
-
ResourceWithWritableName = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ResourceWithWritableName
|
268
|
-
SyncDatabaseIdListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncDatabaseIdListResult
|
269
|
-
SyncGroupSchemaTable = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupSchemaTable
|
270
|
-
SyncFullSchemaTableColumn = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncFullSchemaTableColumn
|
271
|
-
RecommendedAction = Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedAction
|
272
|
-
Advisor = Azure::SQL::Mgmt::V2015_05_01_preview::Models::Advisor
|
273
|
-
DatabaseAutomaticTuning = Azure::SQL::Mgmt::V2015_05_01_preview::Models::DatabaseAutomaticTuning
|
274
|
-
EncryptionProtector = Azure::SQL::Mgmt::V2015_05_01_preview::Models::EncryptionProtector
|
275
|
-
FailoverGroup = Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroup
|
276
|
-
ProxyResourceWithWritableName = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ProxyResourceWithWritableName
|
277
|
-
FirewallRule = Azure::SQL::Mgmt::V2015_05_01_preview::Models::FirewallRule
|
278
|
-
ManagedInstance = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedInstance
|
279
|
-
ServerKey = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ServerKey
|
280
|
-
Server = Azure::SQL::Mgmt::V2015_05_01_preview::Models::Server
|
281
|
-
SyncAgent = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgent
|
282
|
-
SyncAgentLinkedDatabase = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentLinkedDatabase
|
283
|
-
SyncGroup = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroup
|
284
|
-
SyncMember = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncMember
|
285
|
-
SubscriptionUsage = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SubscriptionUsage
|
286
|
-
VirtualCluster = Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualCluster
|
287
|
-
VirtualNetworkRule = Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualNetworkRule
|
288
|
-
AdvisorStatus = Azure::SQL::Mgmt::V2015_05_01_preview::Models::AdvisorStatus
|
289
|
-
AutoExecuteStatus = Azure::SQL::Mgmt::V2015_05_01_preview::Models::AutoExecuteStatus
|
290
|
-
AutoExecuteStatusInheritedFrom = Azure::SQL::Mgmt::V2015_05_01_preview::Models::AutoExecuteStatusInheritedFrom
|
291
|
-
RecommendedActionCurrentState = Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionCurrentState
|
292
|
-
RecommendedActionInitiatedBy = Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionInitiatedBy
|
293
|
-
ImplementationMethod = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ImplementationMethod
|
294
|
-
IsRetryable = Azure::SQL::Mgmt::V2015_05_01_preview::Models::IsRetryable
|
295
|
-
AutomaticTuningMode = Azure::SQL::Mgmt::V2015_05_01_preview::Models::AutomaticTuningMode
|
296
|
-
AutomaticTuningDisabledReason = Azure::SQL::Mgmt::V2015_05_01_preview::Models::AutomaticTuningDisabledReason
|
297
|
-
FailoverGroupReplicationRole = Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroupReplicationRole
|
298
|
-
IdentityType = Azure::SQL::Mgmt::V2015_05_01_preview::Models::IdentityType
|
299
|
-
ManagedServerCreateMode = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedServerCreateMode
|
300
|
-
ManagedInstanceLicenseType = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedInstanceLicenseType
|
301
|
-
ManagedInstanceProxyOverride = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedInstanceProxyOverride
|
302
|
-
OperationOrigin = Azure::SQL::Mgmt::V2015_05_01_preview::Models::OperationOrigin
|
303
|
-
SyncAgentState = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentState
|
304
|
-
SyncMemberDbType = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncMemberDbType
|
305
|
-
SyncGroupLogType = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupLogType
|
306
|
-
SyncConflictResolutionPolicy = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncConflictResolutionPolicy
|
307
|
-
SyncGroupState = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupState
|
308
|
-
SyncDirection = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncDirection
|
309
|
-
SyncMemberState = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncMemberState
|
310
|
-
VirtualNetworkRuleState = Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualNetworkRuleState
|
311
|
-
JobExecutionTarget = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobExecutionTarget
|
312
|
-
LogicalServerSecurityAlertPolicyListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::LogicalServerSecurityAlertPolicyListResult
|
313
|
-
AutomaticTuningServerOptions = Azure::SQL::Mgmt::V2017_03_01_preview::Models::AutomaticTuningServerOptions
|
314
|
-
ManagedDatabaseSecurityAlertPolicyListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseSecurityAlertPolicyListResult
|
315
|
-
ServerBlobAuditingPolicyListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerBlobAuditingPolicyListResult
|
316
|
-
JobAgentListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobAgentListResult
|
317
|
-
DatabaseBlobAuditingPolicyListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::DatabaseBlobAuditingPolicyListResult
|
318
|
-
JobAgentUpdate = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobAgentUpdate
|
319
|
-
LongTermRetentionBackupListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::LongTermRetentionBackupListResult
|
320
|
-
ManagedDatabaseUpdate = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseUpdate
|
321
|
-
JobCredentialListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobCredentialListResult
|
322
|
-
ManagedServerSecurityAlertPolicyListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedServerSecurityAlertPolicyListResult
|
323
|
-
CreateDatabaseRestorePointDefinition = Azure::SQL::Mgmt::V2017_03_01_preview::Models::CreateDatabaseRestorePointDefinition
|
324
|
-
ImportExportDatabaseDefinition = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ImportExportDatabaseDefinition
|
325
|
-
JobExecutionListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobExecutionListResult
|
326
|
-
JobSchedule = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobSchedule
|
327
|
-
RestorePointListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::RestorePointListResult
|
328
|
-
JobListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobListResult
|
329
|
-
ServerDnsAliasListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerDnsAliasListResult
|
330
|
-
JobStepAction = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepAction
|
331
|
-
JobVersionListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobVersionListResult
|
332
|
-
JobStepOutput = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepOutput
|
333
|
-
JobStepExecutionOptions = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepExecutionOptions
|
334
|
-
CompleteDatabaseRestoreDefinition = Azure::SQL::Mgmt::V2017_03_01_preview::Models::CompleteDatabaseRestoreDefinition
|
335
|
-
RestorableDroppedManagedDatabaseListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::RestorableDroppedManagedDatabaseListResult
|
336
|
-
JobStepListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepListResult
|
337
|
-
ManagedDatabaseListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseListResult
|
338
|
-
JobTarget = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobTarget
|
339
|
-
ManagedBackupShortTermRetentionPolicyListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedBackupShortTermRetentionPolicyListResult
|
340
|
-
ManagedInstanceAdministratorListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedInstanceAdministratorListResult
|
341
|
-
ServerDnsAliasAcquisition = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerDnsAliasAcquisition
|
342
|
-
JobTargetGroupListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobTargetGroupListResult
|
343
|
-
ExtendedDatabaseBlobAuditingPolicy = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ExtendedDatabaseBlobAuditingPolicy
|
344
|
-
ExtendedServerBlobAuditingPolicy = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ExtendedServerBlobAuditingPolicy
|
345
|
-
ServerBlobAuditingPolicy = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerBlobAuditingPolicy
|
346
|
-
DatabaseBlobAuditingPolicy = Azure::SQL::Mgmt::V2017_03_01_preview::Models::DatabaseBlobAuditingPolicy
|
347
|
-
ImportExportOperationResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ImportExportOperationResult
|
348
|
-
DataWarehouseUserActivities = Azure::SQL::Mgmt::V2017_03_01_preview::Models::DataWarehouseUserActivities
|
349
|
-
JobAgent = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobAgent
|
350
|
-
JobCredential = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobCredential
|
351
|
-
JobExecution = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobExecution
|
352
|
-
Job = Azure::SQL::Mgmt::V2017_03_01_preview::Models::Job
|
353
|
-
JobStep = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStep
|
354
|
-
JobTargetGroup = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobTargetGroup
|
355
|
-
JobVersion = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobVersion
|
356
|
-
LongTermRetentionBackup = Azure::SQL::Mgmt::V2017_03_01_preview::Models::LongTermRetentionBackup
|
357
|
-
BackupLongTermRetentionPolicy = Azure::SQL::Mgmt::V2017_03_01_preview::Models::BackupLongTermRetentionPolicy
|
358
|
-
ManagedBackupShortTermRetentionPolicy = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedBackupShortTermRetentionPolicy
|
359
|
-
ManagedDatabase = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabase
|
360
|
-
RestorableDroppedManagedDatabase = Azure::SQL::Mgmt::V2017_03_01_preview::Models::RestorableDroppedManagedDatabase
|
361
|
-
RestorePoint = Azure::SQL::Mgmt::V2017_03_01_preview::Models::RestorePoint
|
362
|
-
ServerAutomaticTuning = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerAutomaticTuning
|
363
|
-
ServerDnsAlias = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerDnsAlias
|
364
|
-
ServerSecurityAlertPolicy = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerSecurityAlertPolicy
|
365
|
-
ManagedDatabaseSecurityAlertPolicy = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseSecurityAlertPolicy
|
366
|
-
ManagedServerSecurityAlertPolicy = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedServerSecurityAlertPolicy
|
367
|
-
ManagedInstanceAdministrator = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedInstanceAdministrator
|
368
|
-
BlobAuditingPolicyState = Azure::SQL::Mgmt::V2017_03_01_preview::Models::BlobAuditingPolicyState
|
369
|
-
JobAgentState = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobAgentState
|
370
|
-
JobExecutionLifecycle = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobExecutionLifecycle
|
371
|
-
ProvisioningState = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ProvisioningState
|
372
|
-
JobTargetType = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobTargetType
|
373
|
-
JobScheduleType = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobScheduleType
|
374
|
-
JobStepActionType = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepActionType
|
375
|
-
JobStepActionSource = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepActionSource
|
376
|
-
JobStepOutputType = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepOutputType
|
377
|
-
JobTargetGroupMembershipType = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobTargetGroupMembershipType
|
378
|
-
ManagedDatabaseStatus = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseStatus
|
379
|
-
ManagedDatabaseCreateMode = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseCreateMode
|
380
|
-
RestorePointType = Azure::SQL::Mgmt::V2017_03_01_preview::Models::RestorePointType
|
381
|
-
AutomaticTuningServerMode = Azure::SQL::Mgmt::V2017_03_01_preview::Models::AutomaticTuningServerMode
|
382
|
-
AutomaticTuningOptionModeDesired = Azure::SQL::Mgmt::V2017_03_01_preview::Models::AutomaticTuningOptionModeDesired
|
383
|
-
AutomaticTuningOptionModeActual = Azure::SQL::Mgmt::V2017_03_01_preview::Models::AutomaticTuningOptionModeActual
|
384
|
-
AutomaticTuningServerReason = Azure::SQL::Mgmt::V2017_03_01_preview::Models::AutomaticTuningServerReason
|
385
|
-
LongTermRetentionDatabaseState = Azure::SQL::Mgmt::V2017_03_01_preview::Models::LongTermRetentionDatabaseState
|
386
|
-
ServerVersionCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ServerVersionCapability
|
387
|
-
ManagedInstanceVcoresCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceVcoresCapability
|
388
|
-
DatabaseOperationListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseOperationListResult
|
389
|
-
ManagedInstanceFamilyCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceFamilyCapability
|
390
|
-
ManagedInstanceEditionCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceEditionCapability
|
391
|
-
ElasticPoolPerDatabaseMaxPerformanceLevelCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolPerDatabaseMaxPerformanceLevelCapability
|
392
|
-
ElasticPoolOperationListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolOperationListResult
|
393
|
-
ElasticPoolPerformanceLevelCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolPerformanceLevelCapability
|
394
|
-
ElasticPoolEditionCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolEditionCapability
|
395
|
-
RecoverableManagedDatabaseListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::RecoverableManagedDatabaseListResult
|
396
|
-
DatabaseVulnerabilityAssessmentRuleBaselineItem = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseVulnerabilityAssessmentRuleBaselineItem
|
397
|
-
ManagedInstanceEncryptionProtectorListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceEncryptionProtectorListResult
|
398
|
-
PartnerRegionInfo = Azure::SQL::Mgmt::V2017_10_01_preview::Models::PartnerRegionInfo
|
399
|
-
ManagedInstanceKeyListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceKeyListResult
|
400
|
-
InstanceFailoverGroupReadOnlyEndpoint = Azure::SQL::Mgmt::V2017_10_01_preview::Models::InstanceFailoverGroupReadOnlyEndpoint
|
401
|
-
MaxSizeCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::MaxSizeCapability
|
402
|
-
LogSizeCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::LogSizeCapability
|
403
|
-
InstanceFailoverGroupReadWriteEndpoint = Azure::SQL::Mgmt::V2017_10_01_preview::Models::InstanceFailoverGroupReadWriteEndpoint
|
404
|
-
PerformanceLevelCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::PerformanceLevelCapability
|
405
|
-
BackupShortTermRetentionPolicyListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::BackupShortTermRetentionPolicyListResult
|
406
|
-
LicenseTypeCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::LicenseTypeCapability
|
407
|
-
ManagedInstanceVersionCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceVersionCapability
|
408
|
-
EditionCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::EditionCapability
|
409
|
-
LocationCapabilities = Azure::SQL::Mgmt::V2017_10_01_preview::Models::LocationCapabilities
|
410
|
-
VulnerabilityAssessmentScanError = Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentScanError
|
411
|
-
InstanceFailoverGroupListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::InstanceFailoverGroupListResult
|
412
|
-
DatabaseListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseListResult
|
413
|
-
MaxSizeRangeCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::MaxSizeRangeCapability
|
414
|
-
DatabaseUpdate = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseUpdate
|
415
|
-
ServiceObjectiveCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ServiceObjectiveCapability
|
416
|
-
ResourceMoveDefinition = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ResourceMoveDefinition
|
417
|
-
VulnerabilityAssessmentScanRecordListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentScanRecordListResult
|
418
|
-
ElasticPoolPerDatabaseSettings = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolPerDatabaseSettings
|
419
|
-
ManagedInstancePairInfo = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstancePairInfo
|
420
|
-
DatabaseVulnerabilityAssessmentListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseVulnerabilityAssessmentListResult
|
421
|
-
ElasticPoolListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolListResult
|
422
|
-
ElasticPoolPerDatabaseMinPerformanceLevelCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolPerDatabaseMinPerformanceLevelCapability
|
423
|
-
ElasticPoolUpdate = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolUpdate
|
424
|
-
DatabaseOperation = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseOperation
|
425
|
-
ElasticPoolOperation = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolOperation
|
426
|
-
VulnerabilityAssessmentScanRecord = Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentScanRecord
|
427
|
-
DatabaseVulnerabilityAssessmentScansExport = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseVulnerabilityAssessmentScansExport
|
428
|
-
DatabaseVulnerabilityAssessmentRuleBaseline = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseVulnerabilityAssessmentRuleBaseline
|
429
|
-
DatabaseVulnerabilityAssessment = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseVulnerabilityAssessment
|
430
|
-
Database = Azure::SQL::Mgmt::V2017_10_01_preview::Models::Database
|
431
|
-
ElasticPool = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPool
|
432
|
-
InstanceFailoverGroup = Azure::SQL::Mgmt::V2017_10_01_preview::Models::InstanceFailoverGroup
|
433
|
-
BackupShortTermRetentionPolicy = Azure::SQL::Mgmt::V2017_10_01_preview::Models::BackupShortTermRetentionPolicy
|
434
|
-
TdeCertificate = Azure::SQL::Mgmt::V2017_10_01_preview::Models::TdeCertificate
|
435
|
-
ManagedInstanceKey = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceKey
|
436
|
-
ManagedInstanceEncryptionProtector = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceEncryptionProtector
|
437
|
-
RecoverableManagedDatabase = Azure::SQL::Mgmt::V2017_10_01_preview::Models::RecoverableManagedDatabase
|
438
|
-
ManagementOperationState = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagementOperationState
|
439
|
-
VulnerabilityAssessmentScanTriggerType = Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentScanTriggerType
|
440
|
-
VulnerabilityAssessmentScanState = Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentScanState
|
441
|
-
MaxSizeUnit = Azure::SQL::Mgmt::V2017_10_01_preview::Models::MaxSizeUnit
|
442
|
-
LogSizeUnit = Azure::SQL::Mgmt::V2017_10_01_preview::Models::LogSizeUnit
|
443
|
-
CapabilityStatus = Azure::SQL::Mgmt::V2017_10_01_preview::Models::CapabilityStatus
|
444
|
-
PerformanceLevelUnit = Azure::SQL::Mgmt::V2017_10_01_preview::Models::PerformanceLevelUnit
|
445
|
-
CreateMode = Azure::SQL::Mgmt::V2017_10_01_preview::Models::CreateMode
|
446
|
-
SampleName = Azure::SQL::Mgmt::V2017_10_01_preview::Models::SampleName
|
447
|
-
DatabaseStatus = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseStatus
|
448
|
-
CatalogCollationType = Azure::SQL::Mgmt::V2017_10_01_preview::Models::CatalogCollationType
|
449
|
-
DatabaseLicenseType = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseLicenseType
|
450
|
-
DatabaseReadScale = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseReadScale
|
451
|
-
ElasticPoolState = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolState
|
452
|
-
ElasticPoolLicenseType = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolLicenseType
|
453
|
-
ReadWriteEndpointFailoverPolicy = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ReadWriteEndpointFailoverPolicy
|
454
|
-
ReadOnlyEndpointFailoverPolicy = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ReadOnlyEndpointFailoverPolicy
|
455
|
-
InstanceFailoverGroupReplicationRole = Azure::SQL::Mgmt::V2017_10_01_preview::Models::InstanceFailoverGroupReplicationRole
|
456
|
-
ServerKeyType = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ServerKeyType
|
457
|
-
VulnerabilityAssessmentPolicyBaselineName = Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentPolicyBaselineName
|
458
|
-
CapabilityGroup = Azure::SQL::Mgmt::V2017_10_01_preview::Models::CapabilityGroup
|
459
|
-
VulnerabilityAssessmentRecurringScansProperties = Azure::SQL::Mgmt::V2018_06_01_preview::Models::VulnerabilityAssessmentRecurringScansProperties
|
460
|
-
Resource = Azure::SQL::Mgmt::V2018_06_01_preview::Models::Resource
|
461
|
-
DatabaseSecurityAlertListResult = Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseSecurityAlertListResult
|
462
|
-
InstancePoolUpdate = Azure::SQL::Mgmt::V2018_06_01_preview::Models::InstancePoolUpdate
|
463
|
-
DatabaseColumnListResult = Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseColumnListResult
|
464
|
-
Sku = Azure::SQL::Mgmt::V2018_06_01_preview::Models::Sku
|
465
|
-
ServerVulnerabilityAssessmentListResult = Azure::SQL::Mgmt::V2018_06_01_preview::Models::ServerVulnerabilityAssessmentListResult
|
466
|
-
InstancePoolListResult = Azure::SQL::Mgmt::V2018_06_01_preview::Models::InstancePoolListResult
|
467
|
-
SensitivityLabelListResult = Azure::SQL::Mgmt::V2018_06_01_preview::Models::SensitivityLabelListResult
|
468
|
-
DatabaseSchemaListResult = Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseSchemaListResult
|
469
|
-
ManagedInstanceVulnerabilityAssessmentListResult = Azure::SQL::Mgmt::V2018_06_01_preview::Models::ManagedInstanceVulnerabilityAssessmentListResult
|
470
|
-
DatabaseTableListResult = Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseTableListResult
|
471
|
-
ProxyResource = Azure::SQL::Mgmt::V2018_06_01_preview::Models::ProxyResource
|
472
|
-
DatabaseColumn = Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseColumn
|
473
|
-
DatabaseSchema = Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseSchema
|
474
|
-
DatabaseTable = Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseTable
|
475
|
-
DatabaseSecurityAlertPolicy = Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseSecurityAlertPolicy
|
476
|
-
TrackedResource = Azure::SQL::Mgmt::V2018_06_01_preview::Models::TrackedResource
|
477
|
-
ManagedInstanceVulnerabilityAssessment = Azure::SQL::Mgmt::V2018_06_01_preview::Models::ManagedInstanceVulnerabilityAssessment
|
478
|
-
ServerVulnerabilityAssessment = Azure::SQL::Mgmt::V2018_06_01_preview::Models::ServerVulnerabilityAssessment
|
479
|
-
InstancePool = Azure::SQL::Mgmt::V2018_06_01_preview::Models::InstancePool
|
480
|
-
SensitivityLabel = Azure::SQL::Mgmt::V2018_06_01_preview::Models::SensitivityLabel
|
481
|
-
ColumnDataType = Azure::SQL::Mgmt::V2018_06_01_preview::Models::ColumnDataType
|
482
|
-
SecurityAlertPolicyState = Azure::SQL::Mgmt::V2018_06_01_preview::Models::SecurityAlertPolicyState
|
483
|
-
InstancePoolLicenseType = Azure::SQL::Mgmt::V2018_06_01_preview::Models::InstancePoolLicenseType
|
484
|
-
SensitivityLabelSource = Azure::SQL::Mgmt::V2018_06_01_preview::Models::SensitivityLabelSource
|
485
|
-
end
|
486
|
-
|
487
|
-
class SQLManagementClass
|
488
|
-
attr_reader :backup_long_term_retention_vaults, :recoverable_databases, :restorable_dropped_databases, :server_connection_policies, :database_threat_detection_policies, :data_masking_policies, :data_masking_rules, :transparent_data_encryption_configurations, :extensions, :disaster_recovery_configurations, :geo_backup_policies, :queries, :query_statistics, :query_texts, :recommended_elastic_pools, :replication_links, :server_azure_adadministrators, :server_communication_links, :service_objectives, :elastic_pool_activities, :elastic_pool_database_activities, :service_tier_advisors, :transparent_data_encryptions, :transparent_data_encryption_activities, :server_table_auditing_policies, :database_table_auditing_policies, :database_connection_policies, :server_usages, :database_usages, :database_advisors, :database_recommended_actions, :server_advisors, :database_automatic_tuning_operations, :encryption_protectors, :failover_groups, :firewall_rules, :managed_instances, :operations, :server_keys, :servers, :sync_agents, :sync_groups, :sync_members, :subscription_usages, :virtual_clusters, :virtual_network_rules, :extended_database_blob_auditing_policies, :extended_server_blob_auditing_policies, :server_blob_auditing_policies, :database_blob_auditing_policies, :database_vulnerability_assessment_rule_baselines, :database_vulnerability_assessments, :data_warehouse_user_activities_operations, :job_agents, :job_credentials, :job_executions, :jobs, :job_step_executions, :job_steps, :job_target_executions, :job_target_groups, :job_versions, :long_term_retention_backups, :backup_long_term_retention_policies, :managed_backup_short_term_retention_policies, :managed_databases, :managed_restorable_dropped_database_backup_short_term_retention_policies, :restorable_dropped_managed_databases, :restore_points, :server_automatic_tuning_operations, :server_dns_aliases, :server_security_alert_policies, :managed_database_security_alert_policies, :managed_server_security_alert_policies, :sensitivity_labels, :managed_instance_administrators, :database_operations, :elastic_pool_operations, :database_vulnerability_assessment_scans, :managed_database_vulnerability_assessment_rule_baselines, :managed_database_vulnerability_assessment_scans, :managed_database_vulnerability_assessments, :capabilities, :databases, :elastic_pools, :instance_failover_groups, :backup_short_term_retention_policies, :tde_certificates, :managed_instance_tde_certificates, :managed_instance_keys, :managed_instance_encryption_protectors, :recoverable_managed_databases, :database_columns, :database_schemas, :database_tables, :database_security_alert_policies, :managed_database_columns, :managed_database_schemas, :managed_database_tables, :managed_instance_vulnerability_assessments, :server_vulnerability_assessments, :instance_pools, :managed_database_sensitivity_labels, :configurable, :base_url, :options, :model_classes
|
489
|
-
|
490
|
-
def initialize(configurable, base_url=nil, options=nil)
|
491
|
-
@configurable, @base_url, @options = configurable, base_url, options
|
492
|
-
|
493
|
-
@client_0 = Azure::SQL::Mgmt::V2014_04_01::SqlManagementClient.new(configurable.credentials, base_url, options)
|
494
|
-
if(@client_0.respond_to?(:subscription_id))
|
495
|
-
@client_0.subscription_id = configurable.subscription_id
|
496
|
-
end
|
497
|
-
add_telemetry(@client_0)
|
498
|
-
@backup_long_term_retention_vaults = @client_0.backup_long_term_retention_vaults
|
499
|
-
@recoverable_databases = @client_0.recoverable_databases
|
500
|
-
@restorable_dropped_databases = @client_0.restorable_dropped_databases
|
501
|
-
@server_connection_policies = @client_0.server_connection_policies
|
502
|
-
@database_threat_detection_policies = @client_0.database_threat_detection_policies
|
503
|
-
@data_masking_policies = @client_0.data_masking_policies
|
504
|
-
@data_masking_rules = @client_0.data_masking_rules
|
505
|
-
@transparent_data_encryption_configurations = @client_0.transparent_data_encryption_configurations
|
506
|
-
@extensions = @client_0.extensions
|
507
|
-
@disaster_recovery_configurations = @client_0.disaster_recovery_configurations
|
508
|
-
@geo_backup_policies = @client_0.geo_backup_policies
|
509
|
-
@queries = @client_0.queries
|
510
|
-
@query_statistics = @client_0.query_statistics
|
511
|
-
@query_texts = @client_0.query_texts
|
512
|
-
@recommended_elastic_pools = @client_0.recommended_elastic_pools
|
513
|
-
@replication_links = @client_0.replication_links
|
514
|
-
@server_azure_adadministrators = @client_0.server_azure_adadministrators
|
515
|
-
@server_communication_links = @client_0.server_communication_links
|
516
|
-
@service_objectives = @client_0.service_objectives
|
517
|
-
@elastic_pool_activities = @client_0.elastic_pool_activities
|
518
|
-
@elastic_pool_database_activities = @client_0.elastic_pool_database_activities
|
519
|
-
@service_tier_advisors = @client_0.service_tier_advisors
|
520
|
-
@transparent_data_encryptions = @client_0.transparent_data_encryptions
|
521
|
-
@transparent_data_encryption_activities = @client_0.transparent_data_encryption_activities
|
522
|
-
@server_table_auditing_policies = @client_0.server_table_auditing_policies
|
523
|
-
@database_table_auditing_policies = @client_0.database_table_auditing_policies
|
524
|
-
@database_connection_policies = @client_0.database_connection_policies
|
525
|
-
@server_usages = @client_0.server_usages
|
526
|
-
@database_usages = @client_0.database_usages
|
527
|
-
|
528
|
-
@client_1 = Azure::SQL::Mgmt::V2015_05_01_preview::SqlManagementClient.new(configurable.credentials, base_url, options)
|
529
|
-
if(@client_1.respond_to?(:subscription_id))
|
530
|
-
@client_1.subscription_id = configurable.subscription_id
|
531
|
-
end
|
532
|
-
add_telemetry(@client_1)
|
533
|
-
@database_advisors = @client_1.database_advisors
|
534
|
-
@database_recommended_actions = @client_1.database_recommended_actions
|
535
|
-
@server_advisors = @client_1.server_advisors
|
536
|
-
@database_automatic_tuning_operations = @client_1.database_automatic_tuning_operations
|
537
|
-
@encryption_protectors = @client_1.encryption_protectors
|
538
|
-
@failover_groups = @client_1.failover_groups
|
539
|
-
@firewall_rules = @client_1.firewall_rules
|
540
|
-
@managed_instances = @client_1.managed_instances
|
541
|
-
@operations = @client_1.operations
|
542
|
-
@server_keys = @client_1.server_keys
|
543
|
-
@servers = @client_1.servers
|
544
|
-
@sync_agents = @client_1.sync_agents
|
545
|
-
@sync_groups = @client_1.sync_groups
|
546
|
-
@sync_members = @client_1.sync_members
|
547
|
-
@subscription_usages = @client_1.subscription_usages
|
548
|
-
@virtual_clusters = @client_1.virtual_clusters
|
549
|
-
@virtual_network_rules = @client_1.virtual_network_rules
|
550
|
-
|
551
|
-
@client_2 = Azure::SQL::Mgmt::V2017_03_01_preview::SqlManagementClient.new(configurable.credentials, base_url, options)
|
552
|
-
if(@client_2.respond_to?(:subscription_id))
|
553
|
-
@client_2.subscription_id = configurable.subscription_id
|
554
|
-
end
|
555
|
-
add_telemetry(@client_2)
|
556
|
-
@extended_database_blob_auditing_policies = @client_2.extended_database_blob_auditing_policies
|
557
|
-
@extended_server_blob_auditing_policies = @client_2.extended_server_blob_auditing_policies
|
558
|
-
@server_blob_auditing_policies = @client_2.server_blob_auditing_policies
|
559
|
-
@database_blob_auditing_policies = @client_2.database_blob_auditing_policies
|
560
|
-
@database_vulnerability_assessment_rule_baselines = @client_2.database_vulnerability_assessment_rule_baselines
|
561
|
-
@database_vulnerability_assessments = @client_2.database_vulnerability_assessments
|
562
|
-
@data_warehouse_user_activities_operations = @client_2.data_warehouse_user_activities_operations
|
563
|
-
@job_agents = @client_2.job_agents
|
564
|
-
@job_credentials = @client_2.job_credentials
|
565
|
-
@job_executions = @client_2.job_executions
|
566
|
-
@jobs = @client_2.jobs
|
567
|
-
@job_step_executions = @client_2.job_step_executions
|
568
|
-
@job_steps = @client_2.job_steps
|
569
|
-
@job_target_executions = @client_2.job_target_executions
|
570
|
-
@job_target_groups = @client_2.job_target_groups
|
571
|
-
@job_versions = @client_2.job_versions
|
572
|
-
@long_term_retention_backups = @client_2.long_term_retention_backups
|
573
|
-
@backup_long_term_retention_policies = @client_2.backup_long_term_retention_policies
|
574
|
-
@managed_backup_short_term_retention_policies = @client_2.managed_backup_short_term_retention_policies
|
575
|
-
@managed_databases = @client_2.managed_databases
|
576
|
-
@managed_restorable_dropped_database_backup_short_term_retention_policies = @client_2.managed_restorable_dropped_database_backup_short_term_retention_policies
|
577
|
-
@restorable_dropped_managed_databases = @client_2.restorable_dropped_managed_databases
|
578
|
-
@restore_points = @client_2.restore_points
|
579
|
-
@server_automatic_tuning_operations = @client_2.server_automatic_tuning_operations
|
580
|
-
@server_dns_aliases = @client_2.server_dns_aliases
|
581
|
-
@server_security_alert_policies = @client_2.server_security_alert_policies
|
582
|
-
@managed_database_security_alert_policies = @client_2.managed_database_security_alert_policies
|
583
|
-
@managed_server_security_alert_policies = @client_2.managed_server_security_alert_policies
|
584
|
-
@sensitivity_labels = @client_2.sensitivity_labels
|
585
|
-
@managed_instance_administrators = @client_2.managed_instance_administrators
|
586
|
-
|
587
|
-
@client_3 = Azure::SQL::Mgmt::V2017_10_01_preview::SqlManagementClient.new(configurable.credentials, base_url, options)
|
588
|
-
if(@client_3.respond_to?(:subscription_id))
|
589
|
-
@client_3.subscription_id = configurable.subscription_id
|
590
|
-
end
|
591
|
-
add_telemetry(@client_3)
|
592
|
-
@database_operations = @client_3.database_operations
|
593
|
-
@elastic_pool_operations = @client_3.elastic_pool_operations
|
594
|
-
@database_vulnerability_assessment_scans = @client_3.database_vulnerability_assessment_scans
|
595
|
-
@managed_database_vulnerability_assessment_rule_baselines = @client_3.managed_database_vulnerability_assessment_rule_baselines
|
596
|
-
@managed_database_vulnerability_assessment_scans = @client_3.managed_database_vulnerability_assessment_scans
|
597
|
-
@managed_database_vulnerability_assessments = @client_3.managed_database_vulnerability_assessments
|
598
|
-
@capabilities = @client_3.capabilities
|
599
|
-
@databases = @client_3.databases
|
600
|
-
@elastic_pools = @client_3.elastic_pools
|
601
|
-
@instance_failover_groups = @client_3.instance_failover_groups
|
602
|
-
@backup_short_term_retention_policies = @client_3.backup_short_term_retention_policies
|
603
|
-
@tde_certificates = @client_3.tde_certificates
|
604
|
-
@managed_instance_tde_certificates = @client_3.managed_instance_tde_certificates
|
605
|
-
@managed_instance_keys = @client_3.managed_instance_keys
|
606
|
-
@managed_instance_encryption_protectors = @client_3.managed_instance_encryption_protectors
|
607
|
-
@recoverable_managed_databases = @client_3.recoverable_managed_databases
|
608
|
-
|
609
|
-
@client_4 = Azure::SQL::Mgmt::V2018_06_01_preview::SqlManagementClient.new(configurable.credentials, base_url, options)
|
610
|
-
if(@client_4.respond_to?(:subscription_id))
|
611
|
-
@client_4.subscription_id = configurable.subscription_id
|
612
|
-
end
|
613
|
-
add_telemetry(@client_4)
|
614
|
-
@database_columns = @client_4.database_columns
|
615
|
-
@database_schemas = @client_4.database_schemas
|
616
|
-
@database_tables = @client_4.database_tables
|
617
|
-
@database_security_alert_policies = @client_4.database_security_alert_policies
|
618
|
-
@managed_database_columns = @client_4.managed_database_columns
|
619
|
-
@managed_database_schemas = @client_4.managed_database_schemas
|
620
|
-
@managed_database_tables = @client_4.managed_database_tables
|
621
|
-
@managed_instance_vulnerability_assessments = @client_4.managed_instance_vulnerability_assessments
|
622
|
-
@server_vulnerability_assessments = @client_4.server_vulnerability_assessments
|
623
|
-
@instance_pools = @client_4.instance_pools
|
624
|
-
@managed_database_sensitivity_labels = @client_4.managed_database_sensitivity_labels
|
625
|
-
|
626
|
-
@model_classes = ModelClasses.new
|
627
|
-
end
|
628
|
-
|
629
|
-
def add_telemetry(client)
|
630
|
-
profile_information = "Profiles/azure_sdk/#{Azure::VERSION}/Latest/SQL/Mgmt"
|
631
|
-
client.add_user_agent_information(profile_information)
|
632
|
-
end
|
633
|
-
|
634
|
-
def method_missing(method, *args)
|
635
|
-
if @client_4.respond_to?method
|
636
|
-
@client_4.send(method, *args)
|
637
|
-
elsif @client_3.respond_to?method
|
638
|
-
@client_3.send(method, *args)
|
639
|
-
elsif @client_2.respond_to?method
|
640
|
-
@client_2.send(method, *args)
|
641
|
-
elsif @client_1.respond_to?method
|
642
|
-
@client_1.send(method, *args)
|
643
|
-
elsif @client_0.respond_to?method
|
644
|
-
@client_0.send(method, *args)
|
645
|
-
else
|
646
|
-
super
|
647
|
-
end
|
648
|
-
end
|
649
|
-
|
650
|
-
class ModelClasses
|
651
|
-
def metric_value
|
652
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::MetricValue
|
653
|
-
end
|
654
|
-
def service_objective_list_result
|
655
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ServiceObjectiveListResult
|
656
|
-
end
|
657
|
-
def data_masking_rule_list_result
|
658
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingRuleListResult
|
659
|
-
end
|
660
|
-
def query_text
|
661
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::QueryText
|
662
|
-
end
|
663
|
-
def database_usage_list_result
|
664
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseUsageListResult
|
665
|
-
end
|
666
|
-
def transparent_data_encryption_list_result
|
667
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionListResult
|
668
|
-
end
|
669
|
-
def database_usage
|
670
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseUsage
|
671
|
-
end
|
672
|
-
def extension_list_result
|
673
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ExtensionListResult
|
674
|
-
end
|
675
|
-
def server_usage_list_result
|
676
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ServerUsageListResult
|
677
|
-
end
|
678
|
-
def server_communication_link_list_result
|
679
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ServerCommunicationLinkListResult
|
680
|
-
end
|
681
|
-
def server_usage
|
682
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ServerUsage
|
683
|
-
end
|
684
|
-
def disaster_recovery_configuration_list_result
|
685
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfigurationListResult
|
686
|
-
end
|
687
|
-
def server_administrator_list_result
|
688
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ServerAdministratorListResult
|
689
|
-
end
|
690
|
-
def elastic_pool_per_database_max_dtu_capability
|
691
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolPerDatabaseMaxDtuCapability
|
692
|
-
end
|
693
|
-
def replication_link_list_result
|
694
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ReplicationLinkListResult
|
695
|
-
end
|
696
|
-
def check_name_availability_response
|
697
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::CheckNameAvailabilityResponse
|
698
|
-
end
|
699
|
-
def recommended_elastic_pool_list_metrics_result
|
700
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedElasticPoolListMetricsResult
|
701
|
-
end
|
702
|
-
def slo_usage_metric
|
703
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::SloUsageMetric
|
704
|
-
end
|
705
|
-
def geo_backup_policy_list_result
|
706
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::GeoBackupPolicyListResult
|
707
|
-
end
|
708
|
-
def table_auditing_policy_properties
|
709
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::TableAuditingPolicyProperties
|
710
|
-
end
|
711
|
-
def import_extension_request
|
712
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ImportExtensionRequest
|
713
|
-
end
|
714
|
-
def transparent_data_encryption_activity_list_result
|
715
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionActivityListResult
|
716
|
-
end
|
717
|
-
def recommended_elastic_pool_list_result
|
718
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedElasticPoolListResult
|
719
|
-
end
|
720
|
-
def elastic_pool_database_activity_list_result
|
721
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolDatabaseActivityListResult
|
722
|
-
end
|
723
|
-
def recommended_elastic_pool_metric
|
724
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedElasticPoolMetric
|
725
|
-
end
|
726
|
-
def elastic_pool_activity_list_result
|
727
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolActivityListResult
|
728
|
-
end
|
729
|
-
def export_request
|
730
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ExportRequest
|
731
|
-
end
|
732
|
-
def query_text_list_result
|
733
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::QueryTextListResult
|
734
|
-
end
|
735
|
-
def backup_long_term_retention_vault_list_result
|
736
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::BackupLongTermRetentionVaultListResult
|
737
|
-
end
|
738
|
-
def metric_name
|
739
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::MetricName
|
740
|
-
end
|
741
|
-
def restorable_dropped_database_list_result
|
742
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::RestorableDroppedDatabaseListResult
|
743
|
-
end
|
744
|
-
def metric
|
745
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::Metric
|
746
|
-
end
|
747
|
-
def elastic_pool_per_database_min_dtu_capability
|
748
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolPerDatabaseMinDtuCapability
|
749
|
-
end
|
750
|
-
def metric_list_result
|
751
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::MetricListResult
|
752
|
-
end
|
753
|
-
def metric_availability
|
754
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::MetricAvailability
|
755
|
-
end
|
756
|
-
def server_table_auditing_policy_list_result
|
757
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ServerTableAuditingPolicyListResult
|
758
|
-
end
|
759
|
-
def metric_definition
|
760
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::MetricDefinition
|
761
|
-
end
|
762
|
-
def operation_impact
|
763
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::OperationImpact
|
764
|
-
end
|
765
|
-
def metric_definition_list_result
|
766
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::MetricDefinitionListResult
|
767
|
-
end
|
768
|
-
def backup_long_term_retention_policy_list_result
|
769
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::BackupLongTermRetentionPolicyListResult
|
770
|
-
end
|
771
|
-
def check_name_availability_request
|
772
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::CheckNameAvailabilityRequest
|
773
|
-
end
|
774
|
-
def query_metric
|
775
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::QueryMetric
|
776
|
-
end
|
777
|
-
def service_tier_advisor_list_result
|
778
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ServiceTierAdvisorListResult
|
779
|
-
end
|
780
|
-
def query_interval
|
781
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::QueryInterval
|
782
|
-
end
|
783
|
-
def recoverable_database_list_result
|
784
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::RecoverableDatabaseListResult
|
785
|
-
end
|
786
|
-
def query_statistic
|
787
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::QueryStatistic
|
788
|
-
end
|
789
|
-
def database_table_auditing_policy_list_result
|
790
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseTableAuditingPolicyListResult
|
791
|
-
end
|
792
|
-
def top_queries
|
793
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::TopQueries
|
794
|
-
end
|
795
|
-
def elastic_pool_dtu_capability
|
796
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolDtuCapability
|
797
|
-
end
|
798
|
-
def top_queries_list_result
|
799
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::TopQueriesListResult
|
800
|
-
end
|
801
|
-
def advisor_list_result
|
802
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::AdvisorListResult
|
803
|
-
end
|
804
|
-
def query_statistic_list_result
|
805
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::QueryStatisticListResult
|
806
|
-
end
|
807
|
-
def backup_long_term_retention_vault
|
808
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::BackupLongTermRetentionVault
|
809
|
-
end
|
810
|
-
def recoverable_database
|
811
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::RecoverableDatabase
|
812
|
-
end
|
813
|
-
def restorable_dropped_database
|
814
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::RestorableDroppedDatabase
|
815
|
-
end
|
816
|
-
def server_connection_policy
|
817
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ServerConnectionPolicy
|
818
|
-
end
|
819
|
-
def service_tier_advisor
|
820
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ServiceTierAdvisor
|
821
|
-
end
|
822
|
-
def transparent_data_encryption
|
823
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryption
|
824
|
-
end
|
825
|
-
def recommended_index
|
826
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedIndex
|
827
|
-
end
|
828
|
-
def data_masking_policy
|
829
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingPolicy
|
830
|
-
end
|
831
|
-
def data_masking_rule
|
832
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingRule
|
833
|
-
end
|
834
|
-
def disaster_recovery_configuration
|
835
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfiguration
|
836
|
-
end
|
837
|
-
def geo_backup_policy
|
838
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::GeoBackupPolicy
|
839
|
-
end
|
840
|
-
def import_export_response
|
841
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ImportExportResponse
|
842
|
-
end
|
843
|
-
def import_request
|
844
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ImportRequest
|
845
|
-
end
|
846
|
-
def recommended_elastic_pool
|
847
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedElasticPool
|
848
|
-
end
|
849
|
-
def replication_link
|
850
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ReplicationLink
|
851
|
-
end
|
852
|
-
def server_azure_adadministrator
|
853
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ServerAzureADAdministrator
|
854
|
-
end
|
855
|
-
def server_communication_link
|
856
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ServerCommunicationLink
|
857
|
-
end
|
858
|
-
def service_objective
|
859
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ServiceObjective
|
860
|
-
end
|
861
|
-
def elastic_pool_activity
|
862
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolActivity
|
863
|
-
end
|
864
|
-
def elastic_pool_database_activity
|
865
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolDatabaseActivity
|
866
|
-
end
|
867
|
-
def transparent_data_encryption_activity
|
868
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionActivity
|
869
|
-
end
|
870
|
-
def database_connection_policy
|
871
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseConnectionPolicy
|
872
|
-
end
|
873
|
-
def database_table_auditing_policy
|
874
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseTableAuditingPolicy
|
875
|
-
end
|
876
|
-
def server_table_auditing_policy
|
877
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ServerTableAuditingPolicy
|
878
|
-
end
|
879
|
-
def backup_long_term_retention_policy_state
|
880
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::BackupLongTermRetentionPolicyState
|
881
|
-
end
|
882
|
-
def max_size_units
|
883
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::MaxSizeUnits
|
884
|
-
end
|
885
|
-
def check_name_availability_reason
|
886
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::CheckNameAvailabilityReason
|
887
|
-
end
|
888
|
-
def server_connection_type
|
889
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ServerConnectionType
|
890
|
-
end
|
891
|
-
def database_edition
|
892
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseEdition
|
893
|
-
end
|
894
|
-
def service_objective_name
|
895
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ServiceObjectiveName
|
896
|
-
end
|
897
|
-
def transparent_data_encryption_status
|
898
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionStatus
|
899
|
-
end
|
900
|
-
def recommended_index_action
|
901
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedIndexAction
|
902
|
-
end
|
903
|
-
def recommended_index_state
|
904
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedIndexState
|
905
|
-
end
|
906
|
-
def recommended_index_type
|
907
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedIndexType
|
908
|
-
end
|
909
|
-
def read_scale
|
910
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ReadScale
|
911
|
-
end
|
912
|
-
def security_alert_policy_email_account_admins
|
913
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::SecurityAlertPolicyEmailAccountAdmins
|
914
|
-
end
|
915
|
-
def security_alert_policy_use_server_default
|
916
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::SecurityAlertPolicyUseServerDefault
|
917
|
-
end
|
918
|
-
def data_masking_state
|
919
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingState
|
920
|
-
end
|
921
|
-
def data_masking_rule_state
|
922
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingRuleState
|
923
|
-
end
|
924
|
-
def data_masking_function
|
925
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingFunction
|
926
|
-
end
|
927
|
-
def disaster_recovery_configuration_status
|
928
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfigurationStatus
|
929
|
-
end
|
930
|
-
def disaster_recovery_configuration_auto_failover
|
931
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfigurationAutoFailover
|
932
|
-
end
|
933
|
-
def disaster_recovery_configuration_failover_policy
|
934
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfigurationFailoverPolicy
|
935
|
-
end
|
936
|
-
def disaster_recovery_configuration_role
|
937
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfigurationRole
|
938
|
-
end
|
939
|
-
def elastic_pool_edition
|
940
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolEdition
|
941
|
-
end
|
942
|
-
def geo_backup_policy_state
|
943
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::GeoBackupPolicyState
|
944
|
-
end
|
945
|
-
def storage_key_type
|
946
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::StorageKeyType
|
947
|
-
end
|
948
|
-
def authentication_type
|
949
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::AuthenticationType
|
950
|
-
end
|
951
|
-
def unit_type
|
952
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::UnitType
|
953
|
-
end
|
954
|
-
def primary_aggregation_type
|
955
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::PrimaryAggregationType
|
956
|
-
end
|
957
|
-
def unit_definition_type
|
958
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::UnitDefinitionType
|
959
|
-
end
|
960
|
-
def query_aggregation_function
|
961
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::QueryAggregationFunction
|
962
|
-
end
|
963
|
-
def query_execution_type
|
964
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::QueryExecutionType
|
965
|
-
end
|
966
|
-
def query_observed_metric_type
|
967
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::QueryObservedMetricType
|
968
|
-
end
|
969
|
-
def query_metric_unit
|
970
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::QueryMetricUnit
|
971
|
-
end
|
972
|
-
def replication_role
|
973
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ReplicationRole
|
974
|
-
end
|
975
|
-
def replication_state
|
976
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ReplicationState
|
977
|
-
end
|
978
|
-
def server_version
|
979
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ServerVersion
|
980
|
-
end
|
981
|
-
def server_state
|
982
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::ServerState
|
983
|
-
end
|
984
|
-
def transparent_data_encryption_activity_status
|
985
|
-
Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionActivityStatus
|
986
|
-
end
|
987
|
-
def operation_list_result
|
988
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::OperationListResult
|
989
|
-
end
|
990
|
-
def recommended_action_state_info
|
991
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionStateInfo
|
992
|
-
end
|
993
|
-
def managed_instance_list_result
|
994
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedInstanceListResult
|
995
|
-
end
|
996
|
-
def managed_instance_update
|
997
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedInstanceUpdate
|
998
|
-
end
|
999
|
-
def recommended_action_impact_record
|
1000
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionImpactRecord
|
1001
|
-
end
|
1002
|
-
def operation_display
|
1003
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::OperationDisplay
|
1004
|
-
end
|
1005
|
-
def resource_identity
|
1006
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ResourceIdentity
|
1007
|
-
end
|
1008
|
-
def sync_group_list_result
|
1009
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupListResult
|
1010
|
-
end
|
1011
|
-
def sync_full_schema_properties_list_result
|
1012
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncFullSchemaPropertiesListResult
|
1013
|
-
end
|
1014
|
-
def sync_full_schema_table
|
1015
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncFullSchemaTable
|
1016
|
-
end
|
1017
|
-
def subscription_usage_list_result
|
1018
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SubscriptionUsageListResult
|
1019
|
-
end
|
1020
|
-
def recommended_action_error_info
|
1021
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionErrorInfo
|
1022
|
-
end
|
1023
|
-
def sync_group_schema
|
1024
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupSchema
|
1025
|
-
end
|
1026
|
-
def recommended_action_metric_info
|
1027
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionMetricInfo
|
1028
|
-
end
|
1029
|
-
def encryption_protector_list_result
|
1030
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::EncryptionProtectorListResult
|
1031
|
-
end
|
1032
|
-
def sync_full_schema_properties
|
1033
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncFullSchemaProperties
|
1034
|
-
end
|
1035
|
-
def failover_group_read_only_endpoint
|
1036
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroupReadOnlyEndpoint
|
1037
|
-
end
|
1038
|
-
def operation
|
1039
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::Operation
|
1040
|
-
end
|
1041
|
-
def sync_group_schema_table_column
|
1042
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupSchemaTableColumn
|
1043
|
-
end
|
1044
|
-
def recommended_action_implementation_info
|
1045
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionImplementationInfo
|
1046
|
-
end
|
1047
|
-
def failover_group_list_result
|
1048
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroupListResult
|
1049
|
-
end
|
1050
|
-
def sync_group_log_list_result
|
1051
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupLogListResult
|
1052
|
-
end
|
1053
|
-
def server_key_list_result
|
1054
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ServerKeyListResult
|
1055
|
-
end
|
1056
|
-
def firewall_rule_list_result
|
1057
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::FirewallRuleListResult
|
1058
|
-
end
|
1059
|
-
def virtual_network_rule_list_result
|
1060
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualNetworkRuleListResult
|
1061
|
-
end
|
1062
|
-
def sync_member_list_result
|
1063
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncMemberListResult
|
1064
|
-
end
|
1065
|
-
def server_list_result
|
1066
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ServerListResult
|
1067
|
-
end
|
1068
|
-
def automatic_tuning_options
|
1069
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::AutomaticTuningOptions
|
1070
|
-
end
|
1071
|
-
def server_update
|
1072
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ServerUpdate
|
1073
|
-
end
|
1074
|
-
def failover_group_read_write_endpoint
|
1075
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroupReadWriteEndpoint
|
1076
|
-
end
|
1077
|
-
def virtual_cluster_update
|
1078
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualClusterUpdate
|
1079
|
-
end
|
1080
|
-
def failover_group_update
|
1081
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroupUpdate
|
1082
|
-
end
|
1083
|
-
def sync_agent_list_result
|
1084
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentListResult
|
1085
|
-
end
|
1086
|
-
def sync_group_log_properties
|
1087
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupLogProperties
|
1088
|
-
end
|
1089
|
-
def sync_agent_key_properties
|
1090
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentKeyProperties
|
1091
|
-
end
|
1092
|
-
def virtual_cluster_list_result
|
1093
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualClusterListResult
|
1094
|
-
end
|
1095
|
-
def partner_info
|
1096
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::PartnerInfo
|
1097
|
-
end
|
1098
|
-
def sync_agent_linked_database_list_result
|
1099
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentLinkedDatabaseListResult
|
1100
|
-
end
|
1101
|
-
def firewall_rule_list
|
1102
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::FirewallRuleList
|
1103
|
-
end
|
1104
|
-
def sync_database_id_properties
|
1105
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncDatabaseIdProperties
|
1106
|
-
end
|
1107
|
-
def resource_with_writable_name
|
1108
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ResourceWithWritableName
|
1109
|
-
end
|
1110
|
-
def sync_database_id_list_result
|
1111
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncDatabaseIdListResult
|
1112
|
-
end
|
1113
|
-
def sync_group_schema_table
|
1114
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupSchemaTable
|
1115
|
-
end
|
1116
|
-
def sync_full_schema_table_column
|
1117
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncFullSchemaTableColumn
|
1118
|
-
end
|
1119
|
-
def recommended_action
|
1120
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedAction
|
1121
|
-
end
|
1122
|
-
def advisor
|
1123
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::Advisor
|
1124
|
-
end
|
1125
|
-
def database_automatic_tuning
|
1126
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::DatabaseAutomaticTuning
|
1127
|
-
end
|
1128
|
-
def encryption_protector
|
1129
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::EncryptionProtector
|
1130
|
-
end
|
1131
|
-
def failover_group
|
1132
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroup
|
1133
|
-
end
|
1134
|
-
def proxy_resource_with_writable_name
|
1135
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ProxyResourceWithWritableName
|
1136
|
-
end
|
1137
|
-
def firewall_rule
|
1138
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::FirewallRule
|
1139
|
-
end
|
1140
|
-
def managed_instance
|
1141
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedInstance
|
1142
|
-
end
|
1143
|
-
def server_key
|
1144
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ServerKey
|
1145
|
-
end
|
1146
|
-
def server
|
1147
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::Server
|
1148
|
-
end
|
1149
|
-
def sync_agent
|
1150
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgent
|
1151
|
-
end
|
1152
|
-
def sync_agent_linked_database
|
1153
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentLinkedDatabase
|
1154
|
-
end
|
1155
|
-
def sync_group
|
1156
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroup
|
1157
|
-
end
|
1158
|
-
def sync_member
|
1159
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncMember
|
1160
|
-
end
|
1161
|
-
def subscription_usage
|
1162
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SubscriptionUsage
|
1163
|
-
end
|
1164
|
-
def virtual_cluster
|
1165
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualCluster
|
1166
|
-
end
|
1167
|
-
def virtual_network_rule
|
1168
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualNetworkRule
|
1169
|
-
end
|
1170
|
-
def advisor_status
|
1171
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::AdvisorStatus
|
1172
|
-
end
|
1173
|
-
def auto_execute_status
|
1174
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::AutoExecuteStatus
|
1175
|
-
end
|
1176
|
-
def auto_execute_status_inherited_from
|
1177
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::AutoExecuteStatusInheritedFrom
|
1178
|
-
end
|
1179
|
-
def recommended_action_current_state
|
1180
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionCurrentState
|
1181
|
-
end
|
1182
|
-
def recommended_action_initiated_by
|
1183
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionInitiatedBy
|
1184
|
-
end
|
1185
|
-
def implementation_method
|
1186
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ImplementationMethod
|
1187
|
-
end
|
1188
|
-
def is_retryable
|
1189
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::IsRetryable
|
1190
|
-
end
|
1191
|
-
def automatic_tuning_mode
|
1192
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::AutomaticTuningMode
|
1193
|
-
end
|
1194
|
-
def automatic_tuning_disabled_reason
|
1195
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::AutomaticTuningDisabledReason
|
1196
|
-
end
|
1197
|
-
def failover_group_replication_role
|
1198
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroupReplicationRole
|
1199
|
-
end
|
1200
|
-
def identity_type
|
1201
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::IdentityType
|
1202
|
-
end
|
1203
|
-
def managed_server_create_mode
|
1204
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedServerCreateMode
|
1205
|
-
end
|
1206
|
-
def managed_instance_license_type
|
1207
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedInstanceLicenseType
|
1208
|
-
end
|
1209
|
-
def managed_instance_proxy_override
|
1210
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedInstanceProxyOverride
|
1211
|
-
end
|
1212
|
-
def operation_origin
|
1213
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::OperationOrigin
|
1214
|
-
end
|
1215
|
-
def sync_agent_state
|
1216
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentState
|
1217
|
-
end
|
1218
|
-
def sync_member_db_type
|
1219
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncMemberDbType
|
1220
|
-
end
|
1221
|
-
def sync_group_log_type
|
1222
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupLogType
|
1223
|
-
end
|
1224
|
-
def sync_conflict_resolution_policy
|
1225
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncConflictResolutionPolicy
|
1226
|
-
end
|
1227
|
-
def sync_group_state
|
1228
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupState
|
1229
|
-
end
|
1230
|
-
def sync_direction
|
1231
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncDirection
|
1232
|
-
end
|
1233
|
-
def sync_member_state
|
1234
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncMemberState
|
1235
|
-
end
|
1236
|
-
def virtual_network_rule_state
|
1237
|
-
Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualNetworkRuleState
|
1238
|
-
end
|
1239
|
-
def job_execution_target
|
1240
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobExecutionTarget
|
1241
|
-
end
|
1242
|
-
def logical_server_security_alert_policy_list_result
|
1243
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::LogicalServerSecurityAlertPolicyListResult
|
1244
|
-
end
|
1245
|
-
def automatic_tuning_server_options
|
1246
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::AutomaticTuningServerOptions
|
1247
|
-
end
|
1248
|
-
def managed_database_security_alert_policy_list_result
|
1249
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseSecurityAlertPolicyListResult
|
1250
|
-
end
|
1251
|
-
def server_blob_auditing_policy_list_result
|
1252
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerBlobAuditingPolicyListResult
|
1253
|
-
end
|
1254
|
-
def job_agent_list_result
|
1255
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobAgentListResult
|
1256
|
-
end
|
1257
|
-
def database_blob_auditing_policy_list_result
|
1258
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::DatabaseBlobAuditingPolicyListResult
|
1259
|
-
end
|
1260
|
-
def job_agent_update
|
1261
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobAgentUpdate
|
1262
|
-
end
|
1263
|
-
def long_term_retention_backup_list_result
|
1264
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::LongTermRetentionBackupListResult
|
1265
|
-
end
|
1266
|
-
def managed_database_update
|
1267
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseUpdate
|
1268
|
-
end
|
1269
|
-
def job_credential_list_result
|
1270
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobCredentialListResult
|
1271
|
-
end
|
1272
|
-
def managed_server_security_alert_policy_list_result
|
1273
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedServerSecurityAlertPolicyListResult
|
1274
|
-
end
|
1275
|
-
def create_database_restore_point_definition
|
1276
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::CreateDatabaseRestorePointDefinition
|
1277
|
-
end
|
1278
|
-
def import_export_database_definition
|
1279
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ImportExportDatabaseDefinition
|
1280
|
-
end
|
1281
|
-
def job_execution_list_result
|
1282
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobExecutionListResult
|
1283
|
-
end
|
1284
|
-
def job_schedule
|
1285
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobSchedule
|
1286
|
-
end
|
1287
|
-
def restore_point_list_result
|
1288
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::RestorePointListResult
|
1289
|
-
end
|
1290
|
-
def job_list_result
|
1291
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobListResult
|
1292
|
-
end
|
1293
|
-
def server_dns_alias_list_result
|
1294
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerDnsAliasListResult
|
1295
|
-
end
|
1296
|
-
def job_step_action
|
1297
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepAction
|
1298
|
-
end
|
1299
|
-
def job_version_list_result
|
1300
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobVersionListResult
|
1301
|
-
end
|
1302
|
-
def job_step_output
|
1303
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepOutput
|
1304
|
-
end
|
1305
|
-
def job_step_execution_options
|
1306
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepExecutionOptions
|
1307
|
-
end
|
1308
|
-
def complete_database_restore_definition
|
1309
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::CompleteDatabaseRestoreDefinition
|
1310
|
-
end
|
1311
|
-
def restorable_dropped_managed_database_list_result
|
1312
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::RestorableDroppedManagedDatabaseListResult
|
1313
|
-
end
|
1314
|
-
def job_step_list_result
|
1315
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepListResult
|
1316
|
-
end
|
1317
|
-
def managed_database_list_result
|
1318
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseListResult
|
1319
|
-
end
|
1320
|
-
def job_target
|
1321
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobTarget
|
1322
|
-
end
|
1323
|
-
def managed_backup_short_term_retention_policy_list_result
|
1324
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedBackupShortTermRetentionPolicyListResult
|
1325
|
-
end
|
1326
|
-
def managed_instance_administrator_list_result
|
1327
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedInstanceAdministratorListResult
|
1328
|
-
end
|
1329
|
-
def server_dns_alias_acquisition
|
1330
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerDnsAliasAcquisition
|
1331
|
-
end
|
1332
|
-
def job_target_group_list_result
|
1333
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobTargetGroupListResult
|
1334
|
-
end
|
1335
|
-
def extended_database_blob_auditing_policy
|
1336
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ExtendedDatabaseBlobAuditingPolicy
|
1337
|
-
end
|
1338
|
-
def extended_server_blob_auditing_policy
|
1339
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ExtendedServerBlobAuditingPolicy
|
1340
|
-
end
|
1341
|
-
def server_blob_auditing_policy
|
1342
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerBlobAuditingPolicy
|
1343
|
-
end
|
1344
|
-
def database_blob_auditing_policy
|
1345
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::DatabaseBlobAuditingPolicy
|
1346
|
-
end
|
1347
|
-
def import_export_operation_result
|
1348
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ImportExportOperationResult
|
1349
|
-
end
|
1350
|
-
def data_warehouse_user_activities
|
1351
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::DataWarehouseUserActivities
|
1352
|
-
end
|
1353
|
-
def job_agent
|
1354
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobAgent
|
1355
|
-
end
|
1356
|
-
def job_credential
|
1357
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobCredential
|
1358
|
-
end
|
1359
|
-
def job_execution
|
1360
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobExecution
|
1361
|
-
end
|
1362
|
-
def job
|
1363
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::Job
|
1364
|
-
end
|
1365
|
-
def job_step
|
1366
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStep
|
1367
|
-
end
|
1368
|
-
def job_target_group
|
1369
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobTargetGroup
|
1370
|
-
end
|
1371
|
-
def job_version
|
1372
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobVersion
|
1373
|
-
end
|
1374
|
-
def long_term_retention_backup
|
1375
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::LongTermRetentionBackup
|
1376
|
-
end
|
1377
|
-
def backup_long_term_retention_policy
|
1378
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::BackupLongTermRetentionPolicy
|
1379
|
-
end
|
1380
|
-
def managed_backup_short_term_retention_policy
|
1381
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedBackupShortTermRetentionPolicy
|
1382
|
-
end
|
1383
|
-
def managed_database
|
1384
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabase
|
1385
|
-
end
|
1386
|
-
def restorable_dropped_managed_database
|
1387
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::RestorableDroppedManagedDatabase
|
1388
|
-
end
|
1389
|
-
def restore_point
|
1390
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::RestorePoint
|
1391
|
-
end
|
1392
|
-
def server_automatic_tuning
|
1393
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerAutomaticTuning
|
1394
|
-
end
|
1395
|
-
def server_dns_alias
|
1396
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerDnsAlias
|
1397
|
-
end
|
1398
|
-
def server_security_alert_policy
|
1399
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerSecurityAlertPolicy
|
1400
|
-
end
|
1401
|
-
def managed_database_security_alert_policy
|
1402
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseSecurityAlertPolicy
|
1403
|
-
end
|
1404
|
-
def managed_server_security_alert_policy
|
1405
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedServerSecurityAlertPolicy
|
1406
|
-
end
|
1407
|
-
def managed_instance_administrator
|
1408
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedInstanceAdministrator
|
1409
|
-
end
|
1410
|
-
def blob_auditing_policy_state
|
1411
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::BlobAuditingPolicyState
|
1412
|
-
end
|
1413
|
-
def job_agent_state
|
1414
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobAgentState
|
1415
|
-
end
|
1416
|
-
def job_execution_lifecycle
|
1417
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobExecutionLifecycle
|
1418
|
-
end
|
1419
|
-
def provisioning_state
|
1420
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ProvisioningState
|
1421
|
-
end
|
1422
|
-
def job_target_type
|
1423
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobTargetType
|
1424
|
-
end
|
1425
|
-
def job_schedule_type
|
1426
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobScheduleType
|
1427
|
-
end
|
1428
|
-
def job_step_action_type
|
1429
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepActionType
|
1430
|
-
end
|
1431
|
-
def job_step_action_source
|
1432
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepActionSource
|
1433
|
-
end
|
1434
|
-
def job_step_output_type
|
1435
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepOutputType
|
1436
|
-
end
|
1437
|
-
def job_target_group_membership_type
|
1438
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobTargetGroupMembershipType
|
1439
|
-
end
|
1440
|
-
def managed_database_status
|
1441
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseStatus
|
1442
|
-
end
|
1443
|
-
def managed_database_create_mode
|
1444
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseCreateMode
|
1445
|
-
end
|
1446
|
-
def restore_point_type
|
1447
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::RestorePointType
|
1448
|
-
end
|
1449
|
-
def automatic_tuning_server_mode
|
1450
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::AutomaticTuningServerMode
|
1451
|
-
end
|
1452
|
-
def automatic_tuning_option_mode_desired
|
1453
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::AutomaticTuningOptionModeDesired
|
1454
|
-
end
|
1455
|
-
def automatic_tuning_option_mode_actual
|
1456
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::AutomaticTuningOptionModeActual
|
1457
|
-
end
|
1458
|
-
def automatic_tuning_server_reason
|
1459
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::AutomaticTuningServerReason
|
1460
|
-
end
|
1461
|
-
def long_term_retention_database_state
|
1462
|
-
Azure::SQL::Mgmt::V2017_03_01_preview::Models::LongTermRetentionDatabaseState
|
1463
|
-
end
|
1464
|
-
def server_version_capability
|
1465
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ServerVersionCapability
|
1466
|
-
end
|
1467
|
-
def managed_instance_vcores_capability
|
1468
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceVcoresCapability
|
1469
|
-
end
|
1470
|
-
def database_operation_list_result
|
1471
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseOperationListResult
|
1472
|
-
end
|
1473
|
-
def managed_instance_family_capability
|
1474
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceFamilyCapability
|
1475
|
-
end
|
1476
|
-
def managed_instance_edition_capability
|
1477
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceEditionCapability
|
1478
|
-
end
|
1479
|
-
def elastic_pool_per_database_max_performance_level_capability
|
1480
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolPerDatabaseMaxPerformanceLevelCapability
|
1481
|
-
end
|
1482
|
-
def elastic_pool_operation_list_result
|
1483
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolOperationListResult
|
1484
|
-
end
|
1485
|
-
def elastic_pool_performance_level_capability
|
1486
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolPerformanceLevelCapability
|
1487
|
-
end
|
1488
|
-
def elastic_pool_edition_capability
|
1489
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolEditionCapability
|
1490
|
-
end
|
1491
|
-
def recoverable_managed_database_list_result
|
1492
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::RecoverableManagedDatabaseListResult
|
1493
|
-
end
|
1494
|
-
def database_vulnerability_assessment_rule_baseline_item
|
1495
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseVulnerabilityAssessmentRuleBaselineItem
|
1496
|
-
end
|
1497
|
-
def managed_instance_encryption_protector_list_result
|
1498
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceEncryptionProtectorListResult
|
1499
|
-
end
|
1500
|
-
def partner_region_info
|
1501
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::PartnerRegionInfo
|
1502
|
-
end
|
1503
|
-
def managed_instance_key_list_result
|
1504
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceKeyListResult
|
1505
|
-
end
|
1506
|
-
def instance_failover_group_read_only_endpoint
|
1507
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::InstanceFailoverGroupReadOnlyEndpoint
|
1508
|
-
end
|
1509
|
-
def max_size_capability
|
1510
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::MaxSizeCapability
|
1511
|
-
end
|
1512
|
-
def log_size_capability
|
1513
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::LogSizeCapability
|
1514
|
-
end
|
1515
|
-
def instance_failover_group_read_write_endpoint
|
1516
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::InstanceFailoverGroupReadWriteEndpoint
|
1517
|
-
end
|
1518
|
-
def performance_level_capability
|
1519
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::PerformanceLevelCapability
|
1520
|
-
end
|
1521
|
-
def backup_short_term_retention_policy_list_result
|
1522
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::BackupShortTermRetentionPolicyListResult
|
1523
|
-
end
|
1524
|
-
def license_type_capability
|
1525
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::LicenseTypeCapability
|
1526
|
-
end
|
1527
|
-
def managed_instance_version_capability
|
1528
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceVersionCapability
|
1529
|
-
end
|
1530
|
-
def edition_capability
|
1531
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::EditionCapability
|
1532
|
-
end
|
1533
|
-
def location_capabilities
|
1534
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::LocationCapabilities
|
1535
|
-
end
|
1536
|
-
def vulnerability_assessment_scan_error
|
1537
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentScanError
|
1538
|
-
end
|
1539
|
-
def instance_failover_group_list_result
|
1540
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::InstanceFailoverGroupListResult
|
1541
|
-
end
|
1542
|
-
def database_list_result
|
1543
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseListResult
|
1544
|
-
end
|
1545
|
-
def max_size_range_capability
|
1546
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::MaxSizeRangeCapability
|
1547
|
-
end
|
1548
|
-
def database_update
|
1549
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseUpdate
|
1550
|
-
end
|
1551
|
-
def service_objective_capability
|
1552
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ServiceObjectiveCapability
|
1553
|
-
end
|
1554
|
-
def resource_move_definition
|
1555
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ResourceMoveDefinition
|
1556
|
-
end
|
1557
|
-
def vulnerability_assessment_scan_record_list_result
|
1558
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentScanRecordListResult
|
1559
|
-
end
|
1560
|
-
def elastic_pool_per_database_settings
|
1561
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolPerDatabaseSettings
|
1562
|
-
end
|
1563
|
-
def managed_instance_pair_info
|
1564
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstancePairInfo
|
1565
|
-
end
|
1566
|
-
def database_vulnerability_assessment_list_result
|
1567
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseVulnerabilityAssessmentListResult
|
1568
|
-
end
|
1569
|
-
def elastic_pool_list_result
|
1570
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolListResult
|
1571
|
-
end
|
1572
|
-
def elastic_pool_per_database_min_performance_level_capability
|
1573
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolPerDatabaseMinPerformanceLevelCapability
|
1574
|
-
end
|
1575
|
-
def elastic_pool_update
|
1576
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolUpdate
|
1577
|
-
end
|
1578
|
-
def database_operation
|
1579
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseOperation
|
1580
|
-
end
|
1581
|
-
def elastic_pool_operation
|
1582
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolOperation
|
1583
|
-
end
|
1584
|
-
def vulnerability_assessment_scan_record
|
1585
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentScanRecord
|
1586
|
-
end
|
1587
|
-
def database_vulnerability_assessment_scans_export
|
1588
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseVulnerabilityAssessmentScansExport
|
1589
|
-
end
|
1590
|
-
def database_vulnerability_assessment_rule_baseline
|
1591
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseVulnerabilityAssessmentRuleBaseline
|
1592
|
-
end
|
1593
|
-
def database_vulnerability_assessment
|
1594
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseVulnerabilityAssessment
|
1595
|
-
end
|
1596
|
-
def database
|
1597
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::Database
|
1598
|
-
end
|
1599
|
-
def elastic_pool
|
1600
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPool
|
1601
|
-
end
|
1602
|
-
def instance_failover_group
|
1603
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::InstanceFailoverGroup
|
1604
|
-
end
|
1605
|
-
def backup_short_term_retention_policy
|
1606
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::BackupShortTermRetentionPolicy
|
1607
|
-
end
|
1608
|
-
def tde_certificate
|
1609
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::TdeCertificate
|
1610
|
-
end
|
1611
|
-
def managed_instance_key
|
1612
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceKey
|
1613
|
-
end
|
1614
|
-
def managed_instance_encryption_protector
|
1615
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceEncryptionProtector
|
1616
|
-
end
|
1617
|
-
def recoverable_managed_database
|
1618
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::RecoverableManagedDatabase
|
1619
|
-
end
|
1620
|
-
def management_operation_state
|
1621
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagementOperationState
|
1622
|
-
end
|
1623
|
-
def vulnerability_assessment_scan_trigger_type
|
1624
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentScanTriggerType
|
1625
|
-
end
|
1626
|
-
def vulnerability_assessment_scan_state
|
1627
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentScanState
|
1628
|
-
end
|
1629
|
-
def max_size_unit
|
1630
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::MaxSizeUnit
|
1631
|
-
end
|
1632
|
-
def log_size_unit
|
1633
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::LogSizeUnit
|
1634
|
-
end
|
1635
|
-
def capability_status
|
1636
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::CapabilityStatus
|
1637
|
-
end
|
1638
|
-
def performance_level_unit
|
1639
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::PerformanceLevelUnit
|
1640
|
-
end
|
1641
|
-
def create_mode
|
1642
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::CreateMode
|
1643
|
-
end
|
1644
|
-
def sample_name
|
1645
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::SampleName
|
1646
|
-
end
|
1647
|
-
def database_status
|
1648
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseStatus
|
1649
|
-
end
|
1650
|
-
def catalog_collation_type
|
1651
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::CatalogCollationType
|
1652
|
-
end
|
1653
|
-
def database_license_type
|
1654
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseLicenseType
|
1655
|
-
end
|
1656
|
-
def database_read_scale
|
1657
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseReadScale
|
1658
|
-
end
|
1659
|
-
def elastic_pool_state
|
1660
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolState
|
1661
|
-
end
|
1662
|
-
def elastic_pool_license_type
|
1663
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolLicenseType
|
1664
|
-
end
|
1665
|
-
def read_write_endpoint_failover_policy
|
1666
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ReadWriteEndpointFailoverPolicy
|
1667
|
-
end
|
1668
|
-
def read_only_endpoint_failover_policy
|
1669
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ReadOnlyEndpointFailoverPolicy
|
1670
|
-
end
|
1671
|
-
def instance_failover_group_replication_role
|
1672
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::InstanceFailoverGroupReplicationRole
|
1673
|
-
end
|
1674
|
-
def server_key_type
|
1675
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ServerKeyType
|
1676
|
-
end
|
1677
|
-
def vulnerability_assessment_policy_baseline_name
|
1678
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentPolicyBaselineName
|
1679
|
-
end
|
1680
|
-
def capability_group
|
1681
|
-
Azure::SQL::Mgmt::V2017_10_01_preview::Models::CapabilityGroup
|
1682
|
-
end
|
1683
|
-
def vulnerability_assessment_recurring_scans_properties
|
1684
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::VulnerabilityAssessmentRecurringScansProperties
|
1685
|
-
end
|
1686
|
-
def resource
|
1687
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::Resource
|
1688
|
-
end
|
1689
|
-
def database_security_alert_list_result
|
1690
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseSecurityAlertListResult
|
1691
|
-
end
|
1692
|
-
def instance_pool_update
|
1693
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::InstancePoolUpdate
|
1694
|
-
end
|
1695
|
-
def database_column_list_result
|
1696
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseColumnListResult
|
1697
|
-
end
|
1698
|
-
def sku
|
1699
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::Sku
|
1700
|
-
end
|
1701
|
-
def server_vulnerability_assessment_list_result
|
1702
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::ServerVulnerabilityAssessmentListResult
|
1703
|
-
end
|
1704
|
-
def instance_pool_list_result
|
1705
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::InstancePoolListResult
|
1706
|
-
end
|
1707
|
-
def sensitivity_label_list_result
|
1708
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::SensitivityLabelListResult
|
1709
|
-
end
|
1710
|
-
def database_schema_list_result
|
1711
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseSchemaListResult
|
1712
|
-
end
|
1713
|
-
def managed_instance_vulnerability_assessment_list_result
|
1714
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::ManagedInstanceVulnerabilityAssessmentListResult
|
1715
|
-
end
|
1716
|
-
def database_table_list_result
|
1717
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseTableListResult
|
1718
|
-
end
|
1719
|
-
def proxy_resource
|
1720
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::ProxyResource
|
1721
|
-
end
|
1722
|
-
def database_column
|
1723
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseColumn
|
1724
|
-
end
|
1725
|
-
def database_schema
|
1726
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseSchema
|
1727
|
-
end
|
1728
|
-
def database_table
|
1729
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseTable
|
1730
|
-
end
|
1731
|
-
def database_security_alert_policy
|
1732
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseSecurityAlertPolicy
|
1733
|
-
end
|
1734
|
-
def tracked_resource
|
1735
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::TrackedResource
|
1736
|
-
end
|
1737
|
-
def managed_instance_vulnerability_assessment
|
1738
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::ManagedInstanceVulnerabilityAssessment
|
1739
|
-
end
|
1740
|
-
def server_vulnerability_assessment
|
1741
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::ServerVulnerabilityAssessment
|
1742
|
-
end
|
1743
|
-
def instance_pool
|
1744
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::InstancePool
|
1745
|
-
end
|
1746
|
-
def sensitivity_label
|
1747
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::SensitivityLabel
|
1748
|
-
end
|
1749
|
-
def column_data_type
|
1750
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::ColumnDataType
|
1751
|
-
end
|
1752
|
-
def security_alert_policy_state
|
1753
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::SecurityAlertPolicyState
|
1754
|
-
end
|
1755
|
-
def instance_pool_license_type
|
1756
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::InstancePoolLicenseType
|
1757
|
-
end
|
1758
|
-
def sensitivity_label_source
|
1759
|
-
Azure::SQL::Mgmt::V2018_06_01_preview::Models::SensitivityLabelSource
|
1760
|
-
end
|
1761
|
-
end
|
1762
|
-
end
|
1763
|
-
end
|
1764
|
-
end
|
1765
|
-
end
|
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_sql'
|
6
|
+
|
7
|
+
module Azure::Profiles::Latest
|
8
|
+
module SQL
|
9
|
+
module Mgmt
|
10
|
+
BackupLongTermRetentionVaults = Azure::SQL::Mgmt::V2014_04_01::BackupLongTermRetentionVaults
|
11
|
+
RecoverableDatabases = Azure::SQL::Mgmt::V2014_04_01::RecoverableDatabases
|
12
|
+
RestorableDroppedDatabases = Azure::SQL::Mgmt::V2014_04_01::RestorableDroppedDatabases
|
13
|
+
ServerConnectionPolicies = Azure::SQL::Mgmt::V2014_04_01::ServerConnectionPolicies
|
14
|
+
DatabaseThreatDetectionPolicies = Azure::SQL::Mgmt::V2014_04_01::DatabaseThreatDetectionPolicies
|
15
|
+
DataMaskingPolicies = Azure::SQL::Mgmt::V2014_04_01::DataMaskingPolicies
|
16
|
+
DataMaskingRules = Azure::SQL::Mgmt::V2014_04_01::DataMaskingRules
|
17
|
+
TransparentDataEncryptionConfigurations = Azure::SQL::Mgmt::V2014_04_01::TransparentDataEncryptionConfigurations
|
18
|
+
Extensions = Azure::SQL::Mgmt::V2014_04_01::Extensions
|
19
|
+
DisasterRecoveryConfigurations = Azure::SQL::Mgmt::V2014_04_01::DisasterRecoveryConfigurations
|
20
|
+
GeoBackupPolicies = Azure::SQL::Mgmt::V2014_04_01::GeoBackupPolicies
|
21
|
+
Queries = Azure::SQL::Mgmt::V2014_04_01::Queries
|
22
|
+
QueryStatistics = Azure::SQL::Mgmt::V2014_04_01::QueryStatistics
|
23
|
+
QueryTexts = Azure::SQL::Mgmt::V2014_04_01::QueryTexts
|
24
|
+
RecommendedElasticPools = Azure::SQL::Mgmt::V2014_04_01::RecommendedElasticPools
|
25
|
+
ReplicationLinks = Azure::SQL::Mgmt::V2014_04_01::ReplicationLinks
|
26
|
+
ServerAzureADAdministrators = Azure::SQL::Mgmt::V2014_04_01::ServerAzureADAdministrators
|
27
|
+
ServerCommunicationLinks = Azure::SQL::Mgmt::V2014_04_01::ServerCommunicationLinks
|
28
|
+
ServiceObjectives = Azure::SQL::Mgmt::V2014_04_01::ServiceObjectives
|
29
|
+
ElasticPoolActivities = Azure::SQL::Mgmt::V2014_04_01::ElasticPoolActivities
|
30
|
+
ElasticPoolDatabaseActivities = Azure::SQL::Mgmt::V2014_04_01::ElasticPoolDatabaseActivities
|
31
|
+
ServiceTierAdvisors = Azure::SQL::Mgmt::V2014_04_01::ServiceTierAdvisors
|
32
|
+
TransparentDataEncryptions = Azure::SQL::Mgmt::V2014_04_01::TransparentDataEncryptions
|
33
|
+
TransparentDataEncryptionActivities = Azure::SQL::Mgmt::V2014_04_01::TransparentDataEncryptionActivities
|
34
|
+
ServerTableAuditingPolicies = Azure::SQL::Mgmt::V2014_04_01::ServerTableAuditingPolicies
|
35
|
+
DatabaseTableAuditingPolicies = Azure::SQL::Mgmt::V2014_04_01::DatabaseTableAuditingPolicies
|
36
|
+
DatabaseConnectionPolicies = Azure::SQL::Mgmt::V2014_04_01::DatabaseConnectionPolicies
|
37
|
+
ServerUsages = Azure::SQL::Mgmt::V2014_04_01::ServerUsages
|
38
|
+
DatabaseUsages = Azure::SQL::Mgmt::V2014_04_01::DatabaseUsages
|
39
|
+
DatabaseAdvisors = Azure::SQL::Mgmt::V2015_05_01_preview::DatabaseAdvisors
|
40
|
+
DatabaseRecommendedActions = Azure::SQL::Mgmt::V2015_05_01_preview::DatabaseRecommendedActions
|
41
|
+
ServerAdvisors = Azure::SQL::Mgmt::V2015_05_01_preview::ServerAdvisors
|
42
|
+
DatabaseAutomaticTuningOperations = Azure::SQL::Mgmt::V2015_05_01_preview::DatabaseAutomaticTuningOperations
|
43
|
+
EncryptionProtectors = Azure::SQL::Mgmt::V2015_05_01_preview::EncryptionProtectors
|
44
|
+
FailoverGroups = Azure::SQL::Mgmt::V2015_05_01_preview::FailoverGroups
|
45
|
+
FirewallRules = Azure::SQL::Mgmt::V2015_05_01_preview::FirewallRules
|
46
|
+
ManagedInstances = Azure::SQL::Mgmt::V2015_05_01_preview::ManagedInstances
|
47
|
+
Operations = Azure::SQL::Mgmt::V2015_05_01_preview::Operations
|
48
|
+
ServerKeys = Azure::SQL::Mgmt::V2015_05_01_preview::ServerKeys
|
49
|
+
Servers = Azure::SQL::Mgmt::V2015_05_01_preview::Servers
|
50
|
+
SyncAgents = Azure::SQL::Mgmt::V2015_05_01_preview::SyncAgents
|
51
|
+
SyncGroups = Azure::SQL::Mgmt::V2015_05_01_preview::SyncGroups
|
52
|
+
SyncMembers = Azure::SQL::Mgmt::V2015_05_01_preview::SyncMembers
|
53
|
+
SubscriptionUsages = Azure::SQL::Mgmt::V2015_05_01_preview::SubscriptionUsages
|
54
|
+
VirtualClusters = Azure::SQL::Mgmt::V2015_05_01_preview::VirtualClusters
|
55
|
+
VirtualNetworkRules = Azure::SQL::Mgmt::V2015_05_01_preview::VirtualNetworkRules
|
56
|
+
ExtendedDatabaseBlobAuditingPolicies = Azure::SQL::Mgmt::V2017_03_01_preview::ExtendedDatabaseBlobAuditingPolicies
|
57
|
+
ExtendedServerBlobAuditingPolicies = Azure::SQL::Mgmt::V2017_03_01_preview::ExtendedServerBlobAuditingPolicies
|
58
|
+
ServerBlobAuditingPolicies = Azure::SQL::Mgmt::V2017_03_01_preview::ServerBlobAuditingPolicies
|
59
|
+
DatabaseBlobAuditingPolicies = Azure::SQL::Mgmt::V2017_03_01_preview::DatabaseBlobAuditingPolicies
|
60
|
+
DatabaseVulnerabilityAssessmentRuleBaselines = Azure::SQL::Mgmt::V2017_03_01_preview::DatabaseVulnerabilityAssessmentRuleBaselines
|
61
|
+
DatabaseVulnerabilityAssessments = Azure::SQL::Mgmt::V2017_03_01_preview::DatabaseVulnerabilityAssessments
|
62
|
+
DataWarehouseUserActivitiesOperations = Azure::SQL::Mgmt::V2017_03_01_preview::DataWarehouseUserActivitiesOperations
|
63
|
+
JobAgents = Azure::SQL::Mgmt::V2017_03_01_preview::JobAgents
|
64
|
+
JobCredentials = Azure::SQL::Mgmt::V2017_03_01_preview::JobCredentials
|
65
|
+
JobExecutions = Azure::SQL::Mgmt::V2017_03_01_preview::JobExecutions
|
66
|
+
Jobs = Azure::SQL::Mgmt::V2017_03_01_preview::Jobs
|
67
|
+
JobStepExecutions = Azure::SQL::Mgmt::V2017_03_01_preview::JobStepExecutions
|
68
|
+
JobSteps = Azure::SQL::Mgmt::V2017_03_01_preview::JobSteps
|
69
|
+
JobTargetExecutions = Azure::SQL::Mgmt::V2017_03_01_preview::JobTargetExecutions
|
70
|
+
JobTargetGroups = Azure::SQL::Mgmt::V2017_03_01_preview::JobTargetGroups
|
71
|
+
JobVersions = Azure::SQL::Mgmt::V2017_03_01_preview::JobVersions
|
72
|
+
LongTermRetentionBackups = Azure::SQL::Mgmt::V2017_03_01_preview::LongTermRetentionBackups
|
73
|
+
BackupLongTermRetentionPolicies = Azure::SQL::Mgmt::V2017_03_01_preview::BackupLongTermRetentionPolicies
|
74
|
+
ManagedBackupShortTermRetentionPolicies = Azure::SQL::Mgmt::V2017_03_01_preview::ManagedBackupShortTermRetentionPolicies
|
75
|
+
ManagedDatabases = Azure::SQL::Mgmt::V2017_03_01_preview::ManagedDatabases
|
76
|
+
ManagedRestorableDroppedDatabaseBackupShortTermRetentionPolicies = Azure::SQL::Mgmt::V2017_03_01_preview::ManagedRestorableDroppedDatabaseBackupShortTermRetentionPolicies
|
77
|
+
RestorableDroppedManagedDatabases = Azure::SQL::Mgmt::V2017_03_01_preview::RestorableDroppedManagedDatabases
|
78
|
+
RestorePoints = Azure::SQL::Mgmt::V2017_03_01_preview::RestorePoints
|
79
|
+
ServerAutomaticTuningOperations = Azure::SQL::Mgmt::V2017_03_01_preview::ServerAutomaticTuningOperations
|
80
|
+
ServerDnsAliases = Azure::SQL::Mgmt::V2017_03_01_preview::ServerDnsAliases
|
81
|
+
ServerSecurityAlertPolicies = Azure::SQL::Mgmt::V2017_03_01_preview::ServerSecurityAlertPolicies
|
82
|
+
ManagedDatabaseSecurityAlertPolicies = Azure::SQL::Mgmt::V2017_03_01_preview::ManagedDatabaseSecurityAlertPolicies
|
83
|
+
ManagedServerSecurityAlertPolicies = Azure::SQL::Mgmt::V2017_03_01_preview::ManagedServerSecurityAlertPolicies
|
84
|
+
SensitivityLabels = Azure::SQL::Mgmt::V2017_03_01_preview::SensitivityLabels
|
85
|
+
ManagedInstanceAdministrators = Azure::SQL::Mgmt::V2017_03_01_preview::ManagedInstanceAdministrators
|
86
|
+
DatabaseOperations = Azure::SQL::Mgmt::V2017_10_01_preview::DatabaseOperations
|
87
|
+
ElasticPoolOperations = Azure::SQL::Mgmt::V2017_10_01_preview::ElasticPoolOperations
|
88
|
+
DatabaseVulnerabilityAssessmentScans = Azure::SQL::Mgmt::V2017_10_01_preview::DatabaseVulnerabilityAssessmentScans
|
89
|
+
ManagedDatabaseVulnerabilityAssessmentRuleBaselines = Azure::SQL::Mgmt::V2017_10_01_preview::ManagedDatabaseVulnerabilityAssessmentRuleBaselines
|
90
|
+
ManagedDatabaseVulnerabilityAssessmentScans = Azure::SQL::Mgmt::V2017_10_01_preview::ManagedDatabaseVulnerabilityAssessmentScans
|
91
|
+
ManagedDatabaseVulnerabilityAssessments = Azure::SQL::Mgmt::V2017_10_01_preview::ManagedDatabaseVulnerabilityAssessments
|
92
|
+
Capabilities = Azure::SQL::Mgmt::V2017_10_01_preview::Capabilities
|
93
|
+
Databases = Azure::SQL::Mgmt::V2017_10_01_preview::Databases
|
94
|
+
ElasticPools = Azure::SQL::Mgmt::V2017_10_01_preview::ElasticPools
|
95
|
+
InstanceFailoverGroups = Azure::SQL::Mgmt::V2017_10_01_preview::InstanceFailoverGroups
|
96
|
+
BackupShortTermRetentionPolicies = Azure::SQL::Mgmt::V2017_10_01_preview::BackupShortTermRetentionPolicies
|
97
|
+
TdeCertificates = Azure::SQL::Mgmt::V2017_10_01_preview::TdeCertificates
|
98
|
+
ManagedInstanceTdeCertificates = Azure::SQL::Mgmt::V2017_10_01_preview::ManagedInstanceTdeCertificates
|
99
|
+
ManagedInstanceKeys = Azure::SQL::Mgmt::V2017_10_01_preview::ManagedInstanceKeys
|
100
|
+
ManagedInstanceEncryptionProtectors = Azure::SQL::Mgmt::V2017_10_01_preview::ManagedInstanceEncryptionProtectors
|
101
|
+
RecoverableManagedDatabases = Azure::SQL::Mgmt::V2017_10_01_preview::RecoverableManagedDatabases
|
102
|
+
DatabaseColumns = Azure::SQL::Mgmt::V2018_06_01_preview::DatabaseColumns
|
103
|
+
DatabaseSchemas = Azure::SQL::Mgmt::V2018_06_01_preview::DatabaseSchemas
|
104
|
+
DatabaseTables = Azure::SQL::Mgmt::V2018_06_01_preview::DatabaseTables
|
105
|
+
DatabaseSecurityAlertPolicies = Azure::SQL::Mgmt::V2018_06_01_preview::DatabaseSecurityAlertPolicies
|
106
|
+
ManagedDatabaseColumns = Azure::SQL::Mgmt::V2018_06_01_preview::ManagedDatabaseColumns
|
107
|
+
ManagedDatabaseSchemas = Azure::SQL::Mgmt::V2018_06_01_preview::ManagedDatabaseSchemas
|
108
|
+
ManagedDatabaseTables = Azure::SQL::Mgmt::V2018_06_01_preview::ManagedDatabaseTables
|
109
|
+
ManagedInstanceVulnerabilityAssessments = Azure::SQL::Mgmt::V2018_06_01_preview::ManagedInstanceVulnerabilityAssessments
|
110
|
+
ServerVulnerabilityAssessments = Azure::SQL::Mgmt::V2018_06_01_preview::ServerVulnerabilityAssessments
|
111
|
+
InstancePools = Azure::SQL::Mgmt::V2018_06_01_preview::InstancePools
|
112
|
+
ManagedDatabaseSensitivityLabels = Azure::SQL::Mgmt::V2018_06_01_preview::ManagedDatabaseSensitivityLabels
|
113
|
+
|
114
|
+
module Models
|
115
|
+
MetricValue = Azure::SQL::Mgmt::V2014_04_01::Models::MetricValue
|
116
|
+
ServiceObjectiveListResult = Azure::SQL::Mgmt::V2014_04_01::Models::ServiceObjectiveListResult
|
117
|
+
DataMaskingRuleListResult = Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingRuleListResult
|
118
|
+
QueryText = Azure::SQL::Mgmt::V2014_04_01::Models::QueryText
|
119
|
+
DatabaseUsageListResult = Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseUsageListResult
|
120
|
+
TransparentDataEncryptionListResult = Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionListResult
|
121
|
+
DatabaseUsage = Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseUsage
|
122
|
+
ExtensionListResult = Azure::SQL::Mgmt::V2014_04_01::Models::ExtensionListResult
|
123
|
+
ServerUsageListResult = Azure::SQL::Mgmt::V2014_04_01::Models::ServerUsageListResult
|
124
|
+
ServerCommunicationLinkListResult = Azure::SQL::Mgmt::V2014_04_01::Models::ServerCommunicationLinkListResult
|
125
|
+
ServerUsage = Azure::SQL::Mgmt::V2014_04_01::Models::ServerUsage
|
126
|
+
DisasterRecoveryConfigurationListResult = Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfigurationListResult
|
127
|
+
ServerAdministratorListResult = Azure::SQL::Mgmt::V2014_04_01::Models::ServerAdministratorListResult
|
128
|
+
ElasticPoolPerDatabaseMaxDtuCapability = Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolPerDatabaseMaxDtuCapability
|
129
|
+
ReplicationLinkListResult = Azure::SQL::Mgmt::V2014_04_01::Models::ReplicationLinkListResult
|
130
|
+
CheckNameAvailabilityResponse = Azure::SQL::Mgmt::V2014_04_01::Models::CheckNameAvailabilityResponse
|
131
|
+
RecommendedElasticPoolListMetricsResult = Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedElasticPoolListMetricsResult
|
132
|
+
SloUsageMetric = Azure::SQL::Mgmt::V2014_04_01::Models::SloUsageMetric
|
133
|
+
GeoBackupPolicyListResult = Azure::SQL::Mgmt::V2014_04_01::Models::GeoBackupPolicyListResult
|
134
|
+
TableAuditingPolicyProperties = Azure::SQL::Mgmt::V2014_04_01::Models::TableAuditingPolicyProperties
|
135
|
+
ImportExtensionRequest = Azure::SQL::Mgmt::V2014_04_01::Models::ImportExtensionRequest
|
136
|
+
TransparentDataEncryptionActivityListResult = Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionActivityListResult
|
137
|
+
RecommendedElasticPoolListResult = Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedElasticPoolListResult
|
138
|
+
ElasticPoolDatabaseActivityListResult = Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolDatabaseActivityListResult
|
139
|
+
RecommendedElasticPoolMetric = Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedElasticPoolMetric
|
140
|
+
ElasticPoolActivityListResult = Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolActivityListResult
|
141
|
+
ExportRequest = Azure::SQL::Mgmt::V2014_04_01::Models::ExportRequest
|
142
|
+
QueryTextListResult = Azure::SQL::Mgmt::V2014_04_01::Models::QueryTextListResult
|
143
|
+
BackupLongTermRetentionVaultListResult = Azure::SQL::Mgmt::V2014_04_01::Models::BackupLongTermRetentionVaultListResult
|
144
|
+
MetricName = Azure::SQL::Mgmt::V2014_04_01::Models::MetricName
|
145
|
+
RestorableDroppedDatabaseListResult = Azure::SQL::Mgmt::V2014_04_01::Models::RestorableDroppedDatabaseListResult
|
146
|
+
Metric = Azure::SQL::Mgmt::V2014_04_01::Models::Metric
|
147
|
+
ElasticPoolPerDatabaseMinDtuCapability = Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolPerDatabaseMinDtuCapability
|
148
|
+
MetricListResult = Azure::SQL::Mgmt::V2014_04_01::Models::MetricListResult
|
149
|
+
MetricAvailability = Azure::SQL::Mgmt::V2014_04_01::Models::MetricAvailability
|
150
|
+
ServerTableAuditingPolicyListResult = Azure::SQL::Mgmt::V2014_04_01::Models::ServerTableAuditingPolicyListResult
|
151
|
+
MetricDefinition = Azure::SQL::Mgmt::V2014_04_01::Models::MetricDefinition
|
152
|
+
OperationImpact = Azure::SQL::Mgmt::V2014_04_01::Models::OperationImpact
|
153
|
+
MetricDefinitionListResult = Azure::SQL::Mgmt::V2014_04_01::Models::MetricDefinitionListResult
|
154
|
+
BackupLongTermRetentionPolicyListResult = Azure::SQL::Mgmt::V2014_04_01::Models::BackupLongTermRetentionPolicyListResult
|
155
|
+
CheckNameAvailabilityRequest = Azure::SQL::Mgmt::V2014_04_01::Models::CheckNameAvailabilityRequest
|
156
|
+
QueryMetric = Azure::SQL::Mgmt::V2014_04_01::Models::QueryMetric
|
157
|
+
ServiceTierAdvisorListResult = Azure::SQL::Mgmt::V2014_04_01::Models::ServiceTierAdvisorListResult
|
158
|
+
QueryInterval = Azure::SQL::Mgmt::V2014_04_01::Models::QueryInterval
|
159
|
+
RecoverableDatabaseListResult = Azure::SQL::Mgmt::V2014_04_01::Models::RecoverableDatabaseListResult
|
160
|
+
QueryStatistic = Azure::SQL::Mgmt::V2014_04_01::Models::QueryStatistic
|
161
|
+
DatabaseTableAuditingPolicyListResult = Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseTableAuditingPolicyListResult
|
162
|
+
TopQueries = Azure::SQL::Mgmt::V2014_04_01::Models::TopQueries
|
163
|
+
ElasticPoolDtuCapability = Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolDtuCapability
|
164
|
+
TopQueriesListResult = Azure::SQL::Mgmt::V2014_04_01::Models::TopQueriesListResult
|
165
|
+
AdvisorListResult = Azure::SQL::Mgmt::V2014_04_01::Models::AdvisorListResult
|
166
|
+
QueryStatisticListResult = Azure::SQL::Mgmt::V2014_04_01::Models::QueryStatisticListResult
|
167
|
+
BackupLongTermRetentionVault = Azure::SQL::Mgmt::V2014_04_01::Models::BackupLongTermRetentionVault
|
168
|
+
RecoverableDatabase = Azure::SQL::Mgmt::V2014_04_01::Models::RecoverableDatabase
|
169
|
+
RestorableDroppedDatabase = Azure::SQL::Mgmt::V2014_04_01::Models::RestorableDroppedDatabase
|
170
|
+
ServerConnectionPolicy = Azure::SQL::Mgmt::V2014_04_01::Models::ServerConnectionPolicy
|
171
|
+
ServiceTierAdvisor = Azure::SQL::Mgmt::V2014_04_01::Models::ServiceTierAdvisor
|
172
|
+
TransparentDataEncryption = Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryption
|
173
|
+
RecommendedIndex = Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedIndex
|
174
|
+
DataMaskingPolicy = Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingPolicy
|
175
|
+
DataMaskingRule = Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingRule
|
176
|
+
DisasterRecoveryConfiguration = Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfiguration
|
177
|
+
GeoBackupPolicy = Azure::SQL::Mgmt::V2014_04_01::Models::GeoBackupPolicy
|
178
|
+
ImportExportResponse = Azure::SQL::Mgmt::V2014_04_01::Models::ImportExportResponse
|
179
|
+
ImportRequest = Azure::SQL::Mgmt::V2014_04_01::Models::ImportRequest
|
180
|
+
RecommendedElasticPool = Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedElasticPool
|
181
|
+
ReplicationLink = Azure::SQL::Mgmt::V2014_04_01::Models::ReplicationLink
|
182
|
+
ServerAzureADAdministrator = Azure::SQL::Mgmt::V2014_04_01::Models::ServerAzureADAdministrator
|
183
|
+
ServerCommunicationLink = Azure::SQL::Mgmt::V2014_04_01::Models::ServerCommunicationLink
|
184
|
+
ServiceObjective = Azure::SQL::Mgmt::V2014_04_01::Models::ServiceObjective
|
185
|
+
ElasticPoolActivity = Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolActivity
|
186
|
+
ElasticPoolDatabaseActivity = Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolDatabaseActivity
|
187
|
+
TransparentDataEncryptionActivity = Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionActivity
|
188
|
+
DatabaseConnectionPolicy = Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseConnectionPolicy
|
189
|
+
DatabaseTableAuditingPolicy = Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseTableAuditingPolicy
|
190
|
+
ServerTableAuditingPolicy = Azure::SQL::Mgmt::V2014_04_01::Models::ServerTableAuditingPolicy
|
191
|
+
BackupLongTermRetentionPolicyState = Azure::SQL::Mgmt::V2014_04_01::Models::BackupLongTermRetentionPolicyState
|
192
|
+
MaxSizeUnits = Azure::SQL::Mgmt::V2014_04_01::Models::MaxSizeUnits
|
193
|
+
CheckNameAvailabilityReason = Azure::SQL::Mgmt::V2014_04_01::Models::CheckNameAvailabilityReason
|
194
|
+
ServerConnectionType = Azure::SQL::Mgmt::V2014_04_01::Models::ServerConnectionType
|
195
|
+
DatabaseEdition = Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseEdition
|
196
|
+
ServiceObjectiveName = Azure::SQL::Mgmt::V2014_04_01::Models::ServiceObjectiveName
|
197
|
+
TransparentDataEncryptionStatus = Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionStatus
|
198
|
+
RecommendedIndexAction = Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedIndexAction
|
199
|
+
RecommendedIndexState = Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedIndexState
|
200
|
+
RecommendedIndexType = Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedIndexType
|
201
|
+
ReadScale = Azure::SQL::Mgmt::V2014_04_01::Models::ReadScale
|
202
|
+
SecurityAlertPolicyEmailAccountAdmins = Azure::SQL::Mgmt::V2014_04_01::Models::SecurityAlertPolicyEmailAccountAdmins
|
203
|
+
SecurityAlertPolicyUseServerDefault = Azure::SQL::Mgmt::V2014_04_01::Models::SecurityAlertPolicyUseServerDefault
|
204
|
+
DataMaskingState = Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingState
|
205
|
+
DataMaskingRuleState = Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingRuleState
|
206
|
+
DataMaskingFunction = Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingFunction
|
207
|
+
DisasterRecoveryConfigurationStatus = Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfigurationStatus
|
208
|
+
DisasterRecoveryConfigurationAutoFailover = Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfigurationAutoFailover
|
209
|
+
DisasterRecoveryConfigurationFailoverPolicy = Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfigurationFailoverPolicy
|
210
|
+
DisasterRecoveryConfigurationRole = Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfigurationRole
|
211
|
+
ElasticPoolEdition = Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolEdition
|
212
|
+
GeoBackupPolicyState = Azure::SQL::Mgmt::V2014_04_01::Models::GeoBackupPolicyState
|
213
|
+
StorageKeyType = Azure::SQL::Mgmt::V2014_04_01::Models::StorageKeyType
|
214
|
+
AuthenticationType = Azure::SQL::Mgmt::V2014_04_01::Models::AuthenticationType
|
215
|
+
UnitType = Azure::SQL::Mgmt::V2014_04_01::Models::UnitType
|
216
|
+
PrimaryAggregationType = Azure::SQL::Mgmt::V2014_04_01::Models::PrimaryAggregationType
|
217
|
+
UnitDefinitionType = Azure::SQL::Mgmt::V2014_04_01::Models::UnitDefinitionType
|
218
|
+
QueryAggregationFunction = Azure::SQL::Mgmt::V2014_04_01::Models::QueryAggregationFunction
|
219
|
+
QueryExecutionType = Azure::SQL::Mgmt::V2014_04_01::Models::QueryExecutionType
|
220
|
+
QueryObservedMetricType = Azure::SQL::Mgmt::V2014_04_01::Models::QueryObservedMetricType
|
221
|
+
QueryMetricUnit = Azure::SQL::Mgmt::V2014_04_01::Models::QueryMetricUnit
|
222
|
+
ReplicationRole = Azure::SQL::Mgmt::V2014_04_01::Models::ReplicationRole
|
223
|
+
ReplicationState = Azure::SQL::Mgmt::V2014_04_01::Models::ReplicationState
|
224
|
+
ServerVersion = Azure::SQL::Mgmt::V2014_04_01::Models::ServerVersion
|
225
|
+
ServerState = Azure::SQL::Mgmt::V2014_04_01::Models::ServerState
|
226
|
+
TransparentDataEncryptionActivityStatus = Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionActivityStatus
|
227
|
+
OperationListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::OperationListResult
|
228
|
+
RecommendedActionStateInfo = Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionStateInfo
|
229
|
+
ManagedInstanceListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedInstanceListResult
|
230
|
+
ManagedInstanceUpdate = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedInstanceUpdate
|
231
|
+
RecommendedActionImpactRecord = Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionImpactRecord
|
232
|
+
OperationDisplay = Azure::SQL::Mgmt::V2015_05_01_preview::Models::OperationDisplay
|
233
|
+
ResourceIdentity = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ResourceIdentity
|
234
|
+
SyncGroupListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupListResult
|
235
|
+
SyncFullSchemaPropertiesListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncFullSchemaPropertiesListResult
|
236
|
+
SyncFullSchemaTable = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncFullSchemaTable
|
237
|
+
SubscriptionUsageListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SubscriptionUsageListResult
|
238
|
+
RecommendedActionErrorInfo = Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionErrorInfo
|
239
|
+
SyncGroupSchema = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupSchema
|
240
|
+
RecommendedActionMetricInfo = Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionMetricInfo
|
241
|
+
EncryptionProtectorListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::EncryptionProtectorListResult
|
242
|
+
SyncFullSchemaProperties = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncFullSchemaProperties
|
243
|
+
FailoverGroupReadOnlyEndpoint = Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroupReadOnlyEndpoint
|
244
|
+
Operation = Azure::SQL::Mgmt::V2015_05_01_preview::Models::Operation
|
245
|
+
SyncGroupSchemaTableColumn = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupSchemaTableColumn
|
246
|
+
RecommendedActionImplementationInfo = Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionImplementationInfo
|
247
|
+
FailoverGroupListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroupListResult
|
248
|
+
SyncGroupLogListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupLogListResult
|
249
|
+
ServerKeyListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ServerKeyListResult
|
250
|
+
FirewallRuleListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::FirewallRuleListResult
|
251
|
+
VirtualNetworkRuleListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualNetworkRuleListResult
|
252
|
+
SyncMemberListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncMemberListResult
|
253
|
+
ServerListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ServerListResult
|
254
|
+
AutomaticTuningOptions = Azure::SQL::Mgmt::V2015_05_01_preview::Models::AutomaticTuningOptions
|
255
|
+
ServerUpdate = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ServerUpdate
|
256
|
+
FailoverGroupReadWriteEndpoint = Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroupReadWriteEndpoint
|
257
|
+
VirtualClusterUpdate = Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualClusterUpdate
|
258
|
+
FailoverGroupUpdate = Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroupUpdate
|
259
|
+
SyncAgentListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentListResult
|
260
|
+
SyncGroupLogProperties = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupLogProperties
|
261
|
+
SyncAgentKeyProperties = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentKeyProperties
|
262
|
+
VirtualClusterListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualClusterListResult
|
263
|
+
PartnerInfo = Azure::SQL::Mgmt::V2015_05_01_preview::Models::PartnerInfo
|
264
|
+
SyncAgentLinkedDatabaseListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentLinkedDatabaseListResult
|
265
|
+
FirewallRuleList = Azure::SQL::Mgmt::V2015_05_01_preview::Models::FirewallRuleList
|
266
|
+
SyncDatabaseIdProperties = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncDatabaseIdProperties
|
267
|
+
ResourceWithWritableName = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ResourceWithWritableName
|
268
|
+
SyncDatabaseIdListResult = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncDatabaseIdListResult
|
269
|
+
SyncGroupSchemaTable = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupSchemaTable
|
270
|
+
SyncFullSchemaTableColumn = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncFullSchemaTableColumn
|
271
|
+
RecommendedAction = Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedAction
|
272
|
+
Advisor = Azure::SQL::Mgmt::V2015_05_01_preview::Models::Advisor
|
273
|
+
DatabaseAutomaticTuning = Azure::SQL::Mgmt::V2015_05_01_preview::Models::DatabaseAutomaticTuning
|
274
|
+
EncryptionProtector = Azure::SQL::Mgmt::V2015_05_01_preview::Models::EncryptionProtector
|
275
|
+
FailoverGroup = Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroup
|
276
|
+
ProxyResourceWithWritableName = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ProxyResourceWithWritableName
|
277
|
+
FirewallRule = Azure::SQL::Mgmt::V2015_05_01_preview::Models::FirewallRule
|
278
|
+
ManagedInstance = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedInstance
|
279
|
+
ServerKey = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ServerKey
|
280
|
+
Server = Azure::SQL::Mgmt::V2015_05_01_preview::Models::Server
|
281
|
+
SyncAgent = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgent
|
282
|
+
SyncAgentLinkedDatabase = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentLinkedDatabase
|
283
|
+
SyncGroup = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroup
|
284
|
+
SyncMember = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncMember
|
285
|
+
SubscriptionUsage = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SubscriptionUsage
|
286
|
+
VirtualCluster = Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualCluster
|
287
|
+
VirtualNetworkRule = Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualNetworkRule
|
288
|
+
AdvisorStatus = Azure::SQL::Mgmt::V2015_05_01_preview::Models::AdvisorStatus
|
289
|
+
AutoExecuteStatus = Azure::SQL::Mgmt::V2015_05_01_preview::Models::AutoExecuteStatus
|
290
|
+
AutoExecuteStatusInheritedFrom = Azure::SQL::Mgmt::V2015_05_01_preview::Models::AutoExecuteStatusInheritedFrom
|
291
|
+
RecommendedActionCurrentState = Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionCurrentState
|
292
|
+
RecommendedActionInitiatedBy = Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionInitiatedBy
|
293
|
+
ImplementationMethod = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ImplementationMethod
|
294
|
+
IsRetryable = Azure::SQL::Mgmt::V2015_05_01_preview::Models::IsRetryable
|
295
|
+
AutomaticTuningMode = Azure::SQL::Mgmt::V2015_05_01_preview::Models::AutomaticTuningMode
|
296
|
+
AutomaticTuningDisabledReason = Azure::SQL::Mgmt::V2015_05_01_preview::Models::AutomaticTuningDisabledReason
|
297
|
+
FailoverGroupReplicationRole = Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroupReplicationRole
|
298
|
+
IdentityType = Azure::SQL::Mgmt::V2015_05_01_preview::Models::IdentityType
|
299
|
+
ManagedServerCreateMode = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedServerCreateMode
|
300
|
+
ManagedInstanceLicenseType = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedInstanceLicenseType
|
301
|
+
ManagedInstanceProxyOverride = Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedInstanceProxyOverride
|
302
|
+
OperationOrigin = Azure::SQL::Mgmt::V2015_05_01_preview::Models::OperationOrigin
|
303
|
+
SyncAgentState = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentState
|
304
|
+
SyncMemberDbType = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncMemberDbType
|
305
|
+
SyncGroupLogType = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupLogType
|
306
|
+
SyncConflictResolutionPolicy = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncConflictResolutionPolicy
|
307
|
+
SyncGroupState = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupState
|
308
|
+
SyncDirection = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncDirection
|
309
|
+
SyncMemberState = Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncMemberState
|
310
|
+
VirtualNetworkRuleState = Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualNetworkRuleState
|
311
|
+
JobExecutionTarget = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobExecutionTarget
|
312
|
+
LogicalServerSecurityAlertPolicyListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::LogicalServerSecurityAlertPolicyListResult
|
313
|
+
AutomaticTuningServerOptions = Azure::SQL::Mgmt::V2017_03_01_preview::Models::AutomaticTuningServerOptions
|
314
|
+
ManagedDatabaseSecurityAlertPolicyListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseSecurityAlertPolicyListResult
|
315
|
+
ServerBlobAuditingPolicyListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerBlobAuditingPolicyListResult
|
316
|
+
JobAgentListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobAgentListResult
|
317
|
+
DatabaseBlobAuditingPolicyListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::DatabaseBlobAuditingPolicyListResult
|
318
|
+
JobAgentUpdate = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobAgentUpdate
|
319
|
+
LongTermRetentionBackupListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::LongTermRetentionBackupListResult
|
320
|
+
ManagedDatabaseUpdate = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseUpdate
|
321
|
+
JobCredentialListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobCredentialListResult
|
322
|
+
ManagedServerSecurityAlertPolicyListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedServerSecurityAlertPolicyListResult
|
323
|
+
CreateDatabaseRestorePointDefinition = Azure::SQL::Mgmt::V2017_03_01_preview::Models::CreateDatabaseRestorePointDefinition
|
324
|
+
ImportExportDatabaseDefinition = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ImportExportDatabaseDefinition
|
325
|
+
JobExecutionListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobExecutionListResult
|
326
|
+
JobSchedule = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobSchedule
|
327
|
+
RestorePointListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::RestorePointListResult
|
328
|
+
JobListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobListResult
|
329
|
+
ServerDnsAliasListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerDnsAliasListResult
|
330
|
+
JobStepAction = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepAction
|
331
|
+
JobVersionListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobVersionListResult
|
332
|
+
JobStepOutput = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepOutput
|
333
|
+
JobStepExecutionOptions = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepExecutionOptions
|
334
|
+
CompleteDatabaseRestoreDefinition = Azure::SQL::Mgmt::V2017_03_01_preview::Models::CompleteDatabaseRestoreDefinition
|
335
|
+
RestorableDroppedManagedDatabaseListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::RestorableDroppedManagedDatabaseListResult
|
336
|
+
JobStepListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepListResult
|
337
|
+
ManagedDatabaseListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseListResult
|
338
|
+
JobTarget = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobTarget
|
339
|
+
ManagedBackupShortTermRetentionPolicyListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedBackupShortTermRetentionPolicyListResult
|
340
|
+
ManagedInstanceAdministratorListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedInstanceAdministratorListResult
|
341
|
+
ServerDnsAliasAcquisition = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerDnsAliasAcquisition
|
342
|
+
JobTargetGroupListResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobTargetGroupListResult
|
343
|
+
ExtendedDatabaseBlobAuditingPolicy = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ExtendedDatabaseBlobAuditingPolicy
|
344
|
+
ExtendedServerBlobAuditingPolicy = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ExtendedServerBlobAuditingPolicy
|
345
|
+
ServerBlobAuditingPolicy = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerBlobAuditingPolicy
|
346
|
+
DatabaseBlobAuditingPolicy = Azure::SQL::Mgmt::V2017_03_01_preview::Models::DatabaseBlobAuditingPolicy
|
347
|
+
ImportExportOperationResult = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ImportExportOperationResult
|
348
|
+
DataWarehouseUserActivities = Azure::SQL::Mgmt::V2017_03_01_preview::Models::DataWarehouseUserActivities
|
349
|
+
JobAgent = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobAgent
|
350
|
+
JobCredential = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobCredential
|
351
|
+
JobExecution = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobExecution
|
352
|
+
Job = Azure::SQL::Mgmt::V2017_03_01_preview::Models::Job
|
353
|
+
JobStep = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStep
|
354
|
+
JobTargetGroup = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobTargetGroup
|
355
|
+
JobVersion = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobVersion
|
356
|
+
LongTermRetentionBackup = Azure::SQL::Mgmt::V2017_03_01_preview::Models::LongTermRetentionBackup
|
357
|
+
BackupLongTermRetentionPolicy = Azure::SQL::Mgmt::V2017_03_01_preview::Models::BackupLongTermRetentionPolicy
|
358
|
+
ManagedBackupShortTermRetentionPolicy = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedBackupShortTermRetentionPolicy
|
359
|
+
ManagedDatabase = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabase
|
360
|
+
RestorableDroppedManagedDatabase = Azure::SQL::Mgmt::V2017_03_01_preview::Models::RestorableDroppedManagedDatabase
|
361
|
+
RestorePoint = Azure::SQL::Mgmt::V2017_03_01_preview::Models::RestorePoint
|
362
|
+
ServerAutomaticTuning = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerAutomaticTuning
|
363
|
+
ServerDnsAlias = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerDnsAlias
|
364
|
+
ServerSecurityAlertPolicy = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerSecurityAlertPolicy
|
365
|
+
ManagedDatabaseSecurityAlertPolicy = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseSecurityAlertPolicy
|
366
|
+
ManagedServerSecurityAlertPolicy = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedServerSecurityAlertPolicy
|
367
|
+
ManagedInstanceAdministrator = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedInstanceAdministrator
|
368
|
+
BlobAuditingPolicyState = Azure::SQL::Mgmt::V2017_03_01_preview::Models::BlobAuditingPolicyState
|
369
|
+
JobAgentState = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobAgentState
|
370
|
+
JobExecutionLifecycle = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobExecutionLifecycle
|
371
|
+
ProvisioningState = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ProvisioningState
|
372
|
+
JobTargetType = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobTargetType
|
373
|
+
JobScheduleType = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobScheduleType
|
374
|
+
JobStepActionType = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepActionType
|
375
|
+
JobStepActionSource = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepActionSource
|
376
|
+
JobStepOutputType = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepOutputType
|
377
|
+
JobTargetGroupMembershipType = Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobTargetGroupMembershipType
|
378
|
+
ManagedDatabaseStatus = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseStatus
|
379
|
+
ManagedDatabaseCreateMode = Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseCreateMode
|
380
|
+
RestorePointType = Azure::SQL::Mgmt::V2017_03_01_preview::Models::RestorePointType
|
381
|
+
AutomaticTuningServerMode = Azure::SQL::Mgmt::V2017_03_01_preview::Models::AutomaticTuningServerMode
|
382
|
+
AutomaticTuningOptionModeDesired = Azure::SQL::Mgmt::V2017_03_01_preview::Models::AutomaticTuningOptionModeDesired
|
383
|
+
AutomaticTuningOptionModeActual = Azure::SQL::Mgmt::V2017_03_01_preview::Models::AutomaticTuningOptionModeActual
|
384
|
+
AutomaticTuningServerReason = Azure::SQL::Mgmt::V2017_03_01_preview::Models::AutomaticTuningServerReason
|
385
|
+
LongTermRetentionDatabaseState = Azure::SQL::Mgmt::V2017_03_01_preview::Models::LongTermRetentionDatabaseState
|
386
|
+
ServerVersionCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ServerVersionCapability
|
387
|
+
ManagedInstanceVcoresCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceVcoresCapability
|
388
|
+
DatabaseOperationListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseOperationListResult
|
389
|
+
ManagedInstanceFamilyCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceFamilyCapability
|
390
|
+
ManagedInstanceEditionCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceEditionCapability
|
391
|
+
ElasticPoolPerDatabaseMaxPerformanceLevelCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolPerDatabaseMaxPerformanceLevelCapability
|
392
|
+
ElasticPoolOperationListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolOperationListResult
|
393
|
+
ElasticPoolPerformanceLevelCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolPerformanceLevelCapability
|
394
|
+
ElasticPoolEditionCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolEditionCapability
|
395
|
+
RecoverableManagedDatabaseListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::RecoverableManagedDatabaseListResult
|
396
|
+
DatabaseVulnerabilityAssessmentRuleBaselineItem = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseVulnerabilityAssessmentRuleBaselineItem
|
397
|
+
ManagedInstanceEncryptionProtectorListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceEncryptionProtectorListResult
|
398
|
+
PartnerRegionInfo = Azure::SQL::Mgmt::V2017_10_01_preview::Models::PartnerRegionInfo
|
399
|
+
ManagedInstanceKeyListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceKeyListResult
|
400
|
+
InstanceFailoverGroupReadOnlyEndpoint = Azure::SQL::Mgmt::V2017_10_01_preview::Models::InstanceFailoverGroupReadOnlyEndpoint
|
401
|
+
MaxSizeCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::MaxSizeCapability
|
402
|
+
LogSizeCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::LogSizeCapability
|
403
|
+
InstanceFailoverGroupReadWriteEndpoint = Azure::SQL::Mgmt::V2017_10_01_preview::Models::InstanceFailoverGroupReadWriteEndpoint
|
404
|
+
PerformanceLevelCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::PerformanceLevelCapability
|
405
|
+
BackupShortTermRetentionPolicyListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::BackupShortTermRetentionPolicyListResult
|
406
|
+
LicenseTypeCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::LicenseTypeCapability
|
407
|
+
ManagedInstanceVersionCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceVersionCapability
|
408
|
+
EditionCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::EditionCapability
|
409
|
+
LocationCapabilities = Azure::SQL::Mgmt::V2017_10_01_preview::Models::LocationCapabilities
|
410
|
+
VulnerabilityAssessmentScanError = Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentScanError
|
411
|
+
InstanceFailoverGroupListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::InstanceFailoverGroupListResult
|
412
|
+
DatabaseListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseListResult
|
413
|
+
MaxSizeRangeCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::MaxSizeRangeCapability
|
414
|
+
DatabaseUpdate = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseUpdate
|
415
|
+
ServiceObjectiveCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ServiceObjectiveCapability
|
416
|
+
ResourceMoveDefinition = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ResourceMoveDefinition
|
417
|
+
VulnerabilityAssessmentScanRecordListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentScanRecordListResult
|
418
|
+
ElasticPoolPerDatabaseSettings = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolPerDatabaseSettings
|
419
|
+
ManagedInstancePairInfo = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstancePairInfo
|
420
|
+
DatabaseVulnerabilityAssessmentListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseVulnerabilityAssessmentListResult
|
421
|
+
ElasticPoolListResult = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolListResult
|
422
|
+
ElasticPoolPerDatabaseMinPerformanceLevelCapability = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolPerDatabaseMinPerformanceLevelCapability
|
423
|
+
ElasticPoolUpdate = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolUpdate
|
424
|
+
DatabaseOperation = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseOperation
|
425
|
+
ElasticPoolOperation = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolOperation
|
426
|
+
VulnerabilityAssessmentScanRecord = Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentScanRecord
|
427
|
+
DatabaseVulnerabilityAssessmentScansExport = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseVulnerabilityAssessmentScansExport
|
428
|
+
DatabaseVulnerabilityAssessmentRuleBaseline = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseVulnerabilityAssessmentRuleBaseline
|
429
|
+
DatabaseVulnerabilityAssessment = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseVulnerabilityAssessment
|
430
|
+
Database = Azure::SQL::Mgmt::V2017_10_01_preview::Models::Database
|
431
|
+
ElasticPool = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPool
|
432
|
+
InstanceFailoverGroup = Azure::SQL::Mgmt::V2017_10_01_preview::Models::InstanceFailoverGroup
|
433
|
+
BackupShortTermRetentionPolicy = Azure::SQL::Mgmt::V2017_10_01_preview::Models::BackupShortTermRetentionPolicy
|
434
|
+
TdeCertificate = Azure::SQL::Mgmt::V2017_10_01_preview::Models::TdeCertificate
|
435
|
+
ManagedInstanceKey = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceKey
|
436
|
+
ManagedInstanceEncryptionProtector = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceEncryptionProtector
|
437
|
+
RecoverableManagedDatabase = Azure::SQL::Mgmt::V2017_10_01_preview::Models::RecoverableManagedDatabase
|
438
|
+
ManagementOperationState = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagementOperationState
|
439
|
+
VulnerabilityAssessmentScanTriggerType = Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentScanTriggerType
|
440
|
+
VulnerabilityAssessmentScanState = Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentScanState
|
441
|
+
MaxSizeUnit = Azure::SQL::Mgmt::V2017_10_01_preview::Models::MaxSizeUnit
|
442
|
+
LogSizeUnit = Azure::SQL::Mgmt::V2017_10_01_preview::Models::LogSizeUnit
|
443
|
+
CapabilityStatus = Azure::SQL::Mgmt::V2017_10_01_preview::Models::CapabilityStatus
|
444
|
+
PerformanceLevelUnit = Azure::SQL::Mgmt::V2017_10_01_preview::Models::PerformanceLevelUnit
|
445
|
+
CreateMode = Azure::SQL::Mgmt::V2017_10_01_preview::Models::CreateMode
|
446
|
+
SampleName = Azure::SQL::Mgmt::V2017_10_01_preview::Models::SampleName
|
447
|
+
DatabaseStatus = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseStatus
|
448
|
+
CatalogCollationType = Azure::SQL::Mgmt::V2017_10_01_preview::Models::CatalogCollationType
|
449
|
+
DatabaseLicenseType = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseLicenseType
|
450
|
+
DatabaseReadScale = Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseReadScale
|
451
|
+
ElasticPoolState = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolState
|
452
|
+
ElasticPoolLicenseType = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolLicenseType
|
453
|
+
ReadWriteEndpointFailoverPolicy = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ReadWriteEndpointFailoverPolicy
|
454
|
+
ReadOnlyEndpointFailoverPolicy = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ReadOnlyEndpointFailoverPolicy
|
455
|
+
InstanceFailoverGroupReplicationRole = Azure::SQL::Mgmt::V2017_10_01_preview::Models::InstanceFailoverGroupReplicationRole
|
456
|
+
ServerKeyType = Azure::SQL::Mgmt::V2017_10_01_preview::Models::ServerKeyType
|
457
|
+
VulnerabilityAssessmentPolicyBaselineName = Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentPolicyBaselineName
|
458
|
+
CapabilityGroup = Azure::SQL::Mgmt::V2017_10_01_preview::Models::CapabilityGroup
|
459
|
+
VulnerabilityAssessmentRecurringScansProperties = Azure::SQL::Mgmt::V2018_06_01_preview::Models::VulnerabilityAssessmentRecurringScansProperties
|
460
|
+
Resource = Azure::SQL::Mgmt::V2018_06_01_preview::Models::Resource
|
461
|
+
DatabaseSecurityAlertListResult = Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseSecurityAlertListResult
|
462
|
+
InstancePoolUpdate = Azure::SQL::Mgmt::V2018_06_01_preview::Models::InstancePoolUpdate
|
463
|
+
DatabaseColumnListResult = Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseColumnListResult
|
464
|
+
Sku = Azure::SQL::Mgmt::V2018_06_01_preview::Models::Sku
|
465
|
+
ServerVulnerabilityAssessmentListResult = Azure::SQL::Mgmt::V2018_06_01_preview::Models::ServerVulnerabilityAssessmentListResult
|
466
|
+
InstancePoolListResult = Azure::SQL::Mgmt::V2018_06_01_preview::Models::InstancePoolListResult
|
467
|
+
SensitivityLabelListResult = Azure::SQL::Mgmt::V2018_06_01_preview::Models::SensitivityLabelListResult
|
468
|
+
DatabaseSchemaListResult = Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseSchemaListResult
|
469
|
+
ManagedInstanceVulnerabilityAssessmentListResult = Azure::SQL::Mgmt::V2018_06_01_preview::Models::ManagedInstanceVulnerabilityAssessmentListResult
|
470
|
+
DatabaseTableListResult = Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseTableListResult
|
471
|
+
ProxyResource = Azure::SQL::Mgmt::V2018_06_01_preview::Models::ProxyResource
|
472
|
+
DatabaseColumn = Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseColumn
|
473
|
+
DatabaseSchema = Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseSchema
|
474
|
+
DatabaseTable = Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseTable
|
475
|
+
DatabaseSecurityAlertPolicy = Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseSecurityAlertPolicy
|
476
|
+
TrackedResource = Azure::SQL::Mgmt::V2018_06_01_preview::Models::TrackedResource
|
477
|
+
ManagedInstanceVulnerabilityAssessment = Azure::SQL::Mgmt::V2018_06_01_preview::Models::ManagedInstanceVulnerabilityAssessment
|
478
|
+
ServerVulnerabilityAssessment = Azure::SQL::Mgmt::V2018_06_01_preview::Models::ServerVulnerabilityAssessment
|
479
|
+
InstancePool = Azure::SQL::Mgmt::V2018_06_01_preview::Models::InstancePool
|
480
|
+
SensitivityLabel = Azure::SQL::Mgmt::V2018_06_01_preview::Models::SensitivityLabel
|
481
|
+
ColumnDataType = Azure::SQL::Mgmt::V2018_06_01_preview::Models::ColumnDataType
|
482
|
+
SecurityAlertPolicyState = Azure::SQL::Mgmt::V2018_06_01_preview::Models::SecurityAlertPolicyState
|
483
|
+
InstancePoolLicenseType = Azure::SQL::Mgmt::V2018_06_01_preview::Models::InstancePoolLicenseType
|
484
|
+
SensitivityLabelSource = Azure::SQL::Mgmt::V2018_06_01_preview::Models::SensitivityLabelSource
|
485
|
+
end
|
486
|
+
|
487
|
+
class SQLManagementClass
|
488
|
+
attr_reader :backup_long_term_retention_vaults, :recoverable_databases, :restorable_dropped_databases, :server_connection_policies, :database_threat_detection_policies, :data_masking_policies, :data_masking_rules, :transparent_data_encryption_configurations, :extensions, :disaster_recovery_configurations, :geo_backup_policies, :queries, :query_statistics, :query_texts, :recommended_elastic_pools, :replication_links, :server_azure_adadministrators, :server_communication_links, :service_objectives, :elastic_pool_activities, :elastic_pool_database_activities, :service_tier_advisors, :transparent_data_encryptions, :transparent_data_encryption_activities, :server_table_auditing_policies, :database_table_auditing_policies, :database_connection_policies, :server_usages, :database_usages, :database_advisors, :database_recommended_actions, :server_advisors, :database_automatic_tuning_operations, :encryption_protectors, :failover_groups, :firewall_rules, :managed_instances, :operations, :server_keys, :servers, :sync_agents, :sync_groups, :sync_members, :subscription_usages, :virtual_clusters, :virtual_network_rules, :extended_database_blob_auditing_policies, :extended_server_blob_auditing_policies, :server_blob_auditing_policies, :database_blob_auditing_policies, :database_vulnerability_assessment_rule_baselines, :database_vulnerability_assessments, :data_warehouse_user_activities_operations, :job_agents, :job_credentials, :job_executions, :jobs, :job_step_executions, :job_steps, :job_target_executions, :job_target_groups, :job_versions, :long_term_retention_backups, :backup_long_term_retention_policies, :managed_backup_short_term_retention_policies, :managed_databases, :managed_restorable_dropped_database_backup_short_term_retention_policies, :restorable_dropped_managed_databases, :restore_points, :server_automatic_tuning_operations, :server_dns_aliases, :server_security_alert_policies, :managed_database_security_alert_policies, :managed_server_security_alert_policies, :sensitivity_labels, :managed_instance_administrators, :database_operations, :elastic_pool_operations, :database_vulnerability_assessment_scans, :managed_database_vulnerability_assessment_rule_baselines, :managed_database_vulnerability_assessment_scans, :managed_database_vulnerability_assessments, :capabilities, :databases, :elastic_pools, :instance_failover_groups, :backup_short_term_retention_policies, :tde_certificates, :managed_instance_tde_certificates, :managed_instance_keys, :managed_instance_encryption_protectors, :recoverable_managed_databases, :database_columns, :database_schemas, :database_tables, :database_security_alert_policies, :managed_database_columns, :managed_database_schemas, :managed_database_tables, :managed_instance_vulnerability_assessments, :server_vulnerability_assessments, :instance_pools, :managed_database_sensitivity_labels, :configurable, :base_url, :options, :model_classes
|
489
|
+
|
490
|
+
def initialize(configurable, base_url=nil, options=nil)
|
491
|
+
@configurable, @base_url, @options = configurable, base_url, options
|
492
|
+
|
493
|
+
@client_0 = Azure::SQL::Mgmt::V2014_04_01::SqlManagementClient.new(configurable.credentials, base_url, options)
|
494
|
+
if(@client_0.respond_to?(:subscription_id))
|
495
|
+
@client_0.subscription_id = configurable.subscription_id
|
496
|
+
end
|
497
|
+
add_telemetry(@client_0)
|
498
|
+
@backup_long_term_retention_vaults = @client_0.backup_long_term_retention_vaults
|
499
|
+
@recoverable_databases = @client_0.recoverable_databases
|
500
|
+
@restorable_dropped_databases = @client_0.restorable_dropped_databases
|
501
|
+
@server_connection_policies = @client_0.server_connection_policies
|
502
|
+
@database_threat_detection_policies = @client_0.database_threat_detection_policies
|
503
|
+
@data_masking_policies = @client_0.data_masking_policies
|
504
|
+
@data_masking_rules = @client_0.data_masking_rules
|
505
|
+
@transparent_data_encryption_configurations = @client_0.transparent_data_encryption_configurations
|
506
|
+
@extensions = @client_0.extensions
|
507
|
+
@disaster_recovery_configurations = @client_0.disaster_recovery_configurations
|
508
|
+
@geo_backup_policies = @client_0.geo_backup_policies
|
509
|
+
@queries = @client_0.queries
|
510
|
+
@query_statistics = @client_0.query_statistics
|
511
|
+
@query_texts = @client_0.query_texts
|
512
|
+
@recommended_elastic_pools = @client_0.recommended_elastic_pools
|
513
|
+
@replication_links = @client_0.replication_links
|
514
|
+
@server_azure_adadministrators = @client_0.server_azure_adadministrators
|
515
|
+
@server_communication_links = @client_0.server_communication_links
|
516
|
+
@service_objectives = @client_0.service_objectives
|
517
|
+
@elastic_pool_activities = @client_0.elastic_pool_activities
|
518
|
+
@elastic_pool_database_activities = @client_0.elastic_pool_database_activities
|
519
|
+
@service_tier_advisors = @client_0.service_tier_advisors
|
520
|
+
@transparent_data_encryptions = @client_0.transparent_data_encryptions
|
521
|
+
@transparent_data_encryption_activities = @client_0.transparent_data_encryption_activities
|
522
|
+
@server_table_auditing_policies = @client_0.server_table_auditing_policies
|
523
|
+
@database_table_auditing_policies = @client_0.database_table_auditing_policies
|
524
|
+
@database_connection_policies = @client_0.database_connection_policies
|
525
|
+
@server_usages = @client_0.server_usages
|
526
|
+
@database_usages = @client_0.database_usages
|
527
|
+
|
528
|
+
@client_1 = Azure::SQL::Mgmt::V2015_05_01_preview::SqlManagementClient.new(configurable.credentials, base_url, options)
|
529
|
+
if(@client_1.respond_to?(:subscription_id))
|
530
|
+
@client_1.subscription_id = configurable.subscription_id
|
531
|
+
end
|
532
|
+
add_telemetry(@client_1)
|
533
|
+
@database_advisors = @client_1.database_advisors
|
534
|
+
@database_recommended_actions = @client_1.database_recommended_actions
|
535
|
+
@server_advisors = @client_1.server_advisors
|
536
|
+
@database_automatic_tuning_operations = @client_1.database_automatic_tuning_operations
|
537
|
+
@encryption_protectors = @client_1.encryption_protectors
|
538
|
+
@failover_groups = @client_1.failover_groups
|
539
|
+
@firewall_rules = @client_1.firewall_rules
|
540
|
+
@managed_instances = @client_1.managed_instances
|
541
|
+
@operations = @client_1.operations
|
542
|
+
@server_keys = @client_1.server_keys
|
543
|
+
@servers = @client_1.servers
|
544
|
+
@sync_agents = @client_1.sync_agents
|
545
|
+
@sync_groups = @client_1.sync_groups
|
546
|
+
@sync_members = @client_1.sync_members
|
547
|
+
@subscription_usages = @client_1.subscription_usages
|
548
|
+
@virtual_clusters = @client_1.virtual_clusters
|
549
|
+
@virtual_network_rules = @client_1.virtual_network_rules
|
550
|
+
|
551
|
+
@client_2 = Azure::SQL::Mgmt::V2017_03_01_preview::SqlManagementClient.new(configurable.credentials, base_url, options)
|
552
|
+
if(@client_2.respond_to?(:subscription_id))
|
553
|
+
@client_2.subscription_id = configurable.subscription_id
|
554
|
+
end
|
555
|
+
add_telemetry(@client_2)
|
556
|
+
@extended_database_blob_auditing_policies = @client_2.extended_database_blob_auditing_policies
|
557
|
+
@extended_server_blob_auditing_policies = @client_2.extended_server_blob_auditing_policies
|
558
|
+
@server_blob_auditing_policies = @client_2.server_blob_auditing_policies
|
559
|
+
@database_blob_auditing_policies = @client_2.database_blob_auditing_policies
|
560
|
+
@database_vulnerability_assessment_rule_baselines = @client_2.database_vulnerability_assessment_rule_baselines
|
561
|
+
@database_vulnerability_assessments = @client_2.database_vulnerability_assessments
|
562
|
+
@data_warehouse_user_activities_operations = @client_2.data_warehouse_user_activities_operations
|
563
|
+
@job_agents = @client_2.job_agents
|
564
|
+
@job_credentials = @client_2.job_credentials
|
565
|
+
@job_executions = @client_2.job_executions
|
566
|
+
@jobs = @client_2.jobs
|
567
|
+
@job_step_executions = @client_2.job_step_executions
|
568
|
+
@job_steps = @client_2.job_steps
|
569
|
+
@job_target_executions = @client_2.job_target_executions
|
570
|
+
@job_target_groups = @client_2.job_target_groups
|
571
|
+
@job_versions = @client_2.job_versions
|
572
|
+
@long_term_retention_backups = @client_2.long_term_retention_backups
|
573
|
+
@backup_long_term_retention_policies = @client_2.backup_long_term_retention_policies
|
574
|
+
@managed_backup_short_term_retention_policies = @client_2.managed_backup_short_term_retention_policies
|
575
|
+
@managed_databases = @client_2.managed_databases
|
576
|
+
@managed_restorable_dropped_database_backup_short_term_retention_policies = @client_2.managed_restorable_dropped_database_backup_short_term_retention_policies
|
577
|
+
@restorable_dropped_managed_databases = @client_2.restorable_dropped_managed_databases
|
578
|
+
@restore_points = @client_2.restore_points
|
579
|
+
@server_automatic_tuning_operations = @client_2.server_automatic_tuning_operations
|
580
|
+
@server_dns_aliases = @client_2.server_dns_aliases
|
581
|
+
@server_security_alert_policies = @client_2.server_security_alert_policies
|
582
|
+
@managed_database_security_alert_policies = @client_2.managed_database_security_alert_policies
|
583
|
+
@managed_server_security_alert_policies = @client_2.managed_server_security_alert_policies
|
584
|
+
@sensitivity_labels = @client_2.sensitivity_labels
|
585
|
+
@managed_instance_administrators = @client_2.managed_instance_administrators
|
586
|
+
|
587
|
+
@client_3 = Azure::SQL::Mgmt::V2017_10_01_preview::SqlManagementClient.new(configurable.credentials, base_url, options)
|
588
|
+
if(@client_3.respond_to?(:subscription_id))
|
589
|
+
@client_3.subscription_id = configurable.subscription_id
|
590
|
+
end
|
591
|
+
add_telemetry(@client_3)
|
592
|
+
@database_operations = @client_3.database_operations
|
593
|
+
@elastic_pool_operations = @client_3.elastic_pool_operations
|
594
|
+
@database_vulnerability_assessment_scans = @client_3.database_vulnerability_assessment_scans
|
595
|
+
@managed_database_vulnerability_assessment_rule_baselines = @client_3.managed_database_vulnerability_assessment_rule_baselines
|
596
|
+
@managed_database_vulnerability_assessment_scans = @client_3.managed_database_vulnerability_assessment_scans
|
597
|
+
@managed_database_vulnerability_assessments = @client_3.managed_database_vulnerability_assessments
|
598
|
+
@capabilities = @client_3.capabilities
|
599
|
+
@databases = @client_3.databases
|
600
|
+
@elastic_pools = @client_3.elastic_pools
|
601
|
+
@instance_failover_groups = @client_3.instance_failover_groups
|
602
|
+
@backup_short_term_retention_policies = @client_3.backup_short_term_retention_policies
|
603
|
+
@tde_certificates = @client_3.tde_certificates
|
604
|
+
@managed_instance_tde_certificates = @client_3.managed_instance_tde_certificates
|
605
|
+
@managed_instance_keys = @client_3.managed_instance_keys
|
606
|
+
@managed_instance_encryption_protectors = @client_3.managed_instance_encryption_protectors
|
607
|
+
@recoverable_managed_databases = @client_3.recoverable_managed_databases
|
608
|
+
|
609
|
+
@client_4 = Azure::SQL::Mgmt::V2018_06_01_preview::SqlManagementClient.new(configurable.credentials, base_url, options)
|
610
|
+
if(@client_4.respond_to?(:subscription_id))
|
611
|
+
@client_4.subscription_id = configurable.subscription_id
|
612
|
+
end
|
613
|
+
add_telemetry(@client_4)
|
614
|
+
@database_columns = @client_4.database_columns
|
615
|
+
@database_schemas = @client_4.database_schemas
|
616
|
+
@database_tables = @client_4.database_tables
|
617
|
+
@database_security_alert_policies = @client_4.database_security_alert_policies
|
618
|
+
@managed_database_columns = @client_4.managed_database_columns
|
619
|
+
@managed_database_schemas = @client_4.managed_database_schemas
|
620
|
+
@managed_database_tables = @client_4.managed_database_tables
|
621
|
+
@managed_instance_vulnerability_assessments = @client_4.managed_instance_vulnerability_assessments
|
622
|
+
@server_vulnerability_assessments = @client_4.server_vulnerability_assessments
|
623
|
+
@instance_pools = @client_4.instance_pools
|
624
|
+
@managed_database_sensitivity_labels = @client_4.managed_database_sensitivity_labels
|
625
|
+
|
626
|
+
@model_classes = ModelClasses.new
|
627
|
+
end
|
628
|
+
|
629
|
+
def add_telemetry(client)
|
630
|
+
profile_information = "Profiles/azure_sdk/#{Azure::VERSION}/Latest/SQL/Mgmt"
|
631
|
+
client.add_user_agent_information(profile_information)
|
632
|
+
end
|
633
|
+
|
634
|
+
def method_missing(method, *args)
|
635
|
+
if @client_4.respond_to?method
|
636
|
+
@client_4.send(method, *args)
|
637
|
+
elsif @client_3.respond_to?method
|
638
|
+
@client_3.send(method, *args)
|
639
|
+
elsif @client_2.respond_to?method
|
640
|
+
@client_2.send(method, *args)
|
641
|
+
elsif @client_1.respond_to?method
|
642
|
+
@client_1.send(method, *args)
|
643
|
+
elsif @client_0.respond_to?method
|
644
|
+
@client_0.send(method, *args)
|
645
|
+
else
|
646
|
+
super
|
647
|
+
end
|
648
|
+
end
|
649
|
+
|
650
|
+
class ModelClasses
|
651
|
+
def metric_value
|
652
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::MetricValue
|
653
|
+
end
|
654
|
+
def service_objective_list_result
|
655
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ServiceObjectiveListResult
|
656
|
+
end
|
657
|
+
def data_masking_rule_list_result
|
658
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingRuleListResult
|
659
|
+
end
|
660
|
+
def query_text
|
661
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::QueryText
|
662
|
+
end
|
663
|
+
def database_usage_list_result
|
664
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseUsageListResult
|
665
|
+
end
|
666
|
+
def transparent_data_encryption_list_result
|
667
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionListResult
|
668
|
+
end
|
669
|
+
def database_usage
|
670
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseUsage
|
671
|
+
end
|
672
|
+
def extension_list_result
|
673
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ExtensionListResult
|
674
|
+
end
|
675
|
+
def server_usage_list_result
|
676
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ServerUsageListResult
|
677
|
+
end
|
678
|
+
def server_communication_link_list_result
|
679
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ServerCommunicationLinkListResult
|
680
|
+
end
|
681
|
+
def server_usage
|
682
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ServerUsage
|
683
|
+
end
|
684
|
+
def disaster_recovery_configuration_list_result
|
685
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfigurationListResult
|
686
|
+
end
|
687
|
+
def server_administrator_list_result
|
688
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ServerAdministratorListResult
|
689
|
+
end
|
690
|
+
def elastic_pool_per_database_max_dtu_capability
|
691
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolPerDatabaseMaxDtuCapability
|
692
|
+
end
|
693
|
+
def replication_link_list_result
|
694
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ReplicationLinkListResult
|
695
|
+
end
|
696
|
+
def check_name_availability_response
|
697
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::CheckNameAvailabilityResponse
|
698
|
+
end
|
699
|
+
def recommended_elastic_pool_list_metrics_result
|
700
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedElasticPoolListMetricsResult
|
701
|
+
end
|
702
|
+
def slo_usage_metric
|
703
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::SloUsageMetric
|
704
|
+
end
|
705
|
+
def geo_backup_policy_list_result
|
706
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::GeoBackupPolicyListResult
|
707
|
+
end
|
708
|
+
def table_auditing_policy_properties
|
709
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::TableAuditingPolicyProperties
|
710
|
+
end
|
711
|
+
def import_extension_request
|
712
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ImportExtensionRequest
|
713
|
+
end
|
714
|
+
def transparent_data_encryption_activity_list_result
|
715
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionActivityListResult
|
716
|
+
end
|
717
|
+
def recommended_elastic_pool_list_result
|
718
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedElasticPoolListResult
|
719
|
+
end
|
720
|
+
def elastic_pool_database_activity_list_result
|
721
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolDatabaseActivityListResult
|
722
|
+
end
|
723
|
+
def recommended_elastic_pool_metric
|
724
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedElasticPoolMetric
|
725
|
+
end
|
726
|
+
def elastic_pool_activity_list_result
|
727
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolActivityListResult
|
728
|
+
end
|
729
|
+
def export_request
|
730
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ExportRequest
|
731
|
+
end
|
732
|
+
def query_text_list_result
|
733
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::QueryTextListResult
|
734
|
+
end
|
735
|
+
def backup_long_term_retention_vault_list_result
|
736
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::BackupLongTermRetentionVaultListResult
|
737
|
+
end
|
738
|
+
def metric_name
|
739
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::MetricName
|
740
|
+
end
|
741
|
+
def restorable_dropped_database_list_result
|
742
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::RestorableDroppedDatabaseListResult
|
743
|
+
end
|
744
|
+
def metric
|
745
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::Metric
|
746
|
+
end
|
747
|
+
def elastic_pool_per_database_min_dtu_capability
|
748
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolPerDatabaseMinDtuCapability
|
749
|
+
end
|
750
|
+
def metric_list_result
|
751
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::MetricListResult
|
752
|
+
end
|
753
|
+
def metric_availability
|
754
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::MetricAvailability
|
755
|
+
end
|
756
|
+
def server_table_auditing_policy_list_result
|
757
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ServerTableAuditingPolicyListResult
|
758
|
+
end
|
759
|
+
def metric_definition
|
760
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::MetricDefinition
|
761
|
+
end
|
762
|
+
def operation_impact
|
763
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::OperationImpact
|
764
|
+
end
|
765
|
+
def metric_definition_list_result
|
766
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::MetricDefinitionListResult
|
767
|
+
end
|
768
|
+
def backup_long_term_retention_policy_list_result
|
769
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::BackupLongTermRetentionPolicyListResult
|
770
|
+
end
|
771
|
+
def check_name_availability_request
|
772
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::CheckNameAvailabilityRequest
|
773
|
+
end
|
774
|
+
def query_metric
|
775
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::QueryMetric
|
776
|
+
end
|
777
|
+
def service_tier_advisor_list_result
|
778
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ServiceTierAdvisorListResult
|
779
|
+
end
|
780
|
+
def query_interval
|
781
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::QueryInterval
|
782
|
+
end
|
783
|
+
def recoverable_database_list_result
|
784
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::RecoverableDatabaseListResult
|
785
|
+
end
|
786
|
+
def query_statistic
|
787
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::QueryStatistic
|
788
|
+
end
|
789
|
+
def database_table_auditing_policy_list_result
|
790
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseTableAuditingPolicyListResult
|
791
|
+
end
|
792
|
+
def top_queries
|
793
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::TopQueries
|
794
|
+
end
|
795
|
+
def elastic_pool_dtu_capability
|
796
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolDtuCapability
|
797
|
+
end
|
798
|
+
def top_queries_list_result
|
799
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::TopQueriesListResult
|
800
|
+
end
|
801
|
+
def advisor_list_result
|
802
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::AdvisorListResult
|
803
|
+
end
|
804
|
+
def query_statistic_list_result
|
805
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::QueryStatisticListResult
|
806
|
+
end
|
807
|
+
def backup_long_term_retention_vault
|
808
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::BackupLongTermRetentionVault
|
809
|
+
end
|
810
|
+
def recoverable_database
|
811
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::RecoverableDatabase
|
812
|
+
end
|
813
|
+
def restorable_dropped_database
|
814
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::RestorableDroppedDatabase
|
815
|
+
end
|
816
|
+
def server_connection_policy
|
817
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ServerConnectionPolicy
|
818
|
+
end
|
819
|
+
def service_tier_advisor
|
820
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ServiceTierAdvisor
|
821
|
+
end
|
822
|
+
def transparent_data_encryption
|
823
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryption
|
824
|
+
end
|
825
|
+
def recommended_index
|
826
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedIndex
|
827
|
+
end
|
828
|
+
def data_masking_policy
|
829
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingPolicy
|
830
|
+
end
|
831
|
+
def data_masking_rule
|
832
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingRule
|
833
|
+
end
|
834
|
+
def disaster_recovery_configuration
|
835
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfiguration
|
836
|
+
end
|
837
|
+
def geo_backup_policy
|
838
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::GeoBackupPolicy
|
839
|
+
end
|
840
|
+
def import_export_response
|
841
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ImportExportResponse
|
842
|
+
end
|
843
|
+
def import_request
|
844
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ImportRequest
|
845
|
+
end
|
846
|
+
def recommended_elastic_pool
|
847
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedElasticPool
|
848
|
+
end
|
849
|
+
def replication_link
|
850
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ReplicationLink
|
851
|
+
end
|
852
|
+
def server_azure_adadministrator
|
853
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ServerAzureADAdministrator
|
854
|
+
end
|
855
|
+
def server_communication_link
|
856
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ServerCommunicationLink
|
857
|
+
end
|
858
|
+
def service_objective
|
859
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ServiceObjective
|
860
|
+
end
|
861
|
+
def elastic_pool_activity
|
862
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolActivity
|
863
|
+
end
|
864
|
+
def elastic_pool_database_activity
|
865
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolDatabaseActivity
|
866
|
+
end
|
867
|
+
def transparent_data_encryption_activity
|
868
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionActivity
|
869
|
+
end
|
870
|
+
def database_connection_policy
|
871
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseConnectionPolicy
|
872
|
+
end
|
873
|
+
def database_table_auditing_policy
|
874
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseTableAuditingPolicy
|
875
|
+
end
|
876
|
+
def server_table_auditing_policy
|
877
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ServerTableAuditingPolicy
|
878
|
+
end
|
879
|
+
def backup_long_term_retention_policy_state
|
880
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::BackupLongTermRetentionPolicyState
|
881
|
+
end
|
882
|
+
def max_size_units
|
883
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::MaxSizeUnits
|
884
|
+
end
|
885
|
+
def check_name_availability_reason
|
886
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::CheckNameAvailabilityReason
|
887
|
+
end
|
888
|
+
def server_connection_type
|
889
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ServerConnectionType
|
890
|
+
end
|
891
|
+
def database_edition
|
892
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::DatabaseEdition
|
893
|
+
end
|
894
|
+
def service_objective_name
|
895
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ServiceObjectiveName
|
896
|
+
end
|
897
|
+
def transparent_data_encryption_status
|
898
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionStatus
|
899
|
+
end
|
900
|
+
def recommended_index_action
|
901
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedIndexAction
|
902
|
+
end
|
903
|
+
def recommended_index_state
|
904
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedIndexState
|
905
|
+
end
|
906
|
+
def recommended_index_type
|
907
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::RecommendedIndexType
|
908
|
+
end
|
909
|
+
def read_scale
|
910
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ReadScale
|
911
|
+
end
|
912
|
+
def security_alert_policy_email_account_admins
|
913
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::SecurityAlertPolicyEmailAccountAdmins
|
914
|
+
end
|
915
|
+
def security_alert_policy_use_server_default
|
916
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::SecurityAlertPolicyUseServerDefault
|
917
|
+
end
|
918
|
+
def data_masking_state
|
919
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingState
|
920
|
+
end
|
921
|
+
def data_masking_rule_state
|
922
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingRuleState
|
923
|
+
end
|
924
|
+
def data_masking_function
|
925
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::DataMaskingFunction
|
926
|
+
end
|
927
|
+
def disaster_recovery_configuration_status
|
928
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfigurationStatus
|
929
|
+
end
|
930
|
+
def disaster_recovery_configuration_auto_failover
|
931
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfigurationAutoFailover
|
932
|
+
end
|
933
|
+
def disaster_recovery_configuration_failover_policy
|
934
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfigurationFailoverPolicy
|
935
|
+
end
|
936
|
+
def disaster_recovery_configuration_role
|
937
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::DisasterRecoveryConfigurationRole
|
938
|
+
end
|
939
|
+
def elastic_pool_edition
|
940
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ElasticPoolEdition
|
941
|
+
end
|
942
|
+
def geo_backup_policy_state
|
943
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::GeoBackupPolicyState
|
944
|
+
end
|
945
|
+
def storage_key_type
|
946
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::StorageKeyType
|
947
|
+
end
|
948
|
+
def authentication_type
|
949
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::AuthenticationType
|
950
|
+
end
|
951
|
+
def unit_type
|
952
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::UnitType
|
953
|
+
end
|
954
|
+
def primary_aggregation_type
|
955
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::PrimaryAggregationType
|
956
|
+
end
|
957
|
+
def unit_definition_type
|
958
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::UnitDefinitionType
|
959
|
+
end
|
960
|
+
def query_aggregation_function
|
961
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::QueryAggregationFunction
|
962
|
+
end
|
963
|
+
def query_execution_type
|
964
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::QueryExecutionType
|
965
|
+
end
|
966
|
+
def query_observed_metric_type
|
967
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::QueryObservedMetricType
|
968
|
+
end
|
969
|
+
def query_metric_unit
|
970
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::QueryMetricUnit
|
971
|
+
end
|
972
|
+
def replication_role
|
973
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ReplicationRole
|
974
|
+
end
|
975
|
+
def replication_state
|
976
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ReplicationState
|
977
|
+
end
|
978
|
+
def server_version
|
979
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ServerVersion
|
980
|
+
end
|
981
|
+
def server_state
|
982
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::ServerState
|
983
|
+
end
|
984
|
+
def transparent_data_encryption_activity_status
|
985
|
+
Azure::SQL::Mgmt::V2014_04_01::Models::TransparentDataEncryptionActivityStatus
|
986
|
+
end
|
987
|
+
def operation_list_result
|
988
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::OperationListResult
|
989
|
+
end
|
990
|
+
def recommended_action_state_info
|
991
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionStateInfo
|
992
|
+
end
|
993
|
+
def managed_instance_list_result
|
994
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedInstanceListResult
|
995
|
+
end
|
996
|
+
def managed_instance_update
|
997
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedInstanceUpdate
|
998
|
+
end
|
999
|
+
def recommended_action_impact_record
|
1000
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionImpactRecord
|
1001
|
+
end
|
1002
|
+
def operation_display
|
1003
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::OperationDisplay
|
1004
|
+
end
|
1005
|
+
def resource_identity
|
1006
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ResourceIdentity
|
1007
|
+
end
|
1008
|
+
def sync_group_list_result
|
1009
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupListResult
|
1010
|
+
end
|
1011
|
+
def sync_full_schema_properties_list_result
|
1012
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncFullSchemaPropertiesListResult
|
1013
|
+
end
|
1014
|
+
def sync_full_schema_table
|
1015
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncFullSchemaTable
|
1016
|
+
end
|
1017
|
+
def subscription_usage_list_result
|
1018
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SubscriptionUsageListResult
|
1019
|
+
end
|
1020
|
+
def recommended_action_error_info
|
1021
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionErrorInfo
|
1022
|
+
end
|
1023
|
+
def sync_group_schema
|
1024
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupSchema
|
1025
|
+
end
|
1026
|
+
def recommended_action_metric_info
|
1027
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionMetricInfo
|
1028
|
+
end
|
1029
|
+
def encryption_protector_list_result
|
1030
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::EncryptionProtectorListResult
|
1031
|
+
end
|
1032
|
+
def sync_full_schema_properties
|
1033
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncFullSchemaProperties
|
1034
|
+
end
|
1035
|
+
def failover_group_read_only_endpoint
|
1036
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroupReadOnlyEndpoint
|
1037
|
+
end
|
1038
|
+
def operation
|
1039
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::Operation
|
1040
|
+
end
|
1041
|
+
def sync_group_schema_table_column
|
1042
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupSchemaTableColumn
|
1043
|
+
end
|
1044
|
+
def recommended_action_implementation_info
|
1045
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionImplementationInfo
|
1046
|
+
end
|
1047
|
+
def failover_group_list_result
|
1048
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroupListResult
|
1049
|
+
end
|
1050
|
+
def sync_group_log_list_result
|
1051
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupLogListResult
|
1052
|
+
end
|
1053
|
+
def server_key_list_result
|
1054
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ServerKeyListResult
|
1055
|
+
end
|
1056
|
+
def firewall_rule_list_result
|
1057
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::FirewallRuleListResult
|
1058
|
+
end
|
1059
|
+
def virtual_network_rule_list_result
|
1060
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualNetworkRuleListResult
|
1061
|
+
end
|
1062
|
+
def sync_member_list_result
|
1063
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncMemberListResult
|
1064
|
+
end
|
1065
|
+
def server_list_result
|
1066
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ServerListResult
|
1067
|
+
end
|
1068
|
+
def automatic_tuning_options
|
1069
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::AutomaticTuningOptions
|
1070
|
+
end
|
1071
|
+
def server_update
|
1072
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ServerUpdate
|
1073
|
+
end
|
1074
|
+
def failover_group_read_write_endpoint
|
1075
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroupReadWriteEndpoint
|
1076
|
+
end
|
1077
|
+
def virtual_cluster_update
|
1078
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualClusterUpdate
|
1079
|
+
end
|
1080
|
+
def failover_group_update
|
1081
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroupUpdate
|
1082
|
+
end
|
1083
|
+
def sync_agent_list_result
|
1084
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentListResult
|
1085
|
+
end
|
1086
|
+
def sync_group_log_properties
|
1087
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupLogProperties
|
1088
|
+
end
|
1089
|
+
def sync_agent_key_properties
|
1090
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentKeyProperties
|
1091
|
+
end
|
1092
|
+
def virtual_cluster_list_result
|
1093
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualClusterListResult
|
1094
|
+
end
|
1095
|
+
def partner_info
|
1096
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::PartnerInfo
|
1097
|
+
end
|
1098
|
+
def sync_agent_linked_database_list_result
|
1099
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentLinkedDatabaseListResult
|
1100
|
+
end
|
1101
|
+
def firewall_rule_list
|
1102
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::FirewallRuleList
|
1103
|
+
end
|
1104
|
+
def sync_database_id_properties
|
1105
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncDatabaseIdProperties
|
1106
|
+
end
|
1107
|
+
def resource_with_writable_name
|
1108
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ResourceWithWritableName
|
1109
|
+
end
|
1110
|
+
def sync_database_id_list_result
|
1111
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncDatabaseIdListResult
|
1112
|
+
end
|
1113
|
+
def sync_group_schema_table
|
1114
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupSchemaTable
|
1115
|
+
end
|
1116
|
+
def sync_full_schema_table_column
|
1117
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncFullSchemaTableColumn
|
1118
|
+
end
|
1119
|
+
def recommended_action
|
1120
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedAction
|
1121
|
+
end
|
1122
|
+
def advisor
|
1123
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::Advisor
|
1124
|
+
end
|
1125
|
+
def database_automatic_tuning
|
1126
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::DatabaseAutomaticTuning
|
1127
|
+
end
|
1128
|
+
def encryption_protector
|
1129
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::EncryptionProtector
|
1130
|
+
end
|
1131
|
+
def failover_group
|
1132
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroup
|
1133
|
+
end
|
1134
|
+
def proxy_resource_with_writable_name
|
1135
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ProxyResourceWithWritableName
|
1136
|
+
end
|
1137
|
+
def firewall_rule
|
1138
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::FirewallRule
|
1139
|
+
end
|
1140
|
+
def managed_instance
|
1141
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedInstance
|
1142
|
+
end
|
1143
|
+
def server_key
|
1144
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ServerKey
|
1145
|
+
end
|
1146
|
+
def server
|
1147
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::Server
|
1148
|
+
end
|
1149
|
+
def sync_agent
|
1150
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgent
|
1151
|
+
end
|
1152
|
+
def sync_agent_linked_database
|
1153
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentLinkedDatabase
|
1154
|
+
end
|
1155
|
+
def sync_group
|
1156
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroup
|
1157
|
+
end
|
1158
|
+
def sync_member
|
1159
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncMember
|
1160
|
+
end
|
1161
|
+
def subscription_usage
|
1162
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SubscriptionUsage
|
1163
|
+
end
|
1164
|
+
def virtual_cluster
|
1165
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualCluster
|
1166
|
+
end
|
1167
|
+
def virtual_network_rule
|
1168
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualNetworkRule
|
1169
|
+
end
|
1170
|
+
def advisor_status
|
1171
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::AdvisorStatus
|
1172
|
+
end
|
1173
|
+
def auto_execute_status
|
1174
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::AutoExecuteStatus
|
1175
|
+
end
|
1176
|
+
def auto_execute_status_inherited_from
|
1177
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::AutoExecuteStatusInheritedFrom
|
1178
|
+
end
|
1179
|
+
def recommended_action_current_state
|
1180
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionCurrentState
|
1181
|
+
end
|
1182
|
+
def recommended_action_initiated_by
|
1183
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::RecommendedActionInitiatedBy
|
1184
|
+
end
|
1185
|
+
def implementation_method
|
1186
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ImplementationMethod
|
1187
|
+
end
|
1188
|
+
def is_retryable
|
1189
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::IsRetryable
|
1190
|
+
end
|
1191
|
+
def automatic_tuning_mode
|
1192
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::AutomaticTuningMode
|
1193
|
+
end
|
1194
|
+
def automatic_tuning_disabled_reason
|
1195
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::AutomaticTuningDisabledReason
|
1196
|
+
end
|
1197
|
+
def failover_group_replication_role
|
1198
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::FailoverGroupReplicationRole
|
1199
|
+
end
|
1200
|
+
def identity_type
|
1201
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::IdentityType
|
1202
|
+
end
|
1203
|
+
def managed_server_create_mode
|
1204
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedServerCreateMode
|
1205
|
+
end
|
1206
|
+
def managed_instance_license_type
|
1207
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedInstanceLicenseType
|
1208
|
+
end
|
1209
|
+
def managed_instance_proxy_override
|
1210
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::ManagedInstanceProxyOverride
|
1211
|
+
end
|
1212
|
+
def operation_origin
|
1213
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::OperationOrigin
|
1214
|
+
end
|
1215
|
+
def sync_agent_state
|
1216
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncAgentState
|
1217
|
+
end
|
1218
|
+
def sync_member_db_type
|
1219
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncMemberDbType
|
1220
|
+
end
|
1221
|
+
def sync_group_log_type
|
1222
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupLogType
|
1223
|
+
end
|
1224
|
+
def sync_conflict_resolution_policy
|
1225
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncConflictResolutionPolicy
|
1226
|
+
end
|
1227
|
+
def sync_group_state
|
1228
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncGroupState
|
1229
|
+
end
|
1230
|
+
def sync_direction
|
1231
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncDirection
|
1232
|
+
end
|
1233
|
+
def sync_member_state
|
1234
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::SyncMemberState
|
1235
|
+
end
|
1236
|
+
def virtual_network_rule_state
|
1237
|
+
Azure::SQL::Mgmt::V2015_05_01_preview::Models::VirtualNetworkRuleState
|
1238
|
+
end
|
1239
|
+
def job_execution_target
|
1240
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobExecutionTarget
|
1241
|
+
end
|
1242
|
+
def logical_server_security_alert_policy_list_result
|
1243
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::LogicalServerSecurityAlertPolicyListResult
|
1244
|
+
end
|
1245
|
+
def automatic_tuning_server_options
|
1246
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::AutomaticTuningServerOptions
|
1247
|
+
end
|
1248
|
+
def managed_database_security_alert_policy_list_result
|
1249
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseSecurityAlertPolicyListResult
|
1250
|
+
end
|
1251
|
+
def server_blob_auditing_policy_list_result
|
1252
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerBlobAuditingPolicyListResult
|
1253
|
+
end
|
1254
|
+
def job_agent_list_result
|
1255
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobAgentListResult
|
1256
|
+
end
|
1257
|
+
def database_blob_auditing_policy_list_result
|
1258
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::DatabaseBlobAuditingPolicyListResult
|
1259
|
+
end
|
1260
|
+
def job_agent_update
|
1261
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobAgentUpdate
|
1262
|
+
end
|
1263
|
+
def long_term_retention_backup_list_result
|
1264
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::LongTermRetentionBackupListResult
|
1265
|
+
end
|
1266
|
+
def managed_database_update
|
1267
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseUpdate
|
1268
|
+
end
|
1269
|
+
def job_credential_list_result
|
1270
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobCredentialListResult
|
1271
|
+
end
|
1272
|
+
def managed_server_security_alert_policy_list_result
|
1273
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedServerSecurityAlertPolicyListResult
|
1274
|
+
end
|
1275
|
+
def create_database_restore_point_definition
|
1276
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::CreateDatabaseRestorePointDefinition
|
1277
|
+
end
|
1278
|
+
def import_export_database_definition
|
1279
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ImportExportDatabaseDefinition
|
1280
|
+
end
|
1281
|
+
def job_execution_list_result
|
1282
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobExecutionListResult
|
1283
|
+
end
|
1284
|
+
def job_schedule
|
1285
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobSchedule
|
1286
|
+
end
|
1287
|
+
def restore_point_list_result
|
1288
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::RestorePointListResult
|
1289
|
+
end
|
1290
|
+
def job_list_result
|
1291
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobListResult
|
1292
|
+
end
|
1293
|
+
def server_dns_alias_list_result
|
1294
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerDnsAliasListResult
|
1295
|
+
end
|
1296
|
+
def job_step_action
|
1297
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepAction
|
1298
|
+
end
|
1299
|
+
def job_version_list_result
|
1300
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobVersionListResult
|
1301
|
+
end
|
1302
|
+
def job_step_output
|
1303
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepOutput
|
1304
|
+
end
|
1305
|
+
def job_step_execution_options
|
1306
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepExecutionOptions
|
1307
|
+
end
|
1308
|
+
def complete_database_restore_definition
|
1309
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::CompleteDatabaseRestoreDefinition
|
1310
|
+
end
|
1311
|
+
def restorable_dropped_managed_database_list_result
|
1312
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::RestorableDroppedManagedDatabaseListResult
|
1313
|
+
end
|
1314
|
+
def job_step_list_result
|
1315
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepListResult
|
1316
|
+
end
|
1317
|
+
def managed_database_list_result
|
1318
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseListResult
|
1319
|
+
end
|
1320
|
+
def job_target
|
1321
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobTarget
|
1322
|
+
end
|
1323
|
+
def managed_backup_short_term_retention_policy_list_result
|
1324
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedBackupShortTermRetentionPolicyListResult
|
1325
|
+
end
|
1326
|
+
def managed_instance_administrator_list_result
|
1327
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedInstanceAdministratorListResult
|
1328
|
+
end
|
1329
|
+
def server_dns_alias_acquisition
|
1330
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerDnsAliasAcquisition
|
1331
|
+
end
|
1332
|
+
def job_target_group_list_result
|
1333
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobTargetGroupListResult
|
1334
|
+
end
|
1335
|
+
def extended_database_blob_auditing_policy
|
1336
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ExtendedDatabaseBlobAuditingPolicy
|
1337
|
+
end
|
1338
|
+
def extended_server_blob_auditing_policy
|
1339
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ExtendedServerBlobAuditingPolicy
|
1340
|
+
end
|
1341
|
+
def server_blob_auditing_policy
|
1342
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerBlobAuditingPolicy
|
1343
|
+
end
|
1344
|
+
def database_blob_auditing_policy
|
1345
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::DatabaseBlobAuditingPolicy
|
1346
|
+
end
|
1347
|
+
def import_export_operation_result
|
1348
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ImportExportOperationResult
|
1349
|
+
end
|
1350
|
+
def data_warehouse_user_activities
|
1351
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::DataWarehouseUserActivities
|
1352
|
+
end
|
1353
|
+
def job_agent
|
1354
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobAgent
|
1355
|
+
end
|
1356
|
+
def job_credential
|
1357
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobCredential
|
1358
|
+
end
|
1359
|
+
def job_execution
|
1360
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobExecution
|
1361
|
+
end
|
1362
|
+
def job
|
1363
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::Job
|
1364
|
+
end
|
1365
|
+
def job_step
|
1366
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStep
|
1367
|
+
end
|
1368
|
+
def job_target_group
|
1369
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobTargetGroup
|
1370
|
+
end
|
1371
|
+
def job_version
|
1372
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobVersion
|
1373
|
+
end
|
1374
|
+
def long_term_retention_backup
|
1375
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::LongTermRetentionBackup
|
1376
|
+
end
|
1377
|
+
def backup_long_term_retention_policy
|
1378
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::BackupLongTermRetentionPolicy
|
1379
|
+
end
|
1380
|
+
def managed_backup_short_term_retention_policy
|
1381
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedBackupShortTermRetentionPolicy
|
1382
|
+
end
|
1383
|
+
def managed_database
|
1384
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabase
|
1385
|
+
end
|
1386
|
+
def restorable_dropped_managed_database
|
1387
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::RestorableDroppedManagedDatabase
|
1388
|
+
end
|
1389
|
+
def restore_point
|
1390
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::RestorePoint
|
1391
|
+
end
|
1392
|
+
def server_automatic_tuning
|
1393
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerAutomaticTuning
|
1394
|
+
end
|
1395
|
+
def server_dns_alias
|
1396
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerDnsAlias
|
1397
|
+
end
|
1398
|
+
def server_security_alert_policy
|
1399
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ServerSecurityAlertPolicy
|
1400
|
+
end
|
1401
|
+
def managed_database_security_alert_policy
|
1402
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseSecurityAlertPolicy
|
1403
|
+
end
|
1404
|
+
def managed_server_security_alert_policy
|
1405
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedServerSecurityAlertPolicy
|
1406
|
+
end
|
1407
|
+
def managed_instance_administrator
|
1408
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedInstanceAdministrator
|
1409
|
+
end
|
1410
|
+
def blob_auditing_policy_state
|
1411
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::BlobAuditingPolicyState
|
1412
|
+
end
|
1413
|
+
def job_agent_state
|
1414
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobAgentState
|
1415
|
+
end
|
1416
|
+
def job_execution_lifecycle
|
1417
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobExecutionLifecycle
|
1418
|
+
end
|
1419
|
+
def provisioning_state
|
1420
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ProvisioningState
|
1421
|
+
end
|
1422
|
+
def job_target_type
|
1423
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobTargetType
|
1424
|
+
end
|
1425
|
+
def job_schedule_type
|
1426
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobScheduleType
|
1427
|
+
end
|
1428
|
+
def job_step_action_type
|
1429
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepActionType
|
1430
|
+
end
|
1431
|
+
def job_step_action_source
|
1432
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepActionSource
|
1433
|
+
end
|
1434
|
+
def job_step_output_type
|
1435
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobStepOutputType
|
1436
|
+
end
|
1437
|
+
def job_target_group_membership_type
|
1438
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::JobTargetGroupMembershipType
|
1439
|
+
end
|
1440
|
+
def managed_database_status
|
1441
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseStatus
|
1442
|
+
end
|
1443
|
+
def managed_database_create_mode
|
1444
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::ManagedDatabaseCreateMode
|
1445
|
+
end
|
1446
|
+
def restore_point_type
|
1447
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::RestorePointType
|
1448
|
+
end
|
1449
|
+
def automatic_tuning_server_mode
|
1450
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::AutomaticTuningServerMode
|
1451
|
+
end
|
1452
|
+
def automatic_tuning_option_mode_desired
|
1453
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::AutomaticTuningOptionModeDesired
|
1454
|
+
end
|
1455
|
+
def automatic_tuning_option_mode_actual
|
1456
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::AutomaticTuningOptionModeActual
|
1457
|
+
end
|
1458
|
+
def automatic_tuning_server_reason
|
1459
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::AutomaticTuningServerReason
|
1460
|
+
end
|
1461
|
+
def long_term_retention_database_state
|
1462
|
+
Azure::SQL::Mgmt::V2017_03_01_preview::Models::LongTermRetentionDatabaseState
|
1463
|
+
end
|
1464
|
+
def server_version_capability
|
1465
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ServerVersionCapability
|
1466
|
+
end
|
1467
|
+
def managed_instance_vcores_capability
|
1468
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceVcoresCapability
|
1469
|
+
end
|
1470
|
+
def database_operation_list_result
|
1471
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseOperationListResult
|
1472
|
+
end
|
1473
|
+
def managed_instance_family_capability
|
1474
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceFamilyCapability
|
1475
|
+
end
|
1476
|
+
def managed_instance_edition_capability
|
1477
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceEditionCapability
|
1478
|
+
end
|
1479
|
+
def elastic_pool_per_database_max_performance_level_capability
|
1480
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolPerDatabaseMaxPerformanceLevelCapability
|
1481
|
+
end
|
1482
|
+
def elastic_pool_operation_list_result
|
1483
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolOperationListResult
|
1484
|
+
end
|
1485
|
+
def elastic_pool_performance_level_capability
|
1486
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolPerformanceLevelCapability
|
1487
|
+
end
|
1488
|
+
def elastic_pool_edition_capability
|
1489
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolEditionCapability
|
1490
|
+
end
|
1491
|
+
def recoverable_managed_database_list_result
|
1492
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::RecoverableManagedDatabaseListResult
|
1493
|
+
end
|
1494
|
+
def database_vulnerability_assessment_rule_baseline_item
|
1495
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseVulnerabilityAssessmentRuleBaselineItem
|
1496
|
+
end
|
1497
|
+
def managed_instance_encryption_protector_list_result
|
1498
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceEncryptionProtectorListResult
|
1499
|
+
end
|
1500
|
+
def partner_region_info
|
1501
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::PartnerRegionInfo
|
1502
|
+
end
|
1503
|
+
def managed_instance_key_list_result
|
1504
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceKeyListResult
|
1505
|
+
end
|
1506
|
+
def instance_failover_group_read_only_endpoint
|
1507
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::InstanceFailoverGroupReadOnlyEndpoint
|
1508
|
+
end
|
1509
|
+
def max_size_capability
|
1510
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::MaxSizeCapability
|
1511
|
+
end
|
1512
|
+
def log_size_capability
|
1513
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::LogSizeCapability
|
1514
|
+
end
|
1515
|
+
def instance_failover_group_read_write_endpoint
|
1516
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::InstanceFailoverGroupReadWriteEndpoint
|
1517
|
+
end
|
1518
|
+
def performance_level_capability
|
1519
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::PerformanceLevelCapability
|
1520
|
+
end
|
1521
|
+
def backup_short_term_retention_policy_list_result
|
1522
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::BackupShortTermRetentionPolicyListResult
|
1523
|
+
end
|
1524
|
+
def license_type_capability
|
1525
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::LicenseTypeCapability
|
1526
|
+
end
|
1527
|
+
def managed_instance_version_capability
|
1528
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceVersionCapability
|
1529
|
+
end
|
1530
|
+
def edition_capability
|
1531
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::EditionCapability
|
1532
|
+
end
|
1533
|
+
def location_capabilities
|
1534
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::LocationCapabilities
|
1535
|
+
end
|
1536
|
+
def vulnerability_assessment_scan_error
|
1537
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentScanError
|
1538
|
+
end
|
1539
|
+
def instance_failover_group_list_result
|
1540
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::InstanceFailoverGroupListResult
|
1541
|
+
end
|
1542
|
+
def database_list_result
|
1543
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseListResult
|
1544
|
+
end
|
1545
|
+
def max_size_range_capability
|
1546
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::MaxSizeRangeCapability
|
1547
|
+
end
|
1548
|
+
def database_update
|
1549
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseUpdate
|
1550
|
+
end
|
1551
|
+
def service_objective_capability
|
1552
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ServiceObjectiveCapability
|
1553
|
+
end
|
1554
|
+
def resource_move_definition
|
1555
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ResourceMoveDefinition
|
1556
|
+
end
|
1557
|
+
def vulnerability_assessment_scan_record_list_result
|
1558
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentScanRecordListResult
|
1559
|
+
end
|
1560
|
+
def elastic_pool_per_database_settings
|
1561
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolPerDatabaseSettings
|
1562
|
+
end
|
1563
|
+
def managed_instance_pair_info
|
1564
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstancePairInfo
|
1565
|
+
end
|
1566
|
+
def database_vulnerability_assessment_list_result
|
1567
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseVulnerabilityAssessmentListResult
|
1568
|
+
end
|
1569
|
+
def elastic_pool_list_result
|
1570
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolListResult
|
1571
|
+
end
|
1572
|
+
def elastic_pool_per_database_min_performance_level_capability
|
1573
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolPerDatabaseMinPerformanceLevelCapability
|
1574
|
+
end
|
1575
|
+
def elastic_pool_update
|
1576
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolUpdate
|
1577
|
+
end
|
1578
|
+
def database_operation
|
1579
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseOperation
|
1580
|
+
end
|
1581
|
+
def elastic_pool_operation
|
1582
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolOperation
|
1583
|
+
end
|
1584
|
+
def vulnerability_assessment_scan_record
|
1585
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentScanRecord
|
1586
|
+
end
|
1587
|
+
def database_vulnerability_assessment_scans_export
|
1588
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseVulnerabilityAssessmentScansExport
|
1589
|
+
end
|
1590
|
+
def database_vulnerability_assessment_rule_baseline
|
1591
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseVulnerabilityAssessmentRuleBaseline
|
1592
|
+
end
|
1593
|
+
def database_vulnerability_assessment
|
1594
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseVulnerabilityAssessment
|
1595
|
+
end
|
1596
|
+
def database
|
1597
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::Database
|
1598
|
+
end
|
1599
|
+
def elastic_pool
|
1600
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPool
|
1601
|
+
end
|
1602
|
+
def instance_failover_group
|
1603
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::InstanceFailoverGroup
|
1604
|
+
end
|
1605
|
+
def backup_short_term_retention_policy
|
1606
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::BackupShortTermRetentionPolicy
|
1607
|
+
end
|
1608
|
+
def tde_certificate
|
1609
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::TdeCertificate
|
1610
|
+
end
|
1611
|
+
def managed_instance_key
|
1612
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceKey
|
1613
|
+
end
|
1614
|
+
def managed_instance_encryption_protector
|
1615
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagedInstanceEncryptionProtector
|
1616
|
+
end
|
1617
|
+
def recoverable_managed_database
|
1618
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::RecoverableManagedDatabase
|
1619
|
+
end
|
1620
|
+
def management_operation_state
|
1621
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ManagementOperationState
|
1622
|
+
end
|
1623
|
+
def vulnerability_assessment_scan_trigger_type
|
1624
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentScanTriggerType
|
1625
|
+
end
|
1626
|
+
def vulnerability_assessment_scan_state
|
1627
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentScanState
|
1628
|
+
end
|
1629
|
+
def max_size_unit
|
1630
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::MaxSizeUnit
|
1631
|
+
end
|
1632
|
+
def log_size_unit
|
1633
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::LogSizeUnit
|
1634
|
+
end
|
1635
|
+
def capability_status
|
1636
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::CapabilityStatus
|
1637
|
+
end
|
1638
|
+
def performance_level_unit
|
1639
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::PerformanceLevelUnit
|
1640
|
+
end
|
1641
|
+
def create_mode
|
1642
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::CreateMode
|
1643
|
+
end
|
1644
|
+
def sample_name
|
1645
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::SampleName
|
1646
|
+
end
|
1647
|
+
def database_status
|
1648
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseStatus
|
1649
|
+
end
|
1650
|
+
def catalog_collation_type
|
1651
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::CatalogCollationType
|
1652
|
+
end
|
1653
|
+
def database_license_type
|
1654
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseLicenseType
|
1655
|
+
end
|
1656
|
+
def database_read_scale
|
1657
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::DatabaseReadScale
|
1658
|
+
end
|
1659
|
+
def elastic_pool_state
|
1660
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolState
|
1661
|
+
end
|
1662
|
+
def elastic_pool_license_type
|
1663
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ElasticPoolLicenseType
|
1664
|
+
end
|
1665
|
+
def read_write_endpoint_failover_policy
|
1666
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ReadWriteEndpointFailoverPolicy
|
1667
|
+
end
|
1668
|
+
def read_only_endpoint_failover_policy
|
1669
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ReadOnlyEndpointFailoverPolicy
|
1670
|
+
end
|
1671
|
+
def instance_failover_group_replication_role
|
1672
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::InstanceFailoverGroupReplicationRole
|
1673
|
+
end
|
1674
|
+
def server_key_type
|
1675
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::ServerKeyType
|
1676
|
+
end
|
1677
|
+
def vulnerability_assessment_policy_baseline_name
|
1678
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::VulnerabilityAssessmentPolicyBaselineName
|
1679
|
+
end
|
1680
|
+
def capability_group
|
1681
|
+
Azure::SQL::Mgmt::V2017_10_01_preview::Models::CapabilityGroup
|
1682
|
+
end
|
1683
|
+
def vulnerability_assessment_recurring_scans_properties
|
1684
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::VulnerabilityAssessmentRecurringScansProperties
|
1685
|
+
end
|
1686
|
+
def resource
|
1687
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::Resource
|
1688
|
+
end
|
1689
|
+
def database_security_alert_list_result
|
1690
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseSecurityAlertListResult
|
1691
|
+
end
|
1692
|
+
def instance_pool_update
|
1693
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::InstancePoolUpdate
|
1694
|
+
end
|
1695
|
+
def database_column_list_result
|
1696
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseColumnListResult
|
1697
|
+
end
|
1698
|
+
def sku
|
1699
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::Sku
|
1700
|
+
end
|
1701
|
+
def server_vulnerability_assessment_list_result
|
1702
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::ServerVulnerabilityAssessmentListResult
|
1703
|
+
end
|
1704
|
+
def instance_pool_list_result
|
1705
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::InstancePoolListResult
|
1706
|
+
end
|
1707
|
+
def sensitivity_label_list_result
|
1708
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::SensitivityLabelListResult
|
1709
|
+
end
|
1710
|
+
def database_schema_list_result
|
1711
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseSchemaListResult
|
1712
|
+
end
|
1713
|
+
def managed_instance_vulnerability_assessment_list_result
|
1714
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::ManagedInstanceVulnerabilityAssessmentListResult
|
1715
|
+
end
|
1716
|
+
def database_table_list_result
|
1717
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseTableListResult
|
1718
|
+
end
|
1719
|
+
def proxy_resource
|
1720
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::ProxyResource
|
1721
|
+
end
|
1722
|
+
def database_column
|
1723
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseColumn
|
1724
|
+
end
|
1725
|
+
def database_schema
|
1726
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseSchema
|
1727
|
+
end
|
1728
|
+
def database_table
|
1729
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseTable
|
1730
|
+
end
|
1731
|
+
def database_security_alert_policy
|
1732
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::DatabaseSecurityAlertPolicy
|
1733
|
+
end
|
1734
|
+
def tracked_resource
|
1735
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::TrackedResource
|
1736
|
+
end
|
1737
|
+
def managed_instance_vulnerability_assessment
|
1738
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::ManagedInstanceVulnerabilityAssessment
|
1739
|
+
end
|
1740
|
+
def server_vulnerability_assessment
|
1741
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::ServerVulnerabilityAssessment
|
1742
|
+
end
|
1743
|
+
def instance_pool
|
1744
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::InstancePool
|
1745
|
+
end
|
1746
|
+
def sensitivity_label
|
1747
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::SensitivityLabel
|
1748
|
+
end
|
1749
|
+
def column_data_type
|
1750
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::ColumnDataType
|
1751
|
+
end
|
1752
|
+
def security_alert_policy_state
|
1753
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::SecurityAlertPolicyState
|
1754
|
+
end
|
1755
|
+
def instance_pool_license_type
|
1756
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::InstancePoolLicenseType
|
1757
|
+
end
|
1758
|
+
def sensitivity_label_source
|
1759
|
+
Azure::SQL::Mgmt::V2018_06_01_preview::Models::SensitivityLabelSource
|
1760
|
+
end
|
1761
|
+
end
|
1762
|
+
end
|
1763
|
+
end
|
1764
|
+
end
|
1765
|
+
end
|