InternalCredentialStorageProperties

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications
View JSON Schema on GitHub

JSON Schema

application-research-internalcredentialstorageproperties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/InternalCredentialStorageProperties",
  "title": "InternalCredentialStorageProperties",
  "allOf": [
    {
      "$ref": "#/components/schemas/CredentialStorageProperties"
    },
    {
      "type": "object",
      "properties": {
        "kind": {
          "type": "string",
          "enum": [
            "Internal"
          ]
        },
        "secretName": {
          "type": "string",
          "readOnly": true
        }
      },
      "required": [
        "kind"
      ]
    }
  ]
}