Microsoft.Kusto clusters/databases/scripts 2022-12-29
Bicep 資源定義
叢集/資料庫/文本資源類型可以使用目標作業來部署:
- 資源群組 - 請參閱 資源群組部署命令
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。
資源格式
若要建立 Microsoft.Kusto/clusters/databases/scripts 資源,請將下列 Bicep 新增至範本。
resource symbolicname 'Microsoft.Kusto/clusters/databases/scripts@2022-12-29' = {
parent: resourceSymbolicName
name: 'string'
properties: {
continueOnErrors: bool
forceUpdateTag: 'string'
scriptContent: 'string'
scriptUrl: 'string'
scriptUrlSasToken: 'string'
}
}
屬性值
Microsoft.Kusto/clusters/databases/scripts
名字 | 描述 | 價值 |
---|---|---|
名字 | 資源名稱 | 字串 (必要) |
父母 | 在 Bicep 中,您可以指定子資源的父資源。 只有在父資源外部宣告子資源時,才需要新增這個屬性。 如需詳細資訊,請參閱 父資源外部的子資源。 |
類型的資源符號名稱:叢集/資料庫 |
性能 | 資料庫文本。 | ScriptProperties |
ScriptProperties
名字 | 描述 | 價值 |
---|---|---|
continueOnErrors | 指出如果其中一個命令失敗,是否要繼續的旗標。 | bool |
forceUpdateTag | 唯一字串。 如果已變更,腳本將會再次套用。 | 字串 |
scriptContent | 腳本內容。 當腳本提供內嵌而非透過 SA 中的檔案時,應該使用這個屬性。 不得與 scriptUrl 和 scriptUrlSasToken 屬性搭配使用。 | 字串 約束: 敏感性值。 以安全參數的形式傳入。 |
scriptUrl | KQL 腳本 Blob 檔案的 URL。 不得與 scriptContent 屬性搭配使用 | 字串 |
scriptUrlSasToken | 提供包含文稿之檔案讀取許可權的 SaS 令牌。 使用 scriptUrl 屬性時必須提供。 | 字串 約束: 敏感性值。 以安全參數的形式傳入。 |
快速入門範例
下列快速入門範例會部署此資源類型。
Bicep 檔案 | 描述 |
---|---|
使用 Cosmos DB 連線部署 Azure 數據總管 DB | 使用 Cosmos DB 連線部署 Azure 數據總管 DB。 |
使用事件方格連線部署 Azure 數據總管資料庫 | 使用事件方格聯機部署 Azure 數據總管資料庫。 |
使用事件中樞連線部署 Azure 數據總管資料庫 | 使用事件中樞連線部署 Azure 數據總管資料庫。 |
ARM 樣本資源定義
叢集/資料庫/文本資源類型可以使用目標作業來部署:
- 資源群組 - 請參閱 資源群組部署命令
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。
資源格式
若要建立 Microsoft.Kusto/clusters/databases/scripts 資源,請將下列 JSON 新增至範本。
{
"type": "Microsoft.Kusto/clusters/databases/scripts",
"apiVersion": "2022-12-29",
"name": "string",
"properties": {
"continueOnErrors": "bool",
"forceUpdateTag": "string",
"scriptContent": "string",
"scriptUrl": "string",
"scriptUrlSasToken": "string"
}
}
屬性值
Microsoft.Kusto/clusters/databases/scripts
名字 | 描述 | 價值 |
---|---|---|
apiVersion | API 版本 | '2022-12-29' |
名字 | 資源名稱 | 字串 (必要) |
性能 | 資料庫文本。 | ScriptProperties |
類型 | 資源類型 | 'Microsoft.Kusto/clusters/databases/scripts' |
ScriptProperties
名字 | 描述 | 價值 |
---|---|---|
continueOnErrors | 指出如果其中一個命令失敗,是否要繼續的旗標。 | bool |
forceUpdateTag | 唯一字串。 如果已變更,腳本將會再次套用。 | 字串 |
scriptContent | 腳本內容。 當腳本提供內嵌而非透過 SA 中的檔案時,應該使用這個屬性。 不得與 scriptUrl 和 scriptUrlSasToken 屬性搭配使用。 | 字串 約束: 敏感性值。 以安全參數的形式傳入。 |
scriptUrl | KQL 腳本 Blob 檔案的 URL。 不得與 scriptContent 屬性搭配使用 | 字串 |
scriptUrlSasToken | 提供包含文稿之檔案讀取許可權的 SaS 令牌。 使用 scriptUrl 屬性時必須提供。 | 字串 約束: 敏感性值。 以安全參數的形式傳入。 |
快速入門範本
下列快速入門範本會部署此資源類型。
範本 | 描述 |
---|---|
使用 Cosmos DB 連線部署 Azure 數據總管 DB |
使用 Cosmos DB 連線部署 Azure 數據總管 DB。 |
使用事件方格連線部署 Azure 數據總管資料庫 |
使用事件方格聯機部署 Azure 數據總管資料庫。 |
使用事件中樞連線部署 Azure 數據總管資料庫 |
使用事件中樞連線部署 Azure 數據總管資料庫。 |
Terraform (AzAPI 提供者) 資源定義
叢集/資料庫/文本資源類型可以使用目標作業來部署:
- 資源群組
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。
資源格式
若要建立 Microsoft.Kusto/clusters/databases/scripts 資源,請將下列 Terraform 新增至範本。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Kusto/clusters/databases/scripts@2022-12-29"
name = "string"
body = jsonencode({
properties = {
continueOnErrors = bool
forceUpdateTag = "string"
scriptContent = "string"
scriptUrl = "string"
scriptUrlSasToken = "string"
}
})
}
屬性值
Microsoft.Kusto/clusters/databases/scripts
名字 | 描述 | 價值 |
---|---|---|
名字 | 資源名稱 | 字串 (必要) |
parent_id | 此資源為父系之資源的標識碼。 | 類型資源的標識碼:叢集/資料庫 |
性能 | 資料庫文本。 | ScriptProperties |
類型 | 資源類型 | “Microsoft.Kusto/clusters/databases/scripts@2022-12-29” |
ScriptProperties
名字 | 描述 | 價值 |
---|---|---|
continueOnErrors | 指出如果其中一個命令失敗,是否要繼續的旗標。 | bool |
forceUpdateTag | 唯一字串。 如果已變更,腳本將會再次套用。 | 字串 |
scriptContent | 腳本內容。 當腳本提供內嵌而非透過 SA 中的檔案時,應該使用這個屬性。 不得與 scriptUrl 和 scriptUrlSasToken 屬性搭配使用。 | 字串 約束: 敏感性值。 以安全參數的形式傳入。 |
scriptUrl | KQL 腳本 Blob 檔案的 URL。 不得與 scriptContent 屬性搭配使用 | 字串 |
scriptUrlSasToken | 提供包含文稿之檔案讀取許可權的 SaS 令牌。 使用 scriptUrl 屬性時必須提供。 | 字串 約束: 敏感性值。 以安全參數的形式傳入。 |