integration_service_environment_managed_api_operations
Creates, updates, deletes, gets or lists an integration_service_environment_managed_api_operations
resource.
Overview
Name | integration_service_environment_managed_api_operations |
Type | Resource |
Id | azure.logic_apps.integration_service_environment_managed_api_operations |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
id | string | The resource id. |
name | string | Gets the resource name. |
location | string | The resource location. |
properties | object | The api operations properties |
tags | object | The resource tags. |
type | string | Gets the resource type. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroup , integrationServiceEnvironmentName , apiName | api-version | Gets the managed 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 |
---|---|---|
apiName | string | The api name. |
integrationServiceEnvironmentName | string | The integration service environment name. |
resourceGroup | string | The resource group. |
subscriptionId | string | The subscription id. |
api-version | string | The API version. |
SELECT
examples
- list
Gets the managed Api operations.
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.logic_apps.integration_service_environment_managed_api_operations
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroup = '{{ resourceGroup }}' -- required
AND integrationServiceEnvironmentName = '{{ integrationServiceEnvironmentName }}' -- required
AND apiName = '{{ apiName }}' -- required
AND api-version = '{{ api-version }}'
;