add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
---
id: v2025-campaign-ended-campaign
title: CampaignEndedCampaign
pagination_label: CampaignEndedCampaign
sidebar_label: CampaignEndedCampaign
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'CampaignEndedCampaign', 'V2025CampaignEndedCampaign']
slug: /tools/sdk/powershell/v2025/models/campaign-ended-campaign
tags: ['SDK', 'Software Development Kit', 'CampaignEndedCampaign', 'V2025CampaignEndedCampaign']
---
# CampaignEndedCampaign
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | Unique ID for the campaign. | [required]
**Name** | **String** | The 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** | **System.DateTime** | The date and time the campaign was last modified. | [optional]
**Deadline** | **System.DateTime** | The date and time the campaign is due. | [required]
**Type** | **Enum** [ "MANAGER", "SOURCE_OWNER", "SEARCH", "ROLE_COMPOSITION" ] | The type of campaign. | [required]
**CampaignOwner** | [**CampaignActivatedCampaignCampaignOwner**](campaign-activated-campaign-campaign-owner) | | [required]
**Status** | **Enum** [ "COMPLETED" ] | The current status of the campaign. | [required]
## Examples
- Prepare the resource
```powershell
$CampaignEndedCampaign = Initialize-PSSailpoint.V2025CampaignEndedCampaign -Id 2c91808576f886190176f88cac5a0010 `
-Name Manager Access Campaign `
-Description Audit access for all employees. `
-Created 2021-02-16T03:04:45.815Z `
-Modified 2021-03-16T03:06:45.815Z `
-Deadline 2021-03-16T03:04:45.815Z `
-Type MANAGER `
-CampaignOwner null `
-Status COMPLETED
```
- Convert the resource to JSON
```powershell
$CampaignEndedCampaign | ConvertTo-JSON
```
[[Back to top]](#)