-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automated commit 'Merge pull request #1530 from sailpoint/michelle.kl…
…eiman/ADI-1785 michelle.kleiman/ADI-1785' by github action: 7789730980
- Loading branch information
1 parent
b3ea362
commit 4ec676b
Showing
4 changed files
with
114 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
get: | ||
tags: | ||
- Access Request Identity Metrics | ||
summary: Return access request identity metrics | ||
description: >- | ||
Use this API to return information access metrics. | ||
operationId: getAccessRequestIdentityMetrics | ||
parameters: | ||
- name: identityId | ||
in: path | ||
description: Identity's ID. | ||
required: true | ||
schema: | ||
type: string | ||
example: '7025c863-c270-4ba6-beea-edf3cb091573' | ||
- name: requestedObjectId | ||
in: path | ||
description: Requested access item's ID. | ||
required: true | ||
schema: | ||
type: string | ||
example: '2db501be-f0fb-4cc5-a695-334133c52891' | ||
- name: type | ||
in: path | ||
description: Requested access item's type. | ||
required: true | ||
schema: | ||
type: string | ||
items: | ||
$ref: '../schemas/AccessItemRef.yaml' | ||
example: ENTITLEMENT | ||
security: | ||
- UserContextAuth: [idn:access-request-approvals:read] | ||
responses: | ||
'200': | ||
description: Summary of the resource access and source activity for the group of identities sharing a manager with the provided identity. | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
items: | ||
$ref: '../schemas/AccessRequestIdentityMetrics.yaml' | ||
'400': | ||
$ref: '../../v3/responses/400.yaml' | ||
'401': | ||
$ref: '../../v3/responses/401.yaml' | ||
'403': | ||
$ref: '../../v3/responses/403.yaml' | ||
'429': | ||
$ref: '../../v3/responses/429.yaml' | ||
'500': | ||
$ref: '../../v3/responses/500.yaml' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
type: object | ||
properties: | ||
identitiesWithAccess: | ||
type: integer | ||
format: int64 | ||
nullable: true | ||
description: | ||
Number of identities who share a manager with the identity requesting access and have already been granted the access item in question. | ||
example: 8 | ||
identitiesWithActivity: | ||
type: integer | ||
format: int64 | ||
nullable: true | ||
description: >- | ||
Number of identities who share a manager with the identity requesting access and have activity within the associated source. | ||
example: 5 | ||
totalIdentities: | ||
type: integer | ||
format: int64 | ||
nullable: true | ||
description: >- | ||
Total number of identities who share a manager with the identity requesting access. | ||
example: 10 | ||
squadAvailable: | ||
type: boolean | ||
default: false | ||
description: >- | ||
True if the manager of the identity requesting access can be found. | ||
False if the identity has no manager. | ||
example: true | ||
validActivityObject: | ||
type: boolean | ||
default: false | ||
description: >- | ||
True if the requested access item is associated with a single Activity Data Insights connector source. | ||
False if the requested access item type is a role. If it's a role, it matches to multiple sources, | ||
so a single relevant source can't be determined for activity metrics. | ||
example: true | ||
activitySourceConfigured: | ||
type: boolean | ||
default: false | ||
description: >- | ||
True if the Activity Data Insights connector is configured for the source associated with the requested access item. | ||
False if the matching Activity Data Insights connector is not configured. | ||
example: true | ||
requestedObjectActive: | ||
type: boolean | ||
default: false | ||
description: >- | ||
True if the requested access item exists and is available. | ||
False if the requested access item is either missing or deleted. | ||
example: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters