创建 deviceManagementConfigurationPolicyTemplate
命名空间:microsoft.graph
重要: Microsoft /beta 版本下的 Graph API 可能会发生更改;不支持生产使用。
注意:适用于 Intune 的 Microsoft Graph API 需要适用于租户的活动 Intune 许可证。
创建新的 deviceManagementConfigurationPolicyTemplate 对象。
此 API 可用于以下国家级云部署。
全局服务 | 美国政府 L4 | 美国政府 L5 (DOD) | 由世纪互联运营的中国 |
---|---|---|---|
✅ | ✅ | ✅ | ✅ |
权限
要调用此 API,需要以下权限之一。 若要了解详细信息,包括如何选择权限的信息,请参阅权限。
权限类型 | 权限(从最低特权到最高特权) |
---|---|
委派(工作或学校帐户) | DeviceManagementConfiguration.ReadWrite.All |
委派(个人 Microsoft 帐户) | 不支持。 |
应用程序 | DeviceManagementConfiguration.ReadWrite.All |
HTTP 请求
POST /deviceManagement/configurationPolicyTemplates
请求标头
标头 | 值 |
---|---|
Authorization | 持有者 {token}。 必填。 详细了解 身份验证和授权。 |
接受 | application/json |
请求正文
在请求正文中,提供 deviceManagementConfigurationPolicyTemplate 对象的 JSON 表示形式。
下表显示了创建 deviceManagementConfigurationPolicyTemplate 时所需的属性。
属性 | 类型 | 说明 |
---|---|---|
id | String | 模板文档的键,由 BaseId 和版本组成。 自动生成。 |
baseId | String | 模板基标识符 |
version | Int32 | 模板版本。 有效值 1 到 2147483647。 此属性是只读的。 |
displayName | String | 模板显示名称 |
description | String | 模板说明 |
displayVersion | String | 模板版本说明 |
lifecycleState | deviceManagementTemplateLifecycleState | 指示模板的当前生命周期状态。 可取值为:invalid 、draft 、active 、superseded 、deprecated 、retired 。 |
平台 | deviceManagementConfigurationPlatforms | 此模板的平台。 可取值为:none 、android 、iOS 、macOS 、windows10X 、windows10 、linux 、unknownFutureValue 、androidEnterprise 、aosp 。 |
技术 | deviceManagementConfigurationTechnologies | 此模板的技术。 可能的值为:、、mdm 、、windows10XManagement extensibility linuxMdm microsoftSense configManager exchangeOnline mobileApplicationManagement appleRemoteManagement 、enrollment 、endpointPrivilegeManagement 、 。 android unknownFutureValue windowsOsRecovery none |
templateFamily | deviceManagementConfigurationTemplateFamily | TemplateFamily 用于此模板。 可能的值为:、、、、endpointSecurityDiskEncryption endpointSecurityFirewall enrollmentConfiguration endpointSecurityAccountProtection endpointSecurityApplicationControl endpointSecurityAttackSurfaceReduction endpointSecurityEndpointDetectionAndResponse endpointSecurityEndpointPrivilegeManagement 、appQuietTime baseline 、、unknownFutureValue 、deviceConfigurationPolicies deviceConfigurationScripts 、 。 companyPortal windowsOsRecoveryPolicies endpointSecurityAntivirus none |
allowUnmanagedSettings | 布尔值 | 允许非托管设置模板 |
settingTemplateCount | Int32 | 设置模板数。 有效值 0 到 2147483647。 此属性是只读的。 |
响应
如果成功,此方法在 201 Created
响应正文中返回响应代码和 deviceManagementConfigurationPolicyTemplate 对象。
示例
请求
下面是一个请求示例。
POST https://graph.microsoft.com/beta/deviceManagement/configurationPolicyTemplates
Content-type: application/json
Content-length: 455
{
"@odata.type": "#microsoft.graph.deviceManagementConfigurationPolicyTemplate",
"baseId": "Base Id value",
"version": 7,
"displayName": "Display Name value",
"description": "Description value",
"displayVersion": "Display Version value",
"lifecycleState": "draft",
"platforms": "android",
"technologies": "mdm",
"templateFamily": "endpointSecurityAntivirus",
"allowUnmanagedSettings": true,
"settingTemplateCount": 4
}
响应
下面是一个响应示例。 注意:为简洁起见,可能会截断此处显示的响应对象。 将从实际调用中返回所有属性。
HTTP/1.1 201 Created
Content-Type: application/json
Content-Length: 504
{
"@odata.type": "#microsoft.graph.deviceManagementConfigurationPolicyTemplate",
"id": "424ddb9a-db9a-424d-9adb-4d429adb4d42",
"baseId": "Base Id value",
"version": 7,
"displayName": "Display Name value",
"description": "Description value",
"displayVersion": "Display Version value",
"lifecycleState": "draft",
"platforms": "android",
"technologies": "mdm",
"templateFamily": "endpointSecurityAntivirus",
"allowUnmanagedSettings": true,
"settingTemplateCount": 4
}