你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Microsoft.DBforMySQL 服务器 2017-12-01-preview

Bicep 资源定义

可以使用目标操作部署服务器资源类型:

有关每个 API 版本中已更改属性的列表,请参阅 更改日志

资源格式

若要创建 Microsoft.DBforMySQL/servers 资源,请将以下 Bicep 添加到模板。

resource symbolicname 'Microsoft.DBforMySQL/servers@2017-12-01-preview' = {
  name: 'string'
  location: 'string'
  tags: {
    tagName1: 'tagValue1'
    tagName2: 'tagValue2'
  }
  sku: {
    capacity: int
    family: 'string'
    name: 'string'
    size: 'string'
    tier: 'string'
  }
  properties: {
    minimalTlsVersion: 'string'
    sslEnforcement: 'string'
    storageProfile: {
      backupRetentionDays: int
      geoRedundantBackup: 'string'
      storageAutogrow: 'string'
      storageMB: int
    }
    version: 'string'
    createMode: 'string'
    // For remaining properties, see ServerPropertiesForCreateOrServerProperties objects
  }
}

ServerPropertiesForCreateOrServerProperties 对象

设置 createMode 属性以指定对象的类型。

对于 默认,请使用:

  createMode: 'Default'
  administratorLogin: 'string'
  administratorLoginPassword: 'string'

对于 GeoRestore,请使用:

  createMode: 'GeoRestore'
  sourceServerId: 'string'

对于 pointInTimeRestore,请使用:

  createMode: 'PointInTimeRestore'
  restorePointInTime: 'string'
  sourceServerId: 'string'

对于 副本,请使用:

注意

使用模板创建具有 副本 值的 MySQL 服务器不是幂等的。 首次成功创建服务器。 但是,当副本服务器已存在时部署模板将返回错误。

  createMode: 'Replica'
  sourceServerId: 'string'

属性值

服务器

名字 描述 价值
名字 资源名称 string (必需)

字符限制:3-63

有效字符:
小写字母、连字符和数字。

不能以连字符开头或结尾。

资源名称在 Azure 中必须是唯一的。
位置 资源所在的位置。 string (必需)
标签 键值对形式的特定于应用程序的元数据。 标记名称和值的字典。 请参阅模板 中的 标记
sku 服务器的 SKU(定价层)。 Sku
性能 服务器的属性。 ServerPropertiesForCreateOrServerProperties (必需)

ServerPropertiesForCreateOrServerProperties

名字 描述 价值
minimalTlsVersion 为服务器强制实施最低 Tls 版本。 “TLS1_0”
“TLS1_1”
“TLS1_2”
“TLSEnforcementDisabled”
sslEnforcement 在连接到服务器时启用 ssl 强制。 “Disabled”
“Enabled”
storageProfile 服务器的存储配置文件。 StorageProfile
版本 服务器版本。 '5.6'
'5.7'
'8.0'
createMode 设置对象类型 默认
GeoRestore
PointInTimeRestore
副本(必需)

StorageProfile

名字 描述 价值
backupRetentionDays 服务器的备份保留日。 int
geoRedundantBackup 为服务器备份启用异地冗余或不启用。 “Disabled”
“Enabled”
storageAutogrow 启用存储自动增长。 “Disabled”
“Enabled”
storageMB 服务器允许的最大存储。 int

ServerPropertiesForDefaultCreate

名字 描述 价值
createMode 创建新服务器的模式。 “Default”(必需)
administratorLogin 管理员的服务器登录名。 只能在创建服务器时指定(并且是创建所必需的)。 string (必需)
administratorLoginPassword 管理员登录名的密码。 string (必需)

约束:
敏感值。 以安全参数的形式传入。

ServerPropertiesForGeoRestore

名字 描述 价值
createMode 创建新服务器的模式。 “GeoRestore”(必需)
sourceServerId 要从中还原的源服务器 ID。 string (必需)

ServerPropertiesForRestore

名字 描述 价值
createMode 创建新服务器的模式。 “PointInTimeRestore”(必需)
restorePointInTime 还原点创建时间(ISO8601格式),指定要从中还原的时间。 string (必需)
sourceServerId 要从中还原的源服务器 ID。 string (必需)

ServerPropertiesForReplica

名字 描述 价值
createMode 创建新服务器的模式。 “Replica”(必需)
sourceServerId 要从中创建副本的主服务器 ID。 string (必需)

Sku

名字 描述 价值
能力 纵向扩展/横向扩展容量,表示服务器的计算单位。 int

约束:
最小值 = 0
家庭 硬件系列。 字符串
名字 sku 的名称(通常为层 + 系列 + 核心),例如B_Gen4_1,GP_Gen5_8。 string (必需)
大小 要适当地由资源解释的大小代码。 字符串
特定 SKU 的层,例如基本层。 “Basic”
“GeneralPurpose”
“MemoryOptimized”

快速入门模板

以下快速入门模板部署此资源类型。

模板 描述
布法罗 Web 应用

部署到 Azure
开始快速且廉价地在 Azure 上运行 Golang Buffalo 应用程序。
使用 Jenkins 和 Azure Web 应用 Java CI/CD

部署到 Azure
这是使用 Jenkins 和 Azure Web 应用进行 Java CI/CD 的示例。
部署 1 个 MySQL PaaS 实例和最多 5 个只读副本

部署到 Azure
此模板将部署 MySQL PaaS 服务器实例,以及从 0 到 5 个只读副本。 它们都将设置为与主服务器相同的位置,并且会自动配置复制。
使用 VNet 部署 Azure Database for MySQL

部署到 Azure
此模板提供了一种方法,用于部署具有 VNet 集成的 Azure Database for MySQL。
为具有 IP 限制的 Web 应用 应用程序网关

部署到 Azure
此模板在 Azure Web 应用前创建应用程序网关,并在 Web 应用上启用了 IP 限制。
使用 Azure Database for MySQL 在 Linux 上生成 Web 应用

部署到 Azure
此模板提供了使用 Azure Database for MySQL 在 Linux 上部署 Web 应用的方法。
在 Linux 上使用 MySQL Sonarqube Docker Web 应用

部署到 Azure
此模板提供了使用 Azure Database for MySQL 在 Linux Web 应用上部署 Sonarqube docker 映像(alpine tag)的简单方法
使用 Azure database for MySQL Web 应用

部署到 Azure
此模板提供了使用 Azure Database for MySQL 在 Azure 应用服务 Web 应用上部署 Web 应用的简单方法。

ARM 模板资源定义

可以使用目标操作部署服务器资源类型:

有关每个 API 版本中已更改属性的列表,请参阅 更改日志

资源格式

若要创建 Microsoft.DBforMySQL/servers 资源,请将以下 JSON 添加到模板。

{
  "type": "Microsoft.DBforMySQL/servers",
  "apiVersion": "2017-12-01-preview",
  "name": "string",
  "location": "string",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "sku": {
    "capacity": "int",
    "family": "string",
    "name": "string",
    "size": "string",
    "tier": "string"
  },
  "properties": {
    "minimalTlsVersion": "string",
    "sslEnforcement": "string",
    "storageProfile": {
      "backupRetentionDays": "int",
      "geoRedundantBackup": "string",
      "storageAutogrow": "string",
      "storageMB": "int"
    },
    "version": "string",
    "createMode": "string"
    // For remaining properties, see ServerPropertiesForCreateOrServerProperties objects
  }
}

ServerPropertiesForCreateOrServerProperties 对象

设置 createMode 属性以指定对象的类型。

对于 默认,请使用:

  "createMode": "Default",
  "administratorLogin": "string",
  "administratorLoginPassword": "string"

对于 GeoRestore,请使用:

  "createMode": "GeoRestore",
  "sourceServerId": "string"

对于 pointInTimeRestore,请使用:

  "createMode": "PointInTimeRestore",
  "restorePointInTime": "string",
  "sourceServerId": "string"

对于 副本,请使用:

注意

使用模板创建具有 副本 值的 MySQL 服务器不是幂等的。 首次成功创建服务器。 但是,当副本服务器已存在时部署模板将返回错误。

  "createMode": "Replica",
  "sourceServerId": "string"

属性值

服务器

名字 描述 价值
类型 资源类型 “Microsoft.DBforMySQL/servers”
apiVersion 资源 API 版本 '2017-12-01-preview'
名字 资源名称 string (必需)

字符限制:3-63

有效字符:
小写字母、连字符和数字。

不能以连字符开头或结尾。

资源名称在 Azure 中必须是唯一的。
位置 资源所在的位置。 string (必需)
标签 键值对形式的特定于应用程序的元数据。 标记名称和值的字典。 请参阅模板 中的 标记
sku 服务器的 SKU(定价层)。 Sku
性能 服务器的属性。 ServerPropertiesForCreateOrServerProperties (必需)

ServerPropertiesForCreateOrServerProperties

名字 描述 价值
minimalTlsVersion 为服务器强制实施最低 Tls 版本。 “TLS1_0”
“TLS1_1”
“TLS1_2”
“TLSEnforcementDisabled”
sslEnforcement 在连接到服务器时启用 ssl 强制。 “Disabled”
“Enabled”
storageProfile 服务器的存储配置文件。 StorageProfile
版本 服务器版本。 '5.6'
'5.7'
'8.0'
createMode 设置对象类型 默认
GeoRestore
PointInTimeRestore
副本(必需)

StorageProfile

名字 描述 价值
backupRetentionDays 服务器的备份保留日。 int
geoRedundantBackup 为服务器备份启用异地冗余或不启用。 “Disabled”
“Enabled”
storageAutogrow 启用存储自动增长。 “Disabled”
“Enabled”
storageMB 服务器允许的最大存储。 int

ServerPropertiesForDefaultCreate

名字 描述 价值
createMode 创建新服务器的模式。 “Default”(必需)
administratorLogin 管理员的服务器登录名。 只能在创建服务器时指定(并且是创建所必需的)。 string (必需)
administratorLoginPassword 管理员登录名的密码。 string (必需)

约束:
敏感值。 以安全参数的形式传入。

ServerPropertiesForGeoRestore

名字 描述 价值
createMode 创建新服务器的模式。 “GeoRestore”(必需)
sourceServerId 要从中还原的源服务器 ID。 string (必需)

ServerPropertiesForRestore

名字 描述 价值
createMode 创建新服务器的模式。 “PointInTimeRestore”(必需)
restorePointInTime 还原点创建时间(ISO8601格式),指定要从中还原的时间。 string (必需)
sourceServerId 要从中还原的源服务器 ID。 string (必需)

ServerPropertiesForReplica

名字 描述 价值
createMode 创建新服务器的模式。 “Replica”(必需)
sourceServerId 要从中创建副本的主服务器 ID。 string (必需)

Sku

名字 描述 价值
能力 纵向扩展/横向扩展容量,表示服务器的计算单位。 int

约束:
最小值 = 0
家庭 硬件系列。 字符串
名字 sku 的名称(通常为层 + 系列 + 核心),例如B_Gen4_1,GP_Gen5_8。 string (必需)
大小 要适当地由资源解释的大小代码。 字符串
特定 SKU 的层,例如基本层。 “Basic”
“GeneralPurpose”
“MemoryOptimized”

快速入门模板

以下快速入门模板部署此资源类型。

模板 描述
布法罗 Web 应用

部署到 Azure
开始快速且廉价地在 Azure 上运行 Golang Buffalo 应用程序。
使用 Jenkins 和 Azure Web 应用 Java CI/CD

部署到 Azure
这是使用 Jenkins 和 Azure Web 应用进行 Java CI/CD 的示例。
部署 1 个 MySQL PaaS 实例和最多 5 个只读副本

部署到 Azure
此模板将部署 MySQL PaaS 服务器实例,以及从 0 到 5 个只读副本。 它们都将设置为与主服务器相同的位置,并且会自动配置复制。
使用 VNet 部署 Azure Database for MySQL

部署到 Azure
此模板提供了一种方法,用于部署具有 VNet 集成的 Azure Database for MySQL。
为具有 IP 限制的 Web 应用 应用程序网关

部署到 Azure
此模板在 Azure Web 应用前创建应用程序网关,并在 Web 应用上启用了 IP 限制。
使用 Azure Database for MySQL 在 Linux 上生成 Web 应用

部署到 Azure
此模板提供了使用 Azure Database for MySQL 在 Linux 上部署 Web 应用的方法。
在 Linux 上使用 MySQL Sonarqube Docker Web 应用

部署到 Azure
此模板提供了使用 Azure Database for MySQL 在 Linux Web 应用上部署 Sonarqube docker 映像(alpine tag)的简单方法
使用 Azure database for MySQL Web 应用

部署到 Azure
此模板提供了使用 Azure Database for MySQL 在 Azure 应用服务 Web 应用上部署 Web 应用的简单方法。

Terraform (AzAPI 提供程序)资源定义

可以使用目标操作部署服务器资源类型:

  • 资源组

有关每个 API 版本中已更改属性的列表,请参阅 更改日志

资源格式

若要创建 Microsoft.DBforMySQL/servers 资源,请将以下 Terraform 添加到模板中。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.DBforMySQL/servers@2017-12-01-preview"
  name = "string"
  location = "string"
  parent_id = "string"
  tags = {
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
  body = jsonencode({
    properties = {
      minimalTlsVersion = "string"
      sslEnforcement = "string"
      storageProfile = {
        backupRetentionDays = int
        geoRedundantBackup = "string"
        storageAutogrow = "string"
        storageMB = int
      }
      version = "string"
      createMode = "string"
      // For remaining properties, see ServerPropertiesForCreateOrServerProperties objects
    }
    sku = {
      capacity = int
      family = "string"
      name = "string"
      size = "string"
      tier = "string"
    }
  })
}

ServerPropertiesForCreateOrServerProperties 对象

设置 createMode 属性以指定对象的类型。

对于 默认,请使用:

  createMode = "Default"
  administratorLogin = "string"
  administratorLoginPassword = "string"

对于 GeoRestore,请使用:

  createMode = "GeoRestore"
  sourceServerId = "string"

对于 pointInTimeRestore,请使用:

  createMode = "PointInTimeRestore"
  restorePointInTime = "string"
  sourceServerId = "string"

对于 副本,请使用:

注意

使用模板创建具有 副本 值的 MySQL 服务器不是幂等的。 首次成功创建服务器。 但是,当副本服务器已存在时部署模板将返回错误。

  createMode = "Replica"
  sourceServerId = "string"

属性值

服务器

名字 描述 价值
类型 资源类型 “Microsoft.DBforMySQL/servers@2017-12-01-preview”
名字 资源名称 string (必需)

字符限制:3-63

有效字符:
小写字母、连字符和数字。

不能以连字符开头或结尾。

资源名称在 Azure 中必须是唯一的。
位置 资源所在的位置。 string (必需)
parent_id 若要部署到资源组,请使用该资源组的 ID。 string (必需)
标签 键值对形式的特定于应用程序的元数据。 标记名称和值的字典。
sku 服务器的 SKU(定价层)。 Sku
性能 服务器的属性。 ServerPropertiesForCreateOrServerProperties (必需)

ServerPropertiesForCreateOrServerProperties

名字 描述 价值
minimalTlsVersion 为服务器强制实施最低 Tls 版本。 “TLS1_0”
“TLS1_1”
“TLS1_2”
“TLSEnforcementDisabled”
sslEnforcement 在连接到服务器时启用 ssl 强制。 “Disabled”
“已启用”
storageProfile 服务器的存储配置文件。 StorageProfile
版本 服务器版本。 "5.6"
"5.7"
"8.0"
createMode 设置对象类型 默认
GeoRestore
PointInTimeRestore
副本(必需)

StorageProfile

名字 描述 价值
backupRetentionDays 服务器的备份保留日。 int
geoRedundantBackup 为服务器备份启用异地冗余或不启用。 “Disabled”
“已启用”
storageAutogrow 启用存储自动增长。 “Disabled”
“已启用”
storageMB 服务器允许的最大存储。 int

ServerPropertiesForDefaultCreate

名字 描述 价值
createMode 创建新服务器的模式。 “Default”(必需)
administratorLogin 管理员的服务器登录名。 只能在创建服务器时指定(并且是创建所必需的)。 string (必需)
administratorLoginPassword 管理员登录名的密码。 string (必需)

约束:
敏感值。 以安全参数的形式传入。

ServerPropertiesForGeoRestore

名字 描述 价值
createMode 创建新服务器的模式。 “GeoRestore”(必需)
sourceServerId 要从中还原的源服务器 ID。 string (必需)

ServerPropertiesForRestore

名字 描述 价值
createMode 创建新服务器的模式。 “PointInTimeRestore”(必需)
restorePointInTime 还原点创建时间(ISO8601格式),指定要从中还原的时间。 string (必需)
sourceServerId 要从中还原的源服务器 ID。 string (必需)

ServerPropertiesForReplica

名字 描述 价值
createMode 创建新服务器的模式。 “副本”(必需)
sourceServerId 要从中创建副本的主服务器 ID。 string (必需)

Sku

名字 描述 价值
能力 纵向扩展/横向扩展容量,表示服务器的计算单位。 int

约束:
最小值 = 0
家庭 硬件系列。 字符串
名字 sku 的名称(通常为层 + 系列 + 核心),例如B_Gen4_1,GP_Gen5_8。 string (必需)
大小 要适当地由资源解释的大小代码。 字符串
特定 SKU 的层,例如基本层。 “Basic”
“GeneralPurpose”
“MemoryOptimized”