命名空间:microsoft.graph
重要
Microsoft Graph /beta 版本下的 API 可能会发生更改。 不支持在生产应用程序中使用这些 API。 若要确定 API 是否在 v1.0 中可用,请使用 版本 选择器。
方法
| 方法 | 返回类型 | Description |
|---|---|---|
| List | applicationTemplate | 检索 applicationTemplate 对象的列表。 |
| Get | applicationTemplate | 读取 applicationTemplate 对象的属性和关系。 |
| 例示 | applicationServicePrincipal | 将 Microsoft Entra 应用程序库中的应用程序实例添加到目录中。 带 ID 8adf8e6e-67b2-4cf2-a259-e3dc5476c621 的应用程序模板可用于添加非库应用,你可以配置不同的单一登录 (SSO) 模式(例如 SAML SSO 和基于密码的 SSO)。 |
属性
| 属性 | 类型 | 说明 |
|---|---|---|
| 类别 | String collection | 应用程序的类别列表。 支持的值可以是:、、、、、Content managementManagementMailHuman resourcesCRMMarketingIT infrastructureHealthFinanceERPData servicesDeveloper servicesConsumerE-commerceEducation、Media、Productivity、、 TravelTelecommunicationsProject managementTools和 。Web design & hostingBusiness ManagementCollaboration 支持 $filter(contains)。 |
| configurationUris | configurationUri 集合 | 预集成应用程序的单一登录配置所需的 URI。 |
| description | String | 应用程序的说明。 |
| displayName | String | 应用程序的名称。 支持 $filter(contains)。 |
| endpoints | 字符串集合 | 表示此应用程序使用的各种域的字符串 URL 的集合。 |
| homePageUrl | String | 应用程序的主页 URL。 |
| id | String | 应用程序的唯一标识符。 只读。 |
| lastModifiedDateTime | DateTimeOffset | 上次更新应用程序数据的日期和时间,使用 ISO 8601 格式表示,始终以 UTC 时间表示。 |
| logoUrl | String | 用于获取此应用程序的徽标的 URL。 |
| 发布者 | String | 此应用程序的发布者的名称。 |
| riskFactors | applicationRiskFactors | 有关应用程序提供程序的常规业务和作信息。 仅在使用 时 $select 返回。 |
| riskScore | applicationRiskScore | 表示应用程序的Microsoft生成的数值风险评估。
$orderby在总 (上受支持, $orderBy=riskScore/total desc 例如) 。 仅在使用 时 $select 返回。 |
| supportedProvisioningTypes | 字符串集合 | 此应用程序支持的预配模式列表。 唯一 sync有效的值为 。 |
| supportedSingleSignOnModes | 字符串集合 | 此应用程序支持的单一登录模式列表。 支持的值是:oidc、password、saml 和 notSupported。 |
关系
无。
JSON 表示形式
以下 JSON 表示形式显示了资源类型。
{
"@odata.type": "#microsoft.graph.applicationTemplate",
"id": "String (identifier)",
"displayName": "String",
"homePageUrl": "String",
"supportedSingleSignOnModes": [
"String"
],
"supportedProvisioningTypes": [
"String"
],
"logoUrl": "String",
"categories": [
"String"
],
"publisher": "String",
"description": "String",
"configurationUris": [
{
"@odata.type": "microsoft.graph.configurationUri"
}
],
"riskScore": {
"@odata.type": "microsoft.graph.applicationRiskScore"
},
"riskFactors": {
"@odata.type": "microsoft.graph.applicationRiskFactors"
},
"endpoints": [
"String"
],
"lastModifiedDateTime": "String (timestamp)"
}