Servers - Update
既存のサーバーを更新します。 要求本文には、通常のサーバー定義に存在する 1 から多くのプロパティを含めることができます。
PATCH https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/flexibleServers/{serverName}?api-version=2024-06-01-preview
URI パラメーター
名前 | / | 必須 | 型 | 説明 |
---|---|---|---|---|
resource
|
path | True |
string |
リソース グループの名前。 名前では大文字と小文字が区別されません。 |
server
|
path | True |
string |
サーバーの名前。 正規表現パターン: |
subscription
|
path | True |
string uuid |
ターゲット サブスクリプションの ID。 値は UUID である必要があります。 |
api-version
|
query | True |
string |
この操作に使用する API バージョン。 |
要求本文
名前 | 型 | 説明 |
---|---|---|
identity.type |
マネージド サービス ID の種類。 |
|
identity.userAssignedIdentities |
object |
ユーザー割り当て ID のメタデータ。 |
properties.administratorLoginPassword |
string |
管理者ログインのパスワード。 |
properties.backup |
サーバーのバックアップ関連プロパティ。 |
|
properties.dataEncryption |
CMK のデータ暗号化。 |
|
properties.highAvailability |
サーバーの高可用性関連のプロパティ。 |
|
properties.maintenancePolicy |
サーバーのメンテナンス ポリシー。 |
|
properties.maintenanceWindow |
サーバーのメンテナンス期間。 |
|
properties.network |
サーバーのネットワーク関連プロパティ |
|
properties.replicationRole |
サーバーのレプリケーション ロール。 |
|
properties.storage |
サーバーのストレージ関連のプロパティ。 |
|
properties.version |
サーバーのバージョン。 |
|
sku |
サーバーの SKU (価格レベル)。 |
|
tags |
object |
キーと値のペアの形式のアプリケーション固有のメタデータ。 |
応答
名前 | 型 | 説明 |
---|---|---|
200 OK |
わかりました |
|
202 Accepted |
受け入れ られる ヘッダー Location: string |
|
Other Status Codes |
操作が失敗した理由を説明するエラー応答。 |
セキュリティ
azure_auth
Azure Active Directory OAuth2 フロー
型:
oauth2
フロー:
implicit
Authorization URL (承認 URL):
https://login.microsoftonline.com/common/oauth2/authorize
スコープ
名前 | 説明 |
---|---|
user_impersonation | ユーザー アカウントを偽装する |
例
Update a server |
Update server customer maintenance window |
Update server to opt in virtual canary |
Update server to opt out virtual canary |
Update server with byok |
Update a server
要求のサンプル
PATCH https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/flexibleServers/mysqltestserver?api-version=2024-06-01-preview
{
"properties": {
"storage": {
"storageSizeGB": 30,
"iops": 200,
"autoGrow": "Disabled",
"autoIoScaling": "Disabled"
},
"network": {
"publicNetworkAccess": "Disabled"
}
}
}
応答のサンプル
{
"sku": {
"name": "Standard_D2ds_v4",
"tier": "GeneralPurpose"
},
"properties": {
"administratorLogin": "cloudsa",
"storage": {
"storageSizeGB": 30,
"iops": 200,
"autoGrow": "Disabled",
"storageSku": "Premium_LRS",
"autoIoScaling": "Disabled"
},
"version": "5.7",
"state": "Ready",
"fullyQualifiedDomainName": "mysqltestserver.database.mysql.azure.com",
"availabilityZone": "3",
"maintenancePolicy": {
"patchStrategy": "Regular"
},
"maintenanceWindow": {
"customWindow": "Enabled",
"dayOfWeek": 1,
"startHour": 1,
"startMinute": 0
},
"replicationRole": "None",
"replicaCapacity": 10,
"network": {
"publicNetworkAccess": "Disabled"
},
"backup": {
"backupRetentionDays": 7,
"backupIntervalHours": 24,
"geoRedundantBackup": "Disabled",
"earliestRestoreDate": "2021-06-17T06:11:38.4150019+00:00"
},
"highAvailability": {
"mode": "Disabled",
"state": "NotEnabled"
},
"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"
}
Azure-AsyncOperation: https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/providers/Microsoft.DBforMySQL/locations/southeastasia/azureAsyncOperation/e276a03a-1770-4549-86f5-0edffae8997c?api-version=2024-06-01-preview
Location: https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/providers/Microsoft.DBforMySQL/locations/southeastasia/operationResults/e276a03a-1770-4549-86f5-0edffae8997c?api-version=2024-06-01-preview
Update server customer maintenance window
要求のサンプル
PATCH https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/flexibleServers/mysqltestserver?api-version=2024-06-01-preview
{
"properties": {
"maintenanceWindow": {
"customWindow": "Enabled",
"dayOfWeek": 1,
"startHour": 8,
"startMinute": 0
}
}
}
応答のサンプル
{
"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": "3",
"maintenancePolicy": {
"patchStrategy": "Regular"
},
"maintenanceWindow": {
"customWindow": "Enabled",
"dayOfWeek": 1,
"startHour": 8,
"startMinute": 0
},
"replicationRole": "None",
"replicaCapacity": 10,
"network": {
"publicNetworkAccess": "Enabled"
},
"backup": {
"backupRetentionDays": 7,
"backupIntervalHours": 24,
"geoRedundantBackup": "Disabled",
"earliestRestoreDate": "2021-06-17T06:11:38.4150019+00:00"
},
"highAvailability": {
"mode": "Disabled",
"state": "NotEnabled"
},
"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"
}
Azure-AsyncOperation: https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/providers/Microsoft.DBforMySQL/locations/southeastasia/azureAsyncOperation/e276a03a-1770-4549-86f5-0edffae8997c?api-version=2024-06-01-preview
Location: https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/providers/Microsoft.DBforMySQL/locations/southeastasia/operationResults/e276a03a-1770-4549-86f5-0edffae8997c?api-version=2024-06-01-preview
Update server to opt in virtual canary
要求のサンプル
応答のサンプル
{
"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": "3",
"maintenancePolicy": {
"patchStrategy": "VirtualCanary"
},
"maintenanceWindow": {
"customWindow": "Disabled"
},
"replicationRole": "None",
"replicaCapacity": 10,
"network": {
"publicNetworkAccess": "Enabled"
},
"backup": {
"backupRetentionDays": 7,
"backupIntervalHours": 24,
"geoRedundantBackup": "Disabled",
"earliestRestoreDate": "2021-06-17T06:11:38.4150019+00:00"
},
"highAvailability": {
"mode": "Disabled",
"state": "NotEnabled"
},
"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"
}
Azure-AsyncOperation: https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/providers/Microsoft.DBforMySQL/locations/southeastasia/azureAsyncOperation/e276a03a-1770-4549-86f5-0edffae8997c?api-version=2024-02-01-preview
Location: https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/providers/Microsoft.DBforMySQL/locations/southeastasia/operationResults/e276a03a-1770-4549-86f5-0edffae8997c?api-version=2024-02-01-preview
Update server to opt out virtual canary
要求のサンプル
応答のサンプル
{
"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": "3",
"maintenancePolicy": {
"patchStrategy": "Regular"
},
"maintenanceWindow": {
"customWindow": "Disabled"
},
"replicationRole": "None",
"replicaCapacity": 10,
"network": {
"publicNetworkAccess": "Enabled"
},
"backup": {
"backupRetentionDays": 7,
"backupIntervalHours": 24,
"geoRedundantBackup": "Disabled",
"earliestRestoreDate": "2021-06-17T06:11:38.4150019+00:00"
},
"highAvailability": {
"mode": "Disabled",
"state": "NotEnabled"
},
"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"
}
Azure-AsyncOperation: https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/providers/Microsoft.DBforMySQL/locations/southeastasia/azureAsyncOperation/e276a03a-1770-4549-86f5-0edffae8997c?api-version=2024-02-01-preview
Location: https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/providers/Microsoft.DBforMySQL/locations/southeastasia/operationResults/e276a03a-1770-4549-86f5-0edffae8997c?api-version=2024-02-01-preview
Update server with byok
要求のサンプル
PATCH 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": {}
}
},
"properties": {
"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"
}
}
}
応答のサンプル
{
"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,
"backupIntervalHours": 24,
"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"
}
Azure-AsyncOperation: https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/providers/Microsoft.DBforMySQL/locations/southeastasia/azureAsyncOperation/e276a03a-1770-4549-86f5-0edffae8997c?api-version=2024-06-01-preview
Location: https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/providers/Microsoft.DBforMySQL/locations/southeastasia/operationResults/e276a03a-1770-4549-86f5-0edffae8997c?api-version=2024-06-01-preview
定義
名前 | 説明 |
---|---|
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 |
サーバーの更新が許可されているパラメーター。 |
Server |
特定の SKU のレベル (GeneralPurpose など)。 |
Server |
サーバーの状態。 |
Server |
サーバーのバージョン。 |
Storage |
サーバーのストレージ プロファイルプロパティ |
Storage |
ストレージ SKU の値が 'ZoneRedundancy' または 'LocalRedundancy' かどうかを示す列挙型 |
system |
リソースの作成と最後の変更に関連するメタデータ。 |
Backup
サーバーのストレージ プロファイルプロパティ
名前 | 型 | 規定値 | 説明 |
---|---|---|---|
backupIntervalHours |
integer |
サーバーのバックアップ間隔時間。 |
|
backupRetentionDays |
integer |
サーバーのバックアップ保有日数。 |
|
earliestRestoreDate |
string |
最も早い復元ポイントの作成時刻 (ISO8601形式) |
|
geoRedundantBackup | Disabled |
geo 冗長バックアップが有効かどうか。 |
createdByType
リソースを作成した ID の種類。
名前 | 型 | 説明 |
---|---|---|
Application |
string |
|
Key |
string |
|
ManagedIdentity |
string |
|
User |
string |
CreateMode
新しい MySQL サーバーを作成するモード。
名前 | 型 | 説明 |
---|---|---|
Default |
string |
|
GeoRestore |
string |
|
PointInTimeRestore |
string |
|
Replica |
string |
DataEncryption
cmk の日付暗号化。
名前 | 型 | 説明 |
---|---|---|
geoBackupKeyURI |
string |
キー コンテナーがリージョンをまたがることができない geo バックアップ キー URI、geo バックアップと同じリージョンに cmk が必要 |
geoBackupUserAssignedIdentityId |
string |
リージョンをまたがることができない ID としての geo バックアップ ユーザー ID リソース ID、geo バックアップと同じリージョンの ID が必要 |
primaryKeyURI |
string |
主キー URI |
primaryUserAssignedIdentityId |
string |
プライマリ ユーザー ID リソース ID |
type |
キーの種類。cmk を有効にする場合は AzureKeyVault、無効 cmk の場合は SystemManaged。 |
DataEncryptionType
キーの種類。cmk を有効にする場合は AzureKeyVault、無効 cmk の場合は SystemManaged。
名前 | 型 | 説明 |
---|---|---|
AzureKeyVault |
string |
|
SystemManaged |
string |
EnableStatusEnum
値が 'Enabled' か 'Disabled' かを示す列挙型
名前 | 型 | 説明 |
---|---|---|
Disabled |
string |
|
Enabled |
string |
ErrorAdditionalInfo
リソース管理エラーの追加情報。
名前 | 型 | 説明 |
---|---|---|
info |
object |
追加情報。 |
type |
string |
追加情報の種類。 |
ErrorDetail
エラーの詳細。
名前 | 型 | 説明 |
---|---|---|
additionalInfo |
エラーの追加情報。 |
|
code |
string |
エラー コード。 |
details |
エラーの詳細。 |
|
message |
string |
エラー メッセージ。 |
target |
string |
エラーターゲット。 |
ErrorResponse
エラー応答
名前 | 型 | 説明 |
---|---|---|
error |
エラー オブジェクト。 |
HighAvailability
サーバーの高可用性プロパティ
名前 | 型 | 説明 |
---|---|---|
mode |
サーバーの高可用性モード。 |
|
standbyAvailabilityZone |
string |
スタンバイ サーバーの可用性ゾーン。 |
state |
サーバーの高可用性の状態。 |
HighAvailabilityMode
サーバーの高可用性モード。
名前 | 型 | 説明 |
---|---|---|
Disabled |
string |
|
SameZone |
string |
|
ZoneRedundant |
string |
HighAvailabilityState
サーバーの高可用性の状態。
名前 | 型 | 説明 |
---|---|---|
CreatingStandby |
string |
|
FailingOver |
string |
|
Healthy |
string |
|
NotEnabled |
string |
|
RemovingStandby |
string |
ImportSourceProperties
ソース関連のプロパティをインポートします。
名前 | 型 | 説明 |
---|---|---|
dataDirPath |
string |
ストレージ内のデータ ディレクトリの相対パス。 |
sasToken |
string |
ソース ストレージにアクセスするための Sas トークン。 SAS トークンには読み取りと一覧表示のアクセス許可が必要です。 |
storageType |
インポート ソースのストレージの種類。 |
|
storageUrl |
string |
インポート ソース ストレージの URI。 |
ImportSourceStorageType
インポート ソースのストレージの種類。
名前 | 型 | 説明 |
---|---|---|
AzureBlob |
string |
MaintenancePolicy
サーバーのメンテナンス ポリシー。
名前 | 型 | 説明 |
---|---|---|
patchStrategy |
このサーバーのパッチ戦略 |
MaintenanceWindow
サーバーのメンテナンス期間。
名前 | 型 | 説明 |
---|---|---|
customWindow |
string |
は、カスタム ウィンドウが有効か無効かを示します |
dayOfWeek |
integer |
メンテナンス期間の曜日 |
startHour |
integer |
メンテナンス期間の開始時刻 |
startMinute |
integer |
メンテナンス期間の開始時間 (分) |
ManagedServiceIdentityType
マネージド サービス ID の種類。
名前 | 型 | 説明 |
---|---|---|
UserAssigned |
string |
MySQLServerSku
サーバーの課金情報に関連するプロパティ。
名前 | 型 | 説明 |
---|---|---|
name |
string |
sku の名前 (例: Standard_D32s_v3)。 |
tier |
特定の SKU のレベル (GeneralPurpose など)。 |
Network
サーバーのネットワーク関連プロパティ
名前 | 型 | 説明 |
---|---|---|
delegatedSubnetResourceId |
string |
サーバーの vnet のセットアップに使用される委任されたサブネット リソース ID。 |
privateDnsZoneResourceId |
string |
プライベート DNS ゾーンのリソース ID。 |
publicNetworkAccess |
このサーバーに対してパブリック ネットワーク アクセスが許可されているかどうか。 サーバーに VNet 統合がある場合、値は "無効" になります。 |
PatchStrategy
サーバーのパッチ戦略を示す列挙型
名前 | 型 | 説明 |
---|---|---|
Regular |
string |
|
VirtualCanary |
string |
PrivateEndpoint
プライベート エンドポイント リソース。
名前 | 型 | 説明 |
---|---|---|
id |
string |
プライベート エンドポイントの ARM 識別子。 |
PrivateEndpointConnection
プライベート エンドポイント接続リソース。
名前 | 型 | 説明 |
---|---|---|
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
現在のプロビジョニング状態。
名前 | 型 | 説明 |
---|---|---|
Creating |
string |
|
Deleting |
string |
|
Failed |
string |
|
Succeeded |
string |
PrivateEndpointServiceConnectionStatus
プライベート エンドポイント接続の状態。
名前 | 型 | 説明 |
---|---|---|
Approved |
string |
|
Pending |
string |
|
Rejected |
string |
PrivateLinkServiceConnectionState
サービス コンシューマーとプロバイダー間の接続の状態に関する情報のコレクション。
名前 | 型 | 説明 |
---|---|---|
actionsRequired |
string |
サービス プロバイダーの変更にコンシューマーの更新が必要かどうかを示すメッセージ。 |
description |
string |
接続の承認/拒否の理由。 |
status |
接続がサービスの所有者によって承認/拒否/削除されたかどうかを示します。 |
ReplicationRole
レプリケーション ロール。
名前 | 型 | 説明 |
---|---|---|
None |
string |
|
Replica |
string |
|
Source |
string |
Server
サーバーを表します。
名前 | 型 | 説明 |
---|---|---|
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" |
ServerForUpdate
サーバーの更新が許可されているパラメーター。
名前 | 型 | 説明 |
---|---|---|
identity.principalId |
string |
KeyVault の ObjectId |
identity.tenantId |
string |
KeyVault の TenantId |
identity.type |
マネージド サービス ID の種類。 |
|
identity.userAssignedIdentities |
object |
ユーザー割り当て ID のメタデータ。 |
properties.administratorLoginPassword |
string |
管理者ログインのパスワード。 |
properties.backup |
サーバーのバックアップ関連プロパティ。 |
|
properties.dataEncryption |
CMK のデータ暗号化。 |
|
properties.highAvailability |
サーバーの高可用性関連のプロパティ。 |
|
properties.maintenancePolicy |
サーバーのメンテナンス ポリシー。 |
|
properties.maintenanceWindow |
サーバーのメンテナンス期間。 |
|
properties.network |
サーバーのネットワーク関連プロパティ |
|
properties.replicationRole |
サーバーのレプリケーション ロール。 |
|
properties.storage |
サーバーのストレージ関連のプロパティ。 |
|
properties.version |
サーバーのバージョン。 |
|
sku |
サーバーの SKU (価格レベル)。 |
|
tags |
object |
キーと値のペアの形式のアプリケーション固有のメタデータ。 |
ServerSkuTier
特定の SKU のレベル (GeneralPurpose など)。
名前 | 型 | 説明 |
---|---|---|
Burstable |
string |
|
GeneralPurpose |
string |
|
MemoryOptimized |
string |
ServerState
サーバーの状態。
名前 | 型 | 説明 |
---|---|---|
Disabled |
string |
|
Dropping |
string |
|
Ready |
string |
|
Starting |
string |
|
Stopped |
string |
|
Stopping |
string |
|
Updating |
string |
ServerVersion
サーバーのバージョン。
名前 | 型 | 説明 |
---|---|---|
5.7 |
string |
|
8.0.21 |
string |
Storage
サーバーのストレージ プロファイルプロパティ
名前 | 型 | 規定値 | 説明 |
---|---|---|---|
autoGrow | Disabled |
ストレージの自動拡張を有効にするかどうか。 |
|
autoIoScaling | Enabled |
IO 自動スケーリングを有効にするかどうか。 |
|
iops |
integer |
サーバーのストレージ IOPS。 |
|
logOnDisk | Disabled |
[ログオン ディスク] を有効にするかどうか。 |
|
storageRedundancy | LocalRedundancy |
サーバー ストレージの冗長な種類。 このパラメーターは、サーバーの作成に使用されます。 |
|
storageSizeGB |
integer |
サーバーで許可される最大ストレージ サイズ。 |
|
storageSku |
string |
サーバー ストレージの SKU 名。 |
StorageRedundancyEnum
ストレージ SKU の値が 'ZoneRedundancy' または 'LocalRedundancy' かどうかを示す列挙型
名前 | 型 | 説明 |
---|---|---|
LocalRedundancy |
string |
|
ZoneRedundancy |
string |
systemData
リソースの作成と最後の変更に関連するメタデータ。
名前 | 型 | 説明 |
---|---|---|
createdAt |
string |
リソース作成のタイムスタンプ (UTC)。 |
createdBy |
string |
リソースを作成した ID。 |
createdByType |
リソースを作成した ID の種類。 |
|
lastModifiedAt |
string |
リソースの最終変更のタイムスタンプ (UTC) |
lastModifiedBy |
string |
リソースを最後に変更した ID。 |
lastModifiedByType |
リソースを最後に変更した ID の種類。 |