Skip to content

Commit

Permalink
Automated commit 'Merge pull request #1897 from sailpoint/devrel-1884
Browse files Browse the repository at this point in the history
Fix status type, should be an integer' by github action: 11863532793
  • Loading branch information
tyler-mairose-sp committed Nov 15, 2024
1 parent 96c800a commit 2fa64ff
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ example:
[
{
"id": "464ae7bf791e49fdb74606a2e4a89635",
"status": "204",
"status": 204,
"description": "Governance Group deleted successfully."
}
]
3 changes: 2 additions & 1 deletion idn/beta/schemas/workgroups/WorkgroupDeleteItem.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ properties:
type: string
example: "464ae7bf791e49fdb74606a2e4a89635"
status:
type: string
type: integer
format: int32
description: >
The HTTP response status code returned for an individual Governance Group that is requested for deletion during a bulk delete operation.
Expand Down
7 changes: 4 additions & 3 deletions idn/beta/schemas/workgroups/WorkgroupMemberAddItem.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,17 @@ properties:
The HTTP response status code returned for an individual member that is requested for addition during a bulk add operation.
The HTTP response status code returned for an individual Governance Group is requested for deletion.
The HTTP response status code returned for an individual Governance Group is requested for deletion.
> 201 - Identity is added into Governance Group members list.
> 409 - Identity is already member of Governance Group.
type: string
example: "201"
type: integer
format: int32
example: 201
description:
description: >
Human readable status description and containing additional
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ example:
[
{
"id": "464ae7bf791e49fdb74606a2e4a89635",
"status": "201",
"status": 201,
"description": "Identity added to Governance Group members list."
}
]
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ example:
[
{
"id": "464ae7bf791e49fdb74606a2e4a89635",
"status": "204",
"status": 204,
"description": "Identity deleted from Governance Group members list."
}
]
10 changes: 4 additions & 6 deletions idn/beta/schemas/workgroups/WorkgroupMemberDeleteItem.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,16 @@ properties:
type: string
example: "464ae7bf791e49fdb74606a2e4a89635"
status:
description: >
description: |
The HTTP response status code returned for an individual member that is requested for deletion during a bulk delete operation.
> 204 - Identity is removed from Governance Group members list.
> 404 - Identity is not member of Governance Group.
type: string
example: "204"
type: integer
format: int32
example: 204
description:
description: >
Human readable status description and containing additional
Expand Down

0 comments on commit 2fa64ff

Please sign in to comment.