-
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.
Loading status checks…
Automated commit 'Added configType to path param for delete work reas…
…signment config (#1877) * Added configType to path param for delete work reassignment config * Split delete operation into separate file' by github action: 11618922288
1 parent
98cdde3
commit 982b918
Showing
6 changed files
with
83 additions
and
68 deletions.
There are no files selected for viewing
35 changes: 35 additions & 0 deletions
35
idn/beta/paths/reassignment-configuration-config-type.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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
delete: | ||
operationId: deleteReassignmentConfiguration | ||
tags: | ||
- Work Reassignment | ||
summary: Delete Reassignment Configuration | ||
description: >- | ||
Deletes a single reassignment configuration for the specified identity | ||
security: | ||
- userAuth: [idn:reassignment-configuration:delete] | ||
parameters: | ||
- in: path | ||
name: identityId | ||
schema: | ||
type: string | ||
description: unique identity id | ||
required: true | ||
example: 2c91808781a71ddb0181b9090b5c504e | ||
- in: path | ||
name: configType | ||
schema: | ||
$ref: '../schemas/work-reassignment/ConfigTypeEnum.yaml' | ||
required: true | ||
responses: | ||
'204': | ||
description: Reassignment Configuration deleted | ||
'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
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
44 changes: 44 additions & 0 deletions
44
idn/v2024/paths/reassignment-configuration-config-type.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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
delete: | ||
operationId: deleteReassignmentConfiguration | ||
tags: | ||
- Work Reassignment | ||
summary: Delete Reassignment Configuration | ||
description: >- | ||
Deletes a single reassignment configuration for the specified identity | ||
security: | ||
- userAuth: | ||
- idn:reassignment-configuration:delete | ||
parameters: | ||
- in: path | ||
name: identityId | ||
schema: | ||
type: string | ||
description: unique identity id | ||
required: true | ||
example: 2c91808781a71ddb0181b9090b5c504e | ||
- in: path | ||
name: configType | ||
schema: | ||
$ref: '../../beta/schemas/work-reassignment/ConfigTypeEnum.yaml' | ||
required: true | ||
- name: X-SailPoint-Experimental | ||
in: header | ||
description: Use this header to enable this experimental API. | ||
example: true | ||
schema: | ||
type: string | ||
default: true | ||
required: true | ||
responses: | ||
'204': | ||
description: Reassignment Configuration deleted | ||
'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