Skip to main content

location_based_operation_results

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

Overview

Namelocation_based_operation_results
TypeResource
Idazure.recovery_services_data_replication.location_based_operation_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringGets or sets the Id.
namestringGets or sets the operation name.
endTimestringGets or sets the end time.
startTimestringGets or sets the start time.
statusstringGets or sets 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
getselectresource_group_name, location, operation_id, subscription_idGets the location based operation result status. Gets the location based operation result.

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
locationstringThe name of the Azure region. Required.
operation_idstringThe ID of an ongoing async operation. Required.
resource_group_namestringThe name of the resource group. The name is case insensitive. Required.
subscription_idstring

SELECT examples

Gets the location based operation result status. Gets the location based operation result.

SELECT
id,
name,
endTime,
startTime,
status
FROM azure.recovery_services_data_replication.location_based_operation_results
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND location = '{{ location }}' -- required
AND operation_id = '{{ operation_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;