创建 deviceManagementResourceAccessProfileAssignmentCreate deviceManagementResourceAccessProfileAssignment
命名空间:microsoft.graphNamespace: microsoft.graph
重要提示: /beta 版本的 Microsoft Graph API 可能会更改;不支持生产使用。Important: Microsoft Graph APIs under the /beta version are subject to change; production use is not supported.
注意: 适用于 Intune 的 Microsoft Graph API 需要适用于租户的 活动 Intune 许可证。Note: The Microsoft Graph API for Intune requires an active Intune license for the tenant.
创建新的 deviceManagementResourceAccessProfileAssignment 对象。Create a new deviceManagementResourceAccessProfileAssignment object.
先决条件Prerequisites
要调用此 API,需要以下权限之一。要了解详细信息,包括如何选择权限的信息,请参阅权限。One of the following permissions is required to call this API. To learn more, including how to choose permissions, see Permissions.
权限类型Permission type | 权限(从最高特权到最低特权)Permissions (from most to least privileged) |
---|---|
委派(工作或学校帐户)Delegated (work or school account) | DeviceManagementServiceConfig.ReadWrite.AllDeviceManagementServiceConfig.ReadWrite.All |
委派(个人 Microsoft 帐户)Delegated (personal Microsoft account) | 不支持。Not supported. |
应用程序Application | DeviceManagementServiceConfig.ReadWrite.AllDeviceManagementServiceConfig.ReadWrite.All |
HTTP 请求HTTP Request
POST /deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBaseId}/assignments
请求标头Request headers
标头Header | 值Value |
---|---|
AuthorizationAuthorization | Bearer <token>。必需。Bearer <token> Required. |
接受Accept | application/jsonapplication/json |
请求正文Request body
在请求正文中,提供 deviceManagementResourceAccessProfileAssignment 对象的 JSON 表示形式。In the request body, supply a JSON representation for the deviceManagementResourceAccessProfileAssignment object.
下表显示创建 deviceManagementResourceAccessProfileAssignment 时所需的属性。The following table shows the properties that are required when you create the deviceManagementResourceAccessProfileAssignment.
属性Property | 类型Type | 说明Description |
---|---|---|
idid | StringString | 工作分配的唯一标识符Unique identifier for the Assignments |
intentintent | deviceManagementResourceAccessProfileIntentdeviceManagementResourceAccessProfileIntent | 资源访问配置文件的分配意图。The assignment intent for the resource access profile. 可取值为:apply 、remove 。Possible values are: apply , remove . |
targettarget | deviceAndAppManagementAssignmentTargetdeviceAndAppManagementAssignmentTarget | 资源访问配置文件的分配目标。The assignment target for the resource access profile. |
sourceIdsourceId | StringString | 工作分配的源的标识符。The identifier of the source of the assignment. |
响应Response
如果成功,此方法在响应正文中返回响应代码和 201 Created
deviceManagementResourceAccessProfileAssignment 对象。If successful, this method returns a 201 Created
response code and a deviceManagementResourceAccessProfileAssignment object in the response body.
示例Example
请求Request
下面是一个请求示例。Here is an example of the request.
POST https://graph.microsoft.com/beta/deviceManagement/resourceAccessProfiles/{deviceManagementResourceAccessProfileBaseId}/assignments
Content-type: application/json
Content-length: 463
{
"@odata.type": "#microsoft.graph.deviceManagementResourceAccessProfileAssignment",
"intent": "remove",
"target": {
"@odata.type": "microsoft.graph.configurationManagerCollectionAssignmentTarget",
"deviceAndAppManagementAssignmentFilterId": "Device And App Management Assignment Filter Id value",
"deviceAndAppManagementAssignmentFilterType": "include",
"collectionId": "Collection Id value"
},
"sourceId": "Source Id value"
}
响应Response
下面是一个响应示例。注意:为了简单起见,可能会将此处所示的响应对象截断。将从实际调用中返回所有属性。Here is an example of the response. Note: The response object shown here may be truncated for brevity. All of the properties will be returned from an actual call.
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 512
{
"@odata.type": "#microsoft.graph.deviceManagementResourceAccessProfileAssignment",
"id": "4ebb8d4e-8d4e-4ebb-4e8d-bb4e4e8dbb4e",
"intent": "remove",
"target": {
"@odata.type": "microsoft.graph.configurationManagerCollectionAssignmentTarget",
"deviceAndAppManagementAssignmentFilterId": "Device And App Management Assignment Filter Id value",
"deviceAndAppManagementAssignmentFilterType": "include",
"collectionId": "Collection Id value"
},
"sourceId": "Source Id value"
}