Skip to main content

RolePropagationConfigResponse

Properties

NameTypeDescriptionNotes
EnabledBooleanIndicates if the Role Change Propagation process is enabled for the tenant[optional] [default to $false]
EnabledDateSystem.DateTimeThe time when Role Change Propagation Process was last enabled on the tenant[optional]
CreatedDateSystem.DateTimeThe time when Role Change Propagation Configuration was first created for the tenant[optional]
ModifiedDateSystem.DateTimeThe time when Role Change Propagation Config was updated on the tenant[optional]

Examples

  • Prepare the resource
$RolePropagationConfigResponse = Initialize-RolePropagationConfigResponse  -Enabled true `
-EnabledDate 2026-01-27T08:07:20Z `
-CreatedDate 2025-02-18T20:20:36Z `
-ModifiedDate 2026-01-27T08:07:20Z
  • Convert the resource to JSON
$RolePropagationConfigResponse | ConvertTo-JSON

[Back to top]