officeClientConfiguration リソースの種類

名前空間: microsoft.graph

重要: Microsoft Graph /beta バージョンの API は変更される場合があります。実稼働での使用はサポートされていません。

注: Intune 用 Microsoft Graph API には、テナントの 有効な Intune ライセンスが必要です。

Officeクライアント構成。

メソッド

メソッド 戻り値の型 説明
officeClientConfigurations の一覧表示 officeClientConfiguration コレクション officeClientConfiguration オブジェクトのプロパティとリレーションシップを一覧表示します。
OfficeClientConfiguration の取得 officeClientConfiguration officeClientConfiguration オブジェクトのプロパティとリレーションシップを読み取る。
assign アクション officeClientConfigurationAssignment コレクション ポリシーのすべての対象グループを置き換える。
updatePriorities アクション なし ポリシーの優先順位を更新します。

プロパティ

プロパティ 説明
id String Office クライアント構成ポリシーの ID。
userPreferencePayload Stream 基本設定 JSON 文字列をバイナリ形式で指定すると、これらの値はユーザーによって上書きされます。
policyPayload Stream バイナリ形式のポリシー設定 JSON 文字列は、ユーザーがこれらの値を変更できません。
description String まだ文書化されていません
displayName String 管理者は、Office クライアント構成ポリシーの説明を提供しました。
lastModifiedDateTime DateTime ポリシーの最終変更日時スタンプ。
priority Int32 優先度の値は、テナントの下のポリシーごとに一意の値である必要があります。競合解決に使用されます。値が低い場合は優先度が高くなります。
userCheckinSummary officeUserCheckinSummary ポリシーのユーザー チェックインの概要。
checkinStatuses officeClientCheckinStatus コレクション Office クライアント のチェックイン状態の一覧。

リレーションシップ

リレーションシップ 説明
assignments officeClientConfigurationAssignment コレクション ポリシーのグループ割り当ての一覧。

JSON 表記

以下は、リソースの JSON 表記です。

{
  "@odata.type": "#microsoft.graph.officeClientConfiguration",
  "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"
      ]
    }
  ]
}