SecretStoreProperties

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
environment string
application string
provisioningState object
status object
type string
data object
resource string
View JSON Schema on GitHub

JSON Schema

application-research-secretstoreproperties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SecretStoreProperties",
  "title": "SecretStoreProperties",
  "type": "object",
  "properties": {
    "environment": {
      "type": "string"
    },
    "application": {
      "type": "string"
    },
    "provisioningState": {
      "$ref": "#/components/schemas/ProvisioningState",
      "readOnly": true
    },
    "status": {
      "$ref": "#/components/schemas/ResourceStatus",
      "readOnly": true
    },
    "type": {
      "type": "string",
      "default": "generic",
      "enum": [
        "generic",
        "certificate",
        "basicAuthentication",
        "azureWorkloadIdentity",
        "awsIRSA"
      ]
    },
    "data": {
      "type": "object",
      "additionalProperties": {
        "$ref": "#/components/schemas/SecretValueProperties"
      }
    },
    "resource": {
      "type": "string"
    }
  },
  "required": [
    "data"
  ]
}