Skip to content

Latest commit

 

History

History
60 lines (41 loc) · 1.37 KB

File metadata and controls

60 lines (41 loc) · 1.37 KB

privilege

List all privileges available in the organisation. Privileges can be assigned to roles.

Synopsis

iics privilege list [flags]

Subcommands

Subcommand Description
list List all privileges

privilege list

Flags

No command-specific flags. All global flags apply.

Output columns

Column Description
id Privilege ID
name Privilege name
service Service the privilege applies to
description Description of what the privilege grants

Examples

# List all privileges in table format
iics privilege list

# List as JSON for scripting
iics privilege list --output json

# Find privileges for a specific service
iics privilege list --output json | jq '.[] | select(.service == "DataIntegration")'
# List all privileges in table format
iics privilege list

# List as JSON for scripting
iics privilege list --output json

# Find privileges for a specific service
$privileges = iics privilege list --output json | ConvertFrom-Json
$privileges | Where-Object { $_.service -eq "DataIntegration" }

See also