Skip to main content

professional_service_operations

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

Overview

Nameprofessional_service_operations
TypeResource
Idazure_extras.professional_services.professional_service_operations

Fields

The following fields are returned by SELECT queries:

Operation ended successfully. The request returns the updated ProfessionalService resource.

NameDatatypeDescription
idstringThe resource uri
namestringThe name of the resource
propertiesobjectprofessionalService resource properties
tagsobjectthe resource tags.
typestringResource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectoperationIdGets information about the specified operation progress.

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
operationIdstringthe operation Id parameter.

SELECT examples

Gets information about the specified operation progress.

SELECT
id,
name,
properties,
tags,
type
FROM azure_extras.professional_services.professional_service_operations
WHERE operationId = '{{ operationId }}' -- required
;