Skip to main content

sql_databases_controllers

Creates, updates, deletes, gets or lists a sql_databases_controllers resource.

Overview

Namesql_databases_controllers
TypeResource
Idazure.migrate.sql_databases_controllers

Fields

NameDatatypeDescription
compatibility_leveltextfield from the properties object
created_timestamptextfield from the properties object
database_nametextfield from the properties object
errorstextfield from the properties object
file_metadata_listtextfield from the properties object
hostnametextfield from the properties object
is_database_highly_availabletextfield from the properties object
is_deletedtextfield from the properties object
parent_replica_overviewtextfield from the properties object
provisioning_statetextfield from the properties object
resourceGroupNametextfield from the properties object
siteNametextfield from the properties object
size_mbtextfield from the properties object
sqlDatabaseNametextfield from the properties object
sqlSiteNametextfield from the properties object
sql_server_arm_idtextfield from the properties object
sql_server_nametextfield from the properties object
statustextfield from the properties object
subscriptionIdtextfield from the properties object
updated_timestamptextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTresourceGroupName, siteName, sqlDatabaseName, sqlSiteName, subscriptionIdGets the sql Database.
list_by_sql_siteSELECTresourceGroupName, siteName, sqlSiteName, subscriptionIdGets the sql Databases.

SELECT examples

Gets the sql Databases.

SELECT
compatibility_level,
created_timestamp,
database_name,
errors,
file_metadata_list,
hostname,
is_database_highly_available,
is_deleted,
parent_replica_overview,
provisioning_state,
resourceGroupName,
siteName,
size_mb,
sqlDatabaseName,
sqlSiteName,
sql_server_arm_id,
sql_server_name,
status,
subscriptionId,
updated_timestamp
FROM azure.migrate.vw_sql_databases_controllers
WHERE resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND sqlSiteName = '{{ sqlSiteName }}'
AND subscriptionId = '{{ subscriptionId }}';