Skip to main content

network_security_perimeter_operation_statuses

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

Overview

Namenetwork_security_perimeter_operation_statuses
TypeResource
Idazure.network.network_security_perimeter_operation_statuses

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringFully qualified ID for the async operation.
namestringName of the async operation.
endTimestring (date-time)The end time of the operation.
errorobjectIf present, details of the operation error.
operationsarrayThe operations list.
percentCompletenumberPercent of the operation that is complete.
resourceIdstringFully qualified ID of the resource against which the original async operation was started.
startTimestring (date-time)The start time of the operation.
statusstringOperation status. Required.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectlocation, operation_id, subscription_idGets the operation status for the given operation id.

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 operation id of the async operation. Required.
subscription_idstring

SELECT examples

Gets the operation status for the given operation id.

SELECT
id,
name,
endTime,
error,
operations,
percentComplete,
resourceId,
startTime,
status
FROM azure.network.network_security_perimeter_operation_statuses
WHERE location = '{{ location }}' -- required
AND operation_id = '{{ operation_id }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;