Aracılığıyla paylaş


Servers - Update

Var olan bir sunucuyu Güncelleştirmeler. İstek gövdesi, normal sunucu tanımında bulunan özelliklerin bir veya daha çoğunu içerebilir.

PATCH https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforMySQL/flexibleServers/{serverName}?api-version=2023-12-30

URI Parametreleri

Name İçinde Gerekli Tür Description
resourceGroupName
path True

string

Kaynak grubunun adı. Ad büyük/küçük harfe duyarlı değildir.

serverName
path True

string

Sunucunun adı.

Normal ifade deseni: ^[a-z0-9][-a-z0-9]*(?<!-)$

subscriptionId
path True

string

uuid

Hedef aboneliğin kimliği. Değer bir UUID olmalıdır.

api-version
query True

string

Bu işlem için kullanılacak API sürümü.

İstek Gövdesi

Name Tür Description
identity.type

ManagedServiceIdentityType

Yönetilen hizmet kimliğinin türü.

identity.userAssignedIdentities

object

Kullanıcı tarafından atanan kimliğin meta verileri.

properties.administratorLoginPassword

string

Yönetici oturum açma parolası.

properties.backup

Backup

Sunucunun ilgili özelliklerini yedekleme.

properties.dataEncryption

DataEncryption

CMK için Veri Şifrelemesi.

properties.highAvailability

HighAvailability

Bir sunucunun yüksek kullanılabilirlik özellikleri.

properties.maintenanceWindow

MaintenanceWindow

Sunucunun bakım penceresi.

properties.network

Network

Sunucunun ağ ile ilgili özellikleri

properties.replicationRole

ReplicationRole

Sunucunun çoğaltma rolü.

properties.storage

Storage

Sunucunun depolamayla ilgili özellikleri.

properties.version

ServerVersion

Sunucu sürümü.

sku

MySQLServerSku

Sunucunun SKU'su (fiyatlandırma katmanı).

tags

object

Anahtar-değer çiftleri biçiminde uygulamaya özgü meta veriler.

Yanıtlar

Name Tür Description
200 OK

Server

Tamam

202 Accepted

Kabul edildi

Üst Bilgiler

Location: string

Other Status Codes

ErrorResponse

İşlemin neden başarısız olduğunu açıklayan hata yanıtı.

Güvenlik

azure_auth

Azure Active Directory OAuth2 Flow

Tür: oauth2
Akış: implicit
Yetkilendirme URL’si: https://login.microsoftonline.com/common/oauth2/authorize

Kapsamlar

Name Description
user_impersonation kullanıcı hesabınızın kimliğine bürünme

Örnekler

Update a server
Update server customer maintenance window
Update server with byok

Update a server

Örnek isteği

PATCH https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/flexibleServers/mysqltestserver?api-version=2023-12-30

{
  "properties": {
    "storage": {
      "storageSizeGB": 30,
      "iops": 200,
      "autoGrow": "Disabled",
      "autoIoScaling": "Disabled"
    },
    "network": {
      "publicNetworkAccess": "Disabled"
    }
  }
}

Örnek yanıt

{
  "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",
    "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"
    }
  },
  "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=2023-12-30
Location: https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/providers/Microsoft.DBforMySQL/locations/southeastasia/operationResults/e276a03a-1770-4549-86f5-0edffae8997c?api-version=2023-12-30

Update server customer maintenance window

Örnek isteği

PATCH https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/flexibleServers/mysqltestserver?api-version=2023-12-30

{
  "properties": {
    "maintenanceWindow": {
      "customWindow": "Enabled",
      "dayOfWeek": 1,
      "startHour": 8,
      "startMinute": 0
    }
  }
}

Örnek yanıt

{
  "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",
    "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"
    }
  },
  "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=2023-12-30
Location: https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/providers/Microsoft.DBforMySQL/locations/southeastasia/operationResults/e276a03a-1770-4549-86f5-0edffae8997c?api-version=2023-12-30

Update server with byok

Örnek isteği

PATCH https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/testrg/providers/Microsoft.DBforMySQL/flexibleServers/mysqltestserver?api-version=2023-12-30

{
  "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"
    }
  }
}

Örnek yanıt

{
  "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,
      "backupIntervalHours": 24,
      "geoRedundantBackup": "Disabled",
      "earliestRestoreDate": "2021-06-17T06:11:38.4150019+00:00"
    },
    "highAvailability": {
      "mode": "ZoneRedundant",
      "state": "Healthy",
      "standbyAvailabilityZone": "3"
    }
  },
  "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=2023-12-30
Location: https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/providers/Microsoft.DBforMySQL/locations/southeastasia/operationResults/e276a03a-1770-4549-86f5-0edffae8997c?api-version=2023-12-30

Tanımlar

Name Description
Backup

Sunucunun Depolama Profili özellikleri

createdByType

Kaynağı oluşturan kimliğin türü.

CreateMode

Yeni bir MySQL sunucusu oluşturma modu.

DataEncryption

cmk için tarih şifrelemesi.

DataEncryptionType

Anahtar türü, enable cmk için AzureKeyVault, cmk'yi devre dışı bırakmak için SystemManaged.

EnableStatusEnum

Değerin 'Etkin' mi yoksa 'Devre Dışı' mı olduğunu belirten sabit listesi

ErrorAdditionalInfo

Kaynak yönetimi hatası ek bilgileri.

ErrorDetail

Hata ayrıntısı.

ErrorResponse

Hata yanıtı

HighAvailability

Sunucunun yüksek kullanılabilirlik özellikleri

HighAvailabilityMode

Bir sunucu için yüksek kullanılabilirlik modu.

HighAvailabilityState

Sunucunun yüksek kullanılabilirlik durumu.

ImportSourceProperties

Kaynakla ilgili özellikleri içeri aktar.

ImportSourceStorageType

İçeri aktarma kaynağının depolama türü.

MaintenanceWindow

Sunucunun bakım penceresi.

ManagedServiceIdentityType

Yönetilen hizmet kimliğinin türü.

MySQLServerSku

Sunucunun faturalama bilgileriyle ilgili özellikleri.

Network

Sunucunun ağ ile ilgili özellikleri

PrivateEndpoint

Özel uç nokta kaynağı.

PrivateEndpointConnection

Özel uç nokta bağlantı kaynağı.

PrivateEndpointConnectionProvisioningState

Geçerli sağlama durumu.

PrivateEndpointServiceConnectionStatus

Özel uç nokta bağlantı durumu.

PrivateLinkServiceConnectionState

Hizmet tüketicisi ile sağlayıcı arasındaki bağlantının durumu hakkında bilgi koleksiyonu.

ReplicationRole

Çoğaltma rolü.

Server

Bir sunucuyu temsil eder.

ServerForUpdate

Sunucu için güncelleştirilmeye izin verilen parametreler.

ServerSkuTier

Belirli bir SKU'nun katmanı, örneğin GeneralPurpose.

ServerState

Sunucunun durumu.

ServerVersion

Sunucunun sürümü.

Storage

Sunucunun Depolama Profili özellikleri

systemData

Kaynağın oluşturulması ve son değiştirilmesiyle ilgili meta veriler.

Backup

Sunucunun Depolama Profili özellikleri

Name Tür Default value Description
backupIntervalHours

integer

Sunucu için yedekleme aralığı saatleri.

backupRetentionDays

integer

Sunucu için yedekleme saklama günleri.

earliestRestoreDate

string

En erken geri yükleme noktası oluşturma zamanı (ISO8601 biçimi)

geoRedundantBackup

EnableStatusEnum

Disabled

Coğrafi olarak yedekli yedeklemenin etkinleştirilip etkinleştirilmediği.

createdByType

Kaynağı oluşturan kimliğin türü.

Name Tür Description
Application

string

Key

string

ManagedIdentity

string

User

string

CreateMode

Yeni bir MySQL sunucusu oluşturma modu.

Name Tür Description
Default

string

GeoRestore

string

PointInTimeRestore

string

Replica

string

DataEncryption

cmk için tarih şifrelemesi.

Name Tür Description
geoBackupKeyURI

string

Anahtar kasası bölgeler arasında geçiş yapamaz, coğrafi yedekleme ile aynı bölgede cmk olması gerektiğinden coğrafi yedekleme anahtarı uri'sini kullanın

geoBackupUserAssignedIdentityId

string

Coğrafi yedekleme kullanıcı kimliği kaynak kimliği olarak kimlik bölgeler arasında geçemez, coğrafi yedekleme ile aynı bölgede kimlik gerekiyor

primaryKeyURI

string

Birincil anahtar uri'si

primaryUserAssignedIdentityId

string

Birincil kullanıcı kimliği kaynak kimliği

type

DataEncryptionType

Anahtar türü, enable cmk için AzureKeyVault, cmk'yi devre dışı bırakmak için SystemManaged.

DataEncryptionType

Anahtar türü, enable cmk için AzureKeyVault, cmk'yi devre dışı bırakmak için SystemManaged.

Name Tür Description
AzureKeyVault

string

SystemManaged

string

EnableStatusEnum

Değerin 'Etkin' mi yoksa 'Devre Dışı' mı olduğunu belirten sabit listesi

Name Tür Description
Disabled

string

Enabled

string

ErrorAdditionalInfo

Kaynak yönetimi hatası ek bilgileri.

Name Tür Description
info

object

Ek bilgiler.

type

string

Ek bilgi türü.

ErrorDetail

Hata ayrıntısı.

Name Tür Description
additionalInfo

ErrorAdditionalInfo[]

Hata ek bilgileri.

code

string

Hata kodu.

details

ErrorDetail[]

Hata ayrıntıları.

message

string

Hata iletisi.

target

string

Hata hedefi.

ErrorResponse

Hata yanıtı

Name Tür Description
error

ErrorDetail

Hata nesnesi.

HighAvailability

Sunucunun yüksek kullanılabilirlik özellikleri

Name Tür Description
mode

HighAvailabilityMode

Bir sunucu için yüksek kullanılabilirlik modu.

standbyAvailabilityZone

string

Hazır bekleyen sunucunun kullanılabilirlik alanı.

state

HighAvailabilityState

Sunucunun yüksek kullanılabilirlik durumu.

HighAvailabilityMode

Bir sunucu için yüksek kullanılabilirlik modu.

Name Tür Description
Disabled

string

SameZone

string

ZoneRedundant

string

HighAvailabilityState

Sunucunun yüksek kullanılabilirlik durumu.

Name Tür Description
CreatingStandby

string

FailingOver

string

Healthy

string

NotEnabled

string

RemovingStandby

string

ImportSourceProperties

Kaynakla ilgili özellikleri içeri aktar.

Name Tür Description
dataDirPath

string

Depolamadaki veri dizininin göreli yolu.

sasToken

string

Kaynak depolamaya erişmek için Sas belirteci. Sas belirteci için okuma ve listeleme izinleri gereklidir.

storageType

ImportSourceStorageType

İçeri aktarma kaynağının depolama türü.

storageUrl

string

İçeri aktarma kaynak depolamasının Uri'si.

ImportSourceStorageType

İçeri aktarma kaynağının depolama türü.

Name Tür Description
AzureBlob

string

MaintenanceWindow

Sunucunun bakım penceresi.

Name Tür Description
customWindow

string

özel pencerenin etkinleştirildiğini veya devre dışı bırakılıp bırakılmadığını gösterir

dayOfWeek

integer

bakım penceresi için haftanın günü

startHour

integer

bakım penceresi için başlangıç saati

startMinute

integer

bakım penceresi için başlangıç dakikası

ManagedServiceIdentityType

Yönetilen hizmet kimliğinin türü.

Name Tür Description
UserAssigned

string

MySQLServerSku

Sunucunun faturalama bilgileriyle ilgili özellikleri.

Name Tür Description
name

string

Sku'nun adı, örneğin Standard_D32s_v3.

tier

ServerSkuTier

Belirli bir SKU'nun katmanı, örneğin GeneralPurpose.

Network

Sunucunun ağ ile ilgili özellikleri

Name Tür Description
delegatedSubnetResourceId

string

Bir sunucu için sanal ağı ayarlamak için kullanılan temsilci alt ağ kaynak kimliği.

privateDnsZoneResourceId

string

bölge kaynak kimliğini Özel DNS.

publicNetworkAccess

EnableStatusEnum

Bu sunucu için genel ağ erişimine izin verilip verilmeyeceği. Sunucu sanal ağ tümleştirmesi olduğunda değer 'Devre Dışı' olarak ayarlanır.

PrivateEndpoint

Özel uç nokta kaynağı.

Name Tür Description
id

string

Özel uç noktanın ARM tanımlayıcısı.

PrivateEndpointConnection

Özel uç nokta bağlantı kaynağı.

Name Tür Description
id

string

Kaynağın tam kaynak kimliği. Örneğin, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"

name

string

Kaynağın adı

properties.groupIds

string[]

Özel uç nokta kaynağının grup kimlikleri.

properties.privateEndpoint

PrivateEndpoint

Özel uç nokta kaynağı.

properties.privateLinkServiceConnectionState

PrivateLinkServiceConnectionState

Hizmet tüketicisi ile sağlayıcı arasındaki bağlantının durumu hakkında bilgi koleksiyonu.

properties.provisioningState

PrivateEndpointConnectionProvisioningState

Özel uç nokta bağlantı kaynağının sağlama durumu.

systemData

systemData

Azure Resource Manager createdBy ve modifiedBy bilgilerini içeren meta veriler.

type

string

Kaynağın türü. Örneğin, "Microsoft.Compute/virtualMachines" veya "Microsoft.Storage/storageAccounts"

PrivateEndpointConnectionProvisioningState

Geçerli sağlama durumu.

Name Tür Description
Creating

string

Deleting

string

Failed

string

Succeeded

string

PrivateEndpointServiceConnectionStatus

Özel uç nokta bağlantı durumu.

Name Tür Description
Approved

string

Pending

string

Rejected

string

PrivateLinkServiceConnectionState

Hizmet tüketicisi ile sağlayıcı arasındaki bağlantının durumu hakkında bilgi koleksiyonu.

Name Tür Description
actionsRequired

string

Hizmet sağlayıcısında yapılan değişikliklerin tüketicide herhangi bir güncelleştirme gerektirip gerektirmediğini belirten bir ileti.

description

string

Bağlantının onay/reddedilme nedeni.

status

PrivateEndpointServiceConnectionStatus

Bağlantının hizmet sahibi tarafından Onaylanıp Reddedildiğini/Kaldırıldığını gösterir.

ReplicationRole

Çoğaltma rolü.

Name Tür Description
None

string

Replica

string

Source

string

Server

Bir sunucuyu temsil eder.

Name Tür Description
id

string

Kaynağın tam kaynak kimliği. Örneğin, "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"

identity.principalId

string

KeyVault'tan ObjectId

identity.tenantId

string

KeyVault'tan TenantId

identity.type

ManagedServiceIdentityType

Yönetilen hizmet kimliğinin türü.

identity.userAssignedIdentities

object

Kullanıcı tarafından atanan kimliğin meta verileri.

location

string

Kaynağın bulunduğu coğrafi konum

name

string

Kaynağın adı

properties.administratorLogin

string

Yöneticinin sunucunun oturum açma adı. Yalnızca sunucu oluşturulurken belirtilebilir (ve oluşturma için gereklidir).

properties.administratorLoginPassword

string

Yönetici oturum açma parolası (sunucu oluşturma için gereklidir).

properties.availabilityZone

string

sunucunun kullanılabilirlik Alanı bilgileri.

properties.backup

Backup

Sunucunun ilgili özelliklerini yedekleyin.

properties.createMode

CreateMode

Yeni bir MySQL sunucusu oluşturma modu.

properties.dataEncryption

DataEncryption

CMK için Veri Şifrelemesi.

properties.fullyQualifiedDomainName

string

Bir sunucunun tam etki alanı adı.

properties.highAvailability

HighAvailability

Bir sunucunun yüksek kullanılabilirlik ile ilgili özellikleri.

properties.importSourceProperties

ImportSourceProperties

Depolama alanından içeri aktarma için kaynak özellikleri.

properties.maintenanceWindow

MaintenanceWindow

Sunucunun bakım penceresi.

properties.network

Network

Bir sunucunun ağ ile ilgili özellikleri.

properties.privateEndpointConnections

PrivateEndpointConnection[]

Bir sunucunun PrivateEndpointConnections ile ilgili özellikleri.

properties.replicaCapacity

integer

Birincil sunucunun sahip olabileceği en fazla çoğaltma sayısı.

properties.replicationRole

ReplicationRole

Çoğaltma rolü.

properties.restorePointInTime

string

Geri yükleme noktası oluşturma zamanı (ISO8601 biçimi), geri yükleme zamanı belirtilir.

properties.sourceServerResourceId

string

Kaynak MySQL sunucu kimliği.

properties.state

ServerState

Sunucunun durumu.

properties.storage

Storage

Sunucunun depolamayla ilgili özellikleri.

properties.version

ServerVersion

Sunucu sürümü.

sku

MySQLServerSku

Sunucunun SKU'su (fiyatlandırma katmanı).

systemData

systemData

Azure Resource Manager createdBy ve modifiedBy bilgilerini içeren meta veriler.

tags

object

Kaynak etiketleri.

type

string

Kaynağın türü. Örneğin, "Microsoft.Compute/virtualMachines" veya "Microsoft.Storage/storageAccounts"

ServerForUpdate

Sunucu için güncelleştirilmeye izin verilen parametreler.

Name Tür Description
identity.principalId

string

KeyVault'tan ObjectId

identity.tenantId

string

KeyVault'tan TenantId

identity.type

ManagedServiceIdentityType

Yönetilen hizmet kimliğinin türü.

identity.userAssignedIdentities

object

Kullanıcı tarafından atanan kimliğin meta verileri.

properties.administratorLoginPassword

string

Yönetici oturum açma parolası.

properties.backup

Backup

Sunucunun ilgili özelliklerini yedekleyin.

properties.dataEncryption

DataEncryption

CMK için Veri Şifrelemesi.

properties.highAvailability

HighAvailability

Bir sunucunun yüksek kullanılabilirlik ile ilgili özellikleri.

properties.maintenanceWindow

MaintenanceWindow

Sunucunun bakım penceresi.

properties.network

Network

Sunucunun ağ ile ilgili özellikleri

properties.replicationRole

ReplicationRole

Sunucunun çoğaltma rolü.

properties.storage

Storage

Sunucunun depolamayla ilgili özellikleri.

properties.version

ServerVersion

Sunucu sürümü.

sku

MySQLServerSku

Sunucunun SKU'su (fiyatlandırma katmanı).

tags

object

Anahtar-değer çiftleri biçiminde uygulamaya özgü meta veriler.

ServerSkuTier

Belirli bir SKU'nun katmanı, örneğin GeneralPurpose.

Name Tür Description
Burstable

string

GeneralPurpose

string

MemoryOptimized

string

ServerState

Sunucunun durumu.

Name Tür Description
Disabled

string

Dropping

string

Ready

string

Starting

string

Stopped

string

Stopping

string

Updating

string

ServerVersion

Sunucunun sürümü.

Name Tür Description
5.7

string

8.0.21

string

Storage

Sunucunun Depolama Profili özellikleri

Name Tür Default value Description
autoGrow

EnableStatusEnum

Disabled

Depolama Otomatik Büyütme'yi etkinleştirin veya etkinleştirmeyin.

autoIoScaling

EnableStatusEnum

Enabled

GÇ Otomatik Ölçeklendirme'yi etkinleştirin veya etkinleştirmeyin.

iops

integer

Bir sunucu için depolama IOPS...

logOnDisk

EnableStatusEnum

Disabled

Oturum Açma Disk'i etkinleştirin veya etkinleştirmeyin.

storageSizeGB

integer

Bir sunucu için izin verilen maksimum depolama boyutu.

storageSku

string

Sunucu depolama alanının sku adı.

systemData

Kaynağın oluşturulması ve son değiştirilmesiyle ilgili meta veriler.

Name Tür Description
createdAt

string

Kaynak oluşturma (UTC) zaman damgası.

createdBy

string

Kaynağı oluşturan kimlik.

createdByType

createdByType

Kaynağı oluşturan kimliğin türü.

lastModifiedAt

string

Kaynağın son değişikliğinin zaman damgası (UTC)

lastModifiedBy

string

Kaynağı en son değiştiren kimlik.

lastModifiedByType

createdByType

Kaynağı en son değiştiren kimliğin türü.