Microsoft.Logic integrationAccounts/schemas

Bicep リソース定義

integrationAccounts/schemas リソースの種類は、次を対象とする操作と共にデプロイできます。

各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。

リソース形式

Microsoft.Logic/integrationAccounts/schemas リソースを作成するには、次の Bicep をテンプレートに追加します。

resource symbolicname 'Microsoft.Logic/integrationAccounts/schemas@2019-05-01' = {
  name: 'string'
  location: 'string'
  tags: {
    tagName1: 'tagValue1'
    tagName2: 'tagValue2'
  }
  parent: resourceSymbolicName
  properties: {
    content: 'string'
    contentType: 'string'
    documentName: 'string'
    fileName: 'string'
    metadata: any()
    schemaType: 'string'
    targetNamespace: 'string'
  }
}

プロパティ値

integrationAccounts/schemas

名前 説明
name リソース名

Bicep で子リソースの名前と型を設定する方法を参照してください。
string (必須)

文字数制限: 1 から 80

有効な文字:
英数字、ハイフン、アンダースコア、ピリオド、およびかっこ。
location リソースの場所。 string
tags リソース タグ。 タグ名と値のディクショナリ。 「テンプレートのタグ」を参照してください
parent Bicep では、子リソースの親リソースを指定できます。 このプロパティを追加する必要があるのは、子リソースが親リソースの外部で宣言されている場合のみです。

詳細については、「 親リソースの外部にある子リソース」を参照してください。
種類のリソースのシンボル名: integrationAccounts
properties 統合アカウントスキーマのプロパティ。 IntegrationAccountSchemaProperties (必須)

IntegrationAccountSchemaProperties

名前 説明
content コンテンツ。 string
contentType コンテンツの種類。 string
documentName ドキュメント名。 string
fileName ファイル名。 string
metadata メタデータ。 Bicep の場合は、 any() 関数を使用できます。
schemaType スキーマの種類。 'NotSpecified'
'Xml' (必須)
targetNamespace スキーマのターゲット名前空間。 string

クイック スタート テンプレート

次のクイックスタート テンプレートでは、このリソースの種類をデプロイします。

Template 説明
Azure Logic Apps - VETER パイプライン

Azure にデプロイする
統合アカウントを作成し、スキーマ/マップを追加し、ロジック アプリを作成して統合アカウントに関連付けます。 ロジック アプリは、XML 検証、XPath Extract、Transform Xml 操作を使用して VETER パイプラインを実装します。

ARM テンプレート リソース定義

integrationAccounts/schemas リソースの種類は、次を対象とする操作と共にデプロイできます。

各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。

リソース形式

Microsoft.Logic/integrationAccounts/schemas リソースを作成するには、次の JSON をテンプレートに追加します。

{
  "type": "Microsoft.Logic/integrationAccounts/schemas",
  "apiVersion": "2019-05-01",
  "name": "string",
  "location": "string",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "properties": {
    "content": "string",
    "contentType": "string",
    "documentName": "string",
    "fileName": "string",
    "metadata": {},
    "schemaType": "string",
    "targetNamespace": "string"
  }
}

プロパティ値

integrationAccounts/schemas

名前 説明
type リソースの種類 'Microsoft.Logic/integrationAccounts/schemas'
apiVersion リソース API のバージョン '2019-05-01'
name リソース名

JSON ARM テンプレートで子リソースの名前と型を設定する方法を参照してください。
string (必須)

文字数制限: 1 から 80

有効な文字:
英数字、ハイフン、アンダースコア、ピリオド、およびかっこ。
location リソースの場所。 string
tags リソース タグ。 タグの名前と値のディクショナリ。 「テンプレート内のタグ」を参照してください
properties 統合アカウントスキーマのプロパティ。 IntegrationAccountSchemaProperties (必須)

IntegrationAccountSchemaProperties

名前 説明
content コンテンツ。 string
contentType コンテンツの種類。 string
documentName ドキュメント名。 string
fileName ファイル名。 string
metadata メタデータ。
schemaType スキーマの種類。 'NotSpecified'
'Xml' (必須)
targetNamespace スキーマのターゲット名前空間。 string

クイック スタート テンプレート

次のクイックスタート テンプレートでは、このリソースの種類をデプロイします。

Template 説明
Azure Logic Apps - VETER パイプライン

Azure にデプロイする
統合アカウントを作成し、それにスキーマ/マップを追加し、ロジック アプリを作成して統合アカウントに関連付けます。 ロジック アプリは、XML 検証、XPath 抽出、および Xml 変換の各操作を使用して VETER パイプラインを実装します。

Terraform (AzAPI プロバイダー) リソース定義

integrationAccounts/schemas リソースの種類は、次をターゲットとする操作と共にデプロイできます。

  • リソース グループ

各 API バージョンの変更されたプロパティの一覧については、「 変更ログ」を参照してください。

リソース形式

Microsoft.Logic/integrationAccounts/schemas リソースを作成するには、次の Terraform をテンプレートに追加します。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Logic/integrationAccounts/schemas@2019-05-01"
  name = "string"
  location = "string"
  parent_id = "string"
  tags = {
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
  body = jsonencode({
    properties = {
      content = "string"
      contentType = "string"
      documentName = "string"
      fileName = "string"
      schemaType = "string"
      targetNamespace = "string"
    }
  })
}

プロパティ値

integrationAccounts/schemas

名前 説明
type リソースの種類 "Microsoft.Logic/integrationAccounts/schemas@2019-05-01"
name リソース名 string (必須)

文字制限: 1 から 80

有効な文字:
英数字、ハイフン、アンダースコア、ピリオド、およびかっこ。
location リソースの場所。 string
parent_id このリソースの親であるリソースの ID。 種類のリソースの ID: integrationAccounts
tags リソース タグ。 タグの名前と値のディクショナリ。
properties 統合アカウントスキーマのプロパティ。 IntegrationAccountSchemaProperties (必須)

IntegrationAccountSchemaProperties

名前 説明
content コンテンツ。 string
contentType コンテンツの種類。 string
documentName ドキュメント名。 string
fileName ファイル名。 string
metadata メタデータ。
schemaType スキーマの種類。 "NotSpecified"
"Xml" (必須)
targetNamespace スキーマのターゲット名前空間。 string