Microsoft Azure · Schema

DeploymentProperties

Deployment properties.

API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1

Properties

Name Type Description
template object The template content. Use this element when you want to pass the template syntax directly in the request rather than link to an existing template.
parameters object Name and value pairs that define the deployment parameters.
mode string The mode that is used to deploy resources.
View JSON Schema on GitHub

JSON Schema

azure-resource-manager-deployment-properties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DeploymentProperties",
  "type": "object",
  "description": "Deployment properties.",
  "properties": {
    "template": {
      "type": "object",
      "description": "The template content. Use this element when you want to pass the template syntax directly in the request rather than link to an existing template."
    },
    "parameters": {
      "type": "object",
      "description": "Name and value pairs that define the deployment parameters."
    },
    "mode": {
      "type": "string",
      "description": "The mode that is used to deploy resources."
    }
  }
}