Skip to content

Latest commit

 

History

History
41 lines (35 loc) · 1.4 KB

OAuth2Claim.md

File metadata and controls

41 lines (35 loc) · 1.4 KB

OAuth2Claim

Properties

Name Type Description Notes
AlwaysIncludeInToken Boolean [optional]
ClaimType OAuth2ClaimType [optional]
Conditions OAuth2ClaimConditions [optional]
GroupFilterType OAuth2ClaimGroupFilterType [optional]
Id String [optional] [readonly]
Name String [optional]
Status LifecycleStatus [optional]
System Boolean [optional]
Value String [optional]
ValueType OAuth2ClaimValueType [optional]
Links System.Collections.Hashtable [optional] [readonly]

Examples

  • Prepare the resource
$OAuth2Claim = Initialize-Okta.PowerShellOAuth2Claim  -AlwaysIncludeInToken null `
 -ClaimType null `
 -Conditions null `
 -GroupFilterType null `
 -Id null `
 -Name null `
 -Status null `
 -System null `
 -Value null `
 -ValueType null `
 -Links null
  • Convert the resource to JSON
$OAuth2Claim | ConvertTo-JSON

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