Skip to content

Commit

Permalink
Automated commit 'Merge pull request #1599 from sailpoint/khartzke/ID…
Browse files Browse the repository at this point in the history
…NARC-2202

IDNARC-2202 Add reset entitlements to the beta api docs' by github action: 8331705064
  • Loading branch information
tyler-mairose-sp committed Mar 18, 2024
1 parent 5242e92 commit 00cba5f
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 0 deletions.
36 changes: 36 additions & 0 deletions idn/beta/paths/reset-entitlements.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
post:
operationId: resetSourceEntitlements
tags:
- Entitlements
summary: Reset Source Entitlements
description: >-
Removes all entitlements on a specific source.
parameters:
- name: id
in: path
description: ID of source for the entitlement reset
required: true
schema:
type: string
example: 2c91808a7813090a017814121919ecca
responses:
'202':
description: Entitlement source reset task result
content:
application/json:
schema:
$ref: '../../v3/schemas/EntitlementSourceResetBaseReferenceDto.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'
security:
- UserContextAuth: [idn:entitlement:update]
2 changes: 2 additions & 0 deletions idn/sailpoint-api.beta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1205,6 +1205,8 @@ paths:
$ref: './beta/paths/ears-entitlement-bulk-update.yaml'
/entitlements/{id}/entitlement-request-config:
$ref: "./beta/paths/entitlement-request-config.yaml"
/entitlements/reset/sources/{id}:
$ref: './beta/paths/reset-entitlements.yaml'
/entitlements/aggregate/sources/{id}:
$ref: "./beta/paths/load-entitlements.yaml"
/generate-password-reset-token/digit:
Expand Down
14 changes: 14 additions & 0 deletions idn/v3/schemas/EntitlementSourceResetBaseReferenceDto.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
type: object
properties:
type:
type: string
description: The DTO type
example: TASK_RESULT
id:
type: string
description: The task ID of the object to which this reference applies
example: 2c91808568c529c60168cca6f90c1313
name:
type: string
description: Human-readable display name of the object to which this reference applies
example: Entitlement Source Reset

0 comments on commit 00cba5f

Please sign in to comment.