-
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 #1544 from sailpoint/devrel-1422
devrel-1422' by github action: 7759597013
- Loading branch information
1 parent
e94f4aa
commit 2e9fe35
Showing
16 changed files
with
383 additions
and
92 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
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 |
---|---|---|
|
@@ -4,24 +4,66 @@ allOf: | |
properties: | ||
description: | ||
type: string | ||
description: The description of the access item | ||
description: Access item's description. | ||
example: "The admin role" | ||
created: | ||
$ref: "../base/DateTime.yaml" | ||
type: string | ||
description: ISO-8601 date-time referring to the time when the object was created. | ||
nullable: true | ||
format: 'date-time' | ||
example: '2018-06-25T20:22:28.104Z' | ||
modified: | ||
$ref: "../base/DateTime.yaml" | ||
type: string | ||
description: ISO-8601 date-time referring to the time when the object was last modified. | ||
nullable: true | ||
format: 'date-time' | ||
example: '2018-06-25T20:22:28.104Z' | ||
synced: | ||
$ref: "../base/DateTime.yaml" | ||
type: string | ||
description: >- | ||
ISO-8601 date-time referring to the date-time when object was queued to be synced into search database for use in the search API. | ||
This date-time changes anytime there is an update to the object, which triggers a synchronization event being sent to the search database. | ||
There may be some delay between the `synced` time and the time when the updated data is actually available in the search API. | ||
nullable: true | ||
format: 'date-time' | ||
example: '2018-06-25T20:22:33.104Z' | ||
enabled: | ||
type: boolean | ||
description: Indicates whether the access item is currently enabled. | ||
default: false | ||
example: true | ||
requestable: | ||
type: boolean | ||
description: Indicates whether the access item can be requested. | ||
default: true | ||
example: true | ||
description: Indicates if the access can be requested | ||
requestCommentsRequired: | ||
type: boolean | ||
description: Indicates if comments are required when requesting access | ||
description: Indicates whether comments are required for requests to access the item. | ||
default: false | ||
example: false | ||
owner: | ||
$ref: "../identity/Owner.yaml" | ||
type: object | ||
description: Owner's identity. | ||
properties: | ||
type: | ||
type: string | ||
description: Owner's DTO type. | ||
enum: | ||
- IDENTITY | ||
example: IDENTITY | ||
id: | ||
type: string | ||
description: Owner's identity ID. | ||
example: 2c9180a46faadee4016fb4e018c20639 | ||
name: | ||
type: string | ||
description: Owner's display name. | ||
example: Support | ||
email: | ||
type: string | ||
description: Owner's email. | ||
example: [email protected] | ||
|
44 changes: 41 additions & 3 deletions
44
idn/v3/schemas/search/model/access/profile/AccessProfileDocument.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,56 @@ | ||
description: >- | ||
This is more of a complete representation of an access profile. | ||
More complete representation of an access profile. | ||
allOf: | ||
- $ref: '../../base/BaseDocument.yaml' | ||
- $ref: '../BaseAccess.yaml' | ||
- type: object | ||
required: ["id", "name", "_type"] | ||
properties: | ||
id: | ||
type: string | ||
description: Access profile's ID. | ||
example: 2c9180825a6c1adc015a71c9023f0818 | ||
name: | ||
type: string | ||
description: Access profile's name. | ||
example: Cloud Eng | ||
_type: | ||
description: >- | ||
Access profile's document type. | ||
This enum represents the currently supported document types. | ||
Additional values may be added in the future without notice. | ||
type: string | ||
enum: | ||
- accessprofile | ||
- accountactivity | ||
- account | ||
- aggregation | ||
- entitlement | ||
- event | ||
- identity | ||
- role | ||
example: accessprofile | ||
source: | ||
$ref: '../../base/Reference.yaml' | ||
type: object | ||
description: Access profile's source. | ||
properties: | ||
id: | ||
type: string | ||
description: Source's ID. | ||
example: ff8081815757d4fb0157588f3d9d008f | ||
name: | ||
type: string | ||
description: Source's name. | ||
example: Employees | ||
entitlements: | ||
type: array | ||
description: Entitlements the access profile has access to. | ||
items: | ||
$ref: '../../entitlement/BaseEntitlement.yaml' | ||
entitlementCount: | ||
type: integer | ||
description: Number of entitlements. | ||
example: 5 | ||
tags: | ||
$ref: '../../base/Tags.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
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
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,10 @@ | ||
type: object | ||
properties: | ||
id: | ||
type: string | ||
example: 2c91809c6faade77016fb4f0b63407ae | ||
description: Access profile's unique ID. | ||
name: | ||
type: string | ||
example: Admin Access | ||
description: Access profile's display name. |
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,10 @@ | ||
type: object | ||
properties: | ||
id: | ||
type: string | ||
example: b009b6e3-b56d-41d9-8735-cb532ea0b017 | ||
description: Segment's unique ID. | ||
name: | ||
type: string | ||
example: Test Segment | ||
description: Segment's display name. |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
type: array | ||
description: Tags that have been applied to the object. | ||
items: | ||
type: string | ||
example: | ||
|
Oops, something went wrong.