Model/SPListTemplateType.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 NoListTemplate=0, GenericList=100, DocumentLibrary=101, </br>Survey=102, Links=103, Announcements=104, </br>Contacts=105, Events=106, Tasks=107, </br>DiscussionBoard=108, PictureLibrary=109, DataSources=110, </br>WebTemplateCatalog=111, UserInformation=112, WebPartCatalog=113, </br>ListTemplateCatalog=114, XMLForm=115, MasterPageCatalog=116, </br>NoCodeWorkflows=117, WorkflowProcess=118, WebPageLibrary=119, </br>CustomGrid=120, SolutionCatalog=121, NoCodePublic=122, </br>ThemeCatalog=123, DesignCatalog=124, AppDataCatalog=125, </br>DataConnectionLibrary=130, WorkflowHistory=140, GanttTasks=150, </br>HelpLibrary=151, AccessRequest=160, TasksWithTimelineAndHierarchy=171, </br>MaintenanceLogs=175, Meetings=200, Agenda=201, </br>MeetingUser=202, Decision=204, MeetingObjective=207, </br>TextBox=210, ThingsToBring=211, HomePageLibrary=212, </br>Posts=301, Comments=302, Categories=303, </br>Facility=402, Whereabouts=403, CallTrack=404, </br>Circulation=405, Timecard=420, Holidays=421, </br>IMEDic=499, ExternalList=600, MySiteDocumentLibrary=700, </br>PagesLibrary=850, IssueTracking=1100, AdminTasks=1200, </br>HealthRules=1220, HealthReports=1221, DeveloperSiteDraftApps=1230, </br>InvalidType=-1 .OUTPUTS SPListTemplateType<PSCustomObject> #> function New-SPListTemplateType { [CmdletBinding()] Param ( ) Process { 'Creating object: Cloud.Governance.Client => SPListTemplateType' | Write-Debug $PSBoundParameters | Out-DebugParameter | Write-Debug $PSO = [PSCustomObject]@{ } return $PSO } } |