Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 1.2 KB

Group.md

File metadata and controls

37 lines (31 loc) · 1.2 KB

Group

Properties

Name Type Description Notes
Created System.DateTime [optional] [readonly]
Id String [optional] [readonly]
LastMembershipUpdated System.DateTime [optional] [readonly]
LastUpdated System.DateTime [optional] [readonly]
ObjectClass String[] [optional] [readonly]
VarProfile GroupProfile [optional]
Type GroupType [optional]
Embedded System.Collections.Hashtable [optional] [readonly]
Links GroupLinks [optional]

Examples

  • Prepare the resource
$Group = Initialize-Okta.PowerShellGroup  -Created null `
 -Id null `
 -LastMembershipUpdated null `
 -LastUpdated null `
 -ObjectClass null `
 -VarProfile null `
 -Type null `
 -Embedded null `
 -Links null
  • Convert the resource to JSON
$Group | ConvertTo-JSON

[Back to Model list] [Back to API list] [Back to README]