你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
Microsoft.Sql servers/failoverGroups 2020-08-01-preview
Bicep 资源定义
可以使用面向以下操作部署 servers/failoverGroups 资源类型:
- 资源组 - 请参阅 资源组部署命令
有关每个 API 版本中已更改属性的列表,请参阅 更改日志。
资源格式
若要创建 Microsoft.Sql/servers/failoverGroups 资源,请将以下 Bicep 添加到模板。
resource symbolicname 'Microsoft.Sql/servers/failoverGroups@2020-08-01-preview' = {
name: 'string'
tags: {
tagName1: 'tagValue1'
tagName2: 'tagValue2'
}
parent: resourceSymbolicName
properties: {
databases: [
'string'
]
partnerServers: [
{
id: 'string'
}
]
readWriteEndpoint: {
failoverPolicy: 'string'
failoverWithDataLossGracePeriodMinutes: int
}
}
}
属性值
servers/failoverGroups
名称 | 说明 | 值 |
---|---|---|
name | 资源名称 了解如何在 Bicep 中设置子资源的名称和类型。 |
字符串 (必需) 字符限制:1-63 有效字符: 小写字母、数字和连字符。 不能以连字符开头或结尾。 资源名称在 Azure 中必须是唯一的。 |
标记 | 资源标记。 | 标记名称和值的字典。 请参阅 模板中的标记 |
父级 (parent) | 在 Bicep 中,可以为子资源指定父资源。 仅当子资源在父资源外部声明时,才需要添加此属性。 有关详细信息,请参阅 父资源之外的子资源。 |
类型为“服务器”的资源的符号名称 |
properties | 资源属性。 | FailoverGroupProperties |
FailoverGroupProperties
名称 | 说明 | 值 |
---|---|---|
数据库 | 故障转移组中的数据库列表。 | string[] |
partnerServers | 故障转移组的伙伴服务器信息列表。 | PartnerInfo[] (必需) |
readWriteEndpoint | 故障转移组实例的读写终结点。 | 需要 FailoverGroupReadWriteEndpoint () |
PartnerInfo
名称 | 说明 | Value |
---|---|---|
id | 伙伴服务器的资源标识符。 | 字符串 (必需) |
FailoverGroupReadWriteEndpoint
名称 | 说明 | 值 |
---|---|---|
failoverPolicy | 故障转移组的读写终结点的故障转移策略。 如果 failoverPolicy 为 Automatic,则需要 failoverWithDataLossGracePeriodMinutes。 | 'Automatic' 需要“手动” () |
failoverWithDataLossGracePeriodMinutes | 尝试对读写终结点执行故障转移并丢失数据之前的宽限期。 如果 failoverPolicy 为 Automatic,则需要 failoverWithDataLossGracePeriodMinutes。 | int |
快速入门模板
以下快速入门模板部署此资源类型。
模板 | 说明 |
---|---|
使用故障转移组创建Azure SQL服务器和数据库 |
创建两个Azure SQL服务器、一个数据库和一个故障转移组。 |
ARM 模板资源定义
可以使用面向以下操作部署 servers/failoverGroups 资源类型:
- 资源组 - 请参阅 资源组部署命令
有关每个 API 版本中已更改属性的列表,请参阅 更改日志。
资源格式
若要创建 Microsoft.Sql/servers/failoverGroups 资源,请将以下 JSON 添加到模板。
{
"type": "Microsoft.Sql/servers/failoverGroups",
"apiVersion": "2020-08-01-preview",
"name": "string",
"tags": {
"tagName1": "tagValue1",
"tagName2": "tagValue2"
},
"properties": {
"databases": [ "string" ],
"partnerServers": [
{
"id": "string"
}
],
"readWriteEndpoint": {
"failoverPolicy": "string",
"failoverWithDataLossGracePeriodMinutes": "int"
}
}
}
属性值
servers/failoverGroups
名称 | 说明 | Value |
---|---|---|
type | 资源类型 | “Microsoft.Sql/servers/failoverGroups” |
apiVersion | 资源 API 版本 | “2020-08-01-preview” |
name | 资源名称 了解如何在 JSON ARM 模板中为子资源设置名称和类型。 |
字符串 (必需) 字符限制:1-63 有效字符: 小写字母、数字和连字符。 不能以连字符开头或结尾。 资源名称在 Azure 中必须是唯一的。 |
标记 | 资源标记。 | 标记名称和值的字典。 请参阅 模板中的标记 |
properties | 资源属性。 | FailoverGroupProperties |
FailoverGroupProperties
名称 | 说明 | 值 |
---|---|---|
数据库 | 故障转移组中的数据库列表。 | string[] |
partnerServers | 故障转移组的合作伙伴服务器信息列表。 | PartnerInfo[] (必需的) |
readWriteEndpoint | 故障转移组实例的读写终结点。 | FailoverGroupReadWriteEndpoint (必需) |
PartnerInfo
名称 | 说明 | Value |
---|---|---|
id | 合作伙伴服务器的资源标识符。 | 字符串 (必需) |
FailoverGroupReadWriteEndpoint
名称 | 说明 | 值 |
---|---|---|
failoverPolicy | 故障转移组的读写终结点的故障转移策略。 如果 failoverPolicy 为 Automatic,则需要 failoverWithDataLossGracePeriodMinutes。 | “自动” “手动” (必需) |
failoverWithDataLossGracePeriodMinutes | 对读写终结点尝试故障转移数据丢失之前的宽限期。 如果 failoverPolicy 为 Automatic,则需要 failoverWithDataLossGracePeriodMinutes。 | int |
快速入门模板
以下快速入门模板部署此资源类型。
模板 | 说明 |
---|---|
使用故障转移组创建Azure SQL服务器和数据库 |
创建两个Azure SQL服务器、一个数据库和一个故障转移组。 |
Terraform (AzAPI 提供程序) 资源定义
可以使用针对以下操作部署 servers/failoverGroups 资源类型:
- 资源组
有关每个 API 版本中更改的属性的列表,请参阅 更改日志。
资源格式
若要创建 Microsoft.Sql/servers/failoverGroups 资源,请将以下 Terraform 添加到模板。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Sql/servers/failoverGroups@2020-08-01-preview"
name = "string"
parent_id = "string"
tags = {
tagName1 = "tagValue1"
tagName2 = "tagValue2"
}
body = jsonencode({
properties = {
databases = [
"string"
]
partnerServers = [
{
id = "string"
}
]
readWriteEndpoint = {
failoverPolicy = "string"
failoverWithDataLossGracePeriodMinutes = int
}
}
})
}
属性值
servers/failoverGroups
名称 | 说明 | Value |
---|---|---|
type | 资源类型 | “Microsoft.Sql/servers/failoverGroups@2020-08-01-preview” |
name | 资源名称 | 字符串 (必需) 字符限制:1-63 有效字符: 小写字母、数字和连字符。 不能以连字符开头或结尾。 资源名称在 Azure 中必须是唯一的。 |
parent_id | 此资源的父资源 ID。 | 类型为“服务器”的资源的 ID |
标记 | 资源标记。 | 标记名称和值的字典。 |
properties | 资源属性。 | FailoverGroupProperties |
FailoverGroupProperties
名称 | 说明 | 值 |
---|---|---|
数据库 | 故障转移组中的数据库列表。 | string[] |
partnerServers | 故障转移组的伙伴服务器信息列表。 | PartnerInfo[] (必需) |
readWriteEndpoint | 故障转移组实例的读写终结点。 | 需要 FailoverGroupReadWriteEndpoint () |
PartnerInfo
名称 | 说明 | Value |
---|---|---|
id | 伙伴服务器的资源标识符。 | 字符串 (必需) |
FailoverGroupReadWriteEndpoint
名称 | 说明 | 值 |
---|---|---|
failoverPolicy | 故障转移组的读写终结点的故障转移策略。 如果 failoverPolicy 为 Automatic,则需要 failoverWithDataLossGracePeriodMinutes。 | “Automatic” “手动” (必需) |
failoverWithDataLossGracePeriodMinutes | 尝试对读写终结点执行故障转移并丢失数据之前的宽限期。 如果 failoverPolicy 为 Automatic,则需要 failoverWithDataLossGracePeriodMinutes。 | int |