Skip to main content

integration_service_environment_managed_api_operations

Creates, updates, deletes, gets or lists an integration_service_environment_managed_api_operations resource.

Overview

Nameintegration_service_environment_managed_api_operations
TypeResource
Idazure.logic.integration_service_environment_managed_api_operations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe resource id.
namestringGets the resource name.
annotationobjectThe annotation of api operation.
apiobjectThe api reference.
descriptionstringThe description of the api operation.
inputsDefinitionobjectThe operation inputs definition schema.
isNotificationbooleanIndicates whether the API operation is notification or not.
isWebhookbooleanIndicates whether the API operation is webhook or not.
locationstringThe resource location.
pageablebooleanIndicates whether the api operation is pageable.
responsesDefinitionobjectThe operation responses definition schemas.
summarystringThe summary of the api operation.
tagsobjectThe resource tags.
triggerstringThe trigger type of api operation.
triggerHintstringThe trigger hint for the api operation.
typestringGets the resource type.
visibilitystringThe visibility of the api operation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresource_group, integration_service_environment_name, api_name, subscription_idGets 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.

NameDatatypeDescription
api_namestringThe api name. Required.
integration_service_environment_namestringThe integration service environment name. Required.
resource_groupstringThe resource group. Required.
subscription_idstring

SELECT examples

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
;