-
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 #7 from sailpoint/NEROCKET-183-78
NEROCKET-183-78 adding profile type role api docs based on ticket' by github action: 6235671297
- Loading branch information
1 parent
7c4f0b4
commit 63662ed
Showing
6 changed files
with
61 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
post: | ||
summary: Create a profile type role | ||
description: This endpoint can create a profile type role. NOTE- The ability to toggle Allow/Block is done through the Profile Type | ||
operationId: createProfileTypeRole | ||
tags: | ||
- profile type roles | ||
requestBody: | ||
$ref: "../requestBodies/POST/ProfileTypeRoles.yaml" | ||
responses: | ||
'200': | ||
$ref: "../responses/ProfileTypeRoles.yaml" | ||
'400': | ||
$ref: "../responses/400.yaml" | ||
'500': | ||
$ref: "../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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
required: true | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
properties: | ||
form: | ||
type: object | ||
$ref: "../../schemas/POST/ProfileTypeRoles.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,9 @@ | ||
description: Expected response to a valid request | ||
content: | ||
application/json: | ||
schema: | ||
type: object | ||
properties: | ||
form: | ||
type: object | ||
$ref: '../schemas/GET/ProfileTypeRoles.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,14 @@ | ||
type: object | ||
properties: | ||
profile_type_id: | ||
type: string | ||
description: The id of the profile type | ||
example: 2eb5773f-2486-452f-bdb3-796133b30862 | ||
role_id: | ||
type: string | ||
description: The id of the role | ||
example: 2eb5773f-2486-452f-bdb3-796133b30862 | ||
id: | ||
type: string | ||
description: The id of the profile type role | ||
example: 2e06b876-f456-473d-bd65-b6435e0b6b2d |
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,11 @@ | ||
type: object | ||
properties: | ||
profile_type_id: | ||
type: string | ||
description: The id of the profile type | ||
example: 2eb5773f-2486-452f-bdb3-796133b30862 | ||
role_id: | ||
type: string | ||
description: The id of the role | ||
example: 2eb5773f-2486-452f-bdb3-796133b30862 | ||
|