windowsOfficeClientConfiguration 资源类型

命名空间:microsoft.graph

重要提示: Microsoft Graph /beta 版本下的 API 可能会更改;不支持生产使用。

注意: 适用于 Intune 的 Microsoft Graph API 需要适用于租户的 活动 Intune 许可证

描述 office 策略设置的实体Windows。

继承自 officeClientConfiguration

方法

方法 返回类型 说明
列出 windowsOfficeClientConfigurations windowsOfficeClientConfiguration 集合 列出 windowsOfficeClientConfiguration 对象的属性和关系。
获取 windowsOfficeClientConfiguration windowsOfficeClientConfiguration 读取 windowsOfficeClientConfiguration 对象的属性和关系。
创建 windowsOfficeClientConfiguration windowsOfficeClientConfiguration 创建新的 windowsOfficeClientConfiguration 对象。
删除 windowsOfficeClientConfiguration 删除 windowsOfficeClientConfiguration
更新 windowsOfficeClientConfiguration windowsOfficeClientConfiguration 更新 windowsOfficeClientConfiguration 对象 的属性。

属性

属性 类型 说明
id String Office 客户端配置策略的 ID。 继承自 officeClientConfiguration
userPreferencePayload Stream 首选项设置 二进制格式的 JSON 字符串,用户可以替代这些值。 继承自 officeClientConfiguration
policyPayload Stream 策略设置 二进制格式的 JSON 字符串,用户无法更改这些值。 继承自 officeClientConfiguration
说明 String 管理员提供了 Office 客户端配置策略的说明。 继承自 officeClientConfiguration
displayName String 管理员提供的 Office 客户端配置策略的名称。 继承自 officeClientConfiguration
priority Int32 优先级值应为租户下每个策略的唯一值,并且将用于冲突解决,较低的值表示优先级较高。 继承自 officeClientConfiguration
lastModifiedDateTime 日期时间 策略的上次修改日期/时间戳。 继承自 officeClientConfiguration
userCheckinSummary officeUserCheckinSummary 策略的用户签入摘要。 继承自 officeClientConfiguration
checkinStatuses officeClientCheckinStatus 集合 Office 客户端签入状态列表。 继承自 officeClientConfiguration

关系

关系 类型 说明
assignments officeClientConfigurationAssignment 集合 策略的组分配列表。 继承自 officeClientConfiguration

JSON 表示形式

下面是资源的 JSON 表示形式。

{
  "@odata.type": "#microsoft.graph.windowsOfficeClientConfiguration",
  "id": "String (identifier)",
  "userPreferencePayload": "<Unknown Primitive Type Edm.Stream>",
  "policyPayload": "<Unknown Primitive Type Edm.Stream>",
  "description": "String",
  "displayName": "String",
  "priority": 1024,
  "userCheckinSummary": {
    "@odata.type": "microsoft.graph.officeUserCheckinSummary",
    "succeededUserCount": 1024,
    "failedUserCount": 1024
  },
  "checkinStatuses": [
    {
      "@odata.type": "microsoft.graph.officeClientCheckinStatus",
      "userPrincipalName": "String",
      "deviceName": "String",
      "devicePlatform": "String",
      "devicePlatformVersion": "String",
      "wasSuccessful": true,
      "userId": "String",
      "checkinDateTime": "String (timestamp)",
      "errorMessage": "String",
      "appliedPolicies": [
        "String"
      ]
    }
  ]
}