Skip to main content

sql_operations_status_controller_sql_operation_status

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

Overview

Namesql_operations_status_controller_sql_operation_status
TypeResource
Idazure.migrate.sql_operations_status_controller_sql_operation_status

Fields

NameDatatypeDescription
idtextGets the Id.
nametextGets the operation name.
end_timetextfield from the properties object
errortextClass for operation status errors.
operationStatusNametextfield from the properties object
resourceGroupNametextfield from the properties object
resulttextfield from the properties object
siteNametextfield from the properties object
sqlSiteNametextfield from the properties object
start_timetextfield from the properties object
statustextGets the status of the operation. ARM expects the terminal status to be one

of Succeeded/ Failed/ Canceled. All other values imply that the operation is still running. | | subscriptionId | text | field from the properties object |

Methods

NameAccessible byRequired ParamsDescription
getSELECToperationStatusName, resourceGroupName, siteName, sqlSiteName, subscriptionIdMethod to get operation status.

SELECT examples

Method to get operation status.

SELECT
id,
name,
end_time,
error,
operationStatusName,
resourceGroupName,
result,
siteName,
sqlSiteName,
start_time,
status,
subscriptionId
FROM azure.migrate.vw_sql_operations_status_controller_sql_operation_status
WHERE operationStatusName = '{{ operationStatusName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND siteName = '{{ siteName }}'
AND sqlSiteName = '{{ sqlSiteName }}'
AND subscriptionId = '{{ subscriptionId }}';