Servers - Create
新しいサーバーを作成するか、既存のサーバーを更新します。 更新アクションによって、既存のサーバーが上書きされます。
PUT https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/servers/{serverName}?api-version=2017-12-01
URI パラメーター
名前 | / | 必須 | 型 | 説明 |
---|---|---|---|---|
resource
|
path | True |
string |
リソース グループの名前。 名前の大文字と小文字は区別されます。 |
server
|
path | True |
string |
サーバーの名前。 |
subscription
|
path | True |
string |
ターゲット サブスクリプションの ID。 |
api-version
|
query | True |
string |
この操作に使用する API バージョン。 |
要求本文
名前 | 必須 | 型 | 説明 |
---|---|---|---|
location | True |
string |
リソースが存在する場所。 |
properties | True | ServerPropertiesForCreate: |
サーバーのプロパティ。 |
identity |
サーバーの Azure Active Directory ID。 |
||
sku |
サーバーの SKU (価格レベル)。 |
||
tags |
object |
キーと値のペアの形式による、アプリケーション固有のメタデータ。 |
応答
名前 | 型 | 説明 |
---|---|---|
200 OK |
OK |
|
201 Created |
作成済み |
|
202 Accepted |
同意 |
|
Other Status Codes |
操作に失敗した理由を説明するエラー応答。 |
セキュリティ
azure_auth
Azure Active Directory OAuth2 フロー
型:
oauth2
フロー:
implicit
Authorization URL (承認 URL):
https://login.microsoftonline.com/common/oauth2/authorize
スコープ
名前 | 説明 |
---|---|
user_impersonation | ユーザー アカウントの借用 |
例
Create a database as a point in time restore |
Create a new server |
Create a replica server |
Create a server as a geo restore |
Create a database as a point in time restore
要求のサンプル
PUT https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TargetResourceGroup/providers/Microsoft.DBforMySQL/servers/targetserver?api-version=2017-12-01
{
"location": "brazilsouth",
"properties": {
"restorePointInTime": "2017-12-14T00:00:37.467Z",
"createMode": "PointInTimeRestore",
"sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMySQL/servers/sourceserver"
},
"sku": {
"name": "GP_Gen5_2",
"tier": "GeneralPurpose",
"family": "Gen5",
"capacity": 2
},
"tags": {
"ElasticServer": "1"
}
}
応答のサンプル
{
"sku": {
"name": "GP_Gen5_2",
"tier": "GeneralPurpose",
"family": "Gen5",
"capacity": 2
},
"properties": {
"administratorLogin": "cloudsa",
"storageProfile": {
"storageMB": 128000,
"backupRetentionDays": 7,
"geoRedundantBackup": "Enabled"
},
"version": "5.7",
"sslEnforcement": "Enabled",
"userVisibleState": "Ready",
"fullyQualifiedDomainName": "targetserver.mysql.database.azure.com",
"earliestRestoreDate": "2018-03-14T18:02:41.577+00:00"
},
"location": "brazilsouth",
"tags": {
"ElasticServer": "1"
},
"id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver",
"name": "targetserver",
"type": "Microsoft.DBforMySQL/servers"
}
{
"id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver",
"name": "targetserver",
"type": "Microsoft.DBforMySQL/servers",
"location": "brazilsouth",
"sku": {
"name": "GP_Gen5_2",
"tier": "GeneralPurpose",
"family": "Gen5",
"capacity": 2
},
"tags": {
"elasticServer": "1"
},
"properties": {
"administratorLogin": "cloudsa",
"storageProfile": {
"storageMB": 128000,
"backupRetentionDays": 7,
"geoRedundantBackup": "Enabled"
},
"version": "5.7",
"sslEnforcement": "Enabled",
"userVisibleState": "Ready",
"fullyQualifiedDomainName": "targetserver.mysql.database.azure.com",
"earliestRestoreDate": "2018-03-14T18:02:41.577+00:00"
}
}
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=2021-12-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=2021-12-01-preview
Create a new server
要求のサンプル
PUT https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/mysqltestsvc4?api-version=2017-12-01
{
"location": "westus",
"properties": {
"administratorLogin": "cloudsa",
"administratorLoginPassword": "<administratorLoginPassword>",
"sslEnforcement": "Enabled",
"storageProfile": {
"storageMB": 128000,
"backupRetentionDays": 7,
"geoRedundantBackup": "Enabled"
},
"createMode": "Default"
},
"sku": {
"name": "GP_Gen5_2",
"tier": "GeneralPurpose",
"capacity": 2,
"family": "Gen5"
},
"tags": {
"ElasticServer": "1"
}
}
応答のサンプル
{
"sku": {
"name": "GP_Gen5_2",
"tier": "GeneralPurpose",
"family": "Gen5",
"capacity": 2
},
"properties": {
"administratorLogin": "cloudsa",
"storageProfile": {
"storageMB": 128000,
"backupRetentionDays": 7,
"geoRedundantBackup": "Enabled"
},
"version": "5.7",
"sslEnforcement": "Enabled",
"userVisibleState": "Ready",
"fullyQualifiedDomainName": "mysqltestsvc4.mysql.database.azure.com",
"earliestRestoreDate": "2018-03-14T18:02:41.577+00:00"
},
"location": "westus",
"tags": {
"ElasticServer": "1"
},
"id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/mysqltestsvc4",
"name": "mysqltestsvc4",
"type": "Microsoft.DBforMySQL/servers"
}
{
"id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/mysqltestsvc4",
"name": "mysqltestsvc4",
"type": "Microsoft.DBforMySQL/servers",
"location": "westus",
"sku": {
"name": "GP_Gen5_2",
"tier": "GeneralPurpose",
"family": "Gen5",
"capacity": 2
},
"tags": {
"elasticServer": "1"
},
"properties": {
"administratorLogin": "cloudsa",
"storageProfile": {
"storageMB": 128000,
"backupRetentionDays": 7,
"geoRedundantBackup": "Enabled"
},
"version": "5.7",
"sslEnforcement": "Enabled",
"userVisibleState": "Ready",
"fullyQualifiedDomainName": "mysqltestsvc4.mysql.database.azure.com",
"earliestRestoreDate": "2018-03-14T18:02:41.577+00:00"
}
}
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=2021-12-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=2021-12-01-preview
Create a replica server
要求のサンプル
PUT https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TargetResourceGroup/providers/Microsoft.DBforMySQL/servers/targetserver?api-version=2017-12-01
{
"location": "westus",
"properties": {
"createMode": "Replica",
"sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/MasterResourceGroup/providers/Microsoft.DBforMySQL/servers/masterserver"
}
}
応答のサンプル
{
"sku": {
"name": "GP_Gen5_2",
"tier": "GeneralPurpose",
"family": "Gen5",
"capacity": 2
},
"properties": {
"administratorLogin": "cloudsa",
"storageProfile": {
"storageMB": 128000,
"backupRetentionDays": 14,
"geoRedundantBackup": "Enabled"
},
"version": "5.7",
"sslEnforcement": "Enabled",
"userVisibleState": "Ready",
"fullyQualifiedDomainName": "targetserver.mysql.database.azure.com",
"earliestRestoreDate": "2018-03-14T18:02:41.577+00:00",
"replicationRole": "Replica",
"masterServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/MasterResourceGroup/providers/Microsoft.DBforMySQL/servers/masterserver",
"replicaCapacity": 0
},
"location": "westus",
"tags": {
"ElasticServer": "1"
},
"id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TargetResourceGroup/providers/Microsoft.DBforMySQL/servers/targetserver",
"name": "targetserver",
"type": "Microsoft.DBforMySQL/servers"
}
{
"sku": {
"name": "GP_Gen5_2",
"tier": "GeneralPurpose",
"family": "Gen5",
"capacity": 2
},
"properties": {
"administratorLogin": "cloudsa",
"storageProfile": {
"storageMB": 128000,
"backupRetentionDays": 14,
"geoRedundantBackup": "Enabled"
},
"version": "5.7",
"sslEnforcement": "Enabled",
"userVisibleState": "Ready",
"fullyQualifiedDomainName": "targetserver.mysql.database.azure.com",
"earliestRestoreDate": "2018-03-14T18:02:41.577+00:00",
"replicationRole": "Replica",
"masterServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/MasterResourceGroup/providers/Microsoft.DBforMySQL/servers/masterserver",
"replicaCapacity": 0
},
"location": "westus",
"tags": {
"ElasticServer": "1"
},
"id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TargetResourceGroup/providers/Microsoft.DBforMySQL/servers/targetserver",
"name": "targetserver",
"type": "Microsoft.DBforMySQL/servers"
}
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=2021-12-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=2021-12-01-preview
Create a server as a geo restore
要求のサンプル
PUT https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TargetResourceGroup/providers/Microsoft.DBforMySQL/servers/targetserver?api-version=2017-12-01
{
"location": "westus",
"properties": {
"createMode": "GeoRestore",
"sourceServerId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/SourceResourceGroup/providers/Microsoft.DBforMySQL/servers/sourceserver"
},
"sku": {
"name": "GP_Gen5_2",
"tier": "GeneralPurpose",
"family": "Gen5",
"capacity": 2
},
"tags": {
"ElasticServer": "1"
}
}
応答のサンプル
{
"sku": {
"name": "GP_Gen5_2",
"tier": "GeneralPurpose",
"family": "Gen5",
"capacity": 2
},
"properties": {
"administratorLogin": "cloudsa",
"storageProfile": {
"storageMB": 128000,
"backupRetentionDays": 14,
"geoRedundantBackup": "Enabled"
},
"version": "5.7",
"sslEnforcement": "Enabled",
"userVisibleState": "Ready",
"fullyQualifiedDomainName": "targetserver.mysql.database.azure.com",
"earliestRestoreDate": "2018-03-14T18:02:41.577+00:00"
},
"location": "westus",
"tags": {
"ElasticServer": "1"
},
"id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver",
"name": "targetserver",
"type": "Microsoft.DBforMySQL/servers"
}
{
"id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/servers/targetserver",
"name": "targetserver",
"type": "Microsoft.DBforMySQL/servers",
"location": "westus",
"sku": {
"name": "GP_Gen5_2",
"tier": "GeneralPurpose",
"family": "Gen5",
"capacity": 2
},
"tags": {
"elasticServer": "1"
},
"properties": {
"administratorLogin": "cloudsa",
"storageProfile": {
"storageMB": 128000,
"backupRetentionDays": 14,
"geoRedundantBackup": "Enabled"
},
"version": "5.7",
"sslEnforcement": "Enabled",
"userVisibleState": "Ready",
"fullyQualifiedDomainName": "targetserver.mysql.database.azure.com",
"earliestRestoreDate": "2018-03-14T18:02:41.577+00:00"
}
}
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=2021-12-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=2021-12-01-preview
定義
名前 | 説明 |
---|---|
Cloud |
Batch サービスからのエラー応答。 |
Error |
リソース管理エラーの追加情報。 |
Error |
エラー応答 |
Geo |
サーバー バックアップで geo 冗長を有効にするか、有効にしないか。 |
Identity |
ID の種類。 リソースの Azure Active Directory プリンシパルを自動的に作成して割り当てるには、これを "SystemAssigned" に設定します。 |
Infrastructure |
データ保護を強化する新しい暗号化アルゴリズムを使用して、データの 2 番目の暗号化レイヤーを追加します。 値は省略可能ですが、渡される場合は 、'Disabled' または 'Enabled' である必要があります。 |
Minimal |
サーバーに最小限の Tls バージョンを適用します。 |
Private |
|
Private |
プライベート エンドポイント接続の状態。 |
Private |
プライベート リンク サービス接続に必要なアクション。 |
Private |
プライベート リンク サービスの接続状態。 |
Public |
このサーバーに対してパブリック ネットワーク アクセスが許可されているかどうか。 値は省略可能ですが、渡される場合は 、'Enabled' または 'Disabled' である必要があります |
Resource |
リソースの Azure Active Directory ID 構成。 |
Server |
サーバーを表します。 |
Server |
作成するサーバーを表します。 |
Server |
サーバー下のプライベート エンドポイント接続 |
Server |
プライベート エンドポイント接続のプロパティ。 |
Server |
|
Server |
新しいサーバーの作成に使用されるプロパティ。 |
Server |
geo レプリケートされたバックアップとは別のリージョンに復元することで、新しいサーバーを作成するために使用されるプロパティ。 |
Server |
新しいレプリカを作成するプロパティ。 |
Server |
バックアップから復元して新しいサーバーを作成するために使用されるプロパティ。 |
Server |
ユーザーに表示されるサーバーの状態。 |
Server |
サーバーのバージョン。 |
Sku |
サーバーの課金情報関連のプロパティ。 |
Sku |
特定の SKU のレベル (Basic など)。 |
Ssl |
サーバーに接続するときに ssl 強制を有効にするか、有効にしないか。 |
Storage |
ストレージの自動拡張を有効にします。 |
Storage |
サーバーのストレージ プロファイルプロパティ |
CloudError
Batch サービスからのエラー応答。
名前 | 型 | 説明 |
---|---|---|
error |
エラー応答 |
ErrorAdditionalInfo
リソース管理エラーの追加情報。
名前 | 型 | 説明 |
---|---|---|
info |
object |
追加情報。 |
type |
string |
追加情報の種類。 |
ErrorResponse
エラー応答
名前 | 型 | 説明 |
---|---|---|
additionalInfo |
エラーの追加情報。 |
|
code |
string |
エラー コード。 |
details |
エラーの詳細です。 |
|
message |
string |
エラー メッセージ。 |
target |
string |
エラーのターゲット。 |
GeoRedundantBackup
サーバー バックアップで geo 冗長を有効にするか、有効にしないか。
名前 | 型 | 説明 |
---|---|---|
Disabled |
string |
|
Enabled |
string |
IdentityType
ID の種類。 リソースの Azure Active Directory プリンシパルを自動的に作成して割り当てるには、これを "SystemAssigned" に設定します。
名前 | 型 | 説明 |
---|---|---|
SystemAssigned |
string |
InfrastructureEncryption
データ保護を強化する新しい暗号化アルゴリズムを使用して、データの 2 番目の暗号化レイヤーを追加します。 値は省略可能ですが、渡される場合は 、'Disabled' または 'Enabled' である必要があります。
名前 | 型 | 説明 |
---|---|---|
Disabled |
string |
保存データの追加 (第 2) 層の暗号化 |
Enabled |
string |
保存データの暗号化の単一レイヤーの既定値。 |
MinimalTlsVersionEnum
サーバーに最小限の Tls バージョンを適用します。
名前 | 型 | 説明 |
---|---|---|
TLS1_0 |
string |
|
TLS1_1 |
string |
|
TLS1_2 |
string |
|
TLSEnforcementDisabled |
string |
PrivateEndpointProperty
名前 | 型 | 説明 |
---|---|---|
id |
string |
プライベート エンドポイントのリソース ID。 |
PrivateEndpointProvisioningState
プライベート エンドポイント接続の状態。
名前 | 型 | 説明 |
---|---|---|
Approving |
string |
|
Dropping |
string |
|
Failed |
string |
|
Ready |
string |
|
Rejecting |
string |
PrivateLinkServiceConnectionStateActionsRequire
プライベート リンク サービス接続に必要なアクション。
名前 | 型 | 説明 |
---|---|---|
None |
string |
PrivateLinkServiceConnectionStateStatus
プライベート リンク サービスの接続状態。
名前 | 型 | 説明 |
---|---|---|
Approved |
string |
|
Disconnected |
string |
|
Pending |
string |
|
Rejected |
string |
PublicNetworkAccessEnum
このサーバーに対してパブリック ネットワーク アクセスが許可されているかどうか。 値は省略可能ですが、渡される場合は 、'Enabled' または 'Disabled' である必要があります
名前 | 型 | 説明 |
---|---|---|
Disabled |
string |
|
Enabled |
string |
ResourceIdentity
リソースの Azure Active Directory ID 構成。
名前 | 型 | 説明 |
---|---|---|
principalId |
string |
Azure Active Directory プリンシパル ID。 |
tenantId |
string |
Azure Active Directory テナント ID。 |
type |
ID の種類。 リソースの Azure Active Directory プリンシパルを自動的に作成して割り当てるには、これを "SystemAssigned" に設定します。 |
Server
サーバーを表します。
名前 | 型 | 説明 |
---|---|---|
id |
string |
リソースの完全修飾リソース ID。 例 - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
identity |
サーバーの Azure Active Directory ID。 |
|
location |
string |
リソースが保存されている地理的な場所 |
name |
string |
リソースの名前 |
properties.administratorLogin |
string |
サーバーの管理者のログイン名。 サーバーが作成されている場合にのみ指定できます (作成に必要です)。 |
properties.byokEnforcement |
string |
カスタマー マネージド キーでサーバー データ暗号化が有効になっているかどうかを示す状態。 |
properties.earliestRestoreDate |
string |
最も古い復元ポイントの作成時間 (ISO8601形式) |
properties.fullyQualifiedDomainName |
string |
サーバーの完全修飾ドメイン名。 |
properties.infrastructureEncryption |
サーバーでインフラストラクチャ暗号化が有効になっているかどうかを示す状態。 |
|
properties.masterServerId |
string |
レプリカ サーバーのマスター サーバー ID。 |
properties.minimalTlsVersion |
サーバーに最小限の Tls バージョンを適用します。 |
|
properties.privateEndpointConnections |
サーバー上のプライベート エンドポイント接続の一覧 |
|
properties.publicNetworkAccess |
このサーバーに対してパブリック ネットワーク アクセスが許可されているかどうか。 値は省略可能ですが、渡された場合は 、'Enabled' または 'Disabled' である必要があります |
|
properties.replicaCapacity |
integer |
マスター サーバーで使用できるレプリカの最大数。 |
properties.replicationRole |
string |
サーバーのレプリケーション ロール。 |
properties.sslEnforcement |
サーバーに接続するときに ssl 強制を有効にするか、有効にしないか。 |
|
properties.storageProfile |
サーバーのストレージ プロファイル。 |
|
properties.userVisibleState |
ユーザーに表示されるサーバーの状態。 |
|
properties.version |
サーバーのバージョン。 |
|
sku |
サーバーの SKU (価格レベル)。 |
|
tags |
object |
リソース タグ。 |
type |
string |
リソースの型。 例: "Microsoft.Compute/virtualMachines" または "Microsoft.Storage/storageAccounts" |
ServerForCreate
作成するサーバーを表します。
名前 | 型 | 説明 |
---|---|---|
identity |
サーバーの Azure Active Directory ID。 |
|
location |
string |
リソースが存在する場所。 |
properties | ServerPropertiesForCreate: |
サーバーのプロパティ。 |
sku |
サーバーの SKU (価格レベル)。 |
|
tags |
object |
キーと値のペアの形式による、アプリケーション固有のメタデータ。 |
ServerPrivateEndpointConnection
サーバー下のプライベート エンドポイント接続
名前 | 型 | 説明 |
---|---|---|
id |
string |
プライベート エンドポイント接続のリソース ID。 |
properties |
プライベート エンドポイント接続プロパティ |
ServerPrivateEndpointConnectionProperties
プライベート エンドポイント接続のプロパティ。
名前 | 型 | 説明 |
---|---|---|
privateEndpoint |
接続が属するプライベート エンドポイント。 |
|
privateLinkServiceConnectionState |
プライベート エンドポイント接続の接続状態。 |
|
provisioningState |
プライベート エンドポイント接続の状態。 |
ServerPrivateLinkServiceConnectionStateProperty
名前 | 型 | 説明 |
---|---|---|
actionsRequired |
プライベート リンク サービス接続に必要なアクション。 |
|
description |
string |
プライベート リンク サービス接続の説明。 |
status |
プライベート リンク サービスの接続状態。 |
ServerPropertiesForDefaultCreate
新しいサーバーの作成に使用されるプロパティ。
名前 | 型 | 説明 |
---|---|---|
administratorLogin |
string |
サーバーの管理者のログイン名。 サーバーが作成されている場合にのみ指定できます (作成に必要です)。 パスワードを更新するときは、ログイン名が必要です。 |
administratorLoginPassword |
string |
管理者ログインのパスワード。 |
createMode |
string:
Default |
新しいサーバーを作成するモード。 |
infrastructureEncryption |
サーバーでインフラストラクチャ暗号化が有効になっているかどうかを示す状態。 |
|
minimalTlsVersion |
サーバーに最小限の Tls バージョンを適用します。 |
|
publicNetworkAccess |
このサーバーに対してパブリック ネットワーク アクセスが許可されているかどうか。 値は省略可能ですが、渡された場合は 、'Enabled' または 'Disabled' である必要があります |
|
sslEnforcement |
サーバーに接続するときに ssl 強制を有効にするか、有効にしないか。 |
|
storageProfile |
サーバーのストレージ プロファイル。 |
|
version |
サーバーのバージョン。 |
ServerPropertiesForGeoRestore
geo レプリケートされたバックアップとは別のリージョンに復元することで、新しいサーバーを作成するために使用されるプロパティ。
名前 | 型 | 説明 |
---|---|---|
createMode |
string:
Geo |
新しいサーバーを作成するモード。 |
infrastructureEncryption |
サーバーでインフラストラクチャ暗号化が有効になっているかどうかを示す状態。 |
|
minimalTlsVersion |
サーバーに最小限の Tls バージョンを適用します。 |
|
publicNetworkAccess |
このサーバーに対してパブリック ネットワーク アクセスが許可されているかどうか。 値は省略可能ですが、渡された場合は 、'Enabled' または 'Disabled' である必要があります |
|
sourceServerId |
string |
復元元のソース サーバー ID。 |
sslEnforcement |
サーバーに接続するときに ssl 強制を有効にするか、有効にしないか。 |
|
storageProfile |
サーバーのストレージ プロファイル。 |
|
version |
サーバーのバージョン。 |
ServerPropertiesForReplica
新しいレプリカを作成するプロパティ。
名前 | 型 | 説明 |
---|---|---|
createMode |
string:
Replica |
新しいサーバーを作成するモード。 |
infrastructureEncryption |
サーバーでインフラストラクチャ暗号化が有効になっているかどうかを示す状態。 |
|
minimalTlsVersion |
サーバーに最小限の Tls バージョンを適用します。 |
|
publicNetworkAccess |
このサーバーに対してパブリック ネットワーク アクセスが許可されているかどうか。 値は省略可能ですが、渡された場合は 、'Enabled' または 'Disabled' である必要があります |
|
sourceServerId |
string |
レプリカを作成するマスター サーバー ID。 |
sslEnforcement |
サーバーに接続するときに ssl 強制を有効にするか、有効にしないか。 |
|
storageProfile |
サーバーのストレージ プロファイル。 |
|
version |
サーバーのバージョン。 |
ServerPropertiesForRestore
バックアップから復元して新しいサーバーを作成するために使用されるプロパティ。
名前 | 型 | 説明 |
---|---|---|
createMode |
string:
Point |
新しいサーバーを作成するモード。 |
infrastructureEncryption |
サーバーでインフラストラクチャ暗号化が有効になっているかどうかを示す状態。 |
|
minimalTlsVersion |
サーバーに最小限の Tls バージョンを適用します。 |
|
publicNetworkAccess |
このサーバーに対してパブリック ネットワーク アクセスが許可されているかどうか。 値は省略可能ですが、渡された場合は 、'Enabled' または 'Disabled' である必要があります |
|
restorePointInTime |
string |
復元ポイントの作成時刻 (ISO8601形式)、復元元の時刻を指定します。 |
sourceServerId |
string |
復元元のソース サーバー ID。 |
sslEnforcement |
サーバーに接続するときに ssl 強制を有効にするか、有効にしないか。 |
|
storageProfile |
サーバーのストレージ プロファイル。 |
|
version |
サーバーのバージョン。 |
ServerState
ユーザーに表示されるサーバーの状態。
名前 | 型 | 説明 |
---|---|---|
Disabled |
string |
|
Dropping |
string |
|
Inaccessible |
string |
|
Ready |
string |
ServerVersion
サーバーのバージョン。
名前 | 型 | 説明 |
---|---|---|
5.6 |
string |
|
5.7 |
string |
|
8.0 |
string |
Sku
サーバーの課金情報関連のプロパティ。
名前 | 型 | 説明 |
---|---|---|
capacity |
integer |
サーバーのコンピューティング ユニットを表すスケールアップ/スケールアウト容量。 |
family |
string |
ハードウェアのファミリ。 |
name |
string |
sku の名前 。通常は、階層 + ファミリ + コア (B_Gen4_1、GP_Gen5_8など)。 |
size |
string |
必要に応じてリソースによって解釈されるサイズ コード。 |
tier |
特定の SKU のレベル (Basic など)。 |
SkuTier
特定の SKU のレベル (Basic など)。
名前 | 型 | 説明 |
---|---|---|
Basic |
string |
|
GeneralPurpose |
string |
|
MemoryOptimized |
string |
SslEnforcementEnum
サーバーに接続するときに ssl 強制を有効にするか、有効にしないか。
名前 | 型 | 説明 |
---|---|---|
Disabled |
string |
|
Enabled |
string |
StorageAutogrow
ストレージの自動拡張を有効にします。
名前 | 型 | 説明 |
---|---|---|
Disabled |
string |
|
Enabled |
string |
StorageProfile
サーバーのストレージ プロファイルプロパティ
名前 | 型 | 説明 |
---|---|---|
backupRetentionDays |
integer |
サーバーのバックアップ保有日数。 |
geoRedundantBackup |
サーバー バックアップで geo 冗長を有効にするか、有効にしないか。 |
|
storageAutogrow |
ストレージの自動拡張を有効にします。 |
|
storageMB |
integer |
サーバーに対して許可される最大ストレージ数。 |