Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 1.05 KB

OAuth2Scope.md

File metadata and controls

35 lines (29 loc) · 1.05 KB

OAuth2Scope

Properties

Name Type Description Notes
Consent OAuth2ScopeConsentType [optional]
Default Boolean [optional]
Description String [optional]
DisplayName String [optional]
Id String [optional] [readonly]
MetadataPublish OAuth2ScopeMetadataPublish [optional]
Name String [optional]
System Boolean [optional]

Examples

  • Prepare the resource
$OAuth2Scope = Initialize-Okta.PowerShellOAuth2Scope  -Consent null `
 -Default null `
 -Description null `
 -DisplayName null `
 -Id null `
 -MetadataPublish null `
 -Name null `
 -System null
  • Convert the resource to JSON
$OAuth2Scope | ConvertTo-JSON

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