Merge branch 'main' into update/powerShellSDKDocs

This commit is contained in:
darrell-thobe-sp
2025-03-06 15:09:32 -05:00
3 changed files with 35 additions and 2 deletions

View File

@@ -329,6 +329,8 @@ Gets all Reassignment configuration for the current org.
### Parameters ### Parameters
Param Type | Name | Data Type | Required | Description Param Type | Name | Data Type | Required | Description
------------- | ------------- | ------------- | ------------- | ------------- ------------- | ------------- | ------------- | ------------- | -------------
Query | Limit | **Int32** | (optional) (default to 20) | Max number of results to return.
Query | Offset | **Int32** | (optional) | Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified.
### Return type ### Return type
[**ConfigurationResponse[]**](../models/configuration-response) [**ConfigurationResponse[]**](../models/configuration-response)
@@ -350,6 +352,8 @@ Code | Description | Data Type
### Example ### Example
```powershell ```powershell
$Limit = 20 # Int32 | Max number of results to return. (optional) (default to 20)
$Offset = 10 # Int32 | Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified. (optional)
# List Reassignment Configurations # List Reassignment Configurations
@@ -357,7 +361,7 @@ try {
Get-BetaReassignmentConfigurations Get-BetaReassignmentConfigurations
# Below is a request that includes all optional parameters # Below is a request that includes all optional parameters
# Get-BetaReassignmentConfigurations # Get-BetaReassignmentConfigurations -Limit $Limit -Offset $Offset
} catch { } catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-BetaReassignmentConfigurations" Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-BetaReassignmentConfigurations"
Write-Host $_.ErrorDetails Write-Host $_.ErrorDetails

View File

@@ -7,6 +7,31 @@ get:
Gets all Reassignment configuration for the current org. Gets all Reassignment configuration for the current org.
security: security:
- userAuth: [idn:reassignment-configuration:read] - userAuth: [idn:reassignment-configuration:read]
x-sailpoint-userLevels:
- ORG_ADMIN
parameters:
- in: query
name: limit
description: Max number of results to return.
required: false
schema:
type: integer
format: int32
minimum: 0
maximum: 20
default: 20
example: 20
- in: query
name: offset
description: >-
Offset into the full result set. Usually specified with *limit* to
paginate through the results. Defaults to 0 if not specified.
required: false
schema:
type: integer
format: int32
minimum: 0
example: 10
responses: responses:
'200': '200':
description: A list of Reassignment Configurations for an org description: A list of Reassignment Configurations for an org
@@ -37,6 +62,8 @@ post:
Creates a new Reassignment Configuration for the specified identity. Creates a new Reassignment Configuration for the specified identity.
security: security:
- userAuth: [idn:reassignment-configuration:create] - userAuth: [idn:reassignment-configuration:create]
x-sailpoint-userLevels:
- ORG_ADMIN
requestBody: requestBody:
required: true required: true
content: content:

View File

@@ -14122,6 +14122,8 @@
- lang: PowerShell - lang: PowerShell
label: SDK_tools/sdk/powershell/beta/methods/work-reassignment#list-reassignment-configurations label: SDK_tools/sdk/powershell/beta/methods/work-reassignment#list-reassignment-configurations
source: | source: |
$Limit = 20 # Int32 | Max number of results to return. (optional) (default to 20)
$Offset = 10 # Int32 | Offset into the full result set. Usually specified with *limit* to paginate through the results. Defaults to 0 if not specified. (optional)
# List Reassignment Configurations # List Reassignment Configurations
@@ -14129,7 +14131,7 @@
Get-BetaReassignmentConfigurations Get-BetaReassignmentConfigurations
# Below is a request that includes all optional parameters # Below is a request that includes all optional parameters
# Get-BetaReassignmentConfigurations # Get-BetaReassignmentConfigurations -Limit $Limit -Offset $Offset
} catch { } catch {
Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-BetaReassignmentConfigurations" Write-Host $_.Exception.Response.StatusCode.value__ "Exception occurred when calling Get-BetaReassignmentConfigurations"
Write-Host $_.ErrorDetails Write-Host $_.ErrorDetails