Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/CampaignActivatedCampaign.md
2025-02-03 22:09:17 +00:00

2.0 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-campaign-activated-campaign CampaignActivatedCampaign CampaignActivatedCampaign CampaignActivatedCampaign powershellsdk
powershell
PowerShell
sdk
CampaignActivatedCampaign
V2024CampaignActivatedCampaign
/tools/sdk/powershell/v2024/models/campaign-activated-campaign
SDK
Software Development Kit
CampaignActivatedCampaign
V2024CampaignActivatedCampaign

CampaignActivatedCampaign

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 [required]
Status Enum [ "ACTIVE" ] The current status of the campaign. [required]

Examples

  • Prepare the resource
$CampaignActivatedCampaign = Initialize-PSSailpoint.V2024CampaignActivatedCampaign  -Id 2c91808576f886190176f88cac5a0010 `
 -Name Manager Access Campaign `
 -Description Audit access for all employees. `
 -Created 2021-02-16T03:04:45.815Z `
 -Modified 2021-02-16T03:06:45.815Z `
 -Deadline 2021-03-16T03:04:45.815Z `
 -Type MANAGER `
 -CampaignOwner null `
 -Status ACTIVE
  • Convert the resource to JSON
$CampaignActivatedCampaign | ConvertTo-JSON

[Back to top]