Aracılığıyla paylaş


Servers - Create

Yeni bir sunucu oluşturur.

PUT https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/flexibleServers/{serverName}?api-version=2024-08-01

URI Parametreleri

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

string

minLength: 1
maxLength: 90

Kaynak grubunun adı. Ad büyük/küçük harfe duyarsız.

serverName
path True

string

minLength: 3
maxLength: 63
pattern: ^[a-zA-Z0-9]+(-[a-zA-Z0-9]+)*

Sunucunun adı.

subscriptionId
path True

string (uuid)

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

api-version
query True

string

minLength: 1

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

İstek Gövdesi

Name Tür Description
parameters

Server

Yeni bir esnek sunucu oluşturmak veya mevcut bir esnek sunucuyu güncelleştirmek için gereken parametreler.

Yanıtlar

Name Tür Description
200 OK

Server

Tamam

201 Created

Server

Oluşturuldu

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

Microsoft Entra OAuth2 Akışı

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

Create a new flexible server using a backup of a flexible server that was deleted or dropped recently.
Create a new flexible server using a point in time restore of a backup of an existing flexible server.
Create a new flexible server using a restore of a geographically redundant backup of an existing flexible server, with data encryption based on customer managed key.
Create a new flexible server with data encryption based on customer managed key.
Create a new flexible server with Microsoft Entra authentication enabled.
Create a new flexible server.
Create a read replica of an existing flexible server.

Create a new flexible server using a backup of a flexible server that was deleted or dropped recently.

Örnek isteği

PUT https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver?api-version=2024-08-01

{
  "location": "westus",
  "properties": {
    "createMode": "ReviveDropped",
    "sourceServerResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampledeletedserver",
    "pointInTimeUTC": "2024-08-01T18:30:22.123456Z"
  }
}

Örnek yanıt

{
  "sku": {
    "name": "Standard_D4ds_v5",
    "tier": "GeneralPurpose"
  },
  "properties": {
    "fullyQualifiedDomainName": "exampleserver.postgres.database.azure.com",
    "version": "16",
    "minorVersion": "8",
    "administratorLogin": "administratorlogin",
    "state": "Ready",
    "availabilityZone": "2",
    "storage": {
      "storageSizeGB": 512,
      "autoGrow": "Disabled",
      "tier": "P20",
      "iops": 2300
    },
    "authConfig": {
      "activeDirectoryAuth": "Disabled",
      "passwordAuth": "Enabled"
    },
    "backup": {
      "backupRetentionDays": 7,
      "geoRedundantBackup": "Disabled",
      "earliestRestoreDate": "2024-08-01T18:35:22.123456Z"
    },
    "network": {
      "publicNetworkAccess": "Enabled"
    },
    "highAvailability": {
      "mode": "Disabled",
      "state": "NotEnabled"
    },
    "maintenanceWindow": {
      "customWindow": "Disabled",
      "dayOfWeek": 0,
      "startHour": 0,
      "startMinute": 0
    },
    "replicationRole": "Primary",
    "replicaCapacity": 0
  },
  "location": "westus",
  "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver",
  "name": "exampleserver",
  "type": "Microsoft.DBforPostgreSQL/flexibleServers"
}
{
  "sku": {
    "name": "Standard_D4ds_v5",
    "tier": "GeneralPurpose"
  },
  "properties": {
    "fullyQualifiedDomainName": "exampleserver.postgres.database.azure.com",
    "version": "16",
    "minorVersion": "8",
    "administratorLogin": "administratorlogin",
    "state": "Ready",
    "availabilityZone": "2",
    "storage": {
      "storageSizeGB": 512,
      "autoGrow": "Disabled",
      "tier": "P20",
      "iops": 2300
    },
    "authConfig": {
      "activeDirectoryAuth": "Disabled",
      "passwordAuth": "Enabled"
    },
    "backup": {
      "backupRetentionDays": 7,
      "geoRedundantBackup": "Disabled",
      "earliestRestoreDate": "2024-08-01T18:35:22.123456Z"
    },
    "network": {
      "publicNetworkAccess": "Enabled"
    },
    "highAvailability": {
      "mode": "Disabled",
      "state": "NotEnabled"
    },
    "maintenanceWindow": {
      "customWindow": "Disabled",
      "dayOfWeek": 0,
      "startHour": 0,
      "startMinute": 0
    },
    "replicationRole": "Primary",
    "replicaCapacity": 0
  },
  "location": "westus",
  "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver",
  "name": "exampleserver",
  "type": "Microsoft.DBforPostgreSQL/flexibleServers"
}

Create a new flexible server using a point in time restore of a backup of an existing flexible server.

Örnek isteği

PUT https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver?api-version=2024-08-01

{
  "location": "westus",
  "properties": {
    "createMode": "PointInTimeRestore",
    "sourceServerResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/examplesourceserver",
    "pointInTimeUTC": "2024-08-01T18:35:22.123456Z"
  }
}

Örnek yanıt

{
  "sku": {
    "name": "Standard_D4ds_v5",
    "tier": "GeneralPurpose"
  },
  "properties": {
    "fullyQualifiedDomainName": "exampleserver.postgres.database.azure.com",
    "version": "16",
    "minorVersion": "8",
    "administratorLogin": "administratorlogin",
    "state": "Ready",
    "availabilityZone": "2",
    "storage": {
      "storageSizeGB": 512,
      "autoGrow": "Disabled",
      "tier": "P20",
      "iops": 2300
    },
    "dataEncryption": {
      "type": "SystemManaged"
    },
    "authConfig": {
      "activeDirectoryAuth": "Disabled",
      "passwordAuth": "Enabled"
    },
    "backup": {
      "backupRetentionDays": 7,
      "geoRedundantBackup": "Disabled",
      "earliestRestoreDate": "2024-08-01T18:40:22.123456Z"
    },
    "network": {
      "publicNetworkAccess": "Enabled"
    },
    "highAvailability": {
      "mode": "Disabled",
      "state": "NotEnabled"
    },
    "maintenanceWindow": {
      "customWindow": "Disabled",
      "dayOfWeek": 0,
      "startHour": 0,
      "startMinute": 0
    }
  },
  "location": "westus",
  "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver",
  "name": "exampleserver",
  "type": "Microsoft.DBforPostgreSQL/flexibleServers"
}
{
  "sku": {
    "name": "Standard_D4ds_v5",
    "tier": "GeneralPurpose"
  },
  "properties": {
    "fullyQualifiedDomainName": "exampleserver.postgres.database.azure.com",
    "version": "16",
    "minorVersion": "8",
    "administratorLogin": "administratorlogin",
    "state": "Ready",
    "availabilityZone": "2",
    "storage": {
      "storageSizeGB": 512,
      "autoGrow": "Disabled",
      "tier": "P20",
      "iops": 2300
    },
    "dataEncryption": {
      "type": "SystemManaged"
    },
    "authConfig": {
      "activeDirectoryAuth": "Disabled",
      "passwordAuth": "Enabled"
    },
    "backup": {
      "backupRetentionDays": 7,
      "geoRedundantBackup": "Disabled",
      "earliestRestoreDate": "2024-08-01T18:40:22.123456Z"
    },
    "network": {
      "publicNetworkAccess": "Enabled"
    },
    "highAvailability": {
      "mode": "Disabled",
      "state": "NotEnabled"
    },
    "maintenanceWindow": {
      "customWindow": "Disabled",
      "dayOfWeek": 0,
      "startHour": 0,
      "startMinute": 0
    }
  },
  "location": "westus",
  "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver",
  "name": "exampleserver",
  "type": "Microsoft.DBforPostgreSQL/flexibleServers"
}

Create a new flexible server using a restore of a geographically redundant backup of an existing flexible server, with data encryption based on customer managed key.

Örnek isteği

PUT https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver?api-version=2024-08-01

{
  "location": "westus",
  "identity": {
    "userAssignedIdentities": {
      "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleprimaryidentity": {},
      "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/examplegeoredundantidentity": {}
    },
    "type": "UserAssigned"
  },
  "properties": {
    "createMode": "GeoRestore",
    "sourceServerResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/examplesourceserver",
    "pointInTimeUTC": "2024-08-01T18:35:22.123456Z",
    "dataEncryption": {
      "type": "AzureKeyVault",
      "primaryKeyURI": "https://exampleprimarykeyvault.vault.azure.net/keys/examplekey/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
      "primaryUserAssignedIdentityId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleprimaryidentity",
      "geoBackupKeyURI": "https://examplegeoredundantkeyvault.vault.azure.net/keys/examplekey/yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy",
      "geoBackupUserAssignedIdentityId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/examplegeoredundantidentity"
    }
  }
}

Örnek yanıt

{
  "sku": {
    "name": "Standard_D4ds_v5",
    "tier": "GeneralPurpose"
  },
  "identity": {
    "userAssignedIdentities": {
      "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleprimaryidentity": {
        "principalId": "pppppppp-pppp-pppp-pppp-pppppppppppp",
        "clientId": "cccccccc-cccc-cccc-cccc-cccccccccccc"
      },
      "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/examplegeoredundantidentity": {
        "principalId": "rrrrrrrr-rrrr-rrrr-rrrr-rrrrrrrrrrrr",
        "clientId": "llllllll-llll-llll-llll-llllllllllll"
      }
    },
    "type": "UserAssigned",
    "tenantId": "cccccccc-cccc-cccc-cccc-cccccccccccc"
  },
  "properties": {
    "fullyQualifiedDomainName": "exampleserver.postgres.database.azure.com",
    "version": "16",
    "minorVersion": "8",
    "administratorLogin": "administratorlogin",
    "state": "Ready",
    "availabilityZone": "2",
    "storage": {
      "storageSizeGB": 512,
      "autoGrow": "Disabled",
      "tier": "P20",
      "iops": 2300
    },
    "dataEncryption": {
      "type": "AzureKeyVault",
      "primaryKeyURI": "https://exampleprimarykeyvault.vault.azure.net/keys/examplekey/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
      "primaryUserAssignedIdentityId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleprimaryidentity",
      "geoBackupKeyURI": "https://examplegeoredundantkeyvault.vault.azure.net/keys/examplekey/yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy",
      "geoBackupUserAssignedIdentityId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/examplegeoredundantidentity",
      "primaryEncryptionKeyStatus": "Valid",
      "geoBackupEncryptionKeyStatus": "Valid"
    },
    "authConfig": {
      "activeDirectoryAuth": "Disabled",
      "passwordAuth": "Enabled"
    },
    "backup": {
      "backupRetentionDays": 7,
      "geoRedundantBackup": "Enabled",
      "earliestRestoreDate": "2024-08-01T18:35:22.123456Z"
    },
    "network": {
      "publicNetworkAccess": "Enabled"
    },
    "highAvailability": {
      "mode": "Disabled",
      "state": "NotEnabled"
    },
    "maintenanceWindow": {
      "customWindow": "Disabled",
      "dayOfWeek": 0,
      "startHour": 0,
      "startMinute": 0
    }
  },
  "location": "westus",
  "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver",
  "name": "exampleserver",
  "type": "Microsoft.DBforPostgreSQL/flexibleServers"
}
{
  "sku": {
    "name": "Standard_D4ds_v5",
    "tier": "GeneralPurpose"
  },
  "identity": {
    "userAssignedIdentities": {
      "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleprimaryidentity": {
        "principalId": "pppppppp-pppp-pppp-pppp-pppppppppppp",
        "clientId": "cccccccc-cccc-cccc-cccc-cccccccccccc"
      },
      "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/examplegeoredundantidentity": {
        "principalId": "rrrrrrrr-rrrr-rrrr-rrrr-rrrrrrrrrrrr",
        "clientId": "llllllll-llll-llll-llll-llllllllllll"
      }
    },
    "type": "UserAssigned",
    "tenantId": "cccccccc-cccc-cccc-cccc-cccccccccccc"
  },
  "properties": {
    "fullyQualifiedDomainName": "exampleserver.postgres.database.azure.com",
    "version": "16",
    "minorVersion": "8",
    "administratorLogin": "administratorlogin",
    "state": "Ready",
    "availabilityZone": "2",
    "storage": {
      "storageSizeGB": 512,
      "autoGrow": "Disabled",
      "tier": "P20",
      "iops": 2300
    },
    "dataEncryption": {
      "type": "AzureKeyVault",
      "primaryKeyURI": "https://exampleprimarykeyvault.vault.azure.net/keys/examplekey/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
      "primaryUserAssignedIdentityId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleprimaryidentity",
      "geoBackupKeyURI": "https://examplegeoredundantkeyvault.vault.azure.net/keys/examplekey/yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy",
      "geoBackupUserAssignedIdentityId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/examplegeoredundantidentity",
      "primaryEncryptionKeyStatus": "Valid",
      "geoBackupEncryptionKeyStatus": "Valid"
    },
    "authConfig": {
      "activeDirectoryAuth": "Disabled",
      "passwordAuth": "Enabled"
    },
    "backup": {
      "backupRetentionDays": 7,
      "geoRedundantBackup": "Enabled",
      "earliestRestoreDate": "2025-03-03T00:28:17.7279547+00:00"
    },
    "network": {
      "publicNetworkAccess": "Enabled"
    },
    "highAvailability": {
      "mode": "Disabled",
      "state": "NotEnabled"
    },
    "maintenanceWindow": {
      "customWindow": "Disabled",
      "dayOfWeek": 0,
      "startHour": 0,
      "startMinute": 0
    }
  },
  "location": "westus",
  "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver",
  "name": "exampleserver",
  "type": "Microsoft.DBforPostgreSQL/flexibleServers"
}

Create a new flexible server with data encryption based on customer managed key.

Örnek isteği

PUT https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver?api-version=2024-08-01

{
  "location": "westus",
  "sku": {
    "tier": "GeneralPurpose",
    "name": "Standard_D4ds_v5"
  },
  "identity": {
    "userAssignedIdentities": {
      "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleprimaryidentity": {}
    },
    "type": "UserAssigned"
  },
  "properties": {
    "administratorLogin": "administratorlogin",
    "administratorLoginPassword": "examplepassword",
    "version": "16",
    "availabilityZone": "1",
    "createMode": "Create",
    "dataEncryption": {
      "type": "AzureKeyVault",
      "primaryKeyURI": "https://exampleprimarykeyvault.vault.azure.net/keys/examplekey/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
      "primaryUserAssignedIdentityId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleprimaryidentity",
      "geoBackupKeyURI": "",
      "geoBackupUserAssignedIdentityId": ""
    },
    "storage": {
      "storageSizeGB": 512,
      "autoGrow": "Disabled",
      "tier": "P20"
    },
    "backup": {
      "backupRetentionDays": 7,
      "geoRedundantBackup": "Disabled"
    },
    "network": {
      "delegatedSubnetResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.Network/virtualNetworks/examplevirtualnetwork/subnets/examplesubnet",
      "privateDnsZoneArmResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourcegroups/exampleresourcegroup/providers/Microsoft.Network/privateDnsZones/exampleprivatednszone.postgres.database.azure.com"
    },
    "highAvailability": {
      "mode": "ZoneRedundant"
    }
  }
}

Örnek yanıt

{
  "sku": {
    "name": "Standard_D4ds_v5",
    "tier": "GeneralPurpose"
  },
  "identity": {
    "userAssignedIdentities": {
      "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleprimaryidentity": {
        "principalId": "pppppppp-pppp-pppp-pppp-pppppppppppp",
        "clientId": "cccccccc-cccc-cccc-cccc-cccccccccccc"
      }
    },
    "type": "UserAssigned",
    "tenantId": "cccccccc-cccc-cccc-cccc-cccccccccccc"
  },
  "systemData": {
    "createdAt": "2025-03-03T17:44:30.7095047Z"
  },
  "properties": {
    "fullyQualifiedDomainName": "exampleserver.exampleprivatednszone.postgres.database.azure.com",
    "version": "16",
    "minorVersion": "8",
    "administratorLogin": "administratorlogin",
    "state": "Ready",
    "availabilityZone": "1",
    "authConfig": {
      "activeDirectoryAuth": "Enabled",
      "passwordAuth": "Enabled"
    },
    "dataEncryption": {
      "type": "AzureKeyVault",
      "primaryKeyURI": "https://exampleprimarykeyvault.vault.azure.net/keys/examplekey/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
      "primaryUserAssignedIdentityId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleprimaryidentity",
      "primaryEncryptionKeyStatus": "Valid"
    },
    "storage": {
      "type": "",
      "storageSizeGB": 512,
      "autoGrow": "Disabled",
      "tier": "P20",
      "iops": 2300
    },
    "backup": {
      "backupRetentionDays": 7,
      "geoRedundantBackup": "Disabled",
      "earliestRestoreDate": "2025-02-26T01:08:06.7197478+00:00"
    },
    "network": {
      "publicNetworkAccess": "Disabled",
      "delegatedSubnetResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.Network/virtualNetworks/examplevirtualnetwork/subnets/examplesubnet",
      "privateDnsZoneArmResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.Network/privateDnsZones/exampleprivatednszone.postgres.database.azure.com"
    },
    "highAvailability": {
      "mode": "ZoneRedundant",
      "state": "Healthy",
      "standbyAvailabilityZone": "2"
    },
    "maintenanceWindow": {
      "customWindow": "Disabled",
      "dayOfWeek": 0,
      "startHour": 0,
      "startMinute": 0
    },
    "replicationRole": "Primary",
    "replicaCapacity": 5
  },
  "location": "westus",
  "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver",
  "name": "exampleserver",
  "type": "Microsoft.DBforPostgreSQL/flexibleServers"
}
{
  "sku": {
    "name": "Standard_D4ds_v5",
    "tier": "GeneralPurpose"
  },
  "identity": {
    "userAssignedIdentities": {
      "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleprimaryidentity": {
        "principalId": "pppppppp-pppp-pppp-pppp-pppppppppppp",
        "clientId": "cccccccc-cccc-cccc-cccc-cccccccccccc"
      }
    },
    "type": "UserAssigned",
    "tenantId": "cccccccc-cccc-cccc-cccc-cccccccccccc"
  },
  "properties": {
    "fullyQualifiedDomainName": "exampleserver.exampleprivatednszone.postgres.database.azure.com",
    "version": "16",
    "minorVersion": "8",
    "administratorLogin": "administratorlogin",
    "state": "Ready",
    "availabilityZone": "1",
    "authConfig": {
      "activeDirectoryAuth": "Enabled",
      "passwordAuth": "Enabled"
    },
    "dataEncryption": {
      "type": "AzureKeyVault",
      "primaryKeyURI": "https://exampleprimarykeyvault.vault.azure.net/keys/examplekey/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
      "primaryUserAssignedIdentityId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleprimaryidentity",
      "primaryEncryptionKeyStatus": "Valid"
    },
    "storage": {
      "type": "",
      "storageSizeGB": 512,
      "autoGrow": "Disabled",
      "tier": "P20",
      "iops": 2300
    },
    "backup": {
      "backupRetentionDays": 7,
      "geoRedundantBackup": "Disabled",
      "earliestRestoreDate": "2025-02-26T01:08:06.7197478+00:00"
    },
    "network": {
      "publicNetworkAccess": "Disabled",
      "delegatedSubnetResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.Network/virtualNetworks/examplevirtualnetwork/subnets/examplesubnet",
      "privateDnsZoneArmResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.Network/privateDnsZones/exampleprivatednszone.postgres.database.azure.com"
    },
    "highAvailability": {
      "mode": "ZoneRedundant",
      "state": "Healthy",
      "standbyAvailabilityZone": "2"
    },
    "maintenanceWindow": {
      "customWindow": "Disabled",
      "dayOfWeek": 0,
      "startHour": 0,
      "startMinute": 0
    },
    "replicationRole": "Primary",
    "replicaCapacity": 5
  },
  "location": "westus",
  "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver",
  "name": "exampleserver",
  "type": "Microsoft.DBforPostgreSQL/flexibleServers"
}

Create a new flexible server with Microsoft Entra authentication enabled.

Örnek isteği

PUT https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver?api-version=2024-08-01

{
  "location": "westus",
  "sku": {
    "tier": "GeneralPurpose",
    "name": "Standard_D4ds_v5"
  },
  "properties": {
    "administratorLogin": "administratorlogin",
    "administratorLoginPassword": "examplepassword",
    "version": "16",
    "availabilityZone": "1",
    "createMode": "Create",
    "authConfig": {
      "activeDirectoryAuth": "Enabled",
      "passwordAuth": "Enabled",
      "tenantId": "tttttt-tttt-tttt-tttt-tttttttttttt"
    },
    "dataEncryption": {
      "type": "SystemManaged"
    },
    "storage": {
      "storageSizeGB": 512,
      "autoGrow": "Disabled",
      "tier": "P20"
    },
    "backup": {
      "backupRetentionDays": 7,
      "geoRedundantBackup": "Disabled"
    },
    "network": {
      "delegatedSubnetResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.Network/virtualNetworks/examplevirtualnetwork/subnets/examplesubnet",
      "privateDnsZoneArmResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourcegroups/exampleresourcegroup/providers/Microsoft.Network/privateDnsZones/exampleprivatednszone.postgres.database.azure.com"
    },
    "highAvailability": {
      "mode": "ZoneRedundant"
    }
  }
}

Örnek yanıt

{
  "sku": {
    "name": "Standard_D4ds_v5",
    "tier": "GeneralPurpose"
  },
  "properties": {
    "replica": {
      "role": "Primary",
      "capacity": 5
    },
    "fullyQualifiedDomainName": "exampleserver.exampleprivatednszone.postgres.database.azure.com",
    "version": "16",
    "minorVersion": "8",
    "administratorLogin": "administratorlogin",
    "state": "Ready",
    "availabilityZone": "1",
    "authConfig": {
      "activeDirectoryAuth": "Enabled",
      "passwordAuth": "Enabled",
      "tenantId": "tttttt-tttt-tttt-tttt-tttttttttttt"
    },
    "dataEncryption": {
      "type": "SystemManaged"
    },
    "storage": {
      "type": "",
      "storageSizeGB": 512,
      "autoGrow": "Disabled",
      "tier": "P20",
      "iops": 2300
    },
    "backup": {
      "backupRetentionDays": 7,
      "geoRedundantBackup": "Disabled",
      "earliestRestoreDate": "2024-08-01T18:35:22.123456Z"
    },
    "network": {
      "publicNetworkAccess": "Disabled",
      "delegatedSubnetResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.Network/virtualNetworks/examplevirtualnetwork/subnets/examplesubnet",
      "privateDnsZoneArmResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.Network/privateDnsZones/exampleprivatednszone.postgres.database.azure.com"
    },
    "highAvailability": {
      "mode": "ZoneRedundant",
      "state": "Healthy",
      "standbyAvailabilityZone": "2"
    },
    "maintenanceWindow": {
      "customWindow": "Disabled",
      "dayOfWeek": 0,
      "startHour": 0,
      "startMinute": 0
    },
    "replicationRole": "Primary",
    "replicaCapacity": 5
  },
  "location": "westus",
  "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver",
  "name": "exampleserver",
  "type": "Microsoft.DBforPostgreSQL/flexibleServers"
}
{
  "sku": {
    "name": "Standard_D4ds_v5",
    "tier": "GeneralPurpose"
  },
  "properties": {
    "replica": {
      "role": "Primary",
      "capacity": 5
    },
    "fullyQualifiedDomainName": "exampleserver.exampleprivatednszone.postgres.database.azure.com",
    "version": "16",
    "minorVersion": "8",
    "administratorLogin": "administratorlogin",
    "state": "Ready",
    "availabilityZone": "1",
    "authConfig": {
      "activeDirectoryAuth": "Enabled",
      "passwordAuth": "Enabled",
      "tenantId": "tttttt-tttt-tttt-tttt-tttttttttttt"
    },
    "storage": {
      "storageSizeGB": 512,
      "autoGrow": "Disabled",
      "tier": "P20",
      "iops": 2300
    },
    "backup": {
      "backupRetentionDays": 7,
      "geoRedundantBackup": "Disabled",
      "earliestRestoreDate": "2024-08-01T18:35:22.123456Z"
    },
    "network": {
      "publicNetworkAccess": "Disabled",
      "delegatedSubnetResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.Network/virtualNetworks/examplevirtualnetwork/subnets/examplesubnet",
      "privateDnsZoneArmResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.Network/privateDnsZones/exampleprivatednszone.postgres.database.azure.com"
    },
    "highAvailability": {
      "mode": "ZoneRedundant",
      "state": "Healthy",
      "standbyAvailabilityZone": "2"
    },
    "maintenanceWindow": {
      "customWindow": "Disabled",
      "dayOfWeek": 0,
      "startHour": 0,
      "startMinute": 0
    }
  },
  "location": "westus",
  "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver",
  "name": "exampleserver",
  "type": "Microsoft.DBforPostgreSQL/flexibleServers"
}

Create a new flexible server.

Örnek isteği

PUT https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver?api-version=2024-08-01

{
  "location": "westus",
  "sku": {
    "tier": "GeneralPurpose",
    "name": "Standard_D4ds_v5"
  },
  "properties": {
    "administratorLogin": "administratorlogin",
    "administratorLoginPassword": "examplepassword",
    "version": "16",
    "availabilityZone": "1",
    "createMode": "Create",
    "storage": {
      "storageSizeGB": 512,
      "autoGrow": "Disabled",
      "tier": "P20"
    },
    "backup": {
      "backupRetentionDays": 7,
      "geoRedundantBackup": "Enabled"
    },
    "network": {
      "delegatedSubnetResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.Network/virtualNetworks/examplevirtualnetwork/subnets/examplesubnet",
      "privateDnsZoneArmResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.Network/privateDnsZones/exampleprivatednszone.private.postgres.database"
    },
    "highAvailability": {
      "mode": "ZoneRedundant"
    }
  },
  "tags": {
    "VNetServer": "1"
  }
}

Örnek yanıt

{
  "sku": {
    "name": "Standard_D4ds_v5",
    "tier": "GeneralPurpose"
  },
  "systemData": {
    "createdAt": "2024-08-01T18:30:22.123456Z"
  },
  "properties": {
    "replica": {
      "role": "Primary",
      "capacity": 5
    },
    "storage": {
      "type": "",
      "iops": 2300,
      "tier": "P20",
      "storageSizeGB": 512,
      "autoGrow": "Disabled"
    },
    "network": {
      "publicNetworkAccess": "Disabled",
      "delegatedSubnetResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.Network/virtualNetworks/examplevirtualnetwork/subnets/examplesubnet",
      "privateDnsZoneArmResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.Network/privateDnsZones/exampleprivatednszone.private.postgres.database.azure.com"
    },
    "dataEncryption": {
      "type": "SystemManaged"
    },
    "authConfig": {
      "activeDirectoryAuth": "Disabled",
      "passwordAuth": "Enabled"
    },
    "fullyQualifiedDomainName": "exampleserver.postgres.database.azure.com",
    "version": "16",
    "minorVersion": "8",
    "administratorLogin": "administratorlogin",
    "state": "Ready",
    "availabilityZone": "1",
    "backup": {
      "backupRetentionDays": 7,
      "geoRedundantBackup": "Enabled",
      "earliestRestoreDate": "2024-08-01T18:35:22.123456Z"
    },
    "highAvailability": {
      "mode": "ZoneRedundant",
      "state": "Healthy",
      "standbyAvailabilityZone": "2"
    },
    "maintenanceWindow": {
      "customWindow": "Disabled",
      "dayOfWeek": 0,
      "startHour": 0,
      "startMinute": 0
    },
    "replicationRole": "Primary",
    "replicaCapacity": 5
  },
  "location": "westus",
  "tags": {
    "VnetServer": "1"
  },
  "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver",
  "name": "exampleserver",
  "type": "Microsoft.DBforPostgreSQL/flexibleServers"
}
{
  "sku": {
    "name": "Standard_D4ds_v5",
    "tier": "GeneralPurpose"
  },
  "systemData": {
    "createdAt": "2024-08-01T18:30:22.123456Z"
  },
  "properties": {
    "replica": {
      "role": "Primary",
      "capacity": 5
    },
    "storage": {
      "type": "",
      "iops": 2300,
      "tier": "P20",
      "storageSizeGB": 512,
      "autoGrow": "Disabled"
    },
    "network": {
      "publicNetworkAccess": "Disabled",
      "delegatedSubnetResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.Network/virtualNetworks/examplevirtualnetwork/subnets/examplesubnet",
      "privateDnsZoneArmResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.Network/privateDnsZones/exampleprivatednszone.private.postgres.database.azure.com"
    },
    "dataEncryption": {
      "type": "SystemManaged"
    },
    "authConfig": {
      "activeDirectoryAuth": "Disabled",
      "passwordAuth": "Enabled"
    },
    "fullyQualifiedDomainName": "exampleserver.postgres.database.azure.com",
    "version": "16",
    "minorVersion": "8",
    "administratorLogin": "administratorlogin",
    "state": "Ready",
    "availabilityZone": "1",
    "backup": {
      "backupRetentionDays": 7,
      "geoRedundantBackup": "Enabled",
      "earliestRestoreDate": "2024-08-01T18:35:22.123456Z"
    },
    "highAvailability": {
      "mode": "ZoneRedundant",
      "state": "Healthy",
      "standbyAvailabilityZone": "2"
    },
    "maintenanceWindow": {
      "customWindow": "Disabled",
      "dayOfWeek": 0,
      "startHour": 0,
      "startMinute": 0
    },
    "replicationRole": "Primary",
    "replicaCapacity": 5
  },
  "location": "westus",
  "tags": {
    "VnetServer": "1"
  },
  "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver",
  "name": "exampleserver",
  "type": "Microsoft.DBforPostgreSQL/flexibleServers"
}

Create a read replica of an existing flexible server.

Örnek isteği

PUT https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver?api-version=2024-08-01

{
  "location": "westus",
  "identity": {
    "userAssignedIdentities": {
      "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleprimaryidentity": {}
    },
    "type": "UserAssigned"
  },
  "properties": {
    "createMode": "Replica",
    "sourceServerResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/examplesourceserver",
    "pointInTimeUTC": "2024-08-01T18:35:22.123456Z",
    "dataEncryption": {
      "type": "AzureKeyVault",
      "primaryKeyURI": "https://exampleprimarykeyvault.vault.azure.net/keys/examplekey/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
      "primaryUserAssignedIdentityId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleprimaryidentity",
      "geoBackupKeyURI": "",
      "geoBackupUserAssignedIdentityId": ""
    }
  }
}

Örnek yanıt

{
  "sku": {
    "name": "Standard_D4ds_v5",
    "tier": "GeneralPurpose"
  },
  "identity": {
    "userAssignedIdentities": {
      "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleprimaryidentity": {
        "principalId": "pppppppp-pppp-pppp-pppp-pppppppppppp",
        "clientId": "cccccccc-cccc-cccc-cccc-cccccccccccc"
      }
    },
    "type": "UserAssigned",
    "tenantId": "cccccccc-cccc-cccc-cccc-cccccccccccc"
  },
  "properties": {
    "fullyQualifiedDomainName": "exampleserver.postgres.database.azure.com",
    "version": "16",
    "minorVersion": "8",
    "administratorLogin": "administratorlogin",
    "state": "Ready",
    "availabilityZone": "2",
    "storage": {
      "storageSizeGB": 512,
      "autoGrow": "Disabled",
      "tier": "P20",
      "iops": 2300
    },
    "dataEncryption": {
      "type": "AzureKeyVault",
      "primaryKeyURI": "https://exampleprimarykeyvault.vault.azure.net/keys/examplekey/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
      "primaryUserAssignedIdentityId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleprimaryidentity",
      "primaryEncryptionKeyStatus": "Valid"
    },
    "authConfig": {
      "activeDirectoryAuth": "Disabled",
      "passwordAuth": "Enabled"
    },
    "backup": {
      "backupRetentionDays": 7,
      "geoRedundantBackup": "Disabled",
      "earliestRestoreDate": "2024-08-01T18:40:22.123456Z"
    },
    "network": {
      "publicNetworkAccess": "Enabled"
    },
    "highAvailability": {
      "mode": "Disabled",
      "state": "NotEnabled"
    },
    "maintenanceWindow": {
      "customWindow": "Disabled",
      "dayOfWeek": 0,
      "startHour": 0,
      "startMinute": 0
    },
    "sourceServerResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/examplesourceserver",
    "replicationRole": "AsyncReplica",
    "replicaCapacity": 0,
    "replica": {
      "role": "AsyncReplica",
      "capacity": 0,
      "replicationState": "Active"
    }
  },
  "location": "westus",
  "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver",
  "name": "exampleserver",
  "type": "Microsoft.DBforPostgreSQL/flexibleServers"
}
{
  "sku": {
    "name": "Standard_D4ds_v5",
    "tier": "GeneralPurpose"
  },
  "identity": {
    "userAssignedIdentities": {
      "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleprimaryidentity": {
        "principalId": "pppppppp-pppp-pppp-pppp-pppppppppppp",
        "clientId": "cccccccc-cccc-cccc-cccc-cccccccccccc"
      }
    },
    "type": "UserAssigned",
    "tenantId": "cccccccc-cccc-cccc-cccc-cccccccccccc"
  },
  "properties": {
    "fullyQualifiedDomainName": "exampleserver.postgres.database.azure.com",
    "version": "16",
    "minorVersion": "8",
    "administratorLogin": "administratorlogin",
    "state": "Ready",
    "availabilityZone": "2",
    "storage": {
      "storageSizeGB": 512,
      "autoGrow": "Disabled",
      "tier": "P20",
      "iops": 2300
    },
    "dataEncryption": {
      "type": "AzureKeyVault",
      "primaryKeyURI": "https://exampleprimarykeyvault.vault.azure.net/keys/examplekey/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
      "primaryUserAssignedIdentityId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.ManagedIdentity/userAssignedIdentities/exampleprimaryidentity",
      "primaryEncryptionKeyStatus": "Valid"
    },
    "authConfig": {
      "activeDirectoryAuth": "Disabled",
      "passwordAuth": "Enabled"
    },
    "backup": {
      "backupRetentionDays": 7,
      "geoRedundantBackup": "Disabled",
      "earliestRestoreDate": "2024-08-01T18:40:22.123456Z"
    },
    "network": {
      "publicNetworkAccess": "Enabled"
    },
    "highAvailability": {
      "mode": "Disabled",
      "state": "NotEnabled"
    },
    "maintenanceWindow": {
      "customWindow": "Disabled",
      "dayOfWeek": 0,
      "startHour": 0,
      "startMinute": 0
    },
    "sourceServerResourceId": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/examplesourceserver",
    "replicationRole": "AsyncReplica",
    "replicaCapacity": 0,
    "replica": {
      "role": "AsyncReplica",
      "capacity": 0,
      "replicationState": "Active"
    }
  },
  "location": "westus",
  "id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/exampleresourcegroup/providers/Microsoft.DBforPostgreSQL/flexibleServers/exampleserver",
  "name": "exampleserver",
  "type": "Microsoft.DBforPostgreSQL/flexibleServers"
}

Tanımlar

Name Description
activeDirectoryAuthEnum

Sunucunun Microsoft Entra kimlik doğrulamasını destekleyip desteklemediğini gösterir.

ArmServerKeyType

Esnek bir sunucu tarafından kullanılan veri şifreleme türü.

AuthConfig

Esnek bir sunucunun kimlik doğrulama yapılandırma özellikleri.

AzureManagedDiskPerformanceTiers

Esnek bir sunucunun depolama katmanı.

Backup

Esnek bir sunucunun yedekleme özellikleri.

createdByType

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

CreateMode

Yeni bir esnek sunucunun oluşturma modu.

DataEncryption

Esnek bir sunucunun veri şifreleme özellikleri.

ErrorAdditionalInfo

Kaynak yönetimi hatası ek bilgileri.

ErrorDetail

Hata ayrıntısı.

ErrorResponse

Hata yanıtı

GeoRedundantBackupEnum

Sunucunun coğrafi olarak yedekli yedeklemeler oluşturacak şekilde yapılandırılıp yapılandırılmadığını gösterir.

HighAvailability

Esnek bir sunucunun yüksek kullanılabilirlik özellikleri.

HighAvailabilityMode

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

IdentityType

Esnek bir sunucuyla ilişkilendirilmiş kimlik türleri.

keyStatusEnum

Sunucuyla ilişkili birincil depolamayı şifrelemek için müşteri tarafından yönetilen anahtara dayalı veri şifrelemesi ile yapılandırılmış esnek bir sunucu tarafından kullanılan anahtarın durumu.

MaintenanceWindow

Esnek bir sunucunun bakım penceresi özellikleri.

Network

Esnek bir sunucunun ağ özellikleri. Yalnızca sunucunuzun müşteri tarafından sağlanan bir sanal ağa tümleştirilmesini istiyorsanız gereklidir.

passwordAuthEnum

Sunucunun parola tabanlı kimlik doğrulamayı destekleyip desteklemediğini gösterir.

PrivateEndpoint

Özel uç nokta kaynağı.

PrivateEndpointConnection

Belirtilen esnek sunucuyla ilişkili özel uç nokta bağlantılarının listesi.

PrivateEndpointConnectionProvisioningState

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

PrivateEndpointServiceConnectionStatus

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

PrivateLinkServiceConnectionState

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

ReadReplicaPromoteMode

Okuma çoğaltmasına uygulanacak işlem türü. Bu özellik yalnızca yazılır. Tek başına, okuma çoğaltmasının tek başına bir sunucuya yükseltileceği ve çoğaltma kümesinden tamamen bağımsız bir varlık haline geleceği anlamına gelir. Geçiş, okuma çoğaltmasının birincil sunucuyla rol oynayacağı anlamına gelir.

Replica

Esnek bir sunucunun okuma çoğaltma özellikleri. Yalnızca bir sunucuyu yükseltmek istemeniz durumunda gereklidir.

ReplicationPromoteOption

promoteMode özelliğinde belirtilen işlemi işlerken kullanılacak veri eşitleme seçeneği Bu özellik yalnızca yazılır. Planlanmış, işlemin işlemi başlatmadan önce okuma çoğaltmasındaki verilerin kaynak sunucusuyla tam olarak eşitlenmesini bekleyeceği anlamına gelir. Zorlandı, işlemin işlemi başlatmadan önce okuma çoğaltmasındaki verilerin kaynak sunucusuyla eşitlenmesini beklemeyeceği anlamına gelir.

ReplicationRole

Çoğaltma kümesinde sunucunun rolü.

ReplicationState

Okuma amaçlı çoğaltmanın çoğaltma durumunu gösterir. Bu özellik yalnızca hedef esnek sunucu bir okuma çoğaltması olduğunda döndürülür. Olası değerler Etkin, Bozuk, Yakalama, Sağlama, Yeniden Yapılandırma ve Güncelleştirme'dir

Server

Esnek sunucu.

ServerHAState

Yüksek kullanılabilirlik SameZone veya ZoneRedredundant olarak ayarlandığında oluşturulan bekleme sunucusunun olası durumları.

ServerPublicNetworkAccessState

Genel ağ erişiminin etkinleştirilip etkinleştirilmediğini gösterir.

ServerState

Esnek bir sunucunun olası durumları.

ServerVersion

PostgreSQL veritabanı altyapısının ana sürümü.

Sku

Esnek bir sunucunun işlem katmanı ve boyutu.

SkuTier

Esnek bir sunucuya atanan işlem katmanı.

Storage

Esnek bir sunucunun depolama özellikleri.

StorageAutoGrow

Kullanılabilir alan sıfıra yaklaştığında ve koşullar depolama boyutunun otomatik olarak büyümesine izin verdiğinde, esnek bir sunucunun depolama boyutunun otomatik olarak büyümesini etkinleştirmek veya devre dışı bırakmak için bayrak kullanın.

StorageType

Esnek bir sunucuya atanan depolama türü. İzin verilen değerler Premium_LRS veya PremiumV2_LRS'dir. Belirtilmezse, varsayılan olarak Premium_LRS.

systemData

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

UserAssignedIdentity

Esnek sunucuya atanan kullanıcı tarafından atanan yönetilen kimlikler.

UserIdentity

Esnek bir sunucuyla ilişkilendirilmiş kullanıcı tarafından atanan yönetilen kimlik.

activeDirectoryAuthEnum

Sunucunun Microsoft Entra kimlik doğrulamasını destekleyip desteklemediğini gösterir.

Değer Description
Enabled
Disabled

ArmServerKeyType

Esnek bir sunucu tarafından kullanılan veri şifreleme türü.

Değer Description
SystemManaged
AzureKeyVault

AuthConfig

Esnek bir sunucunun kimlik doğrulama yapılandırma özellikleri.

Name Tür Default value Description
activeDirectoryAuth

activeDirectoryAuthEnum

Sunucunun Microsoft Entra kimlik doğrulamasını destekleyip desteklemediğini gösterir.

passwordAuth

passwordAuthEnum

Enabled

Sunucunun parola tabanlı kimlik doğrulamayı destekleyip desteklemediğini gösterir.

tenantId

string

Temsilci olarak atanan kaynağın kiracısının tanımlayıcısı.

AzureManagedDiskPerformanceTiers

Esnek bir sunucunun depolama katmanı.

Değer Description
P1
P2
P3
P4
P6
P10
P15
P20
P30
P40
P50
P60
P70
P80

Backup

Esnek bir sunucunun yedekleme özellikleri.

Name Tür Default value Description
backupRetentionDays

integer (int32)

7

Esnek sunucu için yedekleme saklama günleri.

earliestRestoreDate

string (date-time)

Esnek bir sunucu için en erken geri yükleme noktası zamanı (ISO8601 biçimi).

geoRedundantBackup

GeoRedundantBackupEnum

Disabled

Sunucunun coğrafi olarak yedekli yedeklemeler oluşturacak şekilde yapılandırılıp yapılandırılmadığını gösterir.

createdByType

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

Değer Description
User
Application
ManagedIdentity
Key

CreateMode

Yeni bir esnek sunucunun oluşturma modu.

Değer Description
Default
Create
Update
PointInTimeRestore
GeoRestore
Replica
ReviveDropped

DataEncryption

Esnek bir sunucunun veri şifreleme özellikleri.

Name Tür Description
geoBackupEncryptionKeyStatus

keyStatusEnum

Coğrafi olarak yedekli yedeklemeleri destekleyecek şekilde yapılandırıldığında sunucuyla ilişkili coğrafi olarak yedekli depolamayı şifrelemek için müşteri tarafından yönetilen anahtara dayalı veri şifrelemesi ile yapılandırılmış esnek bir sunucu tarafından kullanılan anahtarın durumu.

geoBackupKeyURI

string

Coğrafi olarak yedekli yedeklemeleri destekleyecek şekilde yapılandırılmış esnek bir sunucuyla ilişkili coğrafi olarak yedekli depolamanın veri şifrelemesi için Azure Key Vault anahtara erişmek için kullanılan kullanıcı tarafından atanan yönetilen kimliğin tanımlayıcısı.

geoBackupUserAssignedIdentityId

string

Coğrafi olarak yedekli yedeklemeleri destekleyecek şekilde yapılandırılmış esnek bir sunucuyla ilişkili coğrafi olarak yedekli depolamanın veri şifrelemesi için Azure Key Vault anahtara erişmek için kullanılan kullanıcı tarafından atanan yönetilen kimliğin tanımlayıcısı.

primaryEncryptionKeyStatus

keyStatusEnum

Sunucuyla ilişkili birincil depolamayı şifrelemek için müşteri tarafından yönetilen anahtara dayalı veri şifrelemesi ile yapılandırılmış esnek bir sunucu tarafından kullanılan anahtarın durumu.

primaryKeyURI

string

Esnek bir sunucuyla ilişkili birincil depolamanın veri şifrelemesi için kullanılan Azure Key Vault anahtarın URI'si.

primaryUserAssignedIdentityId

string

Esnek bir sunucuyla ilişkili birincil depolamanın veri şifrelemesi için Azure Key Vault anahtara erişmek için kullanılan kullanıcı tarafından atanan yönetilen kimliğin tanımlayıcısı.

type

ArmServerKeyType

Esnek bir sunucu tarafından kullanılan veri şifreleme türü.

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.

GeoRedundantBackupEnum

Sunucunun coğrafi olarak yedekli yedeklemeler oluşturacak şekilde yapılandırılıp yapılandırılmadığını gösterir.

Değer Description
Enabled
Disabled

HighAvailability

Esnek bir sunucunun yüksek kullanılabilirlik özellikleri.

Name Tür Default value Description
mode

HighAvailabilityMode

Disabled

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

standbyAvailabilityZone

string

Yüksek kullanılabilirlik SameZone veya ZoneRedredundant olarak ayarlandığında oluşturulan bekleme sunucusuyla ilişkili kullanılabilirlik alanı.

state

ServerHAState

Yüksek kullanılabilirlik SameZone veya ZoneRedredundant olarak ayarlandığında oluşturulan bekleme sunucusunun olası durumları.

HighAvailabilityMode

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

Değer Description
Disabled
ZoneRedundant
SameZone

IdentityType

Esnek bir sunucuyla ilişkilendirilmiş kimlik türleri.

Değer Description
None
UserAssigned
SystemAssigned
SystemAssigned,UserAssigned

keyStatusEnum

Sunucuyla ilişkili birincil depolamayı şifrelemek için müşteri tarafından yönetilen anahtara dayalı veri şifrelemesi ile yapılandırılmış esnek bir sunucu tarafından kullanılan anahtarın durumu.

Değer Description
Valid
Invalid

MaintenanceWindow

Esnek bir sunucunun bakım penceresi özellikleri.

Name Tür Default value Description
customWindow

string

Disabled

Özel pencerenin etkin mi yoksa devre dışı mı olduğunu gösterir.

dayOfWeek

integer (int32)

0

Bakım penceresi için kullanılacak haftanın günü.

startHour

integer (int32)

0

Bakım penceresi için kullanılacak başlangıç saati.

startMinute

integer (int32)

0

Bakım penceresi için kullanılacak başlangıç dakikası.

Network

Esnek bir sunucunun ağ özellikleri. Yalnızca sunucunuzun müşteri tarafından sağlanan bir sanal ağa tümleştirilmesini istiyorsanız gereklidir.

Name Tür Description
delegatedSubnetResourceId

string

Temsilci atanan alt ağın kaynak tanımlayıcısı. Sunucunun kendi sanal ağınıza tümleştirilmesini istemeniz durumunda yeni bir sunucu oluşturulurken gereklidir. Bir güncelleştirme işlemi için, yalnızca özel DNS bölgesi için atanan değeri değiştirmek istediğinizde bu özelliği sağlamanız gerekir.

privateDnsZoneArmResourceId

string

Özel DNS bölgesinin tanımlayıcısı. Sunucunun kendi sanal ağınıza tümleştirilmesini istemeniz durumunda yeni bir sunucu oluşturulurken gereklidir. Bir güncelleştirme işlemi için, yalnızca özel DNS bölgesi için atanan değeri değiştirmek istediğinizde bu özelliği sağlamanız gerekir.

publicNetworkAccess

ServerPublicNetworkAccessState

Genel ağ erişiminin etkinleştirilip etkinleştirilmediğini gösterir.

passwordAuthEnum

Sunucunun parola tabanlı kimlik doğrulamayı destekleyip desteklemediğini gösterir.

Değer Description
Enabled
Disabled

PrivateEndpoint

Özel uç nokta kaynağı.

Name Tür Description
id

string

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

PrivateEndpointConnection

Belirtilen esnek sunucuyla ilişkili özel uç nokta bağlantılarının listesi.

Name Tür Description
id

string (arm-id)

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

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

type

string

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

PrivateEndpointConnectionProvisioningState

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

Değer Description
Succeeded
Creating
Deleting
Failed

PrivateEndpointServiceConnectionStatus

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

Değer Description
Pending
Approved
Rejected

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ındaki değişikliklerin tüketicide herhangi bir güncelleştirme gerektirip gerektirmediğini belirten bir ileti.

description

string

Bağlantının onaylanması/reddedilmesinin nedeni.

status

PrivateEndpointServiceConnectionStatus

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

ReadReplicaPromoteMode

Okuma çoğaltmasına uygulanacak işlem türü. Bu özellik yalnızca yazılır. Tek başına, okuma çoğaltmasının tek başına bir sunucuya yükseltileceği ve çoğaltma kümesinden tamamen bağımsız bir varlık haline geleceği anlamına gelir. Geçiş, okuma çoğaltmasının birincil sunucuyla rol oynayacağı anlamına gelir.

Değer Description
standalone
switchover

Replica

Esnek bir sunucunun okuma çoğaltma özellikleri. Yalnızca bir sunucuyu yükseltmek istemeniz durumunda gereklidir.

Name Tür Description
capacity

integer (int32)

Esnek bir sunucu için izin verilen en fazla okuma çoğaltması sayısı.

promoteMode

ReadReplicaPromoteMode

Okuma çoğaltmasına uygulanacak işlem türü. Bu özellik yalnızca yazılır. Tek başına, okuma çoğaltmasının tek başına bir sunucuya yükseltileceği ve çoğaltma kümesinden tamamen bağımsız bir varlık haline geleceği anlamına gelir. Geçiş, okuma çoğaltmasının birincil sunucuyla rol oynayacağı anlamına gelir.

promoteOption

ReplicationPromoteOption

promoteMode özelliğinde belirtilen işlemi işlerken kullanılacak veri eşitleme seçeneği Bu özellik yalnızca yazılır. Planlanmış, işlemin işlemi başlatmadan önce okuma çoğaltmasındaki verilerin kaynak sunucusuyla tam olarak eşitlenmesini bekleyeceği anlamına gelir. Zorlandı, işlemin işlemi başlatmadan önce okuma çoğaltmasındaki verilerin kaynak sunucusuyla eşitlenmesini beklemeyeceği anlamına gelir.

replicationState

ReplicationState

Okuma amaçlı çoğaltmanın çoğaltma durumunu gösterir. Bu özellik yalnızca hedef esnek sunucu bir okuma çoğaltması olduğunda döndürülür. Olası değerler Etkin, Bozuk, Yakalama, Sağlama, Yeniden Yapılandırma ve Güncelleştirme'dir

role

ReplicationRole

Çoğaltma kümesinde sunucunun rolü.

ReplicationPromoteOption

promoteMode özelliğinde belirtilen işlemi işlerken kullanılacak veri eşitleme seçeneği Bu özellik yalnızca yazılır. Planlanmış, işlemin işlemi başlatmadan önce okuma çoğaltmasındaki verilerin kaynak sunucusuyla tam olarak eşitlenmesini bekleyeceği anlamına gelir. Zorlandı, işlemin işlemi başlatmadan önce okuma çoğaltmasındaki verilerin kaynak sunucusuyla eşitlenmesini beklemeyeceği anlamına gelir.

Değer Description
planned
forced

ReplicationRole

Çoğaltma kümesinde sunucunun rolü.

Değer Description
None
Primary
AsyncReplica
GeoAsyncReplica

ReplicationState

Okuma amaçlı çoğaltmanın çoğaltma durumunu gösterir. Bu özellik yalnızca hedef esnek sunucu bir okuma çoğaltması olduğunda döndürülür. Olası değerler Etkin, Bozuk, Yakalama, Sağlama, Yeniden Yapılandırma ve Güncelleştirme'dir

Değer Description
Active
Catchup
Provisioning
Updating
Broken
Reconfiguring

Server

Esnek sunucu.

Name Tür Description
id

string (arm-id)

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

identity

UserAssignedIdentity

Esnek sunucuya atanan kullanıcı tarafından atanan yönetilen kimlikler.

location

string

Kaynağın bulunduğu coğrafi konum

name

string

Kaynağın adı

properties.administratorLogin

string

PostgreSQL örneğinize atanan ilk parola tabanlı yönetici olarak atanan oturum açma adının adı. Bir sunucuda parola tabanlı kimlik doğrulamasını ilk kez etkinleştirdiğinizde belirtilmelidir. Belirli bir değere ayarlandıktan sonra, sunucunun ömrünün geri kalanı boyunca değiştirilemez. Parola tabanlı kimlik doğrulamayı etkinleştirilmiş olan bir sunucuda devre dışı bırakırsanız, bu parola tabanlı rol silinmez.

properties.administratorLoginPassword

string (password)

Yönetici girişine atanan şifre. Parola kimlik doğrulaması etkin olduğu sürece, bu parola herhangi bir zamanda değiştirilebilir.

properties.authConfig

AuthConfig

Esnek bir sunucunun kimlik doğrulama yapılandırma özellikleri.

properties.availabilityZone

string

Esnek bir sunucunun kullanılabilirlik alanı.

properties.backup

Backup

Esnek bir sunucunun yedekleme özellikleri.

properties.createMode

CreateMode

Yeni bir esnek sunucunun oluşturma modu.

properties.dataEncryption

DataEncryption

Esnek bir sunucunun veri şifreleme özellikleri.

properties.fullyQualifiedDomainName

string

Esnek bir sunucunun tam etki alanı adı.

properties.highAvailability

HighAvailability

Esnek bir sunucunun yüksek kullanılabilirlik özellikleri.

properties.maintenanceWindow

MaintenanceWindow

Esnek bir sunucunun bakım penceresi özellikleri.

properties.minorVersion

string

PostgreSQL veritabanı altyapısının ikincil sürümü.

properties.network

Network

Esnek bir sunucunun ağ özellikleri. Yalnızca sunucunuzun müşteri tarafından sağlanan bir sanal ağa tümleştirilmesini istiyorsanız gereklidir.

properties.pointInTimeUTC

string (date-time)

Yeni esnek sunucuda geri yüklemek istediğiniz yedeğin oluşturulma zamanı (ISO8601 biçiminde). 'createMode' 'PointInTimeRestore', 'GeoRestore' veya 'ReviveDropped' olduğunda gereklidir.

properties.privateEndpointConnections

PrivateEndpointConnection[]

Belirtilen esnek sunucuyla ilişkili özel uç nokta bağlantılarının listesi.

properties.replica

Replica

Esnek bir sunucunun okuma çoğaltma özellikleri. Yalnızca bir sunucuyu yükseltmek istemeniz durumunda gereklidir.

properties.replicaCapacity

integer (int32)

Esnek bir sunucu için izin verilen en fazla okuma çoğaltması sayısı.

properties.replicationRole

ReplicationRole

Çoğaltma kümesinde sunucunun rolü.

properties.sourceServerResourceId

string

Yeni esnek sunucunun kaynağı olarak kullanılacak esnek sunucunun tanımlayıcısı. 'createMode' 'PointInTimeRestore', 'GeoRestore', 'Replica' veya 'ReviveDropped' olduğunda gereklidir. Bu özellik yalnızca hedef esnek sunucu bir okuma çoğaltması olduğunda döndürülür.

properties.state

ServerState

Esnek bir sunucunun olası durumları.

properties.storage

Storage

Esnek bir sunucunun depolama özellikleri.

properties.version

ServerVersion

PostgreSQL veritabanı altyapısının ana sürümü.

sku

Sku

Esnek bir sunucunun işlem katmanı ve boyutu.

systemData

systemData

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

tags

object

Kaynak etiketleri.

type

string

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

ServerHAState

Yüksek kullanılabilirlik SameZone veya ZoneRedredundant olarak ayarlandığında oluşturulan bekleme sunucusunun olası durumları.

Değer Description
NotEnabled
CreatingStandby
ReplicatingData
FailingOver
Healthy
RemovingStandby

ServerPublicNetworkAccessState

Genel ağ erişiminin etkinleştirilip etkinleştirilmediğini gösterir.

Değer Description
Enabled
Disabled

ServerState

Esnek bir sunucunun olası durumları.

Değer Description
Ready
Dropping
Disabled
Starting
Stopping
Stopped
Updating

ServerVersion

PostgreSQL veritabanı altyapısının ana sürümü.

Değer Description
16
15
14
13
12
11

Sku

Esnek bir sunucunun işlem katmanı ve boyutu.

Name Tür Description
name

string

Bilinen ad: esnek bir sunucuya atanan belirli bir işlem boyutu.

tier

SkuTier

Esnek bir sunucuya atanan işlem katmanı.

SkuTier

Esnek bir sunucuya atanan işlem katmanı.

Değer Description
Burstable
GeneralPurpose
MemoryOptimized

Storage

Esnek bir sunucunun depolama özellikleri.

Name Tür Description
autoGrow

StorageAutoGrow

Kullanılabilir alan sıfıra yaklaştığında ve koşullar depolama boyutunun otomatik olarak büyümesine izin verdiğinde, esnek bir sunucunun depolama boyutunun otomatik olarak büyümesini etkinleştirmek veya devre dışı bırakmak için bayrak kullanın.

iops

integer (int32)

Depolama için desteklenen en yüksek IOPS. Depolama türü PremiumV2_LRS olduğunda gereklidir.

storageSizeGB

integer (int32)

Esnek bir sunucuya atanan depolama boyutu.

throughput

integer (int32)

Depolama için desteklenen en yüksek aktarım hızı. Depolama türü PremiumV2_LRS olduğunda gereklidir.

tier

AzureManagedDiskPerformanceTiers

Esnek bir sunucunun depolama katmanı.

type

StorageType

Esnek bir sunucuya atanan depolama türü. İzin verilen değerler Premium_LRS veya PremiumV2_LRS'dir. Belirtilmezse, varsayılan olarak Premium_LRS.

StorageAutoGrow

Kullanılabilir alan sıfıra yaklaştığında ve koşullar depolama boyutunun otomatik olarak büyümesine izin verdiğinde, esnek bir sunucunun depolama boyutunun otomatik olarak büyümesini etkinleştirmek veya devre dışı bırakmak için bayrak kullanın.

Değer Description
Enabled
Disabled

StorageType

Esnek bir sunucuya atanan depolama türü. İzin verilen değerler Premium_LRS veya PremiumV2_LRS'dir. Belirtilmezse, varsayılan olarak Premium_LRS.

Değer Description
Premium_LRS
PremiumV2_LRS

systemData

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

Name Tür Description
createdAt

string (date-time)

Kaynak oluşturma (UTC) zaman damgası.

createdBy

string

Kaynağı oluşturan kimlik.

createdByType

createdByType

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

lastModifiedAt

string (date-time)

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 kimlik türü.

UserAssignedIdentity

Esnek sunucuya atanan kullanıcı tarafından atanan yönetilen kimlikler.

Name Tür Description
principalId

string

Kullanıcı tarafından atanan yönetilen kimlikle ilişkili hizmet sorumlusunun nesnesinin tanımlayıcısı.

tenantId

string

Esnek bir sunucunun kiracısının tanımlayıcısı.

type

IdentityType

Esnek bir sunucuyla ilişkilendirilmiş kimlik türleri.

userAssignedIdentities

<string,  UserIdentity>

Kullanıcı tarafından atanan yönetilen kimliklerin haritası.

UserIdentity

Esnek bir sunucuyla ilişkilendirilmiş kullanıcı tarafından atanan yönetilen kimlik.

Name Tür Description
clientId

string

Kullanıcı tarafından atanan yönetilen kimlikle ilişkili hizmet sorumlusunun istemcisinin tanımlayıcısı.

principalId

string

Kullanıcı tarafından atanan yönetilen kimlikle ilişkili hizmet sorumlusunun nesnesinin tanımlayıcısı.