latestOpenAPI 3.0.02026-08-10221235717.8 KB
e21ad140ec3c
public
ResourceAccount
Update a Resource Account.
patch/orgs/{orgId}/resources/accounts/{accId}
Path parameters
orgIdstring required
The Organization ID.
accIdstring required
The Resource Account ID.
Query parameters
dry_runboolean
Validate the request but do not persist the change.
check_credentialboolean
Validate that the Account credential authenticates successfully.
Request body
Example request
{
"credentials": {
"password": "***",
"username": "***"
},
"name": "GCP Dev Postgres"
}Response
The updated Resource Account details.
Example response
{
"created_at": "2020-05-22T14:58:07Z",
"created_by": "test-user",
"id": "gcp-dev-postgres",
"is_default": false,
"is_used": true,
"name": "GCP Dev Postgres",
"type": "gcp"
}