operation_results
Creates, updates, deletes, gets or lists an operation_results resource.
Overview
| Name | operation_results |
| Type | Resource |
| Id | azure.recovery_services.operation_results |
Fields
The following fields are returned by SELECT queries:
- get_operation_result
| Name | Datatype | Description |
|---|---|---|
id | string | Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}. |
name | string | The name of the resource. |
backupStorageVersion | string | Backup storage version. Known values are: "V1", "V2", and "Unassigned". (V1, V2, Unassigned) |
bcdrSecurityLevel | string | Security levels of Recovery Services Vault for business continuity and disaster recovery. Known values are: "Poor", "Fair", "Good", and "Excellent". (Poor, Fair, Good, Excellent) |
encryption | object | Customer Managed Key details of the resource. |
etag | string | etag for the resource. |
identity | object | Identity for the resource. |
location | string | The geo-location where the resource lives. Required. |
monitoringSettings | object | Monitoring Settings of the vault. |
moveDetails | object | The details of the latest move operation performed on the Azure Resource. |
moveState | string | The State of the Resource after the move operation. Known values are: "Unknown", "InProgress", "PrepareFailed", "CommitFailed", "PrepareTimedout", "CommitTimedout", "MoveSucceeded", "Failure", "CriticalFailure", and "PartialSuccess". (Unknown, InProgress, PrepareFailed, CommitFailed, PrepareTimedout, CommitTimedout, MoveSucceeded, Failure, CriticalFailure, PartialSuccess) |
privateEndpointConnections | array | List of private endpoint connection. |
privateEndpointStateForBackup | string | Private endpoint state for backup. Known values are: "None" and "Enabled". (None, Enabled) |
privateEndpointStateForSiteRecovery | string | Private endpoint state for site recovery. Known values are: "None" and "Enabled". (None, Enabled) |
provisioningState | string | Provisioning State. |
publicNetworkAccess | string | property to enable or disable resource provider inbound network traffic from public clients. Known values are: "Enabled" and "Disabled". (Enabled, Disabled) |
redundancySettings | object | The redundancy Settings of a Vault. |
resourceGuardOperationRequests | array | ResourceGuardOperationRequests on which LAC check will be performed. |
restoreSettings | object | Restore Settings of the vault. |
secureScore | string | Secure Score of Recovery Services Vault. Known values are: "None", "Minimum", "Adequate", and "Maximum". (None, Minimum, Adequate, Maximum) |
securitySettings | object | Security Settings of the vault. |
sku | object | Identifies the unique system identifier for each Azure resource. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
tags | object | Resource tags. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts". |
upgradeDetails | object | Details for upgrading vault. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_operation_result | select | resource_group_name, vault_name, operation_id, subscription_id | Gets the operation result for a 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.
| Name | Datatype | Description |
|---|---|---|
operation_id | string | The name of the Vault. Required. |
resource_group_name | string | The name of the resource group. The name is case insensitive. Required. |
subscription_id | string | |
vault_name | string | The name of the Vault. Required. |
SELECT examples
- get_operation_result
Gets the operation result for a resource.
SELECT
id,
name,
backupStorageVersion,
bcdrSecurityLevel,
encryption,
etag,
identity,
location,
monitoringSettings,
moveDetails,
moveState,
privateEndpointConnections,
privateEndpointStateForBackup,
privateEndpointStateForSiteRecovery,
provisioningState,
publicNetworkAccess,
redundancySettings,
resourceGuardOperationRequests,
restoreSettings,
secureScore,
securitySettings,
sku,
systemData,
tags,
type,
upgradeDetails
FROM azure.recovery_services.operation_results
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND vault_name = '{{ vault_name }}' -- required
AND operation_id = '{{ operation_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;