Skip to main content

CampaignGeneratedCampaign

Properties

NameTypeDescriptionNotes
IdStringThe unique ID of the campaign.[required]
NameStringHuman friendly name of the campaign.[required]
DescriptionStringExtended description of the campaign.[required]
CreatedSystem.DateTimeThe date and time the campaign was created.[required]
ModifiedStringThe date and time the campaign was last modified.[optional]
DeadlineStringThe date and time when the campaign must be finished by.[optional]
TypeEnum [ "MANAGER", "SOURCE_OWNER", "SEARCH", "ROLE_COMPOSITION" ]The type of campaign that was generated.[required]
CampaignOwnerCampaignGeneratedCampaignCampaignOwner[required]
StatusEnum [ "STAGED", "ACTIVATING", "ACTIVE" ]The current status of the campaign.[required]

Examples

  • Prepare the resource
$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
$CampaignGeneratedCampaign | ConvertTo-JSON

[Back to top]