Skip to content

Latest commit

 

History

History
72 lines (61 loc) · 3.06 KB

File metadata and controls

72 lines (61 loc) · 3.06 KB
title windowsSetting resource type
description Represents settings from the Windows operating system.
author MS-Arko
ms.localizationpriority medium
ms.subservice project-rome
doc_type resourcePageType
ms.date 04/24/2024

windowsSetting resource type

Namespace: microsoft.graph

Represents settings from the Windows operating system that are stored in the cloud for a given user.

Warning

The structure of the ID of a windowsSetting is not guaranteed and the caller should not take any dependency on it. The ID should be treated as an opaque string.

Windows settings can be of the following two types: roaming and backup.

Inherits from entity.

Methods

Method Return type Description
List Windows settings windowsSetting collection Get a list of the windowsSetting objects and their properties.
Get windowsSetting windowsSetting Read the properties and relationships of a windowsSetting object.
List instances windowsSettingInstance collection Read the properties and relationships of a windowsSettingInstance object by passing the Windows setting ID and Windows setting instance ID in the URL.

Properties

Property Type Description
id String The unique identifier of the object.
payloadType String The type of setting payloads contained in the instances navigation property.
settingType windowsSettingType The type of setting. The possible values are: roaming, backup, unknownFutureValue.
windowsDeviceId String A unique identifier for the device the setting might belong to if it is of the settingType backup.

Relationships

Relationship Type Description
instances windowsSettingInstance collection A collection of setting values for a given windowsSetting.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.windowsSetting",
  "id": "{67585f9f-ee4b-4dd8-808e-d88375d66ef7}$windows.data.apps.devicemetadata",
  "windowsDeviceId": "67585f9f-ee4b-4dd8-808e-d88375d66ef7",
  "settingType": "backup",
  "payloadType": "windows.data.apps.devicemetadata",
  "instances": [
            {
                "id": "14b50191-10e5-4da5-9099-8c909b8458bd",
                "payload": "VGhpcyBpcyBqdXN0IGFuIGV4YW1wbGUh",
                "lastModifiedDateTime": "2024-10-31T23:30:41Z",
                "createdDateTime": "2024-02-12T19:34:35.223Z",
                "expirationDateTime": "2034-02-09T19:34:33.771Z"
            }
        ]
}