获取 ipApplicationSegment
命名空间:microsoft.graph
重要
Microsoft Graph /beta
版本下的 API 可能会发生更改。 不支持在生产应用程序中使用这些 API。 若要确定 API 是否在 v1.0 中可用,请使用 版本 选择器。
读取 ipApplicationSegment 对象的属性和关系。
权限
为此 API 选择标记为最低特权的权限。 只有在应用需要它时,才使用更高的特权权限。 有关委派权限和应用程序权限的详细信息,请参阅权限类型。 要了解有关这些权限的详细信息,请参阅 权限参考。
权限类型 | 最低特权权限 | 更高特权权限 |
---|---|---|
委派(工作或学校帐户) | Application.Read.All | Application.ReadWrite.All |
委派(个人 Microsoft 帐户) | 不支持。 | 不支持。 |
应用程序 | Application.Read.All | Application.ReadWrite.All、 Application.ReadWrite.OwnedBy |
重要
在具有工作或学校帐户的委托方案中,必须为登录用户分配受支持的Microsoft Entra角色或具有支持的角色权限的自定义角色。 应用程序管理员 和 全局安全访问管理员 是此操作支持的最低特权角色。 云应用程序管理员 无法管理应用代理设置。
HTTP 请求
GET /applications/{applicationObjectId}/onPremisesPublishing/segmentsConfiguration/microsoft.graph.ipSegmentConfiguration/applicationSegments/{applicationSegment-id}
可选的查询参数
此方法支持 $expand
OData 查询参数来帮助自定义响应。 若要了解一般信息,请参阅 OData 查询参数。
请求标头
名称 | 说明 |
---|---|
Authorization | 持有者 {token}。 必填。 详细了解 身份验证和授权。 |
请求正文
请勿提供此方法的请求正文。
响应
如果成功,此方法在 200 OK
响应正文中返回响应代码和 ipApplicationSegment 对象。
示例
示例 1:检索基本 ipApplicationSegments 对象
请求
以下示例显示了一个请求。
GET https://graph.microsoft.com/beta/applications/dcc40202-6223-488b-8e64-28aa1a803d6c/onPremisesPublishing/segmentsConfiguration/microsoft.graph.IpSegmentConfiguration/ApplicationSegments/df8cb1a6-4bbf-4da3-8f85-fe2fc439ab80
响应
以下示例显示了相应的响应。
注意:为了提高可读性,可能缩短了此处显示的响应对象。
HTTP/1.1 200 OK
Content-Type: application/json
{
"destinationHost": "test-check-ch.contoso.com",
"destinationType": "fqdn",
"port": 0,
"ports": [
"20-20"
],
"protocol": "tcp",
"id": "df8cb1a6-4bbf-****-8f85-fe2fc***ab80"
}
示例 2:检索 ipApplicationSegments 并展开应用程序对象
请求
GET https://graph.microsoft.com/beta/applications/dcc40202-6223-488b-8e64-28aa1a803d6c/onPremisesPublishing/segmentsConfiguration/microsoft.graph.IpSegmentConfiguration/ApplicationSegments/df8cb1a6-4bbf-4da3-8f85-fe2fc439ab80?$expand=application
响应
以下示例显示了相应的响应。
注意:为了提高可读性,可能缩短了此处显示的响应对象。
HTTP/1.1 200 OK
Content-Type: application/json
{
"destinationHost": "test.porto",
"destinationType": "fqdn",
"port": 0,
"ports": [
"20-20"
],
"protocol": "udp",
"id": "ed19c1bb-a4db-4d05-b8b3-3d79f8dbb666",
"application": {
"id": "618d636e-4978-****-8c0b-459ac982c391",
"appId": "15961fc8-797f-****-ab6e-04ff1e2d03ad",
"identifierUris": [
"api://15961fc8-797f-4278-ab6e-04ff1e2d03ad"
],
"signInAudience": "AzureADMyOrg",
"tags": [
"IsAccessibleViaZTNAClient",
"HideApp",
"PrivateAccessNonWebApplication"
],
"onPremisesPublishing": {
"externalUrl": "api://15961fc8-797f-****-ab6e-04ff1e2d03ad/",
"internalUrl": "api://15961fc8-797f-****-ab6e-04ff1e2d03ad/",
"alternateUrl": null,
"externalAuthenticationType": "passthru",
"isTranslateHostHeaderEnabled": false,
"isTranslateLinksInBodyEnabled": false,
"isOnPremPublishingEnabled": true,
"isHttpOnlyCookieEnabled": false,
"isSecureCookieEnabled": false,
"isPersistentCookieEnabled": false,
"isBackendCertificateValidationEnabled": false,
"applicationServerTimeout": "Default",
"useAlternateUrlForTranslationAndRedirect": false,
"applicationType": "NonWebApp",
"isStateSessionEnabled": false,
"isAccessibleViaZTNAClient": true,
"isDnsResolutionEnabled": false,
"verifiedCustomDomainCertificatesMetadata": null,
"verifiedCustomDomainKeyCredential": null,
"verifiedCustomDomainPasswordCredential": null,
"singleSignOnSettings": null,
"segmentsConfiguration": null,
"onPremisesApplicationSegments": []
}
}
}