Model/AuthenticationType.ps1
# # Cloud Governance Api # No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # Version: 1.0 # Generated by OpenAPI Generator: https://openapi-generator.tech # <# .SYNOPSIS No summary available. .DESCRIPTION LocalSystem=0, WindowsIntegration=1, ADIntegration=2, </br>ADFSIntegration=3, Federation=4, SharePointOnline=6, </br>SalesForce=7, Yammer=8, AzureAD=9, </br>Sandbox=10, SharePoint=11, Exchange=12, </br> .OUTPUTS AuthenticationType<PSCustomObject> #> function New-AuthenticationType { [CmdletBinding()] Param ( ) Process { 'Creating object: Cloud.Governance.Client => AuthenticationType' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ } return $PSO } } |