Skip to main content

ProvisioningPolicyDtoV2

Properties

NameTypeDescriptionNotes
IdStringSystem-generated unique ID of the provisioning policy.[optional]
NameStringthe provisioning policy name[required]
SubtypeIdStringSubtype ID for which provisioning policy will be created when usageType is CREATE_MACHINE_ACCOUNT.[optional]
DescriptionStringthe description of the provisioning policy[optional]
UsageTypeUsageType[optional]
Fields[]FieldDetailsDtoV2[optional]

Examples

  • Prepare the resource
$ProvisioningPolicyDtoV2 = Initialize-ProvisioningPolicyDtoV2  -Id d7ae9ea3-507f-4d00-9d4f-b4464b344b88 `
-Name example provisioning policy for inactive identities `
-SubtypeId d7ae9ea3-507f-4d00-9d4f-b4464b344b88 `
-Description this provisioning policy creates access based on an identity going inactive `
-UsageType null `
-Fields null
  • Convert the resource to JSON
$ProvisioningPolicyDtoV2 | ConvertTo-JSON

[Back to top]