operations
Creates, updates, deletes, gets or lists a operations
resource.
Overview
Name | operations |
Type | Resource |
Id | azure.api_management.operations |
Fields
Name | Datatype | Description |
---|---|---|
api | object | API contract properties for the Tag Resources. |
operation | object | Operation Entity contract Properties. |
product | object | Product profile. |
tag | object | Contract defining the Tag property in the Tag Resource Contract |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT |
| Lists all of the available REST API operations of the Microsoft.ApiManagement provider. |
list_by_tags | SELECT | apiId, resourceGroupName, serviceName, subscriptionId | Lists a collection of operations associated with tags. |
perform_connectivity_check_async | EXEC | resourceGroupName, serviceName, subscriptionId, data__destination, data__source | Performs a connectivity check between the API Management service and a given destination, and returns metrics for the connection, as well as errors encountered while trying to establish it. |
SELECT
examples
Lists all of the available REST API operations of the Microsoft.ApiManagement provider.
SELECT
api,
operation,
product,
tag
FROM azure.api_management.operations
;