Skip to main content

RolePropagationOngoingResponseRolePropagationDetails

Properties

NameTypeDescriptionNotes
IdStringId of the Role Propagation process triggered.[optional]
StatusEnum [ "RUNNING", "COMPLETED" ]Status of the Role Propagation process.[optional]
ExecutionStageEnum [ "PENDING", "DATA_AGGREGATION_RUNNING", "LAUNCH_PROVISIONING", "SUCCEEDED", "FAILED", "TERMINATED" ]Current execution stage of the Role Propagation process.[optional]
LaunchedSystem.DateTimeTime when the Role Propagation process was launched.[optional]
LaunchedByRolePropagationStatusResponseLaunchedBy[optional]
TerminatedByRolePropagationStatusResponseTerminatedBy[optional]
CompletedSystem.DateTimeTime when the Role Propagation process was completed.[optional]
FailureReasonStringReason for failure if the Role Propagation process failed.[optional]
SkipRoleRefreshBooleanIndicates if the role refresh was skipped during the Role Propagation process.[optional] [default to $false]

Examples

  • Prepare the resource
$RolePropagationOngoingResponseRolePropagationDetails = Initialize-RolePropagationOngoingResponseRolePropagationDetails  -Id 47b9fb02-e12e-42ba-8bfe-1860d78c88eb `
-Status RUNNING `
-ExecutionStage PENDING `
-Launched 2023-10-01T12:00Z `
-LaunchedBy null `
-TerminatedBy null `
-Completed 2023-10-01T12:30Z `
-FailureReason Network error `
-SkipRoleRefresh false
  • Convert the resource to JSON
$RolePropagationOngoingResponseRolePropagationDetails | ConvertTo-JSON

[Back to top]