adding all powershell doc versions back

This commit is contained in:
darrell-thobe-sp
2025-01-28 09:59:02 -05:00
parent ca4e98517f
commit f71193e0d5
1823 changed files with 130757 additions and 0 deletions

View File

@@ -0,0 +1,45 @@
---
id: v2024-campaign-all-of-search-campaign-info
title: CampaignAllOfSearchCampaignInfo
pagination_label: CampaignAllOfSearchCampaignInfo
sidebar_label: CampaignAllOfSearchCampaignInfo
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'CampaignAllOfSearchCampaignInfo']
slug: /tools/sdk/powershell/v2024/models/campaign-all-of-search-campaign-info
tags: ['SDK', 'Software Development Kit', 'CampaignAllOfSearchCampaignInfo']
---
# CampaignAllOfSearchCampaignInfo
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | **Enum** [ "IDENTITY", "ACCESS" ] | The type of search campaign represented. | [required]
**Description** | Pointer to **String** | Describes this search campaign. Intended for storing the query used, and possibly the number of identities selected/available. | [optional]
**Reviewer** | Pointer to [**CampaignAllOfSearchCampaignInfoReviewer**](campaign-all-of-search-campaign-info-reviewer) | | [optional]
**Query** | Pointer to **String** | The scope for the campaign. The campaign will cover identities returned by the query and identities that have access items returned by the query. One of `query` or `identityIds` must be set. | [optional]
**IdentityIds** | Pointer to **[]String** | A direct list of identities to include in this campaign. One of `identityIds` or `query` must be set. | [optional]
**AccessConstraints** | Pointer to [**[]AccessConstraint**](access-constraint) | Further reduces the scope of the campaign by excluding identities (from `query` or `identityIds`) that do not have this access. | [optional]
## Examples
- Prepare the resource
```powershell
$CampaignAllOfSearchCampaignInfo = Initialize-PSSailpoint.V2024CampaignAllOfSearchCampaignInfo -Type ACCESS `
-Description Search Campaign description `
-Reviewer null `
-Query Search Campaign query description `
-IdentityIds [0fbe863c063c4c88a35fd7f17e8a3df5] `
-AccessConstraints null
```
- Convert the resource to JSON
```powershell
$CampaignAllOfSearchCampaignInfo | ConvertTo-JSON
```
[[Back to top]](#)