-
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 #1509 from sailpoint/fix/SpConfi…
…gResponses Fix the response schema for sp config endpoints' by github action: 7120554106
- Loading branch information
1 parent
bb7cb9d
commit 53f0c40
Showing
7 changed files
with
44 additions
and
23 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
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,10 @@ | ||
allOf: | ||
- $ref: "./SpConfigJob.yaml" | ||
- type: object | ||
required: | ||
- description | ||
properties: | ||
description: | ||
type: string | ||
description: Optional user defined description/name for export job. | ||
example: "ETS configuration objects from Acme-Solar sandbox" |
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 @@ | ||
allOf: | ||
- $ref: "./SpConfigExportJob.yaml" | ||
- type: object | ||
required: | ||
- completed | ||
properties: | ||
completed: | ||
type: string | ||
format: 'date-time' | ||
description: The time the job was completed. | ||
example: "2021-05-11T22:23:16Z" |
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,16 @@ | ||
allOf: | ||
- $ref: "./SpConfigJob.yaml" | ||
- type: object | ||
required: | ||
- completed | ||
- message | ||
properties: | ||
message: | ||
type: string | ||
description: This message contains additional information about the overall status of the job. | ||
example: "Download import results for details." | ||
completed: | ||
type: string | ||
format: 'date-time' | ||
description: The time the job was completed. | ||
example: "2021-05-11T22:23:16Z" |
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