Skip to content

Latest commit

 

History

History
39 lines (33 loc) · 1.31 KB

IdentityProvider.md

File metadata and controls

39 lines (33 loc) · 1.31 KB

IdentityProvider

Properties

Name Type Description Notes
Created System.DateTime [optional] [readonly]
Id String [optional] [readonly]
IssuerMode IssuerMode [optional]
LastUpdated System.DateTime [optional] [readonly]
Name String [optional]
Policy IdentityProviderPolicy [optional]
Protocol Protocol [optional]
Status LifecycleStatus [optional]
Type IdentityProviderType [optional]
Links System.Collections.Hashtable [optional] [readonly]

Examples

  • Prepare the resource
$IdentityProvider = Initialize-Okta.PowerShellIdentityProvider  -Created null `
 -Id null `
 -IssuerMode null `
 -LastUpdated null `
 -Name null `
 -Policy null `
 -Protocol null `
 -Status null `
 -Type null `
 -Links null
  • Convert the resource to JSON
$IdentityProvider | ConvertTo-JSON

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