Configurations - Create Or Update
Updates een configuratie van een server.
PUT https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DBforPostgreSQL/servers/{serverName}/configurations/{configurationName}?api-version=2017-12-01
URI-parameters
Name | In | Vereist | Type | Description |
---|---|---|---|---|
configuration
|
path | True |
string |
De naam van de serverconfiguratie. |
resource
|
path | True |
string |
De naam van de resourcegroep. De naam is niet hoofdlettergevoelig. |
server
|
path | True |
string |
De naam van de server. |
subscription
|
path | True |
string |
De id van het doelabonnement. |
api-version
|
query | True |
string |
De API-versie die voor deze bewerking moet worden gebruikt. |
Aanvraagbody
Name | Type | Description |
---|---|---|
properties.source |
string |
Bron van de configuratie. |
properties.value |
string |
Waarde van de configuratie. |
Antwoorden
Name | Type | Description |
---|---|---|
200 OK |
OK |
|
202 Accepted |
Geaccepteerd |
|
Other Status Codes |
Foutreactie waarin wordt beschreven waarom de bewerking is mislukt. |
Beveiliging
azure_auth
Azure Active Directory OAuth2-stroom
Type:
oauth2
Stroom:
implicit
Autorisatie-URL:
https://login.microsoftonline.com/common/oauth2/authorize
Bereiken
Name | Description |
---|---|
user_impersonation | uw gebruikersaccount imiteren |
Voorbeelden
ConfigurationCreateOrUpdate
Voorbeeldaanvraag
PUT https://management.azure.com/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforPostgreSQL/servers/testserver/configurations/array_nulls?api-version=2017-12-01
{
"properties": {
"value": "off",
"source": "user-override"
}
}
Voorbeeldrespons
{
"properties": {
"value": "off",
"description": "Enable input of NULL elements in arrays.",
"defaultValue": "on",
"dataType": "Boolean",
"allowedValues": "on,off",
"source": "user-override"
},
"id": "/subscriptions/ffffffff-ffff-ffff-ffff-ffffffffffff/resourceGroups/TestGroup/providers/Microsoft.DBforPostgreSQL/servers/testserver/configurations/array_nulls",
"name": "array_nulls",
"type": "Microsoft.DBforPostgreSQL/servers/configurations"
}
Definities
Name | Description |
---|---|
Cloud |
Een foutreactie van de Batch-service. |
Configuration |
Vertegenwoordigt een configuratie. |
Error |
Aanvullende informatie over de resourcebeheerfout. |
Error |
Foutreactie |
CloudError
Een foutreactie van de Batch-service.
Name | Type | Description |
---|---|---|
error |
Foutreactie |
Configuration
Vertegenwoordigt een configuratie.
Name | Type | Description |
---|---|---|
id |
string |
Volledig gekwalificeerde resource-id voor de resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName} |
name |
string |
De naam van de resource |
properties.allowedValues |
string |
Toegestane waarden van de configuratie. |
properties.dataType |
string |
Gegevenstype van de configuratie. |
properties.defaultValue |
string |
Standaardwaarde van de configuratie. |
properties.description |
string |
Beschrijving van de configuratie. |
properties.source |
string |
Bron van de configuratie. |
properties.value |
string |
Waarde van de configuratie. |
type |
string |
Het type resource. Bijvoorbeeld 'Microsoft.Compute/virtualMachines' of 'Microsoft.Storage/storageAccounts' |
ErrorAdditionalInfo
Aanvullende informatie over de resourcebeheerfout.
Name | Type | Description |
---|---|---|
info |
object |
De aanvullende informatie. |
type |
string |
Het type aanvullende informatie. |
ErrorResponse
Foutreactie
Name | Type | Description |
---|---|---|
additionalInfo |
Aanvullende informatie over de fout. |
|
code |
string |
De foutcode. |
details |
De foutdetails. |
|
message |
string |
Het foutbericht. |
target |
string |
Het foutdoel. |