共用方式為


Microsoft.Security workspaceSettings

Bicep 資源定義

workspaceSettings 資源類型可以使用目標作業來部署:

如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔

資源格式

若要建立 Microsoft.Security/workspaceSettings 資源,請將下列 Bicep 新增至範本。

resource symbolicname 'Microsoft.Security/workspaceSettings@2017-08-01-preview' = {
  name: 'string'
  properties: {
    scope: 'string'
    workspaceId: 'string'
  }
}

屬性值

Microsoft.Security/workspaceSettings

名字 描述 價值
名字 資源名稱 字串 (必要)
性能 工作區設定數據 WorkspaceSettingProperties

WorkspaceSettingProperties

名字 描述 價值
範圍 除非透過具有更特定範圍的設定覆寫,否則此範圍中的所有 VM 都會將其安全性數據傳送至提及的工作區 字串 (必要)
workspaceId 要儲存數據之工作區的完整 Azure 識別碼 字串 (必要)

ARM 樣本資源定義

workspaceSettings 資源類型可以使用目標作業來部署:

如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔

資源格式

若要建立 Microsoft.Security/workspaceSettings 資源,請將下列 JSON 新增至範本。

{
  "type": "Microsoft.Security/workspaceSettings",
  "apiVersion": "2017-08-01-preview",
  "name": "string",
  "properties": {
    "scope": "string",
    "workspaceId": "string"
  }
}

屬性值

Microsoft.Security/workspaceSettings

名字 描述 價值
apiVersion API 版本 '2017-08-01-preview'
名字 資源名稱 字串 (必要)
性能 工作區設定數據 WorkspaceSettingProperties
類型 資源類型 'Microsoft.Security/workspaceSettings'

WorkspaceSettingProperties

名字 描述 價值
範圍 除非透過具有更特定範圍的設定覆寫,否則此範圍中的所有 VM 都會將其安全性數據傳送至提及的工作區 字串 (必要)
workspaceId 要儲存數據之工作區的完整 Azure 識別碼 字串 (必要)

Terraform (AzAPI 提供者) 資源定義

workspaceSettings 資源類型可以使用目標作業來部署:

  • 訂用帳戶

如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔

資源格式

若要建立 Microsoft.Security/workspaceSettings 資源,請將下列 Terraform 新增至範本。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Security/workspaceSettings@2017-08-01-preview"
  name = "string"
  body = jsonencode({
    properties = {
      scope = "string"
      workspaceId = "string"
    }
  })
}

屬性值

Microsoft.Security/workspaceSettings

名字 描述 價值
名字 資源名稱 字串 (必要)
性能 工作區設定數據 WorkspaceSettingProperties
類型 資源類型 “Microsoft.Security/workspaceSettings@2017-08-01-preview”

WorkspaceSettingProperties

名字 描述 價值
範圍 除非透過具有更特定範圍的設定覆寫,否則此範圍中的所有 VM 都會將其安全性數據傳送至提及的工作區 字串 (必要)
workspaceId 要儲存數據之工作區的完整 Azure 識別碼 字串 (必要)