-
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.
Loading status checks…
Automated commit 'Merge pull request #1752 from sailpoint/fix/v3Gener…
…icRuleToTransformRule update generic rule to now be transform rule' by github action: 10251661791
1 parent
0b245ab
commit 8aee5fc
Showing
3 changed files
with
11 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
title: rule | ||
oneOf: | ||
- $ref: './rules/GenericRule.yaml' | ||
- $ref: './rules/TransformRule.yaml' | ||
- $ref: './rules/GenerateRandomString.yaml' | ||
- $ref: './rules/GetReferenceIdentityAttribute.yaml' |
This file was deleted.
Oops, something went wrong.
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 @@ | ||
type: object | ||
required: | ||
- name | ||
properties: | ||
name: | ||
type: string | ||
description: This is the name of the Transform rule that needs to be invoked by the transform | ||
example: 'Transform Calculation Rule' | ||
requiresPeriodicRefresh: | ||
$ref: '../RequiresPeriodicRefresh.yaml' |