Skip to main content

integration_account_schemas

Creates, updates, deletes, gets or lists an integration_account_schemas resource.

Overview

Nameintegration_account_schemas
TypeResource
Idazure.logic.integration_account_schemas

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe resource id.
namestringGets the resource name.
changedTimestring (date-time)The changed time.
contentstringThe content.
contentLinkobjectThe content link.
contentTypestringThe content type.
createdTimestring (date-time)The created time.
documentNamestringThe document name.
fileNamestringThe file name.
locationstringThe resource location.
metadataobjectThe metadata.
schemaTypestringThe schema type. Required. Known values are: "NotSpecified" and "Xml".
tagsobjectThe resource tags.
targetNamespacestringThe target namespace of the schema.
typestringGets the resource type.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresource_group_name, integration_account_name, schema_name, subscription_idGets an integration account schema.
listselectresource_group_name, integration_account_name, subscription_id$top, $filterGets a list of integration account schemas.
create_or_updateinsertresource_group_name, integration_account_name, schema_name, subscription_id, propertiesCreates or updates an integration account schema.
create_or_updatereplaceresource_group_name, integration_account_name, schema_name, subscription_id, propertiesCreates or updates an integration account schema.
deletedeleteresource_group_name, integration_account_name, schema_name, subscription_idDeletes an integration account schema.
list_content_callback_urlexecresource_group_name, integration_account_name, schema_name, subscription_idGet the content callback url.

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
integration_account_namestringThe integration account name. Required.
resource_group_namestringThe resource group name. Required.
schema_namestringThe integration account schema name. Required.
subscription_idstring
$filterstringThe filter to apply on the operation. Options for filters include: SchemaType. Default value is None.
$topintegerThe number of items to be included in the result. Default value is None.

SELECT examples

Gets an integration account schema.

SELECT
id,
name,
changedTime,
content,
contentLink,
contentType,
createdTime,
documentName,
fileName,
location,
metadata,
schemaType,
tags,
targetNamespace,
type
FROM azure.logic.integration_account_schemas
WHERE resource_group_name = '{{ resource_group_name }}' -- required
AND integration_account_name = '{{ integration_account_name }}' -- required
AND schema_name = '{{ schema_name }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;

INSERT examples

Creates or updates an integration account schema.

INSERT INTO azure.logic.integration_account_schemas (
location,
tags,
properties,
resource_group_name,
integration_account_name,
schema_name,
subscription_id
)
SELECT
'{{ location }}',
'{{ tags }}',
'{{ properties }}' /* required */,
'{{ resource_group_name }}',
'{{ integration_account_name }}',
'{{ schema_name }}',
'{{ subscription_id }}'
RETURNING
id,
name,
location,
properties,
tags,
type
;

REPLACE examples

Creates or updates an integration account schema.

REPLACE azure.logic.integration_account_schemas
SET
location = '{{ location }}',
tags = '{{ tags }}',
properties = '{{ properties }}'
WHERE
resource_group_name = '{{ resource_group_name }}' --required
AND integration_account_name = '{{ integration_account_name }}' --required
AND schema_name = '{{ schema_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
AND properties = '{{ properties }}' --required
RETURNING
id,
name,
location,
properties,
tags,
type;

DELETE examples

Deletes an integration account schema.

DELETE FROM azure.logic.integration_account_schemas
WHERE resource_group_name = '{{ resource_group_name }}' --required
AND integration_account_name = '{{ integration_account_name }}' --required
AND schema_name = '{{ schema_name }}' --required
AND subscription_id = '{{ subscription_id }}' --required
;

Lifecycle Methods

Get the content callback url.

EXEC azure.logic.integration_account_schemas.list_content_callback_url 
@resource_group_name='{{ resource_group_name }}' --required,
@integration_account_name='{{ integration_account_name }}' --required,
@schema_name='{{ schema_name }}' --required,
@subscription_id='{{ subscription_id }}' --required
@@json=
'{
"notAfter": "{{ notAfter }}",
"keyType": "{{ keyType }}"
}'
;