Skip to content

Commit

Permalink
Apply automatic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-mairose-sp authored and github-actions[bot] committed Nov 26, 2024
1 parent 8c04ddb commit 9d8237e
Show file tree
Hide file tree
Showing 6 changed files with 14,834 additions and 14,772 deletions.
98 changes: 67 additions & 31 deletions dereferenced/deref-sailpoint-api.v2024.json
Original file line number Diff line number Diff line change
Expand Up @@ -388815,7 +388815,7 @@
"post": {
"operationId": "updateAttributeKeyAndValueToRole",
"summary": "Add a Metadata to Role.",
"description": "This API initialize a request to add a single Access Model Metadata to a role by attribute key and attribute value. A token with ORG_ADMIN, ROLE_ADMIN ROLE_SUBADMIN authority is required to call this API. Custom metadata update, including ADD and REPLACE need suit licensed.",
"description": "This API initialize a request to add a single Access Model Metadata to a role by attribute key and attribute value. A token with ORG_ADMIN, ROLE_ADMIN ROLE_SUBADMIN authority is required to call this API. The maximum number of attributes in one role is 25. Custom metadata update, including ADD and REPLACE need suit licensed.",
"tags": [
"Roles"
],
Expand Down Expand Up @@ -390272,11 +390272,11 @@
"description": "The operation to be performed",
"type": "string",
"enum": [
"add",
"remove",
"replace"
"ADD",
"REMOVE",
"REPLACE"
],
"example": "replace"
"example": "REPLACE"
},
"replaceScope": {
"description": "The choice of update scope.",
Expand Down Expand Up @@ -390731,11 +390731,11 @@
"description": "The operation to be performed",
"type": "string",
"enum": [
"add",
"remove",
"replace"
"ADD",
"REMOVE",
"REPLACE"
],
"example": "replace"
"example": "REPLACE"
},
"replaceScope": {
"description": "The choice of update scope.",
Expand Down Expand Up @@ -392032,11 +392032,11 @@
"description": "The operation to be performed",
"type": "string",
"enum": [
"add",
"remove",
"replace"
"ADD",
"REMOVE",
"REPLACE"
],
"example": "replace"
"example": "REPLACE"
},
"replaceScope": {
"description": "The choice of update scope.",
Expand Down Expand Up @@ -392894,10 +392894,15 @@
"get": {
"operationId": "getBulkUpdateStatus",
"summary": "Get Bulk-Update Statuses",
"description": "This API returns a list of all bulk update process status of the tenant.\nA token with ORG_ADMIN, ROLE_ADMIN ROLE_SUBADMIN authority is required to call this API. ",
"description": "This API returns a list of all unfinished bulk update process status of the tenant.",
"x-sailpoint-userLevels": [
"ORG_ADMIN",
"ROLE_ADMIN",
"ROLE_SUBADMIN"
],
"security": [
{
"UserContextAuth": [
"userAuth": [
"idn:role:update",
"idn:role-checked:update"
]
Expand All @@ -392908,7 +392913,7 @@
],
"responses": {
"200": {
"description": "successfully get the status of all bulk updates.",
"description": "successfully get the status of all unfinished bulk updates request.",
"content": {
"application/json": {
"schema": {
Expand All @@ -392928,13 +392933,11 @@
},
"status": {
"type": "string",
"description": "The status of the bulk update request, could also checked by getBulkUpdateStatus API",
"description": "The status of the bulk update request, only list unfinished request's status, the status could also checked by getBulkUpdateStatus API",
"enum": [
"CREATED",
"PRE_PROCESS",
"PRE_PROCESS_COMPLETED",
"POST_PROCESS",
"COMPLETED",
"CHUNK_PENDING",
"CHUNK_PROCESSING"
],
Expand Down Expand Up @@ -405482,6 +405485,39 @@
}
}
},
"RoleGetAllBulkUpdateResponse": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "ID of the task which is executing the bulk update. This also used in to the bulk-update/** API to track status.",
"example": "2c9180867817ac4d017817c491119a20"
},
"type": {
"type": "string",
"description": "Type of the bulk update object.",
"example": "Role"
},
"status": {
"type": "string",
"description": "The status of the bulk update request, only list unfinished request's status, the status could also checked by getBulkUpdateStatus API",
"enum": [
"CREATED",
"PRE_PROCESS",
"POST_PROCESS",
"CHUNK_PENDING",
"CHUNK_PROCESSING"
],
"example": "CREATED"
},
"created": {
"type": "string",
"description": "Time when the bulk update request was created",
"format": "date-time",
"example": "2020-10-08T18:33:52.029Z"
}
}
},
"RoleListFilterDTO": {
"description": "AMMFilterValues",
"type": "object",
Expand Down Expand Up @@ -405540,11 +405576,11 @@
"description": "The operation to be performed",
"type": "string",
"enum": [
"add",
"remove",
"replace"
"ADD",
"REMOVE",
"REPLACE"
],
"example": "replace"
"example": "REPLACE"
},
"replaceScope": {
"description": "The choice of update scope.",
Expand Down Expand Up @@ -405619,11 +405655,11 @@
"description": "The operation to be performed",
"type": "string",
"enum": [
"add",
"remove",
"replace"
"ADD",
"REMOVE",
"REPLACE"
],
"example": "replace"
"example": "REPLACE"
},
"replaceScope": {
"description": "The choice of update scope.",
Expand Down Expand Up @@ -406512,11 +406548,11 @@
"description": "The operation to be performed",
"type": "string",
"enum": [
"add",
"remove",
"replace"
"ADD",
"REMOVE",
"REPLACE"
],
"example": "replace"
"example": "REPLACE"
},
"replaceScope": {
"description": "The choice of update scope.",
Expand Down
92 changes: 59 additions & 33 deletions dereferenced/deref-sailpoint-api.v2024.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -293754,7 +293754,7 @@ paths:
post:
operationId: updateAttributeKeyAndValueToRole
summary: Add a Metadata to Role.
description: 'This API initialize a request to add a single Access Model Metadata to a role by attribute key and attribute value. A token with ORG_ADMIN, ROLE_ADMIN ROLE_SUBADMIN authority is required to call this API. Custom metadata update, including ADD and REPLACE need suit licensed.'
description: 'This API initialize a request to add a single Access Model Metadata to a role by attribute key and attribute value. A token with ORG_ADMIN, ROLE_ADMIN ROLE_SUBADMIN authority is required to call this API. The maximum number of attributes in one role is 25. Custom metadata update, including ADD and REPLACE need suit licensed.'
tags:
- Roles
security:
Expand Down Expand Up @@ -294864,10 +294864,10 @@ paths:
description: The operation to be performed
type: string
enum:
- add
- remove
- replace
example: replace
- ADD
- REMOVE
- REPLACE
example: REPLACE
replaceScope:
description: The choice of update scope.
type: string
Expand Down Expand Up @@ -295212,10 +295212,10 @@ paths:
description: The operation to be performed
type: string
enum:
- add
- remove
- replace
example: replace
- ADD
- REMOVE
- REPLACE
example: REPLACE
replaceScope:
description: The choice of update scope.
type: string
Expand Down Expand Up @@ -296253,10 +296253,10 @@ paths:
description: The operation to be performed
type: string
enum:
- add
- remove
- replace
example: replace
- ADD
- REMOVE
- REPLACE
example: REPLACE
replaceScope:
description: The choice of update scope.
type: string
Expand Down Expand Up @@ -296874,18 +296874,20 @@ paths:
get:
operationId: getBulkUpdateStatus
summary: Get Bulk-Update Statuses
description: |-
This API returns a list of all bulk update process status of the tenant.
A token with ORG_ADMIN, ROLE_ADMIN ROLE_SUBADMIN authority is required to call this API.
description: This API returns a list of all unfinished bulk update process status of the tenant.
x-sailpoint-userLevels:
- ORG_ADMIN
- ROLE_ADMIN
- ROLE_SUBADMIN
security:
- UserContextAuth:
- userAuth:
- 'idn:role:update'
- 'idn:role-checked:update'
tags:
- Roles
responses:
'200':
description: successfully get the status of all bulk updates.
description: successfully get the status of all unfinished bulk updates request.
content:
application/json:
schema:
Expand All @@ -296903,13 +296905,11 @@ paths:
example: Role
status:
type: string
description: 'The status of the bulk update request, could also checked by getBulkUpdateStatus API'
description: 'The status of the bulk update request, only list unfinished request''s status, the status could also checked by getBulkUpdateStatus API'
enum:
- CREATED
- PRE_PROCESS
- PRE_PROCESS_COMPLETED
- POST_PROCESS
- COMPLETED
- CHUNK_PENDING
- CHUNK_PROCESSING
example: CREATED
Expand Down Expand Up @@ -306813,6 +306813,32 @@ components:
description: Time when the bulk update request was created
format: date-time
example: 2020-10-08T18:33:52.029Z
RoleGetAllBulkUpdateResponse:
type: object
properties:
id:
type: string
description: ID of the task which is executing the bulk update. This also used in to the bulk-update/** API to track status.
example: 2c9180867817ac4d017817c491119a20
type:
type: string
description: Type of the bulk update object.
example: Role
status:
type: string
description: 'The status of the bulk update request, only list unfinished request''s status, the status could also checked by getBulkUpdateStatus API'
enum:
- CREATED
- PRE_PROCESS
- POST_PROCESS
- CHUNK_PENDING
- CHUNK_PROCESSING
example: CREATED
created:
type: string
description: Time when the bulk update request was created
format: date-time
example: 2020-10-08T18:33:52.029Z
RoleListFilterDTO:
description: AMMFilterValues
type: object
Expand Down Expand Up @@ -306883,10 +306909,10 @@ components:
description: The operation to be performed
type: string
enum:
- add
- remove
- replace
example: replace
- ADD
- REMOVE
- REPLACE
example: REPLACE
replaceScope:
description: The choice of update scope.
type: string
Expand Down Expand Up @@ -306940,10 +306966,10 @@ components:
description: The operation to be performed
type: string
enum:
- add
- remove
- replace
example: replace
- ADD
- REMOVE
- REPLACE
example: REPLACE
replaceScope:
description: The choice of update scope.
type: string
Expand Down Expand Up @@ -307685,10 +307711,10 @@ components:
description: The operation to be performed
type: string
enum:
- add
- remove
- replace
example: replace
- ADD
- REMOVE
- REPLACE
example: REPLACE
replaceScope:
description: The choice of update scope.
type: string
Expand Down
Loading

0 comments on commit 9d8237e

Please sign in to comment.