Microsoft Graph · Schema

microsoft.graph.cloudPcGalleryImage

Azure ADCollaborationContactsDocumentsEmailGraphIdentityMicrosoftOffice 365PresentationsProductivitySpreadsheetsT1Tasks
View JSON Schema on GitHub

JSON Schema

microsoft-graph-microsoftgraphcloudpcgalleryimage-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/microsoft.graph.cloudPcGalleryImage",
  "title": "microsoft.graph.cloudPcGalleryImage",
  "allOf": [
    {
      "$ref": "#/components/schemas/microsoft.graph.entity"
    },
    {
      "title": "cloudPcGalleryImage",
      "required": [
        "@odata.type"
      ],
      "type": "object",
      "properties": {
        "displayName": {
          "type": "string",
          "description": "The display name of this gallery image. For example, Windows 11 Enterprise + Microsoft 365 Apps 22H2. Read-only.",
          "nullable": true
        },
        "endDate": {
          "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$",
          "type": "string",
          "description": "The date when the status of the image becomes supportedWithWarning. Users can still provision new Cloud PCs if the current time is later than endDate and earlier than expirationDate. For example, assume the endDate of a gallery image is 2023-9-14 and expirationDate is 2024-3-14, users are able to provision new Cloud PCs if today is 2023-10-01. Read-only.",
          "format": "date",
          "nullable": true
        },
        "expirationDate": {
          "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$",
          "type": "string",
          "description": "The date when the image is no longer available. Users are unable to provision new Cloud PCs if the current time is later than expirationDate. The value is usually endDate plus six months. For example, if the startDate is 2025-10-14, the expirationDate is usually 2026-04-14. Read-only.",
          "format": "date",
          "nullable": true
        },
        "offerName": {
          "type": "string",
          "description": "The offer name of this gallery image that is passed to Azure Resource Manager (ARM) to retrieve the image resource. Read-only.",
          "nullable": true
        },
        "publisherName": {
          "type": "string",
          "description": "The publisher name of this gallery image that is passed to Azure Resource Manager (ARM) to retrieve the image resource. Read-only.",
          "nullable": true
        },
        "sizeInGB": {
          "maximum": 2147483647,
          "minimum": -2147483648,
          "type": "number",
          "description": "Indicates the size of this image in gigabytes. For example, 64. Read-only.",
          "format": "int32",
          "nullable": true
        },
        "skuName": {
          "type": "string",
          "description": "The SKU name of this image that is passed to Azure Resource Manager (ARM) to retrieve the image resource. Read-only.",
          "nullable": true
        },
        "startDate": {
          "pattern": "^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])$",
          "type": "string",
          "description": "The date when the Cloud PC image is available for provisioning new Cloud PCs. For example, 2022-09-20. Read-only.",
          "format": "date",
          "nullable": true
        },
        "status": {
          "anyOf": [
            {
              "$ref": "#/components/schemas/microsoft.graph.cloudPcGalleryImageStatus"
            },
            {
              "type": "object",
              "nullable": true
            }
          ],
          "description": "The status of the gallery image on the Cloud PC. The possible values are: supported, supportedWithWarning, notSupported, unknownFutureValue. The default value is supported. Read-only."
        },
        "@odata.type": {
          "type": "string"
        }
      }
    }
  ],
  "x-ms-discriminator-value": "#microsoft.graph.cloudPcGalleryImage"
}