Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 1.05 KB

GroupRule.md

File metadata and controls

35 lines (29 loc) · 1.05 KB

GroupRule

Properties

Name Type Description Notes
Actions GroupRuleAction [optional]
Conditions GroupRuleConditions [optional]
Created System.DateTime [optional] [readonly]
Id String [optional] [readonly]
LastUpdated System.DateTime [optional] [readonly]
Name String [optional]
Status GroupRuleStatus [optional]
Type String [optional]

Examples

  • Prepare the resource
$GroupRule = Initialize-Okta.PowerShellGroupRule  -Actions null `
 -Conditions null `
 -Created null `
 -Id null `
 -LastUpdated null `
 -Name null `
 -Status null `
 -Type null
  • Convert the resource to JSON
$GroupRule | ConvertTo-JSON

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