Skip to content

Commit

Permalink
Automated commit 'Merge pull request #1393 from sailpoint/devrel-1145
Browse files Browse the repository at this point in the history
devrel-1145' by github action: 6040426441
  • Loading branch information
tyler-mairose-sp committed Aug 31, 2023
1 parent 2ba5f25 commit 6175e18
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 5 deletions.
6 changes: 6 additions & 0 deletions idn/beta/schemas/Source.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ properties:
cluster:
description: Reference to the associated Cluster
type: object
required:
- name
- id
- type
properties:
type:
description: The type of object being referenced
Expand Down Expand Up @@ -237,6 +241,7 @@ properties:
type: boolean
description: >-
When true indicates the source is referenced by an IdentityProfile.
default: false
example: false
managementWorkgroup:
description: Reference to Management Workgroup for this Source
Expand All @@ -260,6 +265,7 @@ properties:
type: boolean
description: >-
When true indicates a healthy source
default: false
example: true
status:
type: string
Expand Down
3 changes: 2 additions & 1 deletion idn/v3/schemas/ApprovalReminderAndEscalationConfig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ properties:
example: 0
maxReminders:
type: integer
description: Maximum number of reminder notification to send to the reviewer before approval escalation. This will only be a positive number.
description: Maximum number of reminder notification to send to the reviewer before approval escalation.
format: int32
minimum: 1
example: 1
fallbackApproverRef:
$ref: './IdentityReferenceWithNameAndEmail.yaml'
6 changes: 6 additions & 0 deletions idn/v3/schemas/Source.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@ properties:
cluster:
description: Reference to the associated Cluster
type: object
required:
- name
- id
- type
properties:
type:
description: The type of object being referenced
Expand Down Expand Up @@ -237,6 +241,7 @@ properties:
type: boolean
description: >-
When true indicates the source is referenced by an IdentityProfile.
default: false
example: false
managementWorkgroup:
description: Reference to Management Workgroup for this Source
Expand All @@ -260,6 +265,7 @@ properties:
type: boolean
description: >-
When true indicates a healthy source
default: false
example: true
status:
type: string
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ properties:
Maximum number of reminder notification to send to the reviewer before
approval escalation.
format: int32
minimum: 1
example: 3
fallbackApproverRef:
$ref: "../IdentityReferenceWithNameAndEmail.yaml"
8 changes: 6 additions & 2 deletions idn/v3/schemas/search/Search.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ properties:
type: array
items:
type: string
example: ["displayName", "+id"]
example:
- 'displayName'
- '+id'

searchAfter:
description: >-
Expand All @@ -101,7 +103,9 @@ properties:
type: array
items:
type: string
example: ["John Doe","2c91808375d8e80a0175e1f88a575221"]
example:
- 'John Doe'
- '2c91808375d8e80a0175e1f88a575221'

filters:
description: >-
Expand Down
10 changes: 8 additions & 2 deletions idn/v3/schemas/search/TextQuery.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,20 @@ properties:
type: array
items:
type: string
example: ["The quick brown fox","3141592", "7"]
example:
- 'The quick brown fox'
- '3141592'
- '7'
fields:
description: >-
The fields to be searched.
type: array
items:
type: string
example: ["displayName","employeeNumber", "roleCount"]
example:
- 'displayName'
- 'employeeNumber'
- 'roleCount'
matchAny:
description: >-
Indicates that at least one of the terms must be found in the specified fields;
Expand Down

0 comments on commit 6175e18

Please sign in to comment.