Servers - Create
새 서버를 만들거나 기존 서버를 업데이트합니다. 업데이트 작업은 기존 서버를 덮어씁 수 있습니다.
PUT https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/flexibleServers/{serverName}?api-version=2024-06-01-preview
URI 매개 변수
Name | In(다음 안에) | 필수 | 형식 | Description |
---|---|---|---|---|
resource
|
path | True |
string |
리소스 그룹의 이름입니다. 이름은 대/소문자를 구분하지 않습니다. |
server
|
path | True |
string |
서버의 이름입니다. regex 패턴: |
subscription
|
path | True |
string uuid |
대상 구독의 ID입니다. 값은 UUID여야 합니다. |
api-version
|
query | True |
string |
이 작업에 사용할 API 버전입니다. |
요청 본문
Name | 필수 | 형식 | Description |
---|---|---|---|
location | True |
string |
리소스가 있는 지리적 위치 |
identity.type |
관리 서비스 ID의 유형입니다. |
||
identity.userAssignedIdentities |
object |
사용자 할당 ID의 메타데이터입니다. |
|
properties.administratorLogin |
string |
서버의 관리자 로그인 이름입니다. 서버를 만들 때만 지정할 수 있습니다(만들기에 필요). |
|
properties.administratorLoginPassword |
string |
관리자 로그인의 암호입니다(서버 생성에 필요). |
|
properties.availabilityZone |
string |
서버의 가용성 영역 정보입니다. |
|
properties.backup |
서버의 관련 속성을 백업합니다. |
||
properties.createMode |
새 MySQL 서버를 만드는 모드입니다. |
||
properties.dataEncryption |
CMK에 대한 데이터 암호화입니다. |
||
properties.databasePort |
integer |
서버 데이터베이스 포트입니다. 서버를 만들 때만 지정할 수 있습니다. |
|
properties.highAvailability |
서버의 고가용성 관련 속성입니다. |
||
properties.importSourceProperties |
스토리지에서 가져오기 위한 원본 속성입니다. |
||
properties.maintenancePolicy |
서버의 유지 관리 정책입니다. |
||
properties.maintenanceWindow |
서버의 유지 관리 기간입니다. 알려진 문제: 서버를 만드는 동안 설정하거나 서버 업데이트 중에 다른 속성으로 업데이트할 수 없습니다. 는 별도로 업데이트해야 합니다. |
||
properties.network |
서버의 네트워크 관련 속성입니다. |
||
properties.replicationRole |
복제 역할입니다. |
||
properties.restorePointInTime |
string |
복원할 시간을 지정하는 복원 지점 생성 시간(ISO8601 형식)입니다. |
|
properties.sourceServerResourceId |
string |
원본 MySQL 서버 ID입니다. |
|
properties.storage |
서버의 스토리지 관련 속성입니다. |
||
properties.version |
서버 버전입니다. |
||
sku |
서버의 SKU(가격 책정 계층)입니다. |
||
tags |
object |
리소스 태그. |
응답
Name | 형식 | Description |
---|---|---|
200 OK |
그래 |
|
201 Created |
만든 |
|
202 Accepted |
허용 헤더 Location: string |
|
Other Status Codes |
작업이 실패한 이유를 설명하는 오류 응답입니다. |
보안
azure_auth
Azure Active Directory OAuth2 Flow
형식:
oauth2
Flow:
implicit
권한 부여 URL:
https://login.microsoftonline.com/common/oauth2/authorize
범위
Name | Description |
---|---|
user_impersonation | 사용자 계정 가장 |
예제
Create a new server |
Create a replica server |
Create a server as a point in time restore |
Create a server with byok |
Create a server with non-default database port |
Create a new server
샘플 요청
PUT https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/flexibleServers/mysqltestserver?api-version=2024-06-01-preview
{
"sku": {
"name": "Standard_D2ds_v4",
"tier": "GeneralPurpose"
},
"properties": {
"administratorLogin": "cloudsa",
"administratorLoginPassword": "your_password",
"availabilityZone": "1",
"version": "5.7",
"createMode": "Default",
"storage": {
"storageSizeGB": 100,
"iops": 600,
"autoGrow": "Disabled",
"storageRedundancy": "LocalRedundancy"
},
"backup": {
"backupRetentionDays": 7,
"backupIntervalHours": 24,
"geoRedundantBackup": "Disabled"
},
"highAvailability": {
"mode": "ZoneRedundant",
"standbyAvailabilityZone": "3"
}
},
"location": "southeastasia",
"tags": {
"num": "1"
}
}
샘플 응답
{
"sku": {
"name": "Standard_D2ds_v4",
"tier": "GeneralPurpose"
},
"properties": {
"administratorLogin": "cloudsa",
"storage": {
"storageSizeGB": 100,
"iops": 600,
"autoGrow": "Enabled",
"storageSku": "Premium_LRS",
"storageRedundancy": "LocalRedundancy"
},
"version": "5.7",
"state": "Ready",
"fullyQualifiedDomainName": "mysqltestserver.database.mysql.azure.com",
"availabilityZone": "1",
"maintenancePolicy": {
"patchStrategy": "Regular"
},
"maintenanceWindow": {
"customWindow": "Disabled",
"dayOfWeek": 0,
"startHour": 0,
"startMinute": 0
},
"replicationRole": "None",
"replicaCapacity": 10,
"network": {
"publicNetworkAccess": "Enabled"
},
"backup": {
"backupRetentionDays": 7,
"geoRedundantBackup": "Disabled",
"earliestRestoreDate": "2021-06-17T06:11:38.4150019+00:00"
},
"highAvailability": {
"mode": "ZoneRedundant",
"state": "Healthy",
"standbyAvailabilityZone": "3"
},
"databasePort": 3306
},
"location": "Southeast Asia",
"tags": {
"num": "1"
},
"id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/flexibleServers/mysqltestserver",
"name": "mysqltestserver",
"type": "Microsoft.DBforMySQL/flexibleServers"
}
{
"sku": {
"name": "Standard_D2ds_v4",
"tier": "GeneralPurpose"
},
"properties": {
"administratorLogin": "cloudsa",
"storage": {
"storageSizeGB": 100,
"iops": 600,
"autoGrow": "Enabled",
"storageSku": "Premium_LRS",
"storageRedundancy": "LocalRedundancy"
},
"version": "5.7",
"state": "Ready",
"fullyQualifiedDomainName": "mysqltestserver.database.mysql.azure.com",
"availabilityZone": "1",
"maintenanceWindow": {
"customWindow": "Disabled",
"dayOfWeek": 0,
"startHour": 0,
"startMinute": 0
},
"replicationRole": "None",
"replicaCapacity": 10,
"network": {
"publicNetworkAccess": "Enabled"
},
"backup": {
"backupRetentionDays": 7,
"geoRedundantBackup": "Disabled",
"earliestRestoreDate": "2021-06-17T06:11:38.4150019+00:00"
},
"highAvailability": {
"mode": "ZoneRedundant",
"state": "Healthy",
"standbyAvailabilityZone": "3"
},
"databasePort": 3306
},
"location": "Southeast Asia",
"tags": {
"num": "1"
},
"id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/flexibleServers/mysqltestserver",
"name": "mysqltestserver",
"type": "Microsoft.DBforMySQL/flexibleServers"
}
Create a replica server
샘플 요청
PUT https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testgr/providers/Microsoft.DBforMySQL/flexibleServers/replica-server?api-version=2024-06-01-preview
{
"location": "SoutheastAsia",
"properties": {
"createMode": "Replica",
"sourceServerResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testgr/providers/Microsoft.DBforMySQL/flexibleServers/source-server"
}
}
샘플 응답
{
"sku": {
"name": "Standard_D2ds_v4",
"tier": "GeneralPurpose"
},
"properties": {
"administratorLogin": "cloudsa",
"storage": {
"storageSizeGB": 20,
"iops": 360,
"autoGrow": "Enabled",
"storageSku": "Premium_LRS",
"storageRedundancy": "LocalRedundancy"
},
"version": "5.7",
"state": "Ready",
"fullyQualifiedDomainName": "replica-server.database.mysql.azure.com",
"sourceServerResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testgr/providers/Microsoft.DBforMySQL/flexibleServers/source-server",
"availabilityZone": "3",
"maintenancePolicy": {
"patchStrategy": "Regular"
},
"maintenanceWindow": {
"customWindow": "Disabled",
"dayOfWeek": 0,
"startHour": 0,
"startMinute": 0
},
"replicationRole": "Replica",
"replicaCapacity": 0,
"network": {
"publicNetworkAccess": "Enabled"
},
"backup": {
"backupRetentionDays": 7,
"backupIntervalHours": 24,
"geoRedundantBackup": "Disabled",
"earliestRestoreDate": "2021-06-24T08:19:18.5729164+00:00"
},
"highAvailability": {
"mode": "Disabled",
"state": "NotEnabled"
},
"databasePort": 3306
},
"location": "Southeast Asia",
"tags": {
"ElasticServer": "1"
},
"id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testgr/providers/Microsoft.DBforMySQL/flexibleServers/replica-server",
"name": "replica-server",
"type": "Microsoft.DBforMySQL/flexibleServers"
}
{
"sku": {
"name": "Standard_D2ds_v4",
"tier": "GeneralPurpose"
},
"properties": {
"administratorLogin": "cloudsa",
"storage": {
"storageSizeGB": 20,
"iops": 360,
"autoGrow": "Enabled",
"storageSku": "Premium_LRS",
"storageRedundancy": "LocalRedundancy"
},
"version": "5.7",
"state": "Ready",
"fullyQualifiedDomainName": "replica-server.database.mysql.azure.com",
"sourceServerResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testgr/providers/Microsoft.DBforMySQL/flexibleServers/source-server",
"availabilityZone": "3",
"maintenanceWindow": {
"customWindow": "Disabled",
"dayOfWeek": 0,
"startHour": 0,
"startMinute": 0
},
"replicationRole": "Replica",
"replicaCapacity": 0,
"network": {
"publicNetworkAccess": "Enabled"
},
"backup": {
"backupRetentionDays": 7,
"geoRedundantBackup": "Disabled",
"earliestRestoreDate": "2021-06-24T08:19:18.5729164+00:00"
},
"highAvailability": {
"mode": "Disabled",
"state": "NotEnabled"
},
"databasePort": 3306
},
"location": "Southeast Asia",
"tags": {
"ElasticServer": "1"
},
"id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testgr/providers/Microsoft.DBforMySQL/flexibleServers/replica-server",
"name": "replica-server",
"type": "Microsoft.DBforMySQL/flexibleServers"
}
Create a server as a point in time restore
샘플 요청
PUT https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TargetResourceGroup/providers/Microsoft.DBforMySQL/flexibleServers/targetserver?api-version=2024-06-01-preview
{
"location": "SoutheastAsia",
"properties": {
"restorePointInTime": "2021-06-24T00:00:37.467Z",
"createMode": "PointInTimeRestore",
"sourceServerResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMySQL/flexibleServers/sourceserver"
},
"sku": {
"name": "Standard_D14_v2",
"tier": "GeneralPurpose"
},
"tags": {
"num": "1"
}
}
샘플 응답
{
"sku": {
"name": "Standard_D2ds_v4",
"tier": "GeneralPurpose"
},
"properties": {
"administratorLogin": "adminuser",
"storage": {
"storageSizeGB": 20,
"iops": 360,
"autoGrow": "Enabled",
"storageSku": "Premium_LRS",
"storageRedundancy": "LocalRedundancy"
},
"version": "5.7",
"state": "Ready",
"fullyQualifiedDomainName": "targetserver.database.mysql.azure.com",
"availabilityZone": "1",
"maintenancePolicy": {
"patchStrategy": "Regular"
},
"maintenanceWindow": {
"customWindow": "Disabled",
"dayOfWeek": 0,
"startHour": 0,
"startMinute": 0
},
"replicationRole": "None",
"replicaCapacity": 10,
"network": {
"publicNetworkAccess": "Enabled"
},
"backup": {
"backupRetentionDays": 7,
"backupIntervalHours": 24,
"geoRedundantBackup": "Disabled",
"earliestRestoreDate": "2021-06-24T00:15:24.00+00:00"
},
"highAvailability": {
"mode": "Disabled",
"state": "NotEnabled"
},
"databasePort": 3306
},
"location": "Southeast Asia",
"tags": {
"num": "1"
},
"id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TargetResourceGroup/providers/Microsoft.DBforMySQL/flexibleServers/targetserver",
"name": "targetserver",
"type": "Microsoft.DBforMySQL/flexibleServers"
}
{
"sku": {
"name": "Standard_D2ds_v4",
"tier": "GeneralPurpose"
},
"properties": {
"administratorLogin": "adminuser",
"storage": {
"storageSizeGB": 20,
"iops": 360,
"autoGrow": "Enabled",
"storageSku": "Premium_LRS"
},
"version": "5.7",
"state": "Ready",
"fullyQualifiedDomainName": "targetserver.database.mysql.azure.com",
"availabilityZone": "1",
"maintenanceWindow": {
"customWindow": "Disabled",
"dayOfWeek": 0,
"startHour": 0,
"startMinute": 0
},
"replicationRole": "None",
"replicaCapacity": 10,
"network": {
"publicNetworkAccess": "Enabled"
},
"backup": {
"backupRetentionDays": 7,
"backupIntervalHours": 24,
"geoRedundantBackup": "Disabled",
"earliestRestoreDate": "2021-06-24T00:15:24.00+00:00"
},
"highAvailability": {
"mode": "Disabled",
"state": "NotEnabled"
},
"databasePort": 3306
},
"location": "Southeast Asia",
"tags": {
"num": "1"
},
"id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TargetResourceGroup/providers/Microsoft.DBforMySQL/flexibleServers/targetserver",
"name": "targetserver",
"type": "Microsoft.DBforMySQL/flexibleServers"
}
Create a server with byok
샘플 요청
PUT https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/flexibleServers/mysqltestserver?api-version=2024-06-01-preview
{
"identity": {
"type": "UserAssigned",
"userAssignedIdentities": {
"/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-identity": {}
}
},
"sku": {
"name": "Standard_D2ds_v4",
"tier": "GeneralPurpose"
},
"properties": {
"administratorLogin": "cloudsa",
"administratorLoginPassword": "your_password",
"availabilityZone": "1",
"version": "5.7",
"createMode": "Default",
"storage": {
"storageSizeGB": 100,
"iops": 600,
"autoGrow": "Disabled",
"storageRedundancy": "LocalRedundancy"
},
"backup": {
"backupRetentionDays": 7,
"backupIntervalHours": 24,
"geoRedundantBackup": "Disabled"
},
"highAvailability": {
"mode": "ZoneRedundant",
"standbyAvailabilityZone": "3"
},
"dataEncryption": {
"type": "AzureKeyVault",
"primaryUserAssignedIdentityId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-identity",
"primaryKeyURI": "https://test.vault.azure.net/keys/key/c8a92236622244c0a4fdb892666f671a",
"geoBackupUserAssignedIdentityId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/test-geo-identity",
"geoBackupKeyURI": "https://test-geo.vault.azure.net/keys/key/c8a92236622244c0a4fdb892666f671a"
}
},
"location": "southeastasia",
"tags": {
"num": "1"
}
}
샘플 응답
{
"sku": {
"name": "Standard_D2ds_v4",
"tier": "GeneralPurpose"
},
"properties": {
"administratorLogin": "cloudsa",
"storage": {
"storageSizeGB": 100,
"iops": 600,
"autoGrow": "Enabled",
"storageSku": "Premium_LRS"
},
"version": "5.7",
"state": "Ready",
"fullyQualifiedDomainName": "mysqltestserver.database.mysql.azure.com",
"availabilityZone": "1",
"maintenancePolicy": {
"patchStrategy": "Regular"
},
"maintenanceWindow": {
"customWindow": "Disabled",
"dayOfWeek": 0,
"startHour": 0,
"startMinute": 0
},
"replicationRole": "None",
"replicaCapacity": 10,
"network": {
"publicNetworkAccess": "Enabled"
},
"backup": {
"backupRetentionDays": 7,
"geoRedundantBackup": "Disabled",
"earliestRestoreDate": "2021-06-17T06:11:38.4150019+00:00"
},
"highAvailability": {
"mode": "ZoneRedundant",
"state": "Healthy",
"standbyAvailabilityZone": "3"
},
"databasePort": 3306
},
"location": "Southeast Asia",
"tags": {
"num": "1"
},
"id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/flexibleServers/mysqltestserver",
"name": "mysqltestserver",
"type": "Microsoft.DBforMySQL/flexibleServers"
}
{
"sku": {
"name": "Standard_D2ds_v4",
"tier": "GeneralPurpose"
},
"properties": {
"administratorLogin": "cloudsa",
"storage": {
"storageSizeGB": 100,
"iops": 600,
"autoGrow": "Enabled",
"storageSku": "Premium_LRS"
},
"version": "5.7",
"state": "Ready",
"fullyQualifiedDomainName": "mysqltestserver.database.mysql.azure.com",
"availabilityZone": "1",
"maintenanceWindow": {
"customWindow": "Disabled",
"dayOfWeek": 0,
"startHour": 0,
"startMinute": 0
},
"replicationRole": "None",
"replicaCapacity": 10,
"network": {
"publicNetworkAccess": "Enabled"
},
"backup": {
"backupRetentionDays": 7,
"geoRedundantBackup": "Disabled",
"earliestRestoreDate": "2021-06-17T06:11:38.4150019+00:00"
},
"highAvailability": {
"mode": "ZoneRedundant",
"state": "Healthy",
"standbyAvailabilityZone": "3"
},
"databasePort": 3306
},
"location": "Southeast Asia",
"tags": {
"num": "1"
},
"id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/flexibleServers/mysqltestserver",
"name": "mysqltestserver",
"type": "Microsoft.DBforMySQL/flexibleServers"
}
Create a server with non-default database port
샘플 요청
PUT https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/flexibleServers/mysqltestserver?api-version=2024-06-01-preview
{
"sku": {
"name": "Standard_D2ds_v4",
"tier": "GeneralPurpose"
},
"properties": {
"administratorLogin": "cloudsa",
"administratorLoginPassword": "your_password",
"availabilityZone": "1",
"version": "5.7",
"createMode": "Default",
"storage": {
"storageSizeGB": 100,
"iops": 600,
"autoGrow": "Disabled",
"storageRedundancy": "LocalRedundancy"
},
"backup": {
"backupRetentionDays": 7,
"backupIntervalHours": 24,
"geoRedundantBackup": "Disabled"
},
"highAvailability": {
"mode": "ZoneRedundant",
"standbyAvailabilityZone": "3"
},
"databasePort": 8888
},
"location": "southeastasia",
"tags": {
"num": "1"
}
}
샘플 응답
{
"sku": {
"name": "Standard_D2ds_v4",
"tier": "GeneralPurpose"
},
"properties": {
"administratorLogin": "cloudsa",
"storage": {
"storageSizeGB": 100,
"iops": 600,
"autoGrow": "Enabled",
"storageSku": "Premium_LRS",
"storageRedundancy": "LocalRedundancy"
},
"version": "5.7",
"state": "Ready",
"fullyQualifiedDomainName": "mysqltestserver.database.mysql.azure.com",
"availabilityZone": "1",
"maintenanceWindow": {
"customWindow": "Disabled",
"dayOfWeek": 0,
"startHour": 0,
"startMinute": 0
},
"replicationRole": "None",
"replicaCapacity": 10,
"network": {
"publicNetworkAccess": "Enabled"
},
"backup": {
"backupRetentionDays": 7,
"geoRedundantBackup": "Disabled",
"earliestRestoreDate": "2021-06-17T06:11:38.4150019+00:00"
},
"highAvailability": {
"mode": "ZoneRedundant",
"state": "Healthy",
"standbyAvailabilityZone": "3"
},
"databasePort": 8888
},
"location": "Southeast Asia",
"tags": {
"num": "1"
},
"id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/flexibleServers/mysqltestserver",
"name": "mysqltestserver",
"type": "Microsoft.DBforMySQL/flexibleServers"
}
{
"sku": {
"name": "Standard_D2ds_v4",
"tier": "GeneralPurpose"
},
"properties": {
"administratorLogin": "cloudsa",
"storage": {
"storageSizeGB": 100,
"iops": 600,
"autoGrow": "Enabled",
"storageSku": "Premium_LRS",
"storageRedundancy": "LocalRedundancy"
},
"version": "5.7",
"state": "Ready",
"fullyQualifiedDomainName": "mysqltestserver.database.mysql.azure.com",
"availabilityZone": "1",
"maintenanceWindow": {
"customWindow": "Disabled",
"dayOfWeek": 0,
"startHour": 0,
"startMinute": 0
},
"replicationRole": "None",
"replicaCapacity": 10,
"network": {
"publicNetworkAccess": "Enabled"
},
"backup": {
"backupRetentionDays": 7,
"geoRedundantBackup": "Disabled",
"earliestRestoreDate": "2021-06-17T06:11:38.4150019+00:00"
},
"highAvailability": {
"mode": "ZoneRedundant",
"state": "Healthy",
"standbyAvailabilityZone": "3"
},
"databasePort": 8888
},
"location": "Southeast Asia",
"tags": {
"num": "1"
},
"id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/flexibleServers/mysqltestserver",
"name": "mysqltestserver",
"type": "Microsoft.DBforMySQL/flexibleServers"
}
정의
Name | Description |
---|---|
Backup |
서버의 스토리지 프로필 속성 |
created |
리소스를 만든 ID의 형식입니다. |
Create |
새 MySQL 서버를 만드는 모드입니다. |
Data |
cmk에 대한 날짜 암호화입니다. |
Data |
키 형식, cmk를 사용하도록 설정하기 위한 AzureKeyVault, cmk를 사용하지 않도록 설정하기 위한 SystemManaged입니다. |
Enable |
값이 'Enabled' 또는 'Disabled'인지 여부를 나타내는 열거형 |
Error |
리소스 관리 오류 추가 정보입니다. |
Error |
오류 세부 정보입니다. |
Error |
오류 응답 |
High |
서버의 고가용성 속성 |
High |
서버에 대한 고가용성 모드입니다. |
High |
서버 고가용성의 상태입니다. |
Import |
원본 관련 속성을 가져옵니다. |
Import |
가져오기 원본의 스토리지 유형입니다. |
Maintenance |
서버의 유지 관리 정책입니다. |
Maintenance |
서버의 유지 관리 기간입니다. |
Managed |
관리 서비스 ID의 유형입니다. |
My |
서버의 청구 정보 관련 속성입니다. |
Network |
서버의 네트워크 관련 속성 |
Patch |
서버의 패치 전략을 나타내는 열거형 |
Private |
프라이빗 엔드포인트 리소스입니다. |
Private |
프라이빗 엔드포인트 연결 리소스입니다. |
Private |
현재 프로비저닝 상태입니다. |
Private |
프라이빗 엔드포인트 연결 상태입니다. |
Private |
서비스 소비자와 공급자 간의 연결 상태에 대한 정보 컬렉션입니다. |
Replication |
복제 역할입니다. |
Server |
서버를 나타냅니다. |
Server |
특정 SKU의 계층(예: GeneralPurpose)입니다. |
Server |
서버의 상태입니다. |
Server |
서버의 버전입니다. |
Storage |
서버의 스토리지 프로필 속성 |
Storage |
스토리지 sku 값이 'ZoneRedundancy' 또는 'LocalRedundancy'인지 여부를 나타내는 열거형 |
system |
리소스의 생성 및 마지막 수정과 관련된 메타데이터입니다. |
Backup
서버의 스토리지 프로필 속성
Name | 형식 | Default value | Description |
---|---|---|---|
backupIntervalHours |
integer |
서버에 대한 백업 간격 시간입니다. |
|
backupRetentionDays |
integer |
서버의 백업 보존 기간(일)입니다. |
|
earliestRestoreDate |
string |
가장 빠른 복원 지점 생성 시간(ISO8601 형식) |
|
geoRedundantBackup | Disabled |
지역 중복 백업을 사용할 수 있는지 여부입니다. |
createdByType
리소스를 만든 ID의 형식입니다.
Name | 형식 | Description |
---|---|---|
Application |
string |
|
Key |
string |
|
ManagedIdentity |
string |
|
User |
string |
CreateMode
새 MySQL 서버를 만드는 모드입니다.
Name | 형식 | Description |
---|---|---|
Default |
string |
|
GeoRestore |
string |
|
PointInTimeRestore |
string |
|
Replica |
string |
DataEncryption
cmk에 대한 날짜 암호화입니다.
Name | 형식 | Description |
---|---|---|
geoBackupKeyURI |
string |
키 자격 증명 모음이 지역을 교차할 수 없으므로 지역 백업 키 URI, 지역 백업과 동일한 지역에 cmk 필요 |
geoBackupUserAssignedIdentityId |
string |
ID가 지역을 교차할 수 없으므로 지역 백업 사용자 ID 리소스 ID, 지역 백업과 동일한 지역에 ID가 필요합니다. |
primaryKeyURI |
string |
기본 키 URI |
primaryUserAssignedIdentityId |
string |
기본 사용자 ID 리소스 ID |
type |
키 형식, cmk를 사용하도록 설정하기 위한 AzureKeyVault, cmk를 사용하지 않도록 설정하기 위한 SystemManaged입니다. |
DataEncryptionType
키 형식, cmk를 사용하도록 설정하기 위한 AzureKeyVault, cmk를 사용하지 않도록 설정하기 위한 SystemManaged입니다.
Name | 형식 | Description |
---|---|---|
AzureKeyVault |
string |
|
SystemManaged |
string |
EnableStatusEnum
값이 'Enabled' 또는 'Disabled'인지 여부를 나타내는 열거형
Name | 형식 | Description |
---|---|---|
Disabled |
string |
|
Enabled |
string |
ErrorAdditionalInfo
리소스 관리 오류 추가 정보입니다.
Name | 형식 | Description |
---|---|---|
info |
object |
추가 정보입니다. |
type |
string |
추가 정보 유형입니다. |
ErrorDetail
오류 세부 정보입니다.
Name | 형식 | Description |
---|---|---|
additionalInfo |
오류 추가 정보입니다. |
|
code |
string |
오류 코드입니다. |
details |
오류 세부 정보입니다. |
|
message |
string |
오류 메시지입니다. |
target |
string |
오류 대상입니다. |
ErrorResponse
오류 응답
Name | 형식 | Description |
---|---|---|
error |
오류 개체입니다. |
HighAvailability
서버의 고가용성 속성
Name | 형식 | Description |
---|---|---|
mode |
서버에 대한 고가용성 모드입니다. |
|
standbyAvailabilityZone |
string |
대기 서버의 가용성 영역입니다. |
state |
서버 고가용성의 상태입니다. |
HighAvailabilityMode
서버에 대한 고가용성 모드입니다.
Name | 형식 | Description |
---|---|---|
Disabled |
string |
|
SameZone |
string |
|
ZoneRedundant |
string |
HighAvailabilityState
서버 고가용성의 상태입니다.
Name | 형식 | Description |
---|---|---|
CreatingStandby |
string |
|
FailingOver |
string |
|
Healthy |
string |
|
NotEnabled |
string |
|
RemovingStandby |
string |
ImportSourceProperties
원본 관련 속성을 가져옵니다.
Name | 형식 | Description |
---|---|---|
dataDirPath |
string |
스토리지에 있는 데이터 디렉터리의 상대 경로입니다. |
sasToken |
string |
원본 스토리지에 액세스하기 위한 Sas 토큰입니다. sas 토큰에는 읽기 및 목록 권한이 필요합니다. |
storageType |
가져오기 원본의 스토리지 유형입니다. |
|
storageUrl |
string |
가져오기 원본 스토리지의 URI입니다. |
ImportSourceStorageType
가져오기 원본의 스토리지 유형입니다.
Name | 형식 | Description |
---|---|---|
AzureBlob |
string |
MaintenancePolicy
서버의 유지 관리 정책입니다.
Name | 형식 | Description |
---|---|---|
patchStrategy |
이 서버의 패치 전략 |
MaintenanceWindow
서버의 유지 관리 기간입니다.
Name | 형식 | Description |
---|---|---|
customWindow |
string |
사용자 지정 창을 사용할지 여부를 나타냅니다. |
dayOfWeek |
integer |
유지 관리 기간의 요일 |
startHour |
integer |
유지 관리 기간의 시작 시간 |
startMinute |
integer |
유지 관리 기간의 시작 시간(분) |
ManagedServiceIdentityType
관리 서비스 ID의 유형입니다.
Name | 형식 | Description |
---|---|---|
UserAssigned |
string |
MySQLServerSku
서버의 청구 정보 관련 속성입니다.
Name | 형식 | Description |
---|---|---|
name |
string |
sku의 이름(예: Standard_D32s_v3)입니다. |
tier |
특정 SKU의 계층(예: GeneralPurpose)입니다. |
Network
서버의 네트워크 관련 속성
Name | 형식 | Description |
---|---|---|
delegatedSubnetResourceId |
string |
서버에 대한 vnet을 설정하는 데 사용되는 위임된 서브넷 리소스 ID입니다. |
privateDnsZoneResourceId |
string |
프라이빗 DNS 영역 리소스 ID입니다. |
publicNetworkAccess |
이 서버에 대한 공용 네트워크 액세스가 허용되는지 여부입니다. 서버에 VNet 통합이 있는 경우 값은 '사용 안 함'입니다. |
PatchStrategy
서버의 패치 전략을 나타내는 열거형
Name | 형식 | Description |
---|---|---|
Regular |
string |
|
VirtualCanary |
string |
PrivateEndpoint
프라이빗 엔드포인트 리소스입니다.
Name | 형식 | Description |
---|---|---|
id |
string |
프라이빗 엔드포인트에 대한 ARM 식별자입니다. |
PrivateEndpointConnection
프라이빗 엔드포인트 연결 리소스입니다.
Name | 형식 | Description |
---|---|---|
id |
string |
리소스에 대한 정규화된 리소스 ID입니다. 예: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name |
string |
리소스의 이름 |
properties.groupIds |
string[] |
프라이빗 엔드포인트 리소스의 그룹 ID입니다. |
properties.privateEndpoint |
프라이빗 엔드포인트 리소스입니다. |
|
properties.privateLinkServiceConnectionState |
서비스 소비자와 공급자 간의 연결 상태에 대한 정보 컬렉션입니다. |
|
properties.provisioningState |
프라이빗 엔드포인트 연결 리소스의 프로비전 상태입니다. |
|
systemData |
createdBy 및 modifiedBy 정보가 포함된 Azure Resource Manager 메타데이터입니다. |
|
type |
string |
리소스의 형식입니다. 예: "Microsoft.Compute/virtualMachines" 또는 "Microsoft.Storage/storageAccounts" |
PrivateEndpointConnectionProvisioningState
현재 프로비저닝 상태입니다.
Name | 형식 | Description |
---|---|---|
Creating |
string |
|
Deleting |
string |
|
Failed |
string |
|
Succeeded |
string |
PrivateEndpointServiceConnectionStatus
프라이빗 엔드포인트 연결 상태입니다.
Name | 형식 | Description |
---|---|---|
Approved |
string |
|
Pending |
string |
|
Rejected |
string |
PrivateLinkServiceConnectionState
서비스 소비자와 공급자 간의 연결 상태에 대한 정보 컬렉션입니다.
Name | 형식 | Description |
---|---|---|
actionsRequired |
string |
서비스 공급자의 변경 내용에 소비자에 대한 업데이트가 필요한지 여부를 나타내는 메시지입니다. |
description |
string |
연결의 승인/거부 이유입니다. |
status |
서비스 소유자가 연결을 승인/거부/제거했는지 여부를 나타냅니다. |
ReplicationRole
복제 역할입니다.
Name | 형식 | Description |
---|---|---|
None |
string |
|
Replica |
string |
|
Source |
string |
Server
서버를 나타냅니다.
Name | 형식 | Description |
---|---|---|
id |
string |
리소스에 대한 정규화된 리소스 ID입니다. 예: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
identity.principalId |
string |
KeyVault의 ObjectId |
identity.tenantId |
string |
KeyVault의 TenantId |
identity.type |
관리 서비스 ID의 유형입니다. |
|
identity.userAssignedIdentities |
object |
사용자 할당 ID의 메타데이터입니다. |
location |
string |
리소스가 있는 지리적 위치 |
name |
string |
리소스의 이름 |
properties.administratorLogin |
string |
서버의 관리자 로그인 이름입니다. 서버를 만들 때만 지정할 수 있습니다(만들기에 필요). |
properties.administratorLoginPassword |
string |
관리자 로그인의 암호입니다(서버 생성에 필요). |
properties.availabilityZone |
string |
서버의 가용성 영역 정보입니다. |
properties.backup |
서버의 관련 속성을 백업합니다. |
|
properties.createMode |
새 MySQL 서버를 만드는 모드입니다. |
|
properties.dataEncryption |
CMK에 대한 데이터 암호화입니다. |
|
properties.databasePort |
integer |
서버 데이터베이스 포트입니다. 서버를 만들 때만 지정할 수 있습니다. |
properties.fullyQualifiedDomainName |
string |
서버의 정규화된 도메인 이름입니다. |
properties.highAvailability |
서버의 고가용성 관련 속성입니다. |
|
properties.importSourceProperties |
스토리지에서 가져오기 위한 원본 속성입니다. |
|
properties.maintenancePolicy |
서버의 유지 관리 정책입니다. |
|
properties.maintenanceWindow |
서버의 유지 관리 기간입니다. 알려진 문제: 서버를 만드는 동안 설정하거나 서버 업데이트 중에 다른 속성으로 업데이트할 수 없습니다. 는 별도로 업데이트해야 합니다. |
|
properties.network |
서버의 네트워크 관련 속성입니다. |
|
properties.privateEndpointConnections |
서버의 PrivateEndpointConnections 관련 속성입니다. |
|
properties.replicaCapacity |
integer |
주 서버에 있을 수 있는 최대 복제본 수입니다. |
properties.replicationRole |
복제 역할입니다. |
|
properties.restorePointInTime |
string |
복원할 시간을 지정하는 복원 지점 생성 시간(ISO8601 형식)입니다. |
properties.sourceServerResourceId |
string |
원본 MySQL 서버 ID입니다. |
properties.state |
서버의 상태입니다. |
|
properties.storage |
서버의 스토리지 관련 속성입니다. |
|
properties.version |
서버 버전입니다. |
|
sku |
서버의 SKU(가격 책정 계층)입니다. |
|
systemData |
createdBy 및 modifiedBy 정보가 포함된 Azure Resource Manager 메타데이터입니다. |
|
tags |
object |
리소스 태그. |
type |
string |
리소스의 형식입니다. 예: "Microsoft.Compute/virtualMachines" 또는 "Microsoft.Storage/storageAccounts" |
ServerSkuTier
특정 SKU의 계층(예: GeneralPurpose)입니다.
Name | 형식 | Description |
---|---|---|
Burstable |
string |
|
GeneralPurpose |
string |
|
MemoryOptimized |
string |
ServerState
서버의 상태입니다.
Name | 형식 | Description |
---|---|---|
Disabled |
string |
|
Dropping |
string |
|
Ready |
string |
|
Starting |
string |
|
Stopped |
string |
|
Stopping |
string |
|
Updating |
string |
ServerVersion
서버의 버전입니다.
Name | 형식 | Description |
---|---|---|
5.7 |
string |
|
8.0.21 |
string |
Storage
서버의 스토리지 프로필 속성
Name | 형식 | Default value | Description |
---|---|---|---|
autoGrow | Disabled |
스토리지 자동 증가를 사용하도록 설정합니다. |
|
autoIoScaling | Enabled |
IO 자동 크기 조정을 사용하도록 설정합니다. |
|
iops |
integer |
서버에 대한 스토리지 IOPS입니다. |
|
logOnDisk | Disabled |
로그온 디스크를 사용하도록 설정합니다. |
|
storageRedundancy | LocalRedundancy |
서버 스토리지의 중복 형식입니다. 매개 변수는 서버를 만드는 데 사용됩니다. |
|
storageSizeGB |
integer |
서버에 허용되는 최대 스토리지 크기입니다. |
|
storageSku |
string |
서버 스토리지의 sku 이름입니다. |
StorageRedundancyEnum
스토리지 sku 값이 'ZoneRedundancy' 또는 'LocalRedundancy'인지 여부를 나타내는 열거형
Name | 형식 | Description |
---|---|---|
LocalRedundancy |
string |
|
ZoneRedundancy |
string |
systemData
리소스의 생성 및 마지막 수정과 관련된 메타데이터입니다.
Name | 형식 | Description |
---|---|---|
createdAt |
string |
리소스 만들기의 타임스탬프(UTC)입니다. |
createdBy |
string |
리소스를 만든 ID입니다. |
createdByType |
리소스를 만든 ID의 형식입니다. |
|
lastModifiedAt |
string |
리소스 마지막 수정의 타임스탬프(UTC) |
lastModifiedBy |
string |
리소스를 마지막으로 수정한 ID입니다. |
lastModifiedByType |
리소스를 마지막으로 수정한 ID의 형식입니다. |