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

The following fields are returned by SELECT queries:

ARM operation completed successfully.

NameDatatypeDescription
idstringGets the Id.
namestringGets the operation name.
endTimestringGets the start time.
errorobjectGets the error.
propertiesobjectOperation status properties
startTimestringGets the start time.
statusstringGets 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.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, resourceGroupName, siteName, operationStatusNameA operation status resource belonging to a site resource.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
operationStatusNamestringOperation status Arm Name.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
siteNamestringSite name
subscriptionIdstringThe ID of the target subscription.

SELECT examples

A operation status resource belonging to a site resource.

SELECT
id,
name,
endTime,
error,
properties,
startTime,
status
FROM azure.migrate.server_operations_status_controller_server_site_operations_status
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND siteName = '{{ siteName }}' -- required
AND operationStatusName = '{{ operationStatusName }}' -- required
;