EnvironmentProperties

Application DependenciesCloud NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
provisioningState object
compute object
providers object
simulated boolean
recipes object
recipeConfig object
extensions array
View JSON Schema on GitHub

JSON Schema

application-research-environmentproperties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EnvironmentProperties",
  "title": "EnvironmentProperties",
  "type": "object",
  "properties": {
    "provisioningState": {
      "$ref": "#/components/schemas/ProvisioningState",
      "readOnly": true
    },
    "compute": {
      "$ref": "#/components/schemas/EnvironmentCompute"
    },
    "providers": {
      "$ref": "#/components/schemas/Providers"
    },
    "simulated": {
      "type": "boolean"
    },
    "recipes": {
      "type": "object",
      "additionalProperties": {
        "type": "object",
        "additionalProperties": {
          "$ref": "#/components/schemas/RecipeProperties"
        }
      }
    },
    "recipeConfig": {
      "$ref": "#/components/schemas/RecipeConfigProperties"
    },
    "extensions": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Extension"
      }
    }
  },
  "required": [
    "compute"
  ]
}