provider_operations
Creates, updates, deletes, gets or lists a provider_operations
resource.
Overview
Name | provider_operations |
Type | Resource |
Id | azure.dev_test_labs.provider_operations |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
name | string | Operation name: {provider}/{resource}/{operation} |
display | object | The object that describes the operations |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | api-version | Result of the request to list REST API operations |
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 |
---|---|---|
api-version | string | Client API version. |
SELECT
examples
- list
Result of the request to list REST API operations
SELECT
name,
display
FROM azure.dev_test_labs.provider_operations
WHERE api-version = '{{ api-version }}'
;