Skip to main content

Dataownermodel

Properties

NameTypeDescriptionNotes
IdentityIdStringThe unique identifier (UUID) of the identity assigned as the owner of the resource.[optional]
ResourceIdInt64The unique identifier of the resource owned by the identity.[optional]
FullPathStringThe full path to the resource within the system or application.[optional]

Examples

  • Prepare the resource
$Dataownermodel = Initialize-Dataownermodel  -IdentityId c1a2b3d4-e5f6-7890-abcd-1234567890ab `
-ResourceId 1001 `
-FullPath /departments/finance/shared
  • Convert the resource to JSON
$Dataownermodel | ConvertTo-JSON

[Back to top]