hyperdrive_hyperdrive-origin-with-secrets

APIs.ioEngineeringPlatform

Properties

Name Type Description
access_client_secret string The Client Secret of the Access token to use when connecting to the origin database
password string The password required to access your origin database. This value is write-only and never returned by the API.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-hyperdrive-hyperdrive-origin-with-secrets-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/hyperdrive_hyperdrive-origin-with-secrets",
  "title": "hyperdrive_hyperdrive-origin-with-secrets",
  "allOf": [
    {
      "$ref": "#/components/schemas/hyperdrive_hyperdrive-origin"
    }
  ],
  "properties": {
    "access_client_secret": {
      "description": "The Client Secret of the Access token to use when connecting to the origin database",
      "example": "0123456789abcdef0123456789abcdef0123456789abcdef0123456789abcdef",
      "type": "string"
    },
    "password": {
      "description": "The password required to access your origin database. This value is write-only and never returned by the API.",
      "example": "password1234!",
      "type": "string"
    }
  },
  "required": [
    "password"
  ],
  "type": "object"
}