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_apps.integration_service_environment_managed_api_operations

Fields

The following fields are returned by SELECT queries:

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

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroup, integrationServiceEnvironmentName, apiNameapi-versionGets 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
apiNamestringThe api name.
integrationServiceEnvironmentNamestringThe integration service environment name.
resourceGroupstringThe resource group.
subscriptionIdstringThe subscription id.
api-versionstringThe API version.

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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroup = '{{ resourceGroup }}' -- required
AND integrationServiceEnvironmentName = '{{ integrationServiceEnvironmentName }}' -- required
AND apiName = '{{ apiName }}' -- required
AND api-version = '{{ api-version }}'
;