你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Microsoft.Cache redisEnterprise 2021-03-01
Bicep 资源定义
redisEnterprise 资源类型可以使用面向以下对象的操作进行部署:
- 资源组 - 请参阅 资源组部署命令
有关每个 API 版本中已更改属性的列表,请参阅 更改日志。
资源格式
若要创建 Microsoft.Cache/redisEnterprise 资源,请将以下 Bicep 添加到模板。
resource symbolicname 'Microsoft.Cache/redisEnterprise@2021-03-01' = {
name: 'string'
location: 'string'
tags: {
tagName1: 'tagValue1'
tagName2: 'tagValue2'
}
sku: {
capacity: int
name: 'string'
}
properties: {
minimumTlsVersion: 'string'
}
zones: [
'string'
]
}
属性值
redisEnterprise
名称 | 说明 | 值 |
---|---|---|
name | 资源名称 | 字符串 (必需) |
location | 资源所在的地理位置 | 字符串 (必需) |
标记 | 资源标记。 | 标记名称和值的字典。 请参阅 模板中的标记 |
sku | 要创建的 SKU,这会影响价格、性能和功能。 | 需要 sku () |
properties | 群集的其他属性。 | ClusterProperties |
zones | 部署此群集可用性区域。 | string[] |
ClusterProperties
名称 | 说明 | 值 |
---|---|---|
minimumTlsVersion | 要支持的群集的最低 TLS 版本,例如“1.2” | '1.0' '1.1' '1.2' |
SKU
名称 | 说明 | 值 |
---|---|---|
容量 | RedisEnterprise 群集的大小。 默认值为 2 或 3,具体取决于 SKU。 对于企业 SKU,有效值为 (2、4、6、...) ,Flash SKU 的有效值为 (3、9、15、...) 。 | int |
name | 要部署的 RedisEnterprise 群集的类型。 可能的值: (Enterprise_E10、EnterpriseFlash_F300等 ) | “EnterpriseFlash_F1500” “EnterpriseFlash_F300” “EnterpriseFlash_F700” “Enterprise_E10” “Enterprise_E100” “Enterprise_E20” 需要“Enterprise_E50” () |
快速入门模板
以下快速入门模板部署此资源类型。
模板 | 说明 |
---|---|
Redis Enterprise with Vector DB |
此模板创建一个 Redis 缓存,该缓存可用作通过索引存储和查询嵌入的矢量 DB。 对于此功能,Redis 搜索模块已在 Azure Redis 中激活 |
ARM 模板资源定义
redisEnterprise 资源类型可以使用面向以下对象的操作进行部署:
- 资源组 - 请参阅 资源组部署命令
有关每个 API 版本中已更改属性的列表,请参阅 更改日志。
资源格式
若要创建 Microsoft.Cache/redisEnterprise 资源,请将以下 JSON 添加到模板。
{
"type": "Microsoft.Cache/redisEnterprise",
"apiVersion": "2021-03-01",
"name": "string",
"location": "string",
"tags": {
"tagName1": "tagValue1",
"tagName2": "tagValue2"
},
"sku": {
"capacity": "int",
"name": "string"
},
"properties": {
"minimumTlsVersion": "string"
},
"zones": [ "string" ]
}
属性值
redisEnterprise
名称 | 说明 | Value |
---|---|---|
type | 资源类型 | “Microsoft.Cache/redisEnterprise” |
apiVersion | 资源 API 版本 | '2021-03-01' |
name | 资源名称 | 字符串 (必需) |
location | 资源所在的地理位置 | 字符串 (必需) |
标记 | 资源标记。 | 标记名称和值的字典。 请参阅 模板中的标记 |
sku | 要创建的 SKU,这会影响价格、性能和功能。 | 需要 sku () |
properties | 群集的其他属性。 | ClusterProperties |
zones | 将部署此群集的可用性区域。 | string[] |
ClusterProperties
名称 | 说明 | 值 |
---|---|---|
minimumTlsVersion | 群集支持的最低 TLS 版本,例如“1.2” | '1.0' '1.1' '1.2' |
SKU
名称 | 说明 | 值 |
---|---|---|
容量 | RedisEnterprise 群集的大小。 默认为 2 或 3,具体取决于 SKU。 对于企业 SKU,有效值为 (2、4、6、...) ,Flash SKU 的有效值为 (3、9、15、...) 。 | int |
name | 要部署的 RedisEnterprise 群集的类型。 可能的值: (Enterprise_E10、EnterpriseFlash_F300等 ) | “EnterpriseFlash_F1500” “EnterpriseFlash_F300” “EnterpriseFlash_F700” “Enterprise_E10” “Enterprise_E100” “Enterprise_E20” “Enterprise_E50” (必需) |
快速入门模板
以下快速入门模板部署此资源类型。
模板 | 说明 |
---|---|
Redis Enterprise with Vector DB |
此模板创建一个 Redis 缓存,该缓存可用作矢量 DB,通过索引存储和查询嵌入内容。 对于此功能,Redis 搜索模块已在 Azure Redis 中激活 |
Terraform (AzAPI 提供程序) 资源定义
redisEnterprise 资源类型可以通过针对以下操作进行部署:
- 资源组
有关每个 API 版本中更改的属性的列表,请参阅 更改日志。
资源格式
若要创建 Microsoft.Cache/redisEnterprise 资源,请将以下 Terraform 添加到模板。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Cache/redisEnterprise@2021-03-01"
name = "string"
location = "string"
parent_id = "string"
tags = {
tagName1 = "tagValue1"
tagName2 = "tagValue2"
}
body = jsonencode({
properties = {
minimumTlsVersion = "string"
}
zones = [
"string"
]
sku = {
capacity = int
name = "string"
}
})
}
属性值
redisEnterprise
名称 | 说明 | Value |
---|---|---|
type | 资源类型 | “Microsoft.Cache/redisEnterprise@2021-03-01” |
name | 资源名称 | 字符串 (必需) |
location | 资源所在的地理位置 | 字符串 (必需) |
parent_id | 若要部署到资源组,请使用该资源组的 ID。 | 字符串 (必需) |
标记 | 资源标记。 | 标记名称和值的字典。 |
sku | 要创建的 SKU,这会影响价格、性能和功能。 | 需要 sku () |
properties | 群集的其他属性。 | ClusterProperties |
zones | 将部署此群集的可用性区域。 | string[] |
ClusterProperties
名称 | 说明 | 值 |
---|---|---|
minimumTlsVersion | 群集支持的最低 TLS 版本,例如“1.2” | "1.0" "1.1" "1.2" |
SKU
名称 | 说明 | 值 |
---|---|---|
容量 | RedisEnterprise 群集的大小。 默认为 2 或 3,具体取决于 SKU。 对于企业 SKU,有效值为 (2、4、6、...) ,Flash SKU 的有效值为 (3、9、15、...) 。 | int |
name | 要部署的 RedisEnterprise 群集的类型。 可能的值: (Enterprise_E10、EnterpriseFlash_F300等 ) | “EnterpriseFlash_F1500” “EnterpriseFlash_F300” “EnterpriseFlash_F700” “Enterprise_E10” “Enterprise_E100” “Enterprise_E20” “Enterprise_E50” (必需) |