integration_account_schemas
Creates, updates, deletes, gets or lists an integration_account_schemas resource.
Overview
| Name | integration_account_schemas |
| Type | Resource |
| Id | azure.logic.integration_account_schemas |
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. |
changedTime | string (date-time) | The changed time. |
content | string | The content. |
contentLink | object | The content link. |
contentType | string | The content type. |
createdTime | string (date-time) | The created time. |
documentName | string | The document name. |
fileName | string | The file name. |
location | string | The resource location. |
metadata | object | The metadata. |
schemaType | string | The schema type. Required. Known values are: "NotSpecified" and "Xml". |
tags | object | The resource tags. |
targetNamespace | string | The target namespace of the schema. |
type | string | Gets the resource type. |
| Name | Datatype | Description |
|---|---|---|
id | string | The resource id. |
name | string | Gets the resource name. |
changedTime | string (date-time) | The changed time. |
content | string | The content. |
contentLink | object | The content link. |
contentType | string | The content type. |
createdTime | string (date-time) | The created time. |
documentName | string | The document name. |
fileName | string | The file name. |
location | string | The resource location. |
metadata | object | The metadata. |
schemaType | string | The schema type. Required. Known values are: "NotSpecified" and "Xml". |
tags | object | The resource tags. |
targetNamespace | string | The target namespace of the schema. |
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 | resource_group_name, integration_account_name, schema_name, subscription_id | Gets an integration account schema. | |
list | select | resource_group_name, integration_account_name, subscription_id | $top, $filter | Gets a list of integration account schemas. |
create_or_update | insert | resource_group_name, integration_account_name, schema_name, subscription_id, properties | Creates or updates an integration account schema. | |
create_or_update | replace | resource_group_name, integration_account_name, schema_name, subscription_id, properties | Creates or updates an integration account schema. | |
delete | delete | resource_group_name, integration_account_name, schema_name, subscription_id | Deletes an integration account schema. | |
list_content_callback_url | exec | resource_group_name, integration_account_name, schema_name, subscription_id | Get 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.
| Name | Datatype | Description |
|---|---|---|
integration_account_name | string | The integration account name. Required. |
resource_group_name | string | The resource group name. Required. |
schema_name | string | The integration account schema name. Required. |
subscription_id | string | |
$filter | string | The filter to apply on the operation. Options for filters include: SchemaType. Default value is None. |
$top | integer | The number of items to be included in the result. Default value is None. |
SELECT examples
- get
- list
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
;
Gets a list of integration account schemas.
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 subscription_id = '{{ subscription_id }}' -- required
AND $top = '{{ $top }}'
AND $filter = '{{ $filter }}'
;
INSERT examples
- create_or_update
- Manifest
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
;
# Description fields are for documentation purposes
- name: integration_account_schemas
props:
- name: resource_group_name
value: "{{ resource_group_name }}"
description: Required parameter for the integration_account_schemas resource.
- name: integration_account_name
value: "{{ integration_account_name }}"
description: Required parameter for the integration_account_schemas resource.
- name: schema_name
value: "{{ schema_name }}"
description: Required parameter for the integration_account_schemas resource.
- name: subscription_id
value: "{{ subscription_id }}"
description: Required parameter for the integration_account_schemas resource.
- name: location
value: "{{ location }}"
description: |
The resource location.
- name: tags
value: "{{ tags }}"
description: |
The resource tags.
- name: properties
value:
schemaType: "{{ schemaType }}"
targetNamespace: "{{ targetNamespace }}"
documentName: "{{ documentName }}"
fileName: "{{ fileName }}"
metadata: "{{ metadata }}"
content: "{{ content }}"
contentType: "{{ contentType }}"
REPLACE examples
- create_or_update
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
- delete
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
- list_content_callback_url
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 }}"
}'
;