deviceCustomAttributeShellScript を更新する
名前空間: microsoft.graph
大事な: /beta バージョンの Microsoft Graph API は変更される可能性があります。運用環境での使用はサポートされていません。
注:Intune 用 Microsoft Graph API には、テナントの有効な Intune ライセンスが必要です。
deviceCustomAttributeShellScript オブジェクトのプロパティを更新します。
この API は、次の国内クラウド展開で使用できます。
グローバル サービス | 米国政府機関 L4 | 米国政府機関 L5 (DOD) | 21Vianet が運営する中国 |
---|---|---|---|
✅ | ✅ | ✅ | ✅ |
アクセス許可
この API を呼び出すには、次のいずれかのアクセス許可が必要です。 アクセス許可の選択方法などの詳細については、「アクセス許可」を参照してください。
アクセス許可の種類 | アクセス許可 (特権の小さいものから大きいものへ) |
---|---|
委任 (職場または学校のアカウント) | DeviceManagementConfiguration.ReadWrite.All、DeviceManagementManagedDevices.ReadWrite.All |
委任 (個人用 Microsoft アカウント) | サポートされていません。 |
アプリケーション | DeviceManagementConfiguration.ReadWrite.All、DeviceManagementManagedDevices.ReadWrite.All |
HTTP 要求
PATCH /deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScriptId}
要求ヘッダー
ヘッダー | 値 |
---|---|
Authorization | ベアラー {token}。 必須です。 認証と認可についての詳細をご覧ください。 |
承諾 | application/json |
要求本文
要求本文で、 deviceCustomAttributeShellScript オブジェクトの JSON 表現を指定します。
次の表は、 deviceCustomAttributeShellScript を作成するときに必要なプロパティを示しています。
プロパティ | 型 | 説明 |
---|---|---|
id | String | カスタム属性エンティティの一意識別子。 |
customAttributeName | String | カスタム属性の名前。 |
customAttributeType | deviceCustomAttributeValueType | カスタム属性の値の予期される型。 可能な値は integer 、string 、dateTime です。 |
displayName | String | デバイス管理スクリプトの名前。 |
説明 | String | デバイス管理スクリプトの説明 (省略可能)。 |
scriptContent | Binary | スクリプトの内容。 |
createdDateTime | DateTimeOffset | デバイス管理スクリプトが作成された日時。 このプロパティは読み取り専用です。 |
lastModifiedDateTime | DateTimeOffset | デバイス管理スクリプトが最後に変更された日時。 このプロパティは読み取り専用です。 |
runAsAccount | runAsAccountType | 実行コンテキストの種類を示します。 可能な値は、system 、user です。 |
fileName | String | スクリプト ファイル名。 |
roleScopeTagIds | String collection | この PowerShellScript インスタンスのスコープ タグ ID の一覧。 |
応答
成功した場合、このメソッドは応答コード 200 OK
と、応答本文で更新された deviceCustomAttributeShellScript オブジェクトを返します。
例
要求
以下は、要求の例です。
PATCH https://graph.microsoft.com/beta/deviceManagement/deviceCustomAttributeShellScripts/{deviceCustomAttributeShellScriptId}
Content-type: application/json
Content-length: 413
{
"@odata.type": "#microsoft.graph.deviceCustomAttributeShellScript",
"customAttributeName": "Custom Attribute Name value",
"customAttributeType": "string",
"displayName": "Display Name value",
"description": "Description value",
"scriptContent": "c2NyaXB0Q29udGVudA==",
"runAsAccount": "user",
"fileName": "File Name value",
"roleScopeTagIds": [
"Role Scope Tag Ids value"
]
}
応答
以下は、応答の例です。 注: 簡潔にするために、ここに示す応答オブジェクトは切り詰められている場合があります。 実際の呼び出しではすべてのプロパティが返されます。
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 585
{
"@odata.type": "#microsoft.graph.deviceCustomAttributeShellScript",
"id": "929d921b-921b-929d-1b92-9d921b929d92",
"customAttributeName": "Custom Attribute Name value",
"customAttributeType": "string",
"displayName": "Display Name value",
"description": "Description value",
"scriptContent": "c2NyaXB0Q29udGVudA==",
"createdDateTime": "2017-01-01T00:02:43.5775965-08:00",
"lastModifiedDateTime": "2017-01-01T00:00:35.1329464-08:00",
"runAsAccount": "user",
"fileName": "File Name value",
"roleScopeTagIds": [
"Role Scope Tag Ids value"
]
}