Skip to main content

DeployResponse

Properties

NameTypeDescriptionNotes
JobIdStringUnique id assigned to this job.[optional]
StatusEnum [ "NOT_STARTED", "IN_PROGRESS", "COMPLETE", "CANCELLED", "FAILED" ]Status of the job.[optional]
TypeEnum [ "CONFIG_DEPLOY_DRAFT" ]Type of the job, will always be CONFIG_DEPLOY_DRAFT for this type of job.[optional]
MessageStringMessage providing information about the outcome of the deploy process.[optional]
RequesterNameStringThe name of the user that initiated the deploy process.[optional]
FileExistsBooleanWhether or not a results file was created and stored for this deploy.[optional] [default to $true]
CreatedSystem.DateTimeThe time the job was started.[optional]
ModifiedSystem.DateTimeThe time of the last update to the job.[optional]
CompletedSystem.DateTimeThe time the job was completed.[optional]
DraftIdStringThe id of the draft that was used for this deploy.[optional]
DraftNameStringThe name of the draft that was used for this deploy.[optional]
CloudStorageStatusEnum [ "SYNCED", "NOT_SYNCED", "SYNC_FAILED" ]Whether this deploy results file has been transferred to a customer storage location.[optional]

Examples

  • Prepare the resource
$DeployResponse = Initialize-PSSailpoint.V2024DeployResponse  -JobId 07659d7d-2cce-47c0-9e49-185787ee565a `
-Status COMPLETE `
-Type CONFIG_DEPLOY_DRAFT `
-Message Deploy creation message `
-RequesterName requester.name `
-FileExists true `
-Created 2021-05-11T22:23:16Z `
-Modified 2021-05-11T22:23:16Z `
-Completed 2021-05-11T22:23:16Z `
-DraftId 07659d7d-2cce-47c0-9e49-185787ee565a `
-DraftName Draft Name `
-CloudStorageStatus SYNCED
  • Convert the resource to JSON
$DeployResponse | ConvertTo-JSON

[Back to top]