integration_service_environment_managed_apis
Creates, updates, deletes, gets or lists an integration_service_environment_managed_apis
resource.
Overview
Name | integration_service_environment_managed_apis |
Type | Resource |
Id | azure.logic_apps.integration_service_environment_managed_apis |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Name | Datatype | Description |
---|---|---|
id | string | The resource id. |
name | string | Gets the resource name. |
location | string | The resource location. |
properties | object | The integration service environment managed api properties. |
tags | object | The resource tags. |
type | string | Gets the resource type. |
Name | Datatype | Description |
---|---|---|
id | string | The resource id. |
name | string | Gets the resource name. |
location | string | The resource location. |
properties | object | The integration service environment managed api 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 |
---|---|---|---|---|
get | select | subscriptionId , resourceGroup , integrationServiceEnvironmentName , apiName | api-version | Gets the integration service environment managed Api. |
list | select | subscriptionId , resourceGroup , integrationServiceEnvironmentName | api-version | Gets the integration service environment managed Apis. |
put | replace | subscriptionId , resourceGroup , integrationServiceEnvironmentName , apiName | api-version | Puts the integration service environment managed Api. |
delete | delete | subscriptionId , resourceGroup , integrationServiceEnvironmentName , apiName | api-version | Deletes the integration service environment managed Api. |
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
- get
- list
Gets the integration service environment managed Api.
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.logic_apps.integration_service_environment_managed_apis
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroup = '{{ resourceGroup }}' -- required
AND integrationServiceEnvironmentName = '{{ integrationServiceEnvironmentName }}' -- required
AND apiName = '{{ apiName }}' -- required
AND api-version = '{{ api-version }}'
;
Gets the integration service environment managed Apis.
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.logic_apps.integration_service_environment_managed_apis
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroup = '{{ resourceGroup }}' -- required
AND integrationServiceEnvironmentName = '{{ integrationServiceEnvironmentName }}' -- required
AND api-version = '{{ api-version }}'
;
REPLACE
examples
- put
Puts the integration service environment managed Api.
REPLACE azure.logic_apps.integration_service_environment_managed_apis
SET
data__properties = '{{ properties }}',
data__location = '{{ location }}',
data__tags = '{{ tags }}'
WHERE
subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroup = '{{ resourceGroup }}' --required
AND integrationServiceEnvironmentName = '{{ integrationServiceEnvironmentName }}' --required
AND apiName = '{{ apiName }}' --required
AND api-version = '{{ api-version}}'
RETURNING
id,
name,
location,
properties,
tags,
type;
DELETE
examples
- delete
Deletes the integration service environment managed Api.
DELETE FROM azure.logic_apps.integration_service_environment_managed_apis
WHERE subscriptionId = '{{ subscriptionId }}' --required
AND resourceGroup = '{{ resourceGroup }}' --required
AND integrationServiceEnvironmentName = '{{ integrationServiceEnvironmentName }}' --required
AND apiName = '{{ apiName }}' --required
AND api-version = '{{ api-version }}'
;