Skip to content

Latest commit

 

History

History
51 lines (45 loc) · 1.95 KB

SamlApplication.md

File metadata and controls

51 lines (45 loc) · 1.95 KB

SamlApplication

Properties

Name Type Description Notes
Accessibility ApplicationAccessibility [optional]
Created System.DateTime [optional] [readonly]
Features String[] [optional]
Id String [optional] [readonly]
Label String [optional]
LastUpdated System.DateTime [optional] [readonly]
Licensing ApplicationLicensing [optional]
VarProfile System.Collections.Hashtable [optional]
SignOnMode ApplicationSignOnMode [optional]
Status ApplicationLifecycleStatus [optional]
Visibility ApplicationVisibility [optional]
Embedded System.Collections.Hashtable [optional] [readonly]
Links ApplicationLinks [optional]
Credentials ApplicationCredentials [optional]
Name String [optional]
Settings SamlApplicationSettings [optional]

Examples

  • Prepare the resource
$SamlApplication = Initialize-Okta.PowerShellSamlApplication  -Accessibility null `
 -Created null `
 -Features null `
 -Id null `
 -Label null `
 -LastUpdated null `
 -Licensing null `
 -VarProfile null `
 -SignOnMode null `
 -Status null `
 -Visibility null `
 -Embedded null `
 -Links null `
 -Credentials null `
 -Name null `
 -Settings null
  • Convert the resource to JSON
$SamlApplication | ConvertTo-JSON

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