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.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. |
annotation | object | The annotation of api operation. |
api | object | The api reference. |
description | string | The description of the api operation. |
inputsDefinition | object | The operation inputs definition schema. |
isNotification | boolean | Indicates whether the API operation is notification or not. |
isWebhook | boolean | Indicates whether the API operation is webhook or not. |
location | string | The resource location. |
pageable | boolean | Indicates whether the api operation is pageable. |
responsesDefinition | object | The operation responses definition schemas. |
summary | string | The summary of the api operation. |
tags | object | The resource tags. |
trigger | string | The trigger type of api operation. |
triggerHint | string | The trigger hint for the api operation. |
type | string | Gets the resource type. |
visibility | string | The visibility of the api operation. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | resource_group, integration_service_environment_name, api_name, subscription_id | 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 |
|---|---|---|
api_name | string | The api name. Required. |
integration_service_environment_name | string | The integration service environment name. Required. |
resource_group | string | The resource group. Required. |
subscription_id | string |
SELECT examples
- list
Gets the managed Api operations.
SELECT
id,
name,
annotation,
api,
description,
inputsDefinition,
isNotification,
isWebhook,
location,
pageable,
responsesDefinition,
summary,
tags,
trigger,
triggerHint,
type,
visibility
FROM azure.logic.integration_service_environment_managed_api_operations
WHERE resource_group = '{{ resource_group }}' -- required
AND integration_service_environment_name = '{{ integration_service_environment_name }}' -- required
AND api_name = '{{ api_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;