integration_account_schemas
Creates, updates, deletes, gets or lists a integration_account_schemas
resource.
Overview
Name | integration_account_schemas |
Type | Resource |
Id | azure.logic_apps.integration_account_schemas |
Fields
- vw_integration_account_schemas
- integration_account_schemas
Name | Datatype | Description |
---|---|---|
id | text | The resource id. |
name | text | Gets the resource name. |
changed_time | text | field from the properties object |
content | text | field from the properties object |
content_link | text | field from the properties object |
content_type | text | field from the properties object |
created_time | text | field from the properties object |
document_name | text | field from the properties object |
file_name | text | field from the properties object |
integrationAccountName | text | field from the properties object |
location | text | The resource location. |
metadata | text | field from the properties object |
resourceGroupName | text | field from the properties object |
schemaName | text | field from the properties object |
schema_type | text | field from the properties object |
subscriptionId | text | field from the properties object |
tags | text | The resource tags. |
target_namespace | text | field from the properties object |
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 account schema properties. |
tags | object | The resource tags. |
type | string | Gets the resource type. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | integrationAccountName, resourceGroupName, schemaName, subscriptionId | Gets an integration account schema. |
list | SELECT | integrationAccountName, resourceGroupName, subscriptionId | Gets a list of integration account schemas. |
create_or_update | INSERT | integrationAccountName, resourceGroupName, schemaName, subscriptionId, data__properties | Creates or updates an integration account schema. |
delete | DELETE | integrationAccountName, resourceGroupName, schemaName, subscriptionId | Deletes an integration account schema. |
SELECT
examples
Gets a list of integration account schemas.
- vw_integration_account_schemas
- integration_account_schemas
SELECT
id,
name,
changed_time,
content,
content_link,
content_type,
created_time,
document_name,
file_name,
integrationAccountName,
location,
metadata,
resourceGroupName,
schemaName,
schema_type,
subscriptionId,
tags,
target_namespace,
type
FROM azure.logic_apps.vw_integration_account_schemas
WHERE integrationAccountName = '{{ integrationAccountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
tags,
type
FROM azure.logic_apps.integration_account_schemas
WHERE integrationAccountName = '{{ integrationAccountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
INSERT
example
Use the following StackQL query and manifest file to create a new integration_account_schemas
resource.
- All Properties
- Manifest
/*+ create */
INSERT INTO azure.logic_apps.integration_account_schemas (
integrationAccountName,
resourceGroupName,
schemaName,
subscriptionId,
data__properties,
properties,
location,
tags
)
SELECT
'{{ integrationAccountName }}',
'{{ resourceGroupName }}',
'{{ schemaName }}',
'{{ subscriptionId }}',
'{{ data__properties }}',
'{{ properties }}',
'{{ location }}',
'{{ tags }}'
;
- name: your_resource_model_name
props:
- name: properties
value:
- name: schemaType
value: []
- name: targetNamespace
value: string
- name: documentName
value: string
- name: fileName
value: string
- name: createdTime
value: string
- name: changedTime
value: string
- name: metadata
value: []
- name: content
value: string
- name: contentType
value: string
- name: contentLink
value:
- name: uri
value: string
- name: contentVersion
value: string
- name: contentSize
value: integer
- name: contentHash
value:
- name: algorithm
value: string
- name: value
value: string
- name: metadata
value: []
- name: id
value: string
- name: name
value: string
- name: type
value: string
- name: location
value: string
- name: tags
value: object
DELETE
example
Deletes the specified integration_account_schemas
resource.
/*+ delete */
DELETE FROM azure.logic_apps.integration_account_schemas
WHERE integrationAccountName = '{{ integrationAccountName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND schemaName = '{{ schemaName }}'
AND subscriptionId = '{{ subscriptionId }}';