Skip to main content

dev_ops_operation_results

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

Overview

Namedev_ops_operation_results
TypeResource
Idazure.security.dev_ops_operation_results

Fields

NameDatatypeDescription
idstringFully qualified ID for the async operation.
namestringName of the async operation.
endTimestringThe end time of the operation.
errorobjectThe error detail.
operationsarrayThe operations list.
percentCompletenumberPercent of the operation that is complete.
resourceIdstringFully qualified ID of the resource against which the original async operation was started.
startTimestringThe start time of the operation.
statusstringOperation status.

Methods

NameAccessible byRequired ParamsDescription
getSELECToperationResultId, resourceGroupName, securityConnectorName, subscriptionId

SELECT examples

SELECT
id,
name,
endTime,
error,
operations,
percentComplete,
resourceId,
startTime,
status
FROM azure.security.dev_ops_operation_results
WHERE operationResultId = '{{ operationResultId }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND securityConnectorName = '{{ securityConnectorName }}'
AND subscriptionId = '{{ subscriptionId }}';