Skip to main content

managed_database_move_operations

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

Overview

Namemanaged_database_move_operations
TypeResource
Idazure.sql.managed_database_move_operations

Fields

NameDatatypeDescription
error_codetextfield from the properties object
error_descriptiontextfield from the properties object
error_severitytextfield from the properties object
is_cancellabletextfield from the properties object
is_user_errortextfield from the properties object
locationNametextfield from the properties object
operationtextfield from the properties object
operationIdtextfield from the properties object
operation_friendly_nametextfield from the properties object
operation_modetextfield from the properties object
resourceGroupNametextfield from the properties object
source_database_nametextfield from the properties object
source_managed_instance_idtextfield from the properties object
source_managed_instance_nametextfield from the properties object
start_timetextfield from the properties object
statetextfield from the properties object
subscriptionIdtextfield from the properties object
target_database_nametextfield from the properties object
target_managed_instance_idtextfield from the properties object
target_managed_instance_nametextfield from the properties object

Methods

NameAccessible byRequired ParamsDescription
getSELECTlocationName, operationId, resourceGroupName, subscriptionIdGets a managed database move operation.
list_by_locationSELECTlocationName, resourceGroupName, subscriptionIdLists managed database move operations.

SELECT examples

Lists managed database move operations.

SELECT
error_code,
error_description,
error_severity,
is_cancellable,
is_user_error,
locationName,
operation,
operationId,
operation_friendly_name,
operation_mode,
resourceGroupName,
source_database_name,
source_managed_instance_id,
source_managed_instance_name,
start_time,
state,
subscriptionId,
target_database_name,
target_managed_instance_id,
target_managed_instance_name
FROM azure.sql.vw_managed_database_move_operations
WHERE locationName = '{{ locationName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';