Skip to main content

integration_service_environment_managed_api_operations

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

Overview

Nameintegration_service_environment_managed_api_operations
TypeResource
Idazure.logic_apps.integration_service_environment_managed_api_operations

Fields

NameDatatypeDescription
idstringThe resource id.
namestringGets the resource name.
locationstringThe resource location.
propertiesobjectThe api operations properties
tagsobjectThe resource tags.
typestringGets the resource type.

Methods

NameAccessible byRequired ParamsDescription
listSELECTapiName, integrationServiceEnvironmentName, resourceGroup, subscriptionIdGets the managed Api operations.

SELECT examples

Gets the managed Api operations.

SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.logic_apps.integration_service_environment_managed_api_operations
WHERE apiName = '{{ apiName }}'
AND integrationServiceEnvironmentName = '{{ integrationServiceEnvironmentName }}'
AND resourceGroup = '{{ resourceGroup }}'
AND subscriptionId = '{{ subscriptionId }}';