共用方式為


Microsoft.Insights logprofiles

Bicep 資源定義

logprofiles 資源類型可以使用目標作業進行部署:

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

資源格式

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

resource symbolicname 'Microsoft.Insights/logprofiles@2016-03-01' = {
  name: 'string'
  location: 'string'
  tags: {
    tagName1: 'tagValue1'
    tagName2: 'tagValue2'
  }
  properties: {
    categories: [
      'string'
    ]
    locations: [
      'string'
    ]
    retentionPolicy: {
      days: int
      enabled: bool
    }
    serviceBusRuleId: 'string'
    storageAccountId: 'string'
  }
}

屬性值

logprofiles

名稱 描述
NAME 資源名稱 需要字串 ()
location 資源位置 需要字串 ()
tags 資源標籤 標記名稱和值的字典。 請參閱 範本中的標籤
properties 資源的記錄配置檔案屬性。 需要 LogProfileProperties ()

LogProfileProperties

名稱 描述
categories 記錄的類別。 這些類別會建立為方便使用者。 某些值包括:'Write'、'Delete' 和/或 'Action'。 string[] (必要)
位置 應儲存或串流活動記錄事件的區域清單。 這是有效 ARM 位置的逗號分隔清單,包括「全域」位置。 string[] (必要)
retentionPolicy 記錄中事件的保留原則。 需要 RetentionPolicy ()
serviceBusRuleId 您想要在其中建立事件中樞來串流活動記錄之服務匯流排命名空間的服務匯流排規則識別碼。 規則識別碼的格式為:'{服務匯流排資源識別碼}/authorizationrules/{key name}'。 字串
storageAccountId 您想要傳送活動記錄之儲存體帳戶的資源識別碼。 字串

RetentionPolicy

名稱 描述
days 保留天數的天數。 值為 0 會無限期地保留事件。 需要 int ()

約束:
最小值 = 0
已啟用 值,指出是否啟用保留原則。 bool (必要)

ARM 範本資源定義

logprofiles 資源類型可以使用目標作業進行部署:

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

資源格式

若要建立 Microsoft.Insights/logprofiles 資源,請將下列 JSON 新增至您的範本。

{
  "type": "Microsoft.Insights/logprofiles",
  "apiVersion": "2016-03-01",
  "name": "string",
  "location": "string",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "properties": {
    "categories": [ "string" ],
    "locations": [ "string" ],
    "retentionPolicy": {
      "days": "int",
      "enabled": "bool"
    },
    "serviceBusRuleId": "string",
    "storageAccountId": "string"
  }
}

屬性值

logprofiles

名稱 描述
類型 資源類型 'Microsoft.Insights/logprofiles'
apiVersion 資源 API 版本 '2016-03-01'
NAME 資源名稱 需要字串 ()
location 資源位置 需要字串 ()
tags 資源標籤 標記名稱和值的字典。 請參閱 範本中的標籤
properties 資源的記錄配置檔案屬性。 需要 LogProfileProperties ()

LogProfileProperties

名稱 描述
categories 記錄的類別。 這些類別會建立為使用者方便使用。 某些值包括:'Write'、'Delete'和/或 'Action'。 string[] (必要)
位置 應儲存或串流活動記錄事件的區域清單。 它是有效 ARM 位置的逗號分隔清單,包括 「全域」位置。 string[] (必要)
retentionPolicy 記錄中事件的保留原則。 需要 RetentionPolicy ()
serviceBusRuleId 您想要在其中建立事件中樞以串流活動記錄之服務匯流排命名空間的服務匯流排規則識別碼。 規則識別碼的格式為:'{服務匯流排資源識別碼}/authorizationrules/{key name}'。 字串
storageAccountId 您想要傳送活動記錄之儲存體帳戶的資源識別碼。 字串

RetentionPolicy

名稱 描述
days 保留天數。 值為 0 會無限期地保留事件。 int (必要)

約束:
最小值 = 0
已啟用 值,指出是否啟用保留原則。 bool (必要)

Terraform (AzAPI 提供者) 資源定義

logprofiles 資源類型可以使用目標作業進行部署:

  • 訂用帳戶

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

資源格式

若要建立 Microsoft.Insights/logprofiles 資源,請將下列 Terraform 新增至您的範本。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Insights/logprofiles@2016-03-01"
  name = "string"
  location = "string"
  parent_id = "string"
  tags = {
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
  body = jsonencode({
    properties = {
      categories = [
        "string"
      ]
      locations = [
        "string"
      ]
      retentionPolicy = {
        days = int
        enabled = bool
      }
      serviceBusRuleId = "string"
      storageAccountId = "string"
    }
  })
}

屬性值

logprofiles

名稱 描述
類型 資源類型 「Microsoft.Insights/logprofiles@2016-03-01」
NAME 資源名稱 字串 (必要)
location 資源位置 字串 (必要)
parent_id 若要部署至訂用帳戶,請使用該訂用帳戶的識別碼。 字串 (必要)
tags 資源標籤 標記名稱和值的字典。
properties 資源的記錄檔配置檔案屬性。 需要 logProfileProperties ()

LogProfileProperties

名稱 描述
categories 記錄的類別。 這些類別會建立為使用者方便使用。 某些值包括:'Write'、'Delete'和/或 'Action'。 string[] (必要)
位置 應儲存或串流活動記錄事件的區域清單。 它是有效 ARM 位置的逗號分隔清單,包括 「全域」位置。 string[] (必要)
retentionPolicy 記錄中事件的保留原則。 需要 RetentionPolicy ()
serviceBusRuleId 您想要在其中建立事件中樞以串流活動記錄之服務匯流排命名空間的服務匯流排規則識別碼。 規則識別碼的格式為:'{服務匯流排資源識別碼}/authorizationrules/{key name}'。 字串
storageAccountId 您想要傳送活動記錄之儲存體帳戶的資源識別碼。 字串

RetentionPolicy

名稱 描述
days 保留天數。 值為 0 會無限期地保留事件。 int (必要)

約束:
最小值 = 0
已啟用 值,指出是否啟用保留原則。 bool (必要)