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,51 @@
---
id: v2024-campaign-generated-campaign
title: CampaignGeneratedCampaign
pagination_label: CampaignGeneratedCampaign
sidebar_label: CampaignGeneratedCampaign
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'CampaignGeneratedCampaign']
slug: /tools/sdk/powershell/v2024/models/campaign-generated-campaign
tags: ['SDK', 'Software Development Kit', 'CampaignGeneratedCampaign']
---
# CampaignGeneratedCampaign
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | The unique ID of the campaign. | [required]
**Name** | **String** | Human friendly name of the campaign. | [required]
**Description** | **String** | Extended description of the campaign. | [required]
**Created** | **System.DateTime** | The date and time the campaign was created. | [required]
**Modified** | Pointer to **String** | The date and time the campaign was last modified. | [optional]
**Deadline** | Pointer to **String** | The date and time when the campaign must be finished by. | [optional]
**Type** | **Enum** [ "MANAGER", "SOURCE_OWNER", "SEARCH", "ROLE_COMPOSITION" ] | The type of campaign that was generated. | [required]
**CampaignOwner** | [**CampaignGeneratedCampaignCampaignOwner**](campaign-generated-campaign-campaign-owner) | | [required]
**Status** | **Enum** [ "STAGED", "ACTIVATING", "ACTIVE" ] | The current status of the campaign. | [required]
## Examples
- Prepare the resource
```powershell
$CampaignGeneratedCampaign = Initialize-PSSailpoint.V2024CampaignGeneratedCampaign -Id 2c91808576f886190176f88cac5a0010 `
-Name Manager Access Campaign `
-Description Audit access for all employees. `
-Created 2021-02-16T03:04:45.815Z `
-Modified 2021-02-17T03:04:45.815Z `
-Deadline 2021-02-18T03:04:45.815Z `
-Type MANAGER `
-CampaignOwner null `
-Status STAGED
```
- Convert the resource to JSON
```powershell
$CampaignGeneratedCampaign | ConvertTo-JSON
```
[[Back to top]](#)