Plan

Specifies information about the marketplace image used to create the virtual machine.

Cloud ComputingComputeIaaSInfrastructureVirtual Machines

Properties

Name Type Description
name string The plan ID.
publisher string The publisher ID.
product string Specifies the product of the image from the marketplace.
promotionCode string The promotion code.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-virtual-machines-plan-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Plan",
  "title": "Plan",
  "type": "object",
  "description": "Specifies information about the marketplace image used to create the virtual machine.",
  "properties": {
    "name": {
      "type": "string",
      "description": "The plan ID."
    },
    "publisher": {
      "type": "string",
      "description": "The publisher ID."
    },
    "product": {
      "type": "string",
      "description": "Specifies the product of the image from the marketplace."
    },
    "promotionCode": {
      "type": "string",
      "description": "The promotion code."
    }
  }
}