managedDeviceOverview の更新
名前空間: microsoft.graph
注:Intune 用 Microsoft Graph API には、テナントの有効な Intune ライセンスが必要です。
managedDeviceOverview オブジェクトのプロパティを更新します。
この API は、次の国内クラウド展開で使用できます。
グローバル サービス | 米国政府機関 L4 | 米国政府機関 L5 (DOD) | 21Vianet が運営する中国 |
---|---|---|---|
✅ | ✅ | ✅ | ✅ |
アクセス許可
この API を呼び出すには、次のいずれかのアクセス許可が必要です。 アクセス許可の選択方法などの詳細については、「アクセス許可」を参照してください。
アクセス許可の種類 | アクセス許可 (特権の小さいものから大きいものへ) |
---|---|
委任 (職場または学校のアカウント) | DeviceManagementManagedDevices.ReadWrite.All |
委任 (個人用 Microsoft アカウント) | サポートされていません。 |
アプリケーション | DeviceManagementManagedDevices.ReadWrite.All |
HTTP 要求
PATCH /deviceManagement/managedDeviceOverview
要求ヘッダー
ヘッダー | 値 |
---|---|
Authorization | ベアラー {token}。 必須です。 認証と認可についての詳細をご覧ください。 |
承諾 | application/json |
要求本文
要求本文で、managedDeviceOverview オブジェクトの JSON 表記を指定します。
次の表に、managedDeviceOverview の作成時に必要なプロパティを示します。
プロパティ | 型 | 説明 |
---|---|---|
id | String | 概要の一意識別子 |
enrolledDeviceCount | Int32 | 登録済みデバイスの合計数。 Intune PC エージェントで管理されている PC デバイスは含まれません |
mdmEnrolledCount | Int32 | MDM に登録されているデバイスの数 |
dualEnrolledDeviceCount | Int32 | MDM と EAS の両方に登録されているデバイスの数 |
deviceOperatingSystemSummary | deviceOperatingSystemSummary | デバイスのオペレーティング システムの概要。 |
deviceExchangeAccessStateSummary | deviceExchangeAccessStateSummary | Intune での Exchange アクセス状態の配布 |
応答
成功した場合、このメソッドは 200 OK
応答コードと、応答本文で更新された managedDeviceOverview オブジェクトを返します。
例
要求
以下は、要求の例です。
PATCH https://graph.microsoft.com/v1.0/deviceManagement/managedDeviceOverview
Content-type: application/json
Content-length: 900
{
"@odata.type": "#microsoft.graph.managedDeviceOverview",
"enrolledDeviceCount": 3,
"mdmEnrolledCount": 0,
"dualEnrolledDeviceCount": 7,
"deviceOperatingSystemSummary": {
"@odata.type": "microsoft.graph.deviceOperatingSystemSummary",
"androidCount": 12,
"iosCount": 8,
"macOSCount": 10,
"windowsMobileCount": 2,
"windowsCount": 12,
"unknownCount": 12,
"androidDedicatedCount": 5,
"androidDeviceAdminCount": 7,
"androidFullyManagedCount": 8,
"androidWorkProfileCount": 7,
"androidCorporateWorkProfileCount": 0,
"configMgrDeviceCount": 4
},
"deviceExchangeAccessStateSummary": {
"@odata.type": "microsoft.graph.deviceExchangeAccessStateSummary",
"allowedDeviceCount": 2,
"blockedDeviceCount": 2,
"quarantinedDeviceCount": 6,
"unknownDeviceCount": 2,
"unavailableDeviceCount": 6
}
}
応答
以下は、応答の例です。 注: 簡潔にするために、ここに示す応答オブジェクトは切り詰められている場合があります。 実際の呼び出しではすべてのプロパティが返されます。
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 949
{
"@odata.type": "#microsoft.graph.managedDeviceOverview",
"id": "42a91653-1653-42a9-5316-a9425316a942",
"enrolledDeviceCount": 3,
"mdmEnrolledCount": 0,
"dualEnrolledDeviceCount": 7,
"deviceOperatingSystemSummary": {
"@odata.type": "microsoft.graph.deviceOperatingSystemSummary",
"androidCount": 12,
"iosCount": 8,
"macOSCount": 10,
"windowsMobileCount": 2,
"windowsCount": 12,
"unknownCount": 12,
"androidDedicatedCount": 5,
"androidDeviceAdminCount": 7,
"androidFullyManagedCount": 8,
"androidWorkProfileCount": 7,
"androidCorporateWorkProfileCount": 0,
"configMgrDeviceCount": 4
},
"deviceExchangeAccessStateSummary": {
"@odata.type": "microsoft.graph.deviceExchangeAccessStateSummary",
"allowedDeviceCount": 2,
"blockedDeviceCount": 2,
"quarantinedDeviceCount": 6,
"unknownDeviceCount": 2,
"unavailableDeviceCount": 6
}
}