Edit

Share via


windowsQualityUpdateCatalogItem resource type

Namespace: microsoft.graph

Important: APIs under the /beta version in Microsoft Graph are subject to change which could break your applications. While Intune /beta APIs are supported by Microsoft, you should use these at your own discretion. In general, /beta APIs are not recommended for use in production applications. To determine whether an API is available in v1.0, use the Version selector

Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.

Windows update catalog item entity

Inherits from windowsUpdateCatalogItem

Methods

Method Return Type Description
List windowsQualityUpdateCatalogItems windowsQualityUpdateCatalogItem collection List properties and relationships of the windowsQualityUpdateCatalogItem objects.
Get windowsQualityUpdateCatalogItem windowsQualityUpdateCatalogItem Read properties and relationships of the windowsQualityUpdateCatalogItem object.
Create windowsQualityUpdateCatalogItem windowsQualityUpdateCatalogItem Create a new windowsQualityUpdateCatalogItem object.
Delete windowsQualityUpdateCatalogItem None Deletes a windowsQualityUpdateCatalogItem.
Update windowsQualityUpdateCatalogItem windowsQualityUpdateCatalogItem Update the properties of a windowsQualityUpdateCatalogItem object.
retrieveWindowsQualityUpdateCatalogItemDetails function windowsQualityUpdateCatalogItemPolicyDetail collection

Properties

Property Type Description
id String The catalog item id. Inherited from windowsUpdateCatalogItem
displayName String The display name for the catalog item. Inherited from windowsUpdateCatalogItem
releaseDateTime DateTimeOffset The date the catalog item was released Inherited from windowsUpdateCatalogItem
endOfSupportDate DateTimeOffset The last supported date for a catalog item Inherited from windowsUpdateCatalogItem
kbArticleId String Identifies the knowledge base article associated with the Windows quality update catalog item. Read-only
classification windowsQualityUpdateCategory The category of the Windows quality update. Possible values are: all, security, nonSecurity. Read-only. Possible values are: all, security, nonSecurity.
qualityUpdateCadence windowsQualityUpdateCadence The publishing cadence of the quality update. Possible values are: monthly, outOfBand. This property cannot be modified and is automatically populated when the catalog is created. Read-only. Possible values are: monthly, outOfBand, unknownFutureValue.
isExpeditable Boolean When TRUE, indicates that the quality updates qualify for expedition. When FALSE, indicates the quality updates do not quality for expedition. Default value is FALSE. Read-only
productRevisions windowsQualityUpdateCatalogProductRevision collection The operating system product revisions that are released as part of this quality update. Read-only.

Relationships

None

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.windowsQualityUpdateCatalogItem",
  "id": "String (identifier)",
  "displayName": "String",
  "releaseDateTime": "String (timestamp)",
  "endOfSupportDate": "String (timestamp)",
  "kbArticleId": "String",
  "classification": "String",
  "qualityUpdateCadence": "String",
  "isExpeditable": true,
  "productRevisions": [
    {
      "@odata.type": "microsoft.graph.windowsQualityUpdateCatalogProductRevision",
      "displayName": "String",
      "releaseDateTime": "String (timestamp)",
      "versionName": "String",
      "productName": "String",
      "osBuild": {
        "@odata.type": "microsoft.graph.windowsQualityUpdateProductBuildVersionDetail",
        "majorVersionNumber": 1024,
        "minorVersionNumber": 1024,
        "buildNumber": 1024,
        "updateBuildRevision": 1024
      },
      "knowledgeBaseArticle": {
        "@odata.type": "microsoft.graph.windowsQualityUpdateProductKnowledgeBaseArticle",
        "articleId": "String",
        "articleUrl": "String"
      }
    }
  ]
}