Skip to main content

Intelprivilegedaccessitemwire

Properties

NameTypeDescriptionNotes
PrivilegedBooleanTrue when this item is classified as privileged access for the identity.[required]
IdStringIdentifier of the privileged access item.[required]
TypeStringType of privileged access object.[required]
DisplayNameStringDisplay label for the privileged access item in administrative experiences.[optional]
NameStringTechnical name of the privileged access item.[optional]
SourceIntelprivilegedaccessitemwireSource[optional]
AttributeStringSource attribute name that carries the privileged value when applicable.[optional]
ValueStringPrivileged value on the source attribute when applicable.[optional]

Examples

  • Prepare the resource
$Intelprivilegedaccessitemwire = Initialize-Intelprivilegedaccessitemwire  -Privileged true `
-Id ent-1 `
-Type entitlement `
-DisplayName Example_Admin_Access `
-Name Example_Admin_Access `
-Source null `
-Attribute EXAMPLE_PERMISSION_GROUPS `
-Value Example_Admin_Access
  • Convert the resource to JSON
$Intelprivilegedaccessitemwire | ConvertTo-JSON

[Back to top]