adding powershell sdk docs back

This commit is contained in:
darrell-thobe-sp
2025-01-28 13:29:29 -05:00
parent 248e4afe6b
commit c69a78b807
2822 changed files with 201703 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
---
id: beta-fullcampaign-all-of-role-composition-campaign-info
title: FullcampaignAllOfRoleCompositionCampaignInfo
pagination_label: FullcampaignAllOfRoleCompositionCampaignInfo
sidebar_label: FullcampaignAllOfRoleCompositionCampaignInfo
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'FullcampaignAllOfRoleCompositionCampaignInfo', 'BetaFullcampaignAllOfRoleCompositionCampaignInfo']
slug: /tools/sdk/powershell/beta/models/fullcampaign-all-of-role-composition-campaign-info
tags: ['SDK', 'Software Development Kit', 'FullcampaignAllOfRoleCompositionCampaignInfo', 'BetaFullcampaignAllOfRoleCompositionCampaignInfo']
---
# FullcampaignAllOfRoleCompositionCampaignInfo
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Reviewer** | Pointer to [**FullcampaignAllOfSearchCampaignInfoReviewer**](fullcampaign-all-of-search-campaign-info-reviewer) | | [optional]
**RoleIds** | Pointer to **[]String** | Optional list of roles to include in this campaign. Only one of `roleIds` and `query` may be set; if neither are set, all roles are included. | [optional]
**RemediatorRef** | [**FullcampaignAllOfRoleCompositionCampaignInfoRemediatorRef**](fullcampaign-all-of-role-composition-campaign-info-remediator-ref) | | [required]
**Query** | Pointer to **String** | Optional search query to scope this campaign to a set of roles. Only one of `roleIds` and `query` may be set; if neither are set, all roles are included. | [optional]
**Description** | Pointer to **String** | Describes this role composition campaign. Intended for storing the query used, and possibly the number of roles selected/available. | [optional]
## Examples
- Prepare the resource
```powershell
$FullcampaignAllOfRoleCompositionCampaignInfo = Initialize-PSSailpoint.BetaFullcampaignAllOfRoleCompositionCampaignInfo -Reviewer null `
-RoleIds [2c90ad2a70ace7d50170acf22ca90010] `
-RemediatorRef null `
-Query Search Query `
-Description Role Composition Description
```
- Convert the resource to JSON
```powershell
$FullcampaignAllOfRoleCompositionCampaignInfo | ConvertTo-JSON
```
[[Back to top]](#)