CockroachDB · Schema

UpdateServiceAccountSpecification

Specification for updating a service account.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
name string New name for the service account.
description string New description for the service account.
View JSON Schema on GitHub

JSON Schema

cockroachdb-updateserviceaccountspecification-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/UpdateServiceAccountSpecification",
  "title": "UpdateServiceAccountSpecification",
  "type": "object",
  "description": "Specification for updating a service account.",
  "properties": {
    "name": {
      "type": "string",
      "description": "New name for the service account."
    },
    "description": {
      "type": "string",
      "description": "New description for the service account."
    }
  }
}