integration_service_environment_managed_apis
Creates, updates, deletes, gets or lists a 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
- vw_integration_service_environment_managed_apis
- integration_service_environment_managed_apis
Name | Datatype | Description |
---|---|---|
id | text | The resource id. |
name | text | Gets the resource name. |
apiName | text | field from the properties object |
api_definition_url | text | field from the properties object |
api_definitions | text | field from the properties object |
backend_service | text | field from the properties object |
capabilities | text | field from the properties object |
category | text | field from the properties object |
connection_parameters | text | field from the properties object |
deployment_parameters | text | field from the properties object |
general_information | text | field from the properties object |
integrationServiceEnvironmentName | text | field from the properties object |
integration_service_environment | text | field from the properties object |
location | text | The resource location. |
metadata | text | field from the properties object |
policies | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroup | text | field from the properties object |
runtime_urls | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | The resource tags. |
type | text | 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
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | apiName, integrationServiceEnvironmentName, resourceGroup, subscriptionId | Gets the integration service environment managed Api. |
list | SELECT | integrationServiceEnvironmentName, resourceGroup, subscriptionId | Gets the integration service environment managed Apis. |
delete | DELETE | apiName, integrationServiceEnvironmentName, resourceGroup, subscriptionId | Deletes the integration service environment managed Api. |
put | REPLACE | apiName, integrationServiceEnvironmentName, resourceGroup, subscriptionId | Puts the integration service environment managed Api. |
SELECT
examples
Gets the integration service environment managed Apis.
- vw_integration_service_environment_managed_apis
- integration_service_environment_managed_apis
SELECT
id,
name,
apiName,
api_definition_url,
api_definitions,
backend_service,
capabilities,
category,
connection_parameters,
deployment_parameters,
general_information,
integrationServiceEnvironmentName,
integration_service_environment,
location,
metadata,
policies,
provisioning_state,
resourceGroup,
runtime_urls,
subscriptionId,
tags,
type
FROM azure.logic_apps.vw_integration_service_environment_managed_apis
WHERE integrationServiceEnvironmentName = '{{ integrationServiceEnvironmentName }}'
AND resourceGroup = '{{ resourceGroup }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.logic_apps.integration_service_environment_managed_apis
WHERE integrationServiceEnvironmentName = '{{ integrationServiceEnvironmentName }}'
AND resourceGroup = '{{ resourceGroup }}'
AND subscriptionId = '{{ subscriptionId }}';
REPLACE
example
Replaces all fields in the specified integration_service_environment_managed_apis
resource.
/*+ update */
REPLACE azure.logic_apps.integration_service_environment_managed_apis
SET
properties = '{{ properties }}',
location = '{{ location }}',
tags = '{{ tags }}'
WHERE
apiName = '{{ apiName }}'
AND integrationServiceEnvironmentName = '{{ integrationServiceEnvironmentName }}'
AND resourceGroup = '{{ resourceGroup }}'
AND subscriptionId = '{{ subscriptionId }}';
DELETE
example
Deletes the specified integration_service_environment_managed_apis
resource.
/*+ delete */
DELETE FROM azure.logic_apps.integration_service_environment_managed_apis
WHERE apiName = '{{ apiName }}'
AND integrationServiceEnvironmentName = '{{ integrationServiceEnvironmentName }}'
AND resourceGroup = '{{ resourceGroup }}'
AND subscriptionId = '{{ subscriptionId }}';