Share via


Microsoft.Kusto クラスター/attachedDatabaseConfigurations 2023-05-02

Bicep リソース定義

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

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

リソース形式

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

resource symbolicname 'Microsoft.Kusto/clusters/attachedDatabaseConfigurations@2023-05-02' = {
  name: 'string'
  location: 'string'
  parent: resourceSymbolicName
  properties: {
    clusterResourceId: 'string'
    databaseName: 'string'
    databaseNameOverride: 'string'
    databaseNamePrefix: 'string'
    defaultPrincipalsModificationKind: 'string'
    tableLevelSharingProperties: {
      externalTablesToExclude: [
        'string'
      ]
      externalTablesToInclude: [
        'string'
      ]
      functionsToExclude: [
        'string'
      ]
      functionsToInclude: [
        'string'
      ]
      materializedViewsToExclude: [
        'string'
      ]
      materializedViewsToInclude: [
        'string'
      ]
      tablesToExclude: [
        'string'
      ]
      tablesToInclude: [
        'string'
      ]
    }
  }
}

プロパティ値

clusters/attachedDatabaseConfigurations

名前 説明
name リソース名

Bicep で子リソースの名前と型を設定する方法を参照してください。
string (必須)
location リソースの場所。 string
parent Bicep では、子リソースの親リソースを指定できます。 このプロパティを追加する必要があるのは、子リソースが親リソースの外部で宣言されている場合のみです。

詳細については、「 親リソースの外部にある子リソース」を参照してください。
種類のリソースのシンボル名: クラスター
properties アタッチされたデータベース構成のプロパティ。 AttachedDatabaseConfigurationProperties

AttachedDatabaseConfigurationProperties

名前 説明
clusterResourceId アタッチするデータベースが存在するクラスターのリソース ID。 string (必須)
databaseName アタッチするデータベースの名前を指定します。現在および将来のすべてのデータベースをフォローする場合は、 * を使用します。 string (必須)
databaseNameOverride 元のデータベース名をオーバーライドします。 特定のデータベースにアタッチする場合にのみ関連します。 string
databaseNamePrefix アタッチされたデータベース名にプレフィックスを追加します。 クラスター全体をフォローすると、そのプレフィックスがリーダー クラスターのすべてのデータベースの元の名前に追加されます。 string
defaultPrincipalsModificationKind 既定のプリンシパルの変更の種類 'None'
'Replace'
'Union' (必須)
tableLevelSharingProperties テーブル レベルの共有の仕様 TableLevelSharingProperties

TableLevelSharingProperties

名前 説明
externalTablesToExclude フォロワー データベースから除外する外部テーブルの一覧 string[]
externalTablesToInclude フォロワー データベースに含める外部テーブルの一覧 string[]
functionsToExclude フォロワー データベースから除外する関数の一覧 string[]
functionsToInclude フォロワー データベースに含める関数の一覧 string[]
materializedViewsToExclude フォロワー データベースから除外する具体化されたビューの一覧 string[]
materializedViewsToInclude フォロワー データベースに含める具体化されたビューの一覧 string[]
tablesToExclude フォロワー データベースから除外するテーブルの一覧 string[]
tablesToInclude フォロワー データベースに含めるテーブルの一覧 string[]

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

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

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

リソース形式

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

{
  "type": "Microsoft.Kusto/clusters/attachedDatabaseConfigurations",
  "apiVersion": "2023-05-02",
  "name": "string",
  "location": "string",
  "properties": {
    "clusterResourceId": "string",
    "databaseName": "string",
    "databaseNameOverride": "string",
    "databaseNamePrefix": "string",
    "defaultPrincipalsModificationKind": "string",
    "tableLevelSharingProperties": {
      "externalTablesToExclude": [ "string" ],
      "externalTablesToInclude": [ "string" ],
      "functionsToExclude": [ "string" ],
      "functionsToInclude": [ "string" ],
      "materializedViewsToExclude": [ "string" ],
      "materializedViewsToInclude": [ "string" ],
      "tablesToExclude": [ "string" ],
      "tablesToInclude": [ "string" ]
    }
  }
}

プロパティ値

clusters/attachedDatabaseConfigurations

名前 説明
type リソースの種類 'Microsoft.Kusto/clusters/attachedDatabaseConfigurations'
apiVersion リソース API のバージョン '2023-05-02'
name リソース名

JSON ARM テンプレートで子リソースの名前と型を設定する方法を参照してください。
string (必須)
location リソースの場所。 string
properties アタッチされたデータベース構成のプロパティ。 AttachedDatabaseConfigurationProperties

AttachedDatabaseConfigurationProperties

名前 説明
clusterResourceId アタッチするデータベースが存在するクラスターのリソース ID。 string (必須)
databaseName アタッチするデータベースの名前を指定します。現在および将来のすべてのデータベースをフォローする場合は、 * を使用します。 string (必須)
databaseNameOverride 元のデータベース名をオーバーライドします。 特定のデータベースにアタッチする場合にのみ関連します。 string
databaseNamePrefix アタッチされたデータベース名にプレフィックスを追加します。 クラスター全体をフォローすると、そのプレフィックスがリーダー クラスターのすべてのデータベースの元の名前に追加されます。 string
defaultPrincipalsModificationKind 既定のプリンシパルの変更の種類 'None'
'Replace'
'Union' (必須)
tableLevelSharingProperties テーブル レベルの共有の仕様 TableLevelSharingProperties

TableLevelSharingProperties

名前 説明
externalTablesToExclude フォロワー データベースから除外する外部テーブルの一覧 string[]
externalTablesToInclude フォロワー データベースに含める外部テーブルの一覧 string[]
functionsToExclude フォロワー データベースから除外する関数の一覧 string[]
functionsToInclude フォロワー データベースに含める関数の一覧 string[]
materializedViewsToExclude フォロワー データベースから除外する具体化されたビューの一覧 string[]
materializedViewsToInclude フォロワー データベースに含める具体化されたビューの一覧 string[]
tablesToExclude フォロワー データベースから除外するテーブルの一覧 string[]
tablesToInclude フォロワー データベースに含めるテーブルの一覧 string[]

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

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

  • リソース グループ

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

リソース形式

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

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Kusto/clusters/attachedDatabaseConfigurations@2023-05-02"
  name = "string"
  location = "string"
  parent_id = "string"
  body = jsonencode({
    properties = {
      clusterResourceId = "string"
      databaseName = "string"
      databaseNameOverride = "string"
      databaseNamePrefix = "string"
      defaultPrincipalsModificationKind = "string"
      tableLevelSharingProperties = {
        externalTablesToExclude = [
          "string"
        ]
        externalTablesToInclude = [
          "string"
        ]
        functionsToExclude = [
          "string"
        ]
        functionsToInclude = [
          "string"
        ]
        materializedViewsToExclude = [
          "string"
        ]
        materializedViewsToInclude = [
          "string"
        ]
        tablesToExclude = [
          "string"
        ]
        tablesToInclude = [
          "string"
        ]
      }
    }
  })
}

プロパティ値

clusters/attachedDatabaseConfigurations

名前 説明
type リソースの種類 "Microsoft.Kusto/clusters/attachedDatabaseConfigurations@2023-05-02"
name リソース名 string (必須)
location リソースの場所。 string
parent_id このリソースの親であるリソースの ID。 種類のリソースの ID: クラスター
properties アタッチされたデータベース構成のプロパティ。 AttachedDatabaseConfigurationProperties

AttachedDatabaseConfigurationProperties

名前 説明
clusterResourceId アタッチするデータベースが存在するクラスターのリソース ID。 string (必須)
databaseName アタッチするデータベースの名前を指定します。現在および将来のすべてのデータベースをフォローする場合は、 * を使用します。 string (必須)
databaseNameOverride 元のデータベース名をオーバーライドします。 特定のデータベースにアタッチする場合にのみ関連します。 string
databaseNamePrefix アタッチされたデータベース名にプレフィックスを追加します。 クラスター全体をフォローすると、そのプレフィックスがリーダー クラスターのすべてのデータベースの元の名前に追加されます。 string
defaultPrincipalsModificationKind 既定のプリンシパルの変更の種類 "None"
"Replace"
"Union" (必須)
tableLevelSharingProperties テーブル レベルの共有の仕様 TableLevelSharingProperties

TableLevelSharingProperties

名前 説明
externalTablesToExclude フォロワー データベースから除外する外部テーブルの一覧 string[]
externalTablesToInclude フォロワー データベースに含める外部テーブルの一覧 string[]
functionsToExclude フォロワー データベースから除外する関数の一覧 string[]
functionsToInclude フォロワー データベースに含める関数の一覧 string[]
materializedViewsToExclude フォロワー データベースから除外する具体化されたビューの一覧 string[]
materializedViewsToInclude フォロワー データベースに含める具体化されたビューの一覧 string[]
tablesToExclude フォロワー データベースから除外するテーブルの一覧 string[]
tablesToInclude フォロワー データベースに含めるテーブルの一覧 string[]