professional_service_operations
Creates, updates, deletes, gets or lists a professional_service_operations
resource.
Overview
Name | professional_service_operations |
Type | Resource |
Id | azure_extras.professional_services.professional_service_operations |
Fields
The following fields are returned by SELECT
queries:
- get
Operation ended successfully. The request returns the updated ProfessionalService resource.
Name | Datatype | Description |
---|---|---|
id | string | The resource uri |
name | string | The name of the resource |
properties | object | professionalService resource properties |
tags | object | the resource tags. |
type | string | Resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | operationId | Gets 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.
Name | Datatype | Description |
---|---|---|
operationId | string | the operation Id parameter. |
SELECT
examples
- get
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
;