vw_integration_account_agreements
Creates, updates, deletes, gets or lists a vw_integration_account_agreements
resource.
Overview
Name | vw_integration_account_agreements |
Type | View |
Id | azure.logic_apps.vw_integration_account_agreements |
Fields
See the SQL Definition (view DDL) for fields returned by this view.
SQL Definition
- Sqlite3
- Postgres
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
JSON_EXTRACT(properties, '$.createdTime') as "created_time",
JSON_EXTRACT(properties, '$.changedTime') as "changed_time",
JSON_EXTRACT(properties, '$.metadata') as "metadata",
JSON_EXTRACT(properties, '$.agreementType') as "agreement_type",
JSON_EXTRACT(properties, '$.hostPartner') as "host_partner",
JSON_EXTRACT(properties, '$.guestPartner') as "guest_partner",
JSON_EXTRACT(properties, '$.hostIdentity') as "host_identity",
JSON_EXTRACT(properties, '$.guestIdentity') as "guest_identity",
JSON_EXTRACT(properties, '$.content') as "content",
subscriptionId,
resourceGroupName,
integrationAccountName,
agreementName
FROM azure.logic_apps.integration_account_agreements
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND integrationAccountName = 'replace-me';
SELECT
id as id,
name as name,
location as location,
type as type,
tags as tags,
json_extract_path_text(properties, '$.createdTime') as "created_time",
json_extract_path_text(properties, '$.changedTime') as "changed_time",
json_extract_path_text(properties, '$.metadata') as "metadata",
json_extract_path_text(properties, '$.agreementType') as "agreement_type",
json_extract_path_text(properties, '$.hostPartner') as "host_partner",
json_extract_path_text(properties, '$.guestPartner') as "guest_partner",
json_extract_path_text(properties, '$.hostIdentity') as "host_identity",
json_extract_path_text(properties, '$.guestIdentity') as "guest_identity",
json_extract_path_text(properties, '$.content') as "content",
subscriptionId,
resourceGroupName,
integrationAccountName,
agreementName
FROM azure.logic_apps.integration_account_agreements
WHERE subscriptionId = 'replace-me' AND resourceGroupName = 'replace-me' AND integrationAccountName = 'replace-me';