Update to powershell SDK docs: 13903254328

This commit is contained in:
developer-relations-sp
2025-03-17 15:24:32 +00:00
parent 63b6e70fec
commit 9ed39129fb
15 changed files with 55 additions and 19 deletions

View File

@@ -20,6 +20,7 @@ Name | Type | Description | Notes
**VarFilter** | **String** | JSON path expression that will limit which events the trigger will fire on | [optional]
**Description** | **String** | Description of the event trigger | [optional]
**AttributeToFilter** | **String** | The attribute to filter on | [optional]
**FormDefinitionId** | **String** | Form definition's unique identifier. | [optional]
## Examples
@@ -28,7 +29,8 @@ Name | Type | Description | Notes
$EventAttributes = Initialize-PSSailpoint.V2024EventAttributes -Id idn:identity-attributes-changed `
-VarFilter $.changes[?(@.attribute == 'manager')] `
-Description Triggered when an identity's manager attribute changes `
-AttributeToFilter LifecycleState
-AttributeToFilter LifecycleState `
-FormDefinitionId Admin_Access_Request_Form
```
- Convert the resource to JSON

View File

@@ -21,16 +21,18 @@ Name | Type | Description | Notes
**TimeZone** | **String** | Time zone identifier | [optional]
**WeeklyDays** | **[]String** | Scheduled days of the week for execution | [optional]
**WeeklyTimes** | **[]String** | Scheduled execution times | [optional]
**YearlyTimes** | **[]String** | Scheduled execution times | [optional]
## Examples
- Prepare the resource
```powershell
$ScheduledAttributes = Initialize-PSSailpoint.V2024ScheduledAttributes -CronString 0 9 * * 1 `
-Frequency null `
-Frequency daily `
-TimeZone America/Chicago `
-WeeklyDays Monday `
-WeeklyTimes Monday
-WeeklyTimes Monday `
-YearlyTimes 1969-12-31T09:00:00.000Z
```
- Convert the resource to JSON

View File

@@ -20,6 +20,7 @@ Name | Type | Description | Notes
**VarFilter** | **String** | JSON path expression that will limit which events the trigger will fire on | [optional]
**Description** | **String** | Additonal context about the external trigger | [optional]
**AttributeToFilter** | **String** | The attribute to filter on | [optional]
**FormDefinitionId** | **String** | Form definition's unique identifier. | [optional]
**Name** | **String** | A unique name for the external trigger | [optional]
**ClientId** | **String** | OAuth Client ID to authenticate with this trigger | [optional]
**Url** | **String** | URL to invoke this workflow | [optional]
@@ -28,6 +29,7 @@ Name | Type | Description | Notes
**TimeZone** | **String** | Time zone identifier | [optional]
**WeeklyDays** | **[]String** | Scheduled days of the week for execution | [optional]
**WeeklyTimes** | **[]String** | Scheduled execution times | [optional]
**YearlyTimes** | **[]String** | Scheduled execution times | [optional]
## Examples
@@ -37,14 +39,16 @@ $WorkflowTriggerAttributes = Initialize-PSSailpoint.V2024WorkflowTriggerAttribut
-VarFilter $.changes[?(@.attribute == 'manager')] `
-Description Run a search and notify the results `
-AttributeToFilter LifecycleState `
-FormDefinitionId Admin_Access_Request_Form `
-Name search-and-notify `
-ClientId 87e239b2-b85b-4bde-b9a7-55bf304ddcdc `
-Url https://tenant.api.identitynow.com/beta/workflows/execute/external/c79e0079-562c-4df5-aa73-60a9e25c916d `
-CronString 0 9 * * 1 `
-Frequency null `
-Frequency daily `
-TimeZone America/Chicago `
-WeeklyDays Monday `
-WeeklyTimes Monday
-WeeklyTimes Monday `
-YearlyTimes 1969-12-31T09:00:00.000Z
```
- Convert the resource to JSON