Skip to main content

CompletedApproval

Properties

NameTypeDescriptionNotes
IdStringThe approval id.[optional]
NameStringThe name of the approval.[optional]
CreatedSystem.DateTimeWhen the approval was created.[optional]
ModifiedSystem.DateTimeWhen the approval was modified last time.[optional]
RequestCreatedSystem.DateTimeWhen the access-request was created.[optional]
RequestTypeAccessRequestType[optional]
RequesterAccessItemRequesterDto[optional]
RequestedForRequestedItemStatusRequestedFor[optional]
ReviewedByCompletedApprovalReviewedBy[optional]
OwnerAccessItemOwnerDto[optional]
RequestedObjectRequestableObjectReference[optional]
RequesterCommentCommentDto1[optional]
ReviewerCommentCommentDtoThe approval's reviewer's comment.[optional]
PreviousReviewersComments[]CommentDto1The history of the previous reviewers comments.[optional]
ForwardHistory[]ApprovalForwardHistoryThe history of approval forward action.[optional]
CommentRequiredWhenRejectedBooleanWhen true the rejector has to provide comments when rejecting[optional] [default to $false]
StateCompletedApprovalState[optional]
RemoveDateSystem.DateTimeThe date the role or access profile or entitlement is no longer assigned to the specified identity.[optional]
RemoveDateUpdateRequestedBooleanIf true, then the request was to change the remove date or sunset date.[optional] [default to $false]
CurrentRemoveDateSystem.DateTimeThe remove date or sunset date that was assigned at the time of the request.[optional]
SodViolationContextSodViolationContextCheckCompleted1[optional]
PreApprovalTriggerResultCompletedApprovalPreApprovalTriggerResult[optional]
ClientMetadatamap[string]StringArbitrary key-value pairs provided during the request.[optional]

Examples

  • Prepare the resource
$CompletedApproval = Initialize-PSSailpoint.BetaCompletedApproval  -Id 2c938083633d259901633d25c68c00fa `
-Name Approval Name `
-Created 2017-07-11T18:45:37.098Z `
-Modified 2018-07-25T20:22:28.104Z `
-RequestCreated 2017-07-11T18:45:35.098Z `
-RequestType null `
-Requester null `
-RequestedFor null `
-ReviewedBy null `
-Owner null `
-RequestedObject null `
-RequesterComment null `
-ReviewerComment null `
-PreviousReviewersComments null `
-ForwardHistory null `
-CommentRequiredWhenRejected true `
-State null `
-RemoveDate 2020-07-11T00:00Z `
-RemoveDateUpdateRequested true `
-CurrentRemoveDate 2020-07-11T00:00Z `
-SodViolationContext null `
-PreApprovalTriggerResult null `
-ClientMetadata {requestedAppName=test-app, requestedAppId=2c91808f7892918f0178b78da4a305a1}
  • Convert the resource to JSON
$CompletedApproval | ConvertTo-JSON

[Back to top]