共用方式為


Microsoft.Storage storageAccounts/tableServices/tables 2023-05-01

Bicep 資源定義

storageAccounts/tableServices/tables 資源類型可以使用目標作業來部署:

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

資源格式

若要建立 Microsoft.Storage/storageAccounts/tableServices/tables 資源,請將下列 Bicep 新增至範本。

resource symbolicname 'Microsoft.Storage/storageAccounts/tableServices/tables@2023-05-01' = {
  parent: resourceSymbolicName
  name: 'string'
  properties: {
    signedIdentifiers: [
      {
        accessPolicy: {
          expiryTime: 'string'
          permission: 'string'
          startTime: 'string'
        }
        id: 'string'
      }
    ]
  }
}

屬性值

Microsoft.Storage/storageAccounts/tableServices/tables

名字 描述 價值
名字 資源名稱 字串

約束:
最小長度 = 3
最大長度 = 3
模式 = ^[A-Za-z][A-Za-z0-9]{2,62}$ (必要)
父母 在 Bicep 中,您可以指定子資源的父資源。 只有在父資源外部宣告子資源時,才需要新增這個屬性。

如需詳細資訊,請參閱 父資源外部的子資源
類型資源的符號名稱:storageAccounts/tableServices
性能 數據表資源屬性。 TableProperties

TableAccessPolicy

名字 描述 價值
expiryTime 存取原則的到期時間 字串
許可 必填。 縮寫許可權的清單。 支援的許可權值包括 'r'、'a'、'u'、'd' 字串 (必要)
startTime 存取原則的開始時間 字串

TableProperties

名字 描述 價值
signedIdentifiers 數據表上指定的預存存取原則清單。 TableSignedIdentifier[]

TableSignedIdentifier

名字 描述 價值
accessPolicy 存取原則 TableAccessPolicy
id 預存存取原則的 unique-64-character-value。 字串 (必要)

ARM 樣本資源定義

storageAccounts/tableServices/tables 資源類型可以使用目標作業來部署:

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

資源格式

若要建立 Microsoft.Storage/storageAccounts/tableServices/tables 資源,請將下列 JSON 新增至範本。

{
  "type": "Microsoft.Storage/storageAccounts/tableServices/tables",
  "apiVersion": "2023-05-01",
  "name": "string",
  "properties": {
    "signedIdentifiers": [
      {
        "accessPolicy": {
          "expiryTime": "string",
          "permission": "string",
          "startTime": "string"
        },
        "id": "string"
      }
    ]
  }
}

屬性值

Microsoft.Storage/storageAccounts/tableServices/tables

名字 描述 價值
apiVersion API 版本 '2023-05-01'
名字 資源名稱 字串

約束:
最小長度 = 3
最大長度 = 3
模式 = ^[A-Za-z][A-Za-z0-9]{2,62}$ (必要)
性能 數據表資源屬性。 TableProperties
類型 資源類型 'Microsoft.Storage/storageAccounts/tableServices/tables'

TableAccessPolicy

名字 描述 價值
expiryTime 存取原則的到期時間 字串
許可 必填。 縮寫許可權的清單。 支援的許可權值包括 'r'、'a'、'u'、'd' 字串 (必要)
startTime 存取原則的開始時間 字串

TableProperties

名字 描述 價值
signedIdentifiers 數據表上指定的預存存取原則清單。 TableSignedIdentifier[]

TableSignedIdentifier

名字 描述 價值
accessPolicy 存取原則 TableAccessPolicy
id 預存存取原則的 unique-64-character-value。 字串 (必要)

Terraform (AzAPI 提供者) 資源定義

storageAccounts/tableServices/tables 資源類型可以使用目標作業來部署:

  • 資源群組

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

資源格式

若要建立 Microsoft.Storage/storageAccounts/tableServices/tables 資源,請將下列 Terraform 新增至範本。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Storage/storageAccounts/tableServices/tables@2023-05-01"
  name = "string"
  body = jsonencode({
    properties = {
      signedIdentifiers = [
        {
          accessPolicy = {
            expiryTime = "string"
            permission = "string"
            startTime = "string"
          }
          id = "string"
        }
      ]
    }
  })
}

屬性值

Microsoft.Storage/storageAccounts/tableServices/tables

名字 描述 價值
名字 資源名稱 字串

約束:
最小長度 = 3
最大長度 = 3
模式 = ^[A-Za-z][A-Za-z0-9]{2,62}$ (必要)
parent_id 此資源為父系之資源的標識碼。 類型資源的標識碼:storageAccounts/tableServices
性能 數據表資源屬性。 TableProperties
類型 資源類型 “Microsoft.Storage/storageAccounts/tableServices/tables@2023-05-01”

TableAccessPolicy

名字 描述 價值
expiryTime 存取原則的到期時間 字串
許可 必填。 縮寫許可權的清單。 支援的許可權值包括 'r'、'a'、'u'、'd' 字串 (必要)
startTime 存取原則的開始時間 字串

TableProperties

名字 描述 價值
signedIdentifiers 數據表上指定的預存存取原則清單。 TableSignedIdentifier[]

TableSignedIdentifier

名字 描述 價值
accessPolicy 存取原則 TableAccessPolicy
id 預存存取原則的 unique-64-character-value。 字串 (必要)