Recipe

The recipe used to automatically deploy underlying infrastructure

Application DependenciesCloud-NativeIntegrationResearchSpecificationsWorkload Specifications

Properties

Name Type Description
name string The name of the recipe within the environment to use
parameters object Key/value parameters to pass into the recipe at deployment
View JSON Schema on GitHub

JSON Schema

application-research-recipe-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Recipe",
  "title": "Recipe",
  "type": "object",
  "description": "The recipe used to automatically deploy underlying infrastructure",
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the recipe within the environment to use"
    },
    "parameters": {
      "type": "object",
      "description": "Key/value parameters to pass into the recipe at deployment"
    }
  },
  "required": [
    "name"
  ]
}