windowsFeatureUpdateProfile resource type

Namespace: microsoft.graph

Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.

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

Windows Feature Update Profile

Methods

Method Return Type Description
List windowsFeatureUpdateProfiles windowsFeatureUpdateProfile collection List properties and relationships of the windowsFeatureUpdateProfile objects.
Get windowsFeatureUpdateProfile windowsFeatureUpdateProfile Read properties and relationships of the windowsFeatureUpdateProfile object.
Create windowsFeatureUpdateProfile windowsFeatureUpdateProfile Create a new windowsFeatureUpdateProfile object.
Delete windowsFeatureUpdateProfile None Deletes a windowsFeatureUpdateProfile.
Update windowsFeatureUpdateProfile windowsFeatureUpdateProfile Update the properties of a windowsFeatureUpdateProfile object.
assign action None

Properties

Property Type Description
id String The Identifier of the entity.
displayName String The display name of the profile.
description String The description of the profile which is specified by the user.
featureUpdateVersion String The feature update version that will be deployed to the devices targeted by this profile. The version could be any supported version for example 1709, 1803 or 1809 and so on.
rolloutSettings windowsUpdateRolloutSettings The windows update rollout settings, including offer start date time, offer end date time, and days between each set of offers.
createdDateTime DateTimeOffset The date time that the profile was created.
lastModifiedDateTime DateTimeOffset The date time that the profile was last modified.
roleScopeTagIds String collection List of Scope Tags for this Feature Update entity.
deployableContentDisplayName String Friendly display name of the quality update profile deployable content
endOfSupportDate DateTimeOffset The last supported date for a feature update
installLatestWindows10OnWindows11IneligibleDevice Boolean If true, the latest Microsoft Windows 10 update will be installed on devices ineligible for Microsoft Windows 11

Relationships

Relationship Type Description
assignments windowsFeatureUpdateProfileAssignment collection The list of group assignments of the profile.

JSON Representation

Here is a JSON representation of the resource.

{
  "@odata.type": "#microsoft.graph.windowsFeatureUpdateProfile",
  "id": "String (identifier)",
  "displayName": "String",
  "description": "String",
  "featureUpdateVersion": "String",
  "rolloutSettings": {
    "@odata.type": "microsoft.graph.windowsUpdateRolloutSettings",
    "offerStartDateTimeInUTC": "String (timestamp)",
    "offerEndDateTimeInUTC": "String (timestamp)",
    "offerIntervalInDays": 1024
  },
  "createdDateTime": "String (timestamp)",
  "lastModifiedDateTime": "String (timestamp)",
  "roleScopeTagIds": [
    "String"
  ],
  "deployableContentDisplayName": "String",
  "endOfSupportDate": "String (timestamp)",
  "installLatestWindows10OnWindows11IneligibleDevice": true
}