Keboola · Schema

ResetCredentialsResponse

Data PlatformETLELTData PipelinesData StorageTransformationsOrchestrationData OperationsCloud DataSnowflakeBigQuery

Properties

Name Type Description
privateKey string PEM-encoded private key in PKCS#8 format. This key is generated in-memory and never stored. Store it securely.
publicKey string PEM-encoded RSA public key that has been set in the Snowflake workspace
View JSON Schema on GitHub

JSON Schema

keboola-resetcredentialsresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ResetCredentialsResponse",
  "type": "object",
  "required": [
    "privateKey",
    "publicKey"
  ],
  "properties": {
    "privateKey": {
      "type": "string",
      "description": "PEM-encoded private key in PKCS#8 format. This key is generated in-memory and never stored. Store it securely.",
      "example": "-----BEGIN PRIVATE KEY-----\nMIIEowIBAAKCAQEA...\n-----END PRIVATE KEY-----"
    },
    "publicKey": {
      "type": "string",
      "description": "PEM-encoded RSA public key that has been set in the Snowflake workspace",
      "example": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A...\n-----END PUBLIC KEY-----"
    }
  }
}