Skip to content

Latest commit

 

History

History
41 lines (35 loc) · 1.36 KB

AuthorizationServer.md

File metadata and controls

41 lines (35 loc) · 1.36 KB

AuthorizationServer

Properties

Name Type Description Notes
Audiences String[] [optional]
Created System.DateTime [optional] [readonly]
Credentials AuthorizationServerCredentials [optional]
Description String [optional]
Id String [optional] [readonly]
Issuer String [optional]
IssuerMode IssuerMode [optional]
LastUpdated System.DateTime [optional] [readonly]
Name String [optional]
Status LifecycleStatus [optional]
Links System.Collections.Hashtable [optional] [readonly]

Examples

  • Prepare the resource
$AuthorizationServer = Initialize-Okta.PowerShellAuthorizationServer  -Audiences null `
 -Created null `
 -Credentials null `
 -Description null `
 -Id null `
 -Issuer null `
 -IssuerMode null `
 -LastUpdated null `
 -Name null `
 -Status null `
 -Links null
  • Convert the resource to JSON
$AuthorizationServer | ConvertTo-JSON

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