deviceShellScript リソースの種類
名前空間: microsoft.graph
大事な: /beta バージョンの Microsoft Graph API は変更される可能性があります。運用環境での使用はサポートされていません。
注:Intune 用 Microsoft Graph API には、テナントの有効な Intune ライセンスが必要です。
Intune では、登録されている Mac OS デバイスでシェル スクリプトを実行する機能をお客様に提供します。 スクリプトは、1 回または定期的に実行できます。
メソッド
メソッド | 戻り値の型 | 説明 |
---|---|---|
deviceShellScripts を一覧表示する | deviceShellScript コレクション | deviceShellScript オブジェクトのプロパティとリレーションシップを一覧表示します。 |
deviceShellScript を取得する | deviceShellScript | deviceShellScript オブジェクトのプロパティとリレーションシップを読み取ります。 |
deviceShellScript を作成する | deviceShellScript | 新しい deviceShellScript オブジェクトを作成します。 |
deviceShellScript を削除する | なし | deviceShellScript を削除します。 |
deviceShellScript を更新する | deviceShellScript | deviceShellScript オブジェクトのプロパティを更新します。 |
assign アクション | なし |
プロパティ
プロパティ | 型 | 説明 |
---|---|---|
executionFrequency | 期間 | スクリプトを実行する間隔。 定義されていない場合、スクリプトは 1 回実行されます |
retryCount | Int32 | 失敗した場合にスクリプトが再試行される回数 |
blockExecutionNotifications | ブール型 | スクリプトが実行されていることをユーザーに通知しない |
id | String | デバイス管理スクリプトの一意識別子。 |
displayName | String | デバイス管理スクリプトの名前。 |
説明 | String | デバイス管理スクリプトの説明 (省略可能)。 |
scriptContent | Binary | スクリプトの内容。 |
createdDateTime | DateTimeOffset | デバイス管理スクリプトが作成された日時。 このプロパティは読み取り専用です。 |
lastModifiedDateTime | DateTimeOffset | デバイス管理スクリプトが最後に変更された日時。 このプロパティは読み取り専用です。 |
runAsAccount | runAsAccountType | 実行コンテキストの種類を示します。 可能な値は、system 、user です。 |
fileName | String | スクリプト ファイル名。 |
roleScopeTagIds | String collection | この PowerShellScript インスタンスのスコープ タグ ID の一覧。 |
リレーションシップ
リレーションシップ | 型 | 説明 |
---|---|---|
groupAssignments | deviceManagementScriptGroupAssignment コレクション | デバイス管理スクリプトのグループ割り当ての一覧。 |
assignments | deviceManagementScriptAssignment コレクション | デバイス管理スクリプトのグループ割り当ての一覧。 |
runSummary | deviceManagementScriptRunSummary | デバイス管理スクリプトの概要を実行します。 |
deviceRunStates | deviceManagementScriptDeviceState コレクション | すべてのデバイスにわたるこのスクリプトの実行状態の一覧。 |
userRunStates | deviceManagementScriptUserState コレクション | すべてのユーザーにわたるこのスクリプトの実行状態の一覧。 |
JSON 表記
以下は、リソースの JSON 表記です。
{
"@odata.type": "#microsoft.graph.deviceShellScript",
"executionFrequency": "String (duration)",
"retryCount": 1024,
"blockExecutionNotifications": true,
"id": "String (identifier)",
"displayName": "String",
"description": "String",
"scriptContent": "binary",
"createdDateTime": "String (timestamp)",
"lastModifiedDateTime": "String (timestamp)",
"runAsAccount": "String",
"fileName": "String",
"roleScopeTagIds": [
"String"
]
}