Share feedback
Answers are generated based on the documentation.

Experimental

Schema

CustomSecretMaterial

Type: object

CustomSecretMaterial is an opaque secret value plus its injection routing.
injection · required

Schema: CustomInjection

injection is the caller-authored routing.
All schema constraints and annotations
{
  "$ref": "#/components/schemas/CustomInjection",
  "description": "injection is the caller-authored routing."
}
value · required · request only

Type: string

value is the secret value.
All schema constraints and annotations
{
  "description": "value is the secret value.",
  "minLength": 1,
  "type": "string",
  "writeOnly": true
}
All schema constraints and annotations
{
  "additionalProperties": false,
  "description": "CustomSecretMaterial is an opaque secret value plus its injection routing.",
  "properties": {
    "injection": {
      "$ref": "#/components/schemas/CustomInjection",
      "description": "injection is the caller-authored routing."
    },
    "value": {
      "description": "value is the secret value.",
      "minLength": 1,
      "type": "string",
      "writeOnly": true
    }
  },
  "required": [
    "value",
    "injection"
  ],
  "title": "CustomSecretMaterial",
  "type": "object"
}