Skip to main content

server_operations_status_controller_server_site_operations_status

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

Overview

Nameserver_operations_status_controller_server_site_operations_status
TypeResource
Idazure.migrate.server_operations_status_controller_server_site_operations_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
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, subscriptionIdA operation status resource belonging to a site resource.

SELECT examples

A operation status resource belonging to a site resource.

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