1. Docs
  2. Reference
  3. REST API Docs
  4. Schema
  5. AppConfigValue

AppConfigValue

    ConfigValue describes a single (possibly secret) configuration value.

    Properties

    • string string required
      When Object is false: String is either the plaintext value (for non-secrets) or the base64-encoded ciphertext (for secrets). When Object is true: String is a JSON encoded object. If both Object and Secret are true, then the object contains at least one secure value. Secure values in an object are encoded as {"secure":"ciphertext"} where ciphertext is the base64-encoded ciphertext.
    • secret boolean required
      Secret is true if this value is a secret and false otherwise.
    • object boolean required
      Object is true if this value is a JSON encoded object.