-
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 #1850 from sailpoint/amalta/PLTC…
…ONFHUB-2592 PLTCONFHUB-2592: Config Objects API Docs' by github action: 11294533108
- Loading branch information
1 parent
dae3a5a
commit 715fd9f
Showing
3 changed files
with
50 additions
and
37 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,23 @@ | ||
type: object | ||
title: Config Object Rule | ||
description: Format of Config Hub Object Rules | ||
properties: | ||
path: | ||
type: string | ||
description: JSONPath expression denoting the path within the object where a value substitution should be applied | ||
example: $.enabled | ||
value: | ||
type: object | ||
description: Value to be assigned at the jsonPath location within the object | ||
nullable: true | ||
example: null | ||
mode: | ||
type: array | ||
description: Draft modes to which this rule will apply | ||
items: | ||
type: string | ||
enum: | ||
- RESTORE | ||
- PROMOTE | ||
- UPLOAD | ||
example: [RESTORE, PROMOTE] |
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,17 @@ | ||
type: object | ||
title: Config Object Rules | ||
description: Rules to be applied to the config object during draft process | ||
properties: | ||
takeFromTargetRules: | ||
type: array | ||
items: | ||
$ref: ./SpConfigRule.yaml | ||
defaultRules: | ||
type: array | ||
items: | ||
$ref: ./SpConfigRule.yaml | ||
editable: | ||
type: boolean | ||
default: false | ||
description: Whether this object can be edited | ||
example: true |