mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
Update to powershell SDK docs: 13123805130
This commit is contained in:
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-access-model-metadata
|
||||
title: AccessModelMetadata
|
||||
@@ -67,7 +66,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get Access Model Metadata Attribute
|
||||
|
||||
try {
|
||||
Get-V2024AccessModelMetadataAttribute-V2024Key $Key -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024AccessModelMetadataAttribute -V2024Key $Key -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AccessModelMetadataAttribute -V2024Key $Key -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -113,7 +112,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get Access Model Metadata Value
|
||||
|
||||
try {
|
||||
Get-V2024AccessModelMetadataAttributeValue-V2024Key $Key -V2024Value $Value -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024AccessModelMetadataAttributeValue -V2024Key $Key -V2024Value $Value -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AccessModelMetadataAttributeValue -V2024Key $Key -V2024Value $Value -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -157,7 +156,7 @@ $Filters = 'name eq "Privacy"' # String | Filter results using the standard synt
|
||||
# List Access Model Metadata Attributes
|
||||
|
||||
try {
|
||||
Get-V2024AccessModelMetadataAttribute-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024AccessModelMetadataAttribute -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AccessModelMetadataAttribute -V2024XSailPointExperimental $XSailPointExperimental -V2024Filters $Filters
|
||||
@@ -201,7 +200,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# List Access Model Metadata Values
|
||||
|
||||
try {
|
||||
Get-V2024AccessModelMetadataAttributeValue-V2024Key $Key -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024AccessModelMetadataAttributeValue -V2024Key $Key -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AccessModelMetadataAttributeValue -V2024Key $Key -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-access-profiles
|
||||
title: AccessProfiles
|
||||
@@ -180,7 +179,7 @@ $AccessProfile = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToAccessProfile -Json $AccessProfile
|
||||
New-V2024AccessProfile-V2024AccessProfile $Result
|
||||
New-V2024AccessProfile -V2024AccessProfile $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024AccessProfile -V2024AccessProfile $AccessProfile
|
||||
@@ -226,7 +225,7 @@ $Id = "2c91808a7813090a017814121919ecca" # String | ID of the Access Profile to
|
||||
# Delete the specified Access Profile
|
||||
|
||||
try {
|
||||
Remove-V2024AccessProfile-V2024Id $Id
|
||||
Remove-V2024AccessProfile -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024AccessProfile -V2024Id $Id
|
||||
@@ -277,7 +276,7 @@ $AccessProfileBulkDeleteRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToAccessProfileBulkDeleteRequest -Json $AccessProfileBulkDeleteRequest
|
||||
Remove-V2024AccessProfilesInBulk-V2024AccessProfileBulkDeleteRequest $Result
|
||||
Remove-V2024AccessProfilesInBulk -V2024AccessProfileBulkDeleteRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024AccessProfilesInBulk -V2024AccessProfileBulkDeleteRequest $AccessProfileBulkDeleteRequest
|
||||
@@ -319,7 +318,7 @@ $Id = "2c9180837ca6693d017ca8d097500149" # String | ID of the Access Profile
|
||||
# Get an Access Profile
|
||||
|
||||
try {
|
||||
Get-V2024AccessProfile-V2024Id $Id
|
||||
Get-V2024AccessProfile -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AccessProfile -V2024Id $Id
|
||||
@@ -373,7 +372,7 @@ $Sorters = "name,-modified" # String | Sort results using the standard syntax de
|
||||
# List Access Profile's Entitlements
|
||||
|
||||
try {
|
||||
Get-V2024AccessProfileEntitlements-V2024Id $Id
|
||||
Get-V2024AccessProfileEntitlements -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AccessProfileEntitlements -V2024Id $Id -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -509,7 +508,7 @@ $Id = "2c91808a7813090a017814121919ecca" # String | ID of the Access Profile to
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024AccessProfile-V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
Update-V2024AccessProfile -V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024AccessProfile -V2024Id $Id -V2024JsonPatchOperation $JsonPatchOperation
|
||||
@@ -562,7 +561,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToAccessProfileBulkUpdateRequestInner -Json $AccessProfileBulkUpdateRequestInner
|
||||
Update-V2024AccessProfilesInBulk-V2024XSailPointExperimental $XSailPointExperimental -V2024AccessProfileBulkUpdateRequestInner $Result
|
||||
Update-V2024AccessProfilesInBulk -V2024XSailPointExperimental $XSailPointExperimental -V2024AccessProfileBulkUpdateRequestInner $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024AccessProfilesInBulk -V2024XSailPointExperimental $XSailPointExperimental -V2024AccessProfileBulkUpdateRequestInner $AccessProfileBulkUpdateRequestInner
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-access-request-approvals
|
||||
title: AccessRequestApprovals
|
||||
@@ -86,7 +85,7 @@ $CommentDto = @"{
|
||||
# Approve Access Request Approval
|
||||
|
||||
try {
|
||||
Approve-V2024AccessRequest-V2024ApprovalId $ApprovalId
|
||||
Approve-V2024AccessRequest -V2024ApprovalId $ApprovalId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Approve-V2024AccessRequest -V2024ApprovalId $ApprovalId -V2024CommentDto $CommentDto
|
||||
@@ -135,7 +134,7 @@ $ForwardApprovalDto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToForwardApprovalDto -Json $ForwardApprovalDto
|
||||
Invoke-V2024ForwardAccessRequest-V2024ApprovalId $ApprovalId -V2024ForwardApprovalDto $Result
|
||||
Invoke-V2024ForwardAccessRequest -V2024ApprovalId $ApprovalId -V2024ForwardApprovalDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Invoke-V2024ForwardAccessRequest -V2024ApprovalId $ApprovalId -V2024ForwardApprovalDto $ForwardApprovalDto
|
||||
@@ -229,7 +228,7 @@ $Count = $false # Boolean | If this is true, the *X-Total-Count* response header
|
||||
# Access Request Approvers
|
||||
|
||||
try {
|
||||
Get-V2024AccessRequestApprovers-V2024AccessRequestId $AccessRequestId
|
||||
Get-V2024AccessRequestApprovers -V2024AccessRequestId $AccessRequestId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AccessRequestApprovers -V2024AccessRequestId $AccessRequestId -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count
|
||||
@@ -387,7 +386,7 @@ $CommentDto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToCommentDto -Json $CommentDto
|
||||
Deny-V2024AccessRequest-V2024ApprovalId $ApprovalId -V2024CommentDto $Result
|
||||
Deny-V2024AccessRequest -V2024ApprovalId $ApprovalId -V2024CommentDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Deny-V2024AccessRequest -V2024ApprovalId $ApprovalId -V2024CommentDto $CommentDto
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-access-request-identity-metrics
|
||||
title: AccessRequestIdentityMetrics
|
||||
@@ -62,7 +61,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Return access request identity metrics
|
||||
|
||||
try {
|
||||
Get-V2024AccessRequestIdentityMetrics-V2024IdentityId $IdentityId -V2024RequestedObjectId $RequestedObjectId -V2024Type $Type -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024AccessRequestIdentityMetrics -V2024IdentityId $IdentityId -V2024RequestedObjectId $RequestedObjectId -V2024Type $Type -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AccessRequestIdentityMetrics -V2024IdentityId $IdentityId -V2024RequestedObjectId $RequestedObjectId -V2024Type $Type -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-access-requests
|
||||
title: AccessRequests
|
||||
@@ -80,7 +79,7 @@ $BulkApproveAccessRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToBulkApproveAccessRequest -Json $BulkApproveAccessRequest
|
||||
Approve-V2024BulkAccessRequest-V2024BulkApproveAccessRequest $Result
|
||||
Approve-V2024BulkAccessRequest -V2024BulkApproveAccessRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Approve-V2024BulkAccessRequest -V2024BulkApproveAccessRequest $BulkApproveAccessRequest
|
||||
@@ -128,7 +127,7 @@ $CancelAccessRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToCancelAccessRequest -Json $CancelAccessRequest
|
||||
Suspend-V2024AccessRequest-V2024CancelAccessRequest $Result
|
||||
Suspend-V2024AccessRequest -V2024CancelAccessRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Suspend-V2024AccessRequest -V2024CancelAccessRequest $CancelAccessRequest
|
||||
@@ -176,7 +175,7 @@ $BulkCancelAccessRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToBulkCancelAccessRequest -Json $BulkCancelAccessRequest
|
||||
Suspend-V2024AccessRequestInBulk-V2024BulkCancelAccessRequest $Result
|
||||
Suspend-V2024AccessRequestInBulk -V2024BulkCancelAccessRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Suspend-V2024AccessRequestInBulk -V2024BulkCancelAccessRequest $BulkCancelAccessRequest
|
||||
@@ -237,7 +236,7 @@ $CloseAccessRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToCloseAccessRequest -Json $CloseAccessRequest
|
||||
Close-V2024AccessRequest-V2024XSailPointExperimental $XSailPointExperimental -V2024CloseAccessRequest $Result
|
||||
Close-V2024AccessRequest -V2024XSailPointExperimental $XSailPointExperimental -V2024CloseAccessRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Close-V2024AccessRequest -V2024XSailPointExperimental $XSailPointExperimental -V2024CloseAccessRequest $CloseAccessRequest
|
||||
@@ -363,7 +362,7 @@ $AccessRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToAccessRequest -Json $AccessRequest
|
||||
New-V2024AccessRequest-V2024AccessRequest $Result
|
||||
New-V2024AccessRequest -V2024AccessRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024AccessRequest -V2024AccessRequest $AccessRequest
|
||||
@@ -594,7 +593,7 @@ $AccessRequestConfig = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToAccessRequestConfig -Json $AccessRequestConfig
|
||||
Set-V2024AccessRequestConfig-V2024AccessRequestConfig $Result
|
||||
Set-V2024AccessRequestConfig -V2024AccessRequestConfig $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Set-V2024AccessRequestConfig -V2024AccessRequestConfig $AccessRequestConfig
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-account-activities
|
||||
title: AccountActivities
|
||||
@@ -87,7 +86,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | The account activity id
|
||||
# Get an Account Activity
|
||||
|
||||
try {
|
||||
Get-V2024AccountActivity-V2024Id $Id
|
||||
Get-V2024AccountActivity -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AccountActivity -V2024Id $Id
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-account-aggregations
|
||||
title: AccountAggregations
|
||||
@@ -71,7 +70,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# In-progress Account Aggregation status
|
||||
|
||||
try {
|
||||
Get-V2024AccountAggregationStatus-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024AccountAggregationStatus -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AccountAggregationStatus -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-account-usages
|
||||
title: AccountUsages
|
||||
@@ -63,7 +62,7 @@ $Sorters = "-date" # String | Sort results using the standard syntax described i
|
||||
# Returns account usage insights
|
||||
|
||||
try {
|
||||
Get-V2024UsagesByAccountId-V2024AccountId $AccountId
|
||||
Get-V2024UsagesByAccountId -V2024AccountId $AccountId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024UsagesByAccountId -V2024AccountId $AccountId -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Sorters $Sorters
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-accounts
|
||||
title: Accounts
|
||||
@@ -115,7 +114,7 @@ $AccountAttributesCreate = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToAccountAttributesCreate -Json $AccountAttributesCreate
|
||||
New-V2024Account-V2024AccountAttributesCreate $Result
|
||||
New-V2024Account -V2024AccountAttributesCreate $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024Account -V2024AccountAttributesCreate $AccountAttributesCreate
|
||||
@@ -161,7 +160,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | Account ID.
|
||||
# Delete Account
|
||||
|
||||
try {
|
||||
Remove-V2024Account-V2024Id $Id
|
||||
Remove-V2024Account -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024Account -V2024Id $Id
|
||||
@@ -211,7 +210,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Remove Account
|
||||
|
||||
try {
|
||||
Remove-V2024AccountAsync-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Remove-V2024AccountAsync -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024AccountAsync -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -260,7 +259,7 @@ $AccountToggleRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToAccountToggleRequest -Json $AccountToggleRequest
|
||||
Disable-V2024Account-V2024Id $Id -V2024AccountToggleRequest $Result
|
||||
Disable-V2024Account -V2024Id $Id -V2024AccountToggleRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Disable-V2024Account -V2024Id $Id -V2024AccountToggleRequest $AccountToggleRequest
|
||||
@@ -305,7 +304,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Disable IDN Account for Identity
|
||||
|
||||
try {
|
||||
Disable-V2024AccountForIdentity-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Disable-V2024AccountForIdentity -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Disable-V2024AccountForIdentity -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -352,7 +351,7 @@ $IdentitiesAccountsBulkRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToIdentitiesAccountsBulkRequest -Json $IdentitiesAccountsBulkRequest
|
||||
Disable-V2024AccountsForIdentities-V2024XSailPointExperimental $XSailPointExperimental -V2024IdentitiesAccountsBulkRequest $Result
|
||||
Disable-V2024AccountsForIdentities -V2024XSailPointExperimental $XSailPointExperimental -V2024IdentitiesAccountsBulkRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Disable-V2024AccountsForIdentities -V2024XSailPointExperimental $XSailPointExperimental -V2024IdentitiesAccountsBulkRequest $IdentitiesAccountsBulkRequest
|
||||
@@ -401,7 +400,7 @@ $AccountToggleRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToAccountToggleRequest -Json $AccountToggleRequest
|
||||
Enable-V2024Account-V2024Id $Id -V2024AccountToggleRequest $Result
|
||||
Enable-V2024Account -V2024Id $Id -V2024AccountToggleRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Enable-V2024Account -V2024Id $Id -V2024AccountToggleRequest $AccountToggleRequest
|
||||
@@ -446,7 +445,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Enable IDN Account for Identity
|
||||
|
||||
try {
|
||||
Enable-V2024AccountForIdentity-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Enable-V2024AccountForIdentity -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Enable-V2024AccountForIdentity -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -493,7 +492,7 @@ $IdentitiesAccountsBulkRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToIdentitiesAccountsBulkRequest -Json $IdentitiesAccountsBulkRequest
|
||||
Enable-V2024AccountsForIdentities-V2024XSailPointExperimental $XSailPointExperimental -V2024IdentitiesAccountsBulkRequest $Result
|
||||
Enable-V2024AccountsForIdentities -V2024XSailPointExperimental $XSailPointExperimental -V2024IdentitiesAccountsBulkRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Enable-V2024AccountsForIdentities -V2024XSailPointExperimental $XSailPointExperimental -V2024IdentitiesAccountsBulkRequest $IdentitiesAccountsBulkRequest
|
||||
@@ -536,7 +535,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | Account ID.
|
||||
# Account Details
|
||||
|
||||
try {
|
||||
Get-V2024Account-V2024Id $Id
|
||||
Get-V2024Account -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Account -V2024Id $Id
|
||||
@@ -585,7 +584,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Account Entitlements
|
||||
|
||||
try {
|
||||
Get-V2024AccountEntitlements-V2024Id $Id
|
||||
Get-V2024AccountEntitlements -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AccountEntitlements -V2024Id $Id -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count
|
||||
@@ -696,7 +695,7 @@ $AccountAttributes = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToAccountAttributes -Json $AccountAttributes
|
||||
Send-V2024Account-V2024Id $Id -V2024AccountAttributes $Result
|
||||
Send-V2024Account -V2024Id $Id -V2024AccountAttributes $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024Account -V2024Id $Id -V2024AccountAttributes $AccountAttributes
|
||||
@@ -739,7 +738,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | The account id
|
||||
# Reload Account
|
||||
|
||||
try {
|
||||
Submit-V2024ReloadAccount-V2024Id $Id
|
||||
Submit-V2024ReloadAccount -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Submit-V2024ReloadAccount -V2024Id $Id
|
||||
@@ -790,7 +789,7 @@ $AccountUnlockRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToAccountUnlockRequest -Json $AccountUnlockRequest
|
||||
Unlock-V2024Account-V2024Id $Id -V2024AccountUnlockRequest $Result
|
||||
Unlock-V2024Account -V2024Id $Id -V2024AccountUnlockRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Unlock-V2024Account -V2024Id $Id -V2024AccountUnlockRequest $AccountUnlockRequest
|
||||
@@ -848,7 +847,7 @@ $RequestBody = # SystemCollectionsHashtable[] | A list of account update operat
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToRequestBody -Json $RequestBody
|
||||
Update-V2024Account-V2024Id $Id -V2024RequestBody $Result
|
||||
Update-V2024Account -V2024Id $Id -V2024RequestBody $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024Account -V2024Id $Id -V2024RequestBody $RequestBody
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-application-discovery
|
||||
title: ApplicationDiscovery
|
||||
@@ -151,7 +150,7 @@ $File = # System.IO.FileInfo | The CSV file to upload containing `application_n
|
||||
# Upload CSV to Discover Applications
|
||||
|
||||
try {
|
||||
Send-V2024ManualDiscoverApplicationsCsvTemplate-V2024File $File
|
||||
Send-V2024ManualDiscoverApplicationsCsvTemplate -V2024File $File
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024ManualDiscoverApplicationsCsvTemplate -V2024File $File
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-approvals
|
||||
title: Approvals
|
||||
@@ -58,7 +57,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get an approval
|
||||
|
||||
try {
|
||||
Get-V2024Approval-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024Approval -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Approval -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -107,7 +106,7 @@ $Filters = 'filters=status eq PENDING' # String | Filter results using the stand
|
||||
# Get Approvals
|
||||
|
||||
try {
|
||||
Get-V2024Approvals-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024Approvals -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Approvals -V2024XSailPointExperimental $XSailPointExperimental -V2024Mine $Mine -V2024RequesterId $RequesterId -V2024Filters $Filters
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-apps
|
||||
title: Apps
|
||||
@@ -79,7 +78,7 @@ $SourceAppCreateDto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSourceAppCreateDto -Json $SourceAppCreateDto
|
||||
New-V2024SourceApp-V2024XSailPointExperimental $XSailPointExperimental -V2024SourceAppCreateDto $Result
|
||||
New-V2024SourceApp -V2024XSailPointExperimental $XSailPointExperimental -V2024SourceAppCreateDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024SourceApp -V2024XSailPointExperimental $XSailPointExperimental -V2024SourceAppCreateDto $SourceAppCreateDto
|
||||
@@ -130,7 +129,7 @@ $Limit = 250 # Int32 | Max number of results to return. See [V3 API Standard Col
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToRequestBody -Json $RequestBody
|
||||
Remove-V2024AccessProfilesFromSourceAppByBulk-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024RequestBody $Result
|
||||
Remove-V2024AccessProfilesFromSourceAppByBulk -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024RequestBody $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024AccessProfilesFromSourceAppByBulk -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024RequestBody $RequestBody -V2024Limit $Limit
|
||||
@@ -174,7 +173,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Delete source app by ID
|
||||
|
||||
try {
|
||||
Remove-V2024SourceApp-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Remove-V2024SourceApp -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024SourceApp -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -219,7 +218,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get source app by ID
|
||||
|
||||
try {
|
||||
Get-V2024SourceApp-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024SourceApp -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SourceApp -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -269,7 +268,7 @@ $Filters = 'name eq "developer access profile"' # String | Filter results using
|
||||
# List access profiles for the specified source app
|
||||
|
||||
try {
|
||||
Get-V2024AccessProfilesForSourceApp-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024AccessProfilesForSourceApp -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AccessProfilesForSourceApp -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Filters $Filters
|
||||
@@ -321,7 +320,7 @@ $Filters = 'enabled eq true' # String | Filter results using the standard syntax
|
||||
# List all source apps
|
||||
|
||||
try {
|
||||
Get-V2024AllSourceApp-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024AllSourceApp -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AllSourceApp -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Count $Count -V2024Offset $Offset -V2024Sorters $Sorters -V2024Filters $Filters
|
||||
@@ -372,7 +371,7 @@ $Offset = 0 # Int32 | Offset into the full result set. Usually specified with *l
|
||||
# List all user apps
|
||||
|
||||
try {
|
||||
Get-V2024AllUserApps-V2024Filters $Filters -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024AllUserApps -V2024Filters $Filters -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AllUserApps -V2024Filters $Filters -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Count $Count -V2024Offset $Offset
|
||||
@@ -424,7 +423,7 @@ $Filters = 'name eq "source app name"' # String | Filter results using the stand
|
||||
# List assigned source apps
|
||||
|
||||
try {
|
||||
Get-V2024AssignedSourceApp-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024AssignedSourceApp -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AssignedSourceApp -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Count $Count -V2024Offset $Offset -V2024Sorters $Sorters -V2024Filters $Filters
|
||||
@@ -472,7 +471,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# List available accounts for user app
|
||||
|
||||
try {
|
||||
Get-V2024AvailableAccountsForUserApp-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024AvailableAccountsForUserApp -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AvailableAccountsForUserApp -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Count $Count
|
||||
@@ -524,7 +523,7 @@ $Filters = 'name eq "source app name"' # String | Filter results using the stand
|
||||
# List available source apps
|
||||
|
||||
try {
|
||||
Get-V2024AvailableSourceApps-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024AvailableSourceApps -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AvailableSourceApps -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Count $Count -V2024Offset $Offset -V2024Sorters $Sorters -V2024Filters $Filters
|
||||
@@ -574,7 +573,7 @@ $Filters = 'name eq "user app name"' # String | Filter results using the standar
|
||||
# List owned user apps
|
||||
|
||||
try {
|
||||
Get-V2024OwnedUserApps-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024OwnedUserApps -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024OwnedUserApps -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Count $Count -V2024Offset $Offset -V2024Filters $Filters
|
||||
@@ -628,7 +627,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Patch source app by ID
|
||||
|
||||
try {
|
||||
Update-V2024SourceApp-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Update-V2024SourceApp -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024SourceApp -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatchOperation $JsonPatchOperation
|
||||
@@ -681,7 +680,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Patch user app by ID
|
||||
|
||||
try {
|
||||
Update-V2024UserApp-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Update-V2024UserApp -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024UserApp -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatchOperation $JsonPatchOperation
|
||||
@@ -739,7 +738,7 @@ $SourceAppBulkUpdateRequest = @"{
|
||||
# Bulk update source apps
|
||||
|
||||
try {
|
||||
Update-V2024SourceAppsInBulk-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Update-V2024SourceAppsInBulk -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024SourceAppsInBulk -V2024XSailPointExperimental $XSailPointExperimental -V2024SourceAppBulkUpdateRequest $SourceAppBulkUpdateRequest
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-auth-profile
|
||||
title: AuthProfile
|
||||
@@ -63,7 +62,7 @@ $Id = "2c91808a7813090a017814121919ecca" # String | ID of the Auth Profile to pa
|
||||
# Get Auth Profile.
|
||||
|
||||
try {
|
||||
Get-V2024ProfileConfig-V2024XSailPointExperimental $XSailPointExperimental -V2024Id $Id
|
||||
Get-V2024ProfileConfig -V2024XSailPointExperimental $XSailPointExperimental -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ProfileConfig -V2024XSailPointExperimental $XSailPointExperimental -V2024Id $Id
|
||||
@@ -105,7 +104,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get list of Auth Profiles.
|
||||
|
||||
try {
|
||||
Get-V2024ProfileConfigList-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024ProfileConfigList -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ProfileConfigList -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -158,7 +157,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024ProfileConfig-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatchOperation $Result
|
||||
Update-V2024ProfileConfig -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024ProfileConfig -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatchOperation $JsonPatchOperation
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-auth-users
|
||||
title: AuthUsers
|
||||
@@ -59,7 +58,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | Identity ID
|
||||
# Auth User Details
|
||||
|
||||
try {
|
||||
Get-V2024AuthUser-V2024Id $Id
|
||||
Get-V2024AuthUser -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AuthUser -V2024Id $Id
|
||||
@@ -114,7 +113,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | Identity ID
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024AuthUser-V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
Update-V2024AuthUser -V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024AuthUser -V2024Id $Id -V2024JsonPatchOperation $JsonPatchOperation
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-branding
|
||||
title: Branding
|
||||
@@ -75,7 +74,7 @@ $FileStandard = # System.IO.FileInfo | png file with logo (optional)
|
||||
# Create a branding item
|
||||
|
||||
try {
|
||||
New-V2024BrandingItem-V2024Name $Name -V2024ProductName $ProductName
|
||||
New-V2024BrandingItem -V2024Name $Name -V2024ProductName $ProductName
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024BrandingItem -V2024Name $Name -V2024ProductName $ProductName -V2024ActionButtonColor $ActionButtonColor -V2024ActiveLinkColor $ActiveLinkColor -V2024NavigationColor $NavigationColor -V2024EmailFromAddress $EmailFromAddress -V2024LoginInformationalMessage $LoginInformationalMessage -V2024FileStandard $FileStandard
|
||||
@@ -118,7 +117,7 @@ $Name = "default" # String | The name of the branding item to be deleted
|
||||
# Delete a branding item
|
||||
|
||||
try {
|
||||
Remove-V2024Branding-V2024Name $Name
|
||||
Remove-V2024Branding -V2024Name $Name
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024Branding -V2024Name $Name
|
||||
@@ -161,7 +160,7 @@ $Name = "default" # String | The name of the branding item to be retrieved
|
||||
# Get a branding item
|
||||
|
||||
try {
|
||||
Get-V2024Branding-V2024Name $Name
|
||||
Get-V2024Branding -V2024Name $Name
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Branding -V2024Name $Name
|
||||
@@ -260,7 +259,7 @@ $FileStandard = # System.IO.FileInfo | png file with logo (optional)
|
||||
# Update a branding item
|
||||
|
||||
try {
|
||||
Set-V2024BrandingItem-V2024Name $Name -V2024Name2 $Name2 -V2024ProductName $ProductName
|
||||
Set-V2024BrandingItem -V2024Name $Name -V2024Name2 $Name2 -V2024ProductName $ProductName
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Set-V2024BrandingItem -V2024Name $Name -V2024Name2 $Name2 -V2024ProductName $ProductName -V2024ActionButtonColor $ActionButtonColor -V2024ActiveLinkColor $ActiveLinkColor -V2024NavigationColor $NavigationColor -V2024EmailFromAddress $EmailFromAddress -V2024LoginInformationalMessage $LoginInformationalMessage -V2024FileStandard $FileStandard
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-certification-campaign-filters
|
||||
title: CertificationCampaignFilters
|
||||
@@ -101,7 +100,7 @@ $CampaignFilterDetails = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToCampaignFilterDetails -Json $CampaignFilterDetails
|
||||
New-V2024CampaignFilter-V2024CampaignFilterDetails $Result
|
||||
New-V2024CampaignFilter -V2024CampaignFilterDetails $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024CampaignFilter -V2024CampaignFilterDetails $CampaignFilterDetails
|
||||
@@ -147,7 +146,7 @@ $RequestBody = "MyRequestBody" # String[] | A json list of IDs of campaign filte
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToRequestBody -Json $RequestBody
|
||||
Remove-V2024CampaignFilters-V2024RequestBody $Result
|
||||
Remove-V2024CampaignFilters -V2024RequestBody $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024CampaignFilters -V2024RequestBody $RequestBody
|
||||
@@ -190,7 +189,7 @@ $Id = "e9f9a1397b842fd5a65842087040d3ac" # String | The ID of the campaign filte
|
||||
# Get Campaign Filter by ID
|
||||
|
||||
try {
|
||||
Get-V2024CampaignFilterById-V2024Id $Id
|
||||
Get-V2024CampaignFilterById -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024CampaignFilterById -V2024Id $Id
|
||||
@@ -298,7 +297,7 @@ $CampaignFilterDetails = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToCampaignFilterDetails -Json $CampaignFilterDetails
|
||||
Update-V2024CampaignFilter-V2024FilterId $FilterId -V2024CampaignFilterDetails $Result
|
||||
Update-V2024CampaignFilter -V2024FilterId $FilterId -V2024CampaignFilterDetails $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024CampaignFilter -V2024FilterId $FilterId -V2024CampaignFilterDetails $CampaignFilterDetails
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-certification-campaigns
|
||||
title: CertificationCampaigns
|
||||
@@ -153,7 +152,7 @@ $CampaignCompleteOptions = @"{
|
||||
# Complete a Campaign
|
||||
|
||||
try {
|
||||
Complete-V2024Campaign-V2024Id $Id
|
||||
Complete-V2024Campaign -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Complete-V2024Campaign -V2024Id $Id -V2024CampaignCompleteOptions $CampaignCompleteOptions
|
||||
@@ -305,7 +304,7 @@ $Campaign = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToCampaign -Json $Campaign
|
||||
New-V2024Campaign-V2024Campaign $Result
|
||||
New-V2024Campaign -V2024Campaign $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024Campaign -V2024Campaign $Campaign
|
||||
@@ -472,7 +471,7 @@ $CampaignTemplate = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToCampaignTemplate -Json $CampaignTemplate
|
||||
New-V2024CampaignTemplate-V2024CampaignTemplate $Result
|
||||
New-V2024CampaignTemplate -V2024CampaignTemplate $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024CampaignTemplate -V2024CampaignTemplate $CampaignTemplate
|
||||
@@ -516,7 +515,7 @@ $Id = "2c9180835d191a86015d28455b4a2329" # String | ID of the campaign template
|
||||
# Delete a Campaign Template
|
||||
|
||||
try {
|
||||
Remove-V2024CampaignTemplate-V2024Id $Id
|
||||
Remove-V2024CampaignTemplate -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024CampaignTemplate -V2024Id $Id
|
||||
@@ -560,7 +559,7 @@ $Id = "04bedce387bd47b2ae1f86eb0bb36dee" # String | ID of the campaign template
|
||||
# Delete Campaign Template Schedule
|
||||
|
||||
try {
|
||||
Remove-V2024CampaignTemplateSchedule-V2024Id $Id
|
||||
Remove-V2024CampaignTemplateSchedule -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024CampaignTemplateSchedule -V2024Id $Id
|
||||
@@ -607,7 +606,7 @@ $CampaignsDeleteRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToCampaignsDeleteRequest -Json $CampaignsDeleteRequest
|
||||
Remove-V2024Campaigns-V2024CampaignsDeleteRequest $Result
|
||||
Remove-V2024Campaigns -V2024CampaignsDeleteRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024Campaigns -V2024CampaignsDeleteRequest $CampaignsDeleteRequest
|
||||
@@ -706,7 +705,7 @@ $Detail = "SLIM" # String | Determines whether slim, or increased level of detai
|
||||
# Get Campaign
|
||||
|
||||
try {
|
||||
Get-V2024Campaign-V2024Id $Id
|
||||
Get-V2024Campaign -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Campaign -V2024Id $Id -V2024Detail $Detail
|
||||
@@ -750,7 +749,7 @@ $Id = "2c91808571bcfcf80171c23e4b4221fc" # String | ID of the campaign whose rep
|
||||
# Get Campaign Reports
|
||||
|
||||
try {
|
||||
Get-V2024CampaignReports-V2024Id $Id
|
||||
Get-V2024CampaignReports -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024CampaignReports -V2024Id $Id
|
||||
@@ -835,7 +834,7 @@ $Id = "2c9180835d191a86015d28455b4a2329" # String | Requested campaign template'
|
||||
# Get a Campaign Template
|
||||
|
||||
try {
|
||||
Get-V2024CampaignTemplate-V2024Id $Id
|
||||
Get-V2024CampaignTemplate -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024CampaignTemplate -V2024Id $Id
|
||||
@@ -879,7 +878,7 @@ $Id = "04bedce387bd47b2ae1f86eb0bb36dee" # String | ID of the campaign template
|
||||
# Get Campaign Template Schedule
|
||||
|
||||
try {
|
||||
Get-V2024CampaignTemplateSchedule-V2024Id $Id
|
||||
Get-V2024CampaignTemplateSchedule -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024CampaignTemplateSchedule -V2024Id $Id
|
||||
@@ -986,7 +985,7 @@ $AdminReviewReassign = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToAdminReviewReassign -Json $AdminReviewReassign
|
||||
Move-V2024-V2024Id $Id -V2024AdminReviewReassign $Result
|
||||
Move-V2024 -V2024Id $Id -V2024AdminReviewReassign $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Move-V2024 -V2024Id $Id -V2024AdminReviewReassign $AdminReviewReassign
|
||||
@@ -1038,7 +1037,7 @@ $Id = "2c9180835d191a86015d28455b4a2329" # String | ID of the campaign template
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024CampaignTemplate-V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
Update-V2024CampaignTemplate -V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024CampaignTemplate -V2024Id $Id -V2024JsonPatchOperation $JsonPatchOperation
|
||||
@@ -1084,7 +1083,7 @@ $CampaignReportsConfig = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToCampaignReportsConfig -Json $CampaignReportsConfig
|
||||
Set-V2024CampaignReportsConfig-V2024CampaignReportsConfig $Result
|
||||
Set-V2024CampaignReportsConfig -V2024CampaignReportsConfig $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Set-V2024CampaignReportsConfig -V2024CampaignReportsConfig $CampaignReportsConfig
|
||||
@@ -1149,7 +1148,7 @@ $Schedule = @"{
|
||||
# Set Campaign Template Schedule
|
||||
|
||||
try {
|
||||
Set-V2024CampaignTemplateSchedule-V2024Id $Id
|
||||
Set-V2024CampaignTemplateSchedule -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Set-V2024CampaignTemplateSchedule -V2024Id $Id -V2024Schedule $Schedule
|
||||
@@ -1197,7 +1196,7 @@ $ActivateCampaignOptions = @"{
|
||||
# Activate a Campaign
|
||||
|
||||
try {
|
||||
Start-V2024Campaign-V2024Id $Id
|
||||
Start-V2024Campaign -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Start-V2024Campaign -V2024Id $Id -V2024ActivateCampaignOptions $ActivateCampaignOptions
|
||||
@@ -1241,7 +1240,7 @@ $Id = "2c91808571bcfcf80171c23e4b4221fc" # String | ID of the campaign the remed
|
||||
# Run Campaign Remediation Scan
|
||||
|
||||
try {
|
||||
Start-V2024CampaignRemediationScan-V2024Id $Id
|
||||
Start-V2024CampaignRemediationScan -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Start-V2024CampaignRemediationScan -V2024Id $Id
|
||||
@@ -1287,7 +1286,7 @@ $Type = "CAMPAIGN_COMPOSITION_REPORT" # ReportType | Type of the report to run.
|
||||
# Run Campaign Report
|
||||
|
||||
try {
|
||||
Start-V2024CampaignReport-V2024Id $Id -V2024Type $Type
|
||||
Start-V2024CampaignReport -V2024Id $Id -V2024Type $Type
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Start-V2024CampaignReport -V2024Id $Id -V2024Type $Type
|
||||
@@ -1340,7 +1339,7 @@ $Id = "2c9180835d191a86015d28455b4a2329" # String | ID of the campaign template
|
||||
# Generate a Campaign from Template
|
||||
|
||||
try {
|
||||
Start-V2024GenerateCampaignTemplate-V2024Id $Id
|
||||
Start-V2024GenerateCampaignTemplate -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Start-V2024GenerateCampaignTemplate -V2024Id $Id
|
||||
@@ -1392,7 +1391,7 @@ $Id = "2c91808571bcfcf80171c23e4b4221fc" # String | ID of the campaign template
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024Campaign-V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
Update-V2024Campaign -V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024Campaign -V2024Id $Id -V2024JsonPatchOperation $JsonPatchOperation
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-certification-summaries
|
||||
title: CertificationSummaries
|
||||
@@ -82,7 +81,7 @@ $Sorters = "access.name" # String | Sort results using the standard syntax descr
|
||||
# Access Summaries
|
||||
|
||||
try {
|
||||
Get-V2024IdentityAccessSummaries-V2024Id $Id -V2024Type $Type
|
||||
Get-V2024IdentityAccessSummaries -V2024Id $Id -V2024Type $Type
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024IdentityAccessSummaries -V2024Id $Id -V2024Type $Type -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -127,7 +126,7 @@ $Filters = 'identitySummary.id eq "ef38f94347e94562b5bb8424a56397d8"' # String |
|
||||
# Summary of Certification Decisions
|
||||
|
||||
try {
|
||||
Get-V2024IdentityDecisionSummary-V2024Id $Id
|
||||
Get-V2024IdentityDecisionSummary -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024IdentityDecisionSummary -V2024Id $Id -V2024Filters $Filters
|
||||
@@ -180,7 +179,7 @@ $Sorters = "name" # String | Sort results using the standard syntax described in
|
||||
# Identity Summaries for Campaign Certification
|
||||
|
||||
try {
|
||||
Get-V2024IdentitySummaries-V2024Id $Id
|
||||
Get-V2024IdentitySummaries -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024IdentitySummaries -V2024Id $Id -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -225,7 +224,7 @@ $IdentitySummaryId = "2c91808772a504f50172a9540e501ba8" # String | The identity
|
||||
# Summary for Identity
|
||||
|
||||
try {
|
||||
Get-V2024IdentitySummary-V2024Id $Id -V2024IdentitySummaryId $IdentitySummaryId
|
||||
Get-V2024IdentitySummary -V2024Id $Id -V2024IdentitySummaryId $IdentitySummaryId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024IdentitySummary -V2024Id $Id -V2024IdentitySummaryId $IdentitySummaryId
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-certifications
|
||||
title: Certifications
|
||||
@@ -86,7 +85,7 @@ $Id = "63b32151-26c0-42f4-9299-8898dc1c9daa" # String | The task ID
|
||||
# Certification Task by ID
|
||||
|
||||
try {
|
||||
Get-V2024CertificationTask-V2024Id $Id
|
||||
Get-V2024CertificationTask -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024CertificationTask -V2024Id $Id
|
||||
@@ -129,7 +128,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | The certification id
|
||||
# Identity Certification by ID
|
||||
|
||||
try {
|
||||
Get-V2024IdentityCertification-V2024Id $Id
|
||||
Get-V2024IdentityCertification -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024IdentityCertification -V2024Id $Id
|
||||
@@ -182,7 +181,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Permissions for Entitlement Certification Item
|
||||
|
||||
try {
|
||||
Get-V2024IdentityCertificationItemPermissions-V2024CertificationId $CertificationId -V2024ItemId $ItemId
|
||||
Get-V2024IdentityCertificationItemPermissions -V2024CertificationId $CertificationId -V2024ItemId $ItemId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024IdentityCertificationItemPermissions -V2024CertificationId $CertificationId -V2024ItemId $ItemId -V2024Filters $Filters -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count
|
||||
@@ -286,7 +285,7 @@ $Sorters = "name" # String | Sort results using the standard syntax described in
|
||||
# List of Reviewers for certification
|
||||
|
||||
try {
|
||||
Get-V2024CertificationReviewers-V2024Id $Id
|
||||
Get-V2024CertificationReviewers -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024CertificationReviewers -V2024Id $Id -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -345,7 +344,7 @@ $Roles = "userRole" # String | Filter results to view access review items that p
|
||||
# List of Access Review Items
|
||||
|
||||
try {
|
||||
Get-V2024IdentityAccessReviewItems-V2024Id $Id
|
||||
Get-V2024IdentityAccessReviewItems -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024IdentityAccessReviewItems -V2024Id $Id -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Filters $Filters -V2024Sorters $Sorters -V2024Entitlements $Entitlements -V2024AccessProfiles $AccessProfiles -V2024Roles $Roles
|
||||
@@ -455,7 +454,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | The ID of the identity campa
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToReviewDecision -Json $ReviewDecision
|
||||
Select-V2024IdentityDecision-V2024Id $Id -V2024ReviewDecision $Result
|
||||
Select-V2024IdentityDecision -V2024Id $Id -V2024ReviewDecision $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Select-V2024IdentityDecision -V2024Id $Id -V2024ReviewDecision $ReviewDecision
|
||||
@@ -511,7 +510,7 @@ $ReviewReassign = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToReviewReassign -Json $ReviewReassign
|
||||
Invoke-V2024ReassignIdentityCertifications-V2024Id $Id -V2024ReviewReassign $Result
|
||||
Invoke-V2024ReassignIdentityCertifications -V2024Id $Id -V2024ReviewReassign $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Invoke-V2024ReassignIdentityCertifications -V2024Id $Id -V2024ReviewReassign $ReviewReassign
|
||||
@@ -554,7 +553,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | The identity campaign certif
|
||||
# Finalize Identity Certification Decisions
|
||||
|
||||
try {
|
||||
Invoke-V2024SignOffIdentityCertification-V2024Id $Id
|
||||
Invoke-V2024SignOffIdentityCertification -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Invoke-V2024SignOffIdentityCertification -V2024Id $Id
|
||||
@@ -615,7 +614,7 @@ $ReviewReassign = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToReviewReassign -Json $ReviewReassign
|
||||
Submit-V2024ReassignCertsAsync-V2024Id $Id -V2024ReviewReassign $Result
|
||||
Submit-V2024ReassignCertsAsync -V2024Id $Id -V2024ReviewReassign $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Submit-V2024ReassignCertsAsync -V2024Id $Id -V2024ReviewReassign $ReviewReassign
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-configuration-hub
|
||||
title: ConfigurationHub
|
||||
@@ -81,7 +80,7 @@ $DeployRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToDeployRequest -Json $DeployRequest
|
||||
New-V2024Deploy-V2024DeployRequest $Result
|
||||
New-V2024Deploy -V2024DeployRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024Deploy -V2024DeployRequest $DeployRequest
|
||||
@@ -136,7 +135,7 @@ $ObjectMappingRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToObjectMappingRequest -Json $ObjectMappingRequest
|
||||
New-V2024ObjectMapping-V2024SourceOrg $SourceOrg -V2024ObjectMappingRequest $Result
|
||||
New-V2024ObjectMapping -V2024SourceOrg $SourceOrg -V2024ObjectMappingRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024ObjectMapping -V2024SourceOrg $SourceOrg -V2024ObjectMappingRequest $ObjectMappingRequest
|
||||
@@ -199,7 +198,7 @@ $ObjectMappingBulkCreateRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToObjectMappingBulkCreateRequest -Json $ObjectMappingBulkCreateRequest
|
||||
New-V2024ObjectMappings-V2024SourceOrg $SourceOrg -V2024ObjectMappingBulkCreateRequest $Result
|
||||
New-V2024ObjectMappings -V2024SourceOrg $SourceOrg -V2024ObjectMappingBulkCreateRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024ObjectMappings -V2024SourceOrg $SourceOrg -V2024ObjectMappingBulkCreateRequest $ObjectMappingBulkCreateRequest
|
||||
@@ -247,7 +246,7 @@ $Name = "MyName" # String | Name that will be assigned to the uploaded configura
|
||||
# Upload a Configuration
|
||||
|
||||
try {
|
||||
New-V2024UploadedConfiguration-V2024Data $Data -V2024Name $Name
|
||||
New-V2024UploadedConfiguration -V2024Data $Data -V2024Name $Name
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024UploadedConfiguration -V2024Data $Data -V2024Name $Name
|
||||
@@ -294,7 +293,7 @@ $Id = "07659d7d-2cce-47c0-9e49-185787ee565a" # String | The id of the backup to
|
||||
# Delete a Backup
|
||||
|
||||
try {
|
||||
Remove-V2024Backup-V2024Id $Id
|
||||
Remove-V2024Backup -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024Backup -V2024Id $Id
|
||||
@@ -341,7 +340,7 @@ $Id = "07659d7d-2cce-47c0-9e49-185787ee565a" # String | The id of the draft to d
|
||||
# Delete a draft
|
||||
|
||||
try {
|
||||
Remove-V2024Draft-V2024Id $Id
|
||||
Remove-V2024Draft -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024Draft -V2024Id $Id
|
||||
@@ -389,7 +388,7 @@ $ObjectMappingId = "3d6e0144-963f-4bd6-8d8d-d77b4e507ce4" # String | The id of t
|
||||
# Deletes an object mapping
|
||||
|
||||
try {
|
||||
Remove-V2024ObjectMapping-V2024SourceOrg $SourceOrg -V2024ObjectMappingId $ObjectMappingId
|
||||
Remove-V2024ObjectMapping -V2024SourceOrg $SourceOrg -V2024ObjectMappingId $ObjectMappingId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024ObjectMapping -V2024SourceOrg $SourceOrg -V2024ObjectMappingId $ObjectMappingId
|
||||
@@ -436,7 +435,7 @@ $Id = "3d0fe04b-57df-4a46-a83b-8f04b0f9d10b" # String | The id of the uploaded c
|
||||
# Delete an Uploaded Configuration
|
||||
|
||||
try {
|
||||
Remove-V2024UploadedConfiguration-V2024Id $Id
|
||||
Remove-V2024UploadedConfiguration -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024UploadedConfiguration -V2024Id $Id
|
||||
@@ -479,7 +478,7 @@ $Id = "3d0fe04b-57df-4a46-a83b-8f04b0f9d10b" # String | The id of the deploy.
|
||||
# Get a Deploy
|
||||
|
||||
try {
|
||||
Get-V2024Deploy-V2024Id $Id
|
||||
Get-V2024Deploy -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Deploy -V2024Id $Id
|
||||
@@ -525,7 +524,7 @@ $SourceOrg = "source-org" # String | The name of the source org.
|
||||
# Gets list of object mappings
|
||||
|
||||
try {
|
||||
Get-V2024ObjectMappings-V2024SourceOrg $SourceOrg
|
||||
Get-V2024ObjectMappings -V2024SourceOrg $SourceOrg
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ObjectMappings -V2024SourceOrg $SourceOrg
|
||||
@@ -568,7 +567,7 @@ $Id = "3d0fe04b-57df-4a46-a83b-8f04b0f9d10b" # String | The id of the uploaded c
|
||||
# Get an Uploaded Configuration
|
||||
|
||||
try {
|
||||
Get-V2024UploadedConfiguration-V2024Id $Id
|
||||
Get-V2024UploadedConfiguration -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024UploadedConfiguration -V2024Id $Id
|
||||
@@ -797,7 +796,7 @@ $ObjectMappingBulkPatchRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToObjectMappingBulkPatchRequest -Json $ObjectMappingBulkPatchRequest
|
||||
Update-V2024ObjectMappings-V2024SourceOrg $SourceOrg -V2024ObjectMappingBulkPatchRequest $Result
|
||||
Update-V2024ObjectMappings -V2024SourceOrg $SourceOrg -V2024ObjectMappingBulkPatchRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024ObjectMappings -V2024SourceOrg $SourceOrg -V2024ObjectMappingBulkPatchRequest $ObjectMappingBulkPatchRequest
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-connector-rule-management
|
||||
title: ConnectorRuleManagement
|
||||
@@ -92,7 +91,7 @@ $ConnectorRuleCreateRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToConnectorRuleCreateRequest -Json $ConnectorRuleCreateRequest
|
||||
New-V2024ConnectorRule-V2024XSailPointExperimental $XSailPointExperimental -V2024ConnectorRuleCreateRequest $Result
|
||||
New-V2024ConnectorRule -V2024XSailPointExperimental $XSailPointExperimental -V2024ConnectorRuleCreateRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024ConnectorRule -V2024XSailPointExperimental $XSailPointExperimental -V2024ConnectorRuleCreateRequest $ConnectorRuleCreateRequest
|
||||
@@ -137,7 +136,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Delete Connector Rule
|
||||
|
||||
try {
|
||||
Remove-V2024ConnectorRule-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Remove-V2024ConnectorRule -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024ConnectorRule -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -182,7 +181,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get Connector Rule
|
||||
|
||||
try {
|
||||
Get-V2024ConnectorRule-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024ConnectorRule -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ConnectorRule -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -230,7 +229,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# List Connector Rules
|
||||
|
||||
try {
|
||||
Get-V2024ConnectorRuleList-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024ConnectorRuleList -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ConnectorRuleList -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count
|
||||
@@ -303,7 +302,7 @@ $ConnectorRuleUpdateRequest = @"{
|
||||
# Update Connector Rule
|
||||
|
||||
try {
|
||||
Send-V2024ConnectorRule-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Send-V2024ConnectorRule -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024ConnectorRule -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024ConnectorRuleUpdateRequest $ConnectorRuleUpdateRequest
|
||||
@@ -351,7 +350,7 @@ $SourceCode = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSourceCode -Json $SourceCode
|
||||
Test-V2024ConnectorRule-V2024XSailPointExperimental $XSailPointExperimental -V2024SourceCode $Result
|
||||
Test-V2024ConnectorRule -V2024XSailPointExperimental $XSailPointExperimental -V2024SourceCode $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Test-V2024ConnectorRule -V2024XSailPointExperimental $XSailPointExperimental -V2024SourceCode $SourceCode
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-connectors
|
||||
title: Connectors
|
||||
@@ -86,7 +85,7 @@ $V3CreateConnectorDto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToV3CreateConnectorDto -Json $V3CreateConnectorDto
|
||||
New-V2024CustomConnector-V2024V3CreateConnectorDto $Result
|
||||
New-V2024CustomConnector -V2024V3CreateConnectorDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024CustomConnector -V2024V3CreateConnectorDto $V3CreateConnectorDto
|
||||
@@ -129,7 +128,7 @@ $ScriptName = "aScriptName" # String | The scriptName value of the connector. Sc
|
||||
# Delete Connector by Script Name
|
||||
|
||||
try {
|
||||
Remove-V2024CustomConnector-V2024ScriptName $ScriptName
|
||||
Remove-V2024CustomConnector -V2024ScriptName $ScriptName
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024CustomConnector -V2024ScriptName $ScriptName
|
||||
@@ -174,7 +173,7 @@ $Locale = "de" # String | The locale to apply to the config. If no viable locale
|
||||
# Get Connector by Script Name
|
||||
|
||||
try {
|
||||
Get-V2024Connector-V2024ScriptName $ScriptName
|
||||
Get-V2024Connector -V2024ScriptName $ScriptName
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Connector -V2024ScriptName $ScriptName -V2024Locale $Locale
|
||||
@@ -217,7 +216,7 @@ $ScriptName = "aScriptName" # String | The scriptName value of the connector. Sc
|
||||
# Get Connector Correlation Configuration
|
||||
|
||||
try {
|
||||
Get-V2024ConnectorCorrelationConfig-V2024ScriptName $ScriptName
|
||||
Get-V2024ConnectorCorrelationConfig -V2024ScriptName $ScriptName
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ConnectorCorrelationConfig -V2024ScriptName $ScriptName
|
||||
@@ -311,7 +310,7 @@ $ScriptName = "aScriptName" # String | The scriptName value of the connector. Sc
|
||||
# Get Connector Source Configuration
|
||||
|
||||
try {
|
||||
Get-V2024ConnectorSourceConfig-V2024ScriptName $ScriptName
|
||||
Get-V2024ConnectorSourceConfig -V2024ScriptName $ScriptName
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ConnectorSourceConfig -V2024ScriptName $ScriptName
|
||||
@@ -354,7 +353,7 @@ $ScriptName = "aScriptName" # String | The scriptName value of the connector. Sc
|
||||
# Get Connector Source Template
|
||||
|
||||
try {
|
||||
Get-V2024ConnectorSourceTemplate-V2024ScriptName $ScriptName
|
||||
Get-V2024ConnectorSourceTemplate -V2024ScriptName $ScriptName
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ConnectorSourceTemplate -V2024ScriptName $ScriptName
|
||||
@@ -399,7 +398,7 @@ $Locale = "de" # String | The locale to apply to the config. If no viable locale
|
||||
# Get Connector Translations
|
||||
|
||||
try {
|
||||
Get-V2024ConnectorTranslations-V2024ScriptName $ScriptName -V2024Locale $Locale
|
||||
Get-V2024ConnectorTranslations -V2024ScriptName $ScriptName -V2024Locale $Locale
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ConnectorTranslations -V2024ScriptName $ScriptName -V2024Locale $Locale
|
||||
@@ -444,7 +443,7 @@ $File = # System.IO.FileInfo | connector correlation config xml file
|
||||
# Update Connector Correlation Configuration
|
||||
|
||||
try {
|
||||
Send-V2024ConnectorCorrelationConfig-V2024ScriptName $ScriptName -V2024File $File
|
||||
Send-V2024ConnectorCorrelationConfig -V2024ScriptName $ScriptName -V2024File $File
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024ConnectorCorrelationConfig -V2024ScriptName $ScriptName -V2024File $File
|
||||
@@ -489,7 +488,7 @@ $File = # System.IO.FileInfo | connector source config xml file
|
||||
# Update Connector Source Configuration
|
||||
|
||||
try {
|
||||
Send-V2024ConnectorSourceConfig-V2024ScriptName $ScriptName -V2024File $File
|
||||
Send-V2024ConnectorSourceConfig -V2024ScriptName $ScriptName -V2024File $File
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024ConnectorSourceConfig -V2024ScriptName $ScriptName -V2024File $File
|
||||
@@ -534,7 +533,7 @@ $File = # System.IO.FileInfo | connector source template xml file
|
||||
# Update Connector Source Template
|
||||
|
||||
try {
|
||||
Send-V2024ConnectorSourceTemplate-V2024ScriptName $ScriptName -V2024File $File
|
||||
Send-V2024ConnectorSourceTemplate -V2024ScriptName $ScriptName -V2024File $File
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024ConnectorSourceTemplate -V2024ScriptName $ScriptName -V2024File $File
|
||||
@@ -579,7 +578,7 @@ $Locale = "de" # String | The locale to apply to the config. If no viable locale
|
||||
# Update Connector Translations
|
||||
|
||||
try {
|
||||
Send-V2024ConnectorTranslations-V2024ScriptName $ScriptName -V2024Locale $Locale
|
||||
Send-V2024ConnectorTranslations -V2024ScriptName $ScriptName -V2024Locale $Locale
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024ConnectorTranslations -V2024ScriptName $ScriptName -V2024Locale $Locale
|
||||
@@ -642,7 +641,7 @@ $ScriptName = "aScriptName" # String | The scriptName value of the connector. Sc
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024Connector-V2024ScriptName $ScriptName -V2024JsonPatchOperation $Result
|
||||
Update-V2024Connector -V2024ScriptName $ScriptName -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024Connector -V2024ScriptName $ScriptName -V2024JsonPatchOperation $JsonPatchOperation
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-custom-forms
|
||||
title: CustomForms
|
||||
@@ -189,7 +188,7 @@ $Body = @"{
|
||||
# Creates a form definition.
|
||||
|
||||
try {
|
||||
New-V2024FormDefinition-V2024XSailPointExperimental $XSailPointExperimental
|
||||
New-V2024FormDefinition -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024FormDefinition -V2024XSailPointExperimental $XSailPointExperimental -V2024Body $Body
|
||||
@@ -242,7 +241,7 @@ $Body = @"{
|
||||
# Generate JSON Schema dynamically.
|
||||
|
||||
try {
|
||||
New-V2024FormDefinitionDynamicSchema-V2024XSailPointExperimental $XSailPointExperimental
|
||||
New-V2024FormDefinitionDynamicSchema -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024FormDefinitionDynamicSchema -V2024XSailPointExperimental $XSailPointExperimental -V2024Body $Body
|
||||
@@ -292,7 +291,7 @@ $File = # System.IO.FileInfo | File specifying the multipart
|
||||
# Upload new form definition file.
|
||||
|
||||
try {
|
||||
New-V2024FormDefinitionFileRequest-V2024FormDefinitionID $FormDefinitionID -V2024XSailPointExperimental $XSailPointExperimental -V2024File $File
|
||||
New-V2024FormDefinitionFileRequest -V2024FormDefinitionID $FormDefinitionID -V2024XSailPointExperimental $XSailPointExperimental -V2024File $File
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024FormDefinitionFileRequest -V2024FormDefinitionID $FormDefinitionID -V2024XSailPointExperimental $XSailPointExperimental -V2024File $File
|
||||
@@ -356,7 +355,7 @@ $Body = @"{
|
||||
# Creates a form instance.
|
||||
|
||||
try {
|
||||
New-V2024FormInstance-V2024XSailPointExperimental $XSailPointExperimental
|
||||
New-V2024FormInstance -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024FormInstance -V2024XSailPointExperimental $XSailPointExperimental -V2024Body $Body
|
||||
@@ -401,7 +400,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Deletes a form definition.
|
||||
|
||||
try {
|
||||
Remove-V2024FormDefinition-V2024FormDefinitionID $FormDefinitionID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Remove-V2024FormDefinition -V2024FormDefinitionID $FormDefinitionID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024FormDefinition -V2024FormDefinitionID $FormDefinitionID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -451,7 +450,7 @@ $Sorters = "name" # String | Sort results using the standard syntax described in
|
||||
# List form definitions by tenant.
|
||||
|
||||
try {
|
||||
Export-V2024FormDefinitionsByTenant-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Export-V2024FormDefinitionsByTenant -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Export-V2024FormDefinitionsByTenant -V2024XSailPointExperimental $XSailPointExperimental -V2024Offset $Offset -V2024Limit $Limit -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -499,7 +498,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Download definition file by fileId.
|
||||
|
||||
try {
|
||||
Get-V2024FileFromS3-V2024FormDefinitionID $FormDefinitionID -V2024FileID $FileID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024FileFromS3 -V2024FormDefinitionID $FormDefinitionID -V2024FileID $FileID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024FileFromS3 -V2024FormDefinitionID $FormDefinitionID -V2024FileID $FileID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -544,7 +543,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Return a form definition.
|
||||
|
||||
try {
|
||||
Get-V2024FormDefinitionByKey-V2024FormDefinitionID $FormDefinitionID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024FormDefinitionByKey -V2024FormDefinitionID $FormDefinitionID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024FormDefinitionByKey -V2024FormDefinitionID $FormDefinitionID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -589,7 +588,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Returns a form instance.
|
||||
|
||||
try {
|
||||
Get-V2024FormInstanceByKey-V2024FormInstanceID $FormInstanceID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024FormInstanceByKey -V2024FormInstanceID $FormInstanceID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024FormInstanceByKey -V2024FormInstanceID $FormInstanceID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -637,7 +636,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Download instance file by fileId.
|
||||
|
||||
try {
|
||||
Get-V2024FormInstanceFile-V2024FormInstanceID $FormInstanceID -V2024FileID $FileID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024FormInstanceFile -V2024FormInstanceID $FormInstanceID -V2024FileID $FileID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024FormInstanceFile -V2024FormInstanceID $FormInstanceID -V2024FileID $FileID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -688,7 +687,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Import form definitions from export.
|
||||
|
||||
try {
|
||||
Import-V2024FormDefinitions-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Import-V2024FormDefinitions -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Import-V2024FormDefinitions -V2024XSailPointExperimental $XSailPointExperimental -V2024Body $Body
|
||||
@@ -737,7 +736,7 @@ $Body = @{ key_example = } # Map[] | Body is the request payload to patch a for
|
||||
# Patch a form definition.
|
||||
|
||||
try {
|
||||
Update-V2024FormDefinition-V2024FormDefinitionID $FormDefinitionID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Update-V2024FormDefinition -V2024FormDefinitionID $FormDefinitionID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024FormDefinition -V2024FormDefinitionID $FormDefinitionID -V2024XSailPointExperimental $XSailPointExperimental -V2024Body $Body
|
||||
@@ -787,7 +786,7 @@ $Body = @{ key_example = } # Map[] | Body is the request payload to patch a for
|
||||
# Patch a form instance.
|
||||
|
||||
try {
|
||||
Update-V2024FormInstance-V2024FormInstanceID $FormInstanceID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Update-V2024FormInstance -V2024FormInstanceID $FormInstanceID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024FormInstance -V2024FormInstanceID $FormInstanceID -V2024XSailPointExperimental $XSailPointExperimental -V2024Body $Body
|
||||
@@ -837,7 +836,7 @@ $Sorters = "name" # String | Sort results using the standard syntax described in
|
||||
# Export form definitions by tenant.
|
||||
|
||||
try {
|
||||
Search-V2024FormDefinitionsByTenant-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Search-V2024FormDefinitionsByTenant -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Search-V2024FormDefinitionsByTenant -V2024XSailPointExperimental $XSailPointExperimental -V2024Offset $Offset -V2024Limit $Limit -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -891,7 +890,7 @@ $Query = "support" # String | String that is passed to the underlying API to fil
|
||||
# Retrieves dynamic data by element.
|
||||
|
||||
try {
|
||||
Search-V2024FormElementDataByElementID-V2024FormInstanceID $FormInstanceID -V2024FormElementID $FormElementID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Search-V2024FormElementDataByElementID -V2024FormInstanceID $FormInstanceID -V2024FormElementID $FormElementID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Search-V2024FormElementDataByElementID -V2024FormInstanceID $FormInstanceID -V2024FormElementID $FormElementID -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Filters $Filters -V2024Query $Query
|
||||
@@ -933,7 +932,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# List form instances by tenant.
|
||||
|
||||
try {
|
||||
Search-V2024FormInstancesByTenant-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Search-V2024FormInstancesByTenant -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Search-V2024FormInstancesByTenant -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -975,7 +974,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# List predefined select options.
|
||||
|
||||
try {
|
||||
Search-V2024PreDefinedSelectOptions-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Search-V2024PreDefinedSelectOptions -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Search-V2024PreDefinedSelectOptions -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -1038,7 +1037,7 @@ $FormElementPreviewRequest = @"{
|
||||
# Preview form definition data source.
|
||||
|
||||
try {
|
||||
Show-V2024PreviewDataSource-V2024FormDefinitionID $FormDefinitionID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Show-V2024PreviewDataSource -V2024FormDefinitionID $FormDefinitionID -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Show-V2024PreviewDataSource -V2024FormDefinitionID $FormDefinitionID -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Filters $Filters -V2024Query $Query -V2024FormElementPreviewRequest $FormElementPreviewRequest
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-custom-password-instructions
|
||||
title: CustomPasswordInstructions
|
||||
@@ -70,7 +69,7 @@ $CustomPasswordInstruction = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToCustomPasswordInstruction -Json $CustomPasswordInstruction
|
||||
New-V2024CustomPasswordInstructions-V2024XSailPointExperimental $XSailPointExperimental -V2024CustomPasswordInstruction $Result
|
||||
New-V2024CustomPasswordInstructions -V2024XSailPointExperimental $XSailPointExperimental -V2024CustomPasswordInstruction $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024CustomPasswordInstructions -V2024XSailPointExperimental $XSailPointExperimental -V2024CustomPasswordInstruction $CustomPasswordInstruction
|
||||
@@ -115,7 +114,7 @@ $Locale = "MyLocale" # String | The locale for the custom instructions, a BCP47
|
||||
# Delete Custom Password Instructions by page ID
|
||||
|
||||
try {
|
||||
Remove-V2024CustomPasswordInstructions-V2024PageId $PageId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Remove-V2024CustomPasswordInstructions -V2024PageId $PageId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024CustomPasswordInstructions -V2024PageId $PageId -V2024XSailPointExperimental $XSailPointExperimental -V2024Locale $Locale
|
||||
@@ -160,7 +159,7 @@ $Locale = "MyLocale" # String | The locale for the custom instructions, a BCP47
|
||||
# Get Custom Password Instructions by Page ID
|
||||
|
||||
try {
|
||||
Get-V2024CustomPasswordInstructions-V2024PageId $PageId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024CustomPasswordInstructions -V2024PageId $PageId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024CustomPasswordInstructions -V2024PageId $PageId -V2024XSailPointExperimental $XSailPointExperimental -V2024Locale $Locale
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-dimensions
|
||||
title: Dimensions
|
||||
@@ -152,7 +151,7 @@ $Dimension = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToDimension -Json $Dimension
|
||||
New-V2024Dimension-V2024RoleId $RoleId -V2024Dimension $Result
|
||||
New-V2024Dimension -V2024RoleId $RoleId -V2024Dimension $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024Dimension -V2024RoleId $RoleId -V2024Dimension $Dimension
|
||||
@@ -202,7 +201,7 @@ $DimensionBulkDeleteRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToDimensionBulkDeleteRequest -Json $DimensionBulkDeleteRequest
|
||||
Remove-V2024BulkDimensions-V2024RoleId $RoleId -V2024DimensionBulkDeleteRequest $Result
|
||||
Remove-V2024BulkDimensions -V2024RoleId $RoleId -V2024DimensionBulkDeleteRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024BulkDimensions -V2024RoleId $RoleId -V2024DimensionBulkDeleteRequest $DimensionBulkDeleteRequest
|
||||
@@ -247,7 +246,7 @@ $DimensionId = "2c9180835d191a86015d28455b4a2329" # String | Id of the Dimension
|
||||
# Delete a Dimension
|
||||
|
||||
try {
|
||||
Remove-V2024Dimension-V2024RoleId $RoleId -V2024DimensionId $DimensionId
|
||||
Remove-V2024Dimension -V2024RoleId $RoleId -V2024DimensionId $DimensionId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024Dimension -V2024RoleId $RoleId -V2024DimensionId $DimensionId
|
||||
@@ -293,7 +292,7 @@ $DimensionId = "2c9180835d191a86015d28455b4a2329" # String | Id of the Dimension
|
||||
# Get a Dimension under Role.
|
||||
|
||||
try {
|
||||
Get-V2024Dimension-V2024RoleId $RoleId -V2024DimensionId $DimensionId
|
||||
Get-V2024Dimension -V2024RoleId $RoleId -V2024DimensionId $DimensionId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Dimension -V2024RoleId $RoleId -V2024DimensionId $DimensionId
|
||||
@@ -349,7 +348,7 @@ $Sorters = "name,-modified" # String | Sort results using the standard syntax de
|
||||
# List Dimension's Entitlements
|
||||
|
||||
try {
|
||||
Get-V2024DimensionEntitlements-V2024RoleId $RoleId -V2024DimensionId $DimensionId
|
||||
Get-V2024DimensionEntitlements -V2024RoleId $RoleId -V2024DimensionId $DimensionId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024DimensionEntitlements -V2024RoleId $RoleId -V2024DimensionId $DimensionId -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -406,7 +405,7 @@ $Sorters = "name,-modified" # String | Sort results using the standard syntax de
|
||||
# List Dimension's Access Profiles
|
||||
|
||||
try {
|
||||
Get-V2024DimensionAccessProfiles-V2024RoleId $RoleId -V2024DimensionId $DimensionId
|
||||
Get-V2024DimensionAccessProfiles -V2024RoleId $RoleId -V2024DimensionId $DimensionId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024DimensionAccessProfiles -V2024RoleId $RoleId -V2024DimensionId $DimensionId -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -462,7 +461,7 @@ $Sorters = "name,-modified" # String | Sort results using the standard syntax de
|
||||
# List Dimensions
|
||||
|
||||
try {
|
||||
Get-V2024Dimensions-V2024RoleId $RoleId
|
||||
Get-V2024Dimensions -V2024RoleId $RoleId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Dimensions -V2024RoleId $RoleId -V2024ForSubadmin $ForSubadmin -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -518,7 +517,7 @@ $DimensionId = "2c9180835d191a86015d28455b4a2329" # String | Id of the Dimension
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024Dimension-V2024RoleId $RoleId -V2024DimensionId $DimensionId -V2024JsonPatchOperation $Result
|
||||
Update-V2024Dimension -V2024RoleId $RoleId -V2024DimensionId $DimensionId -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024Dimension -V2024RoleId $RoleId -V2024DimensionId $DimensionId -V2024JsonPatchOperation $JsonPatchOperation
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-entitlements
|
||||
title: Entitlements
|
||||
@@ -118,7 +117,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Add metadata to an entitlement.
|
||||
|
||||
try {
|
||||
New-V2024AccessModelMetadataForEntitlement-V2024Id $Id -V2024AttributeKey $AttributeKey -V2024AttributeValue $AttributeValue -V2024XSailPointExperimental $XSailPointExperimental
|
||||
New-V2024AccessModelMetadataForEntitlement -V2024Id $Id -V2024AttributeKey $AttributeKey -V2024AttributeValue $AttributeValue -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024AccessModelMetadataForEntitlement -V2024Id $Id -V2024AttributeKey $AttributeKey -V2024AttributeValue $AttributeValue -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -166,7 +165,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Remove metadata from an entitlement.
|
||||
|
||||
try {
|
||||
Remove-V2024AccessModelMetadataFromEntitlement-V2024Id $Id -V2024AttributeKey $AttributeKey -V2024AttributeValue $AttributeValue -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Remove-V2024AccessModelMetadataFromEntitlement -V2024Id $Id -V2024AttributeKey $AttributeKey -V2024AttributeValue $AttributeValue -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024AccessModelMetadataFromEntitlement -V2024Id $Id -V2024AttributeKey $AttributeKey -V2024AttributeValue $AttributeValue -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -211,7 +210,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get an entitlement
|
||||
|
||||
try {
|
||||
Get-V2024Entitlement-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024Entitlement -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Entitlement -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -256,7 +255,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get Entitlement Request Config
|
||||
|
||||
try {
|
||||
Get-V2024EntitlementRequestConfig-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024EntitlementRequestConfig -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024EntitlementRequestConfig -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -306,7 +305,7 @@ $CsvFile = # System.IO.FileInfo | The CSV file containing the source entitlemen
|
||||
# Aggregate Entitlements
|
||||
|
||||
try {
|
||||
Import-V2024EntitlementsBySource-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Import-V2024EntitlementsBySource -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Import-V2024EntitlementsBySource -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024CsvFile $CsvFile
|
||||
@@ -361,7 +360,7 @@ $Filters = 'attribute eq "memberOf"' # String | Filter results using the standar
|
||||
# List of entitlements children
|
||||
|
||||
try {
|
||||
Get-V2024EntitlementChildren-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024EntitlementChildren -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024EntitlementChildren -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Sorters $Sorters -V2024Filters $Filters
|
||||
@@ -416,7 +415,7 @@ $Filters = 'attribute eq "memberOf"' # String | Filter results using the standar
|
||||
# List of entitlements parents
|
||||
|
||||
try {
|
||||
Get-V2024EntitlementParents-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024EntitlementParents -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024EntitlementParents -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Sorters $Sorters -V2024Filters $Filters
|
||||
@@ -480,7 +479,7 @@ $Filters = 'attribute eq "memberOf"' # String | Filter results using the standar
|
||||
# Gets a list of entitlements.
|
||||
|
||||
try {
|
||||
Get-V2024Entitlements-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024Entitlements -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Entitlements -V2024XSailPointExperimental $XSailPointExperimental -V2024AccountId $AccountId -V2024SegmentedForIdentity $SegmentedForIdentity -V2024ForSegmentIds $ForSegmentIds -V2024IncludeUnsegmented $IncludeUnsegmented -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count -V2024Sorters $Sorters -V2024Filters $Filters
|
||||
@@ -536,7 +535,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Patch an entitlement
|
||||
|
||||
try {
|
||||
Update-V2024Entitlement-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Update-V2024Entitlement -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024Entitlement -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatchOperation $JsonPatchOperation
|
||||
@@ -596,7 +595,7 @@ $EntitlementRequestConfig = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToEntitlementRequestConfig -Json $EntitlementRequestConfig
|
||||
Send-V2024EntitlementRequestConfig-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024EntitlementRequestConfig $Result
|
||||
Send-V2024EntitlementRequestConfig -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024EntitlementRequestConfig $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024EntitlementRequestConfig -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024EntitlementRequestConfig $EntitlementRequestConfig
|
||||
@@ -641,7 +640,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Reset Source Entitlements
|
||||
|
||||
try {
|
||||
Reset-V2024SourceEntitlements-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Reset-V2024SourceEntitlements -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Reset-V2024SourceEntitlements -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -703,7 +702,7 @@ $EntitlementBulkUpdateRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToEntitlementBulkUpdateRequest -Json $EntitlementBulkUpdateRequest
|
||||
Update-V2024EntitlementsInBulk-V2024XSailPointExperimental $XSailPointExperimental -V2024EntitlementBulkUpdateRequest $Result
|
||||
Update-V2024EntitlementsInBulk -V2024XSailPointExperimental $XSailPointExperimental -V2024EntitlementBulkUpdateRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024EntitlementsInBulk -V2024XSailPointExperimental $XSailPointExperimental -V2024EntitlementBulkUpdateRequest $EntitlementBulkUpdateRequest
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-global-tenant-security-settings
|
||||
title: GlobalTenantSecuritySettings
|
||||
@@ -63,7 +62,7 @@ $NetworkConfiguration = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToNetworkConfiguration -Json $NetworkConfiguration
|
||||
New-V2024AuthOrgNetworkConfig-V2024NetworkConfiguration $Result
|
||||
New-V2024AuthOrgNetworkConfig -V2024NetworkConfiguration $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024AuthOrgNetworkConfig -V2024NetworkConfiguration $NetworkConfiguration
|
||||
@@ -154,7 +153,7 @@ Code | Description | Data Type
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024AuthOrgNetworkConfig-V2024JsonPatchOperation $Result
|
||||
Update-V2024AuthOrgNetworkConfig -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024AuthOrgNetworkConfig -V2024JsonPatchOperation $JsonPatchOperation
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-governance-groups
|
||||
title: GovernanceGroups
|
||||
@@ -84,7 +83,7 @@ $WorkgroupDto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToWorkgroupDto -Json $WorkgroupDto
|
||||
New-V2024Workgroup-V2024XSailPointExperimental $XSailPointExperimental -V2024WorkgroupDto $Result
|
||||
New-V2024Workgroup -V2024XSailPointExperimental $XSailPointExperimental -V2024WorkgroupDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024Workgroup -V2024XSailPointExperimental $XSailPointExperimental -V2024WorkgroupDto $WorkgroupDto
|
||||
@@ -128,7 +127,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Delete a Governance Group
|
||||
|
||||
try {
|
||||
Remove-V2024Workgroup-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Remove-V2024Workgroup -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024Workgroup -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -179,7 +178,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToIdentityPreviewResponseIdentity -Json $IdentityPreviewResponseIdentity
|
||||
Remove-V2024WorkgroupMembers-V2024WorkgroupId $WorkgroupId -V2024XSailPointExperimental $XSailPointExperimental -V2024IdentityPreviewResponseIdentity $Result
|
||||
Remove-V2024WorkgroupMembers -V2024WorkgroupId $WorkgroupId -V2024XSailPointExperimental $XSailPointExperimental -V2024IdentityPreviewResponseIdentity $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024WorkgroupMembers -V2024WorkgroupId $WorkgroupId -V2024XSailPointExperimental $XSailPointExperimental -V2024IdentityPreviewResponseIdentity $IdentityPreviewResponseIdentity
|
||||
@@ -237,7 +236,7 @@ $WorkgroupBulkDeleteRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToWorkgroupBulkDeleteRequest -Json $WorkgroupBulkDeleteRequest
|
||||
Remove-V2024WorkgroupsInBulk-V2024XSailPointExperimental $XSailPointExperimental -V2024WorkgroupBulkDeleteRequest $Result
|
||||
Remove-V2024WorkgroupsInBulk -V2024XSailPointExperimental $XSailPointExperimental -V2024WorkgroupBulkDeleteRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024WorkgroupsInBulk -V2024XSailPointExperimental $XSailPointExperimental -V2024WorkgroupBulkDeleteRequest $WorkgroupBulkDeleteRequest
|
||||
@@ -281,7 +280,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get Governance Group by Id
|
||||
|
||||
try {
|
||||
Get-V2024Workgroup-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024Workgroup -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Workgroup -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -333,7 +332,7 @@ $Sorters = "name,-modified" # String | Sort results using the standard syntax de
|
||||
# List connections for Governance Group
|
||||
|
||||
try {
|
||||
Get-V2024Connections-V2024WorkgroupId $WorkgroupId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024Connections -V2024WorkgroupId $WorkgroupId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Connections -V2024WorkgroupId $WorkgroupId -V2024XSailPointExperimental $XSailPointExperimental -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count -V2024Sorters $Sorters
|
||||
@@ -385,7 +384,7 @@ $Sorters = "name,-modified" # String | Sort results using the standard syntax de
|
||||
# List Governance Group Members
|
||||
|
||||
try {
|
||||
Get-V2024WorkgroupMembers-V2024WorkgroupId $WorkgroupId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024WorkgroupMembers -V2024WorkgroupId $WorkgroupId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024WorkgroupMembers -V2024WorkgroupId $WorkgroupId -V2024XSailPointExperimental $XSailPointExperimental -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count -V2024Sorters $Sorters
|
||||
@@ -437,7 +436,7 @@ $Sorters = "name,-modified" # String | Sort results using the standard syntax de
|
||||
# List Governance Groups
|
||||
|
||||
try {
|
||||
Get-V2024Workgroups-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024Workgroups -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Workgroups -V2024XSailPointExperimental $XSailPointExperimental -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -491,7 +490,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Patch a Governance Group
|
||||
|
||||
try {
|
||||
Update-V2024Workgroup-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Update-V2024Workgroup -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024Workgroup -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatchOperation $JsonPatchOperation
|
||||
@@ -543,7 +542,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToIdentityPreviewResponseIdentity -Json $IdentityPreviewResponseIdentity
|
||||
Update-V2024WorkgroupMembers-V2024WorkgroupId $WorkgroupId -V2024XSailPointExperimental $XSailPointExperimental -V2024IdentityPreviewResponseIdentity $Result
|
||||
Update-V2024WorkgroupMembers -V2024WorkgroupId $WorkgroupId -V2024XSailPointExperimental $XSailPointExperimental -V2024IdentityPreviewResponseIdentity $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024WorkgroupMembers -V2024WorkgroupId $WorkgroupId -V2024XSailPointExperimental $XSailPointExperimental -V2024IdentityPreviewResponseIdentity $IdentityPreviewResponseIdentity
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-iai-access-request-recommendations
|
||||
title: IAIAccessRequestRecommendations
|
||||
@@ -68,7 +67,7 @@ $AccessRequestRecommendationActionItemDto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToAccessRequestRecommendationActionItemDto -Json $AccessRequestRecommendationActionItemDto
|
||||
Add-V2024AccessRequestRecommendationsIgnoredItem-V2024XSailPointExperimental $XSailPointExperimental -V2024AccessRequestRecommendationActionItemDto $Result
|
||||
Add-V2024AccessRequestRecommendationsIgnoredItem -V2024XSailPointExperimental $XSailPointExperimental -V2024AccessRequestRecommendationActionItemDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Add-V2024AccessRequestRecommendationsIgnoredItem -V2024XSailPointExperimental $XSailPointExperimental -V2024AccessRequestRecommendationActionItemDto $AccessRequestRecommendationActionItemDto
|
||||
@@ -119,7 +118,7 @@ $AccessRequestRecommendationActionItemDto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToAccessRequestRecommendationActionItemDto -Json $AccessRequestRecommendationActionItemDto
|
||||
Add-V2024AccessRequestRecommendationsRequestedItem-V2024XSailPointExperimental $XSailPointExperimental -V2024AccessRequestRecommendationActionItemDto $Result
|
||||
Add-V2024AccessRequestRecommendationsRequestedItem -V2024XSailPointExperimental $XSailPointExperimental -V2024AccessRequestRecommendationActionItemDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Add-V2024AccessRequestRecommendationsRequestedItem -V2024XSailPointExperimental $XSailPointExperimental -V2024AccessRequestRecommendationActionItemDto $AccessRequestRecommendationActionItemDto
|
||||
@@ -170,7 +169,7 @@ $AccessRequestRecommendationActionItemDto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToAccessRequestRecommendationActionItemDto -Json $AccessRequestRecommendationActionItemDto
|
||||
Add-V2024AccessRequestRecommendationsViewedItem-V2024XSailPointExperimental $XSailPointExperimental -V2024AccessRequestRecommendationActionItemDto $Result
|
||||
Add-V2024AccessRequestRecommendationsViewedItem -V2024XSailPointExperimental $XSailPointExperimental -V2024AccessRequestRecommendationActionItemDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Add-V2024AccessRequestRecommendationsViewedItem -V2024XSailPointExperimental $XSailPointExperimental -V2024AccessRequestRecommendationActionItemDto $AccessRequestRecommendationActionItemDto
|
||||
@@ -222,7 +221,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToAccessRequestRecommendationActionItemDto -Json $AccessRequestRecommendationActionItemDto
|
||||
Add-V2024AccessRequestRecommendationsViewedItems-V2024XSailPointExperimental $XSailPointExperimental -V2024AccessRequestRecommendationActionItemDto $Result
|
||||
Add-V2024AccessRequestRecommendationsViewedItems -V2024XSailPointExperimental $XSailPointExperimental -V2024AccessRequestRecommendationActionItemDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Add-V2024AccessRequestRecommendationsViewedItems -V2024XSailPointExperimental $XSailPointExperimental -V2024AccessRequestRecommendationActionItemDto $AccessRequestRecommendationActionItemDto
|
||||
@@ -278,7 +277,7 @@ $Sorters = "MySorters" # String | Sort results using the standard syntax describ
|
||||
# Identity Access Request Recommendations
|
||||
|
||||
try {
|
||||
Get-V2024AccessRequestRecommendations-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024AccessRequestRecommendations -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AccessRequestRecommendations -V2024XSailPointExperimental $XSailPointExperimental -V2024IdentityId $IdentityId -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024IncludeTranslationMessages $IncludeTranslationMessages -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -330,7 +329,7 @@ $Sorters = "access.id" # String | Sort results using the standard syntax describ
|
||||
# List of Ignored Access Request Recommendations
|
||||
|
||||
try {
|
||||
Get-V2024AccessRequestRecommendationsIgnoredItems-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024AccessRequestRecommendationsIgnoredItems -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AccessRequestRecommendationsIgnoredItems -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -382,7 +381,7 @@ $Sorters = "MySorters" # String | Sort results using the standard syntax describ
|
||||
# List of Requested Access Request Recommendations
|
||||
|
||||
try {
|
||||
Get-V2024AccessRequestRecommendationsRequestedItems-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024AccessRequestRecommendationsRequestedItems -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AccessRequestRecommendationsRequestedItems -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -434,7 +433,7 @@ $Sorters = "MySorters" # String | Sort results using the standard syntax describ
|
||||
# List of Viewed Access Request Recommendations
|
||||
|
||||
try {
|
||||
Get-V2024AccessRequestRecommendationsViewedItems-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024AccessRequestRecommendationsViewedItems -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AccessRequestRecommendationsViewedItems -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-iai-common-access
|
||||
title: IAICommonAccess
|
||||
@@ -67,7 +66,7 @@ $CommonAccessItemRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToCommonAccessItemRequest -Json $CommonAccessItemRequest
|
||||
New-V2024CommonAccess-V2024XSailPointExperimental $XSailPointExperimental -V2024CommonAccessItemRequest $Result
|
||||
New-V2024CommonAccess -V2024XSailPointExperimental $XSailPointExperimental -V2024CommonAccessItemRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024CommonAccess -V2024XSailPointExperimental $XSailPointExperimental -V2024CommonAccessItemRequest $CommonAccessItemRequest
|
||||
@@ -118,7 +117,7 @@ $Sorters = "access.name" # String | Sort results using the standard syntax descr
|
||||
# Get a paginated list of common access
|
||||
|
||||
try {
|
||||
Get-V2024CommonAccess-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024CommonAccess -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024CommonAccess -V2024XSailPointExperimental $XSailPointExperimental -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -167,7 +166,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToCommonAccessIDStatus -Json $CommonAccessIDStatus
|
||||
Update-V2024CommonAccessStatusInBulk-V2024XSailPointExperimental $XSailPointExperimental -V2024CommonAccessIDStatus $Result
|
||||
Update-V2024CommonAccessStatusInBulk -V2024XSailPointExperimental $XSailPointExperimental -V2024CommonAccessIDStatus $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024CommonAccessStatusInBulk -V2024XSailPointExperimental $XSailPointExperimental -V2024CommonAccessIDStatus $CommonAccessIDStatus
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-iai-outliers
|
||||
title: IAIOutliers
|
||||
@@ -65,7 +64,7 @@ $Type = "LOW_SIMILARITY" # String | Type of the identity outliers snapshot to fi
|
||||
# IAI Identity Outliers Export
|
||||
|
||||
try {
|
||||
Export-V2024OutliersZip-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Export-V2024OutliersZip -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Export-V2024OutliersZip -V2024XSailPointExperimental $XSailPointExperimental -V2024Type $Type
|
||||
@@ -118,7 +117,7 @@ $Sorters = "snapshotDate" # String | Sort results using the standard syntax desc
|
||||
# IAI Identity Outliers Summary
|
||||
|
||||
try {
|
||||
Get-V2024IdentityOutlierSnapshots-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024IdentityOutlierSnapshots -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024IdentityOutlierSnapshots -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Type $Type -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -172,7 +171,7 @@ $Sorters = "attributes.displayName,firstDetectionDate,-score" # String | Sort re
|
||||
# IAI Get Identity Outliers
|
||||
|
||||
try {
|
||||
Get-V2024IdentityOutliers-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024IdentityOutliers -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024IdentityOutliers -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Type $Type -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -217,7 +216,7 @@ $Type = "LOW_SIMILARITY" # String | Type of the identity outliers snapshot to fi
|
||||
# IAI Identity Outliers Latest Summary
|
||||
|
||||
try {
|
||||
Get-V2024LatestIdentityOutlierSnapshots-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024LatestIdentityOutlierSnapshots -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024LatestIdentityOutlierSnapshots -V2024XSailPointExperimental $XSailPointExperimental -V2024Type $Type
|
||||
@@ -265,7 +264,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get identity outlier contibuting feature summary
|
||||
|
||||
try {
|
||||
Get-V2024OutlierContributingFeatureSummary-V2024OutlierFeatureId $OutlierFeatureId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024OutlierContributingFeatureSummary -V2024OutlierFeatureId $OutlierFeatureId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024OutlierContributingFeatureSummary -V2024OutlierFeatureId $OutlierFeatureId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -323,7 +322,7 @@ $Sorters = "importance" # String | Sort results using the standard syntax descri
|
||||
# Get identity outlier's contibuting features
|
||||
|
||||
try {
|
||||
Get-V2024PeerGroupOutliersContributingFeatures-V2024OutlierId $OutlierId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024PeerGroupOutliersContributingFeatures -V2024OutlierId $OutlierId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024PeerGroupOutliersContributingFeatures -V2024OutlierId $OutlierId -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024IncludeTranslationMessages $IncludeTranslationMessages -V2024Sorters $Sorters
|
||||
@@ -370,7 +369,7 @@ $RequestBody = "MyRequestBody" # String[] |
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToRequestBody -Json $RequestBody
|
||||
Invoke-V2024IgnoreIdentityOutliers-V2024XSailPointExperimental $XSailPointExperimental -V2024RequestBody $Result
|
||||
Invoke-V2024IgnoreIdentityOutliers -V2024XSailPointExperimental $XSailPointExperimental -V2024RequestBody $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Invoke-V2024IgnoreIdentityOutliers -V2024XSailPointExperimental $XSailPointExperimental -V2024RequestBody $RequestBody
|
||||
@@ -430,7 +429,7 @@ $Sorters = "displayName" # String | Sort results using the standard syntax descr
|
||||
# Gets a list of access items associated with each identity outlier contributing feature
|
||||
|
||||
try {
|
||||
Get-V2024OutliersContributingFeatureAccessItems-V2024OutlierId $OutlierId -V2024ContributingFeatureName $ContributingFeatureName -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024OutliersContributingFeatureAccessItems -V2024OutlierId $OutlierId -V2024ContributingFeatureName $ContributingFeatureName -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024OutliersContributingFeatureAccessItems -V2024OutlierId $OutlierId -V2024ContributingFeatureName $ContributingFeatureName -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024AccessType $AccessType -V2024Sorters $Sorters
|
||||
@@ -477,7 +476,7 @@ $RequestBody = "MyRequestBody" # String[] |
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToRequestBody -Json $RequestBody
|
||||
Invoke-V2024UnIgnoreIdentityOutliers-V2024XSailPointExperimental $XSailPointExperimental -V2024RequestBody $Result
|
||||
Invoke-V2024UnIgnoreIdentityOutliers -V2024XSailPointExperimental $XSailPointExperimental -V2024RequestBody $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Invoke-V2024UnIgnoreIdentityOutliers -V2024XSailPointExperimental $XSailPointExperimental -V2024RequestBody $RequestBody
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-iai-peer-group-strategies
|
||||
title: IAIPeerGroupStrategies
|
||||
@@ -60,7 +59,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Identity Outliers List
|
||||
|
||||
try {
|
||||
Get-V2024PeerGroupOutliers-V2024Strategy $Strategy -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024PeerGroupOutliers -V2024Strategy $Strategy -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024PeerGroupOutliers -V2024Strategy $Strategy -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-iai-recommendations
|
||||
title: IAIRecommendations
|
||||
@@ -75,7 +74,7 @@ $RecommendationRequestDto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToRecommendationRequestDto -Json $RecommendationRequestDto
|
||||
Get-V2024Recommendations-V2024XSailPointExperimental $XSailPointExperimental -V2024RecommendationRequestDto $Result
|
||||
Get-V2024Recommendations -V2024XSailPointExperimental $XSailPointExperimental -V2024RecommendationRequestDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Recommendations -V2024XSailPointExperimental $XSailPointExperimental -V2024RecommendationRequestDto $RecommendationRequestDto
|
||||
@@ -116,7 +115,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get certification recommendation config values
|
||||
|
||||
try {
|
||||
Get-V2024RecommendationsConfig-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024RecommendationsConfig -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024RecommendationsConfig -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -165,7 +164,7 @@ $RecommendationConfigDto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToRecommendationConfigDto -Json $RecommendationConfigDto
|
||||
Update-V2024RecommendationsConfig-V2024XSailPointExperimental $XSailPointExperimental -V2024RecommendationConfigDto $Result
|
||||
Update-V2024RecommendationsConfig -V2024XSailPointExperimental $XSailPointExperimental -V2024RecommendationConfigDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024RecommendationsConfig -V2024XSailPointExperimental $XSailPointExperimental -V2024RecommendationConfigDto $RecommendationConfigDto
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-iai-role-mining
|
||||
title: IAIRoleMining
|
||||
@@ -92,7 +91,7 @@ $RoleMiningPotentialRoleProvisionRequest = @"{
|
||||
# Create request to provision a potential role into an actual role.
|
||||
|
||||
try {
|
||||
New-V2024PotentialRoleProvisionRequest-V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
New-V2024PotentialRoleProvisionRequest -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024PotentialRoleProvisionRequest -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental -V2024MinEntitlementPopularity $MinEntitlementPopularity -V2024IncludeCommonAccess $IncludeCommonAccess -V2024RoleMiningPotentialRoleProvisionRequest $RoleMiningPotentialRoleProvisionRequest
|
||||
@@ -168,7 +167,7 @@ $RoleMiningSessionDto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToRoleMiningSessionDto -Json $RoleMiningSessionDto
|
||||
New-V2024RoleMiningSessions-V2024XSailPointExperimental $XSailPointExperimental -V2024RoleMiningSessionDto $Result
|
||||
New-V2024RoleMiningSessions -V2024XSailPointExperimental $XSailPointExperimental -V2024RoleMiningSessionDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024RoleMiningSessions -V2024XSailPointExperimental $XSailPointExperimental -V2024RoleMiningSessionDto $RoleMiningSessionDto
|
||||
@@ -215,7 +214,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Export (download) details for a potential role in a role mining session
|
||||
|
||||
try {
|
||||
Invoke-V2024DownloadRoleMiningPotentialRoleZip-V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024ExportId $ExportId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Invoke-V2024DownloadRoleMiningPotentialRoleZip -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024ExportId $ExportId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Invoke-V2024DownloadRoleMiningPotentialRoleZip -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024ExportId $ExportId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -260,7 +259,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Export (download) details for a potential role in a role mining session
|
||||
|
||||
try {
|
||||
Export-V2024RoleMiningPotentialRole-V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Export-V2024RoleMiningPotentialRole -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Export-V2024RoleMiningPotentialRole -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -310,7 +309,7 @@ $RoleMiningPotentialRoleExportRequest = @"{
|
||||
# Asynchronously export details for a potential role in a role mining session and upload to S3
|
||||
|
||||
try {
|
||||
Export-V2024RoleMiningPotentialRoleAsync-V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Export-V2024RoleMiningPotentialRoleAsync -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Export-V2024RoleMiningPotentialRoleAsync -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental -V2024RoleMiningPotentialRoleExportRequest $RoleMiningPotentialRoleExportRequest
|
||||
@@ -357,7 +356,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Retrieve status of a potential role export job
|
||||
|
||||
try {
|
||||
Export-V2024RoleMiningPotentialRoleStatus-V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024ExportId $ExportId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Export-V2024RoleMiningPotentialRoleStatus -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024ExportId $ExportId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Export-V2024RoleMiningPotentialRoleStatus -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024ExportId $ExportId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -409,7 +408,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Retrieves all potential role summaries
|
||||
|
||||
try {
|
||||
Get-V2024AllPotentialRoleSummaries-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024AllPotentialRoleSummaries -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AllPotentialRoleSummaries -V2024XSailPointExperimental $XSailPointExperimental -V2024Sorters $Sorters -V2024Filters $Filters -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count
|
||||
@@ -456,7 +455,7 @@ $IncludeCommonAccess = $true # Boolean | Boolean determining whether common acce
|
||||
# Retrieves entitlement popularity distribution for a potential role in a role mining session
|
||||
|
||||
try {
|
||||
Get-V2024EntitlementDistributionPotentialRole-V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024EntitlementDistributionPotentialRole -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024EntitlementDistributionPotentialRole -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental -V2024IncludeCommonAccess $IncludeCommonAccess
|
||||
@@ -514,7 +513,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Retrieves entitlements for a potential role in a role mining session
|
||||
|
||||
try {
|
||||
Get-V2024EntitlementsPotentialRole-V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024EntitlementsPotentialRole -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024EntitlementsPotentialRole -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental -V2024IncludeCommonAccess $IncludeCommonAccess -V2024Sorters $Sorters -V2024Filters $Filters -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count
|
||||
@@ -569,7 +568,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Retrieves excluded entitlements for a potential role in a role mining session
|
||||
|
||||
try {
|
||||
Get-V2024ExcludedEntitlementsPotentialRole-V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024ExcludedEntitlementsPotentialRole -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ExcludedEntitlementsPotentialRole -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental -V2024Sorters $Sorters -V2024Filters $Filters -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count
|
||||
@@ -624,7 +623,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Retrieves identities for a potential role in a role mining session
|
||||
|
||||
try {
|
||||
Get-V2024IdentitiesPotentialRole-V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024IdentitiesPotentialRole -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024IdentitiesPotentialRole -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental -V2024Sorters $Sorters -V2024Filters $Filters -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count
|
||||
@@ -670,7 +669,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Retrieves a specific potential role
|
||||
|
||||
try {
|
||||
Get-V2024PotentialRole-V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024PotentialRole -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024PotentialRole -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -724,7 +723,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Retrieves the applications of a potential role for a role mining session
|
||||
|
||||
try {
|
||||
Get-V2024PotentialRoleApplications-V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024PotentialRoleApplications -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024PotentialRoleApplications -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental -V2024Filters $Filters -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count
|
||||
@@ -778,7 +777,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Retrieves the entitlements of a potential role for a role mining session
|
||||
|
||||
try {
|
||||
Get-V2024PotentialRoleEntitlements-V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024PotentialRoleEntitlements -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024PotentialRoleEntitlements -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental -V2024Filters $Filters -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count
|
||||
@@ -832,7 +831,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Retrieves potential role source usage
|
||||
|
||||
try {
|
||||
Get-V2024PotentialRoleSourceIdentityUsage-V2024PotentialRoleId $PotentialRoleId -V2024SourceId $SourceId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024PotentialRoleSourceIdentityUsage -V2024PotentialRoleId $PotentialRoleId -V2024SourceId $SourceId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024PotentialRoleSourceIdentityUsage -V2024PotentialRoleId $PotentialRoleId -V2024SourceId $SourceId -V2024XSailPointExperimental $XSailPointExperimental -V2024Sorters $Sorters -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count
|
||||
@@ -886,7 +885,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Retrieves all potential role summaries
|
||||
|
||||
try {
|
||||
Get-V2024PotentialRoleSummaries-V2024SessionId $SessionId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024PotentialRoleSummaries -V2024SessionId $SessionId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024PotentialRoleSummaries -V2024SessionId $SessionId -V2024XSailPointExperimental $XSailPointExperimental -V2024Sorters $Sorters -V2024Filters $Filters -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count
|
||||
@@ -930,7 +929,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Retrieves a specific potential role
|
||||
|
||||
try {
|
||||
Get-V2024RoleMiningPotentialRole-V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024RoleMiningPotentialRole -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024RoleMiningPotentialRole -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -975,7 +974,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get a role mining session
|
||||
|
||||
try {
|
||||
Get-V2024RoleMiningSession-V2024SessionId $SessionId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024RoleMiningSession -V2024SessionId $SessionId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024RoleMiningSession -V2024SessionId $SessionId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -1018,7 +1017,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get role mining session status state
|
||||
|
||||
try {
|
||||
Get-V2024RoleMiningSessionStatus-V2024SessionId $SessionId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024RoleMiningSessionStatus -V2024SessionId $SessionId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024RoleMiningSessionStatus -V2024SessionId $SessionId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -1070,7 +1069,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Retrieves all role mining sessions
|
||||
|
||||
try {
|
||||
Get-V2024RoleMiningSessions-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024RoleMiningSessions -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024RoleMiningSessions -V2024XSailPointExperimental $XSailPointExperimental -V2024Filters $Filters -V2024Sorters $Sorters -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count
|
||||
@@ -1120,7 +1119,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Retrieves all saved potential roles
|
||||
|
||||
try {
|
||||
Get-V2024SavedPotentialRoles-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024SavedPotentialRoles -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SavedPotentialRoles -V2024XSailPointExperimental $XSailPointExperimental -V2024Sorters $Sorters -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count
|
||||
@@ -1183,7 +1182,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToPatchPotentialRoleRequestInner -Json $PatchPotentialRoleRequestInner
|
||||
Update-V2024PotentialRole-V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental -V2024PatchPotentialRoleRequestInner $Result
|
||||
Update-V2024PotentialRole -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental -V2024PatchPotentialRoleRequestInner $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024PotentialRole -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental -V2024PatchPotentialRoleRequestInner $PatchPotentialRoleRequestInner
|
||||
@@ -1246,7 +1245,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToPatchPotentialRoleRequestInner -Json $PatchPotentialRoleRequestInner
|
||||
Update-V2024PotentialRole0-V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental -V2024PatchPotentialRoleRequestInner $Result
|
||||
Update-V2024PotentialRole0 -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental -V2024PatchPotentialRoleRequestInner $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024PotentialRole0 -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental -V2024PatchPotentialRoleRequestInner $PatchPotentialRoleRequestInner
|
||||
@@ -1299,7 +1298,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024RoleMiningSession-V2024SessionId $SessionId -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatchOperation $Result
|
||||
Update-V2024RoleMiningSession -V2024SessionId $SessionId -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024RoleMiningSession -V2024SessionId $SessionId -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatchOperation $JsonPatchOperation
|
||||
@@ -1350,7 +1349,7 @@ $RoleMiningPotentialRoleEditEntitlements = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToRoleMiningPotentialRoleEditEntitlements -Json $RoleMiningPotentialRoleEditEntitlements
|
||||
Update-V2024EntitlementsPotentialRole-V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental -V2024RoleMiningPotentialRoleEditEntitlements $Result
|
||||
Update-V2024EntitlementsPotentialRole -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental -V2024RoleMiningPotentialRoleEditEntitlements $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024EntitlementsPotentialRole -V2024SessionId $SessionId -V2024PotentialRoleId $PotentialRoleId -V2024XSailPointExperimental $XSailPointExperimental -V2024RoleMiningPotentialRoleEditEntitlements $RoleMiningPotentialRoleEditEntitlements
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-icons
|
||||
title: Icons
|
||||
@@ -60,7 +59,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Delete an icon
|
||||
|
||||
try {
|
||||
Remove-V2024Icon-V2024ObjectType $ObjectType -V2024ObjectId $ObjectId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Remove-V2024Icon -V2024ObjectType $ObjectType -V2024ObjectId $ObjectId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024Icon -V2024ObjectType $ObjectType -V2024ObjectId $ObjectId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -109,7 +108,7 @@ $Image = # System.IO.FileInfo | file with icon. Allowed mime-types ['image/png'
|
||||
# Update an icon
|
||||
|
||||
try {
|
||||
Set-V2024Icon-V2024ObjectType $ObjectType -V2024ObjectId $ObjectId -V2024XSailPointExperimental $XSailPointExperimental -V2024Image $Image
|
||||
Set-V2024Icon -V2024ObjectType $ObjectType -V2024ObjectId $ObjectId -V2024XSailPointExperimental $XSailPointExperimental -V2024Image $Image
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Set-V2024Icon -V2024ObjectType $ObjectType -V2024ObjectId $ObjectId -V2024XSailPointExperimental $XSailPointExperimental -V2024Image $Image
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-identities
|
||||
title: Identities
|
||||
@@ -80,7 +79,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Delete identity
|
||||
|
||||
try {
|
||||
Remove-V2024Identity-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Remove-V2024Identity -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024Identity -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -125,7 +124,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Identity Details
|
||||
|
||||
try {
|
||||
Get-V2024Identity-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024Identity -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Identity -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -172,7 +171,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get ownership details
|
||||
|
||||
try {
|
||||
Get-V2024IdentityOwnershipDetails-V2024IdentityId $IdentityId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024IdentityOwnershipDetails -V2024IdentityId $IdentityId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024IdentityOwnershipDetails -V2024IdentityId $IdentityId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -219,7 +218,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Role assignment details
|
||||
|
||||
try {
|
||||
Get-V2024RoleAssignment-V2024IdentityId $IdentityId -V2024AssignmentId $AssignmentId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024RoleAssignment -V2024IdentityId $IdentityId -V2024AssignmentId $AssignmentId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024RoleAssignment -V2024IdentityId $IdentityId -V2024AssignmentId $AssignmentId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -268,7 +267,7 @@ $RoleName = "Engineer" # String | Role name to filter the role assignments with
|
||||
# List role assignments
|
||||
|
||||
try {
|
||||
Get-V2024RoleAssignments-V2024IdentityId $IdentityId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024RoleAssignments -V2024IdentityId $IdentityId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024RoleAssignments -V2024IdentityId $IdentityId -V2024XSailPointExperimental $XSailPointExperimental -V2024RoleId $RoleId -V2024RoleName $RoleName
|
||||
@@ -322,7 +321,7 @@ $Offset = 0 # Int32 | Offset into the full result set. Usually specified with *l
|
||||
# List Identities
|
||||
|
||||
try {
|
||||
Get-V2024Identities-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024Identities -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Identities -V2024XSailPointExperimental $XSailPointExperimental -V2024Filters $Filters -V2024Sorters $Sorters -V2024DefaultFilter $DefaultFilter -V2024Count $Count -V2024Limit $Limit -V2024Offset $Offset
|
||||
@@ -367,7 +366,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Reset an identity
|
||||
|
||||
try {
|
||||
Reset-V2024Identity-V2024IdentityId $IdentityId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Reset-V2024Identity -V2024IdentityId $IdentityId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Reset-V2024Identity -V2024IdentityId $IdentityId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -419,7 +418,7 @@ $SendAccountVerificationRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSendAccountVerificationRequest -Json $SendAccountVerificationRequest
|
||||
Send-V2024IdentityVerificationAccountToken-V2024XSailPointExperimental $XSailPointExperimental -V2024Id $Id -V2024SendAccountVerificationRequest $Result
|
||||
Send-V2024IdentityVerificationAccountToken -V2024XSailPointExperimental $XSailPointExperimental -V2024Id $Id -V2024SendAccountVerificationRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024IdentityVerificationAccountToken -V2024XSailPointExperimental $XSailPointExperimental -V2024Id $Id -V2024SendAccountVerificationRequest $SendAccountVerificationRequest
|
||||
@@ -473,7 +472,7 @@ $InviteIdentitiesRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToInviteIdentitiesRequest -Json $InviteIdentitiesRequest
|
||||
Start-V2024IdentitiesInvite-V2024XSailPointExperimental $XSailPointExperimental -V2024InviteIdentitiesRequest $Result
|
||||
Start-V2024IdentitiesInvite -V2024XSailPointExperimental $XSailPointExperimental -V2024InviteIdentitiesRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Start-V2024IdentitiesInvite -V2024XSailPointExperimental $XSailPointExperimental -V2024InviteIdentitiesRequest $InviteIdentitiesRequest
|
||||
@@ -528,7 +527,7 @@ $ProcessIdentitiesRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToProcessIdentitiesRequest -Json $ProcessIdentitiesRequest
|
||||
Start-V2024IdentityProcessing-V2024XSailPointExperimental $XSailPointExperimental -V2024ProcessIdentitiesRequest $Result
|
||||
Start-V2024IdentityProcessing -V2024XSailPointExperimental $XSailPointExperimental -V2024ProcessIdentitiesRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Start-V2024IdentityProcessing -V2024XSailPointExperimental $XSailPointExperimental -V2024ProcessIdentitiesRequest $ProcessIdentitiesRequest
|
||||
@@ -573,7 +572,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Attribute synchronization for single identity.
|
||||
|
||||
try {
|
||||
Sync-V2024hronizeAttributesForIdentity-V2024IdentityId $IdentityId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Sync-V2024hronizeAttributesForIdentity -V2024IdentityId $IdentityId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Sync-V2024hronizeAttributesForIdentity -V2024IdentityId $IdentityId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-identity-attributes
|
||||
title: IdentityAttributes
|
||||
@@ -82,7 +81,7 @@ $IdentityAttribute = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToIdentityAttribute -Json $IdentityAttribute
|
||||
New-V2024IdentityAttribute-V2024XSailPointExperimental $XSailPointExperimental -V2024IdentityAttribute $Result
|
||||
New-V2024IdentityAttribute -V2024XSailPointExperimental $XSailPointExperimental -V2024IdentityAttribute $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024IdentityAttribute -V2024XSailPointExperimental $XSailPointExperimental -V2024IdentityAttribute $IdentityAttribute
|
||||
@@ -127,7 +126,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Delete Identity Attribute
|
||||
|
||||
try {
|
||||
Remove-V2024IdentityAttribute-V2024Name $Name -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Remove-V2024IdentityAttribute -V2024Name $Name -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024IdentityAttribute -V2024Name $Name -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -175,7 +174,7 @@ $IdentityAttributeNames = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToIdentityAttributeNames -Json $IdentityAttributeNames
|
||||
Remove-V2024IdentityAttributesInBulk-V2024XSailPointExperimental $XSailPointExperimental -V2024IdentityAttributeNames $Result
|
||||
Remove-V2024IdentityAttributesInBulk -V2024XSailPointExperimental $XSailPointExperimental -V2024IdentityAttributeNames $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024IdentityAttributesInBulk -V2024XSailPointExperimental $XSailPointExperimental -V2024IdentityAttributeNames $IdentityAttributeNames
|
||||
@@ -220,7 +219,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get Identity Attribute
|
||||
|
||||
try {
|
||||
Get-V2024IdentityAttribute-V2024Name $Name -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024IdentityAttribute -V2024Name $Name -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024IdentityAttribute -V2024Name $Name -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -270,7 +269,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# List Identity Attributes
|
||||
|
||||
try {
|
||||
Get-V2024IdentityAttributes-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024IdentityAttributes -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024IdentityAttributes -V2024XSailPointExperimental $XSailPointExperimental -V2024IncludeSystem $IncludeSystem -V2024IncludeSilent $IncludeSilent -V2024SearchableOnly $SearchableOnly -V2024Count $Count
|
||||
@@ -339,7 +338,7 @@ $IdentityAttribute = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToIdentityAttribute -Json $IdentityAttribute
|
||||
Send-V2024IdentityAttribute-V2024Name $Name -V2024XSailPointExperimental $XSailPointExperimental -V2024IdentityAttribute $Result
|
||||
Send-V2024IdentityAttribute -V2024Name $Name -V2024XSailPointExperimental $XSailPointExperimental -V2024IdentityAttribute $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024IdentityAttribute -V2024Name $Name -V2024XSailPointExperimental $XSailPointExperimental -V2024IdentityAttribute $IdentityAttribute
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-identity-history
|
||||
title: IdentityHistory
|
||||
@@ -78,7 +77,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Gets a difference of count for each access item types for the given identity between 2 snapshots
|
||||
|
||||
try {
|
||||
Compare-V2024IdentitySnapshots-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Compare-V2024IdentitySnapshots -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Compare-V2024IdentitySnapshots -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024Snapshot1 $Snapshot1 -V2024Snapshot2 $Snapshot2 -V2024AccessItemTypes $AccessItemTypes -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count
|
||||
@@ -136,7 +135,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Gets a list of differences of specific accessType for the given identity between 2 snapshots
|
||||
|
||||
try {
|
||||
Compare-V2024IdentitySnapshotsAccessType-V2024Id $Id -V2024AccessType $AccessType -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Compare-V2024IdentitySnapshotsAccessType -V2024Id $Id -V2024AccessType $AccessType -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Compare-V2024IdentitySnapshotsAccessType -V2024Id $Id -V2024AccessType $AccessType -V2024XSailPointExperimental $XSailPointExperimental -V2024AccessAssociated $AccessAssociated -V2024Snapshot1 $Snapshot1 -V2024Snapshot2 $Snapshot2 -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count
|
||||
@@ -180,7 +179,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get latest snapshot of identity
|
||||
|
||||
try {
|
||||
Get-V2024HistoricalIdentity-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024HistoricalIdentity -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024HistoricalIdentity -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -241,7 +240,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Lists all events for the given identity
|
||||
|
||||
try {
|
||||
Get-V2024HistoricalIdentityEvents-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024HistoricalIdentityEvents -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024HistoricalIdentityEvents -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024From $From -V2024EventTypes $EventTypes -V2024AccessItemTypes $AccessItemTypes -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count
|
||||
@@ -287,7 +286,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Gets an identity snapshot at a given date
|
||||
|
||||
try {
|
||||
Get-V2024IdentitySnapshot-V2024Id $Id -V2024Date $Date -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024IdentitySnapshot -V2024Id $Id -V2024Date $Date -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024IdentitySnapshot -V2024Id $Id -V2024Date $Date -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -343,7 +342,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Gets the summary for the event count for a specific identity
|
||||
|
||||
try {
|
||||
Get-V2024IdentitySnapshotSummary-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024IdentitySnapshotSummary -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024IdentitySnapshotSummary -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024Before $Before -V2024Interval $Interval -V2024TimeZone $TimeZone -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count
|
||||
@@ -387,7 +386,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Gets the start date of the identity
|
||||
|
||||
try {
|
||||
Get-V2024IdentityStartDate-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024IdentityStartDate -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024IdentityStartDate -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -439,7 +438,7 @@ $Offset = 0 # Int32 | Offset into the full result set. Usually specified with *l
|
||||
# Lists all the identities
|
||||
|
||||
try {
|
||||
Get-V2024HistoricalIdentities-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024HistoricalIdentities -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024HistoricalIdentities -V2024XSailPointExperimental $XSailPointExperimental -V2024StartsWithQuery $StartsWithQuery -V2024IsDeleted $IsDeleted -V2024IsActive $IsActive -V2024Limit $Limit -V2024Offset $Offset
|
||||
@@ -493,7 +492,7 @@ $Offset = 0 # Int32 | Offset into the full result set. Usually specified with *l
|
||||
# List Access Items by Identity
|
||||
|
||||
try {
|
||||
Get-V2024IdentityAccessItems-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024IdentityAccessItems -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024IdentityAccessItems -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024Type $Type -V2024Limit $Limit -V2024Count $Count -V2024Offset $Offset
|
||||
@@ -541,7 +540,7 @@ $Type = "account" # String | The access item type (optional)
|
||||
# Gets the list of identity access items at a given date filterd by item type
|
||||
|
||||
try {
|
||||
Get-V2024IdentitySnapshotAccessItems-V2024Id $Id -V2024Date $Date -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024IdentitySnapshotAccessItems -V2024Id $Id -V2024Date $Date -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024IdentitySnapshotAccessItems -V2024Id $Id -V2024Date $Date -V2024XSailPointExperimental $XSailPointExperimental -V2024Type $Type
|
||||
@@ -595,7 +594,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Lists all the snapshots for the identity
|
||||
|
||||
try {
|
||||
Get-V2024IdentitySnapshots-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024IdentitySnapshots -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024IdentitySnapshots -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024Start $Start -V2024Interval $Interval -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-identity-profiles
|
||||
title: IdentityProfiles
|
||||
@@ -121,7 +120,7 @@ $IdentityProfile = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToIdentityProfile -Json $IdentityProfile
|
||||
New-V2024IdentityProfile-V2024IdentityProfile $Result
|
||||
New-V2024IdentityProfile -V2024IdentityProfile $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024IdentityProfile -V2024IdentityProfile $IdentityProfile
|
||||
@@ -169,7 +168,7 @@ $IdentityProfileId = "ef38f94347e94562b5bb8424a56397d8" # String | The Identity
|
||||
# Delete an Identity Profile
|
||||
|
||||
try {
|
||||
Remove-V2024IdentityProfile-V2024IdentityProfileId $IdentityProfileId
|
||||
Remove-V2024IdentityProfile -V2024IdentityProfileId $IdentityProfileId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024IdentityProfile -V2024IdentityProfileId $IdentityProfileId
|
||||
@@ -218,7 +217,7 @@ $RequestBody = "MyRequestBody" # String[] | Identity Profile bulk delete request
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToRequestBody -Json $RequestBody
|
||||
Remove-V2024IdentityProfiles-V2024RequestBody $Result
|
||||
Remove-V2024IdentityProfiles -V2024RequestBody $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024IdentityProfiles -V2024RequestBody $RequestBody
|
||||
@@ -311,7 +310,7 @@ $IdentityProfileId = "2b838de9-db9b-abcf-e646-d4f274ad4238" # String | The Ident
|
||||
# Get default Identity Attribute Config
|
||||
|
||||
try {
|
||||
Get-V2024DefaultIdentityAttributeConfig-V2024IdentityProfileId $IdentityProfileId
|
||||
Get-V2024DefaultIdentityAttributeConfig -V2024IdentityProfileId $IdentityProfileId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024DefaultIdentityAttributeConfig -V2024IdentityProfileId $IdentityProfileId
|
||||
@@ -354,7 +353,7 @@ $IdentityProfileId = "2b838de9-db9b-abcf-e646-d4f274ad4238" # String | The Ident
|
||||
# Get single Identity Profile
|
||||
|
||||
try {
|
||||
Get-V2024IdentityProfile-V2024IdentityProfileId $IdentityProfileId
|
||||
Get-V2024IdentityProfile -V2024IdentityProfileId $IdentityProfileId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024IdentityProfile -V2024IdentityProfileId $IdentityProfileId
|
||||
@@ -459,7 +458,7 @@ Code | Description | Data Type
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToIdentityProfileExportedObject -Json $IdentityProfileExportedObject
|
||||
Import-V2024IdentityProfiles-V2024IdentityProfileExportedObject $Result
|
||||
Import-V2024IdentityProfiles -V2024IdentityProfileExportedObject $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Import-V2024IdentityProfiles -V2024IdentityProfileExportedObject $IdentityProfileExportedObject
|
||||
@@ -579,7 +578,7 @@ $IdentityPreviewRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToIdentityPreviewRequest -Json $IdentityPreviewRequest
|
||||
Show-V2024IdentityPreview-V2024IdentityPreviewRequest $Result
|
||||
Show-V2024IdentityPreview -V2024IdentityPreviewRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Show-V2024IdentityPreview -V2024IdentityPreviewRequest $IdentityPreviewRequest
|
||||
@@ -626,7 +625,7 @@ $IdentityProfileId = "ef38f94347e94562b5bb8424a56397d8" # String | The Identity
|
||||
# Process identities under profile
|
||||
|
||||
try {
|
||||
Sync-V2024IdentityProfile-V2024IdentityProfileId $IdentityProfileId
|
||||
Sync-V2024IdentityProfile -V2024IdentityProfileId $IdentityProfileId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Sync-V2024IdentityProfile -V2024IdentityProfileId $IdentityProfileId
|
||||
@@ -687,7 +686,7 @@ $IdentityProfileId = "ef38f94347e94562b5bb8424a56397d8" # String | The Identity
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024IdentityProfile-V2024IdentityProfileId $IdentityProfileId -V2024JsonPatchOperation $Result
|
||||
Update-V2024IdentityProfile -V2024IdentityProfileId $IdentityProfileId -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024IdentityProfile -V2024IdentityProfileId $IdentityProfileId -V2024JsonPatchOperation $JsonPatchOperation
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-lifecycle-states
|
||||
title: LifecycleStates
|
||||
@@ -122,7 +121,7 @@ $LifecycleState = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToLifecycleState -Json $LifecycleState
|
||||
New-V2024LifecycleState-V2024IdentityProfileId $IdentityProfileId -V2024LifecycleState $Result
|
||||
New-V2024LifecycleState -V2024IdentityProfileId $IdentityProfileId -V2024LifecycleState $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024LifecycleState -V2024IdentityProfileId $IdentityProfileId -V2024LifecycleState $LifecycleState
|
||||
@@ -167,7 +166,7 @@ $LifecycleStateId = "ef38f94347e94562b5bb8424a56397d8" # String | Lifecycle stat
|
||||
# Delete Lifecycle State
|
||||
|
||||
try {
|
||||
Remove-V2024LifecycleState-V2024IdentityProfileId $IdentityProfileId -V2024LifecycleStateId $LifecycleStateId
|
||||
Remove-V2024LifecycleState -V2024IdentityProfileId $IdentityProfileId -V2024LifecycleStateId $LifecycleStateId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024LifecycleState -V2024IdentityProfileId $IdentityProfileId -V2024LifecycleStateId $LifecycleStateId
|
||||
@@ -212,7 +211,7 @@ $LifecycleStateId = "ef38f94347e94562b5bb8424a56397d8" # String | Lifecycle stat
|
||||
# Get Lifecycle State
|
||||
|
||||
try {
|
||||
Get-V2024LifecycleState-V2024IdentityProfileId $IdentityProfileId -V2024LifecycleStateId $LifecycleStateId
|
||||
Get-V2024LifecycleState -V2024IdentityProfileId $IdentityProfileId -V2024LifecycleStateId $LifecycleStateId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024LifecycleState -V2024IdentityProfileId $IdentityProfileId -V2024LifecycleStateId $LifecycleStateId
|
||||
@@ -262,7 +261,7 @@ $Sorters = "created,modified" # String | Sort results using the standard syntax
|
||||
# Lists LifecycleStates
|
||||
|
||||
try {
|
||||
Get-V2024LifecycleStates-V2024IdentityProfileId $IdentityProfileId
|
||||
Get-V2024LifecycleStates -V2024IdentityProfileId $IdentityProfileId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024LifecycleStates -V2024IdentityProfileId $IdentityProfileId -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Sorters $Sorters
|
||||
@@ -308,7 +307,7 @@ $SetLifecycleStateRequest = @""@
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSetLifecycleStateRequest -Json $SetLifecycleStateRequest
|
||||
Set-V2024LifecycleState-V2024IdentityId $IdentityId -V2024SetLifecycleStateRequest $Result
|
||||
Set-V2024LifecycleState -V2024IdentityId $IdentityId -V2024SetLifecycleStateRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Set-V2024LifecycleState -V2024IdentityId $IdentityId -V2024SetLifecycleStateRequest $SetLifecycleStateRequest
|
||||
@@ -361,7 +360,7 @@ $LifecycleStateId = "ef38f94347e94562b5bb8424a56397d8" # String | Lifecycle stat
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024LifecycleStates-V2024IdentityProfileId $IdentityProfileId -V2024LifecycleStateId $LifecycleStateId -V2024JsonPatchOperation $Result
|
||||
Update-V2024LifecycleStates -V2024IdentityProfileId $IdentityProfileId -V2024LifecycleStateId $LifecycleStateId -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024LifecycleStates -V2024IdentityProfileId $IdentityProfileId -V2024LifecycleStateId $LifecycleStateId -V2024JsonPatchOperation $JsonPatchOperation
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-mfa-configuration
|
||||
title: MFAConfiguration
|
||||
@@ -191,7 +190,7 @@ $MfaDuoConfig = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToMfaDuoConfig -Json $MfaDuoConfig
|
||||
Set-V2024MFADuoConfig-V2024MfaDuoConfig $Result
|
||||
Set-V2024MFADuoConfig -V2024MfaDuoConfig $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Set-V2024MFADuoConfig -V2024MfaDuoConfig $MfaDuoConfig
|
||||
@@ -238,7 +237,7 @@ Code | Description | Data Type
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToKbaAnswerRequestItem -Json $KbaAnswerRequestItem
|
||||
Set-V2024MFAKBAConfig-V2024KbaAnswerRequestItem $Result
|
||||
Set-V2024MFAKBAConfig -V2024KbaAnswerRequestItem $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Set-V2024MFAKBAConfig -V2024KbaAnswerRequestItem $KbaAnswerRequestItem
|
||||
@@ -287,7 +286,7 @@ $MfaOktaConfig = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToMfaOktaConfig -Json $MfaOktaConfig
|
||||
Set-V2024MFAOktaConfig-V2024MfaOktaConfig $Result
|
||||
Set-V2024MFAOktaConfig -V2024MfaOktaConfig $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Set-V2024MFAOktaConfig -V2024MfaOktaConfig $MfaOktaConfig
|
||||
@@ -329,7 +328,7 @@ $Method = "okta-verify" # String | The name of the MFA method. The currently sup
|
||||
# MFA method's test configuration
|
||||
|
||||
try {
|
||||
Test-V2024MFAConfig-V2024Method $Method
|
||||
Test-V2024MFAConfig -V2024Method $Method
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Test-V2024MFAConfig -V2024Method $Method
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-managed-clients
|
||||
title: ManagedClients
|
||||
@@ -66,7 +65,7 @@ $ManagedClientRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToManagedClientRequest -Json $ManagedClientRequest
|
||||
New-V2024ManagedClient-V2024ManagedClientRequest $Result
|
||||
New-V2024ManagedClient -V2024ManagedClientRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024ManagedClient -V2024ManagedClientRequest $ManagedClientRequest
|
||||
@@ -108,7 +107,7 @@ $Id = "4440278c-0ce2-41ee-a0a9-f5cfd5e8d3b7" # String | Managed client ID.
|
||||
# Delete Managed Client
|
||||
|
||||
try {
|
||||
Remove-V2024ManagedClient-V2024Id $Id
|
||||
Remove-V2024ManagedClient -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024ManagedClient -V2024Id $Id
|
||||
@@ -151,7 +150,7 @@ $Id = "4440278c-0ce2-41ee-a0a9-f5cfd5e8d3b7" # String | Managed client ID.
|
||||
# Get Managed Client
|
||||
|
||||
try {
|
||||
Get-V2024ManagedClient-V2024Id $Id
|
||||
Get-V2024ManagedClient -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ManagedClient -V2024Id $Id
|
||||
@@ -196,7 +195,7 @@ $Type = "CCG" # ManagedClientType | Managed client type to get status for.
|
||||
# Get Managed Client Status
|
||||
|
||||
try {
|
||||
Get-V2024ManagedClientStatus-V2024Id $Id -V2024Type $Type
|
||||
Get-V2024ManagedClientStatus -V2024Id $Id -V2024Type $Type
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ManagedClientStatus -V2024Id $Id -V2024Type $Type
|
||||
@@ -295,7 +294,7 @@ $Id = "4440278c-0ce2-41ee-a0a9-f5cfd5e8d3b7" # String | Managed client ID.
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024ManagedClient-V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
Update-V2024ManagedClient -V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024ManagedClient -V2024Id $Id -V2024JsonPatchOperation $JsonPatchOperation
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-managed-clusters
|
||||
title: ManagedClusters
|
||||
@@ -70,7 +69,7 @@ $ManagedClusterRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToManagedClusterRequest -Json $ManagedClusterRequest
|
||||
New-V2024ManagedCluster-V2024ManagedClusterRequest $Result
|
||||
New-V2024ManagedCluster -V2024ManagedClusterRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024ManagedCluster -V2024ManagedClusterRequest $ManagedClusterRequest
|
||||
@@ -114,7 +113,7 @@ $RemoveClients = $false # Boolean | Flag to determine the need to delete a clust
|
||||
# Delete Managed Cluster
|
||||
|
||||
try {
|
||||
Remove-V2024ManagedCluster-V2024Id $Id
|
||||
Remove-V2024ManagedCluster -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024ManagedCluster -V2024Id $Id -V2024RemoveClients $RemoveClients
|
||||
@@ -158,7 +157,7 @@ $Id = "2b838de9-db9b-abcf-e646-d4f274ad4238" # String | ID of managed cluster to
|
||||
# Get Managed Cluster Log Configuration
|
||||
|
||||
try {
|
||||
Get-V2024ClientLogConfiguration-V2024Id $Id
|
||||
Get-V2024ClientLogConfiguration -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ClientLogConfiguration -V2024Id $Id
|
||||
@@ -201,7 +200,7 @@ $Id = "2c9180897de347a2017de8859e8c5039" # String | Managed cluster ID.
|
||||
# Get Managed Cluster
|
||||
|
||||
try {
|
||||
Get-V2024ManagedCluster-V2024Id $Id
|
||||
Get-V2024ManagedCluster -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ManagedCluster -V2024Id $Id
|
||||
@@ -295,7 +294,7 @@ $PutClientLogConfigurationRequest = @""@
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToPutClientLogConfigurationRequest -Json $PutClientLogConfigurationRequest
|
||||
Send-V2024ClientLogConfiguration-V2024Id $Id -V2024PutClientLogConfigurationRequest $Result
|
||||
Send-V2024ClientLogConfiguration -V2024Id $Id -V2024PutClientLogConfigurationRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024ClientLogConfiguration -V2024Id $Id -V2024PutClientLogConfigurationRequest $PutClientLogConfigurationRequest
|
||||
@@ -346,7 +345,7 @@ $Id = "2c9180897de347a2017de8859e8c5039" # String | Managed cluster ID.
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024ManagedCluster-V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
Update-V2024ManagedCluster -V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024ManagedCluster -V2024Id $Id -V2024JsonPatchOperation $JsonPatchOperation
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-non-employee-lifecycle-management
|
||||
title: NonEmployeeLifecycleManagement
|
||||
@@ -119,7 +118,7 @@ $NonEmployeeApprovalDecision = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToNonEmployeeApprovalDecision -Json $NonEmployeeApprovalDecision
|
||||
Approve-V2024NonEmployeeRequest-V2024Id $Id -V2024NonEmployeeApprovalDecision $Result
|
||||
Approve-V2024NonEmployeeRequest -V2024Id $Id -V2024NonEmployeeApprovalDecision $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Approve-V2024NonEmployeeRequest -V2024Id $Id -V2024NonEmployeeApprovalDecision $NonEmployeeApprovalDecision
|
||||
@@ -176,7 +175,7 @@ $NonEmployeeRequestBody = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToNonEmployeeRequestBody -Json $NonEmployeeRequestBody
|
||||
New-V2024NonEmployeeRecord-V2024NonEmployeeRequestBody $Result
|
||||
New-V2024NonEmployeeRecord -V2024NonEmployeeRequestBody $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024NonEmployeeRecord -V2024NonEmployeeRequestBody $NonEmployeeRequestBody
|
||||
@@ -232,7 +231,7 @@ $NonEmployeeRequestBody = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToNonEmployeeRequestBody -Json $NonEmployeeRequestBody
|
||||
New-V2024NonEmployeeRequest-V2024NonEmployeeRequestBody $Result
|
||||
New-V2024NonEmployeeRequest -V2024NonEmployeeRequestBody $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024NonEmployeeRequest -V2024NonEmployeeRequestBody $NonEmployeeRequestBody
|
||||
@@ -300,7 +299,7 @@ $NonEmployeeSourceRequestBody = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToNonEmployeeSourceRequestBody -Json $NonEmployeeSourceRequestBody
|
||||
New-V2024NonEmployeeSource-V2024NonEmployeeSourceRequestBody $Result
|
||||
New-V2024NonEmployeeSource -V2024NonEmployeeSourceRequestBody $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024NonEmployeeSource -V2024NonEmployeeSourceRequestBody $NonEmployeeSourceRequestBody
|
||||
@@ -353,7 +352,7 @@ $NonEmployeeSchemaAttributeBody = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToNonEmployeeSchemaAttributeBody -Json $NonEmployeeSchemaAttributeBody
|
||||
New-V2024NonEmployeeSourceSchemaAttributes-V2024SourceId $SourceId -V2024NonEmployeeSchemaAttributeBody $Result
|
||||
New-V2024NonEmployeeSourceSchemaAttributes -V2024SourceId $SourceId -V2024NonEmployeeSchemaAttributeBody $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024NonEmployeeSourceSchemaAttributes -V2024SourceId $SourceId -V2024NonEmployeeSchemaAttributeBody $NonEmployeeSchemaAttributeBody
|
||||
@@ -396,7 +395,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | Non-Employee record id (UUID
|
||||
# Delete Non-Employee Record
|
||||
|
||||
try {
|
||||
Remove-V2024NonEmployeeRecord-V2024Id $Id
|
||||
Remove-V2024NonEmployeeRecord -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024NonEmployeeRecord -V2024Id $Id
|
||||
@@ -439,7 +438,7 @@ $DeleteNonEmployeeRecordsInBulkRequest = @""@
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToDeleteNonEmployeeRecordsInBulkRequest -Json $DeleteNonEmployeeRecordsInBulkRequest
|
||||
Remove-V2024NonEmployeeRecordsInBulk-V2024DeleteNonEmployeeRecordsInBulkRequest $Result
|
||||
Remove-V2024NonEmployeeRecordsInBulk -V2024DeleteNonEmployeeRecordsInBulkRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024NonEmployeeRecordsInBulk -V2024DeleteNonEmployeeRecordsInBulkRequest $DeleteNonEmployeeRecordsInBulkRequest
|
||||
@@ -483,7 +482,7 @@ $Id = "ac110005-7156-1150-8171-5b292e3e0084" # String | Non-Employee request id
|
||||
# Delete Non-Employee Request
|
||||
|
||||
try {
|
||||
Remove-V2024NonEmployeeRequest-V2024Id $Id
|
||||
Remove-V2024NonEmployeeRequest -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024NonEmployeeRequest -V2024Id $Id
|
||||
@@ -529,7 +528,7 @@ $SourceId = "ef38f94347e94562b5bb8424a56397d8" # String | The Source id
|
||||
# Delete a Schema Attribute for Non-Employee Source
|
||||
|
||||
try {
|
||||
Remove-V2024NonEmployeeSchemaAttribute-V2024AttributeId $AttributeId -V2024SourceId $SourceId
|
||||
Remove-V2024NonEmployeeSchemaAttribute -V2024AttributeId $AttributeId -V2024SourceId $SourceId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024NonEmployeeSchemaAttribute -V2024AttributeId $AttributeId -V2024SourceId $SourceId
|
||||
@@ -571,7 +570,7 @@ $SourceId = "e136567de87e4d029e60b3c3c55db56d" # String | Source Id
|
||||
# Delete Non-Employee Source
|
||||
|
||||
try {
|
||||
Remove-V2024NonEmployeeSource-V2024SourceId $SourceId
|
||||
Remove-V2024NonEmployeeSource -V2024SourceId $SourceId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024NonEmployeeSource -V2024SourceId $SourceId
|
||||
@@ -613,7 +612,7 @@ $SourceId = "ef38f94347e94562b5bb8424a56397d8" # String | The Source id
|
||||
# Delete all custom schema attributes for Non-Employee Source
|
||||
|
||||
try {
|
||||
Remove-V2024NonEmployeeSourceSchemaAttributes-V2024SourceId $SourceId
|
||||
Remove-V2024NonEmployeeSourceSchemaAttributes -V2024SourceId $SourceId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024NonEmployeeSourceSchemaAttributes -V2024SourceId $SourceId
|
||||
@@ -656,7 +655,7 @@ $Id = "e136567de87e4d029e60b3c3c55db56d" # String | Source Id (UUID)
|
||||
# Exports Non-Employee Records to CSV
|
||||
|
||||
try {
|
||||
Export-V2024NonEmployeeRecords-V2024Id $Id
|
||||
Export-V2024NonEmployeeRecords -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Export-V2024NonEmployeeRecords -V2024Id $Id
|
||||
@@ -699,7 +698,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | Source Id (UUID)
|
||||
# Exports Source Schema Template
|
||||
|
||||
try {
|
||||
Export-V2024NonEmployeeSourceSchemaTemplate-V2024Id $Id
|
||||
Export-V2024NonEmployeeSourceSchemaTemplate -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Export-V2024NonEmployeeSourceSchemaTemplate -V2024Id $Id
|
||||
@@ -746,7 +745,7 @@ $IncludeDetail = $true # Boolean | The object nonEmployeeRequest will not be inc
|
||||
# Get a non-employee approval item detail
|
||||
|
||||
try {
|
||||
Get-V2024NonEmployeeApproval-V2024Id $Id
|
||||
Get-V2024NonEmployeeApproval -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024NonEmployeeApproval -V2024Id $Id -V2024IncludeDetail $IncludeDetail
|
||||
@@ -792,7 +791,7 @@ $RequestedFor = "2c91808280430dfb0180431a59440460" # String | The identity (UUID
|
||||
# Get Summary of Non-Employee Approval Requests
|
||||
|
||||
try {
|
||||
Get-V2024NonEmployeeApprovalSummary-V2024RequestedFor $RequestedFor
|
||||
Get-V2024NonEmployeeApprovalSummary -V2024RequestedFor $RequestedFor
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024NonEmployeeApprovalSummary -V2024RequestedFor $RequestedFor
|
||||
@@ -836,7 +835,7 @@ $Id = "e136567de87e4d029e60b3c3c55db56d" # String | Source ID (UUID)
|
||||
# Obtain the status of bulk upload on the source
|
||||
|
||||
try {
|
||||
Get-V2024NonEmployeeBulkUploadStatus-V2024Id $Id
|
||||
Get-V2024NonEmployeeBulkUploadStatus -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024NonEmployeeBulkUploadStatus -V2024Id $Id
|
||||
@@ -879,7 +878,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | Non-Employee record id (UUID
|
||||
# Get a Non-Employee Record
|
||||
|
||||
try {
|
||||
Get-V2024NonEmployeeRecord-V2024Id $Id
|
||||
Get-V2024NonEmployeeRecord -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024NonEmployeeRecord -V2024Id $Id
|
||||
@@ -926,7 +925,7 @@ $Id = "ac110005-7156-1150-8171-5b292e3e0084" # String | Non-Employee request id
|
||||
# Get a Non-Employee Request
|
||||
|
||||
try {
|
||||
Get-V2024NonEmployeeRequest-V2024Id $Id
|
||||
Get-V2024NonEmployeeRequest -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024NonEmployeeRequest -V2024Id $Id
|
||||
@@ -972,7 +971,7 @@ $RequestedFor = "2c91808280430dfb0180431a59440460" # String | The identity (UUID
|
||||
# Get Summary of Non-Employee Requests
|
||||
|
||||
try {
|
||||
Get-V2024NonEmployeeRequestSummary-V2024RequestedFor $RequestedFor
|
||||
Get-V2024NonEmployeeRequestSummary -V2024RequestedFor $RequestedFor
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024NonEmployeeRequestSummary -V2024RequestedFor $RequestedFor
|
||||
@@ -1016,7 +1015,7 @@ $SourceId = "ef38f94347e94562b5bb8424a56397d8" # String | The Source id
|
||||
# Get Schema Attribute Non-Employee Source
|
||||
|
||||
try {
|
||||
Get-V2024NonEmployeeSchemaAttribute-V2024AttributeId $AttributeId -V2024SourceId $SourceId
|
||||
Get-V2024NonEmployeeSchemaAttribute -V2024AttributeId $AttributeId -V2024SourceId $SourceId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024NonEmployeeSchemaAttribute -V2024AttributeId $AttributeId -V2024SourceId $SourceId
|
||||
@@ -1062,7 +1061,7 @@ $SourceId = "2c91808b7c28b350017c2a2ec5790aa1" # String | Source Id
|
||||
# Get a Non-Employee Source
|
||||
|
||||
try {
|
||||
Get-V2024NonEmployeeSource-V2024SourceId $SourceId
|
||||
Get-V2024NonEmployeeSource -V2024SourceId $SourceId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024NonEmployeeSource -V2024SourceId $SourceId
|
||||
@@ -1106,7 +1105,7 @@ $SourceId = "ef38f94347e94562b5bb8424a56397d8" # String | The Source id
|
||||
# List Schema Attributes Non-Employee Source
|
||||
|
||||
try {
|
||||
Get-V2024NonEmployeeSourceSchemaAttributes-V2024SourceId $SourceId
|
||||
Get-V2024NonEmployeeSourceSchemaAttributes -V2024SourceId $SourceId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024NonEmployeeSourceSchemaAttributes -V2024SourceId $SourceId
|
||||
@@ -1151,7 +1150,7 @@ $Data = # System.IO.FileInfo |
|
||||
# Imports, or Updates, Non-Employee Records
|
||||
|
||||
try {
|
||||
Import-V2024NonEmployeeRecordsInBulk-V2024Id $Id -V2024Data $Data
|
||||
Import-V2024NonEmployeeRecordsInBulk -V2024Id $Id -V2024Data $Data
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Import-V2024NonEmployeeRecordsInBulk -V2024Id $Id -V2024Data $Data
|
||||
@@ -1315,7 +1314,7 @@ $Filters = 'sourceId eq "2c91808568c529c60168cca6f90c1313"' # String | Filter re
|
||||
# List Non-Employee Requests
|
||||
|
||||
try {
|
||||
Get-V2024NonEmployeeRequests-V2024RequestedFor $RequestedFor
|
||||
Get-V2024NonEmployeeRequests -V2024RequestedFor $RequestedFor
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024NonEmployeeRequests -V2024RequestedFor $RequestedFor -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Sorters $Sorters -V2024Filters $Filters
|
||||
@@ -1371,7 +1370,7 @@ $Sorters = "name,created" # String | Sort results using the standard syntax desc
|
||||
# List Non-Employee Sources
|
||||
|
||||
try {
|
||||
Get-V2024NonEmployeeSources-V2024RequestedFor $RequestedFor
|
||||
Get-V2024NonEmployeeSources -V2024RequestedFor $RequestedFor
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024NonEmployeeSources -V2024RequestedFor $RequestedFor -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024NonEmployeeCount $NonEmployeeCount -V2024Sorters $Sorters
|
||||
@@ -1426,7 +1425,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | Non-employee record id (UUID
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024NonEmployeeRecord-V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
Update-V2024NonEmployeeRecord -V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024NonEmployeeRecord -V2024Id $Id -V2024JsonPatchOperation $JsonPatchOperation
|
||||
@@ -1481,7 +1480,7 @@ $SourceId = "ef38f94347e94562b5bb8424a56397d8" # String | The Source id
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024NonEmployeeSchemaAttribute-V2024AttributeId $AttributeId -V2024SourceId $SourceId -V2024JsonPatchOperation $Result
|
||||
Update-V2024NonEmployeeSchemaAttribute -V2024AttributeId $AttributeId -V2024SourceId $SourceId -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024NonEmployeeSchemaAttribute -V2024AttributeId $AttributeId -V2024SourceId $SourceId -V2024JsonPatchOperation $JsonPatchOperation
|
||||
@@ -1531,7 +1530,7 @@ $SourceId = "e136567de87e4d029e60b3c3c55db56d" # String | Source Id
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024NonEmployeeSource-V2024SourceId $SourceId -V2024JsonPatchOperation $Result
|
||||
Update-V2024NonEmployeeSource -V2024SourceId $SourceId -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024NonEmployeeSource -V2024SourceId $SourceId -V2024JsonPatchOperation $JsonPatchOperation
|
||||
@@ -1578,7 +1577,7 @@ $NonEmployeeRejectApprovalDecision = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToNonEmployeeRejectApprovalDecision -Json $NonEmployeeRejectApprovalDecision
|
||||
Deny-V2024NonEmployeeRequest-V2024Id $Id -V2024NonEmployeeRejectApprovalDecision $Result
|
||||
Deny-V2024NonEmployeeRequest -V2024Id $Id -V2024NonEmployeeRejectApprovalDecision $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Deny-V2024NonEmployeeRequest -V2024Id $Id -V2024NonEmployeeRejectApprovalDecision $NonEmployeeRejectApprovalDecision
|
||||
@@ -1641,7 +1640,7 @@ $NonEmployeeRequestBody = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToNonEmployeeRequestBody -Json $NonEmployeeRequestBody
|
||||
Update-V2024NonEmployeeRecord-V2024Id $Id -V2024NonEmployeeRequestBody $Result
|
||||
Update-V2024NonEmployeeRecord -V2024Id $Id -V2024NonEmployeeRequestBody $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024NonEmployeeRecord -V2024Id $Id -V2024NonEmployeeRequestBody $NonEmployeeRequestBody
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-notifications
|
||||
title: Notifications
|
||||
@@ -72,7 +71,7 @@ $DomainAddress = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToDomainAddress -Json $DomainAddress
|
||||
New-V2024DomainDkim-V2024XSailPointExperimental $XSailPointExperimental -V2024DomainAddress $Result
|
||||
New-V2024DomainDkim -V2024XSailPointExperimental $XSailPointExperimental -V2024DomainAddress $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024DomainDkim -V2024XSailPointExperimental $XSailPointExperimental -V2024DomainAddress $DomainAddress
|
||||
@@ -136,7 +135,7 @@ $TemplateDto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToTemplateDto -Json $TemplateDto
|
||||
New-V2024NotificationTemplate-V2024XSailPointExperimental $XSailPointExperimental -V2024TemplateDto $Result
|
||||
New-V2024NotificationTemplate -V2024XSailPointExperimental $XSailPointExperimental -V2024TemplateDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024NotificationTemplate -V2024XSailPointExperimental $XSailPointExperimental -V2024TemplateDto $TemplateDto
|
||||
@@ -186,7 +185,7 @@ $EmailStatusDto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToEmailStatusDto -Json $EmailStatusDto
|
||||
New-V2024VerifiedFromAddress-V2024XSailPointExperimental $XSailPointExperimental -V2024EmailStatusDto $Result
|
||||
New-V2024VerifiedFromAddress -V2024XSailPointExperimental $XSailPointExperimental -V2024EmailStatusDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024VerifiedFromAddress -V2024XSailPointExperimental $XSailPointExperimental -V2024EmailStatusDto $EmailStatusDto
|
||||
@@ -236,7 +235,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToTemplateBulkDeleteDto -Json $TemplateBulkDeleteDto
|
||||
Remove-V2024NotificationTemplatesInBulk-V2024XSailPointExperimental $XSailPointExperimental -V2024TemplateBulkDeleteDto $Result
|
||||
Remove-V2024NotificationTemplatesInBulk -V2024XSailPointExperimental $XSailPointExperimental -V2024TemplateBulkDeleteDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024NotificationTemplatesInBulk -V2024XSailPointExperimental $XSailPointExperimental -V2024TemplateBulkDeleteDto $TemplateBulkDeleteDto
|
||||
@@ -281,7 +280,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Delete Verified From Address
|
||||
|
||||
try {
|
||||
Remove-V2024VerifiedFromAddress-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Remove-V2024VerifiedFromAddress -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024VerifiedFromAddress -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -323,7 +322,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get DKIM Attributes
|
||||
|
||||
try {
|
||||
Get-V2024DkimAttributes-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024DkimAttributes -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024DkimAttributes -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -367,7 +366,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get MAIL FROM Attributes
|
||||
|
||||
try {
|
||||
Get-V2024MailFromAttributes-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024MailFromAttributes -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024MailFromAttributes -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -411,7 +410,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get Notification Template By Id
|
||||
|
||||
try {
|
||||
Get-V2024NotificationTemplate-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024NotificationTemplate -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024NotificationTemplate -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -454,7 +453,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get Notification Template Context
|
||||
|
||||
try {
|
||||
Get-V2024NotificationsTemplateContext-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024NotificationsTemplateContext -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024NotificationsTemplateContext -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -505,7 +504,7 @@ $Sorters = "email" # String | Sort results using the standard syntax described i
|
||||
# List From Addresses
|
||||
|
||||
try {
|
||||
Get-V2024FromAddresses-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024FromAddresses -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024FromAddresses -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -548,7 +547,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# List Notification Preferences for tenant.
|
||||
|
||||
try {
|
||||
Get-V2024NotificationPreferences-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024NotificationPreferences -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024NotificationPreferences -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -596,7 +595,7 @@ $Filters = 'key eq "cloud_manual_work_item_summary"' # String | Filter results u
|
||||
# List Notification Template Defaults
|
||||
|
||||
try {
|
||||
Get-V2024NotificationTemplateDefaults-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024NotificationTemplateDefaults -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024NotificationTemplateDefaults -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Filters $Filters
|
||||
@@ -644,7 +643,7 @@ $Filters = 'medium eq "EMAIL"' # String | Filter results using the standard synt
|
||||
# List Notification Templates
|
||||
|
||||
try {
|
||||
Get-V2024NotificationTemplates-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024NotificationTemplates -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024NotificationTemplates -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Filters $Filters
|
||||
@@ -692,7 +691,7 @@ $MailFromAttributesDto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToMailFromAttributesDto -Json $MailFromAttributesDto
|
||||
Send-V2024MailFromAttributes-V2024XSailPointExperimental $XSailPointExperimental -V2024MailFromAttributesDto $Result
|
||||
Send-V2024MailFromAttributes -V2024XSailPointExperimental $XSailPointExperimental -V2024MailFromAttributesDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024MailFromAttributes -V2024XSailPointExperimental $XSailPointExperimental -V2024MailFromAttributesDto $MailFromAttributesDto
|
||||
@@ -742,7 +741,7 @@ $SendTestNotificationRequestDto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSendTestNotificationRequestDto -Json $SendTestNotificationRequestDto
|
||||
Send-V2024TestNotification-V2024XSailPointExperimental $XSailPointExperimental -V2024SendTestNotificationRequestDto $Result
|
||||
Send-V2024TestNotification -V2024XSailPointExperimental $XSailPointExperimental -V2024SendTestNotificationRequestDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024TestNotification -V2024XSailPointExperimental $XSailPointExperimental -V2024SendTestNotificationRequestDto $SendTestNotificationRequestDto
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-o-auth-clients
|
||||
title: OAuthClients
|
||||
@@ -76,7 +75,7 @@ $CreateOAuthClientRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToCreateOAuthClientRequest -Json $CreateOAuthClientRequest
|
||||
New-V2024OauthClient-V2024CreateOAuthClientRequest $Result
|
||||
New-V2024OauthClient -V2024CreateOAuthClientRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024OauthClient -V2024CreateOAuthClientRequest $CreateOAuthClientRequest
|
||||
@@ -119,7 +118,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | The OAuth client id
|
||||
# Delete OAuth Client
|
||||
|
||||
try {
|
||||
Remove-V2024OauthClient-V2024Id $Id
|
||||
Remove-V2024OauthClient -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024OauthClient -V2024Id $Id
|
||||
@@ -162,7 +161,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | The OAuth client id
|
||||
# Get OAuth Client
|
||||
|
||||
try {
|
||||
Get-V2024OauthClient-V2024Id $Id
|
||||
Get-V2024OauthClient -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024OauthClient -V2024Id $Id
|
||||
@@ -255,7 +254,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | The OAuth client id
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024OauthClient-V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
Update-V2024OauthClient -V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024OauthClient -V2024Id $Id -V2024JsonPatchOperation $JsonPatchOperation
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-org-config
|
||||
title: OrgConfig
|
||||
@@ -57,7 +56,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get Org Config Settings
|
||||
|
||||
try {
|
||||
Get-V2024OrgConfig-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024OrgConfig -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024OrgConfig -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -105,7 +104,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Get Valid Time Zones
|
||||
|
||||
try {
|
||||
Get-V2024ValidTimeZones-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024ValidTimeZones -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ValidTimeZones -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count
|
||||
@@ -156,7 +155,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024OrgConfig-V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatchOperation $Result
|
||||
Update-V2024OrgConfig -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024OrgConfig -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatchOperation $JsonPatchOperation
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-password-configuration
|
||||
title: PasswordConfiguration
|
||||
@@ -68,7 +67,7 @@ $PasswordOrgConfig = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToPasswordOrgConfig -Json $PasswordOrgConfig
|
||||
New-V2024PasswordOrgConfig-V2024PasswordOrgConfig $Result
|
||||
New-V2024PasswordOrgConfig -V2024PasswordOrgConfig $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024PasswordOrgConfig -V2024PasswordOrgConfig $PasswordOrgConfig
|
||||
@@ -158,7 +157,7 @@ $PasswordOrgConfig = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToPasswordOrgConfig -Json $PasswordOrgConfig
|
||||
Send-V2024PasswordOrgConfig-V2024PasswordOrgConfig $Result
|
||||
Send-V2024PasswordOrgConfig -V2024PasswordOrgConfig $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024PasswordOrgConfig -V2024PasswordOrgConfig $PasswordOrgConfig
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-password-dictionary
|
||||
title: PasswordDictionary
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-password-management
|
||||
title: PasswordManagement
|
||||
@@ -86,7 +85,7 @@ $PasswordDigitTokenReset = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToPasswordDigitTokenReset -Json $PasswordDigitTokenReset
|
||||
New-V2024DigitToken-V2024XSailPointExperimental $XSailPointExperimental -V2024PasswordDigitTokenReset $Result
|
||||
New-V2024DigitToken -V2024XSailPointExperimental $XSailPointExperimental -V2024PasswordDigitTokenReset $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024DigitToken -V2024XSailPointExperimental $XSailPointExperimental -V2024PasswordDigitTokenReset $PasswordDigitTokenReset
|
||||
@@ -129,7 +128,7 @@ $Id = "089899f13a8f4da7824996191587bab9" # String | Password change request ID
|
||||
# Get Password Change Request Status
|
||||
|
||||
try {
|
||||
Get-V2024PasswordChangeStatus-V2024Id $Id
|
||||
Get-V2024PasswordChangeStatus -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024PasswordChangeStatus -V2024Id $Id
|
||||
@@ -176,7 +175,7 @@ $PasswordInfoQueryDTO = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToPasswordInfoQueryDTO -Json $PasswordInfoQueryDTO
|
||||
Search-V2024PasswordInfo-V2024PasswordInfoQueryDTO $Result
|
||||
Search-V2024PasswordInfo -V2024PasswordInfoQueryDTO $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Search-V2024PasswordInfo -V2024PasswordInfoQueryDTO $PasswordInfoQueryDTO
|
||||
@@ -244,7 +243,7 @@ $PasswordChangeRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToPasswordChangeRequest -Json $PasswordChangeRequest
|
||||
Set-V2024Password-V2024PasswordChangeRequest $Result
|
||||
Set-V2024Password -V2024PasswordChangeRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Set-V2024Password -V2024PasswordChangeRequest $PasswordChangeRequest
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-password-policies
|
||||
title: PasswordPolicies
|
||||
@@ -98,7 +97,7 @@ $PasswordPolicyV3Dto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToPasswordPolicyV3Dto -Json $PasswordPolicyV3Dto
|
||||
New-V2024PasswordPolicy-V2024PasswordPolicyV3Dto $Result
|
||||
New-V2024PasswordPolicy -V2024PasswordPolicyV3Dto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024PasswordPolicy -V2024PasswordPolicyV3Dto $PasswordPolicyV3Dto
|
||||
@@ -141,7 +140,7 @@ $Id = "ff808081838d9e9d01838da6a03e0002" # String | The ID of password policy to
|
||||
# Delete Password Policy by ID
|
||||
|
||||
try {
|
||||
Remove-V2024PasswordPolicy-V2024Id $Id
|
||||
Remove-V2024PasswordPolicy -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024PasswordPolicy -V2024Id $Id
|
||||
@@ -184,7 +183,7 @@ $Id = "ff808081838d9e9d01838da6a03e0005" # String | The ID of password policy to
|
||||
# Get Password Policy by ID
|
||||
|
||||
try {
|
||||
Get-V2024PasswordPolicyById-V2024Id $Id
|
||||
Get-V2024PasswordPolicyById -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024PasswordPolicyById -V2024Id $Id
|
||||
@@ -309,7 +308,7 @@ $PasswordPolicyV3Dto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToPasswordPolicyV3Dto -Json $PasswordPolicyV3Dto
|
||||
Set-V2024PasswordPolicy-V2024Id $Id -V2024PasswordPolicyV3Dto $Result
|
||||
Set-V2024PasswordPolicy -V2024Id $Id -V2024PasswordPolicyV3Dto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Set-V2024PasswordPolicy -V2024Id $Id -V2024PasswordPolicyV3Dto $PasswordPolicyV3Dto
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-password-sync-groups
|
||||
title: PasswordSyncGroups
|
||||
@@ -96,7 +95,7 @@ $PasswordSyncGroup = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToPasswordSyncGroup -Json $PasswordSyncGroup
|
||||
New-V2024PasswordSyncGroup-V2024PasswordSyncGroup $Result
|
||||
New-V2024PasswordSyncGroup -V2024PasswordSyncGroup $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024PasswordSyncGroup -V2024PasswordSyncGroup $PasswordSyncGroup
|
||||
@@ -138,7 +137,7 @@ $Id = "6881f631-3bd5-4213-9c75-8e05cc3e35dd" # String | The ID of password sync
|
||||
# Delete Password Sync Group by ID
|
||||
|
||||
try {
|
||||
Remove-V2024PasswordSyncGroup-V2024Id $Id
|
||||
Remove-V2024PasswordSyncGroup -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024PasswordSyncGroup -V2024Id $Id
|
||||
@@ -181,7 +180,7 @@ $Id = "6881f631-3bd5-4213-9c75-8e05cc3e35dd" # String | The ID of password sync
|
||||
# Get Password Sync Group by ID
|
||||
|
||||
try {
|
||||
Get-V2024PasswordSyncGroup-V2024Id $Id
|
||||
Get-V2024PasswordSyncGroup -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024PasswordSyncGroup -V2024Id $Id
|
||||
@@ -280,7 +279,7 @@ $PasswordSyncGroup = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToPasswordSyncGroup -Json $PasswordSyncGroup
|
||||
Update-V2024PasswordSyncGroup-V2024Id $Id -V2024PasswordSyncGroup $Result
|
||||
Update-V2024PasswordSyncGroup -V2024Id $Id -V2024PasswordSyncGroup $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024PasswordSyncGroup -V2024Id $Id -V2024PasswordSyncGroup $PasswordSyncGroup
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-personal-access-tokens
|
||||
title: PersonalAccessTokens
|
||||
@@ -71,7 +70,7 @@ $CreatePersonalAccessTokenRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToCreatePersonalAccessTokenRequest -Json $CreatePersonalAccessTokenRequest
|
||||
New-V2024PersonalAccessToken-V2024CreatePersonalAccessTokenRequest $Result
|
||||
New-V2024PersonalAccessToken -V2024CreatePersonalAccessTokenRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024PersonalAccessToken -V2024CreatePersonalAccessTokenRequest $CreatePersonalAccessTokenRequest
|
||||
@@ -114,7 +113,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | The personal access token id
|
||||
# Delete Personal Access Token
|
||||
|
||||
try {
|
||||
Remove-V2024PersonalAccessToken-V2024Id $Id
|
||||
Remove-V2024PersonalAccessToken -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024PersonalAccessToken -V2024Id $Id
|
||||
@@ -210,7 +209,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | The Personal Access Token id
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024PersonalAccessToken-V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
Update-V2024PersonalAccessToken -V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024PersonalAccessToken -V2024Id $Id -V2024JsonPatchOperation $JsonPatchOperation
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-public-identities
|
||||
title: PublicIdentities
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-public-identities-config
|
||||
title: PublicIdentitiesConfig
|
||||
@@ -118,7 +117,7 @@ $PublicIdentityConfig = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToPublicIdentityConfig -Json $PublicIdentityConfig
|
||||
Update-V2024PublicIdentityConfig-V2024PublicIdentityConfig $Result
|
||||
Update-V2024PublicIdentityConfig -V2024PublicIdentityConfig $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024PublicIdentityConfig -V2024PublicIdentityConfig $PublicIdentityConfig
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-reports-data-extraction
|
||||
title: ReportsDataExtraction
|
||||
@@ -58,7 +57,7 @@ $Id = "a1ed223247144cc29d23c632624b4767" # String | ID of the running Report to
|
||||
# Cancel Report
|
||||
|
||||
try {
|
||||
Suspend-V2024Report-V2024Id $Id
|
||||
Suspend-V2024Report -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Suspend-V2024Report -V2024Id $Id
|
||||
@@ -107,7 +106,7 @@ $Auditable = $true # Boolean | Enables auditing for current report download. Wil
|
||||
# Get Report File
|
||||
|
||||
try {
|
||||
Get-V2024Report-V2024TaskResultId $TaskResultId -V2024FileFormat $FileFormat
|
||||
Get-V2024Report -V2024TaskResultId $TaskResultId -V2024FileFormat $FileFormat
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Report -V2024TaskResultId $TaskResultId -V2024FileFormat $FileFormat -V2024Name $Name -V2024Auditable $Auditable
|
||||
@@ -151,7 +150,7 @@ $Completed = $true # Boolean | state of task result to apply ordering when resul
|
||||
# Get Report Result
|
||||
|
||||
try {
|
||||
Get-V2024ReportResult-V2024TaskResultId $TaskResultId
|
||||
Get-V2024ReportResult -V2024TaskResultId $TaskResultId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ReportResult -V2024TaskResultId $TaskResultId -V2024Completed $Completed
|
||||
@@ -200,7 +199,7 @@ $ReportDetails = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToReportDetails -Json $ReportDetails
|
||||
Start-V2024Report-V2024ReportDetails $Result
|
||||
Start-V2024Report -V2024ReportDetails $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Start-V2024Report -V2024ReportDetails $ReportDetails
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-requestable-objects
|
||||
title: RequestableObjects
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-role-insights
|
||||
title: RoleInsights
|
||||
@@ -60,7 +59,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Generate insights for roles
|
||||
|
||||
try {
|
||||
New-V2024RoleInsightRequests-V2024XSailPointExperimental $XSailPointExperimental
|
||||
New-V2024RoleInsightRequests -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024RoleInsightRequests -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -107,7 +106,7 @@ $Filters = 'name sw "r"' # String | Filter results using the standard syntax des
|
||||
# Download entitlement insights for a role
|
||||
|
||||
try {
|
||||
Invoke-V2024DownloadRoleInsightsEntitlementsChanges-V2024InsightId $InsightId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Invoke-V2024DownloadRoleInsightsEntitlementsChanges -V2024InsightId $InsightId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Invoke-V2024DownloadRoleInsightsEntitlementsChanges -V2024InsightId $InsightId -V2024XSailPointExperimental $XSailPointExperimental -V2024Sorters $Sorters -V2024Filters $Filters
|
||||
@@ -164,7 +163,7 @@ $Filters = 'name sw "Jan"' # String | Filter results using the standard syntax d
|
||||
# Get identities for a suggested entitlement (for a role)
|
||||
|
||||
try {
|
||||
Get-V2024EntitlementChangesIdentities-V2024InsightId $InsightId -V2024EntitlementId $EntitlementId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024EntitlementChangesIdentities -V2024InsightId $InsightId -V2024EntitlementId $EntitlementId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024EntitlementChangesIdentities -V2024InsightId $InsightId -V2024EntitlementId $EntitlementId -V2024XSailPointExperimental $XSailPointExperimental -V2024HasEntitlement $HasEntitlement -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count -V2024Sorters $Sorters -V2024Filters $Filters
|
||||
@@ -207,7 +206,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get a single role insight
|
||||
|
||||
try {
|
||||
Get-V2024RoleInsight-V2024InsightId $InsightId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024RoleInsight -V2024InsightId $InsightId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024RoleInsight -V2024InsightId $InsightId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -258,7 +257,7 @@ $Filters = 'name sw "John"' # String | Filter results using the standard syntax
|
||||
# Get role insights
|
||||
|
||||
try {
|
||||
Get-V2024RoleInsights-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024RoleInsights -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024RoleInsights -V2024XSailPointExperimental $XSailPointExperimental -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count -V2024Sorters $Sorters -V2024Filters $Filters
|
||||
@@ -303,7 +302,7 @@ $Filters = 'name sw "r"' # String | Filter results using the standard syntax des
|
||||
# Get current entitlement for a role
|
||||
|
||||
try {
|
||||
Get-V2024RoleInsightsCurrentEntitlements-V2024InsightId $InsightId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024RoleInsightsCurrentEntitlements -V2024InsightId $InsightId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024RoleInsightsCurrentEntitlements -V2024InsightId $InsightId -V2024XSailPointExperimental $XSailPointExperimental -V2024Filters $Filters
|
||||
@@ -350,7 +349,7 @@ $Filters = 'name sw "Admin"' # String | Filter results using the standard syntax
|
||||
# Get entitlement insights for a role
|
||||
|
||||
try {
|
||||
Get-V2024RoleInsightsEntitlementsChanges-V2024InsightId $InsightId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024RoleInsightsEntitlementsChanges -V2024InsightId $InsightId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024RoleInsightsEntitlementsChanges -V2024InsightId $InsightId -V2024XSailPointExperimental $XSailPointExperimental -V2024Sorters $Sorters -V2024Filters $Filters
|
||||
@@ -394,7 +393,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Returns metadata from prior request.
|
||||
|
||||
try {
|
||||
Get-V2024RoleInsightsRequests-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024RoleInsightsRequests -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024RoleInsightsRequests -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -435,7 +434,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get role insights summary information
|
||||
|
||||
try {
|
||||
Get-V2024RoleInsightsSummary-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024RoleInsightsSummary -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024RoleInsightsSummary -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-roles
|
||||
title: Roles
|
||||
@@ -265,7 +264,7 @@ $Role = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToRole -Json $Role
|
||||
New-V2024Role-V2024Role $Result
|
||||
New-V2024Role -V2024Role $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024Role -V2024Role $Role
|
||||
@@ -313,7 +312,7 @@ $RoleBulkDeleteRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToRoleBulkDeleteRequest -Json $RoleBulkDeleteRequest
|
||||
Remove-V2024BulkRoles-V2024RoleBulkDeleteRequest $Result
|
||||
Remove-V2024BulkRoles -V2024RoleBulkDeleteRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024BulkRoles -V2024RoleBulkDeleteRequest $RoleBulkDeleteRequest
|
||||
@@ -359,7 +358,7 @@ $AttributeValue = "public" # String | Technical name of the Attribute Value.
|
||||
# Remove a Metadata From Role.
|
||||
|
||||
try {
|
||||
Remove-V2024MetadataFromRoleByKeyAndValue-V2024Id $Id -V2024AttributeKey $AttributeKey -V2024AttributeValue $AttributeValue
|
||||
Remove-V2024MetadataFromRoleByKeyAndValue -V2024Id $Id -V2024AttributeKey $AttributeKey -V2024AttributeValue $AttributeValue
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024MetadataFromRoleByKeyAndValue -V2024Id $Id -V2024AttributeKey $AttributeKey -V2024AttributeValue $AttributeValue
|
||||
@@ -403,7 +402,7 @@ $Id = "2c91808a7813090a017814121e121518" # String | ID of the Role
|
||||
# Delete a Role
|
||||
|
||||
try {
|
||||
Remove-V2024Role-V2024Id $Id
|
||||
Remove-V2024Role -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024Role -V2024Id $Id
|
||||
@@ -487,7 +486,7 @@ $Id = "c24359c389374d0fb8585698a2189e3d" # String | The Id of the bulk update ta
|
||||
# Get Bulk-Update Status by ID
|
||||
|
||||
try {
|
||||
Get-V2024BulkUpdateStatusById-V2024Id $Id
|
||||
Get-V2024BulkUpdateStatusById -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024BulkUpdateStatusById -V2024Id $Id
|
||||
@@ -530,7 +529,7 @@ $Id = "2c91808a7813090a017814121e121518" # String | ID of the Role
|
||||
# Get a Role
|
||||
|
||||
try {
|
||||
Get-V2024Role-V2024Id $Id
|
||||
Get-V2024Role -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Role -V2024Id $Id
|
||||
@@ -582,7 +581,7 @@ $Sorters = "aliasName,name" # String | Sort results using the standard syntax de
|
||||
# List Identities assigned a Role
|
||||
|
||||
try {
|
||||
Get-V2024RoleAssignedIdentities-V2024Id $Id
|
||||
Get-V2024RoleAssignedIdentities -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024RoleAssignedIdentities -V2024Id $Id -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -636,7 +635,7 @@ $Sorters = "name,-modified" # String | Sort results using the standard syntax de
|
||||
# List role's Entitlements
|
||||
|
||||
try {
|
||||
Get-V2024RoleEntitlements-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024RoleEntitlements -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024RoleEntitlements -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -761,7 +760,7 @@ $Id = "2c91808a7813090a017814121e121518" # String | ID of the Role to patch
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024Role-V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
Update-V2024Role -V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024Role -V2024Id $Id -V2024JsonPatchOperation $JsonPatchOperation
|
||||
@@ -870,7 +869,7 @@ $AttributeValue = "public" # String | Technical name of the Attribute Value.
|
||||
# Add a Metadata to Role.
|
||||
|
||||
try {
|
||||
Update-V2024AttributeKeyAndValueToRole-V2024Id $Id -V2024AttributeKey $AttributeKey -V2024AttributeValue $AttributeValue
|
||||
Update-V2024AttributeKeyAndValueToRole -V2024Id $Id -V2024AttributeKey $AttributeKey -V2024AttributeValue $AttributeValue
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024AttributeKeyAndValueToRole -V2024Id $Id -V2024AttributeKey $AttributeKey -V2024AttributeValue $AttributeValue
|
||||
@@ -924,7 +923,7 @@ $RoleMetadataBulkUpdateByFilterRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToRoleMetadataBulkUpdateByFilterRequest -Json $RoleMetadataBulkUpdateByFilterRequest
|
||||
Update-V2024RolesMetadataByFilter-V2024RoleMetadataBulkUpdateByFilterRequest $Result
|
||||
Update-V2024RolesMetadataByFilter -V2024RoleMetadataBulkUpdateByFilterRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024RolesMetadataByFilter -V2024RoleMetadataBulkUpdateByFilterRequest $RoleMetadataBulkUpdateByFilterRequest
|
||||
@@ -978,7 +977,7 @@ $RoleMetadataBulkUpdateByIdRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToRoleMetadataBulkUpdateByIdRequest -Json $RoleMetadataBulkUpdateByIdRequest
|
||||
Update-V2024RolesMetadataByIds-V2024RoleMetadataBulkUpdateByIdRequest $Result
|
||||
Update-V2024RolesMetadataByIds -V2024RoleMetadataBulkUpdateByIdRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024RolesMetadataByIds -V2024RoleMetadataBulkUpdateByIdRequest $RoleMetadataBulkUpdateByIdRequest
|
||||
@@ -1047,7 +1046,7 @@ $RoleMetadataBulkUpdateByQueryRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToRoleMetadataBulkUpdateByQueryRequest -Json $RoleMetadataBulkUpdateByQueryRequest
|
||||
Update-V2024RolesMetadataByQuery-V2024RoleMetadataBulkUpdateByQueryRequest $Result
|
||||
Update-V2024RolesMetadataByQuery -V2024RoleMetadataBulkUpdateByQueryRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024RolesMetadataByQuery -V2024RoleMetadataBulkUpdateByQueryRequest $RoleMetadataBulkUpdateByQueryRequest
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-sim-integrations
|
||||
title: SIMIntegrations
|
||||
@@ -86,7 +85,7 @@ $SimIntegrationDetails = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSimIntegrationDetails -Json $SimIntegrationDetails
|
||||
New-V2024SIMIntegration-V2024XSailPointExperimental $XSailPointExperimental -V2024SimIntegrationDetails $Result
|
||||
New-V2024SIMIntegration -V2024XSailPointExperimental $XSailPointExperimental -V2024SimIntegrationDetails $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024SIMIntegration -V2024XSailPointExperimental $XSailPointExperimental -V2024SimIntegrationDetails $SimIntegrationDetails
|
||||
@@ -131,7 +130,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Delete a SIM integration
|
||||
|
||||
try {
|
||||
Remove-V2024SIMIntegration-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Remove-V2024SIMIntegration -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024SIMIntegration -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -176,7 +175,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get a SIM integration details.
|
||||
|
||||
try {
|
||||
Get-V2024SIMIntegration-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024SIMIntegration -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SIMIntegration -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -219,7 +218,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# List the existing SIM integrations.
|
||||
|
||||
try {
|
||||
Get-V2024SIMIntegrations-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024SIMIntegrations -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SIMIntegrations -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -267,7 +266,7 @@ $JsonPatch = @""[\n {\n\t \"op\": \"replace\",\n\t \"path\": \"/description\"
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatch -Json $JsonPatch
|
||||
Update-V2024BeforeProvisioningRule-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatch $Result
|
||||
Update-V2024BeforeProvisioningRule -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatch $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024BeforeProvisioningRule -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatch $JsonPatch
|
||||
@@ -315,7 +314,7 @@ $JsonPatch = @""[\n {\n\t \"op\": \"replace\",\n\t \"path\": \"/description\"
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatch -Json $JsonPatch
|
||||
Update-V2024SIMAttributes-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatch $Result
|
||||
Update-V2024SIMAttributes -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatch $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024SIMAttributes -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatch $JsonPatch
|
||||
@@ -380,7 +379,7 @@ $SimIntegrationDetails = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSimIntegrationDetails -Json $SimIntegrationDetails
|
||||
Send-V2024SIMIntegration-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024SimIntegrationDetails $Result
|
||||
Send-V2024SIMIntegration -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024SimIntegrationDetails $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024SIMIntegration -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024SimIntegrationDetails $SimIntegrationDetails
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-sod-policies
|
||||
title: SODPolicies
|
||||
@@ -151,7 +150,7 @@ $SodPolicy = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSodPolicy -Json $SodPolicy
|
||||
New-V2024SodPolicy-V2024SodPolicy $Result
|
||||
New-V2024SodPolicy -V2024SodPolicy $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024SodPolicy -V2024SodPolicy $SodPolicy
|
||||
@@ -197,7 +196,7 @@ $Logical = $true # Boolean | Indicates whether this is a soft delete (logical tr
|
||||
# Delete SOD policy by ID
|
||||
|
||||
try {
|
||||
Remove-V2024SodPolicy-V2024Id $Id
|
||||
Remove-V2024SodPolicy -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024SodPolicy -V2024Id $Id -V2024Logical $Logical
|
||||
@@ -240,7 +239,7 @@ $Id = "ef38f943-47e9-4562-b5bb-8424a56397d8" # String | The ID of the SOD policy
|
||||
# Delete SOD policy schedule
|
||||
|
||||
try {
|
||||
Remove-V2024SodPolicySchedule-V2024Id $Id
|
||||
Remove-V2024SodPolicySchedule -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024SodPolicySchedule -V2024Id $Id
|
||||
@@ -285,7 +284,7 @@ $FileName = "custom-name" # String | Custom Name for the file.
|
||||
# Download custom violation report
|
||||
|
||||
try {
|
||||
Get-V2024CustomViolationReport-V2024ReportResultId $ReportResultId -V2024FileName $FileName
|
||||
Get-V2024CustomViolationReport -V2024ReportResultId $ReportResultId -V2024FileName $FileName
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024CustomViolationReport -V2024ReportResultId $ReportResultId -V2024FileName $FileName
|
||||
@@ -328,7 +327,7 @@ $ReportResultId = "ef38f94347e94562b5bb8424a56397d8" # String | The ID of the re
|
||||
# Download violation report
|
||||
|
||||
try {
|
||||
Get-V2024DefaultViolationReport-V2024ReportResultId $ReportResultId
|
||||
Get-V2024DefaultViolationReport -V2024ReportResultId $ReportResultId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024DefaultViolationReport -V2024ReportResultId $ReportResultId
|
||||
@@ -412,7 +411,7 @@ $Id = "ef38f943-47e9-4562-b5bb-8424a56397d8" # String | The ID of the SOD Policy
|
||||
# Get SOD policy by ID
|
||||
|
||||
try {
|
||||
Get-V2024SodPolicy-V2024Id $Id
|
||||
Get-V2024SodPolicy -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SodPolicy -V2024Id $Id
|
||||
@@ -454,7 +453,7 @@ $Id = "ef38f943-47e9-4562-b5bb-8424a56397d8" # String | The ID of the SOD policy
|
||||
# Get SOD policy schedule
|
||||
|
||||
try {
|
||||
Get-V2024SodPolicySchedule-V2024Id $Id
|
||||
Get-V2024SodPolicySchedule -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SodPolicySchedule -V2024Id $Id
|
||||
@@ -497,7 +496,7 @@ $ReportResultId = "2e8d8180-24bc-4d21-91c6-7affdb473b0d" # String | The ID of th
|
||||
# Get violation report run status
|
||||
|
||||
try {
|
||||
Get-V2024SodViolationReportRunStatus-V2024ReportResultId $ReportResultId
|
||||
Get-V2024SodViolationReportRunStatus -V2024ReportResultId $ReportResultId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SodViolationReportRunStatus -V2024ReportResultId $ReportResultId
|
||||
@@ -540,7 +539,7 @@ $Id = "ef38f943-47e9-4562-b5bb-8424a56397d8" # String | The ID of the violation
|
||||
# Get SOD violation report status
|
||||
|
||||
try {
|
||||
Get-V2024SodViolationReportStatus-V2024Id $Id
|
||||
Get-V2024SodViolationReportStatus -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SodViolationReportStatus -V2024Id $Id
|
||||
@@ -644,7 +643,7 @@ $Id = "2c918083-5d19-1a86-015d-28455b4a2329" # String | The ID of the SOD policy
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024SodPolicy-V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
Update-V2024SodPolicy -V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024SodPolicy -V2024Id $Id -V2024JsonPatchOperation $JsonPatchOperation
|
||||
@@ -774,7 +773,7 @@ $SodPolicySchedule = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSodPolicySchedule -Json $SodPolicySchedule
|
||||
Send-V2024PolicySchedule-V2024Id $Id -V2024SodPolicySchedule $Result
|
||||
Send-V2024PolicySchedule -V2024Id $Id -V2024SodPolicySchedule $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024PolicySchedule -V2024Id $Id -V2024SodPolicySchedule $SodPolicySchedule
|
||||
@@ -876,7 +875,7 @@ $SodPolicy = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSodPolicy -Json $SodPolicy
|
||||
Send-V2024SodPolicy-V2024Id $Id -V2024SodPolicy $Result
|
||||
Send-V2024SodPolicy -V2024Id $Id -V2024SodPolicy $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024SodPolicy -V2024Id $Id -V2024SodPolicy $SodPolicy
|
||||
@@ -918,7 +917,7 @@ $Id = "ef38f943-47e9-4562-b5bb-8424a56397d8" # String | The SOD policy ID to run
|
||||
# Evaluate one policy by ID
|
||||
|
||||
try {
|
||||
Start-V2024EvaluateSodPolicy-V2024Id $Id
|
||||
Start-V2024EvaluateSodPolicy -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Start-V2024EvaluateSodPolicy -V2024Id $Id
|
||||
@@ -1005,7 +1004,7 @@ $Id = "ef38f943-47e9-4562-b5bb-8424a56397d8" # String | The SOD policy ID to run
|
||||
# Runs SOD policy violation report
|
||||
|
||||
try {
|
||||
Start-V2024SodPolicy-V2024Id $Id
|
||||
Start-V2024SodPolicy -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Start-V2024SodPolicy -V2024Id $Id
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-sod-violations
|
||||
title: SODViolations
|
||||
@@ -84,7 +83,7 @@ $IdentityWithNewAccess = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToIdentityWithNewAccess -Json $IdentityWithNewAccess
|
||||
Start-V2024PredictSodViolations-V2024IdentityWithNewAccess $Result
|
||||
Start-V2024PredictSodViolations -V2024IdentityWithNewAccess $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Start-V2024PredictSodViolations -V2024IdentityWithNewAccess $IdentityWithNewAccess
|
||||
@@ -128,7 +127,7 @@ $IdentityWithNewAccess1 = @"{identityId=2c91808568c529c60168cca6f90c1313, access
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToIdentityWithNewAccess1 -Json $IdentityWithNewAccess1
|
||||
Start-V2024ViolationCheck-V2024IdentityWithNewAccess1 $Result
|
||||
Start-V2024ViolationCheck -V2024IdentityWithNewAccess1 $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Start-V2024ViolationCheck -V2024IdentityWithNewAccess1 $IdentityWithNewAccess1
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-sp-config
|
||||
title: SPConfig
|
||||
@@ -65,7 +64,7 @@ $ExportPayload = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToExportPayload -Json $ExportPayload
|
||||
Export-V2024SpConfig-V2024XSailPointExperimental $XSailPointExperimental -V2024ExportPayload $Result
|
||||
Export-V2024SpConfig -V2024XSailPointExperimental $XSailPointExperimental -V2024ExportPayload $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Export-V2024SpConfig -V2024XSailPointExperimental $XSailPointExperimental -V2024ExportPayload $ExportPayload
|
||||
@@ -112,7 +111,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Download export job result.
|
||||
|
||||
try {
|
||||
Get-V2024SpConfigExport-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024SpConfigExport -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SpConfigExport -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -159,7 +158,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get export job status
|
||||
|
||||
try {
|
||||
Get-V2024SpConfigExportStatus-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024SpConfigExportStatus -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SpConfigExportStatus -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -206,7 +205,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Download import job result
|
||||
|
||||
try {
|
||||
Get-V2024SpConfigImport-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024SpConfigImport -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SpConfigImport -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -255,7 +254,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get import job status
|
||||
|
||||
try {
|
||||
Get-V2024SpConfigImportStatus-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024SpConfigImportStatus -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SpConfigImportStatus -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -316,7 +315,7 @@ $Options = @""@
|
||||
# Initiates configuration objects import job
|
||||
|
||||
try {
|
||||
Import-V2024SpConfig-V2024XSailPointExperimental $XSailPointExperimental -V2024Data $Data
|
||||
Import-V2024SpConfig -V2024XSailPointExperimental $XSailPointExperimental -V2024Data $Data
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Import-V2024SpConfig -V2024XSailPointExperimental $XSailPointExperimental -V2024Data $Data -V2024Preview $Preview -V2024Options $Options
|
||||
@@ -359,7 +358,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get config object details
|
||||
|
||||
try {
|
||||
Get-V2024SpConfigObjects-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024SpConfigObjects -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SpConfigObjects -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-saved-search
|
||||
title: SavedSearch
|
||||
@@ -69,7 +68,7 @@ $CreateSavedSearchRequest = @""@
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToCreateSavedSearchRequest -Json $CreateSavedSearchRequest
|
||||
New-V2024SavedSearch-V2024CreateSavedSearchRequest $Result
|
||||
New-V2024SavedSearch -V2024CreateSavedSearchRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024SavedSearch -V2024CreateSavedSearchRequest $CreateSavedSearchRequest
|
||||
@@ -113,7 +112,7 @@ $Id = "2c91808568c529c60168cca6f90c1313" # String | ID of the requested document
|
||||
# Delete document by ID
|
||||
|
||||
try {
|
||||
Remove-V2024SavedSearch-V2024Id $Id
|
||||
Remove-V2024SavedSearch -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024SavedSearch -V2024Id $Id
|
||||
@@ -170,7 +169,7 @@ $SearchArguments = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSearchArguments -Json $SearchArguments
|
||||
Invoke-V2024ExecuteSavedSearch-V2024Id $Id -V2024SearchArguments $Result
|
||||
Invoke-V2024ExecuteSavedSearch -V2024Id $Id -V2024SearchArguments $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Invoke-V2024ExecuteSavedSearch -V2024Id $Id -V2024SearchArguments $SearchArguments
|
||||
@@ -214,7 +213,7 @@ $Id = "2c91808568c529c60168cca6f90c1313" # String | ID of the requested document
|
||||
# Return saved search by ID
|
||||
|
||||
try {
|
||||
Get-V2024SavedSearch-V2024Id $Id
|
||||
Get-V2024SavedSearch -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SavedSearch -V2024Id $Id
|
||||
@@ -355,7 +354,7 @@ $SavedSearch = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSavedSearch -Json $SavedSearch
|
||||
Send-V2024SavedSearch-V2024Id $Id -V2024SavedSearch $Result
|
||||
Send-V2024SavedSearch -V2024Id $Id -V2024SavedSearch $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024SavedSearch -V2024Id $Id -V2024SavedSearch $SavedSearch
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-scheduled-search
|
||||
title: ScheduledSearch
|
||||
@@ -86,7 +85,7 @@ $CreateScheduledSearchRequest = @"{savedSearchId=9c620e13-cd33-4804-a13d-403bd7b
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToCreateScheduledSearchRequest -Json $CreateScheduledSearchRequest
|
||||
New-V2024ScheduledSearch-V2024CreateScheduledSearchRequest $Result
|
||||
New-V2024ScheduledSearch -V2024CreateScheduledSearchRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024ScheduledSearch -V2024CreateScheduledSearchRequest $CreateScheduledSearchRequest
|
||||
@@ -130,7 +129,7 @@ $Id = "2c91808568c529c60168cca6f90c1313" # String | ID of the requested document
|
||||
# Delete a Scheduled Search
|
||||
|
||||
try {
|
||||
Remove-V2024ScheduledSearch-V2024Id $Id
|
||||
Remove-V2024ScheduledSearch -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024ScheduledSearch -V2024Id $Id
|
||||
@@ -173,7 +172,7 @@ $Id = "2c91808568c529c60168cca6f90c1313" # String | ID of the requested document
|
||||
# Get a Scheduled Search
|
||||
|
||||
try {
|
||||
Get-V2024ScheduledSearch-V2024Id $Id
|
||||
Get-V2024ScheduledSearch -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ScheduledSearch -V2024Id $Id
|
||||
@@ -270,7 +269,7 @@ $TypedReference = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToTypedReference -Json $TypedReference
|
||||
Invoke-V2024UnsubscribeScheduledSearch-V2024Id $Id -V2024TypedReference $Result
|
||||
Invoke-V2024UnsubscribeScheduledSearch -V2024Id $Id -V2024TypedReference $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Invoke-V2024UnsubscribeScheduledSearch -V2024Id $Id -V2024TypedReference $TypedReference
|
||||
@@ -407,7 +406,7 @@ $ScheduledSearch = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToScheduledSearch -Json $ScheduledSearch
|
||||
Update-V2024ScheduledSearch-V2024Id $Id -V2024ScheduledSearch $Result
|
||||
Update-V2024ScheduledSearch -V2024Id $Id -V2024ScheduledSearch $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024ScheduledSearch -V2024Id $Id -V2024ScheduledSearch $ScheduledSearch
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-search
|
||||
title: Search
|
||||
@@ -201,7 +200,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSearch -Json $Search
|
||||
Search-V2024Aggregate-V2024Search $Result
|
||||
Search-V2024Aggregate -V2024Search $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Search-V2024Aggregate -V2024Search $Search -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count
|
||||
@@ -360,7 +359,7 @@ $Search = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSearch -Json $Search
|
||||
Search-V2024Count-V2024Search $Result
|
||||
Search-V2024Count -V2024Search $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Search-V2024Count -V2024Search $Search
|
||||
@@ -405,7 +404,7 @@ $Id = "2c91808568c529c60168cca6f90c1313" # String | ID of the requested document
|
||||
# Get a Document by ID
|
||||
|
||||
try {
|
||||
Search-V2024Get-V2024Index $Index -V2024Id $Id
|
||||
Search-V2024Get -V2024Index $Index -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Search-V2024Get -V2024Index $Index -V2024Id $Id
|
||||
@@ -570,7 +569,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSearch -Json $Search
|
||||
Search-V2024Post-V2024Search $Result
|
||||
Search-V2024Post -V2024Search $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Search-V2024Post -V2024Search $Search -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-search-attribute-configuration
|
||||
title: SearchAttributeConfiguration
|
||||
@@ -83,7 +82,7 @@ $SearchAttributeConfig = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSearchAttributeConfig -Json $SearchAttributeConfig
|
||||
New-V2024SearchAttributeConfig-V2024SearchAttributeConfig $Result
|
||||
New-V2024SearchAttributeConfig -V2024SearchAttributeConfig $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024SearchAttributeConfig -V2024SearchAttributeConfig $SearchAttributeConfig
|
||||
@@ -126,7 +125,7 @@ $Name = "newMailAttribute" # String | Name of the extended search attribute conf
|
||||
# Delete Extended Search Attribute
|
||||
|
||||
try {
|
||||
Remove-V2024SearchAttributeConfig-V2024Name $Name
|
||||
Remove-V2024SearchAttributeConfig -V2024Name $Name
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024SearchAttributeConfig -V2024Name $Name
|
||||
@@ -210,7 +209,7 @@ $Name = "newMailAttribute" # String | Name of the extended search attribute conf
|
||||
# Get Extended Search Attribute
|
||||
|
||||
try {
|
||||
Get-V2024SingleSearchAttributeConfig-V2024Name $Name
|
||||
Get-V2024SingleSearchAttributeConfig -V2024Name $Name
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SingleSearchAttributeConfig -V2024Name $Name
|
||||
@@ -263,7 +262,7 @@ $Name = "promotedMailAttribute" # String | Name of the search attribute configur
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024SearchAttributeConfig-V2024Name $Name -V2024JsonPatchOperation $Result
|
||||
Update-V2024SearchAttributeConfig -V2024Name $Name -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024SearchAttributeConfig -V2024Name $Name -V2024JsonPatchOperation $JsonPatchOperation
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-segments
|
||||
title: Segments
|
||||
@@ -98,7 +97,7 @@ $Segment = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSegment -Json $Segment
|
||||
New-V2024Segment-V2024Segment $Result
|
||||
New-V2024Segment -V2024Segment $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024Segment -V2024Segment $Segment
|
||||
@@ -142,7 +141,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | The segment ID to delete.
|
||||
# Delete Segment by ID
|
||||
|
||||
try {
|
||||
Remove-V2024Segment-V2024Id $Id
|
||||
Remove-V2024Segment -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024Segment -V2024Id $Id
|
||||
@@ -185,7 +184,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | The segment ID to retrieve.
|
||||
# Get Segment by ID
|
||||
|
||||
try {
|
||||
Get-V2024Segment-V2024Id $Id
|
||||
Get-V2024Segment -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Segment -V2024Id $Id
|
||||
@@ -280,7 +279,7 @@ $RequestBody = # SystemCollectionsHashtable[] | A list of segment update operat
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToRequestBody -Json $RequestBody
|
||||
Update-V2024Segment-V2024Id $Id -V2024RequestBody $Result
|
||||
Update-V2024Segment -V2024Id $Id -V2024RequestBody $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024Segment -V2024Id $Id -V2024RequestBody $RequestBody
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-service-desk-integration
|
||||
title: ServiceDeskIntegration
|
||||
@@ -120,7 +119,7 @@ $ServiceDeskIntegrationDto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToServiceDeskIntegrationDto -Json $ServiceDeskIntegrationDto
|
||||
New-V2024ServiceDeskIntegration-V2024ServiceDeskIntegrationDto $Result
|
||||
New-V2024ServiceDeskIntegration -V2024ServiceDeskIntegrationDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024ServiceDeskIntegration -V2024ServiceDeskIntegrationDto $ServiceDeskIntegrationDto
|
||||
@@ -163,7 +162,7 @@ $Id = "anId" # String | ID of Service Desk integration to delete
|
||||
# Delete a Service Desk integration
|
||||
|
||||
try {
|
||||
Remove-V2024ServiceDeskIntegration-V2024Id $Id
|
||||
Remove-V2024ServiceDeskIntegration -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024ServiceDeskIntegration -V2024Id $Id
|
||||
@@ -206,7 +205,7 @@ $Id = "anId" # String | ID of the Service Desk integration to get
|
||||
# Get a Service Desk integration
|
||||
|
||||
try {
|
||||
Get-V2024ServiceDeskIntegration-V2024Id $Id
|
||||
Get-V2024ServiceDeskIntegration -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ServiceDeskIntegration -V2024Id $Id
|
||||
@@ -249,7 +248,7 @@ $ScriptName = "aScriptName" # String | The scriptName value of the Service Desk
|
||||
# Service Desk integration template by scriptName
|
||||
|
||||
try {
|
||||
Get-V2024ServiceDeskIntegrationTemplate-V2024ScriptName $ScriptName
|
||||
Get-V2024ServiceDeskIntegrationTemplate -V2024ScriptName $ScriptName
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ServiceDeskIntegrationTemplate -V2024ScriptName $ScriptName
|
||||
@@ -428,7 +427,7 @@ $PatchServiceDeskIntegrationRequest = @""@
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToPatchServiceDeskIntegrationRequest -Json $PatchServiceDeskIntegrationRequest
|
||||
Update-V2024ServiceDeskIntegration-V2024Id $Id -V2024PatchServiceDeskIntegrationRequest $Result
|
||||
Update-V2024ServiceDeskIntegration -V2024Id $Id -V2024PatchServiceDeskIntegrationRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024ServiceDeskIntegration -V2024Id $Id -V2024PatchServiceDeskIntegrationRequest $PatchServiceDeskIntegrationRequest
|
||||
@@ -507,7 +506,7 @@ $ServiceDeskIntegrationDto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToServiceDeskIntegrationDto -Json $ServiceDeskIntegrationDto
|
||||
Send-V2024ServiceDeskIntegration-V2024Id $Id -V2024ServiceDeskIntegrationDto $Result
|
||||
Send-V2024ServiceDeskIntegration -V2024Id $Id -V2024ServiceDeskIntegrationDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024ServiceDeskIntegration -V2024Id $Id -V2024ServiceDeskIntegrationDto $ServiceDeskIntegrationDto
|
||||
@@ -554,7 +553,7 @@ $QueuedCheckConfigDetails = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToQueuedCheckConfigDetails -Json $QueuedCheckConfigDetails
|
||||
Update-V2024StatusCheckDetails-V2024QueuedCheckConfigDetails $Result
|
||||
Update-V2024StatusCheckDetails -V2024QueuedCheckConfigDetails $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024StatusCheckDetails -V2024QueuedCheckConfigDetails $QueuedCheckConfigDetails
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-source-usages
|
||||
title: SourceUsages
|
||||
@@ -56,7 +55,7 @@ $SourceId = "2c9180835d191a86015d28455b4a2329" # String | ID of IDN source
|
||||
# Finds status of source usage
|
||||
|
||||
try {
|
||||
Get-V2024StatusBySourceId-V2024SourceId $SourceId
|
||||
Get-V2024StatusBySourceId -V2024SourceId $SourceId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024StatusBySourceId -V2024SourceId $SourceId
|
||||
@@ -106,7 +105,7 @@ $Sorters = "-date" # String | Sort results using the standard syntax described i
|
||||
# Returns source usage insights
|
||||
|
||||
try {
|
||||
Get-V2024UsagesBySourceId-V2024SourceId $SourceId
|
||||
Get-V2024UsagesBySourceId -V2024SourceId $SourceId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024UsagesBySourceId -V2024SourceId $SourceId -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Sorters $Sorters
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-sources
|
||||
title: Sources
|
||||
@@ -202,7 +201,7 @@ $ProvisioningPolicyDto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToProvisioningPolicyDto -Json $ProvisioningPolicyDto
|
||||
New-V2024ProvisioningPolicy-V2024SourceId $SourceId -V2024ProvisioningPolicyDto $Result
|
||||
New-V2024ProvisioningPolicy -V2024SourceId $SourceId -V2024ProvisioningPolicyDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024ProvisioningPolicy -V2024SourceId $SourceId -V2024ProvisioningPolicyDto $ProvisioningPolicyDto
|
||||
@@ -329,7 +328,7 @@ $ProvisionAsCsv = $false # Boolean | If this parameter is `true`, it configures
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSource -Json $Source
|
||||
New-V2024Source-V2024Source $Result
|
||||
New-V2024Source -V2024Source $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024Source -V2024Source $Source -V2024ProvisionAsCsv $ProvisionAsCsv
|
||||
@@ -375,7 +374,7 @@ $Schedule1 = @""@
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSchedule1 -Json $Schedule1
|
||||
New-V2024SourceSchedule-V2024SourceId $SourceId -V2024Schedule1 $Result
|
||||
New-V2024SourceSchedule -V2024SourceId $SourceId -V2024Schedule1 $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024SourceSchedule -V2024SourceId $SourceId -V2024Schedule1 $Schedule1
|
||||
@@ -454,7 +453,7 @@ $Schema = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSchema -Json $Schema
|
||||
New-V2024SourceSchema-V2024SourceId $SourceId -V2024Schema $Result
|
||||
New-V2024SourceSchema -V2024SourceId $SourceId -V2024Schema $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024SourceSchema -V2024SourceId $SourceId -V2024Schema $Schema
|
||||
@@ -504,7 +503,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Remove All Accounts in a Source
|
||||
|
||||
try {
|
||||
Remove-V2024AccountsAsync-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Remove-V2024AccountsAsync -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024AccountsAsync -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -549,7 +548,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Delete Native Change Detection Configuration
|
||||
|
||||
try {
|
||||
Remove-V2024NativeChangeDetectionConfig-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Remove-V2024NativeChangeDetectionConfig -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024NativeChangeDetectionConfig -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -594,7 +593,7 @@ $UsageType = "CREATE" # UsageType | The type of provisioning policy usage. In I
|
||||
# Delete Provisioning Policy by UsageType
|
||||
|
||||
try {
|
||||
Remove-V2024ProvisioningPolicy-V2024SourceId $SourceId -V2024UsageType $UsageType
|
||||
Remove-V2024ProvisioningPolicy -V2024SourceId $SourceId -V2024UsageType $UsageType
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024ProvisioningPolicy -V2024SourceId $SourceId -V2024UsageType $UsageType
|
||||
@@ -638,7 +637,7 @@ $Id = "2c9180835d191a86015d28455b4a2329" # String | Source ID.
|
||||
# Delete Source by ID
|
||||
|
||||
try {
|
||||
Remove-V2024Source-V2024Id $Id
|
||||
Remove-V2024Source -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024Source -V2024Id $Id
|
||||
@@ -683,7 +682,7 @@ $ScheduleType = "ACCOUNT_AGGREGATION" # String | The Schedule type.
|
||||
# Delete Source Schedule by type.
|
||||
|
||||
try {
|
||||
Remove-V2024SourceSchedule-V2024SourceId $SourceId -V2024ScheduleType $ScheduleType
|
||||
Remove-V2024SourceSchedule -V2024SourceId $SourceId -V2024ScheduleType $ScheduleType
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024SourceSchedule -V2024SourceId $SourceId -V2024ScheduleType $ScheduleType
|
||||
@@ -728,7 +727,7 @@ $SchemaId = "2c9180835d191a86015d28455b4a2329" # String | The Schema id.
|
||||
# Delete Source Schema by ID
|
||||
|
||||
try {
|
||||
Remove-V2024SourceSchema-V2024SourceId $SourceId -V2024SchemaId $SchemaId
|
||||
Remove-V2024SourceSchema -V2024SourceId $SourceId -V2024SchemaId $SchemaId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024SourceSchema -V2024SourceId $SourceId -V2024SchemaId $SchemaId
|
||||
@@ -772,7 +771,7 @@ $Id = "8c190e6787aa4ed9a90bd9d5344523fb" # String | The Source id
|
||||
# Downloads source accounts schema template
|
||||
|
||||
try {
|
||||
Get-V2024AccountsSchema-V2024Id $Id
|
||||
Get-V2024AccountsSchema -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024AccountsSchema -V2024Id $Id
|
||||
@@ -815,7 +814,7 @@ $Id = "2c9180835d191a86015d28455b4a2329" # String | The source id
|
||||
# Get Source Correlation Configuration
|
||||
|
||||
try {
|
||||
Get-V2024CorrelationConfig-V2024Id $Id
|
||||
Get-V2024CorrelationConfig -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024CorrelationConfig -V2024Id $Id
|
||||
@@ -862,7 +861,7 @@ $SchemaName = "?schemaName=group" # String | Name of entitlement schema (optiona
|
||||
# Downloads source entitlements schema template
|
||||
|
||||
try {
|
||||
Get-V2024EntitlementsSchema-V2024Id $Id
|
||||
Get-V2024EntitlementsSchema -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024EntitlementsSchema -V2024Id $Id -V2024SchemaName $SchemaName
|
||||
@@ -907,7 +906,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Native Change Detection Configuration
|
||||
|
||||
try {
|
||||
Get-V2024NativeChangeDetectionConfig-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024NativeChangeDetectionConfig -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024NativeChangeDetectionConfig -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -952,7 +951,7 @@ $UsageType = "CREATE" # UsageType | The type of provisioning policy usage. In I
|
||||
# Get Provisioning Policy by UsageType
|
||||
|
||||
try {
|
||||
Get-V2024ProvisioningPolicy-V2024SourceId $SourceId -V2024UsageType $UsageType
|
||||
Get-V2024ProvisioningPolicy -V2024SourceId $SourceId -V2024UsageType $UsageType
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ProvisioningPolicy -V2024SourceId $SourceId -V2024UsageType $UsageType
|
||||
@@ -995,7 +994,7 @@ $Id = "2c9180835d191a86015d28455b4a2329" # String | Source ID.
|
||||
# Get Source by ID
|
||||
|
||||
try {
|
||||
Get-V2024Source-V2024Id $Id
|
||||
Get-V2024Source -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Source -V2024Id $Id
|
||||
@@ -1040,7 +1039,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Attribute Sync Config
|
||||
|
||||
try {
|
||||
Get-V2024SourceAttrSyncConfig-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024SourceAttrSyncConfig -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SourceAttrSyncConfig -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -1086,7 +1085,7 @@ $Locale = "de" # String | The locale to apply to the config. If no viable locale
|
||||
# Gets source config with language translations
|
||||
|
||||
try {
|
||||
Get-V2024SourceConfig-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024SourceConfig -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SourceConfig -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024Locale $Locale
|
||||
@@ -1132,7 +1131,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get Source Entitlement Request Configuration
|
||||
|
||||
try {
|
||||
Get-V2024SourceEntitlementRequestConfig-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024SourceEntitlementRequestConfig -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SourceEntitlementRequestConfig -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -1175,7 +1174,7 @@ $SourceId = "2c9180835d191a86015d28455b4a2329" # String | The Source id.
|
||||
# Fetches source health by id
|
||||
|
||||
try {
|
||||
Get-V2024SourceHealth-V2024SourceId $SourceId
|
||||
Get-V2024SourceHealth -V2024SourceId $SourceId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SourceHealth -V2024SourceId $SourceId
|
||||
@@ -1221,7 +1220,7 @@ $ScheduleType = "ACCOUNT_AGGREGATION" # String | The Schedule type.
|
||||
# Get Source Schedule by Type
|
||||
|
||||
try {
|
||||
Get-V2024SourceSchedule-V2024SourceId $SourceId -V2024ScheduleType $ScheduleType
|
||||
Get-V2024SourceSchedule -V2024SourceId $SourceId -V2024ScheduleType $ScheduleType
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SourceSchedule -V2024SourceId $SourceId -V2024ScheduleType $ScheduleType
|
||||
@@ -1264,7 +1263,7 @@ $SourceId = "2c9180835d191a86015d28455b4a2329" # String | Source ID.
|
||||
# List Schedules on Source
|
||||
|
||||
try {
|
||||
Get-V2024SourceSchedules-V2024SourceId $SourceId
|
||||
Get-V2024SourceSchedules -V2024SourceId $SourceId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SourceSchedules -V2024SourceId $SourceId
|
||||
@@ -1310,7 +1309,7 @@ $SchemaId = "2c9180835d191a86015d28455b4a2329" # String | The Schema id.
|
||||
# Get Source Schema by ID
|
||||
|
||||
try {
|
||||
Get-V2024SourceSchema-V2024SourceId $SourceId -V2024SchemaId $SchemaId
|
||||
Get-V2024SourceSchema -V2024SourceId $SourceId -V2024SchemaId $SchemaId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SourceSchema -V2024SourceId $SourceId -V2024SchemaId $SchemaId
|
||||
@@ -1357,7 +1356,7 @@ $IncludeNames = "account" # String | A comma-separated list of schema names to f
|
||||
# List Schemas on Source
|
||||
|
||||
try {
|
||||
Get-V2024SourceSchemas-V2024SourceId $SourceId
|
||||
Get-V2024SourceSchemas -V2024SourceId $SourceId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SourceSchemas -V2024SourceId $SourceId -V2024IncludeTypes $IncludeTypes -V2024IncludeNames $IncludeNames
|
||||
@@ -1407,7 +1406,7 @@ $DisableOptimization = "MyDisableOptimization" # String | Use this flag to repro
|
||||
# Account Aggregation
|
||||
|
||||
try {
|
||||
Import-V2024Accounts-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Import-V2024Accounts -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Import-V2024Accounts -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024File $File -V2024DisableOptimization $DisableOptimization
|
||||
@@ -1457,7 +1456,7 @@ $File = # System.IO.FileInfo | (optional)
|
||||
# Uploads source accounts schema template
|
||||
|
||||
try {
|
||||
Import-V2024AccountsSchema-V2024Id $Id
|
||||
Import-V2024AccountsSchema -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Import-V2024AccountsSchema -V2024Id $Id -V2024File $File
|
||||
@@ -1501,7 +1500,7 @@ $File = # System.IO.FileInfo | (optional)
|
||||
# Upload connector file to source
|
||||
|
||||
try {
|
||||
Import-V2024ConnectorFile-V2024SourceId $SourceId
|
||||
Import-V2024ConnectorFile -V2024SourceId $SourceId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Import-V2024ConnectorFile -V2024SourceId $SourceId -V2024File $File
|
||||
@@ -1553,7 +1552,7 @@ $File = # System.IO.FileInfo | (optional)
|
||||
# Uploads source entitlements schema template
|
||||
|
||||
try {
|
||||
Import-V2024EntitlementsSchema-V2024Id $Id
|
||||
Import-V2024EntitlementsSchema -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Import-V2024EntitlementsSchema -V2024Id $Id -V2024SchemaName $SchemaName -V2024File $File
|
||||
@@ -1599,7 +1598,7 @@ $File = # System.IO.FileInfo | (optional)
|
||||
# Process Uncorrelated Accounts
|
||||
|
||||
try {
|
||||
Import-V2024UncorrelatedAccounts-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Import-V2024UncorrelatedAccounts -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Import-V2024UncorrelatedAccounts -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024File $File
|
||||
@@ -1642,7 +1641,7 @@ $SourceId = "2c9180835d191a86015d28455b4a2329" # String | The Source id
|
||||
# Lists ProvisioningPolicies
|
||||
|
||||
try {
|
||||
Get-V2024ProvisioningPolicies-V2024SourceId $SourceId
|
||||
Get-V2024ProvisioningPolicies -V2024SourceId $SourceId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ProvisioningPolicies -V2024SourceId $SourceId
|
||||
@@ -1748,7 +1747,7 @@ $ResourceObjectsRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToResourceObjectsRequest -Json $ResourceObjectsRequest
|
||||
Receive-V2024ResourceObjects-V2024SourceId $SourceId -V2024XSailPointExperimental $XSailPointExperimental -V2024ResourceObjectsRequest $Result
|
||||
Receive-V2024ResourceObjects -V2024SourceId $SourceId -V2024XSailPointExperimental $XSailPointExperimental -V2024ResourceObjectsRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Receive-V2024ResourceObjects -V2024SourceId $SourceId -V2024XSailPointExperimental $XSailPointExperimental -V2024ResourceObjectsRequest $ResourceObjectsRequest
|
||||
@@ -1793,7 +1792,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Ping cluster for source connector
|
||||
|
||||
try {
|
||||
Ping-V2024Cluster-V2024SourceId $SourceId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Ping-V2024Cluster -V2024SourceId $SourceId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Ping-V2024Cluster -V2024SourceId $SourceId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -1859,7 +1858,7 @@ $CorrelationConfig = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToCorrelationConfig -Json $CorrelationConfig
|
||||
Send-V2024CorrelationConfig-V2024Id $Id -V2024CorrelationConfig $Result
|
||||
Send-V2024CorrelationConfig -V2024Id $Id -V2024CorrelationConfig $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024CorrelationConfig -V2024Id $Id -V2024CorrelationConfig $CorrelationConfig
|
||||
@@ -1914,7 +1913,7 @@ $NativeChangeDetectionConfig = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToNativeChangeDetectionConfig -Json $NativeChangeDetectionConfig
|
||||
Send-V2024NativeChangeDetectionConfig-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024NativeChangeDetectionConfig $Result
|
||||
Send-V2024NativeChangeDetectionConfig -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024NativeChangeDetectionConfig $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024NativeChangeDetectionConfig -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024NativeChangeDetectionConfig $NativeChangeDetectionConfig
|
||||
@@ -2003,7 +2002,7 @@ $ProvisioningPolicyDto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToProvisioningPolicyDto -Json $ProvisioningPolicyDto
|
||||
Send-V2024ProvisioningPolicy-V2024SourceId $SourceId -V2024UsageType $UsageType -V2024ProvisioningPolicyDto $Result
|
||||
Send-V2024ProvisioningPolicy -V2024SourceId $SourceId -V2024UsageType $UsageType -V2024ProvisioningPolicyDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024ProvisioningPolicy -V2024SourceId $SourceId -V2024UsageType $UsageType -V2024ProvisioningPolicyDto $ProvisioningPolicyDto
|
||||
@@ -2143,7 +2142,7 @@ $Source = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSource -Json $Source
|
||||
Send-V2024Source-V2024Id $Id -V2024Source $Result
|
||||
Send-V2024Source -V2024Id $Id -V2024Source $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024Source -V2024Id $Id -V2024Source $Source
|
||||
@@ -2209,7 +2208,7 @@ $AttrSyncSourceConfig = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToAttrSyncSourceConfig -Json $AttrSyncSourceConfig
|
||||
Send-V2024SourceAttrSyncConfig-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024AttrSyncSourceConfig $Result
|
||||
Send-V2024SourceAttrSyncConfig -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024AttrSyncSourceConfig $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024SourceAttrSyncConfig -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024AttrSyncSourceConfig $AttrSyncSourceConfig
|
||||
@@ -2300,7 +2299,7 @@ $Schema = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSchema -Json $Schema
|
||||
Send-V2024SourceSchema-V2024SourceId $SourceId -V2024SchemaId $SchemaId -V2024Schema $Result
|
||||
Send-V2024SourceSchema -V2024SourceId $SourceId -V2024SchemaId $SchemaId -V2024Schema $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024SourceSchema -V2024SourceId $SourceId -V2024SchemaId $SchemaId -V2024Schema $Schema
|
||||
@@ -2345,7 +2344,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Synchronize single source attributes.
|
||||
|
||||
try {
|
||||
Sync-V2024AttributesForSource-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Sync-V2024AttributesForSource -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Sync-V2024AttributesForSource -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -2390,7 +2389,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Test configuration for source connector
|
||||
|
||||
try {
|
||||
Test-V2024SourceConfiguration-V2024SourceId $SourceId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Test-V2024SourceConfiguration -V2024SourceId $SourceId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Test-V2024SourceConfiguration -V2024SourceId $SourceId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -2435,7 +2434,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Check connection for source connector.
|
||||
|
||||
try {
|
||||
Test-V2024SourceConnection-V2024SourceId $SourceId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Test-V2024SourceConnection -V2024SourceId $SourceId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Test-V2024SourceConnection -V2024SourceId $SourceId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -2484,7 +2483,7 @@ $SourceId = "8c190e6787aa4ed9a90bd9d5344523fb" # String | The Source id
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToPasswordPolicyHoldersDtoInner -Json $PasswordPolicyHoldersDtoInner
|
||||
Update-V2024PasswordPolicyHolders-V2024SourceId $SourceId -V2024PasswordPolicyHoldersDtoInner $Result
|
||||
Update-V2024PasswordPolicyHolders -V2024SourceId $SourceId -V2024PasswordPolicyHoldersDtoInner $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024PasswordPolicyHolders -V2024SourceId $SourceId -V2024PasswordPolicyHoldersDtoInner $PasswordPolicyHoldersDtoInner
|
||||
@@ -2570,7 +2569,7 @@ $SourceId = "2c9180835d191a86015d28455b4a2329" # String | The Source id.
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToProvisioningPolicyDto -Json $ProvisioningPolicyDto
|
||||
Update-V2024ProvisioningPoliciesInBulk-V2024SourceId $SourceId -V2024ProvisioningPolicyDto $Result
|
||||
Update-V2024ProvisioningPoliciesInBulk -V2024SourceId $SourceId -V2024ProvisioningPolicyDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024ProvisioningPoliciesInBulk -V2024SourceId $SourceId -V2024ProvisioningPolicyDto $ProvisioningPolicyDto
|
||||
@@ -2625,7 +2624,7 @@ $UsageType = "CREATE" # UsageType | The type of provisioning policy usage. In I
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024ProvisioningPolicy-V2024SourceId $SourceId -V2024UsageType $UsageType -V2024JsonPatchOperation $Result
|
||||
Update-V2024ProvisioningPolicy -V2024SourceId $SourceId -V2024UsageType $UsageType -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024ProvisioningPolicy -V2024SourceId $SourceId -V2024UsageType $UsageType -V2024JsonPatchOperation $JsonPatchOperation
|
||||
@@ -2691,7 +2690,7 @@ $Id = "2c9180835d191a86015d28455b4a2329" # String | Source ID.
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024Source-V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
Update-V2024Source -V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024Source -V2024Id $Id -V2024JsonPatchOperation $JsonPatchOperation
|
||||
@@ -2752,7 +2751,7 @@ $SourceEntitlementRequestConfig = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSourceEntitlementRequestConfig -Json $SourceEntitlementRequestConfig
|
||||
Update-V2024SourceEntitlementRequestConfig-V2024XSailPointExperimental $XSailPointExperimental -V2024SourceEntitlementRequestConfig $Result
|
||||
Update-V2024SourceEntitlementRequestConfig -V2024XSailPointExperimental $XSailPointExperimental -V2024SourceEntitlementRequestConfig $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024SourceEntitlementRequestConfig -V2024XSailPointExperimental $XSailPointExperimental -V2024SourceEntitlementRequestConfig $SourceEntitlementRequestConfig
|
||||
@@ -2810,7 +2809,7 @@ $ScheduleType = "ACCOUNT_AGGREGATION" # String | The Schedule type.
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024SourceSchedule-V2024SourceId $SourceId -V2024ScheduleType $ScheduleType -V2024JsonPatchOperation $Result
|
||||
Update-V2024SourceSchedule -V2024SourceId $SourceId -V2024ScheduleType $ScheduleType -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024SourceSchedule -V2024SourceId $SourceId -V2024ScheduleType $ScheduleType -V2024JsonPatchOperation $JsonPatchOperation
|
||||
@@ -2892,7 +2891,7 @@ $SchemaId = "2c9180835d191a86015d28455b4a2329" # String | The Schema id.
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024SourceSchema-V2024SourceId $SourceId -V2024SchemaId $SchemaId -V2024JsonPatchOperation $Result
|
||||
Update-V2024SourceSchema -V2024SourceId $SourceId -V2024SchemaId $SchemaId -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024SourceSchema -V2024SourceId $SourceId -V2024SchemaId $SchemaId -V2024JsonPatchOperation $JsonPatchOperation
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-suggested-entitlement-description
|
||||
title: SuggestedEntitlementDescription
|
||||
@@ -68,7 +67,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Submit Sed Batch Stats Request
|
||||
|
||||
try {
|
||||
Get-V2024SedBatchStats-V2024BatchId $BatchId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024SedBatchStats -V2024BatchId $BatchId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SedBatchStats -V2024BatchId $BatchId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -112,7 +111,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# List Sed Batch Request
|
||||
|
||||
try {
|
||||
Get-V2024SedBatches-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024SedBatches -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024SedBatches -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -183,7 +182,7 @@ $ShowPendingStatusOnly = $false # Boolean | Will limit records to items that are
|
||||
# List Suggested Entitlement Descriptions
|
||||
|
||||
try {
|
||||
Get-V2024Seds-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024Seds -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Seds -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Filters $Filters -V2024Sorters $Sorters -V2024Count $Count -V2024CountOnly $CountOnly -V2024RequestedByAnyone $RequestedByAnyone -V2024ShowPendingStatusOnly $ShowPendingStatusOnly
|
||||
@@ -236,7 +235,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSedPatch -Json $SedPatch
|
||||
Update-V2024Sed-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024SedPatch $Result
|
||||
Update-V2024Sed -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024SedPatch $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024Sed -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024SedPatch $SedPatch
|
||||
@@ -286,7 +285,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSedApproval -Json $SedApproval
|
||||
Submit-V2024SedApproval-V2024XSailPointExperimental $XSailPointExperimental -V2024SedApproval $Result
|
||||
Submit-V2024SedApproval -V2024XSailPointExperimental $XSailPointExperimental -V2024SedApproval $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Submit-V2024SedApproval -V2024XSailPointExperimental $XSailPointExperimental -V2024SedApproval $SedApproval
|
||||
@@ -339,7 +338,7 @@ $SedAssignment = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSedAssignment -Json $SedAssignment
|
||||
Submit-V2024SedAssignment-V2024XSailPointExperimental $XSailPointExperimental -V2024SedAssignment $Result
|
||||
Submit-V2024SedAssignment -V2024XSailPointExperimental $XSailPointExperimental -V2024SedAssignment $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Submit-V2024SedAssignment -V2024XSailPointExperimental $XSailPointExperimental -V2024SedAssignment $SedAssignment
|
||||
@@ -388,7 +387,7 @@ $SedBatchRequest = @"{
|
||||
# Submit Sed Batch Request
|
||||
|
||||
try {
|
||||
Submit-V2024SedBatchRequest-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Submit-V2024SedBatchRequest -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Submit-V2024SedBatchRequest -V2024XSailPointExperimental $XSailPointExperimental -V2024SedBatchRequest $SedBatchRequest
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-tagged-objects
|
||||
title: TaggedObjects
|
||||
@@ -114,7 +113,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | The ID of the object to dele
|
||||
# Delete Object Tags
|
||||
|
||||
try {
|
||||
Remove-V2024TaggedObject-V2024Type $Type -V2024Id $Id
|
||||
Remove-V2024TaggedObject -V2024Type $Type -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024TaggedObject -V2024Type $Type -V2024Id $Id
|
||||
@@ -168,7 +167,7 @@ $BulkRemoveTaggedObject = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToBulkRemoveTaggedObject -Json $BulkRemoveTaggedObject
|
||||
Remove-V2024TagsToManyObject-V2024BulkRemoveTaggedObject $Result
|
||||
Remove-V2024TagsToManyObject -V2024BulkRemoveTaggedObject $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024TagsToManyObject -V2024BulkRemoveTaggedObject $BulkRemoveTaggedObject
|
||||
@@ -212,7 +211,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | The ID of the object referen
|
||||
# Get Tagged Object
|
||||
|
||||
try {
|
||||
Get-V2024TaggedObject-V2024Type $Type -V2024Id $Id
|
||||
Get-V2024TaggedObject -V2024Type $Type -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024TaggedObject -V2024Type $Type -V2024Id $Id
|
||||
@@ -314,7 +313,7 @@ $Filters = 'objectRef.id eq "2c91808568c529c60168cca6f90c1313"' # String | Filte
|
||||
# List Tagged Objects by Type
|
||||
|
||||
try {
|
||||
Get-V2024TaggedObjectsByType-V2024Type $Type
|
||||
Get-V2024TaggedObjectsByType -V2024Type $Type
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024TaggedObjectsByType -V2024Type $Type -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Filters $Filters
|
||||
@@ -368,7 +367,7 @@ $TaggedObject = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToTaggedObject -Json $TaggedObject
|
||||
Send-V2024TaggedObject-V2024Type $Type -V2024Id $Id -V2024TaggedObject $Result
|
||||
Send-V2024TaggedObject -V2024Type $Type -V2024Id $Id -V2024TaggedObject $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024TaggedObject -V2024Type $Type -V2024Id $Id -V2024TaggedObject $TaggedObject
|
||||
@@ -420,7 +419,7 @@ $TaggedObject = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToTaggedObject -Json $TaggedObject
|
||||
Set-V2024TagToObject-V2024TaggedObject $Result
|
||||
Set-V2024TagToObject -V2024TaggedObject $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Set-V2024TagToObject -V2024TaggedObject $TaggedObject
|
||||
@@ -475,7 +474,7 @@ $BulkAddTaggedObject = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToBulkAddTaggedObject -Json $BulkAddTaggedObject
|
||||
Set-V2024TagsToManyObjects-V2024BulkAddTaggedObject $Result
|
||||
Set-V2024TagsToManyObjects -V2024BulkAddTaggedObject $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Set-V2024TagsToManyObjects -V2024BulkAddTaggedObject $BulkAddTaggedObject
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-task-management
|
||||
title: TaskManagement
|
||||
@@ -63,7 +62,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Retrieve Pending Task List Headers
|
||||
|
||||
try {
|
||||
Get-V2024PendingTaskHeaders-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024PendingTaskHeaders -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024PendingTaskHeaders -V2024XSailPointExperimental $XSailPointExperimental -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count
|
||||
@@ -112,7 +111,7 @@ $Count = $true # Boolean | If *true* it will populate the *X-Total-Count* respon
|
||||
# Retrieve Pending Task Status List
|
||||
|
||||
try {
|
||||
Get-V2024PendingTasks-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024PendingTasks -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024PendingTasks -V2024XSailPointExperimental $XSailPointExperimental -V2024Offset $Offset -V2024Limit $Limit -V2024Count $Count
|
||||
@@ -157,7 +156,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get Task Status by ID
|
||||
|
||||
try {
|
||||
Get-V2024TaskStatus-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024TaskStatus -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024TaskStatus -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -211,7 +210,7 @@ $Sorters = "-created" # String | Sort results using the standard syntax describe
|
||||
# Retrieve Task Status List
|
||||
|
||||
try {
|
||||
Get-V2024TaskStatusList-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024TaskStatusList -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024TaskStatusList -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -264,7 +263,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024TaskStatus-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatchOperation $Result
|
||||
Update-V2024TaskStatus -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024TaskStatus -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024JsonPatchOperation $JsonPatchOperation
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-tenant
|
||||
title: Tenant
|
||||
@@ -53,7 +52,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get Tenant Information.
|
||||
|
||||
try {
|
||||
Get-V2024Tenant-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024Tenant -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Tenant -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-transforms
|
||||
title: Transforms
|
||||
@@ -84,7 +83,7 @@ $Transform = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToTransform -Json $Transform
|
||||
New-V2024Transform-V2024Transform $Result
|
||||
New-V2024Transform -V2024Transform $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024Transform -V2024Transform $Transform
|
||||
@@ -127,7 +126,7 @@ $Id = "2cd78adghjkja34jh2b1hkjhasuecd" # String | ID of the transform to delete
|
||||
# Delete a transform
|
||||
|
||||
try {
|
||||
Remove-V2024Transform-V2024Id $Id
|
||||
Remove-V2024Transform -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024Transform -V2024Id $Id
|
||||
@@ -170,7 +169,7 @@ $Id = "2cd78adghjkja34jh2b1hkjhasuecd" # String | ID of the transform to retriev
|
||||
# Transform by ID
|
||||
|
||||
try {
|
||||
Get-V2024Transform-V2024Id $Id
|
||||
Get-V2024Transform -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Transform -V2024Id $Id
|
||||
@@ -286,7 +285,7 @@ $Transform = @"{
|
||||
# Update a transform
|
||||
|
||||
try {
|
||||
Update-V2024Transform-V2024Id $Id
|
||||
Update-V2024Transform -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024Transform -V2024Id $Id -V2024Transform $Transform
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-triggers
|
||||
title: Triggers
|
||||
@@ -113,7 +112,7 @@ $CompleteInvocation = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToCompleteInvocation -Json $CompleteInvocation
|
||||
Complete-V2024TriggerInvocation-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024CompleteInvocation $Result
|
||||
Complete-V2024TriggerInvocation -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024CompleteInvocation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Complete-V2024TriggerInvocation -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024CompleteInvocation $CompleteInvocation
|
||||
@@ -184,7 +183,7 @@ $SubscriptionPostRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSubscriptionPostRequest -Json $SubscriptionPostRequest
|
||||
New-V2024Subscription-V2024XSailPointExperimental $XSailPointExperimental -V2024SubscriptionPostRequest $Result
|
||||
New-V2024Subscription -V2024XSailPointExperimental $XSailPointExperimental -V2024SubscriptionPostRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024Subscription -V2024XSailPointExperimental $XSailPointExperimental -V2024SubscriptionPostRequest $SubscriptionPostRequest
|
||||
@@ -229,7 +228,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Delete a Subscription
|
||||
|
||||
try {
|
||||
Remove-V2024Subscription-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Remove-V2024Subscription -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024Subscription -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -281,7 +280,7 @@ $Sorters = "triggerName" # String | Sort results using the standard syntax descr
|
||||
# List Subscriptions
|
||||
|
||||
try {
|
||||
Get-V2024Subscriptions-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024Subscriptions -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Subscriptions -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -335,7 +334,7 @@ $Sorters = "created" # String | Sort results using the standard syntax described
|
||||
# List Latest Invocation Statuses
|
||||
|
||||
try {
|
||||
Get-V2024TriggerInvocationStatus-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024TriggerInvocationStatus -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024TriggerInvocationStatus -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -387,7 +386,7 @@ $Sorters = "name" # String | Sort results using the standard syntax described in
|
||||
# List Triggers
|
||||
|
||||
try {
|
||||
Get-V2024Triggers-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024Triggers -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Triggers -V2024XSailPointExperimental $XSailPointExperimental -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Filters $Filters -V2024Sorters $Sorters
|
||||
@@ -438,7 +437,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSubscriptionPatchRequestInner -Json $SubscriptionPatchRequestInner
|
||||
Update-V2024Subscription-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024SubscriptionPatchRequestInner $Result
|
||||
Update-V2024Subscription -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024SubscriptionPatchRequestInner $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024Subscription -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024SubscriptionPatchRequestInner $SubscriptionPatchRequestInner
|
||||
@@ -493,7 +492,7 @@ $TestInvocation = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToTestInvocation -Json $TestInvocation
|
||||
Start-V2024TestTriggerInvocation-V2024XSailPointExperimental $XSailPointExperimental -V2024TestInvocation $Result
|
||||
Start-V2024TestTriggerInvocation -V2024XSailPointExperimental $XSailPointExperimental -V2024TestInvocation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Start-V2024TestTriggerInvocation -V2024XSailPointExperimental $XSailPointExperimental -V2024TestInvocation $TestInvocation
|
||||
@@ -544,7 +543,7 @@ $ValidateFilterInputDto = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToValidateFilterInputDto -Json $ValidateFilterInputDto
|
||||
Test-V2024SubscriptionFilter-V2024XSailPointExperimental $XSailPointExperimental -V2024ValidateFilterInputDto $Result
|
||||
Test-V2024SubscriptionFilter -V2024XSailPointExperimental $XSailPointExperimental -V2024ValidateFilterInputDto $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Test-V2024SubscriptionFilter -V2024XSailPointExperimental $XSailPointExperimental -V2024ValidateFilterInputDto $ValidateFilterInputDto
|
||||
@@ -624,7 +623,7 @@ $SubscriptionPutRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToSubscriptionPutRequest -Json $SubscriptionPutRequest
|
||||
Update-V2024Subscription-V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024SubscriptionPutRequest $Result
|
||||
Update-V2024Subscription -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024SubscriptionPutRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024Subscription -V2024Id $Id -V2024XSailPointExperimental $XSailPointExperimental -V2024SubscriptionPutRequest $SubscriptionPutRequest
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-ui-metadata
|
||||
title: UIMetadata
|
||||
@@ -55,7 +54,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get a tenant UI metadata
|
||||
|
||||
try {
|
||||
Get-V2024TenantUiMetadata-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024TenantUiMetadata -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024TenantUiMetadata -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -105,7 +104,7 @@ $TenantUiMetadataItemUpdateRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToTenantUiMetadataItemUpdateRequest -Json $TenantUiMetadataItemUpdateRequest
|
||||
Set-V2024TenantUiMetadata-V2024XSailPointExperimental $XSailPointExperimental -V2024TenantUiMetadataItemUpdateRequest $Result
|
||||
Set-V2024TenantUiMetadata -V2024XSailPointExperimental $XSailPointExperimental -V2024TenantUiMetadataItemUpdateRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Set-V2024TenantUiMetadata -V2024XSailPointExperimental $XSailPointExperimental -V2024TenantUiMetadataItemUpdateRequest $TenantUiMetadataItemUpdateRequest
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-vendor-connector-mappings
|
||||
title: VendorConnectorMappings
|
||||
@@ -83,7 +82,7 @@ $VendorConnectorMapping = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToVendorConnectorMapping -Json $VendorConnectorMapping
|
||||
New-V2024VendorConnectorMapping-V2024VendorConnectorMapping $Result
|
||||
New-V2024VendorConnectorMapping -V2024VendorConnectorMapping $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024VendorConnectorMapping -V2024VendorConnectorMapping $VendorConnectorMapping
|
||||
@@ -150,7 +149,7 @@ $VendorConnectorMapping = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToVendorConnectorMapping -Json $VendorConnectorMapping
|
||||
Remove-V2024VendorConnectorMapping-V2024VendorConnectorMapping $Result
|
||||
Remove-V2024VendorConnectorMapping -V2024VendorConnectorMapping $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024VendorConnectorMapping -V2024VendorConnectorMapping $VendorConnectorMapping
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-work-items
|
||||
title: WorkItems
|
||||
@@ -81,7 +80,7 @@ $ApprovalItemId = "1211bcaa32112bcef6122adb21cef1ac" # String | The ID of the ap
|
||||
# Approve an Approval Item
|
||||
|
||||
try {
|
||||
Approve-V2024ApprovalItem-V2024Id $Id -V2024ApprovalItemId $ApprovalItemId
|
||||
Approve-V2024ApprovalItem -V2024Id $Id -V2024ApprovalItemId $ApprovalItemId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Approve-V2024ApprovalItem -V2024Id $Id -V2024ApprovalItemId $ApprovalItemId
|
||||
@@ -124,7 +123,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | The ID of the work item
|
||||
# Bulk approve Approval Items
|
||||
|
||||
try {
|
||||
Approve-V2024ApprovalItemsInBulk-V2024Id $Id
|
||||
Approve-V2024ApprovalItemsInBulk -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Approve-V2024ApprovalItemsInBulk -V2024Id $Id
|
||||
@@ -167,7 +166,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | The ID of the work item
|
||||
# Complete a Work Item
|
||||
|
||||
try {
|
||||
Complete-V2024WorkItem-V2024Id $Id
|
||||
Complete-V2024WorkItem -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Complete-V2024WorkItem -V2024Id $Id
|
||||
@@ -341,7 +340,7 @@ $Id = "2c9180835d191a86015d28455b4a2329" # String | ID of the work item.
|
||||
# Get a Work Item
|
||||
|
||||
try {
|
||||
Get-V2024WorkItem-V2024Id $Id
|
||||
Get-V2024WorkItem -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024WorkItem -V2024Id $Id
|
||||
@@ -476,7 +475,7 @@ $ApprovalItemId = "1211bcaa32112bcef6122adb21cef1ac" # String | The ID of the ap
|
||||
# Reject an Approval Item
|
||||
|
||||
try {
|
||||
Deny-V2024ApprovalItem-V2024Id $Id -V2024ApprovalItemId $ApprovalItemId
|
||||
Deny-V2024ApprovalItem -V2024Id $Id -V2024ApprovalItemId $ApprovalItemId
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Deny-V2024ApprovalItem -V2024Id $Id -V2024ApprovalItemId $ApprovalItemId
|
||||
@@ -519,7 +518,7 @@ $Id = "ef38f94347e94562b5bb8424a56397d8" # String | The ID of the work item
|
||||
# Bulk reject Approval Items
|
||||
|
||||
try {
|
||||
Deny-V2024ApprovalItemsInBulk-V2024Id $Id
|
||||
Deny-V2024ApprovalItemsInBulk -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Deny-V2024ApprovalItemsInBulk -V2024Id $Id
|
||||
@@ -568,7 +567,7 @@ $WorkItemForward = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToWorkItemForward -Json $WorkItemForward
|
||||
Send-V2024WorkItemForward-V2024Id $Id -V2024WorkItemForward $Result
|
||||
Send-V2024WorkItemForward -V2024Id $Id -V2024WorkItemForward $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024WorkItemForward -V2024Id $Id -V2024WorkItemForward $WorkItemForward
|
||||
@@ -614,7 +613,7 @@ $RequestBody = @{ key_example = } # System.Collections.Hashtable | Account Sele
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToRequestBody -Json $RequestBody
|
||||
Submit-V2024AccountSelection-V2024Id $Id -V2024RequestBody $Result
|
||||
Submit-V2024AccountSelection -V2024Id $Id -V2024RequestBody $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Submit-V2024AccountSelection -V2024Id $Id -V2024RequestBody $RequestBody
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-work-reassignment
|
||||
title: WorkReassignment
|
||||
@@ -79,7 +78,7 @@ $ConfigurationItemRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToConfigurationItemRequest -Json $ConfigurationItemRequest
|
||||
New-V2024ReassignmentConfiguration-V2024XSailPointExperimental $XSailPointExperimental -V2024ConfigurationItemRequest $Result
|
||||
New-V2024ReassignmentConfiguration -V2024XSailPointExperimental $XSailPointExperimental -V2024ConfigurationItemRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024ReassignmentConfiguration -V2024XSailPointExperimental $XSailPointExperimental -V2024ConfigurationItemRequest $ConfigurationItemRequest
|
||||
@@ -125,7 +124,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Delete Reassignment Configuration
|
||||
|
||||
try {
|
||||
Remove-V2024ReassignmentConfiguration-V2024IdentityId $IdentityId -V2024ConfigType $ConfigType -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Remove-V2024ReassignmentConfiguration -V2024IdentityId $IdentityId -V2024ConfigType $ConfigType -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024ReassignmentConfiguration -V2024IdentityId $IdentityId -V2024ConfigType $ConfigType -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -175,7 +174,7 @@ $ExclusionFilters = @"SELF_REVIEW_DELEGATION"@ # String[] | Exclusion filters th
|
||||
# Evaluate Reassignment Configuration
|
||||
|
||||
try {
|
||||
Get-V2024EvaluateReassignmentConfiguration-V2024IdentityId $IdentityId -V2024ConfigType $ConfigType -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024EvaluateReassignmentConfiguration -V2024IdentityId $IdentityId -V2024ConfigType $ConfigType -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024EvaluateReassignmentConfiguration -V2024IdentityId $IdentityId -V2024ConfigType $ConfigType -V2024XSailPointExperimental $XSailPointExperimental -V2024ExclusionFilters $ExclusionFilters
|
||||
@@ -217,7 +216,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# List Reassignment Config Types
|
||||
|
||||
try {
|
||||
Get-V2024ReassignmentConfigTypes-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024ReassignmentConfigTypes -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ReassignmentConfigTypes -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -262,7 +261,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get Reassignment Configuration
|
||||
|
||||
try {
|
||||
Get-V2024ReassignmentConfiguration-V2024IdentityId $IdentityId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024ReassignmentConfiguration -V2024IdentityId $IdentityId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ReassignmentConfiguration -V2024IdentityId $IdentityId -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -305,7 +304,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# Get Tenant-wide Reassignment Configuration settings
|
||||
|
||||
try {
|
||||
Get-V2024TenantConfigConfiguration-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024TenantConfigConfiguration -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024TenantConfigConfiguration -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -348,7 +347,7 @@ $XSailPointExperimental = "true" # String | Use this header to enable this exper
|
||||
# List Reassignment Configurations
|
||||
|
||||
try {
|
||||
Get-V2024ReassignmentConfigurations-V2024XSailPointExperimental $XSailPointExperimental
|
||||
Get-V2024ReassignmentConfigurations -V2024XSailPointExperimental $XSailPointExperimental
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024ReassignmentConfigurations -V2024XSailPointExperimental $XSailPointExperimental
|
||||
@@ -401,7 +400,7 @@ $ConfigurationItemRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToConfigurationItemRequest -Json $ConfigurationItemRequest
|
||||
Send-V2024ReassignmentConfig-V2024IdentityId $IdentityId -V2024XSailPointExperimental $XSailPointExperimental -V2024ConfigurationItemRequest $Result
|
||||
Send-V2024ReassignmentConfig -V2024IdentityId $IdentityId -V2024XSailPointExperimental $XSailPointExperimental -V2024ConfigurationItemRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024ReassignmentConfig -V2024IdentityId $IdentityId -V2024XSailPointExperimental $XSailPointExperimental -V2024ConfigurationItemRequest $ConfigurationItemRequest
|
||||
@@ -450,7 +449,7 @@ $TenantConfigurationRequest = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToTenantConfigurationRequest -Json $TenantConfigurationRequest
|
||||
Send-V2024TenantConfiguration-V2024XSailPointExperimental $XSailPointExperimental -V2024TenantConfigurationRequest $Result
|
||||
Send-V2024TenantConfiguration -V2024XSailPointExperimental $XSailPointExperimental -V2024TenantConfigurationRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024TenantConfiguration -V2024XSailPointExperimental $XSailPointExperimental -V2024TenantConfigurationRequest $TenantConfigurationRequest
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
|
||||
---
|
||||
id: v2024-workflows
|
||||
title: Workflows
|
||||
@@ -71,7 +70,7 @@ $Id = "c17bea3a-574d-453c-9e04-4365fbf5af0b" # String | The workflow execution I
|
||||
# Cancel Workflow Execution by ID
|
||||
|
||||
try {
|
||||
Suspend-V2024WorkflowExecution-V2024Id $Id
|
||||
Suspend-V2024WorkflowExecution -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Suspend-V2024WorkflowExecution -V2024Id $Id
|
||||
@@ -115,7 +114,7 @@ $CreateExternalExecuteWorkflowRequest = @""@
|
||||
# Execute Workflow via External Trigger
|
||||
|
||||
try {
|
||||
New-V2024ExternalExecuteWorkflow-V2024Id $Id
|
||||
New-V2024ExternalExecuteWorkflow -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024ExternalExecuteWorkflow -V2024Id $Id -V2024CreateExternalExecuteWorkflowRequest $CreateExternalExecuteWorkflowRequest
|
||||
@@ -158,7 +157,7 @@ $CreateWorkflowRequest = @"{name=Send Email, owner={type=IDENTITY, id=2c91808568
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToCreateWorkflowRequest -Json $CreateWorkflowRequest
|
||||
New-V2024Workflow-V2024CreateWorkflowRequest $Result
|
||||
New-V2024Workflow -V2024CreateWorkflowRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024Workflow -V2024CreateWorkflowRequest $CreateWorkflowRequest
|
||||
@@ -200,7 +199,7 @@ $Id = "c17bea3a-574d-453c-9e04-4365fbf5af0b" # String | Id of the workflow
|
||||
# Generate External Trigger OAuth Client
|
||||
|
||||
try {
|
||||
New-V2024WorkflowExternalTrigger-V2024Id $Id
|
||||
New-V2024WorkflowExternalTrigger -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# New-V2024WorkflowExternalTrigger -V2024Id $Id
|
||||
@@ -242,7 +241,7 @@ $Id = "c17bea3a-574d-453c-9e04-4365fbf5af0b" # String | Id of the Workflow
|
||||
# Delete Workflow By Id
|
||||
|
||||
try {
|
||||
Remove-V2024Workflow-V2024Id $Id
|
||||
Remove-V2024Workflow -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Remove-V2024Workflow -V2024Id $Id
|
||||
@@ -284,7 +283,7 @@ $Id = "c17bea3a-574d-453c-9e04-4365fbf5af0b" # String | Id of the workflow
|
||||
# Get Workflow By Id
|
||||
|
||||
try {
|
||||
Get-V2024Workflow-V2024Id $Id
|
||||
Get-V2024Workflow -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024Workflow -V2024Id $Id
|
||||
@@ -327,7 +326,7 @@ $Id = "c17bea3a-574d-453c-9e04-4365fbf5af0b" # String | Workflow execution ID.
|
||||
# Get Workflow Execution
|
||||
|
||||
try {
|
||||
Get-V2024WorkflowExecution-V2024Id $Id
|
||||
Get-V2024WorkflowExecution -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024WorkflowExecution -V2024Id $Id
|
||||
@@ -370,7 +369,7 @@ $Id = "c17bea3a-574d-453c-9e04-4365fbf5af0b" # String | Id of the workflow execu
|
||||
# Get Workflow Execution History
|
||||
|
||||
try {
|
||||
Get-V2024WorkflowExecutionHistory-V2024Id $Id
|
||||
Get-V2024WorkflowExecutionHistory -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024WorkflowExecutionHistory -V2024Id $Id
|
||||
@@ -431,7 +430,7 @@ $Filters = 'status eq "Failed"' # String | Filter results using the standard syn
|
||||
# List Workflow Executions
|
||||
|
||||
try {
|
||||
Get-V2024WorkflowExecutions-V2024Id $Id
|
||||
Get-V2024WorkflowExecutions -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Get-V2024WorkflowExecutions -V2024Id $Id -V2024Limit $Limit -V2024Offset $Offset -V2024Count $Count -V2024Filters $Filters
|
||||
@@ -697,7 +696,7 @@ $Id = "c17bea3a-574d-453c-9e04-4365fbf5af0b" # String | Id of the Workflow
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToJsonPatchOperation -Json $JsonPatchOperation
|
||||
Update-V2024Workflow-V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
Update-V2024Workflow -V2024Id $Id -V2024JsonPatchOperation $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Update-V2024Workflow -V2024Id $Id -V2024JsonPatchOperation $JsonPatchOperation
|
||||
@@ -780,7 +779,7 @@ $WorkflowBody = @"{
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToWorkflowBody -Json $WorkflowBody
|
||||
Send-V2024Workflow-V2024Id $Id -V2024WorkflowBody $Result
|
||||
Send-V2024Workflow -V2024Id $Id -V2024WorkflowBody $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Send-V2024Workflow -V2024Id $Id -V2024WorkflowBody $WorkflowBody
|
||||
@@ -824,7 +823,7 @@ $TestExternalExecuteWorkflowRequest = @""@
|
||||
# Test Workflow via External Trigger
|
||||
|
||||
try {
|
||||
Test-V2024ExternalExecuteWorkflow-V2024Id $Id
|
||||
Test-V2024ExternalExecuteWorkflow -V2024Id $Id
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Test-V2024ExternalExecuteWorkflow -V2024Id $Id -V2024TestExternalExecuteWorkflowRequest $TestExternalExecuteWorkflowRequest
|
||||
@@ -871,7 +870,7 @@ $TestWorkflowRequest = @"{input={identity={id=ee769173319b41d19ccec6cea52f237b,
|
||||
|
||||
try {
|
||||
$Result = ConvertFrom-JsonToTestWorkflowRequest -Json $TestWorkflowRequest
|
||||
Test-V2024Workflow-V2024Id $Id -V2024TestWorkflowRequest $Result
|
||||
Test-V2024Workflow -V2024Id $Id -V2024TestWorkflowRequest $Result
|
||||
|
||||
# Below is a request that includes all optional parameters
|
||||
# Test-V2024Workflow -V2024Id $Id -V2024TestWorkflowRequest $TestWorkflowRequest
|
||||
|
||||
@@ -16,11 +16,11 @@ tags: ['SDK', 'Software Development Kit', 'Access', 'V2024Access']
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Id** | Pointer to **String** | The unique ID of the referenced object. | [optional]
|
||||
**Name** | Pointer to **String** | The human readable name of the referenced object. | [optional]
|
||||
**DisplayName** | Pointer to **String** | | [optional]
|
||||
**Type** | Pointer to [**DtoType**](dto-type) | | [optional]
|
||||
**Description** | Pointer to **String** | | [optional]
|
||||
**Id** | **String** | The unique ID of the referenced object. | [optional]
|
||||
**Name** | **String** | The human readable name of the referenced object. | [optional]
|
||||
**DisplayName** | **String** | | [optional]
|
||||
**Type** | [**DtoType**](dto-type) | | [optional]
|
||||
**Description** | **String** | | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
|
||||
@@ -16,9 +16,9 @@ tags: ['SDK', 'Software Development Kit', 'AccessConstraint', 'V2024AccessConstr
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Type** | **Enum** [ "ENTITLEMENT", "ACCESS_PROFILE", "ROLE" ] | Type of Access | [required]
|
||||
**Ids** | Pointer to **[]String** | Must be set only if operator is SELECTED. | [optional]
|
||||
**Operator** | **Enum** [ "ALL", "SELECTED" ] | Used to determine whether the scope of the campaign should be reduced for selected ids or all. | [required]
|
||||
**Type** | **Enum** [ "ENTITLEMENT", "ACCESS_PROFILE", "ROLE" ] | Type of Access | [required]
|
||||
**Ids** | **[]String** | Must be set only if operator is SELECTED. | [optional]
|
||||
**Operator** | **Enum** [ "ALL", "SELECTED" ] | Used to determine whether the scope of the campaign should be reduced for selected ids or all. | [required]
|
||||
|
||||
## Examples
|
||||
|
||||
|
||||
@@ -16,8 +16,8 @@ tags: ['SDK', 'Software Development Kit', 'AccessCriteria', 'V2024AccessCriteria
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Name** | Pointer to **String** | Business name for the access construct list | [optional]
|
||||
**CriteriaList** | Pointer to [**[]AccessCriteriaCriteriaListInner**](access-criteria-criteria-list-inner) | List of criteria. There is a min of 1 and max of 50 items in the list. | [optional]
|
||||
**Name** | **String** | Business name for the access construct list | [optional]
|
||||
**CriteriaList** | [**[]AccessCriteriaCriteriaListInner**](access-criteria-criteria-list-inner) | List of criteria. There is a min of 1 and max of 50 items in the list. | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
|
||||
@@ -16,9 +16,9 @@ tags: ['SDK', 'Software Development Kit', 'AccessCriteriaCriteriaListInner', 'V2
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Type** | Pointer to **Enum** [ "ENTITLEMENT" ] | Type of the propery to which this reference applies to | [optional]
|
||||
**Id** | Pointer to **String** | ID of the object to which this reference applies to | [optional]
|
||||
**Name** | Pointer to **String** | Human-readable display name of the object to which this reference applies to | [optional]
|
||||
**Type** | **Enum** [ "ENTITLEMENT" ] | Type of the propery to which this reference applies to | [optional]
|
||||
**Id** | **String** | ID of the object to which this reference applies to | [optional]
|
||||
**Name** | **String** | Human-readable display name of the object to which this reference applies to | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
|
||||
@@ -16,18 +16,18 @@ tags: ['SDK', 'Software Development Kit', 'AccessItemAccessProfileResponse', 'V2
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**AccessType** | Pointer to **String** | the access item type. accessProfile in this case | [optional]
|
||||
**Id** | Pointer to **String** | the access item id | [optional]
|
||||
**Name** | Pointer to **String** | the access profile name | [optional]
|
||||
**SourceName** | Pointer to **String** | the name of the source | [optional]
|
||||
**SourceId** | Pointer to **String** | the id of the source | [optional]
|
||||
**Description** | Pointer to **String** | the description for the access profile | [optional]
|
||||
**DisplayName** | Pointer to **String** | the display name of the identity | [optional]
|
||||
**EntitlementCount** | Pointer to **String** | the number of entitlements the access profile will create | [optional]
|
||||
**AppDisplayName** | Pointer to **String** | the name of | [optional]
|
||||
**RemoveDate** | Pointer to **String** | the date the access profile is no longer assigned to the specified identity | [optional]
|
||||
**Standalone** | **Boolean** | indicates whether the access profile is standalone | [required]
|
||||
**Revocable** | **Boolean** | indicates whether the access profile is | [required]
|
||||
**AccessType** | **String** | the access item type. accessProfile in this case | [optional]
|
||||
**Id** | **String** | the access item id | [optional]
|
||||
**Name** | **String** | the access profile name | [optional]
|
||||
**SourceName** | **String** | the name of the source | [optional]
|
||||
**SourceId** | **String** | the id of the source | [optional]
|
||||
**Description** | **String** | the description for the access profile | [optional]
|
||||
**DisplayName** | **String** | the display name of the identity | [optional]
|
||||
**EntitlementCount** | **String** | the number of entitlements the access profile will create | [optional]
|
||||
**AppDisplayName** | **String** | the name of | [optional]
|
||||
**RemoveDate** | **String** | the date the access profile is no longer assigned to the specified identity | [optional]
|
||||
**Standalone** | **Boolean** | indicates whether the access profile is standalone | [required]
|
||||
**Revocable** | **Boolean** | indicates whether the access profile is | [required]
|
||||
|
||||
## Examples
|
||||
|
||||
|
||||
@@ -16,13 +16,13 @@ tags: ['SDK', 'Software Development Kit', 'AccessItemAccountResponse', 'V2024Acc
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**AccessType** | Pointer to **String** | the access item type. account in this case | [optional]
|
||||
**Id** | Pointer to **String** | the access item id | [optional]
|
||||
**NativeIdentity** | Pointer to **String** | the native identifier used to uniquely identify an acccount | [optional]
|
||||
**SourceName** | Pointer to **String** | the name of the source | [optional]
|
||||
**SourceId** | Pointer to **String** | the id of the source | [optional]
|
||||
**EntitlementCount** | Pointer to **String** | the number of entitlements the account will create | [optional]
|
||||
**DisplayName** | Pointer to **String** | the display name of the identity | [optional]
|
||||
**AccessType** | **String** | the access item type. account in this case | [optional]
|
||||
**Id** | **String** | the access item id | [optional]
|
||||
**NativeIdentity** | **String** | the native identifier used to uniquely identify an acccount | [optional]
|
||||
**SourceName** | **String** | the name of the source | [optional]
|
||||
**SourceId** | **String** | the id of the source | [optional]
|
||||
**EntitlementCount** | **String** | the number of entitlements the account will create | [optional]
|
||||
**DisplayName** | **String** | the display name of the identity | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
|
||||
@@ -16,11 +16,11 @@ tags: ['SDK', 'Software Development Kit', 'AccessItemAppResponse', 'V2024AccessI
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**AccessType** | Pointer to **String** | the access item type. entitlement in this case | [optional]
|
||||
**Id** | Pointer to **String** | the access item id | [optional]
|
||||
**DisplayName** | Pointer to **String** | the access item display name | [optional]
|
||||
**SourceName** | Pointer to **String** | the associated source name if it exists | [optional]
|
||||
**AppRoleId** | Pointer to **String** | the app role id | [optional]
|
||||
**AccessType** | **String** | the access item type. entitlement in this case | [optional]
|
||||
**Id** | **String** | the access item id | [optional]
|
||||
**DisplayName** | **String** | the access item display name | [optional]
|
||||
**SourceName** | **String** | the associated source name if it exists | [optional]
|
||||
**AppRoleId** | **String** | the app role id | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
|
||||
@@ -16,9 +16,9 @@ tags: ['SDK', 'Software Development Kit', 'AccessItemApproverDto', 'V2024AccessI
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Type** | Pointer to **Enum** [ "IDENTITY" ] | DTO type of identity who approved the access item request. | [optional]
|
||||
**Id** | Pointer to **String** | ID of identity who approved the access item request. | [optional]
|
||||
**Name** | Pointer to **String** | Human-readable display name of identity who approved the access item request. | [optional]
|
||||
**Type** | **Enum** [ "IDENTITY" ] | DTO type of identity who approved the access item request. | [optional]
|
||||
**Id** | **String** | ID of identity who approved the access item request. | [optional]
|
||||
**Name** | **String** | Human-readable display name of identity who approved the access item request. | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
|
||||
@@ -16,11 +16,11 @@ tags: ['SDK', 'Software Development Kit', 'AccessItemAssociated', 'V2024AccessIt
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**AccessItem** | Pointer to [**AccessItemAssociatedAccessItem**](access-item-associated-access-item) | | [optional]
|
||||
**IdentityId** | Pointer to **String** | the identity id | [optional]
|
||||
**EventType** | Pointer to **String** | the event type | [optional]
|
||||
**Dt** | Pointer to **String** | the date of event | [optional]
|
||||
**GovernanceEvent** | Pointer to [**CorrelatedGovernanceEvent**](correlated-governance-event) | | [optional]
|
||||
**AccessItem** | [**AccessItemAssociatedAccessItem**](access-item-associated-access-item) | | [optional]
|
||||
**IdentityId** | **String** | the identity id | [optional]
|
||||
**EventType** | **String** | the event type | [optional]
|
||||
**Dt** | **String** | the date of event | [optional]
|
||||
**GovernanceEvent** | [**CorrelatedGovernanceEvent**](correlated-governance-event) | | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
|
||||
@@ -16,25 +16,25 @@ tags: ['SDK', 'Software Development Kit', 'AccessItemAssociatedAccessItem', 'V20
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**AccessType** | Pointer to **String** | the access item type. role in this case | [optional]
|
||||
**Id** | Pointer to **String** | the access item id | [optional]
|
||||
**Name** | Pointer to **String** | the access profile name | [optional]
|
||||
**SourceName** | Pointer to **String** | the associated source name if it exists | [optional]
|
||||
**SourceId** | Pointer to **String** | the id of the source | [optional]
|
||||
**Description** | Pointer to **String** | the description for the role | [optional]
|
||||
**DisplayName** | Pointer to **String** | the role display name | [optional]
|
||||
**EntitlementCount** | Pointer to **String** | the number of entitlements the account will create | [optional]
|
||||
**AppDisplayName** | Pointer to **String** | the name of | [optional]
|
||||
**RemoveDate** | Pointer to **String** | the date the role is no longer assigned to the specified identity | [optional]
|
||||
**Standalone** | **Boolean** | indicates whether the entitlement is standalone | [required]
|
||||
**Revocable** | **Boolean** | indicates whether the role is revocable | [required]
|
||||
**NativeIdentity** | Pointer to **String** | the native identifier used to uniquely identify an acccount | [optional]
|
||||
**AppRoleId** | Pointer to **String** | the app role id | [optional]
|
||||
**Attribute** | Pointer to **String** | the entitlement attribute | [optional]
|
||||
**Value** | Pointer to **String** | the associated value | [optional]
|
||||
**EntitlementType** | Pointer to **String** | the type of entitlement | [optional]
|
||||
**Privileged** | **Boolean** | indicates whether the entitlement is privileged | [required]
|
||||
**CloudGoverned** | **Boolean** | indicates whether the entitlement is cloud governed | [required]
|
||||
**AccessType** | **String** | the access item type. role in this case | [optional]
|
||||
**Id** | **String** | the access item id | [optional]
|
||||
**Name** | **String** | the access profile name | [optional]
|
||||
**SourceName** | **String** | the associated source name if it exists | [optional]
|
||||
**SourceId** | **String** | the id of the source | [optional]
|
||||
**Description** | **String** | the description for the role | [optional]
|
||||
**DisplayName** | **String** | the role display name | [optional]
|
||||
**EntitlementCount** | **String** | the number of entitlements the account will create | [optional]
|
||||
**AppDisplayName** | **String** | the name of | [optional]
|
||||
**RemoveDate** | **String** | the date the role is no longer assigned to the specified identity | [optional]
|
||||
**Standalone** | **Boolean** | indicates whether the entitlement is standalone | [required]
|
||||
**Revocable** | **Boolean** | indicates whether the role is revocable | [required]
|
||||
**NativeIdentity** | **String** | the native identifier used to uniquely identify an acccount | [optional]
|
||||
**AppRoleId** | **String** | the app role id | [optional]
|
||||
**Attribute** | **String** | the entitlement attribute | [optional]
|
||||
**Value** | **String** | the associated value | [optional]
|
||||
**EntitlementType** | **String** | the type of entitlement | [optional]
|
||||
**Privileged** | **Boolean** | indicates whether the entitlement is privileged | [required]
|
||||
**CloudGoverned** | **Boolean** | indicates whether the entitlement is cloud governed | [required]
|
||||
|
||||
## Examples
|
||||
|
||||
|
||||
@@ -16,10 +16,10 @@ tags: ['SDK', 'Software Development Kit', 'AccessItemDiff', 'V2024AccessItemDiff
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Id** | Pointer to **String** | the id of the access item | [optional]
|
||||
**EventType** | Pointer to **Enum** [ "ADD", "REMOVE" ] | | [optional]
|
||||
**DisplayName** | Pointer to **String** | the display name of the access item | [optional]
|
||||
**SourceName** | Pointer to **String** | the source name of the access item | [optional]
|
||||
**Id** | **String** | the id of the access item | [optional]
|
||||
**EventType** | **Enum** [ "ADD", "REMOVE" ] | | [optional]
|
||||
**DisplayName** | **String** | the display name of the access item | [optional]
|
||||
**SourceName** | **String** | the source name of the access item | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
|
||||
@@ -16,18 +16,18 @@ tags: ['SDK', 'Software Development Kit', 'AccessItemEntitlementResponse', 'V202
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**AccessType** | Pointer to **String** | the access item type. entitlement in this case | [optional]
|
||||
**Id** | Pointer to **String** | the access item id | [optional]
|
||||
**Attribute** | Pointer to **String** | the entitlement attribute | [optional]
|
||||
**Value** | Pointer to **String** | the associated value | [optional]
|
||||
**EntitlementType** | Pointer to **String** | the type of entitlement | [optional]
|
||||
**SourceName** | Pointer to **String** | the name of the source | [optional]
|
||||
**SourceId** | Pointer to **String** | the id of the source | [optional]
|
||||
**Description** | Pointer to **String** | the description for the entitlment | [optional]
|
||||
**DisplayName** | Pointer to **String** | the display name of the identity | [optional]
|
||||
**Standalone** | **Boolean** | indicates whether the entitlement is standalone | [required]
|
||||
**Privileged** | **Boolean** | indicates whether the entitlement is privileged | [required]
|
||||
**CloudGoverned** | **Boolean** | indicates whether the entitlement is cloud governed | [required]
|
||||
**AccessType** | **String** | the access item type. entitlement in this case | [optional]
|
||||
**Id** | **String** | the access item id | [optional]
|
||||
**Attribute** | **String** | the entitlement attribute | [optional]
|
||||
**Value** | **String** | the associated value | [optional]
|
||||
**EntitlementType** | **String** | the type of entitlement | [optional]
|
||||
**SourceName** | **String** | the name of the source | [optional]
|
||||
**SourceId** | **String** | the id of the source | [optional]
|
||||
**Description** | **String** | the description for the entitlment | [optional]
|
||||
**DisplayName** | **String** | the display name of the identity | [optional]
|
||||
**Standalone** | **Boolean** | indicates whether the entitlement is standalone | [required]
|
||||
**Privileged** | **Boolean** | indicates whether the entitlement is privileged | [required]
|
||||
**CloudGoverned** | **Boolean** | indicates whether the entitlement is cloud governed | [required]
|
||||
|
||||
## Examples
|
||||
|
||||
|
||||
@@ -16,8 +16,8 @@ tags: ['SDK', 'Software Development Kit', 'AccessItemRef', 'V2024AccessItemRef']
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Id** | Pointer to **String** | ID of the access item to retrieve the recommendation for. | [optional]
|
||||
**Type** | Pointer to **Enum** [ "ENTITLEMENT", "ACCESS_PROFILE", "ROLE" ] | Access item's type. | [optional]
|
||||
**Id** | **String** | ID of the access item to retrieve the recommendation for. | [optional]
|
||||
**Type** | **Enum** [ "ENTITLEMENT", "ACCESS_PROFILE", "ROLE" ] | Access item's type. | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
|
||||
@@ -16,11 +16,11 @@ tags: ['SDK', 'Software Development Kit', 'AccessItemRemoved', 'V2024AccessItemR
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**AccessItem** | Pointer to [**AccessItemAssociatedAccessItem**](access-item-associated-access-item) | | [optional]
|
||||
**IdentityId** | Pointer to **String** | the identity id | [optional]
|
||||
**EventType** | Pointer to **String** | the event type | [optional]
|
||||
**Dt** | Pointer to **String** | the date of event | [optional]
|
||||
**GovernanceEvent** | Pointer to [**CorrelatedGovernanceEvent**](correlated-governance-event) | | [optional]
|
||||
**AccessItem** | [**AccessItemAssociatedAccessItem**](access-item-associated-access-item) | | [optional]
|
||||
**IdentityId** | **String** | the identity id | [optional]
|
||||
**EventType** | **String** | the event type | [optional]
|
||||
**Dt** | **String** | the date of event | [optional]
|
||||
**GovernanceEvent** | [**CorrelatedGovernanceEvent**](correlated-governance-event) | | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
|
||||
@@ -16,9 +16,9 @@ tags: ['SDK', 'Software Development Kit', 'AccessItemRequestedFor', 'V2024Access
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Type** | Pointer to **Enum** [ "IDENTITY" ] | DTO type of identity the access item is requested for. | [optional]
|
||||
**Id** | Pointer to **String** | ID of identity the access item is requested for. | [optional]
|
||||
**Name** | Pointer to **String** | Human-readable display name of identity the access item is requested for. | [optional]
|
||||
**Type** | **Enum** [ "IDENTITY" ] | DTO type of identity the access item is requested for. | [optional]
|
||||
**Id** | **String** | ID of identity the access item is requested for. | [optional]
|
||||
**Name** | **String** | Human-readable display name of identity the access item is requested for. | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
|
||||
@@ -16,9 +16,9 @@ tags: ['SDK', 'Software Development Kit', 'AccessItemRequestedForDto', 'V2024Acc
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Type** | Pointer to **Enum** [ "IDENTITY" ] | DTO type of identity the access item is requested for. | [optional]
|
||||
**Id** | Pointer to **String** | ID of identity the access item is requested for. | [optional]
|
||||
**Name** | Pointer to **String** | Human-readable display name of identity the access item is requested for. | [optional]
|
||||
**Type** | **Enum** [ "IDENTITY" ] | DTO type of identity the access item is requested for. | [optional]
|
||||
**Id** | **String** | ID of identity the access item is requested for. | [optional]
|
||||
**Name** | **String** | Human-readable display name of identity the access item is requested for. | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
|
||||
@@ -16,9 +16,9 @@ tags: ['SDK', 'Software Development Kit', 'AccessItemRequester', 'V2024AccessIte
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Type** | Pointer to **Enum** [ "IDENTITY" ] | Access item requester's DTO type. | [optional]
|
||||
**Id** | Pointer to **String** | Access item requester's identity ID. | [optional]
|
||||
**Name** | Pointer to **String** | Access item owner's human-readable display name. | [optional]
|
||||
**Type** | **Enum** [ "IDENTITY" ] | Access item requester's DTO type. | [optional]
|
||||
**Id** | **String** | Access item requester's identity ID. | [optional]
|
||||
**Name** | **String** | Access item owner's human-readable display name. | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
|
||||
@@ -16,9 +16,9 @@ tags: ['SDK', 'Software Development Kit', 'AccessItemRequesterDto', 'V2024Access
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**Type** | Pointer to **Enum** [ "IDENTITY" ] | Access item requester's DTO type. | [optional]
|
||||
**Id** | Pointer to **String** | Access item requester's identity ID. | [optional]
|
||||
**Name** | Pointer to **String** | Access item owner's human-readable display name. | [optional]
|
||||
**Type** | **Enum** [ "IDENTITY" ] | Access item requester's DTO type. | [optional]
|
||||
**Id** | **String** | Access item requester's identity ID. | [optional]
|
||||
**Name** | **String** | Access item owner's human-readable display name. | [optional]
|
||||
|
||||
## Examples
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user