SecretValueProperties

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
encoding string
value string
valueFrom object
View JSON Schema on GitHub

JSON Schema

application-research-secretvalueproperties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SecretValueProperties",
  "title": "SecretValueProperties",
  "type": "object",
  "properties": {
    "encoding": {
      "type": "string",
      "default": "raw",
      "enum": [
        "raw",
        "base64"
      ]
    },
    "value": {
      "type": "string",
      "format": "password"
    },
    "valueFrom": {
      "$ref": "#/components/schemas/ValueFromProperties"
    }
  }
}