DaprConfigurationStoreProperties

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
environment string
application string
provisioningState object
status object
componentName string
metadata object
type string
version string
auth object
resources array
recipe object
resourceProvisioning object
View JSON Schema on GitHub

JSON Schema

application-research-daprconfigurationstoreproperties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/DaprConfigurationStoreProperties",
  "title": "DaprConfigurationStoreProperties",
  "type": "object",
  "properties": {
    "environment": {
      "type": "string"
    },
    "application": {
      "type": "string"
    },
    "provisioningState": {
      "$ref": "#/components/schemas/ProvisioningState",
      "readOnly": true
    },
    "status": {
      "$ref": "#/components/schemas/ResourceStatus",
      "readOnly": true
    },
    "componentName": {
      "type": "string",
      "readOnly": true
    },
    "metadata": {
      "type": "object",
      "additionalProperties": {
        "$ref": "#/components/schemas/MetadataValue"
      }
    },
    "type": {
      "type": "string"
    },
    "version": {
      "type": "string"
    },
    "auth": {
      "$ref": "#/components/schemas/DaprResourceAuth"
    },
    "resources": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/ResourceReference"
      }
    },
    "recipe": {
      "$ref": "#/components/schemas/Recipe"
    },
    "resourceProvisioning": {
      "$ref": "#/components/schemas/ResourceProvisioning"
    }
  },
  "required": [
    "environment"
  ]
}