diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Add-FileToGraphOneNote.md b/Microsoft.Graph.PlusPlus.Docs/docs/Add-FileToGraphOneNote.md new file mode 100644 index 0000000..f0ea344 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Add-FileToGraphOneNote.md @@ -0,0 +1,214 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Add-FileToGraphOneNote + +## SYNOPSIS +Adds a file to a new OneNote page + +## SYNTAX + +``` +Add-FileToGraphOneNote [-Path] [[-Title] ] [[-Section] ] [[-PreContent] ] + [[-PostContent] ] [[-MimeType] ] [-PassThru] [-Force] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +Adds a file to a new one page. +If the file is an image, the it will be rendered on the page +Other files will be embedded. +OneNote can render some types (e.g. +PDF) +This builds very simple HTML, which can be updated later. +For more sophistaced pages use Add-GraphOneNotePage - with -HTMLPage as a byte array and +specify a contentType of "multipart/form-data; boundary={MARKER}" + +## EXAMPLES + +### EXAMPLE 1 +``` +>Add-FileToGraphOneNote -Path .\Modules\MsftGraph\Examples\upload.jpg -Title "Demo" -Section $notebook.sections[0] ` + -PreContent "

QR Code for the GIT repo

" -PostContent "Share and Enjoy" -PassThru +``` + +$Notebook holds a notebook object with one or more section(s). +The command adds a page in the first section, +titles it "Demo", and puts upload.jpg on it with formatted text before and after the image. + +## PARAMETERS + +### -Path +The file to upload to OneNote + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Title +Title for the page. +If not specified the file name will be used. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Section +Section to post to - this can be set by Set-GraphOneNoteHome + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PreContent +Specifies text to add before the embedded object. +By default, there is no text in that position. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: 4 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PostContent +Specifies text to add after the embedded object. +By default, there is no text in that position. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: 5 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MimeType +A recognized mime type for the embedded file. +on Windows the command will try to determine this from the file extension. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 6 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Normally the page containing the file is added 'silently'. +If passthru is specified, an object describing the new page will be returned. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: PT + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If specified the command will not pause for conformation, this is the default unless $ConfirmPreference is modified, + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### A file to be sent to OneNote +## OUTPUTS + +## NOTES + +## RELATED LINKS + +[Add-GraphOneNotePage.]() + diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphEvent.md b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphEvent.md new file mode 100644 index 0000000..6c0fe2e --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphEvent.md @@ -0,0 +1,366 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Add-GraphEvent + +## SYNOPSIS +Adds an event to a calendar + +## SYNTAX + +### User +``` +Add-GraphEvent [-User ] [-Calendar ] [-Subject ] -Start [-End ] + [-Timezone ] [-AllDay] [-Location ] [-Attendees ] [-ShowAs ] [-ReminderOn] + [-ReminderTime ] [-Body ] [-BodyType ] [-Importance ] [-Sensitivity ] + [-Recurrence ] [-PassThru] [] +``` + +### Group +``` +Add-GraphEvent -Group [-Subject ] -Start [-End ] [-Timezone ] + [-AllDay] [-Location ] [-Attendees ] [-ShowAs ] [-ReminderOn] [-ReminderTime ] + [-Body ] [-BodyType ] [-Importance ] [-Sensitivity ] [-Recurrence ] + [-PassThru] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +>$rec = New-RecurrencePattern -Weekly Friday -EndDate 2019-04-01 +>Add-GraphEvent -Start "2019-01-23 15:30:00" -subject "Enter time sheet" -Recurrence $rec +Creates a recurring event. The first sets up a weekly schedule for Fridays until April 1st. +The second sets the time (if no end is given, it is set for 30 minutes after the start), +the subject, and the recurrence pattern +``` + +### EXAMPLE 2 +``` +>$Chris = New-Attendee -Mail Chris@Contoso.com +>Add-GraphEvent -subject "Requirements for Basingstoke project" -Start "2019-02-02 10:00" -End "2019-02-02 11:00" -Attendees $chris +Creates a meeting with a second person. The first command creates an attendee - by default the attendee is 'required' +The second creates the appointment, adding the attendee and sending a meeting request. +``` + +### EXAMPLE 3 +``` +>$Chris = New-Attendee -Mail Chris@Contoso.com -display 'Chris Cross' optional +>$Phil = New-Attendee -Mail Phil@Contoso.com +>Add-GraphEvent -subject "Phase II planning" -Start "2019-02-02 14:00" -End "2019-02-02 14:30" -Attendees $chris,$phil +Creates a meeting with a second additonal attendee. The first command creates an optional attendee with a display name +the second creates an attendee with no displayed name and the default 'required' type +Finally the meeting is created. +``` + +## PARAMETERS + +### -User +UserID as a guid or User Principal name, whose calendar should be fetched If not specified defaults to "me" + +```yaml +Type: String +Parameter Sets: User +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Calendar +A sepecific calendar belonging to a user. + +```yaml +Type: Object +Parameter Sets: User +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -Group +Group ID or a Group object with an ID whose calendar should be fetched + +```yaml +Type: Object +Parameter Sets: Group +Aliases: Team + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Subject +Subject for the appointment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Start +Start time - if -Timezone is not used this will be the in local machine's times zone + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -End +End Time - if -Timezone is not used this will be the in local machine's times zone + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Timezone +Timezone - by default the local machine's time zone is used + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: $(tzutil.exe /g) +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllDay +Creates the event as all day. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +Location for the appointment + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Attendees +People or resources involved in the event. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ShowAs +Sets the task to appear as Free, Tenatative, Off-of-facility etc + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ReminderOn +Unless -Reminder on is specified no reminder will sound before the meeting + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ReminderTime +Time in Minutes, before the start time, that the reminder should appear. +It will be set even if -ReminderOn is omitted + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Body +Body text - if using HTML set the body type to HTML + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BodyType +Type of text used for the body, Text or HTML + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Text +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Importance +Priority setting , high , normal or low. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Sensitivity +Privacy setting - normal or Private + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Recurrence +Recurrence pattern build with New-recurrencePattern + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +for some of things still to do see https://docs.microsoft.com/en-us/graph/api/event-update?view=graph-rest-beta +and https://docs.microsoft.com/en-us/graph/api/user-post-events?view=graph-rest-beta +Attendees is one. +link says this also sends the invite + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: PT + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS + +[Get-GraphEvent]() + diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphGroupMember.md b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphGroupMember.md new file mode 100644 index 0000000..eea0336 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphGroupMember.md @@ -0,0 +1,142 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Add-GraphGroupMember + +## SYNOPSIS +Adds a user (or group) to a group/team as either a member or owner. + +## SYNTAX + +``` +Add-GraphGroupMember [-Group] [-Member] [-AsOwner] [-Force] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +Because the group may be a team the this command has alias of Add-GraphTeamMember. +it requires consent to use the Group.ReadWrite.All, Directory.ReadWrite.All, or +Directory.AccessAsUser.All scope. + +## EXAMPLES + +### EXAMPLE 1 +``` +$newGroup = New-GraphGroup -Name Test101 +>Get-GraphUserList -Filter "Department eq 'Accounts'" | Add-GraphGroupMember -Group $newGroup +Creates a new group; then gets a list of users and adds them to the group. +``` + +### EXAMPLE 2 +``` +Add-GraphTeamMember -Team $Newteam -Member alex@contoso.com -AsOwner +Adds an owner to a team, using aliases for both the command and the group parameter +``` + +## PARAMETERS + +### -Group +The group / team either as an ID or a group/team object with an IDn + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: Team + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Member +The user or nested-group to add, either as a UPN or ID or as a object with an ID + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -AsOwner +If specified the user will be added as an owner, otherwise they will be a standard member + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If specified group member will be added without prompting + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphGroupThread.md b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphGroupThread.md new file mode 100644 index 0000000..6d7eddf --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphGroupThread.md @@ -0,0 +1,173 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Add-GraphGroupThread + +## SYNOPSIS +Starts a new thread in a group in outlook. + +## SYNTAX + +``` +Add-GraphGroupThread [-Group] [-ThreadTopic] [-Content] [-ContentType ] + [-Force] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Requires consent to use the Group.ReadWrite.All scope + +## EXAMPLES + +### EXAMPLE 1 +``` +>$G = Get-GraphGroup consultants +>Add-GraphGroupThread -Group $G -Subject "Running tests.." -Content "We will be running a full test pass this afternoon" +Gets a group by name and creates a new thread with a message using a plain text body. +``` + +### EXAMPLE 2 +``` +$thread = Add-GraphGroupThread -passthru -Group $G -Subject "Ruuning tests.." -ContentType HTML -Content "Drum-Roll...A full test pass is running... Watch this space" +Uses the group from the previous example, and creates a thread with an HTML body, and keeps a reference to it. +``` + +## PARAMETERS + +### -Group +The group where the thread will be added + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: Team + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ThreadTopic +The subject line for the thread + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: Subject + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Content +The Message body - text by default, specify -contentType if using HTML + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ContentType +The content type, (Text by default) or HTML + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Text +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +if Specified the message will be created without prompting; this is the default, unless $confirm preference has been changed + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +if Specified an object containing the Thread ID will be returned + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS + +[Send-GraphGroupReply]() + diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphListItem.md b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphListItem.md new file mode 100644 index 0000000..695d735 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphListItem.md @@ -0,0 +1,161 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Add-GraphListItem + +## SYNOPSIS +Adds an item to a SharePoint List + +## SYNTAX + +``` +Add-GraphListItem [-List] [-Fields] [-Site ] [-Passthru] [-Force] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +This posts a new item to https://graph.microsoft.com/v1.0/sites/{id}/lists{id}/items +which requires consent to use the Sites.ReadWrite.All scope +Posting to a list is quite basic - it is a set of Name-ValuePairs and +FIELD NAMES ARE CASE SENSITIVE. +If you get a 400 error from the server the +first thing to check is the names of the fields. +It does not appear to be possible to +post certain types of field - lookup and Person/Group being the major issues. +The command will try to post what it is given, but it makes no attempt at validating it! + +## EXAMPLES + +### EXAMPLE 1 +``` +>$myteamsite = Get-GraphTeam -Site |select -first 1 +>$problemslist = $myteamsite.lists.where({$_.name -like "problem*"}) +>Add-GraphListItem -List $problemslist -Fields @{Title='Demo Item';IssueStatus='Active';Priority='(2) Normal';} +``` + +The first command gets a team site which has a list named "Problem reports" +The second line gets that list +The third creates a list item with Title, IssueStatus and Priority fields. + +## PARAMETERS + +### -List +The list to add to; this can be an ID, or list object with an ID, and a site ID + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Fields +The item property values in a hash table as @{col1=$value1; col2='Value2'; col3=33} + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Site +If the list parameter does not contain a .SiteID property allows the site to specified as an ID or object + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Passthru +If specified the new item will be returned, otherwise it is created silently. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: PT + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If specified the item will be added without prompting for confirmation (this is the default unless confirm preference is changed) + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphOneNotePage.md b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphOneNotePage.md new file mode 100644 index 0000000..dc67e26 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphOneNotePage.md @@ -0,0 +1,163 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Add-GraphOneNotePage + +## SYNOPSIS +Adds a page (in HTML format) to an existing OneNote Section + +## SYNTAX + +``` +Add-GraphOneNotePage [-Section] [-HTMLPage] [[-ContentType] ] [-Force] [-PassThru] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This posts to https://graph.microsoft.com/v1.0 + /users/{id}/onenote/sections/{id}/pages +or /groups/{id}/onenote/sections/{id}/pages +or /sites/{id}/onenote/sections/{id}/pages +which requires consent to use the Notes.Create or Notes.ReadWrite scope or better. +To recognise the title the page needs to be in HTML with a head tag like this +\ + \ + \A page\ + \ + \ + \ + \Here's Some text\ + \ +\ + +## EXAMPLES + +### EXAMPLE 1 +``` +Add-GraphOneNotePage -Section $section -HTMLPage 'Test Page

Sample Paragraph

' +With $Section already defined this adds a simple page, with a title and a short body. +``` + +## PARAMETERS + +### -Section +The section either as a URL or or as section object, which contains a self URL or a pages URL this can be set by Set-GraphOneNoteHome + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HTMLPage +The content of the page formatted as HTML + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ContentType +By default this is "text/html" - but if the content is multipart use "multipart/form-data; boundary={MARKER}" + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: Text/html +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If specified, the command will run without asking for confirmation; this is the default unless Confirm Preference has been set + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Normally the page is added 'silently'. +If passthru is specified, an object describing the new page will be returned. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: PT + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphOneNoteTab.md b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphOneNoteTab.md new file mode 100644 index 0000000..edde68f --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphOneNoteTab.md @@ -0,0 +1,160 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Add-GraphOneNoteTab + +## SYNOPSIS +Adds a tab in a Teams channel for a OneNote section or Notebook + +## SYNTAX + +``` +Add-GraphOneNoteTab [-Notebook] [-Channel] [-Team ] [-TabLabel ] + [-Force ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This posts to https://graph.microsoft.com/v1.0/teams/{id}/channels/{id}/tabs +which requires consent to use the Group.ReadWrite.All scope. +The Notebook Parameter has an alias of 'Section' and will accept either +a OneNote Notebook object (or its 'Self' URI - which requires the tab name to be +set explicitly) or a Section object. +If the notebook is specified it opens at the +first section. + +## EXAMPLES + +### EXAMPLE 1 +``` +> $section = Get-GraphTeam -ByName accounts -Notebooks | Select-Object -ExpandProperty sections | where displayname -like "FY-19*" +> $channel = Get-GraphTeam -ByName accounts -Channels -ChannelName 'year-end' +> Add-GraphOneNoteTab $section $channel -TabLabel "FY-19 Notes" +``` + +The first command gets the Notebook for the Accounts team and finds the "FY-19 Year End" section +The second command gets the channels for the same team and finds the "Year end" channel +The Third command creates a tab in the channel named 'FY-19 Notes' which opens the team notebook +at its 'FY-19 Year End' section. + +## PARAMETERS + +### -Notebook +The Notebook or Section to associate with the tab + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: Section + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Channel +An ID or Channel object which may contain the team ID; the tab will be created in this channel + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Team +A team ID, or a team object if the team can't be found from the the channel + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TabLabel +The label for the tab, if left blank the name of the Notebook or Section will be sued + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If Specified the tab will be added without pausing for confirmation, this is the default unless $ConfirmPreference has been set. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphPlanBucket.md b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphPlanBucket.md new file mode 100644 index 0000000..fea8f2c --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphPlanBucket.md @@ -0,0 +1,117 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Add-GraphPlanBucket + +## SYNOPSIS +Creates a task-bucket in an exsiting plan + +## SYNTAX + +``` +Add-GraphPlanBucket [-Plan] [-Name] [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +New-GraphPlanBucket -Plan $NewTeamplan -Name 'Backlog', 'To-Do','Not Doing' +Creates 3 buckets in the same plan. +``` + +## PARAMETERS + +### -Plan +The ID of the Plan or a Plan object with an ID property. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The Name of the new bucket. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If Specified the bucket will be added without confirmation + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphPlanTask.md b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphPlanTask.md new file mode 100644 index 0000000..dba2629 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphPlanTask.md @@ -0,0 +1,275 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Add-GraphPlanTask + +## SYNOPSIS +Adds a task to an exsiting plan + +## SYNTAX + +``` +Add-GraphPlanTask [-Plan] -Title [-Description ] [-AssignTo ] + [-Bucket ] [-StartDate ] [-DueDate ] [-PercentComplete ] + [-CategoryNumbers ] [-Checklist ] [-Links ] [-Force] [-Passthru] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +Multiple items may be piped in, to be added to the same plan. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Plan +The ID of the Plan or a Plan object with an ID property. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Title +The title of the new task. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Description +Longer description of the task + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -AssignTo +User(s) to assign the task to either as a UPN name (bob@contoso.com) or ID + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Bucket +Bucket to place the task in - it must exist already + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -StartDate +Start date for the task + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DueDate +Date by when task should be completed + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PercentComplete +Percentage complete (note the planner app doesn't show percentages, only "Not started", "In Progress", and "Complete") + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -CategoryNumbers +Category tabs by number (1=Magenta, 2=Red, 3=Orange, 4=Green, 5=Teal, 6=Cyan) + \[ValidateRange(1,6)\] #doesn't work if piped and values are null. + +```yaml +Type: Int32[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Checklist +A single item, or an array of items to display as a list with check boxes on the task + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Links +HyperLinks (a.k.a. +references): a single item, a string with items seperated with ';' an array of strings or as a hash table of URI=Label. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Force +if specified the task will be added without confirmation. +(This is the default unless $confirmPreference has been changed) + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Passthru +By default, the task is added without returning a result. +-Passthru specifies the new task should be returned. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: PT + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphPlannerTab.md b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphPlannerTab.md new file mode 100644 index 0000000..e0da376 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphPlannerTab.md @@ -0,0 +1,153 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Add-GraphPlannerTab + +## SYNOPSIS +Adds a planner tab to a team-channel for a pre-existing plan + +## SYNTAX + +``` +Add-GraphPlannerTab [-Plan] [-Channel] [-Team ] [-TabLabel ] + [-Force ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This posts to https://graph.microsoft.com/v1.0/teams/{id}/channels/{id}/tabs +which requires consent to use the Group.ReadWrite.All scope. + +## EXAMPLES + +### EXAMPLE 1 +``` +>$channel = Get-GraphTeam -ByName accounts -Channels -ChannelName 'year-end' +>$plan = Get-GraphTeam -ByName accounts -Plans | where title -Like "year end*" +>Add-GraphPlannerTab -Plan $plan -Channel $channel -TabLabel "Planner" +The first line gets the 'year-end' channel for the accounts team +The second gets a plan with tile which matches 'year end' +and the third creates a tab labelled 'Planner' in the channel for that plan. +``` + +## PARAMETERS + +### -Plan +An ID or Plan object for a plan within the team + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Channel +An ID or Channel object for a channel (which may contain the team ID) + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Team +A team ID, or a team object, if not specified as part of the channel + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TabLabel +The label for the tab. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If Specified the tab will be added without confirming + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphSharePointTab.md b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphSharePointTab.md new file mode 100644 index 0000000..4960bb3 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphSharePointTab.md @@ -0,0 +1,164 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Add-GraphSharePointTab + +## SYNOPSIS +Adds a planner tab to a team-channel for sharepoint deurl + +## SYNTAX + +``` +Add-GraphSharePointTab [-WebUrl] [-TabLabel] [[-Template] ] [-Channel] + [-Team ] [-Force ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This posts to https://graph.microsoft.com/v1.0/teams/{id}/channels/{id}/tabs +which requires consent to use the Group.ReadWrite.All scope. + +## EXAMPLES + +### EXAMPLE 1 +``` + +``` + +## PARAMETERS + +### -WebUrl +An ID or Plan object for a plan within the team + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -TabLabel +The label for the tab by default the displayname for of the list + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: DisplayName + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Template +The label for the tab. +Either a genericList (default) or a documentLibrary + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: GenericList +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Channel +An ID or Channel object for a channel (which may contain the team ID) + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 4 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Team +A team ID, or a team object, if not specified as part of the channel + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If Specified the tab will be added without confirming + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphWikiTab.md b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphWikiTab.md new file mode 100644 index 0000000..ff9589b --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Add-GraphWikiTab.md @@ -0,0 +1,135 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Add-GraphWikiTab + +## SYNOPSIS +Adds a wiki tab to a channel in teams + +## SYNTAX + +``` +Add-GraphWikiTab [-Team ] [-Channel] [-TabLabel ] [-Force] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +New-GraphWikiTab -Channel $Channel -TabLabel Wiki +Channel contains an object representing a channel in teams, +this adds a Wiki to it. The Wiki will need to be initialized +when the tab is first opened +``` + +## PARAMETERS + +### -Team +A team ID, or a team object if the team can't be found from the the channel + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Channel +An ID or Channel object which may contain the team ID + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -TabLabel +The label for the tab + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Wiki +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If specified the tab will be added without prompting for confirmation + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Connect-Graph.md b/Microsoft.Graph.PlusPlus.Docs/docs/Connect-Graph.md new file mode 100644 index 0000000..b7b43d4 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Connect-Graph.md @@ -0,0 +1,110 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Connect-Graph + +## SYNOPSIS +Starts a session with Microsoft Graph + +## SYNTAX + +### UserParameterSet (Default) +``` +Connect-Graph [[-Scopes] ] [-ForceRefresh] [-Quiet] [] +``` + +### AccessTokenParameterSet +``` +Connect-Graph [-AccessToken] [-ForceRefresh] [-Quiet] [] +``` + +## DESCRIPTION +This commands is a wrapper for Connect-MgGraph it extends the authentication methods available +and caches information needed by other commands. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Scopes +An array of delegated permissions to consent to. + +```yaml +Type: String[] +Parameter Sets: UserParameterSet +Aliases: + +Required: False +Position: 2 +Default value: $Script:DefaultGraphScopes +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AccessToken +Specifies a bearer token for Microsoft Graph service. +Access tokens do timeout and you'll have to handle their refresh. + +```yaml +Type: String +Parameter Sets: AccessTokenParameterSet +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ForceRefresh +Forces the command to get a new access token silently. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Quiet +Suppress the welcome messages + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/ConvertTo-GraphDateTimeTimeZone.md b/Microsoft.Graph.PlusPlus.Docs/docs/ConvertTo-GraphDateTimeTimeZone.md new file mode 100644 index 0000000..e0dcd1c --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/ConvertTo-GraphDateTimeTimeZone.md @@ -0,0 +1,54 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# ConvertTo-GraphDateTimeTimeZone + +## SYNOPSIS +Converts a datetime object to dateTimeTimezone object with the current time zone. + +## SYNTAX + +``` +ConvertTo-GraphDateTimeTimeZone [[-d] ] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -d +{{ Fill d Description }} + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Copy-FromGraphFolder.md b/Microsoft.Graph.PlusPlus.Docs/docs/Copy-FromGraphFolder.md new file mode 100644 index 0000000..f2d88cd --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Copy-FromGraphFolder.md @@ -0,0 +1,155 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Copy-FromGraphFolder + +## SYNOPSIS +Copies files from OneDrive to the local computer + +## SYNTAX + +``` +Copy-FromGraphFolder [-Path] [-Drive ] [[-Destination] ] [-NoClobber] [-Passthru] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +Copy-FromGraphFolder -Path 'root:/Scripts/Type-Info.xlsx' -Destination c:\temp +Copies a single file from a "scripts" directory on the user's drive to c:\temp. +``` + +### EXAMPLE 2 +``` +>$drive = Get-GraphTeam -ByName Consultants -Drive +>Get-GraphDrive -Drive $drive -FolderPath 'root:/Documents/Project Firebird/Planning' | Copy-FromGraphFolder -Destination c:\temp +Gets all the files in a folder on a teams drive and copies them to C:\Temp. +``` + +## PARAMETERS + +### -Path +The path to the file on one drive + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Drive +The drive, by default the current user's OneDrive. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Me/Drive +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Destination +The destination on the local computer + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: $pwd +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoClobber +If specified prevents an existing file from being overwritten. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Passthru +If Specified the destination file will be returned (similar to Copy-Item) + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: PT + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Copy-GraphOneNotePage.md b/Microsoft.Graph.PlusPlus.Docs/docs/Copy-GraphOneNotePage.md new file mode 100644 index 0000000..971bf4f --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Copy-GraphOneNotePage.md @@ -0,0 +1,103 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Copy-GraphOneNotePage + +## SYNOPSIS +Copies a one note page to a different section in the same notebook. + +## SYNTAX + +``` +Copy-GraphOneNotePage [-Page] [-DestinationSection] [-GroupID ] [-Wait] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Page +The page to be copied. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -DestinationSection +The section the it will be copied to + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GroupID +The group which owns the notebook if required + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Wait +{{ Fill Wait Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Copy-ToGraphFolder.md b/Microsoft.Graph.PlusPlus.Docs/docs/Copy-ToGraphFolder.md new file mode 100644 index 0000000..84cd25d --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Copy-ToGraphFolder.md @@ -0,0 +1,167 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Copy-ToGraphFolder + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Copy-ToGraphFolder [-Path] [-Destination] [[-Drive] ] [[-ContentType] ] + [[-ConflictBehavior] ] [-ForceResumable] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ConflictBehavior +{{ Fill ConflictBehavior Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: +Accepted values: replace, fail, rename + +Required: False +Position: 4 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ContentType +{{ Fill ContentType Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Destination +{{ Fill Destination Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Drive +{{ Fill Drive Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ForceResumable +{{ Fill ForceResumable Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Path +{{ Fill Path Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.Object +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Expand-GraphConditionalAccessPolicy.md b/Microsoft.Graph.PlusPlus.Docs/docs/Expand-GraphConditionalAccessPolicy.md new file mode 100644 index 0000000..a0a980c --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Expand-GraphConditionalAccessPolicy.md @@ -0,0 +1,59 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Expand-GraphConditionalAccessPolicy + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Expand-GraphConditionalAccessPolicy [[-Policy] ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Policy +{{ Fill Policy Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.Object +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Export-GraphGroupMember.md b/Microsoft.Graph.PlusPlus.Docs/docs/Export-GraphGroupMember.md new file mode 100644 index 0000000..c974f0c --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Export-GraphGroupMember.md @@ -0,0 +1,93 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Export-GraphGroupMember + +## SYNOPSIS +Exports a list of group memberships to a CSV file + +## SYNTAX + +``` +Export-GraphGroupMember [-Group] [-Path ] [-OrderByGroup] [] +``` + +## DESCRIPTION +Takes a list of groups (as a parameter or from the pipeline) and creates four columns +* Action is either Add or Remove - on export it will always be add +* MemberOf the name of ONE group the user should be added to or removed from +* UserPrincipalName the name which will be used for add/remove operations. +* Displayname just to make things easier to read, especially if UPNs are opaque +If a file is specified it will be treated as CSV file for export, +otherwise the objects are output + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Group +One or more group(s) to export + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Path +Destination for CSV output + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OrderByGroup +If specified , output will be in Group name order (default is User name.) + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Export-GraphUser.md b/Microsoft.Graph.PlusPlus.Docs/docs/Export-GraphUser.md new file mode 100644 index 0000000..d837a09 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Export-GraphUser.md @@ -0,0 +1,119 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Export-GraphUser + +## SYNOPSIS +Exports a list of users to a CSV file + +## SYNTAX + +``` +Export-GraphUser [-Path] [-Filter ] [-ListSeparator ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Path +Destination for CSV output + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Filter +Filter clause for the query for example "department eq 'accounts'" + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ListSeparator +String to insert between parts of multi-part items. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: ; +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Export-GraphWorkSheet.md b/Microsoft.Graph.PlusPlus.Docs/docs/Export-GraphWorkSheet.md new file mode 100644 index 0000000..875dd1f --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Export-GraphWorkSheet.md @@ -0,0 +1,228 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Export-GraphWorkSheet + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ItemNameRange +``` +Export-GraphWorkSheet [-Drive ] [-ItemPath] [[-SheetName] ] [-InputObject ] + [-NoHeader] -RangeName [-dateFormat ] [-Show] [] +``` + +### ItemNameTable +``` +Export-GraphWorkSheet [-Drive ] [-ItemPath] [[-SheetName] ] [-InputObject ] + [-NoHeader] [-AsTable] [-dateFormat ] [-Show] [] +``` + +### ItemName +``` +Export-GraphWorkSheet [-Drive ] [-ItemPath] [[-SheetName] ] [-InputObject ] + [-NoHeader] [-dateFormat ] [-Show] [] +``` + +### ItemIDRange +``` +Export-GraphWorkSheet [-Drive ] -ItemID [[-SheetName] ] [-InputObject ] + [-NoHeader] -RangeName [-dateFormat ] [-Show] [] +``` + +### ItemIDTable +``` +Export-GraphWorkSheet [-Drive ] -ItemID [[-SheetName] ] [-InputObject ] + [-NoHeader] [-AsTable] [-dateFormat ] [-Show] [] +``` + +### ItemID +``` +Export-GraphWorkSheet [-Drive ] -ItemID [[-SheetName] ] [-InputObject ] + [-NoHeader] [-dateFormat ] [-Show] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AsTable +{{ Fill AsTable Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: ItemNameTable, ItemIDTable +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Drive +{{ Fill Drive Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +{{ Fill InputObject Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ItemID +{{ Fill ItemID Description }} + +```yaml +Type: Object +Parameter Sets: ItemIDRange, ItemIDTable, ItemID +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ItemPath +{{ Fill ItemPath Description }} + +```yaml +Type: Object +Parameter Sets: ItemNameRange, ItemNameTable, ItemName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoHeader +{{ Fill NoHeader Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RangeName +{{ Fill RangeName Description }} + +```yaml +Type: String +Parameter Sets: ItemNameRange, ItemIDRange +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SheetName +{{ Fill SheetName Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: WorkSheetName + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Show +{{ Fill Show Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -dateFormat +{{ Fill dateFormat Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.Object +### System.Management.Automation.SwitchParameter +### System.String +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Find-GraphPeople.md b/Microsoft.Graph.PlusPlus.Docs/docs/Find-GraphPeople.md new file mode 100644 index 0000000..2d5a8b1 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Find-GraphPeople.md @@ -0,0 +1,93 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Find-GraphPeople + +## SYNOPSIS +Searches people in your inbox / contacts / directory + +## SYNTAX + +### Default (Default) +``` +Find-GraphPeople [-Topic] [-First ] [] +``` + +### Fuzzy +``` +Find-GraphPeople -SearchTerm [-First ] [] +``` + +## DESCRIPTION +Requires consent to use either the People.Read or the People.Read.All scope + +## EXAMPLES + +### EXAMPLE 1 +``` +Find-GraphPeople -Topic timesheet -First 6 +Returns the top 6 results for people you have discussed timesheets with. +``` + +## PARAMETERS + +### -Topic +Text to use in a 'Topic' Search. +Topics are not pre-defined, but inferred using machine learning based on your conversation history (!) + +```yaml +Type: Object +Parameter Sets: Default +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -SearchTerm +Text to use in a search on name and email address + +```yaml +Type: Object +Parameter Sets: Fuzzy +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -First +Number of results to return (10 by default) + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 10 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-AccessToken.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-AccessToken.md new file mode 100644 index 0000000..79773b8 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-AccessToken.md @@ -0,0 +1,99 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-AccessToken + +## SYNOPSIS +Requests a token for a resource path, used by connect graph but available to other tools. + +## SYNTAX + +``` +Get-AccessToken [[-Resoure] ] [-GrantType] [[-BodyParts] ] [] +``` + +## DESCRIPTION +An access token is obtained form "https://login.microsoft.com/\<\\>/oauth2/token" +By specifying the ID, and secret of a client app known to in that tenant, +different modes of granting a token to access a resource (logging on) are possible: +Extra fields passed in BodyParts grant_type +* Username and password 'Password' +* Refresh_token 'Referesh_token' +* None (logon as the app itself) 'client_credentials' +The Set-GraphOptions command sets the tenant ID, a client ID and a client secret +for the session. +By default, when the module loads it looks at $env:GraphSettingsPath or for +Microsoft.Graph.PlusPlus.settings.ps1 in the module folder, and executes it to set these values) +Get-AccessToken relies on these if they are not set Connect-Graph removes the parameters +which support non-intereactive logons and calling it seperately will fail + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Resoure +{{ Fill Resoure Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: Https://graph.microsoft.com +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GrantType +{{ Fill GrantType Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BodyParts +{{ Fill BodyParts Description }} + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: @{} +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphApplication.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphApplication.md new file mode 100644 index 0000000..9bde93e --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphApplication.md @@ -0,0 +1,116 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphApplication + +## SYNOPSIS +Returns information about Applications + +## SYNTAX + +### List1 (Default) +``` +Get-GraphApplication [-Property ] [-Filter ] [] +``` + +### List3 +``` +Get-GraphApplication [[-Id] ] [-Property ] [] +``` + +### List2 +``` +Get-GraphApplication [-AppId ] [-Property ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Id +{{ Fill Id Description }} + +```yaml +Type: String +Parameter Sets: List3 +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AppId +The GUID(s) for Apps(s). +Or App objects. +If a name is given instead, the command will try to resolve matching App principals + +```yaml +Type: String +Parameter Sets: List2 +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Property +Select properties to be returned + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: Select + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Filter +Filters items by property values + +```yaml +Type: String +Parameter Sets: List1 +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphApplication +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphBucketTaskList.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphBucketTaskList.md new file mode 100644 index 0000000..2115430 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphBucketTaskList.md @@ -0,0 +1,74 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphBucketTaskList + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Get-GraphBucketTaskList [-Bucket] [-Expand] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Bucket +{{ Fill Bucket Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: ID + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -Expand +{{ Fill Expand Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: FullTasks + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.Object +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphChannel.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphChannel.md new file mode 100644 index 0000000..d3f9d20 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphChannel.md @@ -0,0 +1,211 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphChannel + +## SYNOPSIS +Gets details of a channel, or its Tabs or messages shown in Teams + +## SYNTAX + +### None (Default) +``` +Get-GraphChannel [-Team ] [] +``` + +### CHFiles +``` +Get-GraphChannel [-Team ] [-Channel] [-Files] [] +``` + +### CHFolder +``` +Get-GraphChannel [-Team ] [-Channel] [-Folder] [] +``` + +### CHTabs +``` +Get-GraphChannel [-Team ] [-Channel] [-Tabs] [] +``` + +### CHMsgs +``` +Get-GraphChannel [-Team ] [-Channel] [-Messages] [-Top ] [] +``` + +### NoCHTabs +``` +Get-GraphChannel [-Team ] [-Tabs] [] +``` + +### NoCHFolder +``` +Get-GraphChannel [-Team ] [-Folder] [] +``` + +### NoCHFiles +``` +Get-GraphChannel [-Team ] [-Files] [] +``` + +### NoCHMsgs +``` +Get-GraphChannel [-Team ] [-Messages] [-Top ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphTeam consultants -ChannelName general | Get-GraphChannel -Tabs +Gets channels for the team(s) with a name beginning 'Consultants' and selects channel(s) +with a name beginning "general"; then gets the tabs shown in Teams for this channel +``` + +### EXAMPLE 2 +``` +Set-GraphDefaultGroup 'Consultants' +> ... +> Get-GraphChannel 'General' -Messages +If the default group is set to a suitable team, it is possible to tab complete the channel name +and ther is no need specify the team +``` + +### EXAMPLE 3 +``` +Get-GraphChannel -Team accounts -channel general -Messages +This specifies a non-default team, and gets messages from the teams general channel. +``` + +### EXAMPLE 4 +``` +Get-GraphChannel -Team $t +Gets the basic channel information for team. +``` + +## PARAMETERS + +### -Team +The ID of the team if it is not in the channel object. +If not specified the current users teams are tried + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Channel +The channel either as a name, an ID or as a channel object (which may contain the team as a property) + +```yaml +Type: Object +Parameter Sets: CHFiles, CHFolder, CHTabs, CHMsgs +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Tabs +If specified gets the channel's Tabs + +```yaml +Type: SwitchParameter +Parameter Sets: CHTabs, NoCHTabs +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Folder +If specified gets the channel's Tabs + +```yaml +Type: SwitchParameter +Parameter Sets: CHFolder, NoCHFolder +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Files +{{ Fill Files Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: CHFiles, NoCHFiles +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Messages +if Specified uses the beta api to get the channel's messages. + +```yaml +Type: SwitchParameter +Parameter Sets: CHMsgs, NoCHMsgs +Aliases: Msgs + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Top +If specified, returns the top n messages, otherwise the command will attempt to get all messages. +The server may return more than the specified number. + +```yaml +Type: Object +Parameter Sets: CHMsgs, NoCHMsgs +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphChannelReply.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphChannelReply.md new file mode 100644 index 0000000..81fc2ff --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphChannelReply.md @@ -0,0 +1,113 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphChannelReply + +## SYNOPSIS +Returns replies to messages in Teams channels + +## SYNTAX + +``` +Get-GraphChannelReply [-Message] [-Team ] [-Channel ] [-PassThru] [] +``` + +## DESCRIPTION +Access to channel messages is currently in the BETA API +It is possible to start a new thread, but not to reply to the thread. + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphChannel $General -Messages | Get-GraphChannelReply -PassThru +The GraphAPI does not return replies when requesting messages +from a channel in Teams. By piping the messages to Get-GraphChannelReply +it is possible to get the replies; and if -Passthru is specified +the messages will returned, followed by their replies. +So if $General is a channel object, the first message and the its first +reply might be output like this. +``` + +From Created Isreply Deleted Importance Content +---- ------- ------- ------- ---------- ------- +James O'Neill 17/02/2019 11:42 False False normal Project Firebird now has its own channel. +James O'Neill 17/02/2019 13:06 True False normal And the channel has its own planner + +## PARAMETERS + +### -Message +The Message to reply to as an ID or a message object containing an ID (and possibly the team and channel ID) + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Team +If the message or channel parameters don't include the team ID, the team either as an ID or an object containing the ID + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Channel +If Message does not contain the channel, the channel either as an ID or an object containing an ID and possibly the team ID + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +If specified returns the message, followed by its replies. +(Otherwise , only the replies are returned) + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphConditionalAccessPolicy.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphConditionalAccessPolicy.md new file mode 100644 index 0000000..38350c9 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphConditionalAccessPolicy.md @@ -0,0 +1,59 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphConditionalAccessPolicy + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Get-GraphConditionalAccessPolicy [[-Policy] ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Policy +{{ Fill Policy Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.Object +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphContact.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphContact.md new file mode 100644 index 0000000..58ec909 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphContact.md @@ -0,0 +1,116 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphContact + +## SYNOPSIS +Get the user's contacts + +## SYNTAX + +### None (Default) +``` +Get-GraphContact [-User ] [-Select ] [] +``` + +### FilterByName +``` +Get-GraphContact [-User ] [-Select ] -Name [] +``` + +### FilterByString +``` +Get-GraphContact [-User ] [-Select ] -Filter [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +get-graphContact -name "o'neill" | ft displayname, mobilephone +Gets contacts where the display name, given name, surname, file-as name, or email begins with +O'Neill - note the function handles apostrophe, - a single one would normal cause an error with the query. +The results are displayed as table with display name and mobile number +``` + +## PARAMETERS + +### -User +UserID as a guid or User Principal name. +If not specified defaults to "me" + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Select +A custom set of contact properties to select + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +If specified looks for contacts where the display name, file-as Name, given name or surname beging with ... + +```yaml +Type: String +Parameter Sets: FilterByName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Filter +A custom OData Filter String + +```yaml +Type: String +Parameter Sets: FilterByString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphContact +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphDeletedObject.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphDeletedObject.md new file mode 100644 index 0000000..03a7c4d --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphDeletedObject.md @@ -0,0 +1,71 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphDeletedObject + +## SYNOPSIS +Returns deleted users or groups from the AAD recycle bin + +## SYNTAX + +``` +Get-GraphDeletedObject [[-Name] ] [-Group] +``` + +## DESCRIPTION +It can filter by name, and selects users by default or groups if -Group is selected +The results can be piped into Restore-GraphDeletedObject + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Name +If specified filters the returned objects to those with a name starts with... + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Group +By default user objects are returned. +This switches the choice to group objects. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphDirectoryLog.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphDirectoryLog.md new file mode 100644 index 0000000..121d574 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphDirectoryLog.md @@ -0,0 +1,74 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphDirectoryLog + +## SYNOPSIS +Gets the Directory audit log -requires a priviledged account + +## SYNTAX + +``` +Get-GraphDirectoryLog [-all] [[-Top] ] [] +``` + +## DESCRIPTION +This command calls https://graph.microsoft.com/beta/auditLogs/directoryAudits +which requires consent to use the AuditLog.Read.All Scope this can only be granted to Azure AD apps. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -all +{{ Fill all Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Top +{{ Fill Top Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: 100 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphDirectoryAudit +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphDirectoryRole.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphDirectoryRole.md new file mode 100644 index 0000000..4e2eb3a --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphDirectoryRole.md @@ -0,0 +1,73 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphDirectoryRole + +## SYNOPSIS +Gets an Azure AD directory role or its members + +## SYNTAX + +``` +Get-GraphDirectoryRole [[-Role] ] [-Members] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphDirectoryRole external* -Members | ft displayname,role +Lists all members of groups whose names begin "external" +The command adds the role name to the user object making it possible +to show the roles and names in the output. +``` + +## PARAMETERS + +### -Role +The role to get, either as a display name (wildcards allowed), an ID, or a Role object containing an ID + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: * +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Members +If specified returns the members of the role as user objects + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphDirectoryRoleTemplate.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphDirectoryRoleTemplate.md new file mode 100644 index 0000000..f1c41b3 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphDirectoryRoleTemplate.md @@ -0,0 +1,57 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphDirectoryRoleTemplate + +## SYNOPSIS +Gets directory role templates + +## SYNTAX + +``` +Get-GraphDirectoryRoleTemplate [[-Template] ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Template +{{ Fill Template Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphDomain.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphDomain.md new file mode 100644 index 0000000..5955447 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphDomain.md @@ -0,0 +1,124 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphDomain + +## SYNOPSIS +Gets domains in the current tenant + +## SYNTAX + +### None (Default) +``` +Get-GraphDomain [] +``` + +### NameRef +``` +Get-GraphDomain [-Domain] [-NameReferenceList] [] +``` + +### SCRecords +``` +Get-GraphDomain [-Domain] [-ServiceConfigurationRecords] [] +``` + +### VDRecords +``` +Get-GraphDomain [-Domain] [-VerificationDNSRecords] [] +``` + +### Domain +``` +Get-GraphDomain [-Domain] [] +``` + +## DESCRIPTION +Requires consent to use at least the Directory.Read.All scope + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Domain +{{ Fill Domain Description }} + +```yaml +Type: Object +Parameter Sets: NameRef, SCRecords, VDRecords, Domain +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -VerificationDNSRecords +{{ Fill VerificationDNSRecords Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: VDRecords +Aliases: VR + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ServiceConfigurationRecords +{{ Fill ServiceConfigurationRecords Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: SCRecords +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NameReferenceList +{{ Fill NameReferenceList Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: NameRef +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphDomain +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphDrive.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphDrive.md new file mode 100644 index 0000000..ce51d73 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphDrive.md @@ -0,0 +1,321 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphDrive + +## SYNOPSIS +Gets information about a OneDrive volume + +## SYNTAX + +### None (Default) +``` +Get-GraphDrive [-Drive ] [-Subfolders] [-Quiet] [] +``` + +### FolderName +``` +Get-GraphDrive [-Drive ] [-FolderPath] [-Include ] [-Search ] [-Subfolders] + [-Quiet] [] +``` + +### FolderID +``` +Get-GraphDrive [-Drive ] -FolderID [-Include ] [-Search ] [-Subfolders] + [-Quiet] [] +``` + +### Special +``` +Get-GraphDrive [-Drive ] -SpecialFolder [-Include ] [-Quiet] [] +``` + +### Recent +``` +Get-GraphDrive [-Drive ] [-Recent] [-Include ] [-Quiet] [] +``` + +### Shared +``` +Get-GraphDrive [-Drive ] [-SharedWithMe] [-Include ] [-Search ] [-Quiet] + [] +``` + +### RootSearch +``` +Get-GraphDrive [-Drive ] [-Search ] [-Quiet] [] +``` + +### RootFolders +``` +Get-GraphDrive [-Drive ] [-Subfolders] [-Quiet] [] +``` + +### ItemName +``` +Get-GraphDrive [-Drive ] -ItemPath [-Quiet] [] +``` + +### ItemID +``` +Get-GraphDrive [-Drive ] -ItemID [-Quiet] [] +``` + +## DESCRIPTION +Run with no parameters this gets information about the volume for the current user. +It can get information about another volume by specifying -Drive +It can get information about the root folders, or the contents of a specific folder, +or a link to a special folder or recent items. + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphDrive +Returns the drive for the current user. +``` + +### EXAMPLE 2 +``` +get-graphdrive -Subfolders +Returns the root folders in the the current user's drive. Formatting is defined +to display the items like a normal directory, but other properties are also available. +``` + +### EXAMPLE 3 +``` +>$d = get-graphteam -Drive | select -first 1 +>get-graphdrive -Drive $d -SpecialFolder Documents +``` + +The first line gets the first team drive for a user, the second gets +the items in its Documents folder + +### EXAMPLE 4 +``` +get-graphdrive -Drive $d -FolderPath general +This example uses the team drive found in the previous one and gets the contents of the team's "General" folder +``` + +### EXAMPLE 5 +``` +get-graphdrive -Drive $d -itemPath general +Instead of getting the the items in the General folder, this returns an object representing the folder itself +``` + +### EXAMPLE 6 +``` +Get-GraphDrive -Search preferredLanguage -FolderPath 'root:/Scripts' +This does a freetext search of "preferredLanguage" in the scripts folder; because no drive is +specified this folder is on the current user's drive. +Note that searches do not return the parent path if you need to find the folder path you can do +get-graphitem [-drive {drive}] -itemid with either the item's own ID or its parent's ID. +``` + +### EXAMPLE 7 +``` +$folder = (get-graphuser -Drive).root.children | where name -eq scripts +>get-graphdrive -Drive $folder.parentReference.driveId -FolderID $folder.id +The first command gets the users drive, and looks for a known folder as a child item in the drive-root. +This folder can't be piped into get-graphdrive, so the drive id and folder id are passed. +In this case the drive ID could be ommitted because the default is to use the user's home drive +``` + +## PARAMETERS + +### -Drive +The drive to examine - defaults to the user's OneDrive but can be a shared one e.g. +Drives/{ID} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Me/Drive +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -FolderPath +If specified gets the items in a folder by the path from {drive}/root: + +```yaml +Type: String +Parameter Sets: FolderName +Aliases: Path + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FolderID +If Specified gets the items in a folder by folder ID + +```yaml +Type: String +Parameter Sets: FolderID +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SpecialFolder +If specified gets one of the special folders (Documents, photos etc) in the drive. +If they don't already exist the server appears to create them. + +```yaml +Type: String +Parameter Sets: Special +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Recent +If specified gets recent items in the drive + +```yaml +Type: SwitchParameter +Parameter Sets: Recent +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SharedWithMe +If Specified gets items shared with the user + +```yaml +Type: SwitchParameter +Parameter Sets: Shared +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Include +{{ Fill Include Description }} + +```yaml +Type: String +Parameter Sets: FolderName, FolderID, Special, Recent, Shared +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Search +Enables a free text search of the selected content + +```yaml +Type: String +Parameter Sets: FolderName, FolderID, Shared, RootSearch +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Subfolders +If specified returns the subfolders - if no FolderPath or FolderID is given will return folders of the root drive + +```yaml +Type: SwitchParameter +Parameter Sets: None, FolderName, FolderID, RootFolders +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ItemPath +if specified gets a file or folder by the path from {drive}/root: + +```yaml +Type: String +Parameter Sets: ItemName +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ItemID +If Specified gets the a file or folder item by ID + +```yaml +Type: String +Parameter Sets: ItemID +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Quiet +If specified does not display a message when a folder is empty + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphEvent.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphEvent.md new file mode 100644 index 0000000..b7f5468 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphEvent.md @@ -0,0 +1,319 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphEvent + +## SYNOPSIS +Get the events in a calendar + +## SYNTAX + +### None (Default) +``` +Get-GraphEvent [-Timezone ] [-Days ] [-Top ] [-Select ] [-OrderBy ] + [] +``` + +### UserAndFilter +``` +Get-GraphEvent -User [-Calendar ] [-Timezone ] [-Days ] [-Top ] + [-Select ] [-OrderBy ] -Filter [] +``` + +### UserAndSubject +``` +Get-GraphEvent -User [-Calendar ] [-Timezone ] [-Days ] [-Top ] + [-Select ] [-OrderBy ] -Subject [] +``` + +### User +``` +Get-GraphEvent -User [-Calendar ] [-Timezone ] [-Days ] [-Top ] + [-Select ] [-OrderBy ] [] +``` + +### CalAndFilter +``` +Get-GraphEvent -Calendar [-Timezone ] [-Days ] [-Top ] [-Select ] + [-OrderBy ] -Filter [] +``` + +### CalAndSubject +``` +Get-GraphEvent -Calendar [-Timezone ] [-Days ] [-Top ] [-Select ] + [-OrderBy ] -Subject [] +``` + +### Cal +``` +Get-GraphEvent -Calendar [-Timezone ] [-Days ] [-Top ] [-Select ] + [-OrderBy ] [] +``` + +### GroupAndFilter +``` +Get-GraphEvent -Group [-Timezone ] [-Days ] [-Top ] [-Select ] + [-OrderBy ] -Filter [] +``` + +### GroupAndSubject +``` +Get-GraphEvent -Group [-Timezone ] [-Days ] [-Top ] [-Select ] + [-OrderBy ] -Subject [] +``` + +### GroupID +``` +Get-GraphEvent -Group [-Timezone ] [-Days ] [-Top ] [-Select ] + [-OrderBy ] [] +``` + +### CurrentFilter +``` +Get-GraphEvent [-Timezone ] [-Days ] [-Top ] [-Select ] [-OrderBy ] + -Filter [] +``` + +## DESCRIPTION +Depending on the parameters the events my come from + * A specified calendar (retrieved by get-graphGroup or Get-GraphUser) + * The default calendar for a group, (if only -group is provided) + * The default calendar for a specific user, if only user is specified + * The default calendar for the current user if no user, group, or calendar is specified. + The request can specify the first n events in the calendar, or a number of days into + the future, or specify the subject line or a custom filter. + +## EXAMPLES + +### EXAMPLE 1 +``` +>Get-GraphEvent -Team consultants +Finds the team (group) named "Consultants", and gets events in the team's calendar. +Note that the because "team" and "group" are used interchangably the parameter is +named "Group" with an alias of "Team" +``` + +### EXAMPLE 2 +``` +>get-graphuser -Calendars | where name -match "holidays" | + get-graphevent -days 365 -order "start/datetime desc" -select start,end, subject | + format-table subject, when +Gets the user's calendars and selects the national holidays one; +gets the events from this calendar for the next 365 days, sorting them to +soonest last and selecting only the dates and subject; 'when' is calculated from +start and end, so it is available to the format table command at the end of the pipeline. +``` + +### EXAMPLE 3 +``` +Get-GraphEvent -user alex@contoso.com -filter "isorganizer eq false" +Gets events from the specified user's calendar where they are not the organizer; +this requires access to have been granted access to the calendar by its owener. +``` + +### EXAMPLE 4 +``` +Get-GraphEvent -filter "isorganizer eq false" -OrderBy start/datetime +This uses the same filter as the previous example but sorts the results at the +server before they are returned. Note that some fields like 'start' are record types, +and one of their properties may need to be specified to perform a sort, as in this case, +and the syntax is property/ChildProperty. +``` + +### EXAMPLE 5 +``` +>$userTimezone = (Get-GraphUser -MailboxSettings).timezone +>Get-GraphEvent -Days 150 -TimeZone $userTimezone -Filter "showas eq 'free'" +The first command gets the current user's preferred time zone, which may not +match the local computer, and the second requests items for the next 150 days, +where the time is shown as Free, displaying using that time zone +``` + +### EXAMPLE 6 +``` +Get-graphEvent -filter "start/dateTime ge '2019-04-01T08:00'" | ft +Gets the events in the signed-in user's default calendar which start after April 1 2019 +format-table will pick up the default display properties (Subject, When, Where and ShowAs) +``` + +## PARAMETERS + +### -User +UserID as a guid or User Principal name, whose calendar should be fetched. +"me" can be used as a shortcut for current user + +```yaml +Type: String +Parameter Sets: UserAndFilter, UserAndSubject, User +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Calendar +A sepecific calendar + +```yaml +Type: Object +Parameter Sets: UserAndFilter, UserAndSubject, User +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +```yaml +Type: Object +Parameter Sets: CalAndFilter, CalAndSubject, Cal +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -Group +Group ID or a Group object with an ID, whose calendar should be fetched + +```yaml +Type: Object +Parameter Sets: GroupAndFilter, GroupAndSubject, GroupID +Aliases: Team + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Timezone +Time zone to rennder event times. +By default the time zone of the local machine will me use + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: $(tzutil.exe /g) +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Days +Number of days of calendar to fetch from today + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Top +The neumber of events to fetch. +Must be greater than zero, and capped at 1000 + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Select +Fields to select + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OrderBy +An order-by clause to sort the events + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Subject +If specified, fetch events where the subject line begins with + +```yaml +Type: String +Parameter Sets: UserAndSubject, CalAndSubject, GroupAndSubject +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Filter +A custom selection filter + +```yaml +Type: String +Parameter Sets: UserAndFilter, CalAndFilter, GroupAndFilter, CurrentFilter +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphGroup.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphGroup.md new file mode 100644 index 0000000..0025b9b --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphGroup.md @@ -0,0 +1,473 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphGroup + +## SYNOPSIS +Gets information about a Group and any associated Office 365 Team + +## SYNTAX + +### None (Default) +``` +Get-GraphGroup [[-ID] ] [-Mine] [] +``` + +### Apps +``` +Get-GraphGroup [[-ID] ] [-Apps] [-AppName ] [-Mine] [] +``` + +### Calendar +``` +Get-GraphGroup [[-ID] ] [-Calendar] [-Mine] [] +``` + +### Channels +``` +Get-GraphGroup [[-ID] ] [-Channels] [-ChannelName ] [-Mine] [] +``` + +### Conversations +``` +Get-GraphGroup [[-ID] ] [-Conversations] [-Mine] [] +``` + +### Drive +``` +Get-GraphGroup [[-ID] ] [-Drive] [-Mine] [] +``` + +### Members +``` +Get-GraphGroup [[-ID] ] [-Members] [-Mine] [] +``` + +### TransitiveMembers +``` +Get-GraphGroup [[-ID] ] [-TransitiveMembers] [-Mine] [] +``` + +### Memberof +``` +Get-GraphGroup [[-ID] ] [-MemberOf] [-Mine] [] +``` + +### TransitiveMemberof +``` +Get-GraphGroup [[-ID] ] [-TransitiveMemberOf] [-Mine] [] +``` + +### Owners +``` +Get-GraphGroup [[-ID] ] [-Owners] [-Mine] [] +``` + +### Notebooks +``` +Get-GraphGroup [[-ID] ] [-Notebooks] [-Mine] [] +``` + +### Planners +``` +Get-GraphGroup [[-ID] ] [-Plans] [-Mine] [] +``` + +### Threads +``` +Get-GraphGroup [[-ID] ] [-Threads] [-Mine] [] +``` + +### Site +``` +Get-GraphGroup [[-ID] ] [-Site] [-Mine] [] +``` + +### SelectFields +``` +Get-GraphGroup [[-ID] ] -Select [-Mine] [] +``` + +### BareGroups +``` +Get-GraphGroup [[-ID] ] [-Mine] [-NoTeamInfo] [] +``` + +## DESCRIPTION +Takes a Group/Team ID or object as a parameter and gets information about it. +Apps, Calendar, Channels, Drive, Members or Planners can be requested. +Depending on which aspect of the group are queried, may need access to the following +Scopes Group.Read.All, Files.Read, Sites.Read.All, Notes.Create, Notes.Read, + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphUser -teams | Get-GraphTeam -Plans | select -last 1 | Get-GraphPlan -FullTasks | ft PlanTitle,Bucketname,Title,DueDateTime,PercentComplete,Assignees + Gets the current user's Teams, and gets the plans for each; + Note that because we are refering to "Teams" the command is called using its alias of Get-GraphTeam. + The last plan is selected and details of the plan are fetched, showing the result as a table. +``` + +### EXAMPLE 2 +``` +(Get-GraphGroup -Site).lists | where name -match document +If no Group/Team is provided the command gets those associated with the current user; +it this case it returns their associated site(s). +Site objects include a lists property, which holds a collection of lists +This command will fiter the lists down to those where name matches "document", +giving the "Shared Documents" list for each team +``` + +### EXAMPLE 3 +``` +Get-GraphGroup -Drive | Get-GraphDrive -Subfolders | Select name, weburl, id,@{n="drive";e={$_.parentReference.driveId}} +As with the previous example gets this command gets Groups/Teams for current user, +in this case the command returns their associated drive(s) +It is possible to refer to the drive's 'root' property, and the root's 'childre'n property +which contains files and folder objects, and filter to objects with a folder property but +for ease of reading this pipeline passes the drive to Get-GraphDrive to get subfolders. +It then returns the name, WebURl and the item ID and Drive ID needed to access each folder. +``` + +### EXAMPLE 4 +``` +Get-GraphGroup 'Consultants' -Drive | Set-GraphHomeDrive +Sets the drive for the consultants group to be the default graph drive for the PowerShell session. +``` + +### EXAMPLE 5 +``` +Get-GraphGroup -Notebooks | select -ExpandProperty sections | where "Displayname" -eq "General_Notes" +Again gets Groups/Teams for the current user and returns their associated notebooks(s) +Notebook objects include a Sections property, which holds a collection of OneNote sections in the notebook; +This command gets returns any section in a team notebook which has the name "General_Notes" +``` + +### EXAMPLE 6 +``` +Get-GraphTeam -threads | where LastDeliveredDateTime -gt ([datetime]::Now.AddDays(-7)) +Gets the teams conversation threads which have been updated in the last 7 days. +``` + +## PARAMETERS + +### -ID +The name of a team. +One more Team IDs or team objects containing and ID. +If omitted the current user's teams will be used. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: Team, Group + +Required: False +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Apps +If specified returns the teams Apps + +```yaml +Type: SwitchParameter +Parameter Sets: Apps +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Calendar +If specified gets the team's Calendar (a team only has one) + +```yaml +Type: SwitchParameter +Parameter Sets: Calendar +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Channels +If specified gets the team's channels + +```yaml +Type: SwitchParameter +Parameter Sets: Channels +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Conversations +If Specified, retrun team's conversations (usually better to use threads) + +```yaml +Type: SwitchParameter +Parameter Sets: Conversations +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Drive +If specified gets the Team's OneDrive to see contents of the root of the drive you can refer to the drives .root.children property + +```yaml +Type: SwitchParameter +Parameter Sets: Drive +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Members +If specified returns the members of the team + +```yaml +Type: SwitchParameter +Parameter Sets: Members +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TransitiveMembers +If specified returns the transitive members of the team + +```yaml +Type: SwitchParameter +Parameter Sets: TransitiveMembers +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MemberOf +If specified returns the groups this group is directly a member of + +```yaml +Type: SwitchParameter +Parameter Sets: Memberof +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TransitiveMemberOf +If specified returns the groups this group is nested into transitively + +```yaml +Type: SwitchParameter +Parameter Sets: TransitiveMemberof +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Owners +If specified returns the Owners of the team + +```yaml +Type: SwitchParameter +Parameter Sets: Owners +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Notebooks +If specified returns the team's notebook(s) + +```yaml +Type: SwitchParameter +Parameter Sets: Notebooks +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Plans +if Specified, returns the teams Planners. + +```yaml +Type: SwitchParameter +Parameter Sets: Planners +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Threads +If Specified, retrun team's threads + +```yaml +Type: SwitchParameter +Parameter Sets: Threads +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Site +if Specified, returns the teams site. + +```yaml +Type: SwitchParameter +Parameter Sets: Site +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AppName +limits searches for appsby name. + +```yaml +Type: String +Parameter Sets: Apps +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ChannelName +limits searches for channels by name. +Other items can't be filtered by name ... +perhaps notebooks can but a group only has one. + +```yaml +Type: String +Parameter Sets: Channels +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Select +Field(s) to select: ID and displayname are always included +The following are available when getting a single group: + +```yaml +Type: String[] +Parameter Sets: SelectFields +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Mine +{{ Fill Mine Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoTeamInfo +{{ Fill NoTeamInfo Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: BareGroups +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphGroupConversation.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphGroupConversation.md new file mode 100644 index 0000000..66a0edf --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphGroupConversation.md @@ -0,0 +1,108 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphGroupConversation + +## SYNOPSIS +Gets details of group converstation from outlook, or its threads. + +## SYNTAX + +### OneConversation +``` +Get-GraphGroupConversation [-Conversation] [[-Group] ] [-Threads] [] +``` + +### InTeam +``` +Get-GraphGroupConversation [[-Group] ] [[-Topic] ] [-Threads] [] +``` + +## DESCRIPTION +Requires consent to use the Group.Read.All scope + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphGroupList -Name consult | Get-GraphGroup -Conversations | Get-GraphGroupConversation -Threads +Gets group(s) matching the name "consult*" , finds their conversations and for each one gets the threads in the conversation +Note, unless you are dealing with conversations which have multiple threads, it is easier to do Get-GraphGroup -Threads +``` + +## PARAMETERS + +### -Conversation +The Conversation, either as an ID or an object. + +```yaml +Type: Object +Parameter Sets: OneConversation +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Group +The group where the conversation is found,it is not part of can't be found from the conversation object + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: Team + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Topic +When selecting the Conversations for a group narrows the list by the name of the topic + +```yaml +Type: Object +Parameter Sets: InTeam +Aliases: + +Required: False +Position: 4 +Default value: * +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Threads +If specified selects the conversation's threads, otherwise an object representing the conversation itself is returned. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphGroupList.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphGroupList.md new file mode 100644 index 0000000..90fc27c --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphGroupList.md @@ -0,0 +1,150 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphGroupList + +## SYNOPSIS +Gets a list of Groups in Microsoft Graph. + +## SYNTAX + +### None (Default) +``` +Get-GraphGroupList [-OrderBy ] [] +``` + +### FilterByName +``` +Get-GraphGroupList [-Name] [-OrderBy ] [] +``` + +### SelectFields +``` +Get-GraphGroupList -Select [-OrderBy ] [] +``` + +### Sort +``` +Get-GraphGroupList [-OrderBy ] [-Descending] [] +``` + +### FilterByString +``` +Get-GraphGroupList [-OrderBy ] -Filter [] +``` + +## DESCRIPTION +The list of groups returned can be filtered by name (the beginning of the displayname and mail +address are checked) or with a custom filter string, or it can be sorted, or specific fields can +be selected. +However there is a limitation in the graph API which prevent these being combined. +Requires consent to use the Group.Read.All scope. + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphGroupList | Format-Table -Autosize Displayname, SecurityEnabled, Mailenabled, Mail, ID +Displays a table of groups in the current tennant +``` + +### EXAMPLE 2 +``` +(Get-GraphGroupList -Name consult* | Get-GraphTeam -Site).weburl +Gets any group whose name begins "Consult" , finds its sharepoint site, and returns the site's URL +``` + +## PARAMETERS + +### -Name +if specified limits the groups returned to those with names begining... + +```yaml +Type: String +Parameter Sets: FilterByName +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Select +Field(s) to select: ID and displayname are always included; +The following are only available when getting a single group: +'allowExternalSenders','autoSubscribeNewMembers','isSubscribedByMail' 'unseenCount', + +```yaml +Type: String[] +Parameter Sets: SelectFields +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OrderBy +A field to sort by - sorting is applied on the client side because filter and selct cannot be combined with server-side sort + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: DisplayName +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Descending +{{ Fill Descending Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: Sort +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Filter +An oData filter string; there is a graph limitation that you can't filter by description or Visibility. + +```yaml +Type: String +Parameter Sets: FilterByString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphGroup +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphGroupThread.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphGroupThread.md new file mode 100644 index 0000000..36fd5fd --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphGroupThread.md @@ -0,0 +1,110 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphGroupThread + +## SYNOPSIS +Gets a thread in a Group conversation in outlook, or its posts + +## SYNTAX + +### SingleThread +``` +Get-GraphGroupThread [-Thread] [[-Group] ] [-Posts] [] +``` + +### GroupThreads +``` +Get-GraphGroupThread [[-Group] ] [-Topic ] [-Posts] [] +``` + +## DESCRIPTION +Requires consent to use the Group.Read.All scope + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphUser -Teams | Get-GraphGroup -Threads | Get-GraphGroupThread -Posts | + ft -a -Wrap @{n="from";e={$_.from.emailaddress.name}},CreatedDateTime,Topic,@{n="Body";e={$_.body.content}} +Gets a users teams, for each one gets their threads, and for each thread gets the outlook posts +Displays the result as a table showing from, message date, thread topic and message body +Note this uses Get-GraphGroup as an alias for Get-GraphTeams +``` + +## PARAMETERS + +### -Thread +The group thread, either as an ID or as a thread object (which may have the team/group as property) + +```yaml +Type: Object +Parameter Sets: SingleThread +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Group +The group holding the thread (s), if thread is either not passed or is just the ID of a thread. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: Team + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Topic +When selecting the threads for a group narrows the list by the name of the topic + +```yaml +Type: Object +Parameter Sets: GroupThreads +Aliases: + +Required: False +Position: Named +Default value: * +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Posts +If specified, returns the posts in the thread + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphLicense.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphLicense.md new file mode 100644 index 0000000..2bce288 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphLicense.md @@ -0,0 +1,98 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphLicense + +## SYNOPSIS +Returns users or groups (or both) who are licensed to user a given SKU + +## SYNTAX + +### None (Default) +``` +Get-GraphLicense [-SKUID] [] +``` + +### Users +``` +Get-GraphLicense [-SKUID] [-UsersOnly] [] +``` + +### Groups +``` +Get-GraphLicense [-SKUID] [-GroupsOnly] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -SKUID +The SKU to get either as an ID or a SKU object containing an ID + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -UsersOnly +{{ Fill UsersOnly Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: Users +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GroupsOnly +{{ Fill GroupsOnly Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: Groups +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphList.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphList.md new file mode 100644 index 0000000..aee1e8f --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphList.md @@ -0,0 +1,224 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphList + +## SYNOPSIS +Gets sharepoint list objects or their items + +## SYNTAX + +### ListID (Default) +``` +Get-GraphList [[-List] ] [-Site ] [] +``` + +### ListIDColumns +``` +Get-GraphList [-List] [-Site ] [-ColumnList] [] +``` + +### ListItems +``` +Get-GraphList [-List] [-Site ] [-Items] [-Property ] [] +``` + +### ListofLists +``` +Get-GraphList [-Site ] [-HIDden] [] +``` + +## DESCRIPTION +This interogates https://graph.microsoft.com/v1.0/sites/{id}/lists{id} +which requires consent to use the Sites.Read.All scope or better. +This does not suppor the use of a filter parameter so any "where" +operation has to be done on the returned data. + +## EXAMPLES + +### EXAMPLE 1 +``` +>$myTeamSite = Get-GraphTeam -Site | select -first 1 +>$problemsList = $myteamsite.lists | where name -like problem* +> +> Get-GraphList -list $problemslist -ColumnList +``` + +The first command gets the current users group(s) and returns their site(s). +For this example we select the first site. +The sites returned by Get-GraphGroup / +Get-GraphTeam have a .lists property and second command selects the list we want +The third line shows calling Get-GraphList using the ID for both Site and List +and getting the columns in the list. +The next example shows an easier way to provide the information; and in fact +there is already a .columns property of $problemsList which has the column information + +### EXAMPLE 2 +``` +Get-graphlist $problemsList -Items +This uses $problemsList from the previous example. Get-GraphGroup (aka Get-GraphTeam) +gets the Site, it gets the sites lists, and adds the site ID as a property, so +$Problemslist has propeties for the list ID and the site ID. So this exmaple uses a +shorter form of just providing the list and returns the items in their raw state +``` + +### EXAMPLE 3 +``` +Get-graphlist $problemsList -Items -Property title, issuestatus, AssignedToLookupID, priority +This builds on the previous example. Specifying -Property causes Get-GraphList to +return the Item(s) Fields collection(s) and sets the default fields to be displayed. +By default if an object has 4 visbible properties or fewer PowerShell displays it +as a table, if it has more than 4 a list is used, this can be managed with +$FormatEnumerationLimit. In this case 4 properties are show in a table view. +However 'Person or Group' fields, like AssignedTo return a lookupID. +This comes from the hidden list 'Users' and the next example shows how to get +information from this list. (The Get-GraphSiteUserList provides a shortcut for geting +this Information) +``` + +### EXAMPLE 4 +``` +>Get-GraphList -Site $myteamSite -Hidden | where name -eq 'users' | + Get-Graphlist -Items -Property id,ContentType,Title,Name +``` + +This uses the $myTeamSite variable from the first example. +If neither Items, nor ColumnList is specified, Get-GraphList returns list objects, +(the same result as using Get-GraphSite -Lists) so the first command gets lists +in the team site including hidden ones - which aren't included in the .lists +property of the site, and users IS hidden. +The where command isolates that list, +and it is piped into a second Get-GraphList command, which gets its items +and displays the properties of interest + +### EXAMPLE 5 +``` +>$mydocuments = Get-GraphUser -Site | Get-GraphSite -lists | where name -eq documents +>Get-GraphList $shareddocsList -items | Select -expand driveItem | + Copy-FromGraphFolder -Destination C:\temp +``` + +This command works with a users "MySite" - the first command gets the user's +site, gets its lists and selects the one named "Documents" +The second gets the items in this list; when a list object has an associated drive, +items returned by Get-GraphList -items will have a .DriveItem property. +Driveitems can be piped into Copy-FromGraphFolder . + +## PARAMETERS + +### -List +The list either as an ID or as a list object (which may contain the site.) + +```yaml +Type: Object +Parameter Sets: ListID +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +```yaml +Type: Object +Parameter Sets: ListIDColumns, ListItems +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Site +Specifies a site, if omitted "root" will be assumed - the root site of the user's tennant. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Root +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HIDden +If specified returns hidden lists (like 'Users') + +```yaml +Type: SwitchParameter +Parameter Sets: ListofLists +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Items +If specified returns the list's items + +```yaml +Type: SwitchParameter +Parameter Sets: ListItems +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ColumnList +If specified returns the columns in the list + +```yaml +Type: SwitchParameter +Parameter Sets: ListIDColumns +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Property +if specified returned items will be expanded and the default display fields will be set + +```yaml +Type: String[] +Parameter Sets: ListItems +Aliases: Fields + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphMailFolder.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphMailFolder.md new file mode 100644 index 0000000..352351e --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphMailFolder.md @@ -0,0 +1,178 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphMailFolder + +## SYNOPSIS +Get the user's Mailbox folders + +## SYNTAX + +### FilterByName (Default) +``` +Get-GraphMailFolder [[-Name] ] [-ParentFolder ] [-User ] [-Top ] + [-Select ] [-ChildItems] [] +``` + +### Sorted +``` +Get-GraphMailFolder [-ParentFolder ] [-User ] [-Top ] [-Select ] + [-OrderBy ] [-ChildItems] [] +``` + +### FilterByString +``` +Get-GraphMailFolder [-ParentFolder ] [-User ] [-Top ] [-Select ] + [-Filter ] [-ChildItems] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphMailFolderList -Name inbox +Gets the current users inbox folder +``` + +## PARAMETERS + +### -Name +Filter the folders returned by a name + +```yaml +Type: String +Parameter Sets: FilterByName +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ParentFolder +{{ Fill ParentFolder Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -User +UserID as a guid or User Principal name. +If not specified defaults to "me" + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Top +Select the first n folders. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 100 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Select +fields to select in the query - will add a validate set later + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OrderBy +String with orderby clause e.g. +"name", "lastmodifiedDate desc" + +```yaml +Type: String +Parameter Sets: Sorted +Aliases: + +Required: False +Position: Named +Default value: Displayname +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Filter +A custom filter clause. + +```yaml +Type: String +Parameter Sets: FilterByString +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ChildItems +{{ Fill ChildItems Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphMailFolder +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphMailItem.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphMailItem.md new file mode 100644 index 0000000..260ca39 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphMailItem.md @@ -0,0 +1,354 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphMailItem + +## SYNOPSIS +Get items in a mail folder + +## SYNTAX + +### None (Default) +``` +Get-GraphMailItem [[-Mailfolder] ] [-User ] [-Unread] [-Subject ] [-From ] + [-To ] [-HasAttachments] [-Important] [-Today] [-Yesterday] [-Before ] [-After ] + [-Search ] [-Top ] [-OrderBy ] [-Select ] [] +``` + +### FilterByString +``` +Get-GraphMailItem [[-Mailfolder] ] [-User ] [-Unread] [-Subject ] [-From ] + [-To ] [-HasAttachments] [-Important] [-Today] [-Yesterday] [-Before ] [-After ] + [-Search ] [-Top ] [-OrderBy ] [-Select ] -Filter + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphMailItem -top 5 +Gets the top 5 items in the current users Inbox +``` + +### EXAMPLE 2 +``` +Get-GraphMailItem -Mailfolder "sentitems" -top 5 +Gets the top 5 items in the current users sent items folder +``` + +### EXAMPLE 3 +``` +Get-GraphMailFolderList -Name sent | Get-GraphMailItem -top 5 +This has the same result as before but could find any folder +``` + +### EXAMPLE 4 +``` +Get-GraphMailItem -Search 'criminal' +Searches the default folder (inbox) for 'Criminal' in any field +``` + +### EXAMPLE 5 +``` +Get-GraphMailItem -Search 'criminal' -Mailfolder '' +Searches for 'Criminal' in any field but this time searches the whole mailbox +``` + +### EXAMPLE 6 +``` +Get-GraphMailItem -Search 'subject:criminal' -Mailfolder '' +This time limits the search to just the subject line. from:, to: etc can be +used in the same way as they can in a search in outlook. +``` + +### EXAMPLE 7 +``` +Get-GraphMailItem -filter "from/emailAddress/address eq 'alex@contoso.com'" +Instead of a free text search this applies a filter on email address, looking at the inbox. +``` + +### EXAMPLE 8 +``` +Get-GraphMailItem -Filter "(hasattachments eq true) and startswith(from/emailAddress/name, 'alex')" +This shows a filter based on two conditions. +``` + +## PARAMETERS + +### -Mailfolder +A folder objet or the ID of a folder, or one of the well known folder names 'archive', 'clutter', 'conflicts', 'conversationhistory', 'deleteditems', 'drafts', 'inbox', 'junkemail', 'localfailures', 'msgfolderroot', 'outbox', 'recoverableitemsdeletions', 'scheduled', 'searchfolders', 'sentitems', 'serverfailures', 'syncissues' + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: Inbox +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -User +UserID as a guid or User Principal name, if it can't be discovered from the mailfolder. +If not specified defaults to "me" + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Unread +Selects only unread mail (equivalent to isread:no in Outlook) + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Subject +Searches based on the subject field (equivalent to subject: in Outlook) + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -From +Searches based on the from field (equivalent to from: in Outlook) + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -To +Searches based on the to field (equivalent to to: in Outlook) + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HasAttachments +Selects only mail with attachments (equivalent to hasAttachments:yes in Outlook). +Note this does not combine well with date based searches + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Important +Selects only mail marked as important (equivalent to importance:high in Outlook). + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Today +Selects only mail from today (equivalent to received:today in Outlook). + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Yesterday +Selects only mail from today (equivalent to received:yesterday in Outlook). + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Before +Selects only mail from before a given date + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -After +Selects only mail from after a given date + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Search +A term to do a free text search for in the mail box (see examples) + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Top +If specified returns the top X items, defaults to 100 + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 100 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OrderBy +Sorting option, defaults to sorting by SentDateTime with newest first. +Searches are not sorted. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: SentdateTime desc +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Select +Select particular mail fields , ignored if -ChildFolders is specified; defaults to From, Subject, SentDateTime, BodyPreview, and Weblink + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: @('From', 'Subject', 'SentDatetime', 'hasAttachments', 'BodyPreview', 'weblink') +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Filter +A Custom filter string; for example "importance eq high" - the examples have more cases + +```yaml +Type: String +Parameter Sets: FilterByString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphMessage +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphMailTips.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphMailTips.md new file mode 100644 index 0000000..f9f7bae --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphMailTips.md @@ -0,0 +1,57 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphMailTips + +## SYNOPSIS +Gets mail tips for one or more users (is their mailbox full, are auto-replies on etc) + +## SYNTAX + +``` +Get-GraphMailTips [-Address] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Address +mail addresses + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphNamedLocation.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphNamedLocation.md new file mode 100644 index 0000000..8a20367 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphNamedLocation.md @@ -0,0 +1,57 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphNamedLocation + +## SYNOPSIS +Returns named locations used in conditional access + +## SYNTAX + +``` +Get-GraphNamedLocation [[-Location] ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Location +The ID or start of the display-name of a Location + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphOneNoteBook.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphOneNoteBook.md new file mode 100644 index 0000000..4e54068 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphOneNoteBook.md @@ -0,0 +1,118 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphOneNoteBook + +## SYNOPSIS +Gets notebook objects or sections of notebooks + +## SYNTAX + +``` +Get-GraphOneNoteBook [[-Notebook] ] [[-InputObject] ] [-AllSections] [[-SectionName] ] + [] +``` + +## DESCRIPTION +If run with no parameters it will return the current user's personal notebooks. +If run with just a -Notebook parameter it will return that notebook (which might belong to a group) +If run with -Notebook and -Sections it will return the sections in that notebook, +And if run with just -Sections it will return all the sections in the user's personal notebooks. + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphOneNoteBook team +Looks for a workbook with a displayname begining "team" in the users workbooks. the search is case insensitive. +``` + +### EXAMPLE 2 +``` +Get-GraphOneNoteBook -SectionName Powershell +Finds a "PowerShell" secion in any of the users workbooks. Again the search is case insensitive +``` + +### EXAMPLE 3 +``` +Get-GraphTeam 'Consultants' -Notebooks | Set-GraphHomeNotebook +>Get-GraphOneNoteBook -AllSections +The first command changes the default notebook and selects different sections from the the previous command +``` + +## PARAMETERS + +### -Notebook +A graph URI pointing to the notebook, or a notebook object where the .self property is a graph URI... + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +{{ Fill InputObject Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -AllSections +If specified returns the sections of the notebook. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SectionName +if specified filters the returned objects by to those with names begining with ... + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphOneNotePage.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphOneNotePage.md new file mode 100644 index 0000000..e77e812 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphOneNotePage.md @@ -0,0 +1,192 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphOneNotePage + +## SYNOPSIS +Gets a OneNote page's metadata or content + +## SYNTAX + +### None (Default) +``` +Get-GraphOneNotePage [-Notebook ] [-Section ] [] +``` + +### PagePreview +``` +Get-GraphOneNotePage [-Page] [-Notebook ] [-Section ] [-PreviewText] + [-SavePath ] [] +``` + +### PageContentWithIDs +``` +Get-GraphOneNotePage [-Page] [-Notebook ] [-Section ] [-ContentWithIDs] + [-SavePath ] [] +``` + +### PageContent +``` +Get-GraphOneNotePage [-Page] [-Notebook ] [-Section ] [-Content] [-ContentWithIDs] + [-SavePath ] [] +``` + +### Page +``` +Get-GraphOneNotePage [-Page] [-Notebook ] [-Section ] [] +``` + +## DESCRIPTION +This command interogates https://graph.microsoft.com/v1.0 + /users/{id}/onenote/notebooks/{id}/sections/{id}/pages +or /groups/{id}/onenote/notebooks/{id}/sections/{id}/pages +or /sites/{id}/onenote/notebooks/{id}/sections/{id}/pages +which requires consent to use the Notes.Read scope or better. +It can get either the page metadata, the page content, or +the page content marked up with IDs to update the page. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Page +A graph URI pointing to the page, or a page object where the .self property is a graph URI... + +```yaml +Type: Object +Parameter Sets: PagePreview, PageContentWithIDs, PageContent, Page +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Notebook +A graph URI pointing to a notebook, or a notebook object. +this can be set by Set-GraphOneNoteHome + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Section +A graph URI pointing to a section, or a Section object this can be set by Set-GraphOneNoteHome + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Content +If specified returns the contents of the page. +Ignored if ContentWithIDs is specified + +```yaml +Type: SwitchParameter +Parameter Sets: PageContent +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ContentWithIDs +If specified returs the contents with guids for each section where content can be inserted. + +```yaml +Type: SwitchParameter +Parameter Sets: PageContentWithIDs +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +```yaml +Type: SwitchParameter +Parameter Sets: PageContent +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PreviewText +If specified returs a text preview of the page + +```yaml +Type: SwitchParameter +Parameter Sets: PagePreview +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SavePath +If specified writes the preview or content to a file + +```yaml +Type: Object +Parameter Sets: PagePreview, PageContentWithIDs, PageContent +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphOnenotePage +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphOneNoteSection.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphOneNoteSection.md new file mode 100644 index 0000000..d6686f0 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphOneNoteSection.md @@ -0,0 +1,128 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphOneNoteSection + +## SYNOPSIS +Gets details of sections in OneNote notebooks or their pages + +## SYNTAX + +``` +Get-GraphOneNoteSection [-Section] [-Notebook ] [-AllPages] [-PageTitle ] + [] +``` + +## DESCRIPTION +This command interogates https://graph.microsoft.com/v1.0 + /users/{id}/onenote/notebooks/{id}/sections +or /groups/{id}/onenote/notebooks/{id}/sections +or /sites/{id}/onenote/notebooks/{id}/sections +which requires consent to use the Notes.Create or Notes.Read scope or better. +If given a Notebook parameter it returns the sections in the notebook. +If given a section parameter it either returns details of the section, or +if the -Pages or -Name Parameters are given returns pages from the section + +## EXAMPLES + +### EXAMPLE 1 +``` +$notebook = Get-GraphTeam consultants -Notebooks +>$notebook.sections[0] | Get-GraphOneNoteSection -PageTitle change +The first line gets the Notebooks object for the 'consultants' team. This object +has a 'sections' collection. The second line uses pipes a member of this collection as the +into Get-GraphOneNoteSection to return the pages in the first section, with the title begining "change". +``` + +### EXAMPLE 2 +``` +Get-GraphOneNoteSection private -notebook $notebook -allpages +In this example the notebook used in the first example is passed as a notebook is piped into command to get a section, by contrast with the previous section +``` + +### EXAMPLE 3 +``` +Get-GraphOneNoteSection -Section $section -Pages -Name "test" | Remove-GraphOneNotePage -Force +>Gets all pages with names that begin 'Test...' and removes +$section may be the a section object (from the Sections collection of a notebook object, or +form Get-GraphOneNotebook -Sections ) or the URL for a section. +``` + +## PARAMETERS + +### -Section +A graph URI pointing to the section, or a section object where the .self property is a graph URI or a section name... + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Notebook +The notebook to query for section(s) if sections is empty or contains a name + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllPages +If specified, returns the pages in the section(s). + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PageTitle +If specified filters pages or Sections to those with names beginning ... + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphOnenotePage +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphOnenoteSection +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphOrganization.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphOrganization.md new file mode 100644 index 0000000..23e5aab --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphOrganization.md @@ -0,0 +1,104 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphOrganization + +## SYNOPSIS +Gets a summary of organization information from MSGraph + +## SYNTAX + +``` +Get-GraphOrganization [[-Organization] ] [[-Proxy] ] [[-ProxyCredential] ] + [-ProxyUseDefaultCredentials] [] +``` + +## DESCRIPTION +Can use msonline\Get-MsolCompanyInformation instead +This needs consent to use either the User.Read or the Directory.Read.All scope + +## EXAMPLES + +### EXAMPLE 1 +``` +(Get-GraphOrganization).verifiedDomains +Displays a list of domains in the current subscription +``` + +## PARAMETERS + +### -Organization +{{ Fill Organization Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Proxy +The URI for the proxy server to use + +```yaml +Type: Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphOrganization +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphPlan.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphPlan.md new file mode 100644 index 0000000..00eb176 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphPlan.md @@ -0,0 +1,139 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphPlan + +## SYNOPSIS +Gets information about plans used in the Planner app. + +## SYNTAX + +### None (Default) +``` +Get-GraphPlan [[-Plan] ] [] +``` + +### Details +``` +Get-GraphPlan [[-Plan] ] [-Details] [] +``` + +### Tasks +``` +Get-GraphPlan [[-Plan] ] [-Tasks] [] +``` + +### Buckets +``` +Get-GraphPlan [[-Plan] ] [-Buckets] [] +``` + +### FullTask +``` +Get-GraphPlan [[-Plan] ] [-FullTasks] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphTeam -Plans | where title -eq "team planner" | get-graphplan -FullTasks +Gets the Plan(s) for the current user's team(s), and isolates those with the name "Team Planner" ; +for each of these plans gets the tasks, expanding the name, bucket name, and assignee names +``` + +## PARAMETERS + +### -Plan +The ID of the plan or a plan object with an ID property. +if omitted the current users planner will be assumed. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Details +If Specified returns only the details of the plan + +```yaml +Type: SwitchParameter +Parameter Sets: Details +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tasks +If specified returns a list of plan tasks. + +```yaml +Type: SwitchParameter +Parameter Sets: Tasks +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Buckets +If specified gets a list of plan buckets which tasks can be assigned to + +```yaml +Type: SwitchParameter +Parameter Sets: Buckets +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FullTasks +If specified fills in the plan name, Assignee Name(s) and bucket name for each task. + +```yaml +Type: SwitchParameter +Parameter Sets: FullTask +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphPlanTask.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphPlanTask.md new file mode 100644 index 0000000..420cf65 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphPlanTask.md @@ -0,0 +1,73 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphPlanTask + +## SYNOPSIS +Gets a task from a plan in planner, and optionally expands IDs to names and fetches extended properties + +## SYNTAX + +``` +Get-GraphPlanTask [-Task] [-Expand] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Task +The Task to get, either an ID or a Task object with an ID property. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Expand +If specified IDs will be updated to their names, and extended properties (e.g. +Checklist) will be added + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: FullTasks + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphReminderView.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphReminderView.md new file mode 100644 index 0000000..88e1f75 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphReminderView.md @@ -0,0 +1,106 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphReminderView + +## SYNOPSIS +Returns a view of items with reminders set across all a users calendars. + +## SYNTAX + +``` +Get-GraphReminderView [[-User] ] [[-Timezone] ] [[-Days] ] [[-Top] ] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -User +UserID as a guid or User Principal name, whose calendar should be fetched If not specified defaults to "me" + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: $Global:GraphUser +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Timezone +Time zone to rennder event times. +By default the time zone of the local machine will me use + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: $(tzutil.exe /g) +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Days +Number of days of calendar to fetch from today + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: 30 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Top +The number of events to fetch. +Must be greater than zero, and capped at 1000 + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: 4 +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphReminder +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphReport.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphReport.md new file mode 100644 index 0000000..e2c186a --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphReport.md @@ -0,0 +1,106 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphReport + +## SYNOPSIS +Gets reports from MS Graph + +## SYNTAX + +``` +Get-GraphReport [-Report] [[-Date] ] [[-Period] ] [[-Path] ] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphReport -Report MailboxUsageDetail | ft "Display Name", "Storage Used (Byte)" +Displays mailbox storage used by users - note that +fields have 'friendly' names which need to be wrapped in quotes +``` + +## PARAMETERS + +### -Report +The report to Fetch + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Date +Date for the report - this should be a date in the past 30 days. +If specified, -Period is ignored. +Reports ending in Count, Storage or pages don't support date filtering + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Period +The range of time for the report in the form "Dn" where n is the number of days. +The default is D7, except for Office365Activation activation reports + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Path +If specified the data will be written in CSV format to the path provided, otherwise it will be output to the pipeline + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 4 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphSKU.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphSKU.md new file mode 100644 index 0000000..f041f5c --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphSKU.md @@ -0,0 +1,118 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphSKU + +## SYNOPSIS +Gets details of SKUs that an organization has subscribed to + +## SYNTAX + +``` +Get-GraphSKU [[-SKU] ] [-ServicePlans] [-Proxy ] [-ProxyCredential ] + [-ProxyUseDefaultCredentials] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphSKU "enterprise*" -ServicePlans | sort servicePlanName | format-table +Finds any SKU with a name starting "Enterprise" and displays its service plans in alphabetical order. +``` + +## PARAMETERS + +### -SKU +The SKU to get either as an ID or a SKU object containing an ID + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: * +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ServicePlans +If specified just returns the Service plans for the SKU, otherwise returns the SKU with a service plans property + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Proxy +The URI for the proxy server to use + +```yaml +Type: Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphSubscribedSku +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphServicePrincipal.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphServicePrincipal.md new file mode 100644 index 0000000..e816482 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphServicePrincipal.md @@ -0,0 +1,284 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphServicePrincipal + +## SYNOPSIS +Returns information about Service Principals + +## SYNTAX + +### List1 (Default) +``` +Get-GraphServicePrincipal [-Property ] [-Filter ] [] +``` + +### Get2 +``` +Get-GraphServicePrincipal [-ServicePrincipalId] [-Property ] [] +``` + +### FilteredScopes +``` +Get-GraphServicePrincipal [-ServicePrincipalId] [-Property ] -ScopeFilter + [] +``` + +### AllScopes +``` +Get-GraphServicePrincipal [-ServicePrincipalId] [-Property ] [-ExpandScopes] + [] +``` + +### FilteredRoles +``` +Get-GraphServicePrincipal [-ServicePrincipalId] [-Property ] -AppRoleFilter + [] +``` + +### AllRoles +``` +Get-GraphServicePrincipal [-ServicePrincipalId] [-Property ] [-ExpandAppRoles] + [] +``` + +### List5 +``` +Get-GraphServicePrincipal [-AppId ] [-Property ] [] +``` + +### List2 +``` +Get-GraphServicePrincipal [-ManagedIdentity] [-Property ] [] +``` + +### List3 +``` +Get-GraphServicePrincipal [-Application] [-Property ] [] +``` + +### List4 +``` +Get-GraphServicePrincipal [-O365ServicePrincipals] [-Property ] [] +``` + +## DESCRIPTION +A replacement for the SDK's Get-MgServicePrincipal +That has orderby which doesn't work - it's in the Docs but the API errors if you try +It doesn't have find by name, or select Application or Managed IDs + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphServicePrincipal "Microsoft graph*" +``` + +Id DisplayName AppId SignInAudience +-- ----------- ----- -------------- +25b13fbf-2f44-457a-9e68-d3414fc97915 Microsoft Graph 00000003-0000-0000-c000-000000000000 AzureADMultipleOrgs +4e71d88a-0a46-4274-85b8-82ad86877010 Microsoft Graph Change Tracking 0bf30f3b-4a52-48df-9a82-234910c4a086 AzureADMultipleOrgs +... + +Run with a name the command returns service principals with matching names. + +### EXAMPLE 2 +``` +Get-GraphServicePrincipal 25b13fbf-2f44-457a-9e68-d3414fc97915 -ExpandAppRoles +``` + +Value DisplayName Enabled Id +----- ----------- ------- -- +AccessReview.Read.All Read all access reviews True d07a8cc0-3d51-4b77-b3b0-32704d1f69fa +AccessReview.ReadWrite.All Manage all access reviews True ef5f7d5c-338f-44b0-86c3-351f46c8bb5f +... +In this example GUID for Microsoft Graph was used from the previous example, and the command has listed the roles available to applications + +## PARAMETERS + +### -ServicePrincipalId +The GUID(s) for ServicePrincipal(s). +Or SP objects. +If a name is given instead, the command will try to resolve matching Service principals + +```yaml +Type: Object +Parameter Sets: Get2, FilteredScopes, AllScopes, FilteredRoles, AllRoles +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -AppId +{{ Fill AppId Description }} + +```yaml +Type: String +Parameter Sets: List5 +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ManagedIdentity +Produces a list filtered to only managed identities + +```yaml +Type: SwitchParameter +Parameter Sets: List2 +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Application +Produces a list filtered to only applications + +```yaml +Type: SwitchParameter +Parameter Sets: List3 +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -O365ServicePrincipals +Produces a convenience list of office 365 security principals + +```yaml +Type: SwitchParameter +Parameter Sets: List4 +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Property +Select properties to be returned + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: Select + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Filter +Filters items by property values + +```yaml +Type: String +Parameter Sets: List1 +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExpandAppRoles +Returns the list of application roles to those the role name, displayname or ID match the parameter value. +Wildcards are supported + +```yaml +Type: SwitchParameter +Parameter Sets: AllRoles +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AppRoleFilter +Filters the list of application roles available within a SP + +```yaml +Type: String +Parameter Sets: FilteredRoles +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExpandScopes +Returns the list of (user) oauth scopes available within a SP + +```yaml +Type: SwitchParameter +Parameter Sets: AllScopes +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ScopeFilter +Filters the list of oauth scopes to those where the scope name, displayname or ID match the parameter value. +Wildcards are supported + +```yaml +Type: String +Parameter Sets: FilteredScopes +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAppRole +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphPermissionScope +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphServicePrincipal +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphSignInLog.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphSignInLog.md new file mode 100644 index 0000000..2552add --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphSignInLog.md @@ -0,0 +1,61 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphSignInLog + +## SYNOPSIS +Gets the audit log -requires a priviledged account + +## SYNTAX + +``` +Get-GraphSignInLog [[-top] ] [] +``` + +## DESCRIPTION +This command calls https://graph.microsoft.com/beta/auditLogs/signIns +which requires consent to use the AuditLog.Read.All Scope this can only be granted to Azure AD apps. + +## EXAMPLES + +### EXAMPLE 1 +``` +>Get-GraphSignInLog | +> select Date,UserPrincipalName,appDisplayName,ipAddress,clientAppUsed,browser,device,city,lat,long | +> Export-Excel -Path .\signin.xlsx -AutoSize -IncludePivotTable -PivotTableName Signins -PivotRows appdisplayName -PivotColumns browser -PivotData @{date='Count'} -show +``` + +Gets the sign-in Log and exports it Excel, creating a PivotTable + +## PARAMETERS + +### -top +{{ Fill top Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: 200 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphSignIn +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphSite.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphSite.md new file mode 100644 index 0000000..28f078b --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphSite.md @@ -0,0 +1,196 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphSite + +## SYNOPSIS +Gets details of a sharepoint site, or its lists, drives or subsites + +## SYNTAX + +### None (Default) +``` +Get-GraphSite [[-Site] ] [] +``` + +### Lists +``` +Get-GraphSite [[-Site] ] [-Lists] [-HIDdenLists] [] +``` + +### HiddenLists +``` +Get-GraphSite [[-Site] ] [-HIDdenLists] [] +``` + +### SingleList +``` +Get-GraphSite [[-Site] ] -ListID [] +``` + +### Notebooks +``` +Get-GraphSite [[-Site] ] [-Notebooks] [] +``` + +### Drives +``` +Get-GraphSite [[-Site] ] [-Drives] [] +``` + +### SubSites +``` +Get-GraphSite [[-Site] ] [-SubSites] [] +``` + +## DESCRIPTION +This interogates https://graph.microsoft.com/v1.0/sites/{id} +which requires consent to use the Sites.Read.All scope or better. +If no ID is provided it queries the Root site. +Depending on the parameters given it will return subsites, lists +detials of a single list, OneDrive Drives and on Note Notebooks., +it + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphTeam -site | Get-GraphSite -Lists -Hidden +Gets the site(s) for the current user's team(s) and gets lists +from the site(s) including hidden ones. +``` + +## PARAMETERS + +### -Site +Specifies a site, if omitted "root" will be assumed - the root site of the user's tennant. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: Root +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Lists +If specified returns the lists in the site. + +```yaml +Type: SwitchParameter +Parameter Sets: Lists +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HIDdenLists +If specified returns the system lists which are hidden by default + +```yaml +Type: SwitchParameter +Parameter Sets: Lists +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +```yaml +Type: SwitchParameter +Parameter Sets: HiddenLists +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ListID +if Specified returns the details of one list + +```yaml +Type: String +Parameter Sets: SingleList +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Notebooks +If Specified returns notebooks in the s + +```yaml +Type: SwitchParameter +Parameter Sets: Notebooks +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Drives +If Specified returns the drives in the site. + +```yaml +Type: SwitchParameter +Parameter Sets: Drives +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubSites +If Specified returns the sub-sites within the site, if the user has suitable permissions. + Needs higher permissions + +```yaml +Type: SwitchParameter +Parameter Sets: SubSites +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphSiteColumn.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphSiteColumn.md new file mode 100644 index 0000000..dfb66ac --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphSiteColumn.md @@ -0,0 +1,147 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphSiteColumn + +## SYNOPSIS +Gets a column which is defined for the whole site. + +## SYNTAX + +### None (Default) +``` +Get-GraphSiteColumn [-AllowMultiple] [-Raw] [] +``` + +### Terms +``` +Get-GraphSiteColumn [[-Name] ] [[-ColumnGroup] ] [[-ID] ] [-AllowMultiple] [-Raw] + [] +``` + +### WhereClause +``` +Get-GraphSiteColumn [-Where ] [-AllowMultiple] [-Raw] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Name +Selects column(s) by name (and possibly group) + +```yaml +Type: String +Parameter Sets: Terms +Aliases: + +Required: False +Position: 1 +Default value: * +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -ColumnGroup +Selects column(s) by group (and possibly by name) + +```yaml +Type: String +Parameter Sets: Terms +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ID +Selects a column by unique ID + +```yaml +Type: String +Parameter Sets: Terms +Aliases: + +Required: False +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Where +Allows a custom where clause instead of Name and/or group and/or ID + +```yaml +Type: ScriptBlock +Parameter Sets: WhereClause +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowMultiple +Get-GraphSiteColumn is intended to return one column to used when creating a new list, so + if multiple columns are returned that would be an error (i.e. +two columns have the + same name and group wasn't given.) If -allowMultiple is specified it is *not* treated as an error + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Raw +{{ Fill Raw Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphSiteUserList.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphSiteUserList.md new file mode 100644 index 0000000..d3bda07 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphSiteUserList.md @@ -0,0 +1,57 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphSiteUserList + +## SYNOPSIS +Gets the Users list for a \[team\] site + +## SYNTAX + +``` +Get-GraphSiteUserList [-Site] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Site +The \[team\] Site whose user-list will be fetched + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphTeamsApp.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphTeamsApp.md new file mode 100644 index 0000000..4610f81 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphTeamsApp.md @@ -0,0 +1,54 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphTeamsApp + +## SYNOPSIS +Returns apps from the teams app catalog + +## SYNTAX + +``` +Get-GraphTeamsApp [[-App] ] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -App +{{ Fill App Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphToDoList.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphToDoList.md new file mode 100644 index 0000000..10627e7 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphToDoList.md @@ -0,0 +1,89 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphToDoList + +## SYNOPSIS +Gets information about lists used in the To Do app. + +## SYNTAX + +``` +Get-GraphToDoList [[-ToDoList] ] [-UserId ] [-Tasks] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -ToDoList +The ID of the plan or a plan object with an ID property. +if omitted the current users planner will be assumed. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: id + +Required: False +Position: 1 +Default value: DefaultList +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -UserId +The User ID (GUID or UPN) of the list owner. +Defaults to the current user. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tasks +If specified returns the tasks in the list. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphUser.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphUser.md new file mode 100644 index 0000000..3b3001c --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphUser.md @@ -0,0 +1,505 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphUser + +## SYNOPSIS +Gets information from the MS-Graph API about the a user (current user by default) + +## SYNTAX + +### None (Default) +``` +Get-GraphUser [[-UserID] ] [-Current] [] +``` + +### Calendars +``` +Get-GraphUser [[-UserID] ] [-Calendars] [-Current] [] +``` + +### DirectReports +``` +Get-GraphUser [[-UserID] ] [-DirectReports] [-Current] [] +``` + +### Drive +``` +Get-GraphUser [[-UserID] ] [-Drive] [-Current] [] +``` + +### LicenseDetails +``` +Get-GraphUser [[-UserID] ] [-LicenseDetails] [-Current] [] +``` + +### MailboxSettings +``` +Get-GraphUser [[-UserID] ] [-MailboxSettings] [-Current] [] +``` + +### OutlookCategories +``` +Get-GraphUser [[-UserID] ] [-OutlookCategories] [-Current] [] +``` + +### Manager +``` +Get-GraphUser [[-UserID] ] [-Manager] [-Current] [] +``` + +### Teams +``` +Get-GraphUser [[-UserID] ] [-Teams] [-Current] [] +``` + +### Groups +``` +Get-GraphUser [[-UserID] ] [-Groups] [-SecurityGroups] [-Current] [] +``` + +### SecurityGroups +``` +Get-GraphUser [[-UserID] ] [-SecurityGroups] [-Current] [] +``` + +### MemberOf +``` +Get-GraphUser [[-UserID] ] [-MemberOf] [-Current] [] +``` + +### TransitiveMemberOf +``` +Get-GraphUser [[-UserID] ] [-TransitiveMemberOf] [-Current] [] +``` + +### Notebooks +``` +Get-GraphUser [[-UserID] ] [-Notebooks] [-Current] [] +``` + +### Photo +``` +Get-GraphUser [[-UserID] ] [-Photo] [-Current] [] +``` + +### PlannerTasks +``` +Get-GraphUser [[-UserID] ] [-PlannerTasks] [-Current] [] +``` + +### PlannerPlans +``` +Get-GraphUser [[-UserID] ] [-Plans] [-Current] [] +``` + +### Presence +``` +Get-GraphUser [[-UserID] ] [-Presence] [-Current] [] +``` + +### Site +``` +Get-GraphUser [[-UserID] ] [-Site] [-Current] [] +``` + +### ToDoLists +``` +Get-GraphUser [[-UserID] ] [-ToDoLists] [-Current] [] +``` + +### Select +``` +Get-GraphUser [[-UserID] ] -Select [-Current] [] +``` + +## DESCRIPTION +Queries https://graph.microsoft.com/v1.0/me or https://graph.microsoft.com/v1.0/name@domain +or https://graph.microsoft.com/v1.0/\<\\> for information about a user. +Getting a user returns a default set of properties only (businessPhones, displayName, givenName, +id, jobTitle, mail, mobilePhone, officeLocation, preferredLanguage, surname, userPrincipalName). +Use -select to get the other properties. +Most options need consent to use the Directory.Read.All or Directory.AccessAsUser.All scopes. +Some options will also work with user.read; and the following need consent which is task specific +Calendars needs Calendars.Read, OutLookCategries needs MailboxSettings.Read, PlannerTasks needs +Group.Read.All, Drive needs Files.Read (or better), Notebooks needs either Notes.Create or +Notes.Read (or better). + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphUser -MemberOf | ft displayname, description, mail, id +Shows the name description, email address and internal ID for the groups this user is a direct member of +``` + +### EXAMPLE 2 +``` +(get-graphuser -Drive).root.children.name +Gets the user's one drive. The drive object has a .root property which is represents its +root-directory, and this has a .children property which is a collection of the objects +in the root directory. So this command shows the names of files and folders in the root directory. To just see sub folders it is possible to use +get-graphuser -Drive | Get-GraphDrive -subfolders +``` + +## PARAMETERS + +### -UserID +UserID as a guid or User Principal name. +If not specified, it will assume "Current user" if other paraneters are given, or "All users" otherwise. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: id + +Required: False +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -Calendars +Get the user's Calendar(s) + +```yaml +Type: SwitchParameter +Parameter Sets: Calendars +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DirectReports +Select people who have the user as their manager + +```yaml +Type: SwitchParameter +Parameter Sets: DirectReports +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Drive +Get the user's one drive + +```yaml +Type: SwitchParameter +Parameter Sets: Drive +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LicenseDetails +Get user's license Details + +```yaml +Type: SwitchParameter +Parameter Sets: LicenseDetails +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MailboxSettings +Get the user's Mailbox Settings + +```yaml +Type: SwitchParameter +Parameter Sets: MailboxSettings +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OutlookCategories +Get the users Outlook-categories (by default, 6 color names) + +```yaml +Type: SwitchParameter +Parameter Sets: OutlookCategories +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Manager +Get the user's manager + +```yaml +Type: SwitchParameter +Parameter Sets: Manager +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Teams +Get the user's teams + +```yaml +Type: SwitchParameter +Parameter Sets: Teams +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Groups +Get the user's Groups + +```yaml +Type: SwitchParameter +Parameter Sets: Groups +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SecurityGroups +{{ Fill SecurityGroups Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: Groups +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +```yaml +Type: SwitchParameter +Parameter Sets: SecurityGroups +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MemberOf +Get the Directory-Roles and Groups the user belongs to; -Groups or -Teams only return one type of object. + +```yaml +Type: SwitchParameter +Parameter Sets: MemberOf +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TransitiveMemberOf +Get the Directory-Roles and Groups the user belongs to; -Groups or -Teams only return one type of object. + +```yaml +Type: SwitchParameter +Parameter Sets: TransitiveMemberOf +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Notebooks +Get the user's Notebook(s) + +```yaml +Type: SwitchParameter +Parameter Sets: Notebooks +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Photo +Get the user's photo + +```yaml +Type: SwitchParameter +Parameter Sets: Photo +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PlannerTasks +Get the user's assigned tasks in planner. + +```yaml +Type: SwitchParameter +Parameter Sets: PlannerTasks +Aliases: AssignedTasks + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Plans +Get the plans owned by the user in planner. + +```yaml +Type: SwitchParameter +Parameter Sets: PlannerPlans +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Presence +Get the users presence in Teams + +```yaml +Type: SwitchParameter +Parameter Sets: Presence +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Site +Get the user's MySite in SharePoint + +```yaml +Type: SwitchParameter +Parameter Sets: Site +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ToDoLists +Get the user's To-do lists + +```yaml +Type: SwitchParameter +Parameter Sets: ToDoLists +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Select +specifies which properties of the user object should be returned Additional options are available when selecting individual users +The API documents list deviceEnrollmentLimit, deviceManagementTroubleshootingEvents , mailboxSettings which cause errors + +```yaml +Type: String[] +Parameter Sets: Select +Aliases: + +Required: True +Position: Named +Default value: $Script:DefaultUserProperties +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Current +Used to explicitly say "Current user" and will over-ride UserID if one is given. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphUser +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphUserList.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphUserList.md new file mode 100644 index 0000000..d3a89ab --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphUserList.md @@ -0,0 +1,242 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphUserList + +## SYNOPSIS +Returns a list of Azure active directory users for the current tennant. + +## SYNTAX + +### None (Default) +``` +Get-GraphUserList [-Select ] [-Top ] [-ExpandProperty ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] +``` + +### FilterByName +``` +Get-GraphUserList [-Name] [-Select ] [-Top ] [-ExpandProperty ] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] +``` + +### Sorted +``` +Get-GraphUserList [-Select ] [-Top ] -Sort [-ExpandProperty ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] +``` + +### FilterByString +``` +Get-GraphUserList [-Select ] [-Top ] -Filter [-ExpandProperty ] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] +``` + +### FilterToMembers +``` +Get-GraphUserList [-Select ] [-Top ] [-MembersOnly] [-ExpandProperty ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] +``` + +### FilterToGuests +``` +Get-GraphUserList [-Select ] [-Top ] [-GuestsOnly] [-ExpandProperty ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphUserList -filter "Department eq 'Accounts'" +Gets the list with a custom filter this is typically fieldname eq 'value' for equals or +startswith(fieldname,'value') clauses can be joined with and / or. +``` + +## PARAMETERS + +### -Name +If specified searches for users whose first name, surname, displayname, mail address or UPN start with that name. + +```yaml +Type: String[] +Parameter Sets: FilterByName +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Select +Names of the fields to return for each user.Note that some properties - aboutMe, Birthday etc, are only available when getting a single user, not a list. +The API defaults to : businessPhones, displayName, givenName, id, jobTitle, mail, mobilePhone, officeLocation, preferredLanguage, surname, userPrincipalName +The module adds to this set - the exactlist can be set with Set-GraphOption -DefaultUserProperties + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: Property + +Required: False +Position: Named +Default value: $Script:DefaultUserProperties +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Top +The default is to get all + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Sort +Order by clause for the query - most fields result in an error and it can't be combined with some other query values. + +```yaml +Type: String +Parameter Sets: Sorted +Aliases: OrderBy + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Filter +Filter clause for the query for example "startswith(displayname,'Bob') or startswith(displayname,'Robert')" + +```yaml +Type: String +Parameter Sets: FilterByString +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MembersOnly +Adds a filter clause "userType eq 'Member'" + +```yaml +Type: SwitchParameter +Parameter Sets: FilterToMembers +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GuestsOnly +Adds a filter clause "userType eq 'Guest'" + +```yaml +Type: SwitchParameter +Parameter Sets: FilterToGuests +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExpandProperty +{{ Fill ExpandProperty Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Manager +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Proxy +The URI for the proxy server to use + +```yaml +Type: Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxygit + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphUser +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphWorkBook.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphWorkBook.md new file mode 100644 index 0000000..957d7fe --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-GraphWorkBook.md @@ -0,0 +1,95 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Get-GraphWorkBook + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ItemName +``` +Get-GraphWorkBook [-Drive ] [-ItemPath] [] +``` + +### ItemID +``` +Get-GraphWorkBook [-Drive ] -ItemID [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Drive +{{ Fill Drive Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ItemID +{{ Fill ItemID Description }} + +```yaml +Type: Object +Parameter Sets: ItemID +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ItemPath +{{ Fill ItemPath Description }} + +```yaml +Type: Object +Parameter Sets: ItemName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.Object +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgDomainNameerenceByRef_List1.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgDomainNameerenceByRef_List1.md new file mode 100644 index 0000000..9c132c9 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgDomainNameerenceByRef_List1.md @@ -0,0 +1,304 @@ +--- +external help file: Microsoft.Graph.Identity.DirectoryManagement.private.dll-Help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-gb/graph/onenote-update-page +schema: 2.0.0 +--- + +# Get-MgDomainNameerenceByRef_List1 + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Get-MgDomainNameerenceByRef_List1 [-Break] -DomainId [-ExpandProperty ] [-Filter ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Property ] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-Search ] + [-Skip ] [-Sort ] [-Top ] [-PageSize ] [-All] [-CountVariable ] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -All +List all pages. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Break +Wait for .NET debugger to attach + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CountVariable +Specifies a count of the total number of items in a collection. +By default, this variable will be set in the global scope. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: CV + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DomainId +key: id of domain + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExpandProperty +Expand related entities + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: Expand + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Filter +Filter items by property values + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PageSize +Sets the page size of results. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Property +Select properties to be returned + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: Select + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Proxy +The URI for the proxy server to use + +```yaml +Type: Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Search +Search items by search phrases + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Skip +Skip the first n items + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Sort +Order items by property values + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: OrderBy + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Top +Show only the first n items + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: Limit + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphDirectoryObject +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgDomainServiceConfigurationRecord_List1.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgDomainServiceConfigurationRecord_List1.md new file mode 100644 index 0000000..7d42204 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgDomainServiceConfigurationRecord_List1.md @@ -0,0 +1,304 @@ +--- +external help file: Microsoft.Graph.Identity.DirectoryManagement.private.dll-Help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-gb/graph/onenote-update-page +schema: 2.0.0 +--- + +# Get-MgDomainServiceConfigurationRecord_List1 + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Get-MgDomainServiceConfigurationRecord_List1 [-Break] -DomainId [-ExpandProperty ] + [-Filter ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] + [-Property ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] + [-Search ] [-Skip ] [-Sort ] [-Top ] [-PageSize ] [-All] + [-CountVariable ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -All +List all pages. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Break +Wait for .NET debugger to attach + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CountVariable +Specifies a count of the total number of items in a collection. +By default, this variable will be set in the global scope. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: CV + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DomainId +key: id of domain + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExpandProperty +Expand related entities + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: Expand + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Filter +Filter items by property values + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PageSize +Sets the page size of results. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Property +Select properties to be returned + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: Select + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Proxy +The URI for the proxy server to use + +```yaml +Type: Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Search +Search items by search phrases + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Skip +Skip the first n items + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Sort +Order items by property values + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: OrderBy + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Top +Show only the first n items + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: Limit + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphDomainDnsRecord +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgDomainVerificationDnsRecord_List1.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgDomainVerificationDnsRecord_List1.md new file mode 100644 index 0000000..27e7b94 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgDomainVerificationDnsRecord_List1.md @@ -0,0 +1,304 @@ +--- +external help file: Microsoft.Graph.Identity.DirectoryManagement.private.dll-Help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-gb/graph/onenote-update-page +schema: 2.0.0 +--- + +# Get-MgDomainVerificationDnsRecord_List1 + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Get-MgDomainVerificationDnsRecord_List1 [-Break] -DomainId [-ExpandProperty ] + [-Filter ] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] + [-Property ] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] + [-Search ] [-Skip ] [-Sort ] [-Top ] [-PageSize ] [-All] + [-CountVariable ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -All +List all pages. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Break +Wait for .NET debugger to attach + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CountVariable +Specifies a count of the total number of items in a collection. +By default, this variable will be set in the global scope. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: CV + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DomainId +key: id of domain + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExpandProperty +Expand related entities + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: Expand + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Filter +Filter items by property values + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PageSize +Sets the page size of results. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Property +Select properties to be returned + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: Select + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Proxy +The URI for the proxy server to use + +```yaml +Type: Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Search +Search items by search phrases + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Skip +Skip the first n items + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Sort +Order items by property values + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: OrderBy + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Top +Show only the first n items + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: Limit + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphDomainDnsRecord +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgDomain_Get1.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgDomain_Get1.md new file mode 100644 index 0000000..2f46389 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgDomain_Get1.md @@ -0,0 +1,181 @@ +--- +external help file: Microsoft.Graph.Identity.DirectoryManagement.private.dll-Help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-gb/graph/onenote-update-page +schema: 2.0.0 +--- + +# Get-MgDomain_Get1 + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Get-MgDomain_Get1 [-Break] -DomainId [-ExpandProperty ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Property ] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Break +Wait for .NET debugger to attach + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DomainId +key: id of domain + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExpandProperty +Expand related entities + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: Expand + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Property +Select properties to be returned + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: Select + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Proxy +The URI for the proxy server to use + +```yaml +Type: Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphDomain +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgDomain_List1.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgDomain_List1.md new file mode 100644 index 0000000..28746a5 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgDomain_List1.md @@ -0,0 +1,289 @@ +--- +external help file: Microsoft.Graph.Identity.DirectoryManagement.private.dll-Help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-gb/graph/onenote-update-page +schema: 2.0.0 +--- + +# Get-MgDomain_List1 + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Get-MgDomain_List1 [-Break] [-ExpandProperty ] [-Filter ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Property ] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-Search ] + [-Skip ] [-Sort ] [-Top ] [-PageSize ] [-All] [-CountVariable ] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -All +List all pages. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Break +Wait for .NET debugger to attach + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CountVariable +Specifies a count of the total number of items in a collection. +By default, this variable will be set in the global scope. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: CV + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExpandProperty +Expand related entities + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: Expand + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Filter +Filter items by property values + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PageSize +Sets the page size of results. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Property +Select properties to be returned + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: Select + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Proxy +The URI for the proxy server to use + +```yaml +Type: Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Search +Search items by search phrases + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Skip +Skip the first n items + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Sort +Order items by property values + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: OrderBy + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Top +Show only the first n items + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: Limit + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphDomain +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgOrganization_List1.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgOrganization_List1.md new file mode 100644 index 0000000..f2ddf1c --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgOrganization_List1.md @@ -0,0 +1,289 @@ +--- +external help file: Microsoft.Graph.Identity.DirectoryManagement.private.dll-Help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-gb/graph/onenote-update-page +schema: 2.0.0 +--- + +# Get-MgOrganization_List1 + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Get-MgOrganization_List1 [-Break] [-ExpandProperty ] [-Filter ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Property ] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-Search ] + [-Skip ] [-Sort ] [-Top ] [-PageSize ] [-All] [-CountVariable ] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -All +List all pages. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Break +Wait for .NET debugger to attach + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CountVariable +Specifies a count of the total number of items in a collection. +By default, this variable will be set in the global scope. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: CV + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExpandProperty +Expand related entities + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: Expand + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Filter +Filter items by property values + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PageSize +Sets the page size of results. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Property +Select properties to be returned + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: Select + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Proxy +The URI for the proxy server to use + +```yaml +Type: Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Search +Search items by search phrases + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Skip +Skip the first n items + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Sort +Order items by property values + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: OrderBy + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Top +Show only the first n items + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: Limit + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphOrganization +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgSubscribedSku_Get1.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgSubscribedSku_Get1.md new file mode 100644 index 0000000..b7aff78 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgSubscribedSku_Get1.md @@ -0,0 +1,181 @@ +--- +external help file: Microsoft.Graph.Identity.DirectoryManagement.private.dll-Help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-gb/graph/onenote-update-page +schema: 2.0.0 +--- + +# Get-MgSubscribedSku_Get1 + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Get-MgSubscribedSku_Get1 [-Break] [-ExpandProperty ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Property ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] -SubscribedSkuId [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Break +Wait for .NET debugger to attach + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExpandProperty +Expand related entities + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: Expand + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Property +Select properties to be returned + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: Select + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Proxy +The URI for the proxy server to use + +```yaml +Type: Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SubscribedSkuId +key: id of subscribedSku + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphSubscribedSku +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgSubscribedSku_List1.md b/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgSubscribedSku_List1.md new file mode 100644 index 0000000..6f60ba0 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Get-MgSubscribedSku_List1.md @@ -0,0 +1,289 @@ +--- +external help file: Microsoft.Graph.Identity.DirectoryManagement.private.dll-Help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-gb/graph/onenote-update-page +schema: 2.0.0 +--- + +# Get-MgSubscribedSku_List1 + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Get-MgSubscribedSku_List1 [-Break] [-ExpandProperty ] [-Filter ] + [-HttpPipelineAppend ] [-HttpPipelinePrepend ] [-Property ] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-Search ] + [-Skip ] [-Sort ] [-Top ] [-PageSize ] [-All] [-CountVariable ] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -All +List all pages. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Break +Wait for .NET debugger to attach + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CountVariable +Specifies a count of the total number of items in a collection. +By default, this variable will be set in the global scope. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: CV + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExpandProperty +Expand related entities + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: Expand + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Filter +Filter items by property values + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PageSize +Sets the page size of results. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Property +Select properties to be returned + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: Select + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Proxy +The URI for the proxy server to use + +```yaml +Type: Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Search +Search items by search phrases + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Skip +Skip the first n items + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Sort +Order items by property values + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: OrderBy + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Top +Show only the first n items + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: Limit + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphSubscribedSku +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Grant-GraphDirectoryRole.md b/Microsoft.Graph.PlusPlus.Docs/docs/Grant-GraphDirectoryRole.md new file mode 100644 index 0000000..66b35f2 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Grant-GraphDirectoryRole.md @@ -0,0 +1,118 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Grant-GraphDirectoryRole + +## SYNOPSIS +Grants a directory role to a user or group + +## SYNTAX + +``` +Grant-GraphDirectoryRole [-Role] [-Member] [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Role +The role(s) to revoke, either as role names or a role objects. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Member +The member to add, can be a user name, or an object representing either a group with IsAssignableToRole set or a user. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Force +Runs the command with no confirmation. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Grant-GraphLicense.md b/Microsoft.Graph.PlusPlus.Docs/docs/Grant-GraphLicense.md new file mode 100644 index 0000000..f811259 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Grant-GraphLicense.md @@ -0,0 +1,172 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Grant-GraphLicense + +## SYNOPSIS +Grants the licence to use a particular stock-keeping-unit (SKU) to users or groups + +## SYNTAX + +### ByUserID (Default) +``` +Grant-GraphLicense [-SKUID] [-UserID] [-DisabledPlans ] [-UsageLocation ] + [-Force] [-WhatIf] [-Confirm] [] +``` + +### ByGroupID +``` +Grant-GraphLicense [-SKUID] [-GroupID] [-DisabledPlans ] [-UsageLocation ] + [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -SKUID +The SKU to get either as an ID or a SKU object containing an ID + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UserID +ID(s) for users to receive permission ("me" will select the current user), the command will accept user objects and attempt to resolve names to IDs + +```yaml +Type: Object +Parameter Sets: ByUserID +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -GroupID +ID(s) for group(s) to receive permission, the command will accept group objects and attempt to resolve names to IDs + +```yaml +Type: Object +Parameter Sets: ByGroupID +Aliases: Team + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisabledPlans +Disables individual parts of the the SKU + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UsageLocation +A two letter country code (ISO standard 3166). +Examples include: 'US', 'JP', and 'GB' Can be set/reset here + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Runs the command without a confirmation dialog + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Import-GraphGroup.md b/Microsoft.Graph.PlusPlus.Docs/docs/Import-GraphGroup.md new file mode 100644 index 0000000..bbdcdb1 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Import-GraphGroup.md @@ -0,0 +1,115 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Import-GraphGroup + +## SYNOPSIS +Imports a list of groups from a CSV file + +## SYNTAX + +``` +Import-GraphGroup [-Path] [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Takes a list of CSV files and looks for four columns +* Action is either Add or Remove - other values will cause the row to be ignored +* DisplayName the name which will be used for add/remove operations. +* Description - the longer text describing the group +* Type is either Security to configure a non-mail-enabled Security group, + or Team, to teams enable a group. +Blank or other values will create a non-security + email enabled group which can be teams-enabled later. +* Visibility - one of 'private', 'public', 'hiddenmembership' +The command fetches the list of existing groups, any marked "remove" in the file +will be removed, and marked "add" who are not in the group will be added using +the type, visibility, and description settings. +IF the group exists no check is done to see that it matches the file settings. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Path +One or more files to read for input. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Force +Disables any prompt for confirmation + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Import-GraphGroupMember.md b/Microsoft.Graph.PlusPlus.Docs/docs/Import-GraphGroupMember.md new file mode 100644 index 0000000..f00ee1f --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Import-GraphGroupMember.md @@ -0,0 +1,109 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Import-GraphGroupMember + +## SYNOPSIS +Imports a list of group memberships from a CSV file + +## SYNTAX + +``` +Import-GraphGroupMember [-Path] [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Takes a list of CSV files and looks for three columns +* Action is either Add or Remove - other values will cause the row to be ignored +* MemberOf the name of ONE group the user should be added to or removed from +* UserPrincipalName the name which will be used for add/remove operations. +for each named group the command fetches the membership, users in the group, +who are marked "remove" in the file will be removed, and users +marked "add" in the file who are not in the group will be added. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Path +One or more files to read for input. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Force +Usually the command will prompt for confirmation -Force disables this primpt + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Import-GraphUser.md b/Microsoft.Graph.PlusPlus.Docs/docs/Import-GraphUser.md new file mode 100644 index 0000000..d44e484 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Import-GraphUser.md @@ -0,0 +1,136 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Import-GraphUser + +## SYNOPSIS +Imports a list of users from a CSV file + +## SYNTAX + +``` +Import-GraphUser [-Path] [-Force] [-Quiet] [-ListSeparator ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +Takes a list of CSV files and looks for xxxx columns +* Action is either Add, Remove or Set - other values will cause the row to be ignored +* DisplayName + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Path +One or more files to read for input. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Force +Disables any prompt for confirmation + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Quiet +Supresses output of Added, Removed, or No action messages for each row in the file. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ListSeparator +Fields which are lists will be split at , or ; by default but a replacement split expression may be given + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: \s*,\s*|\s*;\s* +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Import-GraphWorksheet.md b/Microsoft.Graph.PlusPlus.Docs/docs/Import-GraphWorksheet.md new file mode 100644 index 0000000..173ce53 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Import-GraphWorksheet.md @@ -0,0 +1,127 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Import-GraphWorksheet + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +### ItemName +``` +Import-GraphWorksheet [-Drive ] [-ItemPath] [[-SheetName] ] [-AsHashTable] + [] +``` + +### ItemID +``` +Import-GraphWorksheet [-Drive ] -ItemID [[-SheetName] ] [-AsHashTable] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AsHashTable +{{ Fill AsHashTable Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Drive +{{ Fill Drive Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ItemID +{{ Fill ItemID Description }} + +```yaml +Type: Object +Parameter Sets: ItemID +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ItemPath +{{ Fill ItemPath Description }} + +```yaml +Type: Object +Parameter Sets: ItemName +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SheetName +{{ Fill SheetName Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: WorkSheetName + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.Object +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Invoke-GraphRequest.md b/Microsoft.Graph.PlusPlus.Docs/docs/Invoke-GraphRequest.md new file mode 100644 index 0000000..f6cbc34 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Invoke-GraphRequest.md @@ -0,0 +1,370 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Invoke-GraphRequest + +## SYNOPSIS +Wrappper for Invoke-MgGraphRequest.With token management and result pre-processing + +## SYNTAX + +``` +Invoke-GraphRequest [-Uri] [[-Method] ] [[-Body] ] [-Headers ] + [-OutputFilePath ] [-InferOutputFileName] [-InputFilePath ] [-PassThru] + [-Token ] [-SkipHeaderValidation] [-ContentType ] + [-Authentication ] [-SessionVariable ] + [-ResponseHeadersVariable ] [-StatusCodeVariable ] [-SkipHttpErrorCheck] [-ValueOnly] + [-AllValues] [-ExcludeProperty ] [-PropertyNotMatch ] [-AsType ] + [] +``` + +## DESCRIPTION +Adds -ValueOnly to return just the value part + -AllValues to return gather multiple sets when data is paged + -AsType to convert the retuned results to a specific type + -ExcludeProperty and -PropertyNotMatch for results which have properties which aren't in the specified type + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Uri +Uri to call can be a segment such as /beta/me or a fully qualified https://graph.microsoft.com/beta/me + +```yaml +Type: Uri +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Method +Http Method + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Body +Request body, required when Method is POST or PATCH + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 4 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Headers +Optional custom headers, commonly @{'ConsistencyLevel'='eventual'} + +```yaml +Type: IDictionary +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OutputFilePath +Output file where the response body will be saved + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InferOutputFileName +{{ Fill InferOutputFileName Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputFilePath +Input file to send in the request + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Indicates that the cmdlet returns the results, in addition to writing them to a file. +Only valid when the OutFile parameter is also used. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Token +OAuth or Bearer token to use instead of acquired token + +```yaml +Type: SecureString +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkipHeaderValidation +Add headers to request header collection without validation + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ContentType +Body content type, for exmaple 'application/json' + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Authentication +Graph Authentication type - 'default' or 'userProvivedToken' + +```yaml +Type: GraphRequestAuthenticationType +Parameter Sets: (All) +Aliases: +Accepted values: Default, UserProvidedToken + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SessionVariable +Specifies a web request session. +Enter the variable name, including the dollar sign ($).You can''t use the SessionVariable and GraphRequestSession parameters in the same command. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: SV + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ResponseHeadersVariable +{{ Fill ResponseHeadersVariable Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: RHV + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StatusCodeVariable +{{ Fill StatusCodeVariable Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SkipHttpErrorCheck +{{ Fill SkipHttpErrorCheck Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ValueOnly +If specified returns the .values property instead of the whole JSON object returned by the API call + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllValues +If specified, loops through multi-paged results indicated by an '@odata.nextLink' property + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExcludeProperty +If specified removes properties found in the JSON before converting to a type or returning the object + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: @() +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PropertyNotMatch +A regular expression for keys to be removed, for example to catch many odata properties + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsType +If specified converts the JSON object to properties of the a new object of the requested type. +Any properties which are expected in the JSON but not defined in the type should be excluded. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Move-GraphMailItem.md b/Microsoft.Graph.PlusPlus.Docs/docs/Move-GraphMailItem.md new file mode 100644 index 0000000..5ddbee9 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Move-GraphMailItem.md @@ -0,0 +1,89 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Move-GraphMailItem + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Move-GraphMailItem [-Item] [-Destination] [-User ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Destination +{{ Fill Destination Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Item +{{ Fill Item Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -User +{{ Fill User Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.Object +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphAttendee.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphAttendee.md new file mode 100644 index 0000000..22292c9 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphAttendee.md @@ -0,0 +1,110 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# New-GraphAttendee + +## SYNOPSIS +Helper function to create a new meeting attendee, with a mail address and the type of attendance. + +## SYNTAX + +### Default (Default) +``` +New-GraphAttendee [-Address] [[-Name] ] [-AttendeeType ] [] +``` + +### PipedStrings +``` +New-GraphAttendee [-AttendeeType ] -InputObject [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Address +The recipient's email address, e.g Alex@contoso.com + +```yaml +Type: String +Parameter Sets: Default +Aliases: Mail + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Name +The displayname for the recipient + +```yaml +Type: Object +Parameter Sets: Default +Aliases: DisplayName + +Required: False +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -AttendeeType +Is the attendee required or optional or a resource (such as a room). +Defaults to required + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Required +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -InputObject +{{ Fill InputObject Description }} + +```yaml +Type: Object +Parameter Sets: PipedStrings +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.Collections.Hashtable +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphBooleanColumn.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphBooleanColumn.md new file mode 100644 index 0000000..e2f11c8 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphBooleanColumn.md @@ -0,0 +1,46 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/calculatedcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphBooleanColumn + +## SYNOPSIS +Creates a definition of a Sharepoint calculated column + +## SYNTAX + +``` +New-GraphBooleanColumn [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.Collections.Hashtable +## NOTES + +## RELATED LINKS + +[https://docs.microsoft.com/en-us/graph/api/resources/calculatedcolumn?view=graph-rest-1.0](https://docs.microsoft.com/en-us/graph/api/resources/calculatedcolumn?view=graph-rest-1.0) + diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphCalculatedColumn.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphCalculatedColumn.md new file mode 100644 index 0000000..a172d9a --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphCalculatedColumn.md @@ -0,0 +1,92 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/calculatedcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphCalculatedColumn + +## SYNOPSIS +Creates a definition of a Sharepoint calculated column + +## SYNTAX + +``` +New-GraphCalculatedColumn [[-Formula] ] [[-Format] ] [[-OutputType] ] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Formula +The formula used to calculate the value. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Format +Should the value be presented as a date only or a date and time + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: DateTime +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OutputType +Should the result be treated as Number, text, date, Currency or boolean + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: Text +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.Collections.Hashtable +## NOTES + +## RELATED LINKS + +[https://docs.microsoft.com/en-us/graph/api/resources/calculatedcolumn?view=graph-rest-1.0](https://docs.microsoft.com/en-us/graph/api/resources/calculatedcolumn?view=graph-rest-1.0) + diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphChannel.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphChannel.md new file mode 100644 index 0000000..2a57209 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphChannel.md @@ -0,0 +1,121 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/calculatedcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphChannel + +## SYNOPSIS +Adds a channel to a team + +## SYNTAX + +``` +New-GraphChannel [-Team] [-Name] [-Description ] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +This requires the Group.ReadWrite.All scope. + +## EXAMPLES + +### EXAMPLE 1 +``` +$newChannel = New-GraphChannel -Team $newTeam -Name $newProjectName -Description "For anything about project $newProjectName" +$newTeam holds the result of creating a team with New-GraphTeam... +$newProjectName holds the name of a project the team will be working on. +This command creates a new channel in Teams, and stores the result in a variable +which can then be used to post messages to the channel, or add tabs to it. +``` + +## PARAMETERS + +### -Team +The team where the channel will be added, either as an ID or a team object + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Name +Display name for the new channel + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: DisplayName + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Description +Description for the new channel + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphChannelMessage.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphChannelMessage.md new file mode 100644 index 0000000..e0431dc --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphChannelMessage.md @@ -0,0 +1,149 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/calculatedcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphChannelMessage + +## SYNOPSIS +Adds a new thread in a channel in Teams. + +## SYNTAX + +``` +New-GraphChannelMessage [-Team ] [-Channel] [-Content] [-ContentType ] + [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +>$General = Get-GraphTeam $newTeam -ChannelName "General" +>Add-GraphChannelMessage -Channel $General -Content "Project Firebird now has its own channel." +This adds a message +``` + +## PARAMETERS + +### -Team +A team object or the ID of the team, if it can't be derived from the channel. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Channel +The channel to post to either as an ID or a channel object. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Content +The Message body - text by default, specify -contentType if using HTML + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ContentType +The format of the content, text by default , or HTML + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Text +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +if Specified the message will be created without prompting. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphChannelReply.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphChannelReply.md new file mode 100644 index 0000000..55f318c --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphChannelReply.md @@ -0,0 +1,180 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/calculatedcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphChannelReply + +## SYNOPSIS +Posts a reply to a message in a Teams channel + +## SYNTAX + +``` +New-GraphChannelReply [-Message] [-Team ] [-Channel ] [-Content] + [-ContentType ] [-Passthru] [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Message +The Message to reply to as an ID or a message object + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Team +If the message or channel parameters don't include the team ID, the team either as an ID or an object containing the ID + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Channel +If Message does not contain the channel, the channel either as an ID or an object containing an ID and possibly the team ID + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Content +The Message body - text by default, specify -contentType if using HTML + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ContentType +The format of the content, text by default , or HTML + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Text +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Passthru +Normally the reply is added 'silently'. +If passthru is specified, the new message will be returned. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: PT + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +if Specified the message will be created without prompting. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphChoiceColumn.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphChoiceColumn.md new file mode 100644 index 0000000..cb1ca43 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphChoiceColumn.md @@ -0,0 +1,91 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/lookupcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphChoiceColumn + +## SYNOPSIS +Creates a definition of a Sharepoint choice column + +## SYNTAX + +``` +New-GraphChoiceColumn [-Choices] [-DisplayAs ] [-AllowTextEntry] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Choices +The list of values available for this column.. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisplayAs +How the choices are to be presented in the UX, defaults to dropdown menu + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: DropDownMenu +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowTextEntry +Specified to indicates that values in the column should be able to exceed the standard limit of 255 characters. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.Collections.Hashtable +## NOTES + +## RELATED LINKS + +[https://docs.microsoft.com/en-us/graph/api/resources/lookupcolumn?view=graph-rest-1.0](https://docs.microsoft.com/en-us/graph/api/resources/lookupcolumn?view=graph-rest-1.0) + diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphColumn.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphColumn.md new file mode 100644 index 0000000..f289307 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphColumn.md @@ -0,0 +1,256 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/columndefinition?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphColumn + +## SYNOPSIS +Create a new Column definition for a sharepoint list + +## SYNTAX + +### None (Default) +``` +New-GraphColumn [-Name] [-ColumnDefinition] [-ColumnGroup ] + [-Description ] [-DisplayName ] [-Indexed ] [-ReadOnly ] + [-Required ] [-EnforceUniqueValues ] [-HIDden ] [] +``` + +### DefaultbyFormula +``` +New-GraphColumn [-Name] [-ColumnDefinition] [-ColumnGroup ] + [-Description ] [-DisplayName ] -DefaultValueFormula [-Indexed ] + [-ReadOnly ] [-Required ] [-EnforceUniqueValues ] [-HIDden ] + [] +``` + +### DefaultbyValue +``` +New-GraphColumn [-Name] [-ColumnDefinition] [-ColumnGroup ] + [-Description ] [-DisplayName ] -DefaultValueString [-Indexed ] + [-ReadOnly ] [-Required ] [-EnforceUniqueValues ] [-HIDden ] + [] +``` + +## DESCRIPTION +New-GraphList uses column definitions to set up a new list. +Each column has a name, description, default and one of the properties from the following list +boolean, calculated, choice, currency, dateTime, lookup, number, personOrGroup or text +Flags can also be set to say if the column is indexed, Readonly and/or required. +Existing Columns defined in the site can be fetched with Get-GraphSiteColumn +New-GraphColumn defines a new column to be included in a list, and a typical list will need +multiple columns, which may be a mixture of new and existing columns. +The specifics of each of the column types is handled by a new-{typeName}Column command. +Examples appear in New-GraphList + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Name +The API-facing name of the column as it appears in the fields on a listItem. +For the user-facing name, see displayName. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ColumnDefinition +A definition created with on of the New-*Column commands for a text, currency, boolean etc + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ColumnGroup +For site columns, the name of the group this column belongs to. +Helps organize related columns. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Description +The user-facing description of the column. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisplayName +The user-facing name of the column. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultValueFormula +Fills in the default value using a formula + +```yaml +Type: String +Parameter Sets: DefaultbyFormula +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultValueString +Fills in the defaultt value using a fixed value + +```yaml +Type: String +Parameter Sets: DefaultbyValue +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Indexed +If specified the column is indexed to help the perfomance of searching and grouping. + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ReadOnly +Specifies whether the column values can be modified. + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Required +Specifies whether the column value is not optional. + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnforceUniqueValues +If true, no two list items may have the same value for this column. + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HIDden +Specifies whether the column is displayed in the user interface. + +```yaml +Type: Boolean +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS + +[https://docs.microsoft.com/en-us/graph/api/resources/columndefinition?view=graph-rest-1.0](https://docs.microsoft.com/en-us/graph/api/resources/columndefinition?view=graph-rest-1.0) + +[New-GraphList]() + diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphContact.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphContact.md new file mode 100644 index 0000000..8071935 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphContact.md @@ -0,0 +1,498 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/columndefinition?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphContact + +## SYNOPSIS +Adds an entry to the current users Outlook contacts + +## SYNTAX + +``` +New-GraphContact [[-GivenName] ] [[-MiddleName] ] [[-Initials] ] [[-Surname] ] + [[-NickName] ] [[-FileAs] ] [[-DisplayName] ] [[-CompanyName] ] + [[-JobTitle] ] [[-Department] ] [[-Manager] ] [[-Email] ] [[-IM] ] + [[-MobilePhone] ] [[-BusinessPhones] ] [[-HomePhones] ] [[-Homeaddress] ] + [[-BusinessAddress] ] [[-OtherAddress] ] [[-Categories] ] [[-Birthday] ] + [[-PersonalNotes] ] [[-Profession] ] [[-AssistantName] ] [[-Children] ] + [[-SpouseName] ] [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Almost all the paramters can be accepted form a piped object to make import easier. + +## EXAMPLES + +### EXAMPLE 1 +``` +New-GraphContact -GivenName Pavel -Surname Bansky -Email pavelb@fabrikam.onmicrosoft.com -BusinessPhones "+1 732 555 0102" +Creates a new contact; if no displayname is given, one will be decided using given name and suranme; +``` + +### EXAMPLE 2 +``` +>$PavelMail = New-GraphRecipient -DisplayName "Pavel Bansky [Fabikam]" -Mail pavelb@fabrikam.onmicrosoft.com +>New-GraphContact -GivenName Pavel -Surname Bansky -Email $pavelmail -BusinessPhones "+1 732 555 0102" + This creates the same contanct but sets up their email with a display name. + New recipient creates a hash table + @{'emailaddress' = @ { + 'name' = 'Pavel Bansky [Fabikam]' + 'address' = 'pavelb@fabrikam.onmicrosoft.com' + } + } +``` + +## PARAMETERS + +### -GivenName +{{ Fill GivenName Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -MiddleName +{{ Fill MiddleName Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Initials +{{ Fill Initials Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Surname +{{ Fill Surname Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 4 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -NickName +{{ Fill NickName Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 5 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -FileAs +{{ Fill FileAs Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 6 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DisplayName +{{ Fill DisplayName Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 7 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -CompanyName +{{ Fill CompanyName Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 8 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -JobTitle +{{ Fill JobTitle Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 9 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Department +{{ Fill Department Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 10 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Manager +{{ Fill Manager Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 11 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Email +One or more mail addresses, as a single string with semi colons between addresses or as an array of strings or MailAddress objects created with New-GraphMailAddress + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 12 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -IM +One or more instant messaging addresses, as an array or as a single string with semi colons between addresses + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 13 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -MobilePhone +A single mobile phone number + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 14 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -BusinessPhones +One or more Business phones either as an array or as single string with semi colons between numbers + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 15 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -HomePhones +One or more home phones either as an array or as single string with semi colons between numbers + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 16 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Homeaddress +An address object created with New-GraphPhysicalAddress + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 17 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -BusinessAddress +An address object created with New-GraphPhysicalAddress + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 18 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -OtherAddress +An address object created with New-GraphPhysicalAddress + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 19 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Categories +One or more categories either as an array or as single string with semi colons between them. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 20 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Birthday +The contact's Birthday as a date + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: 21 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PersonalNotes +{{ Fill PersonalNotes Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 22 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Profession +{{ Fill Profession Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 23 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -AssistantName +{{ Fill AssistantName Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 24 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Children +{{ Fill Children Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 25 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SpouseName +{{ Fill SpouseName Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 26 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Force +If sepcified the contact will be created without prompting for confirmation. +This is the default state but can change with the setting of confirmPreference. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphContact +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphCurrencyColumn.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphCurrencyColumn.md new file mode 100644 index 0000000..0726ce6 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphCurrencyColumn.md @@ -0,0 +1,61 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/datetimecolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphCurrencyColumn + +## SYNOPSIS +Creates a definition of a Sharepoint datetime column + +## SYNTAX + +``` +New-GraphCurrencyColumn [[-Locale] ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Locale +{{ Fill Locale Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: (Get-Culture) +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.Collections.Hashtable +## NOTES + +## RELATED LINKS + +[https://docs.microsoft.com/en-us/graph/api/resources/datetimecolumn?view=graph-rest-1.0](https://docs.microsoft.com/en-us/graph/api/resources/datetimecolumn?view=graph-rest-1.0) + diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphDateTimeColumn.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphDateTimeColumn.md new file mode 100644 index 0000000..27c2762 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphDateTimeColumn.md @@ -0,0 +1,78 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/datetimecolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphDateTimeColumn + +## SYNOPSIS +Creates a definition of a Sharepoint datetime column + +## SYNTAX + +``` +New-GraphDateTimeColumn [[-Format] ] [[-DisplayAs] ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Format +Should the value be presented as a date only or a date and time + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: DateTime +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisplayAs +Should the UX use default rendering or relative representation (eg. +"today at 3:00 PM") or the standard absolute representation (eg. +"5/10/2017 3:20 PM") + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: Default +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.Collections.Hashtable +## NOTES + +## RELATED LINKS + +[https://docs.microsoft.com/en-us/graph/api/resources/datetimecolumn?view=graph-rest-1.0](https://docs.microsoft.com/en-us/graph/api/resources/datetimecolumn?view=graph-rest-1.0) + diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphFolder.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphFolder.md new file mode 100644 index 0000000..f9f6cee --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphFolder.md @@ -0,0 +1,120 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/datetimecolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphFolder + +## SYNOPSIS +Creates a new folder on OneDrive. + +## SYNTAX + +``` +New-GraphFolder [-Path] [-Drive ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +By default this will create a new folder on the user's one drive, and if the no Parent ID is specified +the folder will be created in the root of the drive. + +## EXAMPLES + +### EXAMPLE 1 +``` +New-GraphFolder -Path '/Documents/Project-x' +Creates a new folder named "Project x" in the current users Documents folder +``` + +### EXAMPLE 2 +``` +New-GraphFolder -Path 'root:/Documents/Project-Y' +Creates a new folder named "Project Y" in the current users Documents folder +Note that tab completion will change /Projects/ to root:/Projects +``` + +### EXAMPLE 3 +``` +>$drive = Get-GraphTeam -ByName Consultants -Drive +>New-GraphFolder -Drive $drive -Path 'root:/Documents/Project Firebird/Planning' +Gets the drive for the Consultants team; and adds a subfolder under documents. +As in the previous examples root:/ is how tab completion would render the path, but +'/Documents/Project Firebird/Planning' works just as well. +``` + +## PARAMETERS + +### -Path +The name for the new folder + +```yaml +Type: String +Parameter Sets: (All) +Aliases: FolderPath + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Drive +The drive holding the new folder - defaults to the user's OneDrive but can be a shared one e.g. +Drives/{ID} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Me/Drive +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphGroup.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphGroup.md new file mode 100644 index 0000000..83ca9ec --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphGroup.md @@ -0,0 +1,255 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/datetimecolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphGroup + +## SYNOPSIS +Adds a new group/team + +## SYNTAX + +### None (Default) +``` +New-GraphGroup [-Name] [-Description ] [-MailNickName ] [-Visibility ] + [-Members ] [-Force] [-WhatIf] [-Confirm] [] +``` + +### Security +``` +New-GraphGroup [-Name] [-AsSecurity] [-AsAssignableToRole] [-Description ] + [-MailNickName ] [-Visibility ] [-Members ] [-Owners ] [-Force] [-WhatIf] + [-Confirm] [] +``` + +### Team +``` +New-GraphGroup [-Name] [-AsTeam] [-Description ] [-MailNickName ] + [-Visibility ] [-Members ] [-Force] [-WhatIf] [-Confirm] [] +``` + +### Owners +``` +New-GraphGroup [-Name] [-Description ] [-MailNickName ] [-Visibility ] + [-Members ] [-Owners ] [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Every team is also a group, but not every group is team enabled. +This Command has an alias of New-GraphTeam so you call it as team or group +By default it creates the group as a team UNLESS you specify -NoTeam. +A non-Teams enabled group can be teams enabled with Set-GraphGroup -EnableTeam +Creating and modifying groups requires consent to use the Group.ReadWrite.All scope + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Name +The name of the Group / Team + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsSecurity +Unless specified, groups will be mail enabled "unfied" / Microsoft365 groups +The Graph API doesn't allow mail-enabled & security-enabled, or mail-disabled & unified +Only unified groups can be made into teams. +Unified groups can only contain users, +Security groups can contain other security principals + +```yaml +Type: SwitchParameter +Parameter Sets: Security +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsAssignableToRole +If specified allows Azure AD roles can be assigned to the group. +This forces visibility to be private, and can't be changed. + +```yaml +Type: SwitchParameter +Parameter Sets: Security +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AsTeam +New-GraphGroup only enables teams functonality if -AsTeam is specified. +Calling as New-GraphTeam defaults AsTeam to true + +```yaml +Type: SwitchParameter +Parameter Sets: Team +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Description +A description for the group + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MailNickName +The group/team's mail nickname + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Visibility +The visibility of the group, Public by default, it can be 'private' or 'hidden membership' + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Public +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Members +Ordinary Members of the group - assumed to be users, given by their User Principal Name or ID or as objects + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Owners +Owners of the group - assumed to be users, given by their User Principal Name or ID or as objects + +```yaml +Type: Object +Parameter Sets: Security, Owners +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +if specified group will be added without prompting + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphGroup +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphInvitation.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphInvitation.md new file mode 100644 index 0000000..2c7a3e5 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphInvitation.md @@ -0,0 +1,158 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/datetimecolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphInvitation + +## SYNOPSIS +Invites an external user to become a guest in Azure AD + +## SYNTAX + +``` +New-GraphInvitation [[-EmailAddress] ] [-DisplayName ] [-UserType ] + [-RedirectUrl ] [-SendInvitationMessage] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -EmailAddress +The email address of the user being invited. +The characters #~ ! +$ % ^ & * ( \[ { \< \> } \] ) + = \ / | ; : " " ? +, are not permitted +A . +or - is permitted except at the beginning or end of the name. +A _ is permitted anywhere. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -DisplayName +The display name of the user being invited. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UserType +The userType of the user being invited. +By default, this is Guest. +You can invite as Member if you are a company administrator.' + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RedirectUrl +The URL the user should be redirected to once the invitation is redeemed. +Required. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Https://mysignins.microsoft.com/ +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SendInvitationMessage +Indicates whether an email should be sent to the user being invited or not. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphList.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphList.md new file mode 100644 index 0000000..7a1531b --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphList.md @@ -0,0 +1,167 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/datetimecolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphList + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +New-GraphList [-DisplayName] [-Site ] [-Template ] [-Description ] + [-Columns ] [-Hidden] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Columns +{{ Fill Columns Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Description +{{ Fill Description Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisplayName +{{ Fill DisplayName Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: Name + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Hidden +{{ Fill Hidden Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Site +{{ Fill Site Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Template +{{ Fill Template Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: documentLibrary, genericList, tasks, survey, links, announcements, contacts + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphLookupColumn.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphLookupColumn.md new file mode 100644 index 0000000..3f20ba6 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphLookupColumn.md @@ -0,0 +1,123 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/lookupcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphLookupColumn + +## SYNOPSIS +Creates a definition of a Sharepoint lookup column + +## SYNTAX + +``` +New-GraphLookupColumn [-ListID] [-ColumnName] [-PrimaryLookupColumnID ] + [-MultipleSelection] [-AllowUnlimitedLength] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -ListID +The unique identifier of the lookup source list. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ColumnName +The name of the lookup source column. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PrimaryLookupColumnID +If specified, this column is a secondary lookup, pulling an additional field from the list item looked up by the primary lookup. +Use the list item looked up by the primary as the source for the column named here + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MultipleSelection +If Specified allows multiple/values to be specified + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowUnlimitedLength +Specified to indicates that values in the column should be able to exceed the standard limit of 255 characters. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.Collections.Hashtable +## NOTES + +## RELATED LINKS + +[https://docs.microsoft.com/en-us/graph/api/resources/lookupcolumn?view=graph-rest-1.0](https://docs.microsoft.com/en-us/graph/api/resources/lookupcolumn?view=graph-rest-1.0) + diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphMailAddress.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphMailAddress.md new file mode 100644 index 0000000..3c1c624 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphMailAddress.md @@ -0,0 +1,72 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/lookupcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphMailAddress + +## SYNOPSIS +Helper function to create a email addresses + +## SYNTAX + +``` +New-GraphMailAddress [-Address] [-Name ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Address +The recipient's email address, e.g Alex@contoso.com + +```yaml +Type: String +Parameter Sets: (All) +Aliases: Mail + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Name +The displayname for the recipient + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: DisplayName + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphNumberColumn.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphNumberColumn.md new file mode 100644 index 0000000..2cf65ac --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphNumberColumn.md @@ -0,0 +1,107 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/numbercolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphNumberColumn + +## SYNOPSIS +Creates a definition of a Sharepoint number column + +## SYNTAX + +``` +New-GraphNumberColumn [[-DisplayAs] ] [[-DecimalPlaces] ] [[-Max] ] [[-Min] ] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -DisplayAs +How the value should be presented in the UX, number by default, the only other choice is percentage + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: Number +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DecimalPlaces +How many decimal places to display Auto, None, or the numbers one to five in words + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: Automatic +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Max +Maximum permitted value + +```yaml +Type: Double +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Min +Maximum permitted value + +```yaml +Type: Double +Parameter Sets: (All) +Aliases: + +Required: False +Position: 4 +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.Collections.Hashtable +## NOTES + +## RELATED LINKS + +[https://docs.microsoft.com/en-us/graph/api/resources/numbercolumn?view=graph-rest-1.0](https://docs.microsoft.com/en-us/graph/api/resources/numbercolumn?view=graph-rest-1.0) + diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphOneNoteSection.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphOneNoteSection.md new file mode 100644 index 0000000..b7070ce --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphOneNoteSection.md @@ -0,0 +1,127 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/numbercolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphOneNoteSection + +## SYNOPSIS +Adds a section to a OneNote notebook + +## SYNTAX + +``` +New-GraphOneNoteSection [-Notebook] [-SectionName] [-Force] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +This command Posts to https://graph.microsoft.com/v1.0 + /users/{id}/onenote/notebooks/{id}/sections +or /groups/{id}/onenote/notebooks/{id}/sections +or /sites/{id}/onenote/notebooks/{id}/sections +which requires consent to use the Notes.Create or Notes.ReadWrite scope or better. + +## EXAMPLES + +### EXAMPLE 1 +``` +>$notebook = Get-GraphTeam -ByName accounts -Notebooks +>$section = New-GraphOneNoteSection -Notebook $notebook -SectionName "FY-19 Year End" +>Add-GraphOneNotePage -Section $section -HTMLPage 'Welcome

This section is ready for you to add your pages.

' +``` + +The first command gets the team notebook for the account team; the second adds a section to it +and the third adds a welcome page to the new section. + +## PARAMETERS + +### -Notebook +A graph URI pointing to the notebook, or a notebook object, this can be set by Set-GraphOneNoteHome + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SectionName +Name for the new section. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Force +If specified, the command will run without asking for confirmation; this is the default unless Confirm Preference has been set + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Returns an object representing the new section +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphPersonOrGroupColumn.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphPersonOrGroupColumn.md new file mode 100644 index 0000000..045b9ca --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphPersonOrGroupColumn.md @@ -0,0 +1,91 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/personorgroupcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphPersonOrGroupColumn + +## SYNOPSIS +Creates a definition of a Sharepoint person or group column + +## SYNTAX + +``` +New-GraphPersonOrGroupColumn [-MultipleSelection] [[-DisplayAs] ] [-IncludeGroups] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -MultipleSelection +If Specified allows multiple/users to be specified + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisplayAs +Chooses how the name should be displayed; the default is to show name and presence, but it can first name, title, mail etc. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: NameWithPresence +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IncludeGroups +If Specified allows groups to be selected as well as users + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.Collections.Hashtable +## NOTES + +## RELATED LINKS + +[https://docs.microsoft.com/en-us/graph/api/resources/personorgroupcolumn?view=graph-rest-1.0](https://docs.microsoft.com/en-us/graph/api/resources/personorgroupcolumn?view=graph-rest-1.0) + diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphPhysicalAddress.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphPhysicalAddress.md new file mode 100644 index 0000000..609d05d --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphPhysicalAddress.md @@ -0,0 +1,123 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/personorgroupcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphPhysicalAddress + +## SYNOPSIS +Builds a street / postal / physical address to use in the contact commands + +## SYNTAX + +``` +New-GraphPhysicalAddress [[-Street] ] [[-City] ] [[-State] ] [[-PostalCode] ] + [[-CountryOrRegion] ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +$fabrikamAddress = New-GraphPhysicalAddress "123 Some Street" Seattle WA 98121 "United States" +Creates an address - if the -Street, City, State, Postalcode country are not explictly +specified they will be assigned in that order. Quotes are desireable but only necessary +when a value contains spaces. +It can then be used like this. Set-GraphContact $pavel -BusinessAddress $fabrikamAddress +``` + +## PARAMETERS + +### -Street +Street address. +This can contain carriage returns for a district, e.g. +"101 London Road\`r\`nBotley" + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -City +City, or town as people outside the US tend to call it + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -State +State, Province, County, the administrative level below country + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PostalCode +Postal code. +Even it parses as a number, as with US ZIP codes, it will be converted to a string + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 4 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CountryOrRegion +Usually a country but could be some other geographical entity + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 5 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphRecipient.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphRecipient.md new file mode 100644 index 0000000..3592b4b --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphRecipient.md @@ -0,0 +1,72 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/personorgroupcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphRecipient + +## SYNOPSIS +Creats a new meeting attendee, with a mail address and the type of attendance. + +## SYNTAX + +``` +New-GraphRecipient [-Mail] [[-DisplayName] ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Mail +The recipient's email address, e.g Alex@contoso.com + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -DisplayName +The displayname for the recipient + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphRecurrence.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphRecurrence.md new file mode 100644 index 0000000..ef71a8d --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphRecurrence.md @@ -0,0 +1,213 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/personorgroupcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphRecurrence + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +New-GraphRecurrence [[-DayOfMonth] ] [[-DaysOfWeek] ] [[-FirstDayOfWeek] ] + [[-Index] ] [[-Interval] ] [[-Month] ] [[-Type] ] + [[-NumberOfOccurrences] ] [[-startDate] ] [[-EndDate] ] + [[-RecurrenceTimeZone] ] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -DayOfMonth +{{ Fill DayOfMonth Description }} + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DaysOfWeek +{{ Fill DaysOfWeek Description }} + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: +Accepted values: sunday, monday, tuesday, wednesday, thursday, friday, saturday + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EndDate +{{ Fill EndDate Description }} + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: 9 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FirstDayOfWeek +{{ Fill FirstDayOfWeek Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: sunday, monday, tuesday, wednesday, thursday, friday, saturday + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Index +{{ Fill Index Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: first, second, third, fourth, last + +Required: False +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Interval +{{ Fill Interval Description }} + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: 4 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Month +{{ Fill Month Description }} + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: 5 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NumberOfOccurrences +{{ Fill NumberOfOccurrences Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 7 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RecurrenceTimeZone +{{ Fill RecurrenceTimeZone Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 10 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Type +{{ Fill Type Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: daily, weekly, absoluteMonthly, relativeMonthly, absoluteYearly, relativeYearly + +Required: False +Position: 6 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -startDate +{{ Fill startDate Description }} + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: 8 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +## INPUTS + +### None +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphTeamPlan.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphTeamPlan.md new file mode 100644 index 0000000..c3cbd1c --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphTeamPlan.md @@ -0,0 +1,119 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/personorgroupcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphTeamPlan + +## SYNOPSIS +Creates new a plan (in the planner app) for a team. + +## SYNTAX + +``` +New-GraphTeamPlan [-Team] [-PlanName] [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Team +The ID of the team + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: Group + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -PlanName +Name(s) of the plan(s) to add to this team. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If Specified the plan will be added without confirmation + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphPlannerPlan +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphTextColumn.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphTextColumn.md new file mode 100644 index 0000000..a34cfdf --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphTextColumn.md @@ -0,0 +1,122 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphTextColumn + +## SYNOPSIS +Creates a definition of a sharepoint text column + +## SYNTAX + +``` +New-GraphTextColumn [-MultiLine] [-Append] [[-TextType] ] [[-MaxLength] ] + [[-LinesForEditing] ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -MultiLine +Text is single line unless multiline is specified. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Append +A new entry replaces exisitng text unless append is specified + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TextType +The type of text being stored - plain or richText (plain by default) + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: Plain +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MaxLength +The maximum number of characters for the value. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LinesForEditing +The size of the text box. + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: 0 +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.Collections.Hashtable +## NOTES + +## RELATED LINKS + +[https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0](https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0) + diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphToDoList.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphToDoList.md new file mode 100644 index 0000000..40d34bd --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphToDoList.md @@ -0,0 +1,135 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphToDoList + +## SYNOPSIS +Creates a new list for the To-Do app + +## SYNTAX + +``` +New-GraphToDoList [-Displayname] [-UserId ] [-IsShared] [-Force] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Displayname +The name for the list + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UserId +The User ID (GUID or UPN) of the list owner. +Defaults to the current user, + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: $Global:GraphUser +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IsShared +If specified the the list will be created as a shared list + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If specified any confirmation will be supressed + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphToDoTask.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphToDoTask.md new file mode 100644 index 0000000..7e779c4 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphToDoTask.md @@ -0,0 +1,261 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphToDoTask + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +New-GraphToDoTask [-ToDoList ] [-UserId ] [-Title] [-BodyText ] + [-BodyType ] [-Importance ] [-DueDateTime ] [-Status ] + [-CompletedDateTime ] [-ReminderDateTime ] [-Recurrence ] [-Force] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -BodyText +{{ Fill BodyText Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BodyType +{{ Fill BodyType Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: text, html + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CompletedDateTime +{{ Fill CompletedDateTime Description }} + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DueDateTime +{{ Fill DueDateTime Description }} + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +{{ Fill Force Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Importance +{{ Fill Importance Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: low, normal, high + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Recurrence +{{ Fill Recurrence Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ReminderDateTime +{{ Fill ReminderDateTime Description }} + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Status +{{ Fill Status Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: notStarted, inProgress, completed, waitingOnOthers, deferred + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Title +{{ Fill Title Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ToDoList +{{ Fill ToDoList Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: TodoTaskListId + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UserId +{{ Fill UserId Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphUser.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphUser.md new file mode 100644 index 0000000..bfc8ac1 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphUser.md @@ -0,0 +1,436 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphUser + +## SYNOPSIS +Creates a new user in Azure Active directory + +## SYNTAX + +### DomainFromUPNDisplay +``` +New-GraphUser -UserPrincipalName [-MailNickName ] -DisplayName [-Manager ] + [-UsageLocation ] [-Groups ] [-Roles ] [-Licenses ] + [-Initialpassword ] [-NoPasswordChange] [-ForceMFAPasswordChange] [-PasswordPolicies ] + [-SettableProperties ] [-PasswordRule ] [-Force] [-WhatIf] [-Confirm] + [] +``` + +### DomainFromUPNLast +``` +New-GraphUser -UserPrincipalName [-MailNickName ] [-DisplayName ] -GivenName + -Surname [-Manager ] [-UsageLocation ] [-Groups ] [-Roles ] + [-Licenses ] [-Initialpassword ] [-NoPasswordChange] [-ForceMFAPasswordChange] + [-PasswordPolicies ] [-SettableProperties ] [-DisplayNameRule ] + [-NickNameRule ] [-PasswordRule ] [-Force] [-WhatIf] [-Confirm] [] +``` + +### UPNFromDomainDisplay +``` +New-GraphUser -MailNickName [-Domain ] -DisplayName [-Manager ] + [-UsageLocation ] [-Groups ] [-Roles ] [-Licenses ] + [-Initialpassword ] [-NoPasswordChange] [-ForceMFAPasswordChange] [-PasswordPolicies ] + [-SettableProperties ] [-PasswordRule ] [-Force] [-WhatIf] [-Confirm] + [] +``` + +### UPNFromDomainLast +``` +New-GraphUser [-MailNickName ] [-Domain ] -GivenName -Surname + [-Manager ] [-UsageLocation ] [-Groups ] [-Roles ] [-Licenses ] + [-Initialpassword ] [-NoPasswordChange] [-ForceMFAPasswordChange] [-PasswordPolicies ] + [-SettableProperties ] [-DisplayNameRule ] [-NickNameRule ] + [-PasswordRule ] [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -UserPrincipalName +User principal name for the new user. +If not specified it can be built by specifying Mail nickname and domain name. + +```yaml +Type: String +Parameter Sets: DomainFromUPNDisplay, DomainFromUPNLast +Aliases: UPN + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MailNickName +Mail nickname for the new user. +If not specified the part of the UPN before the @sign will be used, or using the displayname or first/last name + +```yaml +Type: String +Parameter Sets: DomainFromUPNDisplay, DomainFromUPNLast, UPNFromDomainLast +Aliases: Nickname + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +```yaml +Type: String +Parameter Sets: UPNFromDomainDisplay +Aliases: Nickname + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Domain +Domain for the new user - used to create UPN name if the UPN paramater is not provided + +```yaml +Type: String +Parameter Sets: UPNFromDomainDisplay, UPNFromDomainLast +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisplayName +The name displayed in the address book for the user. +This is usually the combination of the user''s first name, middle initial and last name. +This property is required when a user is created and it cannot be cleared during updates. + +```yaml +Type: String +Parameter Sets: DomainFromUPNDisplay, UPNFromDomainDisplay +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +```yaml +Type: String +Parameter Sets: DomainFromUPNLast +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GivenName +The given name (first name) of the user. + +```yaml +Type: String +Parameter Sets: DomainFromUPNLast, UPNFromDomainLast +Aliases: FirstName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Surname +User's last / family name + +```yaml +Type: String +Parameter Sets: DomainFromUPNLast, UPNFromDomainLast +Aliases: LastName + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Manager +ID or UserPrincipalName of the user's manager + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UsageLocation +A two letter country code (ISO standard 3166). +Required for users that will be assigned licenses due to legal requirement to check for availability of services in countries. +Examples include: 'US', 'JP', and 'GB' + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: $Script:DefaultUsageLocation +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Groups +{{ Fill Groups Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Roles +{{ Fill Roles Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Licenses +{{ Fill Licenses Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Initialpassword +The initial password for the user. +If none is specified one will be generated and output by the command + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoPasswordChange +If specified the user will not have to change their password on first logon + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ForceMFAPasswordChange +If specified the user will need to use Multi-factor authentication when changing their password. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PasswordPolicies +Specifies built-in password policies to apply to the user + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SettableProperties +A hash table of properties which can be passed as parameters to Set-GraphUser command after the account is created + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisplayNameRule +A script block specifying how the displayname should be built, by default it is {"$GivenName $Surname"}; + +```yaml +Type: ScriptBlock +Parameter Sets: DomainFromUPNLast, UPNFromDomainLast +Aliases: + +Required: False +Position: Named +Default value: {"$GivenName $Surname"} +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NickNameRule +A script block specifying how the mailnickname should be built, by default it is $GivenName.$Surname with punctuation removed; + +```yaml +Type: ScriptBlock +Parameter Sets: DomainFromUPNLast, UPNFromDomainLast +Aliases: + +Required: False +Position: Named +Default value: {($GivenName -replace '\W','') +'.' + ($Surname -replace '\W','')} +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PasswordRule +A script block specifying how to create a password, by default a date between 1800 and 2199 like 10Oct2126 - easy to type and meets complexity rules. + +```yaml +Type: ScriptBlock +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: {([datetime]"1/1/1800").AddDays((Get-Random 146000)).tostring("ddMMMyyyy")} +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If specified prevents any confirmation dialog from appearing + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphWorkBook.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphWorkBook.md new file mode 100644 index 0000000..d433bf3 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-GraphWorkBook.md @@ -0,0 +1,89 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# New-GraphWorkBook + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +New-GraphWorkBook [-Destination] [-Drive ] [-TemplatePath ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Destination +{{ Fill Destination Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Drive +{{ Fill Drive Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TemplatePath +{{ Fill TemplatePath Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-MgUserTodoListTask_CreateExpanded1.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-MgUserTodoListTask_CreateExpanded1.md new file mode 100644 index 0000000..ab434fd --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-MgUserTodoListTask_CreateExpanded1.md @@ -0,0 +1,457 @@ +--- +external help file: Microsoft.Graph.Users.private.dll-Help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-gb/graph/onenote-update-page +schema: 2.0.0 +--- + +# New-MgUserTodoListTask_CreateExpanded1 + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +New-MgUserTodoListTask_CreateExpanded1 [-AdditionalProperties ] [-Body ] + [-BodyLastModifiedDateTime ] [-Break] [-CompletedDateTime ] + [-CreatedDateTime ] [-DueDateTime ] + [-Extensions ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Id ] [-Importance ] [-IsReminderOn] + [-LastModifiedDateTime ] [-LinkedResources ] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] + [-Recurrence ] [-ReminderDateTime ] + [-Status ] [-Title ] -TodoTaskListId -UserId [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AdditionalProperties +Additional Parameters + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Body +itemBody + +```yaml +Type: IMicrosoftGraphItemBody +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BodyLastModifiedDateTime +The date and time when the task was last modified. +By default, it is in UTC. +You can provide a custom time zone in the request header. +The property value uses ISO 8601 format and is always in UTC time. +For example, midnight UTC on Jan 1, 2020 would look like this: '2020-01-01T00:00:00Z'. + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Break +Wait for .NET debugger to attach + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CompletedDateTime +dateTimeTimeZone + +```yaml +Type: IMicrosoftGraphDateTimeZone +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CreatedDateTime +The date and time when the task was created. +By default, it is in UTC. +You can provide a custom time zone in the request header. +The property value uses ISO 8601 format. +For example, midnight UTC on Jan 1, 2020 would look like this: '2020-01-01T00:00:00Z'. + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DueDateTime +dateTimeTimeZone + +```yaml +Type: IMicrosoftGraphDateTimeZone +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Extensions +The collection of open extensions defined for the task. +Nullable. + +```yaml +Type: IMicrosoftGraphExtension[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Id +Read-only. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Importance +importance + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IsReminderOn +Set to true if an alert is set to remind the user of the task. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LastModifiedDateTime +The date and time when the task was last modified. +By default, it is in UTC. +You can provide a custom time zone in the request header. +The property value uses ISO 8601 format and is always in UTC time. +For example, midnight UTC on Jan 1, 2020 would look like this: '2020-01-01T00:00:00Z'. + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LinkedResources +A collection of resources linked to the task. + +```yaml +Type: IMicrosoftGraphLinkedResource[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Proxy +The URI for the proxy server to use + +```yaml +Type: Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Recurrence +patternedRecurrence + +```yaml +Type: IMicrosoftGraphPatternedRecurrence +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ReminderDateTime +dateTimeTimeZone + +```yaml +Type: IMicrosoftGraphDateTimeZone +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Status +taskStatus + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Title +A brief description of the task. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TodoTaskListId +key: id of todoTaskList + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UserId +key: id of user + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphTodoTask +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/New-MgUserTodoList_CreateExpanded1.md b/Microsoft.Graph.PlusPlus.Docs/docs/New-MgUserTodoList_CreateExpanded1.md new file mode 100644 index 0000000..f12530e --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/New-MgUserTodoList_CreateExpanded1.md @@ -0,0 +1,307 @@ +--- +external help file: Microsoft.Graph.Users.private.dll-Help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-gb/graph/onenote-update-page +schema: 2.0.0 +--- + +# New-MgUserTodoList_CreateExpanded1 + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +New-MgUserTodoList_CreateExpanded1 [-AdditionalProperties ] [-Break] [-DisplayName ] + [-Extensions ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Id ] [-IsOwner] [-IsShared] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-Tasks ] + -UserId [-WellknownListName ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AdditionalProperties +Additional Parameters + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Break +Wait for .NET debugger to attach + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisplayName +The name of the task list. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Extensions +The collection of open extensions defined for the task list. +Nullable. + +```yaml +Type: IMicrosoftGraphExtension[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Id +Read-only. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IsOwner +True if the user is owner of the given task list. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IsShared +True if the task list is shared with other users + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Proxy +The URI for the proxy server to use + +```yaml +Type: Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Tasks +The tasks in this task list. +Read-only. +Nullable. + +```yaml +Type: IMicrosoftGraphTodoTask[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UserId +key: id of user + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WellknownListName +wellknownListName + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.IMicrosoftGraphTodoTaskList +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Out-GraphOneNote.md b/Microsoft.Graph.PlusPlus.Docs/docs/Out-GraphOneNote.md new file mode 100644 index 0000000..5ac3a8e --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Out-GraphOneNote.md @@ -0,0 +1,261 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Out-GraphOneNote + +## SYNOPSIS +Output to a new OneNote page + +## SYNTAX + +### Page (Default) +``` +Out-GraphOneNote [-InputObject ] [[-Property] ] [-Section ] [[-Body] ] + [[-Head] ] [[-Title] ] [-As ] [-ExcludeProperty ] [-PreContent ] + [-PostContent ] [-PassThru] [-Show] [] +``` + +### Fragment +``` +Out-GraphOneNote [-InputObject ] [[-Property] ] [-Section ] [-As ] + [-Fragment] [-ExcludeProperty ] [-PreContent ] [-PostContent ] [-PassThru] + [-Show] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +Generates a page +``` + +### EXAMPLE 2 +``` +start ( Get-process | Out-GraphOneNote -Title "Processes @ $(get-date)" -property Name,Handles,NPM,PM,VM,WS -passthru ).links.oneNoteWebUrl.href +Generates a page in the default section (using the environment variable DefaultOneNoteSection) and opens it in a web browser. +``` + +## PARAMETERS + +### -InputObject +Specifies the objects to be represented in HTML. + +```yaml +Type: PSObject +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Property +Includes the specified properties of the objects in the output + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: @('*') +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Section +The section where the content will be created: to this can be set by Set-GraphOneNoteHome + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Body +Specifies the text to add after the opening \ tag. +By default, there is no text in that position. + +```yaml +Type: String[] +Parameter Sets: Page +Aliases: + +Required: False +Position: 5 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Head +Specifies the content of the \ tag. +The default is "\HTML TABLE\". +If you use the Head parameter, the Title parameter is ignored. + +```yaml +Type: String[] +Parameter Sets: Page +Aliases: + +Required: False +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Title +Specifies a title for the Page. + +```yaml +Type: String +Parameter Sets: Page +Aliases: + +Required: False +Position: 4 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -As +Determines whether the object is formatted as a table or a list. +Valid values are TABLE and LIST. +The default value is TABLE. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Table +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Fragment +Generates only an HTML table. +The HTML, HEAD, TITLE, and BODY tags are omitted. + +```yaml +Type: SwitchParameter +Parameter Sets: Fragment +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExcludeProperty +{{ Fill ExcludeProperty Description }} + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PreContent +Specifies text to add before the opening \ tag. +By default, there is no text in that position. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PostContent +Specifies text to add after the closing \ tag. +By default, there is no text in that position. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Normally the page is added 'silently'. +If passthru is specified, an object describing the new page will be returned. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: PT + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Show +If Specified opens the newly created page + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### You can pipe any .NET object to Out-GraphOneNote +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphChannel.md b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphChannel.md new file mode 100644 index 0000000..0702448 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphChannel.md @@ -0,0 +1,117 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Remove-GraphChannel + +## SYNOPSIS +Removes a channel from a team + +## SYNTAX + +``` +Remove-GraphChannel [-Team ] [-Channel] [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This requires the Group.ReadWrite.All scope. + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphTeam Developers -ChannelName "Project Firebird" | Remove-GraphChannel +Finds a channel by name from a named team , and removes it. +``` + +## PARAMETERS + +### -Team +A team object or the ID of the team, if it can't be derived from the channel. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Channel +The channel to delete; either as an ID, or a channel object + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Force +if Specified the channel will be deleted without prompting + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphContact.md b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphContact.md new file mode 100644 index 0000000..5edda4b --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphContact.md @@ -0,0 +1,105 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Remove-GraphContact + +## SYNOPSIS +Deletes a contact from the default user's contacts + +## SYNTAX + +``` +Remove-GraphContact [-Contact] [-Force ] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphContact -Name pavel | Remove-GraphContact +Finds and removes any user whose given name, surname, email or display name +matches Pavel*. This might return unexpected users, fortunately there is a prompt +before deleting - the prompt it can be supressed by using the -Force switch if you +are confident you have the right contact selected. +``` + +## PARAMETERS + +### -Contact +The contact to remove, as an ID or as a contact object containing an ID + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Force +If specified the contact will be removed without prompting for confirmation + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphEvent.md b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphEvent.md new file mode 100644 index 0000000..2b1f575 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphEvent.md @@ -0,0 +1,162 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Remove-GraphEvent + +## SYNOPSIS +Deletes an item from the calendar + +## SYNTAX + +### None (Default) +``` +Remove-GraphEvent [-Event] [-Force] [-WhatIf] [-Confirm] [] +``` + +### User +``` +Remove-GraphEvent [-Event] -User -Calendar [-Force] [-WhatIf] [-Confirm] + [] +``` + +### GroupID +``` +Remove-GraphEvent [-Event] -Group [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Deletes items from the calendar. +If other people have beeen invited to a meeting, +they will reveive a cancellation message. + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Event +The event to be removed either as an ID or as an event object containing an ID. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -User +UserID as a guid or User Principal name, whose calendar should be fetched If not specified defaults to "me" + +```yaml +Type: String +Parameter Sets: User +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Calendar +A sepecific calendar belonging to a user. + +```yaml +Type: Object +Parameter Sets: User +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Group +Group ID or a Group object with an ID, whose calendar should be fetched + +```yaml +Type: Object +Parameter Sets: GroupID +Aliases: Team + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +if Sepcified the event will be deleted without prompting for confirmation + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphGroup.md b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphGroup.md new file mode 100644 index 0000000..f1fca73 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphGroup.md @@ -0,0 +1,105 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Remove-GraphGroup + +## SYNOPSIS +Removes a group/team + +## SYNTAX + +``` +Remove-GraphGroup [-Group] [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Requires consent to use the Group.ReadWrite.All scope. +The group may remain visible for a short time. +Deleted groups can be recovered using Get-GraphDeletedObject and Restore-GraphDeletedObject + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Group +The ID of the Group / team + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: Team + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Force +If specified the group will be removed without prompting + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphGroupMember.md b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphGroupMember.md new file mode 100644 index 0000000..ccdfd50 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphGroupMember.md @@ -0,0 +1,141 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Remove-GraphGroupMember + +## SYNOPSIS +Removes a user (or group) from a group/team + +## SYNTAX + +``` +Remove-GraphGroupMember [-Group] [-Member] [-FromOwners] [-Force] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +Because the group may be a team the command has an alias of Remove-GraphTeamMember. +It requires consent to use the Group.ReadWrite.All, Directory.ReadWrite.All, or +Directory.AccessAsUser.All scope. + +## EXAMPLES + +### EXAMPLE 1 +``` +Remove-GraphGroupMember -Group $g -FromOwners -Member alex@contoso.com -Force +Removes a user from the owners of a group without prompting for confirmation. +``` + +### EXAMPLE 2 +``` +Get-GraphUserList -Filter "Department eq 'Accounts'" | Remove-GraphGroupMember -Group $g +Gets a list of users and removes them from from a group. +``` + +## PARAMETERS + +### -Group +The ID of the Group / team + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: Team + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Member +A group object with an ID field, or a user object, user ID or UPN + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -FromOwners +If specified the member will be removed from the owners rather than members + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If specified the member will be removed without prompting for confirmation + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphGroupThread.md b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphGroupThread.md new file mode 100644 index 0000000..4a0b75a --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphGroupThread.md @@ -0,0 +1,133 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Remove-GraphGroupThread + +## SYNOPSIS +Removes a thread from a group in outlook + +## SYNTAX + +``` +Remove-GraphGroupThread [-Thread] [-Conversation ] [-Group ] [-Force] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphGroup consultants -Threads | where topic -eq "Today's tests..." | Remove-GraphGroupThread +Finds the threads for a named group; isolates one by topic name, and removes it. +``` + +## PARAMETERS + +### -Thread +The thread to remove, either as an ID or a thread object containing an ID, and possibly a conversation ID and group ID + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Conversation +The conversation the thread is part of. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Group +The group from which the thread is to be removed, either as an ID or a group object containing an ID + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: Team + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +if Specified the thread will be deleted without prompting. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphListItem.md b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphListItem.md new file mode 100644 index 0000000..a60bf4b --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphListItem.md @@ -0,0 +1,136 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Remove-GraphListItem + +## SYNOPSIS +Deletes an item from a SharePoint List + +## SYNTAX + +``` +Remove-GraphListItem [-Item] [-List ] [-Site ] [-Force] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +This Deletes an item at https://graph.microsoft.com/v1.0/sites/{id}/lists{id}/items{id} +which requires consent to use the Sites.ReadWrite.All scope + +## EXAMPLES + +### EXAMPLE 1 +``` +>$problemitems = get-graphlist $problemslist -Items -Property title,issuestatus,AssignedToLookupID,priority +>$problemitems[4] | Remove-GraphListItem +``` + +The first line gets the items from a list , and the second line removes the fifth one + +## PARAMETERS + +### -Item +The item to remove; this can be an ID or an object with an ID, and a list and site ID as well + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -List +If the item does not contain the list, the list to delete from an ID, or list object with an ID, and a site ID + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Site +If there is no site id in the item or list parameter allows the site to specified as an ID or object + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If specified the item will be deleted without prompting for confirmation (prompting is the default) + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphOneNotePage.md b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphOneNotePage.md new file mode 100644 index 0000000..3e36683 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphOneNotePage.md @@ -0,0 +1,108 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Remove-GraphOneNotePage + +## SYNOPSIS +Removes a OneNote page + +## SYNTAX + +``` +Remove-GraphOneNotePage [-Page] [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This command makes DELETE requests to https://graph.microsoft.com/v1.0 + /users/{id}/onenote/sections/{id}/pages/{id} + or /groups/{id}/onenote/sections/{id}/pages/{id} + or /sites/{id}/onenote/sections/{id}/pages/{id} + which requires consent to use the Notes.ReadWrite scope or better. + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphUser -Teams -Name Consultants | Get-GraphTeam -Notebooks | + Get-GraphOneNoteBook -Sections -Name General | Get-GraphOneNoteSection -Pages -Name process | Remove-GraphOneNotePage +finds a team named "consultants" which has the current user as a member, finds its notebook, finds a section named General +within this sectioned finds page names that begin "process..." and removes them +``` + +## PARAMETERS + +### -Page +A graph URI pointing to the page, or a page object where the .self property is a graph URI... + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Force +If specified, the page is deleted without prompting. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphPlan.md b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphPlan.md new file mode 100644 index 0000000..67b50c1 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphPlan.md @@ -0,0 +1,103 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Remove-GraphPlan + +## SYNOPSIS +Removes a plan from a plan the + +## SYNTAX + +``` +Remove-GraphPlan [[-Plan] ] [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Plan +The ID of the plan or a plan object with an ID property. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Force +If specified the plan will be removed without prompting for confirmation; by default confirmation IS requested. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphPlanBucket.md b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphPlanBucket.md new file mode 100644 index 0000000..2dd8c77 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphPlanBucket.md @@ -0,0 +1,103 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Remove-GraphPlanBucket + +## SYNOPSIS +Removes a bucket from a plan in planner + +## SYNTAX + +``` +Remove-GraphPlanBucket [-Bucket] [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Bucket +The bucket to remove + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Force +If specified the bucket will be removed without prompting for confirmation; by default confirmation IS requested. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphPlanTask.md b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphPlanTask.md new file mode 100644 index 0000000..95b9b20 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphPlanTask.md @@ -0,0 +1,103 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Remove-GraphPlanTask + +## SYNOPSIS +Removes a task from a plan in planner + +## SYNTAX + +``` +Remove-GraphPlanTask [-Task] [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Task +The task to remove, either as an ID, or as a Task object containing an ID. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Force +If specified the Task will be removed without prompting for confirmation; by default confirmation IS requested. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphToDoList.md b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphToDoList.md new file mode 100644 index 0000000..e5b9c2d --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphToDoList.md @@ -0,0 +1,120 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Remove-GraphToDoList + +## SYNOPSIS +Removes a list from the To Do app, including any task in contains. + +## SYNTAX + +``` +Remove-GraphToDoList [-ToDoList] [[-UserId] ] [-Force] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -ToDoList +A To-do list object or the ID of a To-do list + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: TodoTaskListId, ListID + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -UserId +The User ID (GUID or UPN) of the list owner. +Defaults to the current user, and may be found on the ToDo list object + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: $Global:GraphUser +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Force +If specified, no confirmation will be displayed before deleting the list + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphToDoTask.md b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphToDoTask.md new file mode 100644 index 0000000..06f910e --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphToDoTask.md @@ -0,0 +1,135 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Remove-GraphToDoTask + +## SYNOPSIS +Removes a task from the To Do app + +## SYNTAX + +``` +Remove-GraphToDoTask [-Task] [[-ToDoList] ] [[-UserId] ] [-Force] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Task +A Task object or the ID of a task. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: ID + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -ToDoList +A To-do list object or the ID of a To-do list, may be found on the task object + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: TodoTaskListId, ListID + +Required: False +Position: 2 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -UserId +The User ID (GUID or UPN) of the list owner. +Defaults to the current user, and may be found on the task or the ToDo list object + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 3 +Default value: $Global:GraphUser +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Force +If specified, no confirmation will be displayed before deleting the task + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphUser.md b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphUser.md new file mode 100644 index 0000000..3c1eea8 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-GraphUser.md @@ -0,0 +1,103 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Remove-GraphUser + +## SYNOPSIS +Deletes a user from Azure Active directory + +## SYNTAX + +``` +Remove-GraphUser [-UserID] [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -UserID +ID for the user + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Force +If specified the user is deleted without a confirmation prompt. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Remove-MgUserTodoListTask_Delete1.md b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-MgUserTodoListTask_Delete1.md new file mode 100644 index 0000000..0208ab6 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-MgUserTodoListTask_Delete1.md @@ -0,0 +1,243 @@ +--- +external help file: Microsoft.Graph.Users.private.dll-Help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-gb/graph/onenote-update-page +schema: 2.0.0 +--- + +# Remove-MgUserTodoListTask_Delete1 + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Remove-MgUserTodoListTask_Delete1 [-Break] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-IfMatch ] [-PassThru] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] -TodoTaskId -TodoTaskListId + -UserId [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Break +Wait for .NET debugger to attach + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IfMatch +ETag + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns true when the command succeeds + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Proxy +The URI for the proxy server to use + +```yaml +Type: Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TodoTaskId +key: id of todoTask + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TodoTaskListId +key: id of todoTaskList + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UserId +key: id of user + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None +## OUTPUTS + +### System.Boolean +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Remove-MgUserTodoList_Delete1.md b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-MgUserTodoList_Delete1.md new file mode 100644 index 0000000..af86879 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-MgUserTodoList_Delete1.md @@ -0,0 +1,228 @@ +--- +external help file: Microsoft.Graph.Users.private.dll-Help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-gb/graph/onenote-update-page +schema: 2.0.0 +--- + +# Remove-MgUserTodoList_Delete1 + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Remove-MgUserTodoList_Delete1 [-Break] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-IfMatch ] [-PassThru] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] -TodoTaskListId -UserId + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Break +Wait for .NET debugger to attach + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IfMatch +ETag + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns true when the command succeeds + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Proxy +The URI for the proxy server to use + +```yaml +Type: Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TodoTaskListId +key: id of todoTaskList + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UserId +key: id of user + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None +## OUTPUTS + +### System.Boolean +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Remove-MgUser_Delete.md b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-MgUser_Delete.md new file mode 100644 index 0000000..a6ee3b0 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Remove-MgUser_Delete.md @@ -0,0 +1,212 @@ +--- +external help file: Microsoft.Graph.Users.private.dll-Help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-gb/graph/onenote-update-page +schema: 2.0.0 +--- + +# Remove-MgUser_Delete + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Remove-MgUser_Delete [-Break] [-HttpPipelineAppend ] [-HttpPipelinePrepend ] + [-IfMatch ] [-PassThru] [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] + -UserId [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Break +Wait for .NET debugger to attach + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IfMatch +ETag + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns true when the command succeeds + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Proxy +The URI for the proxy server to use + +```yaml +Type: Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UserId +key: id of user + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None +## OUTPUTS + +### System.Boolean +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Rename-GraphPlanBucket.md b/Microsoft.Graph.PlusPlus.Docs/docs/Rename-GraphPlanBucket.md new file mode 100644 index 0000000..e826aa1 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Rename-GraphPlanBucket.md @@ -0,0 +1,121 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Rename-GraphPlanBucket + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Rename-GraphPlanBucket [-Bucket] [-NewName] [-Force] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Bucket +{{ Fill Bucket Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +{{ Fill Force Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NewName +{{ Fill NewName Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.Object +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Reset-GraphUserPassword.md b/Microsoft.Graph.PlusPlus.Docs/docs/Reset-GraphUserPassword.md new file mode 100644 index 0000000..dd9ff15 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Reset-GraphUserPassword.md @@ -0,0 +1,135 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Reset-GraphUserPassword + +## SYNOPSIS +Administrative reset to a given our auto-generated password, defaulting to 'reset at next logon' + +## SYNTAX + +``` +Reset-GraphUserPassword [-UserPrincipalName] [[-Initialpassword] ] [-NoPasswordChange] + [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -UserPrincipalName +User principal name for the user. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: UPN + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Initialpassword +The replacement password for the user. +If none is specified one will be generated and output by the command + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoPasswordChange +If specified the user will not have to change their password at their next logon + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If Specified prevents any confirmation dialog from appearing + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Restore-GraphDeletedObject.md b/Microsoft.Graph.PlusPlus.Docs/docs/Restore-GraphDeletedObject.md new file mode 100644 index 0000000..05b28fb --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Restore-GraphDeletedObject.md @@ -0,0 +1,118 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Restore-GraphDeletedObject + +## SYNOPSIS +Recovers a user or group from the AAD recycle bin + +## SYNTAX + +``` +Restore-GraphDeletedObject [[-ID] ] [-Group] [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -ID +A deleted object or the ID of one. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Group +Specifies that the ID is associated with a group, not a user. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If specified supresses any confirmation prompt + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Revoke-GraphDirectoryRole.md b/Microsoft.Graph.PlusPlus.Docs/docs/Revoke-GraphDirectoryRole.md new file mode 100644 index 0000000..b125f24 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Revoke-GraphDirectoryRole.md @@ -0,0 +1,119 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Revoke-GraphDirectoryRole + +## SYNOPSIS +Removes a user or group from a an Azure AD directory role + +## SYNTAX + +``` +Revoke-GraphDirectoryRole [-Role] [[-Member] ] [-Force] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Role +The role(s) to revoke, either as role names or a role objects. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Member +The member to remove , can be a user name, or a user or group object + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Force +Runs the command without confirmation. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Revoke-GraphLicense.md b/Microsoft.Graph.PlusPlus.Docs/docs/Revoke-GraphLicense.md new file mode 100644 index 0000000..b8f7959 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Revoke-GraphLicense.md @@ -0,0 +1,187 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Revoke-GraphLicense + +## SYNOPSIS +Revokes a users or groups licences to use a particular stock-keeping-unit (SKU) + +## SYNTAX + +### ByUserID (Default) +``` +Revoke-GraphLicense [-SKUID] [-UserID] [-Force] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] +``` + +### ByGroupID +``` +Revoke-GraphLicense [-SKUID] [-GroupID] [-Force] [-Proxy ] + [-ProxyCredential ] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -SKUID +The SKU to revoke either as an ID or a SKU object containing an ID + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UserID +ID for the user (required. +"me" will select the current user) + +```yaml +Type: Object +Parameter Sets: ByUserID +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -GroupID +ID(s) for group(s) to receive permission, the command will accept group objects and attempt to resolve names to IDs + +```yaml +Type: Object +Parameter Sets: ByGroupID +Aliases: Team + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Runs the command without a confirmation dialog + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Proxy +The URI for the proxy server to use + +```yaml +Type: Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Save-GraphMailAttachment.md b/Microsoft.Graph.PlusPlus.Docs/docs/Save-GraphMailAttachment.md new file mode 100644 index 0000000..6acc028 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Save-GraphMailAttachment.md @@ -0,0 +1,89 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0 +schema: 2.0.0 +--- + +# Save-GraphMailAttachment + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Save-GraphMailAttachment [[-Attachment] ] [[-Destination] ] [-PassThru] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Attachment +{{ Fill Attachment Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Destination +{{ Fill Destination Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +{{ Fill PassThru Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: PT + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.Object +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Send-GraphGroupReply.md b/Microsoft.Graph.PlusPlus.Docs/docs/Send-GraphGroupReply.md new file mode 100644 index 0000000..2487efd --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Send-GraphGroupReply.md @@ -0,0 +1,178 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Send-GraphGroupReply + +## SYNOPSIS +Replies to a group's post in outlook. + +## SYNTAX + +``` +Send-GraphGroupReply [-Post] [-Thread ] [-Group ] -Content + [-ContentType ] [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +$thread.posts[0] | Send-GraphGroupReply -content 'Success!! Go team!' -ContentType HTML +One of the examples for Add-GraphGroupThread left the result of a creating a new thread in $thread +This takes the only post in the new thread and creates a reply to it with the content in HTML format. +``` + +### EXAMPLE 2 +``` +Set-GraphDefaultGroup 'Consultants' +> ... +> $post = Get-GraphGroupThread -Topic "Today's tests..." -Posts | select -last 1 +>Send-GraphGroupReply $post -Content "Please join a celebration of the successful test at 4PM" +This example finds threads for the consultants group, Isolates the one with the topic of +"Today's Tests..." and finds the last post in the thread. It then posts a reply with the content as plain text. +This example stores the Post between the two commands but they could be piped together as in the previous example +``` + +## PARAMETERS + +### -Post +The Post being replied to, either as an ID or a post object containing an ID which may identify the thread and group + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Thread +The thread containing the post (if not embedded in the post itself), as an ID or object, which may identify the group + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Group +The group containing the thread (if not embedded in the Post or thread) as an ID or object + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: Team + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Content +The Message body - text by default, specify -contentType if using HTML + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ContentType +The type of content, text by default or HTML + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Text +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +if Specified the message will be created without prompting. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS + +[Add-GraphGroupThread]() + diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Send-GraphMailForward.md b/Microsoft.Graph.PlusPlus.Docs/docs/Send-GraphMailForward.md new file mode 100644 index 0000000..c4dce8e --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Send-GraphMailForward.md @@ -0,0 +1,87 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Send-GraphMailForward + +## SYNOPSIS +Forwards a mail message. + +## SYNTAX + +``` +Send-GraphMailForward [-Message] [-To] [-Comment ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +> $alex = New-GraphRecipient Alex@contoso.com -DisplayName "Alex B." +> Get-GraphMailItem -top 1 | Send-GraphMailForward -to $Alex -Comment "FYI :-)" +Creates a recipient , and forwards the top mail in the users inbox to that recipent +``` + +## PARAMETERS + +### -Message +Either a message ID or a Message object with an ID. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -To +Recipient(s) on the "to" line, each is either created with New-MailRecipient (a hash table), or a string holding an address. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Comment +Comment to attach when forwarding the message. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Send-GraphMailMessage.md b/Microsoft.Graph.PlusPlus.Docs/docs/Send-GraphMailMessage.md new file mode 100644 index 0000000..0faab82 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Send-GraphMailMessage.md @@ -0,0 +1,245 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Send-GraphMailMessage + +## SYNOPSIS +Sends Mail using the Graph API from the current user's mailbox. + +## SYNTAX + +### None (Default) +``` +Send-GraphMailMessage [-To] [-CC ] [-BCC ] [-Subject ] [-Body ] + [-BodyType ] [-Importance ] [-Attachments ] [-Receipt] [] +``` + +### SaveDraftOnly +``` +Send-GraphMailMessage [-To] [-CC ] [-BCC ] [-Subject ] [-Body ] + [-BodyType ] [-Importance ] [-Attachments ] [-Receipt] [-SaveDraftOnly] + [] +``` + +### NoSave +``` +Send-GraphMailMessage [-To] [-CC ] [-BCC ] [-Subject ] [-Body ] + [-BodyType ] [-Importance ] [-Attachments ] [-Receipt] [-NoSave] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +Send-GraphMail -To "chris@contoso.com" -subject "You left your keys behind[nt]" +Sends a mail with a subject but no body or attachments +``` + +### EXAMPLE 2 +``` +Send-GraphMail -To "chris@contoso.com" -body "Keys are with reception" -NoSave +Sends a mail but thi time the subject will read "No subject" and the test will be in the body. +-NoSave means that no copy of this message will be kept in sent items +``` + +### EXAMPLE 3 +``` +Send-GraphMail -To "chris@contoso.com" -Subject "Screen shot" -body "How does this look ?" -Attachments .\Logon.png -Receipt +#This message has an attachement and requests a read receipt. +``` + +### EXAMPLE 4 +``` +$body"

New dialog



what do you think" +>$link = Send-GraphMail -To "jhoneill@waitrose.com" -Subject "Login Sreen" -body $body -BodyType HTML -NoSave -Attachments .\Logon.png -SaveDraftOnly +This creates an HTML body, the attached picture can be referenced in an tag with cid:fileName.ext +this time the mail is not sent but left in the user's drafts folder for review. +``` + +## PARAMETERS + +### -To +Recipient(s) on the "to" line, each is either created with New-MailRecipient (a hash table), or a string holding an address. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CC +Recipient(s) on the "CC" line, + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BCC +Recipient(s) on the "Bcc line" line, + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Subject +The subject of the message. +A message must have a subject and/or body and/or attachments. +If the subject is left blank it will be sent as "No Subject" + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Body +The content of the message; assumed to be plain text, but HTML can be specified with -BodyType + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BodyType +The type of the body content. +Possible values are Text and HTML. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Text +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Importance +The importance of the message: Low, Normal or High + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Normal +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Attachments +Path to file(s) to send as attachments + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Receipt +If Specified, requests a receipt. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -SaveDraftOnly +If specified leaves the message in the drafts folder without sending it and returns a link to open the message. + +```yaml +Type: SwitchParameter +Parameter Sets: SaveDraftOnly +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -NoSave +If specified specifies that a copy of the mail should not be saved + +```yaml +Type: SwitchParameter +Parameter Sets: NoSave +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Send-GraphMailReply.md b/Microsoft.Graph.PlusPlus.Docs/docs/Send-GraphMailReply.md new file mode 100644 index 0000000..1dde15a --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Send-GraphMailReply.md @@ -0,0 +1,87 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Send-GraphMailReply + +## SYNOPSIS +Replies to a mail message. + +## SYNTAX + +``` +Send-GraphMailReply [-Message] [-Comment] [-ReplyAll] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Message +Either a message ID or a Message object with an ID. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Comment +Comment to attach when repling to the message - blank replies aren't allowed. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ReplyAll +If specified changes reply mode from reply \[to sender\] to Reply-to-all + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: All + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphContact.md b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphContact.md new file mode 100644 index 0000000..ee4e50a --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphContact.md @@ -0,0 +1,537 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Set-GraphContact + +## SYNOPSIS +Modifies or adds an entry in the current users Outlook contacts + +## SYNTAX + +### UpdateContact +``` +Set-GraphContact [-Contact] [-GivenName ] [-MiddleName ] [-Initials ] + [-Surname ] [-NickName ] [-FileAs ] [-DisplayName ] [-CompanyName ] + [-JobTitle ] [-Department ] [-Manager ] [-Email ] [-IM ] + [-MobilePhone ] [-BusinessPhones ] [-HomePhones ] [-Homeaddress ] + [-BusinessAddress ] [-OtherAddress ] [-Categories ] [-Birthday ] + [-PersonalNotes ] [-Profession ] [-AssistantName ] [-Children ] + [-SpouseName ] [-Force] [-WhatIf] [-Confirm] [] +``` + +### NewContact +``` +Set-GraphContact [-IsNew] [-GivenName ] [-MiddleName ] [-Initials ] [-Surname ] + [-NickName ] [-FileAs ] [-DisplayName ] [-CompanyName ] [-JobTitle ] + [-Department ] [-Manager ] [-Email ] [-IM ] [-MobilePhone ] + [-BusinessPhones ] [-HomePhones ] [-Homeaddress ] [-BusinessAddress ] + [-OtherAddress ] [-Categories ] [-Birthday ] [-PersonalNotes ] + [-Profession ] [-AssistantName ] [-Children ] [-SpouseName ] [-Force] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +> $pavel = Get-GraphContact -Name pavel +> Set-GraphContact $pavel -CompanyName "Fabrikam" -Birthday "1974-07-22" +The first line gets the Contact which was added in the 'New-GraphContact" example +and the second adds Birthday and Company-name attributes to the contact. +``` + +### EXAMPLE 2 +``` +> $fabrikamAddress = New-GraphPhysicalAddress "123 Some Street" Seattle WA 98121 "United States" +> Set-GraphContact $pavel -BusinessAddress $fabrikamAddress +This continues from the previous example, creating an address in the first line +and adding it to the contact in the second. +``` + +## PARAMETERS + +### -Contact +The contact to be updated either as an ID or as contact object containing an ID. + +```yaml +Type: Object +Parameter Sets: UpdateContact +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -IsNew +If specified, instead of providing a contact, instructs the command to create a contact instead of updating one. + +```yaml +Type: SwitchParameter +Parameter Sets: NewContact +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GivenName +{{ Fill GivenName Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -MiddleName +{{ Fill MiddleName Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Initials +{{ Fill Initials Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Surname +{{ Fill Surname Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -NickName +{{ Fill NickName Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -FileAs +{{ Fill FileAs Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DisplayName +If not specified a display name will be generated, so updates without the display name may result in overwriting an existing one + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -CompanyName +{{ Fill CompanyName Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -JobTitle +{{ Fill JobTitle Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Department +{{ Fill Department Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Manager +{{ Fill Manager Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Email +One or more mail addresses, as a single string with semi colons between addresses or as an array of strings or MailAddress objects created with New-GraphMailAddress + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -IM +One or more instant messaging addresses, as an array or as a single string with semi colons between addresses + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -MobilePhone +A single mobile phone number + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -BusinessPhones +One or more Business phones either as an array or as single string with semi colons between numbers + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -HomePhones +One or more home phones either as an array or as single string with semi colons between numbers + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Homeaddress +An address object created with New-GraphPhysicalAddress + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -BusinessAddress +An address object created with New-GraphPhysicalAddress + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -OtherAddress +An address object created with New-GraphPhysicalAddress + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Categories +One or more categories either as an array or as single string with semi colons between them. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Birthday +The contact's Birthday as a date + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PersonalNotes +{{ Fill PersonalNotes Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Profession +{{ Fill Profession Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -AssistantName +{{ Fill AssistantName Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Children +{{ Fill Children Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -SpouseName +{{ Fill SpouseName Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Force +If sepcified the contact will be created without prompting for confirmation. +This is the default state but can change with the setting of confirmPreference. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphContact +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphDefaultGroup.md b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphDefaultGroup.md new file mode 100644 index 0000000..4967bb0 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphDefaultGroup.md @@ -0,0 +1,69 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Set-GraphDefaultGroup + +## SYNOPSIS +Sets the default paramater for group or team in most functions which take one. + +## SYNTAX + +``` +Set-GraphDefaultGroup [-Group] [] +``` + +## DESCRIPTION +Takes a group as a parameter or via the pipeline. +If a string is passed it will try to get a matching group from Get-GraphGroup, +a string may be a wildcard for a group name - provided that it only finds one matching group. +If the group has been provisioned as a team then it will be the default for commands which take a -Team parameter. +The primary purpose is to avoid specifying a Group/Team when working with messages, calendar / planner / team channels, +but working with the group itself or its membership it is safer not to default the selection, so no defaults +are set for for Set-Team, Set-Group, Get- Remove-Group Remove-GroupMember or Add-GroupMember or Import and Export + +## EXAMPLES + +### EXAMPLE 1 +``` +Set-GraphDefaultGroup Accounts +> Get-GraphChannel +Display Name description +----------- ----------- +General The Accounts Department +Mccaw For anything about project Mccaw +``` + +The first command sets the default group - because "Accounts" has been provisioned as a team, +it becomes the default team for Get-GraphChannel + +## PARAMETERS + +### -Group +The group to set as the default for other commands + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: Team + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphEvent.md b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphEvent.md new file mode 100644 index 0000000..5e2361c --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphEvent.md @@ -0,0 +1,432 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Set-GraphEvent + +## SYNOPSIS +Modifies an event on a calendar + +## SYNTAX + +### None (Default) +``` +Set-GraphEvent [-Event] [-Subject ] [-Start ] [-End ] [-Timezone ] + [-Location ] [-Body ] [-BodyType ] [-ReminderOn] [-ReminderTime ] + [-ShowAs ] [-Importance ] [-Sensitivity ] [-Recurrence ] [-Force] [-PassThru] + [-WhatIf] [-Confirm] [] +``` + +### User +``` +Set-GraphEvent [-Event] [-User ] [-Calendar ] [-Subject ] [-Start ] + [-End ] [-Timezone ] [-Location ] [-Body ] [-BodyType ] + [-ReminderOn] [-ReminderTime ] [-ShowAs ] [-Importance ] [-Sensitivity ] + [-Recurrence ] [-Force] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +### Group +``` +Set-GraphEvent [-Event] -Group [-Subject ] [-Start ] [-End ] + [-Timezone ] [-Location ] [-Body ] [-BodyType ] [-ReminderOn] + [-ReminderTime ] [-ShowAs ] [-Importance ] [-Sensitivity ] + [-Recurrence ] [-Force] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +### AllDay +``` +Set-GraphEvent [-Event] [-Subject ] -Start -End [-AllDay] + [-Timezone ] [-Location ] [-Body ] [-BodyType ] [-ReminderOn] + [-ReminderTime ] [-ShowAs ] [-Importance ] [-Sensitivity ] + [-Recurrence ] [-Force] [-PassThru] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Event +The event to be updateds either as an ID or as an event object containing an ID. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -User +UserID as a guid or User Principal name, whose calendar should be fetched If not specified defaults to "me" + +```yaml +Type: String +Parameter Sets: User +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Calendar +A sepecific calendar belonging to a user. + +```yaml +Type: Object +Parameter Sets: User +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Group +Group ID or a Group object with an ID whose calendar should be fetched + +```yaml +Type: Object +Parameter Sets: Group +Aliases: Team + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Subject +Subject for the appointment + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Start +Start time - if -Timezone is not used this will be the in local machine's times zone + +```yaml +Type: DateTime +Parameter Sets: None, User, Group +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +```yaml +Type: DateTime +Parameter Sets: AllDay +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -End +End Time - if -Timezone is not used this will be the in local machine's times zone + +```yaml +Type: DateTime +Parameter Sets: None, User, Group +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +```yaml +Type: DateTime +Parameter Sets: AllDay +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllDay +Creates the event as all day - you must also set the start and end time. + +```yaml +Type: SwitchParameter +Parameter Sets: AllDay +Aliases: + +Required: True +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Timezone +Timezone - by default the local machine's time zone is used + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: $(tzutil.exe /g) +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Location +Location for the appointment + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Body +Body text - if using HTML set the body type to HTML + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BodyType +Type of text used for the body, Text or HTML + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Text +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ReminderOn +Unless -Reminder on is specified no reminder will sound before the meeting + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ReminderTime +Time in Minutes, before the start time, that the reminder should appear. +It will be set even if -ReminderOn is omitted + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ShowAs +Sets the task to appear as Free, Tenatative, Off-of-facility etc + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Importance +Priority setting , high , normal or low. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Sensitivity +Privacy setting - normal or Private + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Recurrence +Recurrence pattern build with New-recurrencePattern + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If specified the update will be performed without prompting for confirmation (this is the default) + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +for some of things still to do see https://docs.microsoft.com/en-us/graph/api/event-update?view=graph-rest-beta +and https://docs.microsoft.com/en-us/graph/api/user-post-events?view=graph-rest-beta +Attendees is one. +link says this also sends the invite + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS + +[Get-GraphEvent]() + diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphGroup.md b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphGroup.md new file mode 100644 index 0000000..6d8eacc --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphGroup.md @@ -0,0 +1,165 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Set-GraphGroup + +## SYNOPSIS +Sets options on a group + +## SYNTAX + +``` +Set-GraphGroup [-Group] [-DisplayName ] [-AllowExternalSenders] [-Description ] + [-EnableTeam] [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Allows or blocks external senders, changes visibility or description and enables the group as a team. +Other options for a team are set via Set-GraphTeam. +Requires consent to use the Group.ReadWrite.All scope. + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphGroupList -Name consult* | Set-GraphGroup -Description "People who do consulting work" -Force +Finds the group(s) with a name which matches Consult* and sets the description without a confirmation prompt. +``` + +## PARAMETERS + +### -Group +{{ Fill Group Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -DisplayName +If specified, updates the group's displayName + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowExternalSenders +If specified, the group can receive external email; the option can be disabled with -AllowExternalSenders:$false. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Description +A new description for the group + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EnableTeam +Enables team functionality on a group which does not yet have it enabled + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If specified the group will be updated without prompting for confirmation. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphHomeDrive.md b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphHomeDrive.md new file mode 100644 index 0000000..d553f69 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphHomeDrive.md @@ -0,0 +1,59 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Set-GraphHomeDrive + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Set-GraphHomeDrive [-Drive] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Drive +{{ Fill Drive Description }} + +```yaml +Type: MicrosoftGraphDrive +Parameter Sets: (All) +Aliases: + +Required: True +Position: 0 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphDrive +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphListItem.md b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphListItem.md new file mode 100644 index 0000000..8be29d6 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphListItem.md @@ -0,0 +1,155 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Set-GraphListItem + +## SYNOPSIS +Updates an item in a SharePoint List + +## SYNTAX + +``` +Set-GraphListItem [-Item] [-Fields] [-List ] [-Site ] [-Force] [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +This Patches an existing item at https://graph.microsoft.com/v1.0/sites/{id}/lists{id}/items{id}/Fields +which requires consent to use the Sites.ReadWrite.All scope +Caveats in Add-GraphListItem apply to Set-GraphListItem. + +## EXAMPLES + +### EXAMPLE 1 +``` +>$problemitems = get-graphlist $problemslist -Items -Property title,issuestatus,AssignedToLookupID,priority +>$problemitems[2] | Set-GraphListItem -Fields @{Priority='(2) Normal'} +``` + +The first line gets the items from a list , and the second updates the Priority field of the third one + +## PARAMETERS + +### -Item +The item to update; this can be an ID or an object with an ID, and a list and site ID as well + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Fields +The item property values in a hash table as @{col1=$value1; col2='Value2'; col3=33} + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: True +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -List +If the item does not contain the list, the list to delete from an ID, or list object with an ID, and a site ID + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Site +If there is no site id in the item or list parameter allows the site to specified as an ID or object + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If specified the item will be updated without prompting for confirmation + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS + +[Add-GraphListItem]() + diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphOneNoteHome.md b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphOneNoteHome.md new file mode 100644 index 0000000..fd5167e --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphOneNoteHome.md @@ -0,0 +1,63 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Set-GraphOneNoteHome + +## SYNOPSIS +Sets a default notebook (and optionally section). +Set to $Null to clear the setting + +## SYNTAX + +``` +Set-GraphOneNoteHome [-Notebook] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphGroup 'Consultants' -Notebooks | Get-GraphOneNoteBook -SectionName general* | Set-GraphOneNoteHome -Verbose +The first command in the pipeline gets the notebook for the consultants group , +the second finds the section in the notebook with an display name beginning "general" +and the third sets the default section for Add-FileToGraphOneNote, Add-GraphOneNotePage, +Get-GraphOneNotePage, and Out-GraphOneNote to the this section, and sets the +default Notebook for All the GraphOneNoteBook and all the GraphOneNoteSection commands +to the consultants group's notebook. +``` + +## PARAMETERS + +### -Notebook +A note book or notebook section to set as the default location for oneNoteCommands. +Passing Null will clear the default. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphOptions.md b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphOptions.md new file mode 100644 index 0000000..067b523 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphOptions.md @@ -0,0 +1,152 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Set-GraphOptions + +## SYNOPSIS +Sets defaults and the tenant client ID & Client Secret used when logging on without a web dialog + +## SYNTAX + +``` +Set-GraphOptions [[-TenantID] ] [[-ClientID] ] [[-ClientSecret] ] + [[-DefaultScopes] ] [[-RefreshToken] ] [[-DefaultUserProperties] ] + [[-DefaultUsageLocation] ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -TenantID +Your Tennant ID + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClientID +Client ID if not using the SDK default of 14d82eec-204b-4c2f-b7e8-296a70dab67e. +Must be known to your tennant + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClientSecret +Secret set for the client ID in your $TenantID + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: Client_Secret, + +Required: False +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultScopes +Default Scopes to request + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 4 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -RefreshToken +Allows a saved Refresh Token (e.g. +from Show-GraphSession) to be added to the session. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 5 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultUserProperties +Changes the dafault properties returned by Get-GraphUser and Get-GraphUserList + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: 6 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DefaultUsageLocation +Changes the default two letter (ISO 3166) country code - for new users so they can be assigned licenses. +Examples include: 'US', 'JP', and 'GB' + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 7 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphPlanDetails.md b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphPlanDetails.md new file mode 100644 index 0000000..1a35d53 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphPlanDetails.md @@ -0,0 +1,195 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Set-GraphPlanDetails + +## SYNOPSIS +Sets the category labels on a Plan + +## SYNTAX + +``` +Set-GraphPlanDetails [-Plan] [-Category1 ] [-Category2 ] [-Category3 ] + [-Category4 ] [-Category5 ] [-Category6 ] [-Force] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Plan +The ID of the Plan or a Plan object with an ID property. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Category1 +Label for category 1 + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Category2 +Label for category 2 + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Category3 +Label for category 3 + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Category4 +Label for category 4 + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Category5 +Label for category 5 + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Category6 +Label for category 6 + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If specified the plan will updated without confirmation + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphPlanTask.md b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphPlanTask.md new file mode 100644 index 0000000..a6685b2 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphPlanTask.md @@ -0,0 +1,304 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Set-GraphPlanTask + +## SYNOPSIS +Update an a existing task in a planner plan + +## SYNTAX + +``` +Set-GraphPlanTask [-Task] [-Title ] [-Description ] [-AssignTo ] + [-Bucket ] [-StartDate ] [-DueDate ] [-PercentComplete ] + [-CategoryNumbers ] [-ClearList] [-Checklist ] [-ClearLinks] [-Links ] [-Force] + [-Passthru] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Task +The Task to update, either an ID or a Task object with an ID property. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: ID + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Title +The new title of for task. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Description +Longer description of the task + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -AssignTo +User(s) to assign the task to either as a UPN name (bob@contoso.com) or ID. +They must already be part of the team. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Bucket +Bucket to place the task in - it must exist already + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -StartDate +Start date for the task + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -DueDate +Date by when task should be completed + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -PercentComplete +Percentage complete (note the planner app doesn't show percentages, only "Not started", "In Progress", and "Complete") + +```yaml +Type: Int32 +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: 0 +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -CategoryNumbers +Category tabs by number (1=Magenta, 2=Red, 3=Orange, 4=Green, 5=Teal, 6=Cyan) + \[ValidateRange(1,6)\] #doesn't work if piped and values are null. + +```yaml +Type: Int32[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -ClearList +If specified, any existing check-list will be removed + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Checklist +A single item, A string with items seperated with ";" or an array of items to display as a list with check boxes on the task. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ClearLinks +If specified, any existing links will be removed + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Links +HyperLinks (a.k.a. +references): a single item, a string with items seperated with ';' an array of strings or as a hash table of URI=Label. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -Force +Specified no confirmation will occur + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Passthru +If Specified returns the modified task. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: PT + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphTeam.md b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphTeam.md new file mode 100644 index 0000000..1db4d0c --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphTeam.md @@ -0,0 +1,333 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Set-GraphTeam + +## SYNOPSIS +Updates the settings for a team + +## SYNTAX + +``` +Set-GraphTeam [[-Team] ] [-AllowMemberAddRemoveApps] [-AllowMemberCreateUpdateRemoveConnectors] + [-AllowMemberCreateUpdateRemoveTabs] [-AllowMemberCreateUpdateChannels] [-AllowMemberDeleteChannels] + [-AllowGuestCreateUpdateChannels] [-AllowGuestDeleteChannels] [-AllowUserEditMessages] + [-AllowUserDeleteMessages] [-AllowOwnerDeleteMessages] [-AllowTeamMentions] [-AllowChannelMentions] + [-AllowGiphy] [-GiphyContentRating ] [-AllowStickersAndMemes] [-AllowCustomMemes] [-WhatIf] [-Confirm] + [] +``` + +## DESCRIPTION +Requires consent to use the Group.ReadWrite.All scope + +## EXAMPLES + +### EXAMPLE 1 +``` +Get-GraphTeam accounts* | Set-GraphTeam -AllowGiphy:$false +Gets a the team(s) with a name that begins with accounts, and turns off Giphy content +Note the use of -SwitchName:$false. +``` + +## PARAMETERS + +### -Team +The team to update either as an ID or a team object with and ID. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -AllowMemberAddRemoveApps +Allow members to add or remove apps + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowMemberCreateUpdateRemoveConnectors +Allow members to create update or remove connectors + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowMemberCreateUpdateRemoveTabs +Allow members to create update or remove Tabs + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowMemberCreateUpdateChannels +Allow members to create or update Channels + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowMemberDeleteChannels +Allow members to delete Channels + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowGuestCreateUpdateChannels +Allow guests to create or update Channels + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowGuestDeleteChannels +Allow guests to delete Channels + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowUserEditMessages +Allow members to edit their own messages + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowUserDeleteMessages +Allow members to delete their own messages + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowOwnerDeleteMessages +Allow owners to delete mssages + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowTeamMentions +Allow mentions of teams in messages + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowChannelMentions +Allow mentions of channels in messages + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowGiphy +Allow giphy graphics + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GiphyContentRating +Rating for giphy graphics; either moderate or strict + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowStickersAndMemes +Allow stickers and memes + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AllowCustomMemes +Allow Custom memes + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphUser.md b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphUser.md new file mode 100644 index 0000000..640e026 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Set-GraphUser.md @@ -0,0 +1,617 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Set-GraphUser + +## SYNOPSIS +Sets properties of a user (the current user by default) + +## SYNTAX + +``` +Set-GraphUser [[-UserID] ] [-AboutMe ] [-Mail ] [-OtherMails ] + [-MobilePhone ] [-BusinessPhones ] [-MySite ] [-UsageLocation ] + [-DisplayName ] [-GivenName ] [-Surname ] [-JobTitle ] [-Department ] + [-OfficeLocation ] [-CompanyName ] [-Manager ] [-EmployeeID ] + [-EmployeeType ] [-EmployeeHireDate ] [-ExternalUserState ] + [-StreetAddress ] [-City ] [-State ] [-Country ] [-PostalCode ] + [-Birthday ] [-Interests ] [-PastProjects ] [-Photo ] + [-Responsibilities ] [-Schools ] [-Skills ] [-AccountDisabled] [-PassThru] + [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +Needs consent to use the User.ReadWrite, User.ReadWrite.All, Directory.ReadWrite.All, +or Directory.AccessAsUser.All scope. + +## EXAMPLES + +### EXAMPLE 1 +``` +Set-GraphUser -Birthday "31 march 1965" -Aboutme "Lots to say" -PastProjects "Phoenix","Excalibur" -interests "Photography","F1" -Skills "PowerShell","Active Directory","Networking","Clustering","Excel","SQL","Devops","Server builds","Windows Server","Office 365" -Responsibilities "Design","Implementation","Audit" +Sets the current user, giving lists for projects, interests and skills +``` + +## PARAMETERS + +### -UserID +ID for the user if not the current user + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: 1 +Default value: Me +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -AboutMe +A freeform text entry field for the user to describe themselves. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Mail +The SMTP address for the user, for example, 'Alex@contoso.onmicrosoft.com' + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OtherMails +A list of additional email addresses for the user; for example: \['bob@contoso.com', 'Robert@fabrikam.com'\]. + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MobilePhone +User's mobile phone number + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BusinessPhones +The telephone numbers for the user. +NOTE: Although this is a string collection, only one number can be set for this property + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -MySite +Url for user's personal site. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UsageLocation +A two letter country code (ISO standard 3166). +Required for users that will be assigned licenses due to legal requirement to check for availability of services in countries. +Examples include: 'US', 'JP', and 'GB' + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DisplayName +The name displayed in the address book for the user. +This is usually the combination of the user''s first name, middle initial and last name. +This property is required when a user is created and it cannot be cleared during updates. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -GivenName +The given name (first name) of the user. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: FirstName + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Surname +User's last / family name + +```yaml +Type: String +Parameter Sets: (All) +Aliases: LastName + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -JobTitle +The user's job title + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Department +The name for the department in which the user works. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -OfficeLocation +The office location in the user's place of business. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CompanyName +The company name which the user is associated. +This property can be useful for describing the company that an external user comes from. +The maximum length of the company name is 64 chararcters. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Manager +ID or UserPrincipalName of the user's manager + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EmployeeID +The employee identifier assigned to the user by the organization + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EmployeeType +Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -EmployeeHireDate +The date and time when the user was hired or will start work in case of a future hire + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ExternalUserState +For an external user invited to the tenant using the invitation API, this property represents the invited user's invitation status. +For invited users, the state can be PendingAcceptance or Accepted, or null for all other users. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -StreetAddress +The street address of the user's place of business. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -City +The city in which the user is located. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -State +The state, province or county in the user's address. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Country +The country/region in which the user is located; for example, 'US' or 'UK' + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PostalCode +The postal code for the user's postal address, specific to the user's country/region. +In the United States of America, this attribute contains the ZIP code. + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Birthday +User's birthday as a date. +If passing a string it can be "March 31 1965", "31 March 1965", "1965/03/31" or "3/31/1965" - this layout will always be read as US format. + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Interests +List of user's interests + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PastProjects +List of user's past projects + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Photo +Path to a .jpg file holding the users photos + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Responsibilities +List of user's responsibilities + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Schools +List of user's Schools + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Skills +List of user's skills + +```yaml +Type: String[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AccountDisabled +Set to disable the user account, to re-enable an account use $AccountDisabled:$false + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +If specified the modified user will be returned + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +Supresses any confirmation prompt + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### Microsoft.Graph.PowerShell.Models.MicrosoftGraphUser +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Show-GraphFolder.md b/Microsoft.Graph.PlusPlus.Docs/docs/Show-GraphFolder.md new file mode 100644 index 0000000..e3159cf --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Show-GraphFolder.md @@ -0,0 +1,102 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Show-GraphFolder + +## SYNOPSIS +Opens a OneDrive folder in a browser + +## SYNTAX + +### FolderName (Default) +``` +Show-GraphFolder [-Path] [-Drive ] [] +``` + +### FolderID +``` +Show-GraphFolder -FolderID [-Drive ] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### EXAMPLE 1 +``` +Show-GraphFolder -Path 'root:/Documents' +Opens the documents folder from the current user's drive in the default browser +Note that root:/documents is how tab completion will render the path, but +/documents is equally valid +``` + +### EXAMPLE 2 +``` +>$drive = Get-GraphTeam -ByName Consultants -Drive +>Show-GraphFolder -Path 'root:/Documents' -drive $drive +Finds the drive for the consultants team, and opens its +documents folder in the default browser +``` + +## PARAMETERS + +### -Path +If Specified gets the folder by folder ID + +```yaml +Type: String +Parameter Sets: FolderName +Aliases: FolderPath + +Required: True +Position: 1 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -FolderID +If Specified gets the folder by folder ID + +```yaml +Type: String +Parameter Sets: FolderID +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Drive +The Drive containing the path . + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: Me/Drive +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Show-GraphSession.md b/Microsoft.Graph.PlusPlus.Docs/docs/Show-GraphSession.md new file mode 100644 index 0000000..c1e45d1 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Show-GraphSession.md @@ -0,0 +1,139 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Show-GraphSession + +## SYNOPSIS +Returns information about the current sesssion + +## SYNTAX + +### None (Default) +``` +Show-GraphSession [-Force] [] +``` + +### Who +``` +Show-GraphSession [-Who] [-Force] [] +``` + +### Scopes +``` +Show-GraphSession [-Scopes] [-Force] [] +``` + +### Options +``` +Show-GraphSession [-Options] [-Force] [] +``` + +### AppName +``` +Show-GraphSession [-AppName] [-Force] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Who +If specified returns only the current account + +```yaml +Type: SwitchParameter +Parameter Sets: Who +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Scopes +If specified returns only the scopes available to the current session + +```yaml +Type: SwitchParameter +Parameter Sets: Scopes +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Options +If specified returns the options set using Set-GraphOption + +```yaml +Type: SwitchParameter +Parameter Sets: Options +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -AppName +If specified returns the current app name. + +```yaml +Type: SwitchParameter +Parameter Sets: AppName +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If specified runs Test-GraphSession to ensure a session exists. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +### System.String +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Test-GraphSession.md b/Microsoft.Graph.PlusPlus.Docs/docs/Test-GraphSession.md new file mode 100644 index 0000000..919a48e --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Test-GraphSession.md @@ -0,0 +1,54 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: +schema: 2.0.0 +--- + +# Test-GraphSession + +## SYNOPSIS +Connect if necessary, catch tokens needing renewal. + +## SYNTAX + +``` +Test-GraphSession [-Quiet] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Quiet +{{ Fill Quiet Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Update-GraphOneNotePage.md b/Microsoft.Graph.PlusPlus.Docs/docs/Update-GraphOneNotePage.md new file mode 100644 index 0000000..68727cf --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Update-GraphOneNotePage.md @@ -0,0 +1,174 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-gb/graph/onenote-update-page +schema: 2.0.0 +--- + +# Update-GraphOneNotePage + +## SYNOPSIS +Update a OneNote page + +## SYNTAX + +``` +Update-GraphOneNotePage [-Page] [[-Action] ] [-Content] [[-Position] ] + [[-Target] ] [-Force] [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +This command makes PATCH requests to https://graph.microsoft.com/v1.0 + /users/{id}/onenote/sections/{id}/pages/{id}/content +or /groups/{id}/onenote/sections/{id}/pages/{id}/content +or /sites/{id}/onenote/sections/{id}/pages/{id}/content +which requires consent to use the Notes.ReadWrite scope or better. +To understand the use of Target, action & Postion and what needs to +be in content for different scenarios, read the MSFT page at the link ... + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -Page +A graph URI pointing to the page, or a page object where the .self property is a graph URI... + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: True +Position: 1 +Default value: None +Accept pipeline input: True (ByValue) +Accept wildcard characters: False +``` + +### -Action +The action to perform on the target element. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 2 +Default value: Append +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Content +A string of well-formed HTML to add to the page, and any image or file binary data. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: 3 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Position +The location to add the supplied content, relative to the target element. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 4 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Target +The element to update. +Must be the #\ or the generated \ of the element, or the body or title keyword. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 5 +Default value: Body +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +If specified, the page is updated without prompting. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +## OUTPUTS + +## NOTES + +## RELATED LINKS + +[https://docs.microsoft.com/en-gb/graph/onenote-update-page](https://docs.microsoft.com/en-gb/graph/onenote-update-page) + diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Update-GraphToDoTask.md b/Microsoft.Graph.PlusPlus.Docs/docs/Update-GraphToDoTask.md new file mode 100644 index 0000000..0bcff96 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Update-GraphToDoTask.md @@ -0,0 +1,292 @@ +--- +external help file: Microsoft.Graph.PlusPlus-help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-gb/graph/onenote-update-page +schema: 2.0.0 +--- + +# Update-GraphToDoTask + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Update-GraphToDoTask -Task [-ToDoList ] [-UserId ] [[-Title] ] + [-BodyText ] [-BodyType ] [-Importance ] [-DueDateTime ] [-Status ] + [-CompletedDateTime ] [-ReminderDateTime ] [-ReminderOff] [-Recurrence ] [-Force] + [-WhatIf] [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -BodyText +{{ Fill BodyText Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BodyType +{{ Fill BodyType Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: text, html + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CompletedDateTime +{{ Fill CompletedDateTime Description }} + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DueDateTime +{{ Fill DueDateTime Description }} + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Force +{{ Fill Force Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Importance +{{ Fill Importance Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: low, normal, high + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Recurrence +{{ Fill Recurrence Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ReminderDateTime +{{ Fill ReminderDateTime Description }} + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ReminderOff +{{ Fill ReminderOff Description }} + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Status +{{ Fill Status Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: +Accepted values: notStarted, inProgress, completed, waitingOnOthers, deferred + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Task +{{ Fill Task Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: ID + +Required: True +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName, ByValue) +Accept wildcard characters: False +``` + +### -Title +{{ Fill Title Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: 0 +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ToDoList +{{ Fill ToDoList Description }} + +```yaml +Type: Object +Parameter Sets: (All) +Aliases: TodoTaskListId, ListID + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -UserId +{{ Fill UserId Description }} + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### System.Object +### System.String +## OUTPUTS + +### System.Object +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/Update-MgUserTodoListTask_UpdateExpanded1.md b/Microsoft.Graph.PlusPlus.Docs/docs/Update-MgUserTodoListTask_UpdateExpanded1.md new file mode 100644 index 0000000..ce681fa --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/Update-MgUserTodoListTask_UpdateExpanded1.md @@ -0,0 +1,487 @@ +--- +external help file: Microsoft.Graph.Users.private.dll-Help.xml +Module Name: Microsoft.Graph.PlusPlus +online version: https://docs.microsoft.com/en-gb/graph/onenote-update-page +schema: 2.0.0 +--- + +# Update-MgUserTodoListTask_UpdateExpanded1 + +## SYNOPSIS +{{ Fill in the Synopsis }} + +## SYNTAX + +``` +Update-MgUserTodoListTask_UpdateExpanded1 [-AdditionalProperties ] [-Body ] + [-BodyLastModifiedDateTime ] [-Break] [-CompletedDateTime ] + [-CreatedDateTime ] [-DueDateTime ] + [-Extensions ] [-HttpPipelineAppend ] + [-HttpPipelinePrepend ] [-Id ] [-Importance ] [-IsReminderOn] + [-LastModifiedDateTime ] [-LinkedResources ] [-PassThru] + [-Proxy ] [-ProxyCredential ] [-ProxyUseDefaultCredentials] + [-Recurrence ] [-ReminderDateTime ] + [-Status ] [-Title ] -TodoTaskId -TodoTaskListId -UserId [-WhatIf] + [-Confirm] [] +``` + +## DESCRIPTION +{{ Fill in the Description }} + +## EXAMPLES + +### Example 1 +```powershell +PS C:\> {{ Add example code here }} +``` + +{{ Add example description here }} + +## PARAMETERS + +### -AdditionalProperties +Additional Parameters + +```yaml +Type: Hashtable +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Body +itemBody + +```yaml +Type: IMicrosoftGraphItemBody +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -BodyLastModifiedDateTime +The date and time when the task was last modified. +By default, it is in UTC. +You can provide a custom time zone in the request header. +The property value uses ISO 8601 format and is always in UTC time. +For example, midnight UTC on Jan 1, 2020 would look like this: '2020-01-01T00:00:00Z'. + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Break +Wait for .NET debugger to attach + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CompletedDateTime +dateTimeTimeZone + +```yaml +Type: IMicrosoftGraphDateTimeZone +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Confirm +Prompts you for confirmation before running the cmdlet. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: cf + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -CreatedDateTime +The date and time when the task was created. +By default, it is in UTC. +You can provide a custom time zone in the request header. +The property value uses ISO 8601 format. +For example, midnight UTC on Jan 1, 2020 would look like this: '2020-01-01T00:00:00Z'. + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -DueDateTime +dateTimeTimeZone + +```yaml +Type: IMicrosoftGraphDateTimeZone +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Extensions +The collection of open extensions defined for the task. +Nullable. + +```yaml +Type: IMicrosoftGraphExtension[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelineAppend +SendAsync Pipeline Steps to be appended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -HttpPipelinePrepend +SendAsync Pipeline Steps to be prepended to the front of the pipeline + +```yaml +Type: SendAsyncStep[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Id +Read-only. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Importance +importance + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -IsReminderOn +Set to true if an alert is set to remind the user of the task. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LastModifiedDateTime +The date and time when the task was last modified. +By default, it is in UTC. +You can provide a custom time zone in the request header. +The property value uses ISO 8601 format and is always in UTC time. +For example, midnight UTC on Jan 1, 2020 would look like this: '2020-01-01T00:00:00Z'. + +```yaml +Type: DateTime +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -LinkedResources +A collection of resources linked to the task. + +```yaml +Type: IMicrosoftGraphLinkedResource[] +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -PassThru +Returns true when the command succeeds + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Proxy +The URI for the proxy server to use + +```yaml +Type: Uri +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyCredential +Credentials for a proxy server to use for the remote call + +```yaml +Type: PSCredential +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ProxyUseDefaultCredentials +Use the default credentials for the proxy + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Recurrence +patternedRecurrence + +```yaml +Type: IMicrosoftGraphPatternedRecurrence +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -ReminderDateTime +dateTimeTimeZone + +```yaml +Type: IMicrosoftGraphDateTimeZone +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Status +taskStatus + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -Title +A brief description of the task. + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TodoTaskId +key: id of todoTask + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -TodoTaskListId +key: id of todoTaskList + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -UserId +key: id of user + +```yaml +Type: String +Parameter Sets: (All) +Aliases: + +Required: True +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### -WhatIf +Shows what would happen if the cmdlet runs. +The cmdlet is not run. + +```yaml +Type: SwitchParameter +Parameter Sets: (All) +Aliases: wi + +Required: False +Position: Named +Default value: None +Accept pipeline input: False +Accept wildcard characters: False +``` + +### CommonParameters +This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216). + +## INPUTS + +### None +## OUTPUTS + +### System.Boolean +## NOTES + +## RELATED LINKS diff --git a/Microsoft.Graph.PlusPlus.Docs/docs/index.md b/Microsoft.Graph.PlusPlus.Docs/docs/index.md new file mode 100644 index 0000000..8d1d071 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/docs/index.md @@ -0,0 +1,192 @@ +# Documentation for Microsoft.Graph.PlusPlus + +Here you will find the document for the Microsoft.Graph.PlusPlus module! + +If you would like to view the source code for this module, please visit the [Github Repository](https://github.com/jhoneill/MsftGraph) + +## Commands + +The following commands are available as part of the module: + +- Add-FileToGraphNoteBook +- Add-GraphNoteBookPage +- Add-GraphTeamChannel +- Add-GraphTeamMember +- Copy-GraphNoteBookPage +- Get-GraphContext +- Get-GraphConversation +- Get-GraphNoteBook +- Get-GraphNoteBookPage +- Get-GraphNoteBookSection +- Get-GraphTeam +- Get-GraphTeamChannel +- Get-GraphTeamConversation +- Get-GraphTeamThread +- New-GraphGroupPlan +- New-GraphNoteBookSection +- New-GraphSession +- New-GraphTeam +- Out-GraphNoteBook +- Remove-GraphNoteBookPage +- Remove-GraphTeam +- Remove-GraphTeamMember +- Set-GraphDefaultTeam +- Update-GraphNoteBookPage +- Add-FileToGraphOneNote +- Add-GraphEvent +- Add-GraphGroupMember +- Add-GraphGroupThread +- Add-GraphListItem +- Add-GraphOneNotePage +- Add-GraphOneNoteTab +- Add-GraphPlanBucket +- Add-GraphPlannerTab +- Add-GraphPlanTask +- Add-GraphSharePointTab +- Add-GraphWikiTab +- Connect-Graph +- ConvertTo-GraphDateTimeTimeZone +- Copy-FromGraphFolder +- Copy-GraphOneNotePage +- Copy-ToGraphFolder +- Expand-GraphConditionalAccessPolicy +- Export-GraphGroupMember +- Export-GraphUser +- Export-GraphWorkSheet +- Find-GraphPeople +- Get-AccessToken +- Get-GraphApplication +- Get-GraphBucketTaskList +- Get-GraphChannel +- Get-GraphChannelReply +- Get-GraphConditionalAccessPolicy +- Get-GraphContact +- Get-GraphDeletedObject +- Get-GraphDirectoryLog +- Get-GraphDirectoryRole +- Get-GraphDirectoryRoleTemplate +- Get-GraphDomain +- Get-GraphDrive +- Get-GraphEvent +- Get-GraphGroup +- Get-GraphGroupConversation +- Get-GraphGroupList +- Get-GraphGroupThread +- Get-GraphLicense +- Get-GraphList +- Get-GraphMailFolder +- Get-GraphMailItem +- Get-GraphMailTips +- Get-GraphNamedLocation +- Get-GraphOneNoteBook +- Get-GraphOneNotePage +- Get-GraphOneNoteSection +- Get-GraphOrganization +- Get-GraphPlan +- Get-GraphPlanTask +- Get-GraphReminderView +- Get-GraphReport +- Get-GraphServicePrincipal +- Get-GraphSignInLog +- Get-GraphSite +- Get-GraphSiteColumn +- Get-GraphSiteUserList +- Get-GraphSKU +- Get-GraphTeamsApp +- Get-GraphToDoList +- Get-GraphUser +- Get-GraphUserList +- Get-GraphWorkBook +- Grant-GraphDirectoryRole +- Grant-GraphLicense +- Import-GraphGroup +- Import-GraphGroupMember +- Import-GraphUser +- Import-GraphWorksheet +- Invoke-GraphRequest +- Move-GraphMailItem +- New-GraphAttendee +- New-GraphBooleanColumn +- New-GraphCalculatedColumn +- New-GraphChannel +- New-GraphChannelMessage +- New-GraphChannelReply +- New-GraphChoiceColumn +- New-GraphColumn +- New-GraphContact +- New-GraphCurrencyColumn +- New-GraphDateTimeColumn +- New-GraphFolder +- New-GraphGroup +- New-GraphInvitation +- New-GraphList +- New-GraphLookupColumn +- New-GraphMailAddress +- New-GraphNumberColumn +- New-GraphOneNoteSection +- New-GraphPersonOrGroupColumn +- New-GraphPhysicalAddress +- New-GraphRecipient +- New-GraphRecurrence +- New-GraphTeamPlan +- New-GraphTextColumn +- New-GraphToDoList +- New-GraphToDoTask +- New-GraphUser +- New-GraphWorkBook +- Out-GraphOneNote +- Remove-GraphChannel +- Remove-GraphContact +- Remove-GraphEvent +- Remove-GraphGroup +- Remove-GraphGroupMember +- Remove-GraphGroupThread +- Remove-GraphListItem +- Remove-GraphOneNotePage +- Remove-GraphPlan +- Remove-GraphPlanBucket +- Remove-GraphPlanTask +- Remove-GraphToDoList +- Remove-GraphToDoTask +- Remove-GraphUser +- Rename-GraphPlanBucket +- Reset-GraphUserPassword +- Restore-GraphDeletedObject +- Revoke-GraphDirectoryRole +- Revoke-GraphLicense +- Save-GraphMailAttachment +- Send-GraphGroupReply +- Send-GraphMailForward +- Send-GraphMailMessage +- Send-GraphMailReply +- Set-GraphContact +- Set-GraphDefaultGroup +- Set-GraphEvent +- Set-GraphGroup +- Set-GraphHomeDrive +- Set-GraphListItem +- Set-GraphOneNoteHome +- Set-GraphOptions +- Set-GraphPlanDetails +- Set-GraphPlanTask +- Set-GraphTeam +- Set-GraphUser +- Show-GraphFolder +- Show-GraphSession +- Test-GraphSession +- Update-GraphOneNotePage +- Update-GraphToDoTask +- Get-MgDomainNameerenceByRef_List1 +- Get-MgDomainServiceConfigurationRecord_List1 +- Get-MgDomainVerificationDnsRecord_List1 +- Get-MgDomain_Get1 +- Get-MgDomain_List1 +- Get-MgOrganization_List1 +- Get-MgSubscribedSku_Get1 +- Get-MgSubscribedSku_List1 +- New-MgUserTodoListTask_CreateExpanded1 +- New-MgUserTodoList_CreateExpanded1 +- Remove-MgUserTodoListTask_Delete1 +- Remove-MgUserTodoList_Delete1 +- Remove-MgUser_Delete +- Update-MgUserTodoListTask_UpdateExpanded1 diff --git a/Microsoft.Graph.PlusPlus.Docs/mkdocs.yml b/Microsoft.Graph.PlusPlus.Docs/mkdocs.yml new file mode 100644 index 0000000..1f883d2 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/mkdocs.yml @@ -0,0 +1,2 @@ +site_name: Microsoft.Graph.PlusPlus Docs +theme: readthedocs diff --git a/Microsoft.Graph.PlusPlus.Docs/site/404.html b/Microsoft.Graph.PlusPlus.Docs/site/404.html new file mode 100644 index 0000000..0cb5466 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/404.html @@ -0,0 +1,754 @@ + + + + + + + + + + + + Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + +
  • + +
  • +
+ +
+
+
+
+ + +

404

+ +

Page not found

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Add-FileToGraphOneNote/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Add-FileToGraphOneNote/index.html new file mode 100644 index 0000000..ba54921 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Add-FileToGraphOneNote/index.html @@ -0,0 +1,995 @@ + + + + + + + + + + + + Add-FileToGraphOneNote - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Add-FileToGraphOneNote
  • +
  • + +
  • +
+ +
+
+
+
+ +

Add-FileToGraphOneNote

+

SYNOPSIS

+

Adds a file to a new OneNote page

+

SYNTAX

+
Add-FileToGraphOneNote [-Path] <Object> [[-Title] <String>] [[-Section] <Object>] [[-PreContent] <String[]>]
+ [[-PostContent] <String[]>] [[-MimeType] <String>] [-PassThru] [-Force] [-WhatIf] [-Confirm]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

Adds a file to a new one page. +If the file is an image, the it will be rendered on the page +Other files will be embedded. +OneNote can render some types (e.g. +PDF) +This builds very simple HTML, which can be updated later. +For more sophistaced pages use Add-GraphOneNotePage - with -HTMLPage as a byte array and +specify a contentType of "multipart/form-data; boundary={MARKER}"

+

EXAMPLES

+

EXAMPLE 1

+
>Add-FileToGraphOneNote -Path .\Modules\MsftGraph\Examples\upload.jpg -Title "Demo" -Section $notebook.sections[0] `
+          -PreContent "<h1>QR Code for the GIT repo</h1>" -PostContent "<b>Share and Enjoy</b>" -PassThru
+
+ +

$Notebook holds a notebook object with one or more section(s). +The command adds a page in the first section, +titles it "Demo", and puts upload.jpg on it with formatted text before and after the image.

+

PARAMETERS

+

-Path

+

The file to upload to OneNote

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Title

+

Title for the page. +If not specified the file name will be used.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Section

+

Section to post to - this can be set by Set-GraphOneNoteHome

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 3
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PreContent

+

Specifies text to add before the embedded object. +By default, there is no text in that position.

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 4
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PostContent

+

Specifies text to add after the embedded object. +By default, there is no text in that position.

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 5
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-MimeType

+

A recognized mime type for the embedded file. +on Windows the command will try to determine this from the file extension.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 6
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PassThru

+

Normally the page containing the file is added 'silently'. +If passthru is specified, an object describing the new page will be returned.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: PT
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If specified the command will not pause for conformation, this is the default unless $ConfirmPreference is modified,

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

A file to be sent to OneNote

+

OUTPUTS

+

NOTES

+ +

Add-GraphOneNotePage.

+ +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphEvent/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphEvent/index.html new file mode 100644 index 0000000..5882880 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphEvent/index.html @@ -0,0 +1,1151 @@ + + + + + + + + + + + + Add-GraphEvent - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Add-GraphEvent
  • +
  • + +
  • +
+ +
+
+
+
+ +

Add-GraphEvent

+

SYNOPSIS

+

Adds an event to a calendar

+

SYNTAX

+

User

+
Add-GraphEvent [-User <String>] [-Calendar <Object>] [-Subject <String>] -Start <DateTime> [-End <DateTime>]
+ [-Timezone <Object>] [-AllDay] [-Location <Object>] [-Attendees <Object>] [-ShowAs <String>] [-ReminderOn]
+ [-ReminderTime <Object>] [-Body <Object>] [-BodyType <Object>] [-Importance <String>] [-Sensitivity <String>]
+ [-Recurrence <Object>] [-PassThru] [<CommonParameters>]
+
+ +

Group

+
Add-GraphEvent -Group <Object> [-Subject <String>] -Start <DateTime> [-End <DateTime>] [-Timezone <Object>]
+ [-AllDay] [-Location <Object>] [-Attendees <Object>] [-ShowAs <String>] [-ReminderOn] [-ReminderTime <Object>]
+ [-Body <Object>] [-BodyType <Object>] [-Importance <String>] [-Sensitivity <String>] [-Recurrence <Object>]
+ [-PassThru] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
>$rec = New-RecurrencePattern -Weekly Friday -EndDate 2019-04-01
+>Add-GraphEvent -Start "2019-01-23 15:30:00" -subject "Enter time sheet" -Recurrence $rec
+Creates a recurring event. The first sets up a weekly schedule for Fridays until April 1st.
+The second sets the time  (if no end is given, it is set for 30 minutes after the start),
+the subject, and the recurrence pattern
+
+ +

EXAMPLE 2

+
>$Chris = New-Attendee -Mail Chris@Contoso.com
+>Add-GraphEvent -subject "Requirements for Basingstoke project" -Start "2019-02-02 10:00" -End "2019-02-02 11:00" -Attendees $chris
+Creates a meeting with a second person. The first command creates an attendee - by default the attendee is 'required'
+The second creates the appointment, adding the attendee and sending a meeting request.
+
+ +

EXAMPLE 3

+
>$Chris = New-Attendee -Mail Chris@Contoso.com -display 'Chris Cross' optional
+>$Phil  = New-Attendee -Mail Phil@Contoso.com
+>Add-GraphEvent -subject "Phase II planning" -Start "2019-02-02 14:00" -End "2019-02-02 14:30" -Attendees $chris,$phil
+Creates a meeting with a second additonal attendee. The first command creates an optional attendee with a display name
+the second creates an attendee with no displayed name and the default 'required' type
+Finally the meeting is created.
+
+ +

PARAMETERS

+

-User

+

UserID as a guid or User Principal name, whose calendar should be fetched If not specified defaults to "me"

+
Type: String
+Parameter Sets: User
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Calendar

+

A sepecific calendar belonging to a user.

+
Type: Object
+Parameter Sets: User
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName, ByValue)
+Accept wildcard characters: False
+
+ +

-Group

+

Group ID or a Group object with an ID whose calendar should be fetched

+
Type: Object
+Parameter Sets: Group
+Aliases: Team
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Subject

+

Subject for the appointment

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Start

+

Start time - if -Timezone is not used this will be the in local machine's times zone

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-End

+

End Time - if -Timezone is not used this will be the in local machine's times zone

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Timezone

+

Timezone - by default the local machine's time zone is used

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: $(tzutil.exe /g)
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllDay

+

Creates the event as all day.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Location

+

Location for the appointment

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Attendees

+

People or resources involved in the event.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ShowAs

+

Sets the task to appear as Free, Tenatative, Off-of-facility etc

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ReminderOn

+

Unless -Reminder on is specified no reminder will sound before the meeting

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ReminderTime

+

Time in Minutes, before the start time, that the reminder should appear. +It will be set even if -ReminderOn is omitted

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Body

+

Body text - if using HTML set the body type to HTML

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-BodyType

+

Type of text used for the body, Text or HTML

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: Text
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Importance

+

Priority setting , high , normal or low.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Sensitivity

+

Privacy setting - normal or Private

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Recurrence

+

Recurrence pattern build with New-recurrencePattern

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PassThru

+

for some of things still to do see https://docs.microsoft.com/en-us/graph/api/event-update?view=graph-rest-beta +and https://docs.microsoft.com/en-us/graph/api/user-post-events?view=graph-rest-beta +Attendees is one. +link says this also sends the invite

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: PT
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ +

Get-GraphEvent

+ +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphGroupMember/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphGroupMember/index.html new file mode 100644 index 0000000..d1f9b3c --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphGroupMember/index.html @@ -0,0 +1,923 @@ + + + + + + + + + + + + Add-GraphGroupMember - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Add-GraphGroupMember
  • +
  • + +
  • +
+ +
+
+
+
+ +

Add-GraphGroupMember

+

SYNOPSIS

+

Adds a user (or group) to a group/team as either a member or owner.

+

SYNTAX

+
Add-GraphGroupMember [-Group] <Object> [-Member] <Object> [-AsOwner] [-Force] [-WhatIf] [-Confirm]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

Because the group may be a team the this command has alias of Add-GraphTeamMember. +it requires consent to use the Group.ReadWrite.All, Directory.ReadWrite.All, or +Directory.AccessAsUser.All scope.

+

EXAMPLES

+

EXAMPLE 1

+
$newGroup = New-GraphGroup -Name Test101
+>Get-GraphUserList -Filter "Department eq 'Accounts'" | Add-GraphGroupMember -Group $newGroup
+Creates a new group; then gets a list of users and adds them to the group.
+
+ +

EXAMPLE 2

+
Add-GraphTeamMember -Team $Newteam -Member alex@contoso.com -AsOwner
+Adds an owner to a team, using aliases for both the command and the group parameter
+
+ +

PARAMETERS

+

-Group

+

The group / team either as an ID or a group/team object with an IDn

+
Type: Object
+Parameter Sets: (All)
+Aliases: Team
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Member

+

The user or nested-group to add, either as a UPN or ID or as a object with an ID

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-AsOwner

+

If specified the user will be added as an owner, otherwise they will be a standard member

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If specified group member will be added without prompting

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphGroupThread/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphGroupThread/index.html new file mode 100644 index 0000000..8613d1d --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphGroupThread/index.html @@ -0,0 +1,952 @@ + + + + + + + + + + + + Add-GraphGroupThread - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Add-GraphGroupThread
  • +
  • + +
  • +
+ +
+
+
+
+ +

Add-GraphGroupThread

+

SYNOPSIS

+

Starts a new thread in a group in outlook.

+

SYNTAX

+
Add-GraphGroupThread [-Group] <Object> [-ThreadTopic] <Object> [-Content] <String> [-ContentType <String>]
+ [-Force] [-PassThru] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

Requires consent to use the Group.ReadWrite.All scope

+

EXAMPLES

+

EXAMPLE 1

+
>$G = Get-GraphGroup  consultants
+>Add-GraphGroupThread -Group $G -Subject "Running tests.." -Content "We will be running a full test pass this afternoon"
+Gets a group by name and creates a new thread with a message using a plain text body.
+
+ +

EXAMPLE 2

+
$thread = Add-GraphGroupThread -passthru -Group $G -Subject "Ruuning tests.." -ContentType HTML -Content "<b><i>Drum-Roll...</i>A full test pass is running... Watch this space</i>"
+Uses the group from the previous example, and creates a thread with an HTML body, and keeps a reference to it.
+
+ +

PARAMETERS

+

-Group

+

The group where the thread will be added

+
Type: Object
+Parameter Sets: (All)
+Aliases: Team
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ThreadTopic

+

The subject line for the thread

+
Type: Object
+Parameter Sets: (All)
+Aliases: Subject
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Content

+

The Message body - text by default, specify -contentType if using HTML

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 3
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ContentType

+

The content type, (Text by default) or HTML

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: Text
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

if Specified the message will be created without prompting; this is the default, unless $confirm preference has been changed

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PassThru

+

if Specified an object containing the Thread ID will be returned

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ +

Send-GraphGroupReply

+ +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphListItem/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphListItem/index.html new file mode 100644 index 0000000..4faece8 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphListItem/index.html @@ -0,0 +1,940 @@ + + + + + + + + + + + + Add-GraphListItem - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Add-GraphListItem
  • +
  • + +
  • +
+ +
+
+
+
+ +

Add-GraphListItem

+

SYNOPSIS

+

Adds an item to a SharePoint List

+

SYNTAX

+
Add-GraphListItem [-List] <Object> [-Fields] <Hashtable> [-Site <Object>] [-Passthru] [-Force] [-WhatIf]
+ [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

This posts a new item to https://graph.microsoft.com/v1.0/sites/{id}/lists{id}/items +which requires consent to use the Sites.ReadWrite.All scope +Posting to a list is quite basic - it is a set of Name-ValuePairs and +FIELD NAMES ARE CASE SENSITIVE. +If you get a 400 error from the server the +first thing to check is the names of the fields. +It does not appear to be possible to +post certain types of field - lookup and Person/Group being the major issues. +The command will try to post what it is given, but it makes no attempt at validating it!

+

EXAMPLES

+

EXAMPLE 1

+
>$myteamsite = Get-GraphTeam -Site |select -first 1
+>$problemslist = $myteamsite.lists.where({$_.name -like "problem*"})
+>Add-GraphListItem  -List $problemslist -Fields @{Title='Demo Item';IssueStatus='Active';Priority='(2) Normal';}
+
+ +

The first command gets a team site which has a list named "Problem reports" +The second line gets that list +The third creates a list item with Title, IssueStatus and Priority fields.

+

PARAMETERS

+

-List

+

The list to add to; this can be an ID, or list object with an ID, and a site ID

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Fields

+

The item property values in a hash table as @{col1=$value1; col2='Value2'; col3=33}

+
Type: Hashtable
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Site

+

If the list parameter does not contain a .SiteID property allows the site to specified as an ID or object

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Passthru

+

If specified the new item will be returned, otherwise it is created silently.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: PT
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If specified the item will be added without prompting for confirmation (this is the default unless confirm preference is changed)

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphOneNotePage/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphOneNotePage/index.html new file mode 100644 index 0000000..f019b7b --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphOneNotePage/index.html @@ -0,0 +1,943 @@ + + + + + + + + + + + + Add-GraphOneNotePage - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Add-GraphOneNotePage
  • +
  • + +
  • +
+ +
+
+
+
+ +

Add-GraphOneNotePage

+

SYNOPSIS

+

Adds a page (in HTML format) to an existing OneNote Section

+

SYNTAX

+
Add-GraphOneNotePage [-Section] <Object> [-HTMLPage] <Object> [[-ContentType] <Object>] [-Force] [-PassThru]
+ [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

This posts to https://graph.microsoft.com/v1.0 + /users/{id}/onenote/sections/{id}/pages +or /groups/{id}/onenote/sections/{id}/pages +or /sites/{id}/onenote/sections/{id}/pages +which requires consent to use the Notes.Create or Notes.ReadWrite scope or better. +To recognise the title the page needs to be in HTML with a head tag like this +\<html> + \<head> + \<title>A page\</title> + \<meta name="created" content="2015-07-22T09:00:00-08:00" /> + \</head> + \<body> + \<p>Here's Some text\</p> + \</body> +\</html>

+

EXAMPLES

+

EXAMPLE 1

+
Add-GraphOneNotePage -Section $section -HTMLPage '<html><head><title>Test Page</Title></head><body><p>Sample Paragraph</p></body></html>'
+With $Section already defined this adds a simple page, with a title and a short body.
+
+ +

PARAMETERS

+

-Section

+

The section either as a URL or or as section object, which contains a self URL or a pages URL this can be set by Set-GraphOneNoteHome

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HTMLPage

+

The content of the page formatted as HTML

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-ContentType

+

By default this is "text/html" - but if the content is multipart use "multipart/form-data; boundary={MARKER}"

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 3
+Default value: Text/html
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If specified, the command will run without asking for confirmation; this is the default unless Confirm Preference has been set

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PassThru

+

Normally the page is added 'silently'. +If passthru is specified, an object describing the new page will be returned.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: PT
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphOneNoteTab/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphOneNoteTab/index.html new file mode 100644 index 0000000..bf7d9ac --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphOneNoteTab/index.html @@ -0,0 +1,939 @@ + + + + + + + + + + + + Add-GraphOneNoteTab - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Add-GraphOneNoteTab
  • +
  • + +
  • +
+ +
+
+
+
+ +

Add-GraphOneNoteTab

+

SYNOPSIS

+

Adds a tab in a Teams channel for a OneNote section or Notebook

+

SYNTAX

+
Add-GraphOneNoteTab [-Notebook] <Object> [-Channel] <Object> [-Team <Object>] [-TabLabel <Object>]
+ [-Force <Object>] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

This posts to https://graph.microsoft.com/v1.0/teams/{id}/channels/{id}/tabs +which requires consent to use the Group.ReadWrite.All scope. +The Notebook Parameter has an alias of 'Section' and will accept either +a OneNote Notebook object (or its 'Self' URI - which requires the tab name to be +set explicitly) or a Section object. +If the notebook is specified it opens at the +first section.

+

EXAMPLES

+

EXAMPLE 1

+
> $section = Get-GraphTeam -ByName accounts -Notebooks | Select-Object -ExpandProperty sections  | where displayname -like "FY-19*"
+> $channel = Get-GraphTeam -ByName accounts -Channels -ChannelName 'year-end'
+> Add-GraphOneNoteTab  $section $channel -TabLabel "FY-19 Notes"
+
+ +

The first command gets the Notebook for the Accounts team and finds the "FY-19 Year End" section +The second command gets the channels for the same team and finds the "Year end" channel +The Third command creates a tab in the channel named 'FY-19 Notes' which opens the team notebook +at its 'FY-19 Year End' section.

+

PARAMETERS

+

-Notebook

+

The Notebook or Section to associate with the tab

+
Type: Object
+Parameter Sets: (All)
+Aliases: Section
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Channel

+

An ID or Channel object which may contain the team ID; the tab will be created in this channel

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Team

+

A team ID, or a team object if the team can't be found from the the channel

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-TabLabel

+

The label for the tab, if left blank the name of the Notebook or Section will be sued

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If Specified the tab will be added without pausing for confirmation, this is the default unless $ConfirmPreference has been set.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphPlanBucket/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphPlanBucket/index.html new file mode 100644 index 0000000..a2fd3d5 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphPlanBucket/index.html @@ -0,0 +1,897 @@ + + + + + + + + + + + + Add-GraphPlanBucket - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Add-GraphPlanBucket
  • +
  • + +
  • +
+ +
+
+
+
+ +

Add-GraphPlanBucket

+

SYNOPSIS

+

Creates a task-bucket in an exsiting plan

+

SYNTAX

+
Add-GraphPlanBucket [-Plan] <Object> [-Name] <Object> [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
New-GraphPlanBucket -Plan $NewTeamplan -Name 'Backlog', 'To-Do','Not Doing'
+Creates 3 buckets in the same plan.
+
+ +

PARAMETERS

+

-Plan

+

The ID of the Plan or a Plan object with an ID property.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Name

+

The Name of the new bucket.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If Specified the bucket will be added without confirmation

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphPlanTask/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphPlanTask/index.html new file mode 100644 index 0000000..b3a88e2 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphPlanTask/index.html @@ -0,0 +1,1054 @@ + + + + + + + + + + + + Add-GraphPlanTask - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Add-GraphPlanTask
  • +
  • + +
  • +
+ +
+
+
+
+ +

Add-GraphPlanTask

+

SYNOPSIS

+

Adds a task to an exsiting plan

+

SYNTAX

+
Add-GraphPlanTask [-Plan] <Object> -Title <Object> [-Description <String>] [-AssignTo <Object>]
+ [-Bucket <Object>] [-StartDate <DateTime>] [-DueDate <DateTime>] [-PercentComplete <Int32>]
+ [-CategoryNumbers <Int32[]>] [-Checklist <String[]>] [-Links <Object>] [-Force] [-Passthru] [-WhatIf]
+ [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

Multiple items may be piped in, to be added to the same plan.

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Plan

+

The ID of the Plan or a Plan object with an ID property.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Title

+

The title of the new task.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Description

+

Longer description of the task

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-AssignTo

+

User(s) to assign the task to either as a UPN name (bob@contoso.com) or ID

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Bucket

+

Bucket to place the task in - it must exist already

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-StartDate

+

Start date for the task

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-DueDate

+

Date by when task should be completed

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-PercentComplete

+

Percentage complete (note the planner app doesn't show percentages, only "Not started", "In Progress", and "Complete")

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: 0
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-CategoryNumbers

+

Category tabs by number (1=Magenta, 2=Red, 3=Orange, 4=Green, 5=Teal, 6=Cyan) + [ValidateRange(1,6)] #doesn't work if piped and values are null.

+
Type: Int32[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Checklist

+

A single item, or an array of items to display as a list with check boxes on the task

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ + +

HyperLinks (a.k.a. +references): a single item, a string with items seperated with ';' an array of strings or as a hash table of URI=Label.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Force

+

if specified the task will be added without confirmation. +(This is the default unless $confirmPreference has been changed)

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Passthru

+

By default, the task is added without returning a result. +-Passthru specifies the new task should be returned.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: PT
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphPlannerTab/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphPlannerTab/index.html new file mode 100644 index 0000000..d8f51c7 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphPlannerTab/index.html @@ -0,0 +1,933 @@ + + + + + + + + + + + + Add-GraphPlannerTab - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Add-GraphPlannerTab
  • +
  • + +
  • +
+ +
+
+
+
+ +

Add-GraphPlannerTab

+

SYNOPSIS

+

Adds a planner tab to a team-channel for a pre-existing plan

+

SYNTAX

+
Add-GraphPlannerTab [-Plan] <Object> [-Channel] <Object> [-Team <Object>] [-TabLabel <Object>]
+ [-Force <Object>] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

This posts to https://graph.microsoft.com/v1.0/teams/{id}/channels/{id}/tabs +which requires consent to use the Group.ReadWrite.All scope.

+

EXAMPLES

+

EXAMPLE 1

+
>$channel = Get-GraphTeam -ByName accounts -Channels -ChannelName 'year-end'
+>$plan   = Get-GraphTeam -ByName accounts  -Plans | where title -Like "year end*"
+>Add-GraphPlannerTab -Plan $plan -Channel $channel -TabLabel "Planner"
+The first line gets the 'year-end' channel for the accounts team
+The second gets a plan with tile which matches 'year end'
+and the third creates a tab labelled 'Planner' in the channel for that plan.
+
+ +

PARAMETERS

+

-Plan

+

An ID or Plan object for a plan within the team

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Channel

+

An ID or Channel object for a channel (which may contain the team ID)

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Team

+

A team ID, or a team object, if not specified as part of the channel

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-TabLabel

+

The label for the tab.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If Specified the tab will be added without confirming

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphSharePointTab/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphSharePointTab/index.html new file mode 100644 index 0000000..e29c30e --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphSharePointTab/index.html @@ -0,0 +1,944 @@ + + + + + + + + + + + + Add-GraphSharePointTab - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Add-GraphSharePointTab
  • +
  • + +
  • +
+ +
+
+
+
+ +

Add-GraphSharePointTab

+

SYNOPSIS

+

Adds a planner tab to a team-channel for sharepoint deurl

+

SYNTAX

+
Add-GraphSharePointTab [-WebUrl] <Object> [-TabLabel] <Object> [[-Template] <Object>] [-Channel] <Object>
+ [-Team <Object>] [-Force <Object>] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

This posts to https://graph.microsoft.com/v1.0/teams/{id}/channels/{id}/tabs +which requires consent to use the Group.ReadWrite.All scope.

+

EXAMPLES

+

EXAMPLE 1

+

+
+ +

PARAMETERS

+

-WebUrl

+

An ID or Plan object for a plan within the team

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-TabLabel

+

The label for the tab by default the displayname for of the list

+
Type: Object
+Parameter Sets: (All)
+Aliases: DisplayName
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Template

+

The label for the tab. +Either a genericList (default) or a documentLibrary

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 3
+Default value: GenericList
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Channel

+

An ID or Channel object for a channel (which may contain the team ID)

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 4
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Team

+

A team ID, or a team object, if not specified as part of the channel

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If Specified the tab will be added without confirming

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphWikiTab/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphWikiTab/index.html new file mode 100644 index 0000000..5b57b7d --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Add-GraphWikiTab/index.html @@ -0,0 +1,915 @@ + + + + + + + + + + + + Add-GraphWikiTab - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Add-GraphWikiTab
  • +
  • + +
  • +
+ +
+
+
+
+ +

Add-GraphWikiTab

+

SYNOPSIS

+

Adds a wiki tab to a channel in teams

+

SYNTAX

+
Add-GraphWikiTab [-Team <Object>] [-Channel] <Object> [-TabLabel <Object>] [-Force] [-WhatIf] [-Confirm]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
New-GraphWikiTab -Channel $Channel -TabLabel Wiki
+Channel contains an object representing a channel in teams,
+this adds a Wiki to it. The Wiki will need to be initialized
+when the tab is first opened
+
+ +

PARAMETERS

+

-Team

+

A team ID, or a team object if the team can't be found from the the channel

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Channel

+

An ID or Channel object which may contain the team ID

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-TabLabel

+

The label for the tab

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: Wiki
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If specified the tab will be added without prompting for confirmation

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Connect-Graph/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Connect-Graph/index.html new file mode 100644 index 0000000..0b6c822 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Connect-Graph/index.html @@ -0,0 +1,894 @@ + + + + + + + + + + + + Connect-Graph - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Connect-Graph
  • +
  • + +
  • +
+ +
+
+
+
+ +

Connect-Graph

+

SYNOPSIS

+

Starts a session with Microsoft Graph

+

SYNTAX

+

UserParameterSet (Default)

+
Connect-Graph [[-Scopes] <String[]>] [-ForceRefresh] [-Quiet] [<CommonParameters>]
+
+ +

AccessTokenParameterSet

+
Connect-Graph [-AccessToken] <String> [-ForceRefresh] [-Quiet] [<CommonParameters>]
+
+ +

DESCRIPTION

+

This commands is a wrapper for Connect-MgGraph it extends the authentication methods available +and caches information needed by other commands.

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Scopes

+

An array of delegated permissions to consent to.

+
Type: String[]
+Parameter Sets: UserParameterSet
+Aliases:
+
+Required: False
+Position: 2
+Default value: $Script:DefaultGraphScopes
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AccessToken

+

Specifies a bearer token for Microsoft Graph service. +Access tokens do timeout and you'll have to handle their refresh.

+
Type: String
+Parameter Sets: AccessTokenParameterSet
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ForceRefresh

+

Forces the command to get a new access token silently.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Quiet

+

Suppress the welcome messages

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/ConvertTo-GraphDateTimeTimeZone/index.html b/Microsoft.Graph.PlusPlus.Docs/site/ConvertTo-GraphDateTimeTimeZone/index.html new file mode 100644 index 0000000..dd56184 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/ConvertTo-GraphDateTimeTimeZone/index.html @@ -0,0 +1,832 @@ + + + + + + + + + + + + ConvertTo-GraphDateTimeTimeZone - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • ConvertTo-GraphDateTimeTimeZone
  • +
  • + +
  • +
+ +
+
+
+
+ +

ConvertTo-GraphDateTimeTimeZone

+

SYNOPSIS

+

Converts a datetime object to dateTimeTimezone object with the current time zone.

+

SYNTAX

+
ConvertTo-GraphDateTimeTimeZone [[-d] <DateTime>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-d

+

{{ Fill d Description }}

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Copy-FromGraphFolder/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Copy-FromGraphFolder/index.html new file mode 100644 index 0000000..13240ce --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Copy-FromGraphFolder/index.html @@ -0,0 +1,936 @@ + + + + + + + + + + + + Copy-FromGraphFolder - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Copy-FromGraphFolder
  • +
  • + +
  • +
+ +
+
+
+
+ +

Copy-FromGraphFolder

+

SYNOPSIS

+

Copies files from OneDrive to the local computer

+

SYNTAX

+
Copy-FromGraphFolder [-Path] <Object> [-Drive <Object>] [[-Destination] <Object>] [-NoClobber] [-Passthru]
+ [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
Copy-FromGraphFolder -Path 'root:/Scripts/Type-Info.xlsx' -Destination c:\temp
+Copies a single file from a "scripts" directory on the user's drive to c:\temp.
+
+ +

EXAMPLE 2

+
>$drive = Get-GraphTeam -ByName Consultants -Drive
+>Get-GraphDrive -Drive $drive -FolderPath 'root:/Documents/Project Firebird/Planning' | Copy-FromGraphFolder -Destination c:\temp
+Gets all the files in a folder on a teams drive and copies them to C:\Temp.
+
+ +

PARAMETERS

+

-Path

+

The path to the file on one drive

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Drive

+

The drive, by default the current user's OneDrive.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: Me/Drive
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Destination

+

The destination on the local computer

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 3
+Default value: $pwd
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-NoClobber

+

If specified prevents an existing file from being overwritten.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Passthru

+

If Specified the destination file will be returned (similar to Copy-Item)

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: PT
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Copy-GraphOneNotePage/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Copy-GraphOneNotePage/index.html new file mode 100644 index 0000000..7f17ea4 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Copy-GraphOneNotePage/index.html @@ -0,0 +1,882 @@ + + + + + + + + + + + + Copy-GraphOneNotePage - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Copy-GraphOneNotePage
  • +
  • + +
  • +
+ +
+
+
+
+ +

Copy-GraphOneNotePage

+

SYNOPSIS

+

Copies a one note page to a different section in the same notebook.

+

SYNTAX

+
Copy-GraphOneNotePage [-Page] <Object> [-DestinationSection] <Object> [-GroupID <Object>] [-Wait]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Page

+

The page to be copied.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-DestinationSection

+

The section the it will be copied to

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-GroupID

+

The group which owns the notebook if required

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Wait

+

{{ Fill Wait Description }}

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Copy-ToGraphFolder/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Copy-ToGraphFolder/index.html new file mode 100644 index 0000000..13a8553 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Copy-ToGraphFolder/index.html @@ -0,0 +1,954 @@ + + + + + + + + + + + + Copy-ToGraphFolder - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Copy-ToGraphFolder
  • +
  • + +
  • +
+ +
+
+
+
+ +

Copy-ToGraphFolder

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Copy-ToGraphFolder [-Path] <Object> [-Destination] <String> [[-Drive] <Object>] [[-ContentType] <String>]
+ [[-ConflictBehavior] <Object>] [-ForceResumable] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ConflictBehavior

+

{{ Fill ConflictBehavior Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+Accepted values: replace, fail, rename
+
+Required: False
+Position: 4
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ContentType

+

{{ Fill ContentType Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 3
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Destination

+

{{ Fill Destination Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Drive

+

{{ Fill Drive Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ForceResumable

+

{{ Fill ForceResumable Description }}

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Path

+

{{ Fill Path Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

System.Object

+

OUTPUTS

+

System.Object

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Expand-GraphConditionalAccessPolicy/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Expand-GraphConditionalAccessPolicy/index.html new file mode 100644 index 0000000..b2ba004 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Expand-GraphConditionalAccessPolicy/index.html @@ -0,0 +1,846 @@ + + + + + + + + + + + + Expand-GraphConditionalAccessPolicy - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Expand-GraphConditionalAccessPolicy
  • +
  • + +
  • +
+ +
+
+
+
+ +

Expand-GraphConditionalAccessPolicy

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Expand-GraphConditionalAccessPolicy [[-Policy] <Object>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Policy

+

{{ Fill Policy Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 0
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

System.Object

+

OUTPUTS

+

System.Object

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Export-GraphGroupMember/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Export-GraphGroupMember/index.html new file mode 100644 index 0000000..0c963a5 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Export-GraphGroupMember/index.html @@ -0,0 +1,872 @@ + + + + + + + + + + + + Export-GraphGroupMember - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Export-GraphGroupMember
  • +
  • + +
  • +
+ +
+
+
+
+ +

Export-GraphGroupMember

+

SYNOPSIS

+

Exports a list of group memberships to a CSV file

+

SYNTAX

+
Export-GraphGroupMember [-Group] <Object> [-Path <Object>] [-OrderByGroup] [<CommonParameters>]
+
+ +

DESCRIPTION

+

Takes a list of groups (as a parameter or from the pipeline) and creates four columns +* Action is either Add or Remove - on export it will always be add +* MemberOf the name of ONE group the user should be added to or removed from +* UserPrincipalName the name which will be used for add/remove operations. +* Displayname just to make things easier to read, especially if UPNs are opaque +If a file is specified it will be treated as CSV file for export, +otherwise the objects are output

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Group

+

One or more group(s) to export

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Path

+

Destination for CSV output

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-OrderByGroup

+

If specified , output will be in Group name order (default is User name.)

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Export-GraphUser/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Export-GraphUser/index.html new file mode 100644 index 0000000..86afe4d --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Export-GraphUser/index.html @@ -0,0 +1,898 @@ + + + + + + + + + + + + Export-GraphUser - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Export-GraphUser
  • +
  • + +
  • +
+ +
+
+
+
+ +

Export-GraphUser

+

SYNOPSIS

+

Exports a list of users to a CSV file

+

SYNTAX

+
Export-GraphUser [-Path] <Object> [-Filter <Object>] [-ListSeparator <Object>] [-WhatIf] [-Confirm]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Path

+

Destination for CSV output

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Filter

+

Filter clause for the query for example "department eq 'accounts'"

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ListSeparator

+

String to insert between parts of multi-part items.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: ;
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Export-GraphWorkSheet/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Export-GraphWorkSheet/index.html new file mode 100644 index 0000000..ba3f3a9 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Export-GraphWorkSheet/index.html @@ -0,0 +1,1028 @@ + + + + + + + + + + + + Export-GraphWorkSheet - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Export-GraphWorkSheet
  • +
  • + +
  • +
+ +
+
+
+
+ +

Export-GraphWorkSheet

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+

ItemNameRange

+
Export-GraphWorkSheet [-Drive <Object>] [-ItemPath] <Object> [[-SheetName] <String>] [-InputObject <Object>]
+ [-NoHeader] -RangeName <String> [-dateFormat <String>] [-Show] [<CommonParameters>]
+
+ +

ItemNameTable

+
Export-GraphWorkSheet [-Drive <Object>] [-ItemPath] <Object> [[-SheetName] <String>] [-InputObject <Object>]
+ [-NoHeader] [-AsTable] [-dateFormat <String>] [-Show] [<CommonParameters>]
+
+ +

ItemName

+
Export-GraphWorkSheet [-Drive <Object>] [-ItemPath] <Object> [[-SheetName] <String>] [-InputObject <Object>]
+ [-NoHeader] [-dateFormat <String>] [-Show] [<CommonParameters>]
+
+ +

ItemIDRange

+
Export-GraphWorkSheet [-Drive <Object>] -ItemID <Object> [[-SheetName] <String>] [-InputObject <Object>]
+ [-NoHeader] -RangeName <String> [-dateFormat <String>] [-Show] [<CommonParameters>]
+
+ +

ItemIDTable

+
Export-GraphWorkSheet [-Drive <Object>] -ItemID <Object> [[-SheetName] <String>] [-InputObject <Object>]
+ [-NoHeader] [-AsTable] [-dateFormat <String>] [-Show] [<CommonParameters>]
+
+ +

ItemID

+
Export-GraphWorkSheet [-Drive <Object>] -ItemID <Object> [[-SheetName] <String>] [-InputObject <Object>]
+ [-NoHeader] [-dateFormat <String>] [-Show] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-AsTable

+

{{ Fill AsTable Description }}

+
Type: SwitchParameter
+Parameter Sets: ItemNameTable, ItemIDTable
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Drive

+

{{ Fill Drive Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-InputObject

+

{{ Fill InputObject Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-ItemID

+

{{ Fill ItemID Description }}

+
Type: Object
+Parameter Sets: ItemIDRange, ItemIDTable, ItemID
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ItemPath

+

{{ Fill ItemPath Description }}

+
Type: Object
+Parameter Sets: ItemNameRange, ItemNameTable, ItemName
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-NoHeader

+

{{ Fill NoHeader Description }}

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-RangeName

+

{{ Fill RangeName Description }}

+
Type: String
+Parameter Sets: ItemNameRange, ItemIDRange
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-SheetName

+

{{ Fill SheetName Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases: WorkSheetName
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Show

+

{{ Fill Show Description }}

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-dateFormat

+

{{ Fill dateFormat Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

System.Object

+

System.Management.Automation.SwitchParameter

+

System.String

+

OUTPUTS

+

System.Object

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Find-GraphPeople/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Find-GraphPeople/index.html new file mode 100644 index 0000000..47e74fa --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Find-GraphPeople/index.html @@ -0,0 +1,878 @@ + + + + + + + + + + + + Find-GraphPeople - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Find-GraphPeople
  • +
  • + +
  • +
+ +
+
+
+
+ +

Find-GraphPeople

+

SYNOPSIS

+

Searches people in your inbox / contacts / directory

+

SYNTAX

+

Default (Default)

+
Find-GraphPeople [-Topic] <Object> [-First <Int32>] [<CommonParameters>]
+
+ +

Fuzzy

+
Find-GraphPeople -SearchTerm <Object> [-First <Int32>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

Requires consent to use either the People.Read or the People.Read.All scope

+

EXAMPLES

+

EXAMPLE 1

+
Find-GraphPeople -Topic timesheet -First 6
+Returns the top 6 results for people you have discussed timesheets with.
+
+ +

PARAMETERS

+

-Topic

+

Text to use in a 'Topic' Search. +Topics are not pre-defined, but inferred using machine learning based on your conversation history (!)

+
Type: Object
+Parameter Sets: Default
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-SearchTerm

+

Text to use in a search on name and email address

+
Type: Object
+Parameter Sets: Fuzzy
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-First

+

Number of results to return (10 by default)

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: 10
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-AccessToken/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-AccessToken/index.html new file mode 100644 index 0000000..d7af20f --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-AccessToken/index.html @@ -0,0 +1,878 @@ + + + + + + + + + + + + Get-AccessToken - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-AccessToken
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-AccessToken

+

SYNOPSIS

+

Requests a token for a resource path, used by connect graph but available to other tools.

+

SYNTAX

+
Get-AccessToken [[-Resoure] <String>] [-GrantType] <String> [[-BodyParts] <Hashtable>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

An access token is obtained form "https://login.microsoft.com/\<\<tenant-ID>>/oauth2/token" +By specifying the ID, and secret of a client app known to in that tenant, +different modes of granting a token to access a resource (logging on) are possible: +Extra fields passed in BodyParts grant_type +* Username and password 'Password' +* Refresh_token 'Referesh_token' +* None (logon as the app itself) 'client_credentials' +The Set-GraphOptions command sets the tenant ID, a client ID and a client secret +for the session. +By default, when the module loads it looks at $env:GraphSettingsPath or for +Microsoft.Graph.PlusPlus.settings.ps1 in the module folder, and executes it to set these values) +Get-AccessToken relies on these if they are not set Connect-Graph removes the parameters +which support non-intereactive logons and calling it seperately will fail

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Resoure

+

{{ Fill Resoure Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: Https://graph.microsoft.com
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-GrantType

+

{{ Fill GrantType Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-BodyParts

+

{{ Fill BodyParts Description }}

+
Type: Hashtable
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 3
+Default value: @{}
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphApplication/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphApplication/index.html new file mode 100644 index 0000000..c974a89 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphApplication/index.html @@ -0,0 +1,905 @@ + + + + + + + + + + + + Get-GraphApplication - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphApplication
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphApplication

+

SYNOPSIS

+

Returns information about Applications

+

SYNTAX

+

List1 (Default)

+
Get-GraphApplication [-Property <String[]>] [-Filter <String>] [<CommonParameters>]
+
+ +

List3

+
Get-GraphApplication [[-Id] <String>] [-Property <String[]>] [<CommonParameters>]
+
+ +

List2

+
Get-GraphApplication [-AppId <String>] [-Property <String[]>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Id

+

{{ Fill Id Description }}

+
Type: String
+Parameter Sets: List3
+Aliases:
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AppId

+

The GUID(s) for Apps(s). +Or App objects. +If a name is given instead, the command will try to resolve matching App principals

+
Type: String
+Parameter Sets: List2
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Property

+

Select properties to be returned

+
Type: String[]
+Parameter Sets: (All)
+Aliases: Select
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Filter

+

Filters items by property values

+
Type: String
+Parameter Sets: List1
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphApplication

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphBucketTaskList/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphBucketTaskList/index.html new file mode 100644 index 0000000..260d829 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphBucketTaskList/index.html @@ -0,0 +1,861 @@ + + + + + + + + + + + + Get-GraphBucketTaskList - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphBucketTaskList
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphBucketTaskList

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Get-GraphBucketTaskList [-Bucket] <Object> [-Expand] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Bucket

+

{{ Fill Bucket Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases: ID
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByPropertyName, ByValue)
+Accept wildcard characters: False
+
+ +

-Expand

+

{{ Fill Expand Description }}

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: FullTasks
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

System.Object

+

OUTPUTS

+

System.Object

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphChannel/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphChannel/index.html new file mode 100644 index 0000000..9c9f1ac --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphChannel/index.html @@ -0,0 +1,1006 @@ + + + + + + + + + + + + Get-GraphChannel - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphChannel
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphChannel

+

SYNOPSIS

+

Gets details of a channel, or its Tabs or messages shown in Teams

+

SYNTAX

+

None (Default)

+
Get-GraphChannel [-Team <Object>] [<CommonParameters>]
+
+ +

CHFiles

+
Get-GraphChannel [-Team <Object>] [-Channel] <Object> [-Files] [<CommonParameters>]
+
+ +

CHFolder

+
Get-GraphChannel [-Team <Object>] [-Channel] <Object> [-Folder] [<CommonParameters>]
+
+ +

CHTabs

+
Get-GraphChannel [-Team <Object>] [-Channel] <Object> [-Tabs] [<CommonParameters>]
+
+ +

CHMsgs

+
Get-GraphChannel [-Team <Object>] [-Channel] <Object> [-Messages] [-Top <Object>] [<CommonParameters>]
+
+ +

NoCHTabs

+
Get-GraphChannel [-Team <Object>] [-Tabs] [<CommonParameters>]
+
+ +

NoCHFolder

+
Get-GraphChannel [-Team <Object>] [-Folder] [<CommonParameters>]
+
+ +

NoCHFiles

+
Get-GraphChannel [-Team <Object>] [-Files] [<CommonParameters>]
+
+ +

NoCHMsgs

+
Get-GraphChannel [-Team <Object>] [-Messages] [-Top <Object>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphTeam  consultants -ChannelName general | Get-GraphChannel -Tabs
+Gets channels for the team(s) with a name beginning 'Consultants' and selects channel(s)
+with a name beginning "general"; then gets the tabs shown in Teams for this channel
+
+ +

EXAMPLE 2

+
Set-GraphDefaultGroup 'Consultants'
+> ...
+> Get-GraphChannel 'General' -Messages
+If the default group is set to a suitable team, it is possible to tab complete the channel name
+and ther is no need specify the team
+
+ +

EXAMPLE 3

+
Get-GraphChannel -Team accounts -channel general -Messages
+This specifies a non-default team, and gets messages from the teams general channel.
+
+ +

EXAMPLE 4

+
Get-GraphChannel -Team $t
+Gets the basic channel information for team.
+
+ +

PARAMETERS

+

-Team

+

The ID of the team if it is not in the channel object. +If not specified the current users teams are tried

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Channel

+

The channel either as a name, an ID or as a channel object (which may contain the team as a property)

+
Type: Object
+Parameter Sets: CHFiles, CHFolder, CHTabs, CHMsgs
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Tabs

+

If specified gets the channel's Tabs

+
Type: SwitchParameter
+Parameter Sets: CHTabs, NoCHTabs
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Folder

+

If specified gets the channel's Tabs

+
Type: SwitchParameter
+Parameter Sets: CHFolder, NoCHFolder
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Files

+

{{ Fill Files Description }}

+
Type: SwitchParameter
+Parameter Sets: CHFiles, NoCHFiles
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Messages

+

if Specified uses the beta api to get the channel's messages.

+
Type: SwitchParameter
+Parameter Sets: CHMsgs, NoCHMsgs
+Aliases: Msgs
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Top

+

If specified, returns the top n messages, otherwise the command will attempt to get all messages. +The server may return more than the specified number.

+
Type: Object
+Parameter Sets: CHMsgs, NoCHMsgs
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphChannelReply/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphChannelReply/index.html new file mode 100644 index 0000000..eb60112 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphChannelReply/index.html @@ -0,0 +1,892 @@ + + + + + + + + + + + + Get-GraphChannelReply - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphChannelReply
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphChannelReply

+

SYNOPSIS

+

Returns replies to messages in Teams channels

+

SYNTAX

+
Get-GraphChannelReply [-Message] <Object> [-Team <Object>] [-Channel <Object>] [-PassThru] [<CommonParameters>]
+
+ +

DESCRIPTION

+

Access to channel messages is currently in the BETA API +It is possible to start a new thread, but not to reply to the thread.

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphChannel $General -Messages | Get-GraphChannelReply -PassThru
+The GraphAPI does not return replies when requesting messages
+from a channel in Teams. By piping the messages to Get-GraphChannelReply
+it is possible to get the replies; and if -Passthru is specified
+the messages will returned, followed by their replies.
+So if $General is a channel object, the first message and the its first
+reply might be output like this.
+
+ +

From Created Isreply Deleted Importance Content +---- ------- ------- ------- ---------- ------- +James O'Neill 17/02/2019 11:42 False False normal Project Firebird now has its own channel. +James O'Neill 17/02/2019 13:06 True False normal And the channel has its own planner

+

PARAMETERS

+

-Message

+

The Message to reply to as an ID or a message object containing an ID (and possibly the team and channel ID)

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Team

+

If the message or channel parameters don't include the team ID, the team either as an ID or an object containing the ID

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Channel

+

If Message does not contain the channel, the channel either as an ID or an object containing an ID and possibly the team ID

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PassThru

+

If specified returns the message, followed by its replies. +(Otherwise , only the replies are returned)

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphConditionalAccessPolicy/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphConditionalAccessPolicy/index.html new file mode 100644 index 0000000..26ad87b --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphConditionalAccessPolicy/index.html @@ -0,0 +1,846 @@ + + + + + + + + + + + + Get-GraphConditionalAccessPolicy - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphConditionalAccessPolicy
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphConditionalAccessPolicy

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Get-GraphConditionalAccessPolicy [[-Policy] <Object>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Policy

+

{{ Fill Policy Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 0
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

System.Object

+

OUTPUTS

+

System.Object

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphContact/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphContact/index.html new file mode 100644 index 0000000..7c34a73 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphContact/index.html @@ -0,0 +1,906 @@ + + + + + + + + + + + + Get-GraphContact - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphContact
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphContact

+

SYNOPSIS

+

Get the user's contacts

+

SYNTAX

+

None (Default)

+
Get-GraphContact [-User <String>] [-Select <String[]>] [<CommonParameters>]
+
+ +

FilterByName

+
Get-GraphContact [-User <String>] [-Select <String[]>] -Name <String> [<CommonParameters>]
+
+ +

FilterByString

+
Get-GraphContact [-User <String>] [-Select <String[]>] -Filter <String> [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
get-graphContact -name "o'neill" | ft displayname, mobilephone
+Gets contacts where the display name, given name, surname, file-as name, or email begins with
+O'Neill - note the function handles apostrophe, - a single one would normal cause an error with the query.
+The results are displayed as table with display name and mobile number
+
+ +

PARAMETERS

+

-User

+

UserID as a guid or User Principal name. +If not specified defaults to "me"

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Select

+

A custom set of contact properties to select

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Name

+

If specified looks for contacts where the display name, file-as Name, given name or surname beging with ...

+
Type: String
+Parameter Sets: FilterByName
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Filter

+

A custom OData Filter String

+
Type: String
+Parameter Sets: FilterByString
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphContact

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphDeletedObject/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphDeletedObject/index.html new file mode 100644 index 0000000..93098cb --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphDeletedObject/index.html @@ -0,0 +1,849 @@ + + + + + + + + + + + + Get-GraphDeletedObject - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphDeletedObject
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphDeletedObject

+

SYNOPSIS

+

Returns deleted users or groups from the AAD recycle bin

+

SYNTAX

+
Get-GraphDeletedObject [[-Name] <Object>] [-Group]
+
+ +

DESCRIPTION

+

It can filter by name, and selects users by default or groups if -Group is selected +The results can be piped into Restore-GraphDeletedObject

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Name

+

If specified filters the returned objects to those with a name starts with...

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Group

+

By default user objects are returned. +This switches the choice to group objects.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphDirectoryLog/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphDirectoryLog/index.html new file mode 100644 index 0000000..5aa33b5 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphDirectoryLog/index.html @@ -0,0 +1,857 @@ + + + + + + + + + + + + Get-GraphDirectoryLog - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphDirectoryLog
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphDirectoryLog

+

SYNOPSIS

+

Gets the Directory audit log -requires a priviledged account

+

SYNTAX

+
Get-GraphDirectoryLog [-all] [[-Top] <Object>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

This command calls https://graph.microsoft.com/beta/auditLogs/directoryAudits +which requires consent to use the AuditLog.Read.All Scope this can only be granted to Azure AD apps.

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-all

+

{{ Fill all Description }}

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Top

+

{{ Fill Top Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: 100
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphDirectoryAudit

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphDirectoryRole/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphDirectoryRole/index.html new file mode 100644 index 0000000..42d0844 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphDirectoryRole/index.html @@ -0,0 +1,853 @@ + + + + + + + + + + + + Get-GraphDirectoryRole - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphDirectoryRole
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphDirectoryRole

+

SYNOPSIS

+

Gets an Azure AD directory role or its members

+

SYNTAX

+
Get-GraphDirectoryRole [[-Role] <Object>] [-Members] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphDirectoryRole external* -Members | ft displayname,role
+Lists all members of groups whose names begin "external"
+The command adds the role name to the user object making it possible
+to show the roles and names in the output.
+
+ +

PARAMETERS

+

-Role

+

The role to get, either as a display name (wildcards allowed), an ID, or a Role object containing an ID

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: *
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Members

+

If specified returns the members of the role as user objects

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphDirectoryRoleTemplate/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphDirectoryRoleTemplate/index.html new file mode 100644 index 0000000..8e853bb --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphDirectoryRoleTemplate/index.html @@ -0,0 +1,836 @@ + + + + + + + + + + + + Get-GraphDirectoryRoleTemplate - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphDirectoryRoleTemplate
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphDirectoryRoleTemplate

+

SYNOPSIS

+

Gets directory role templates

+

SYNTAX

+
Get-GraphDirectoryRoleTemplate [[-Template] <Object>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Template

+

{{ Fill Template Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphDomain/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphDomain/index.html new file mode 100644 index 0000000..ec10923 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphDomain/index.html @@ -0,0 +1,915 @@ + + + + + + + + + + + + Get-GraphDomain - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphDomain
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphDomain

+

SYNOPSIS

+

Gets domains in the current tenant

+

SYNTAX

+

None (Default)

+
Get-GraphDomain [<CommonParameters>]
+
+ +

NameRef

+
Get-GraphDomain [-Domain] <Object> [-NameReferenceList] [<CommonParameters>]
+
+ +

SCRecords

+
Get-GraphDomain [-Domain] <Object> [-ServiceConfigurationRecords] [<CommonParameters>]
+
+ +

VDRecords

+
Get-GraphDomain [-Domain] <Object> [-VerificationDNSRecords] [<CommonParameters>]
+
+ +

Domain

+
Get-GraphDomain [-Domain] <Object> [<CommonParameters>]
+
+ +

DESCRIPTION

+

Requires consent to use at least the Directory.Read.All scope

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Domain

+

{{ Fill Domain Description }}

+
Type: Object
+Parameter Sets: NameRef, SCRecords, VDRecords, Domain
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-VerificationDNSRecords

+

{{ Fill VerificationDNSRecords Description }}

+
Type: SwitchParameter
+Parameter Sets: VDRecords
+Aliases: VR
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ServiceConfigurationRecords

+

{{ Fill ServiceConfigurationRecords Description }}

+
Type: SwitchParameter
+Parameter Sets: SCRecords
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-NameReferenceList

+

{{ Fill NameReferenceList Description }}

+
Type: SwitchParameter
+Parameter Sets: NameRef
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.IMicrosoftGraphDomain

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphDrive/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphDrive/index.html new file mode 100644 index 0000000..fb9ef95 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphDrive/index.html @@ -0,0 +1,1119 @@ + + + + + + + + + + + + Get-GraphDrive - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphDrive
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphDrive

+

SYNOPSIS

+

Gets information about a OneDrive volume

+

SYNTAX

+

None (Default)

+
Get-GraphDrive [-Drive <Object>] [-Subfolders] [-Quiet] [<CommonParameters>]
+
+ +

FolderName

+
Get-GraphDrive [-Drive <Object>] [-FolderPath] <String> [-Include <String>] [-Search <String>] [-Subfolders]
+ [-Quiet] [<CommonParameters>]
+
+ +

FolderID

+
Get-GraphDrive [-Drive <Object>] -FolderID <String> [-Include <String>] [-Search <String>] [-Subfolders]
+ [-Quiet] [<CommonParameters>]
+
+ +

Special

+
Get-GraphDrive [-Drive <Object>] -SpecialFolder <String> [-Include <String>] [-Quiet] [<CommonParameters>]
+
+ +

Recent

+
Get-GraphDrive [-Drive <Object>] [-Recent] [-Include <String>] [-Quiet] [<CommonParameters>]
+
+ +

Shared

+
Get-GraphDrive [-Drive <Object>] [-SharedWithMe] [-Include <String>] [-Search <String>] [-Quiet]
+ [<CommonParameters>]
+
+ +

RootSearch

+
Get-GraphDrive [-Drive <Object>] [-Search <String>] [-Quiet] [<CommonParameters>]
+
+ +

RootFolders

+
Get-GraphDrive [-Drive <Object>] [-Subfolders] [-Quiet] [<CommonParameters>]
+
+ +

ItemName

+
Get-GraphDrive [-Drive <Object>] -ItemPath <String> [-Quiet] [<CommonParameters>]
+
+ +

ItemID

+
Get-GraphDrive [-Drive <Object>] -ItemID <String> [-Quiet] [<CommonParameters>]
+
+ +

DESCRIPTION

+

Run with no parameters this gets information about the volume for the current user. +It can get information about another volume by specifying -Drive +It can get information about the root folders, or the contents of a specific folder, +or a link to a special folder or recent items.

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphDrive
+Returns the drive for the current user.
+
+ +

EXAMPLE 2

+
get-graphdrive -Subfolders
+Returns the root folders in the the current user's drive. Formatting is defined
+to display the items like a normal directory, but other properties are also available.
+
+ +

EXAMPLE 3

+
>$d = get-graphteam -Drive | select -first 1
+>get-graphdrive -Drive $d -SpecialFolder Documents
+
+ +

The first line gets the first team drive for a user, the second gets +the items in its Documents folder

+

EXAMPLE 4

+
get-graphdrive -Drive $d -FolderPath general
+This example uses the team drive found in the previous one and gets the contents of the team's "General" folder
+
+ +

EXAMPLE 5

+
get-graphdrive -Drive $d -itemPath general
+Instead of getting the the items in the General folder, this returns an object representing the folder itself
+
+ +

EXAMPLE 6

+
Get-GraphDrive -Search preferredLanguage -FolderPath 'root:/Scripts'
+This does a freetext search of "preferredLanguage" in the scripts folder; because no drive is
+specified this folder is on the current user's drive.
+Note that searches do not return the parent path if you need to find the folder path you can do
+get-graphitem [-drive {drive}] -itemid with either the item's own ID or its parent's ID.
+
+ +

EXAMPLE 7

+
$folder = (get-graphuser -Drive).root.children | where name -eq scripts
+>get-graphdrive -Drive $folder.parentReference.driveId -FolderID $folder.id
+The first command gets the users drive, and looks for a known folder as a child item in the drive-root.
+This folder can't be piped into get-graphdrive, so the drive id and folder id are passed.
+In this case the drive ID could be ommitted because the default is to use the user's home drive
+
+ +

PARAMETERS

+

-Drive

+

The drive to examine - defaults to the user's OneDrive but can be a shared one e.g. +Drives/{ID}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: Me/Drive
+Accept pipeline input: True (ByPropertyName, ByValue)
+Accept wildcard characters: False
+
+ +

-FolderPath

+

If specified gets the items in a folder by the path from {drive}/root:

+
Type: String
+Parameter Sets: FolderName
+Aliases: Path
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-FolderID

+

If Specified gets the items in a folder by folder ID

+
Type: String
+Parameter Sets: FolderID
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-SpecialFolder

+

If specified gets one of the special folders (Documents, photos etc) in the drive. +If they don't already exist the server appears to create them.

+
Type: String
+Parameter Sets: Special
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Recent

+

If specified gets recent items in the drive

+
Type: SwitchParameter
+Parameter Sets: Recent
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-SharedWithMe

+

If Specified gets items shared with the user

+
Type: SwitchParameter
+Parameter Sets: Shared
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Include

+

{{ Fill Include Description }}

+
Type: String
+Parameter Sets: FolderName, FolderID, Special, Recent, Shared
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ + +

Enables a free text search of the selected content

+
Type: String
+Parameter Sets: FolderName, FolderID, Shared, RootSearch
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Subfolders

+

If specified returns the subfolders - if no FolderPath or FolderID is given will return folders of the root drive

+
Type: SwitchParameter
+Parameter Sets: None, FolderName, FolderID, RootFolders
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ItemPath

+

if specified gets a file or folder by the path from {drive}/root:

+
Type: String
+Parameter Sets: ItemName
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ItemID

+

If Specified gets the a file or folder item by ID

+
Type: String
+Parameter Sets: ItemID
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Quiet

+

If specified does not display a message when a folder is empty

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphEvent/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphEvent/index.html new file mode 100644 index 0000000..4328769 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphEvent/index.html @@ -0,0 +1,1117 @@ + + + + + + + + + + + + Get-GraphEvent - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphEvent
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphEvent

+

SYNOPSIS

+

Get the events in a calendar

+

SYNTAX

+

None (Default)

+
Get-GraphEvent [-Timezone <Object>] [-Days <Int32>] [-Top <Int32>] [-Select <String[]>] [-OrderBy <String>]
+ [<CommonParameters>]
+
+ +

UserAndFilter

+
Get-GraphEvent -User <String> [-Calendar <Object>] [-Timezone <Object>] [-Days <Int32>] [-Top <Int32>]
+ [-Select <String[]>] [-OrderBy <String>] -Filter <String> [<CommonParameters>]
+
+ +

UserAndSubject

+
Get-GraphEvent -User <String> [-Calendar <Object>] [-Timezone <Object>] [-Days <Int32>] [-Top <Int32>]
+ [-Select <String[]>] [-OrderBy <String>] -Subject <String> [<CommonParameters>]
+
+ +

User

+
Get-GraphEvent -User <String> [-Calendar <Object>] [-Timezone <Object>] [-Days <Int32>] [-Top <Int32>]
+ [-Select <String[]>] [-OrderBy <String>] [<CommonParameters>]
+
+ +

CalAndFilter

+
Get-GraphEvent -Calendar <Object> [-Timezone <Object>] [-Days <Int32>] [-Top <Int32>] [-Select <String[]>]
+ [-OrderBy <String>] -Filter <String> [<CommonParameters>]
+
+ +

CalAndSubject

+
Get-GraphEvent -Calendar <Object> [-Timezone <Object>] [-Days <Int32>] [-Top <Int32>] [-Select <String[]>]
+ [-OrderBy <String>] -Subject <String> [<CommonParameters>]
+
+ +

Cal

+
Get-GraphEvent -Calendar <Object> [-Timezone <Object>] [-Days <Int32>] [-Top <Int32>] [-Select <String[]>]
+ [-OrderBy <String>] [<CommonParameters>]
+
+ +

GroupAndFilter

+
Get-GraphEvent -Group <Object> [-Timezone <Object>] [-Days <Int32>] [-Top <Int32>] [-Select <String[]>]
+ [-OrderBy <String>] -Filter <String> [<CommonParameters>]
+
+ +

GroupAndSubject

+
Get-GraphEvent -Group <Object> [-Timezone <Object>] [-Days <Int32>] [-Top <Int32>] [-Select <String[]>]
+ [-OrderBy <String>] -Subject <String> [<CommonParameters>]
+
+ +

GroupID

+
Get-GraphEvent -Group <Object> [-Timezone <Object>] [-Days <Int32>] [-Top <Int32>] [-Select <String[]>]
+ [-OrderBy <String>] [<CommonParameters>]
+
+ +

CurrentFilter

+
Get-GraphEvent [-Timezone <Object>] [-Days <Int32>] [-Top <Int32>] [-Select <String[]>] [-OrderBy <String>]
+ -Filter <String> [<CommonParameters>]
+
+ +

DESCRIPTION

+

Depending on the parameters the events my come from + * A specified calendar (retrieved by get-graphGroup or Get-GraphUser) + * The default calendar for a group, (if only -group is provided) + * The default calendar for a specific user, if only user is specified + * The default calendar for the current user if no user, group, or calendar is specified. + The request can specify the first n events in the calendar, or a number of days into + the future, or specify the subject line or a custom filter.

+

EXAMPLES

+

EXAMPLE 1

+
>Get-GraphEvent -Team consultants
+Finds the team (group) named "Consultants", and gets events in the team's calendar.
+Note that the because "team" and "group" are used interchangably the parameter is
+named "Group" with an alias of "Team"
+
+ +

EXAMPLE 2

+
>get-graphuser -Calendars | where name -match "holidays" |
+     get-graphevent -days 365 -order "start/datetime desc" -select start,end, subject |
+        format-table subject, when
+Gets the user's calendars and selects the national holidays one;
+gets the events from this calendar for the next 365 days, sorting them to
+soonest last and selecting only the dates and subject; 'when' is calculated from
+start and end, so it is available to the format table command at the end of the pipeline.
+
+ +

EXAMPLE 3

+
Get-GraphEvent -user alex@contoso.com -filter "isorganizer eq false"
+Gets events from the specified user's calendar where they are not the organizer;
+this requires access to have been granted access to the calendar by its owener.
+
+ +

EXAMPLE 4

+
Get-GraphEvent  -filter "isorganizer eq false" -OrderBy start/datetime
+This uses the same filter as the previous example but sorts the results at the
+server before they are returned. Note that some fields like 'start' are record types,
+and one of their properties may need to be specified to perform a sort, as in this case,
+and the syntax is property/ChildProperty.
+
+ +

EXAMPLE 5

+
>$userTimezone = (Get-GraphUser -MailboxSettings).timezone
+>Get-GraphEvent -Days 150 -TimeZone $userTimezone -Filter "showas eq 'free'"
+The first command gets the current user's preferred time zone, which may not
+match the local computer, and the second requests items for the next 150 days,
+where the time is shown as Free, displaying using that time zone
+
+ +

EXAMPLE 6

+
Get-graphEvent -filter "start/dateTime ge '2019-04-01T08:00'"   | ft
+Gets the events in the signed-in user's default calendar which start after April 1 2019
+format-table will pick up the default display properties (Subject, When, Where and ShowAs)
+
+ +

PARAMETERS

+

-User

+

UserID as a guid or User Principal name, whose calendar should be fetched. +"me" can be used as a shortcut for current user

+
Type: String
+Parameter Sets: UserAndFilter, UserAndSubject, User
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Calendar

+

A sepecific calendar

+
Type: Object
+Parameter Sets: UserAndFilter, UserAndSubject, User
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName, ByValue)
+Accept wildcard characters: False
+
+ +
Type: Object
+Parameter Sets: CalAndFilter, CalAndSubject, Cal
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName, ByValue)
+Accept wildcard characters: False
+
+ +

-Group

+

Group ID or a Group object with an ID, whose calendar should be fetched

+
Type: Object
+Parameter Sets: GroupAndFilter, GroupAndSubject, GroupID
+Aliases: Team
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Timezone

+

Time zone to rennder event times. +By default the time zone of the local machine will me use

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: $(tzutil.exe /g)
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Days

+

Number of days of calendar to fetch from today

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: 0
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Top

+

The neumber of events to fetch. +Must be greater than zero, and capped at 1000

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: 0
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Select

+

Fields to select

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-OrderBy

+

An order-by clause to sort the events

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Subject

+

If specified, fetch events where the subject line begins with

+
Type: String
+Parameter Sets: UserAndSubject, CalAndSubject, GroupAndSubject
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Filter

+

A custom selection filter

+
Type: String
+Parameter Sets: UserAndFilter, CalAndFilter, GroupAndFilter, CurrentFilter
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphGroup/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphGroup/index.html new file mode 100644 index 0000000..168b6a3 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphGroup/index.html @@ -0,0 +1,1278 @@ + + + + + + + + + + + + Get-GraphGroup - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphGroup
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphGroup

+

SYNOPSIS

+

Gets information about a Group and any associated Office 365 Team

+

SYNTAX

+

None (Default)

+
Get-GraphGroup [[-ID] <Object>] [-Mine] [<CommonParameters>]
+
+ +

Apps

+
Get-GraphGroup [[-ID] <Object>] [-Apps] [-AppName <String>] [-Mine] [<CommonParameters>]
+
+ +

Calendar

+
Get-GraphGroup [[-ID] <Object>] [-Calendar] [-Mine] [<CommonParameters>]
+
+ +

Channels

+
Get-GraphGroup [[-ID] <Object>] [-Channels] [-ChannelName <String>] [-Mine] [<CommonParameters>]
+
+ +

Conversations

+
Get-GraphGroup [[-ID] <Object>] [-Conversations] [-Mine] [<CommonParameters>]
+
+ +

Drive

+
Get-GraphGroup [[-ID] <Object>] [-Drive] [-Mine] [<CommonParameters>]
+
+ +

Members

+
Get-GraphGroup [[-ID] <Object>] [-Members] [-Mine] [<CommonParameters>]
+
+ +

TransitiveMembers

+
Get-GraphGroup [[-ID] <Object>] [-TransitiveMembers] [-Mine] [<CommonParameters>]
+
+ +

Memberof

+
Get-GraphGroup [[-ID] <Object>] [-MemberOf] [-Mine] [<CommonParameters>]
+
+ +

TransitiveMemberof

+
Get-GraphGroup [[-ID] <Object>] [-TransitiveMemberOf] [-Mine] [<CommonParameters>]
+
+ +

Owners

+
Get-GraphGroup [[-ID] <Object>] [-Owners] [-Mine] [<CommonParameters>]
+
+ +

Notebooks

+
Get-GraphGroup [[-ID] <Object>] [-Notebooks] [-Mine] [<CommonParameters>]
+
+ +

Planners

+
Get-GraphGroup [[-ID] <Object>] [-Plans] [-Mine] [<CommonParameters>]
+
+ +

Threads

+
Get-GraphGroup [[-ID] <Object>] [-Threads] [-Mine] [<CommonParameters>]
+
+ +

Site

+
Get-GraphGroup [[-ID] <Object>] [-Site] [-Mine] [<CommonParameters>]
+
+ +

SelectFields

+
Get-GraphGroup [[-ID] <Object>] -Select <String[]> [-Mine] [<CommonParameters>]
+
+ +

BareGroups

+
Get-GraphGroup [[-ID] <Object>] [-Mine] [-NoTeamInfo] [<CommonParameters>]
+
+ +

DESCRIPTION

+

Takes a Group/Team ID or object as a parameter and gets information about it. +Apps, Calendar, Channels, Drive, Members or Planners can be requested. +Depending on which aspect of the group are queried, may need access to the following +Scopes Group.Read.All, Files.Read, Sites.Read.All, Notes.Create, Notes.Read,

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphUser -teams | Get-GraphTeam -Plans | select -last 1 | Get-GraphPlan -FullTasks  | ft PlanTitle,Bucketname,Title,DueDateTime,PercentComplete,Assignees
+ Gets the current user's Teams, and gets the plans for each;
+ Note that because we are refering to "Teams" the command is called using its alias of Get-GraphTeam.
+ The last plan is selected and details of the plan are fetched, showing the result as a table.
+
+ +

EXAMPLE 2

+
(Get-GraphGroup -Site).lists | where name -match document
+If no Group/Team is provided the command gets those associated with the current user;
+it this case it returns their associated site(s).
+Site objects include a lists property, which holds a collection of lists
+This command will fiter the lists down to those where name matches "document",
+giving the "Shared Documents" list for each team
+
+ +

EXAMPLE 3

+
Get-GraphGroup -Drive  | Get-GraphDrive -Subfolders | Select  name, weburl, id,@{n="drive";e={$_.parentReference.driveId}}
+As with the previous example gets this command gets Groups/Teams for current user,
+in this case the command returns their associated drive(s)
+It is possible to refer to the drive's 'root' property, and the root's 'childre'n property
+which contains files and folder objects, and filter to objects with a folder property but
+for ease of reading this  pipeline passes the drive to Get-GraphDrive to get subfolders.
+It then returns the  name, WebURl and the item ID and Drive ID needed to access each folder.
+
+ +

EXAMPLE 4

+
Get-GraphGroup 'Consultants' -Drive  | Set-GraphHomeDrive
+Sets the drive for the consultants group to be the default graph drive for the PowerShell session.
+
+ +

EXAMPLE 5

+
Get-GraphGroup -Notebooks | select -ExpandProperty sections | where "Displayname" -eq "General_Notes"
+Again gets Groups/Teams for the current user and returns their associated notebooks(s)
+Notebook objects include a Sections property, which holds a collection of OneNote sections in the notebook;
+This command gets returns any section in a team notebook which has the name "General_Notes"
+
+ +

EXAMPLE 6

+
Get-GraphTeam -threads | where LastDeliveredDateTime -gt ([datetime]::Now.AddDays(-7))
+Gets the teams conversation threads which have been updated in the last 7 days.
+
+ +

PARAMETERS

+

-ID

+

The name of a team. +One more Team IDs or team objects containing and ID. +If omitted the current user's teams will be used.

+
Type: Object
+Parameter Sets: (All)
+Aliases: Team, Group
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Apps

+

If specified returns the teams Apps

+
Type: SwitchParameter
+Parameter Sets: Apps
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Calendar

+

If specified gets the team's Calendar (a team only has one)

+
Type: SwitchParameter
+Parameter Sets: Calendar
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Channels

+

If specified gets the team's channels

+
Type: SwitchParameter
+Parameter Sets: Channels
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Conversations

+

If Specified, retrun team's conversations (usually better to use threads)

+
Type: SwitchParameter
+Parameter Sets: Conversations
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Drive

+

If specified gets the Team's OneDrive to see contents of the root of the drive you can refer to the drives .root.children property

+
Type: SwitchParameter
+Parameter Sets: Drive
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Members

+

If specified returns the members of the team

+
Type: SwitchParameter
+Parameter Sets: Members
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-TransitiveMembers

+

If specified returns the transitive members of the team

+
Type: SwitchParameter
+Parameter Sets: TransitiveMembers
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-MemberOf

+

If specified returns the groups this group is directly a member of

+
Type: SwitchParameter
+Parameter Sets: Memberof
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-TransitiveMemberOf

+

If specified returns the groups this group is nested into transitively

+
Type: SwitchParameter
+Parameter Sets: TransitiveMemberof
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Owners

+

If specified returns the Owners of the team

+
Type: SwitchParameter
+Parameter Sets: Owners
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Notebooks

+

If specified returns the team's notebook(s)

+
Type: SwitchParameter
+Parameter Sets: Notebooks
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Plans

+

if Specified, returns the teams Planners.

+
Type: SwitchParameter
+Parameter Sets: Planners
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Threads

+

If Specified, retrun team's threads

+
Type: SwitchParameter
+Parameter Sets: Threads
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Site

+

if Specified, returns the teams site.

+
Type: SwitchParameter
+Parameter Sets: Site
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AppName

+

limits searches for appsby name.

+
Type: String
+Parameter Sets: Apps
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ChannelName

+

limits searches for channels by name. +Other items can't be filtered by name ... +perhaps notebooks can but a group only has one.

+
Type: String
+Parameter Sets: Channels
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Select

+

Field(s) to select: ID and displayname are always included +The following are available when getting a single group:

+
Type: String[]
+Parameter Sets: SelectFields
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Mine

+

{{ Fill Mine Description }}

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-NoTeamInfo

+

{{ Fill NoTeamInfo Description }}

+
Type: SwitchParameter
+Parameter Sets: BareGroups
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphGroupConversation/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphGroupConversation/index.html new file mode 100644 index 0000000..af5ad5f --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphGroupConversation/index.html @@ -0,0 +1,893 @@ + + + + + + + + + + + + Get-GraphGroupConversation - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphGroupConversation
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphGroupConversation

+

SYNOPSIS

+

Gets details of group converstation from outlook, or its threads.

+

SYNTAX

+

OneConversation

+
Get-GraphGroupConversation [-Conversation] <Object> [[-Group] <Object>] [-Threads] [<CommonParameters>]
+
+ +

InTeam

+
Get-GraphGroupConversation [[-Group] <Object>] [[-Topic] <Object>] [-Threads] [<CommonParameters>]
+
+ +

DESCRIPTION

+

Requires consent to use the Group.Read.All scope

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphGroupList -Name consult | Get-GraphGroup -Conversations | Get-GraphGroupConversation -Threads
+Gets group(s) matching the name "consult*" , finds their conversations and for each one gets the threads in the conversation
+Note, unless you are dealing with conversations which have multiple threads, it is easier to do Get-GraphGroup -Threads
+
+ +

PARAMETERS

+

-Conversation

+

The Conversation, either as an ID or an object.

+
Type: Object
+Parameter Sets: OneConversation
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Group

+

The group where the conversation is found,it is not part of can't be found from the conversation object

+
Type: Object
+Parameter Sets: (All)
+Aliases: Team
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Topic

+

When selecting the Conversations for a group narrows the list by the name of the topic

+
Type: Object
+Parameter Sets: InTeam
+Aliases:
+
+Required: False
+Position: 4
+Default value: *
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Threads

+

If specified selects the conversation's threads, otherwise an object representing the conversation itself is returned.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphGroupList/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphGroupList/index.html new file mode 100644 index 0000000..0f7aaa2 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphGroupList/index.html @@ -0,0 +1,943 @@ + + + + + + + + + + + + Get-GraphGroupList - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphGroupList
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphGroupList

+

SYNOPSIS

+

Gets a list of Groups in Microsoft Graph.

+

SYNTAX

+

None (Default)

+
Get-GraphGroupList [-OrderBy <String>] [<CommonParameters>]
+
+ +

FilterByName

+
Get-GraphGroupList [-Name] <String> [-OrderBy <String>] [<CommonParameters>]
+
+ +

SelectFields

+
Get-GraphGroupList -Select <String[]> [-OrderBy <String>] [<CommonParameters>]
+
+ +

Sort

+
Get-GraphGroupList [-OrderBy <String>] [-Descending] [<CommonParameters>]
+
+ +

FilterByString

+
Get-GraphGroupList [-OrderBy <String>] -Filter <String> [<CommonParameters>]
+
+ +

DESCRIPTION

+

The list of groups returned can be filtered by name (the beginning of the displayname and mail +address are checked) or with a custom filter string, or it can be sorted, or specific fields can +be selected. +However there is a limitation in the graph API which prevent these being combined. +Requires consent to use the Group.Read.All scope.

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphGroupList | Format-Table -Autosize  Displayname, SecurityEnabled, Mailenabled, Mail, ID
+Displays a table of groups in the current tennant
+
+ +

EXAMPLE 2

+
(Get-GraphGroupList -Name consult* | Get-GraphTeam -Site).weburl
+Gets any group whose name begins "Consult" , finds its sharepoint site, and returns the site's URL
+
+ +

PARAMETERS

+

-Name

+

if specified limits the groups returned to those with names begining...

+
Type: String
+Parameter Sets: FilterByName
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Select

+

Field(s) to select: ID and displayname are always included; +The following are only available when getting a single group: +'allowExternalSenders','autoSubscribeNewMembers','isSubscribedByMail' 'unseenCount',

+
Type: String[]
+Parameter Sets: SelectFields
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-OrderBy

+

A field to sort by - sorting is applied on the client side because filter and selct cannot be combined with server-side sort

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: DisplayName
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Descending

+

{{ Fill Descending Description }}

+
Type: SwitchParameter
+Parameter Sets: Sort
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Filter

+

An oData filter string; there is a graph limitation that you can't filter by description or Visibility.

+
Type: String
+Parameter Sets: FilterByString
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphGroup

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphGroupThread/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphGroupThread/index.html new file mode 100644 index 0000000..3cb8151 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphGroupThread/index.html @@ -0,0 +1,895 @@ + + + + + + + + + + + + Get-GraphGroupThread - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphGroupThread
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphGroupThread

+

SYNOPSIS

+

Gets a thread in a Group conversation in outlook, or its posts

+

SYNTAX

+

SingleThread

+
Get-GraphGroupThread [-Thread] <Object> [[-Group] <Object>] [-Posts] [<CommonParameters>]
+
+ +

GroupThreads

+
Get-GraphGroupThread [[-Group] <Object>] [-Topic <Object>] [-Posts] [<CommonParameters>]
+
+ +

DESCRIPTION

+

Requires consent to use the Group.Read.All scope

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphUser -Teams  | Get-GraphGroup -Threads | Get-GraphGroupThread -Posts |
+     ft -a -Wrap  @{n="from";e={$_.from.emailaddress.name}},CreatedDateTime,Topic,@{n="Body";e={$_.body.content}}
+Gets a users teams, for each one gets their threads, and for each thread gets the outlook posts
+Displays the result as a table showing from, message date, thread topic and message body
+Note this uses Get-GraphGroup as an alias for Get-GraphTeams
+
+ +

PARAMETERS

+

-Thread

+

The group thread, either as an ID or as a thread object (which may have the team/group as property)

+
Type: Object
+Parameter Sets: SingleThread
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Group

+

The group holding the thread (s), if thread is either not passed or is just the ID of a thread.

+
Type: Object
+Parameter Sets: (All)
+Aliases: Team
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Topic

+

When selecting the threads for a group narrows the list by the name of the topic

+
Type: Object
+Parameter Sets: GroupThreads
+Aliases:
+
+Required: False
+Position: Named
+Default value: *
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Posts

+

If specified, returns the posts in the thread

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphLicense/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphLicense/index.html new file mode 100644 index 0000000..2081b5b --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphLicense/index.html @@ -0,0 +1,883 @@ + + + + + + + + + + + + Get-GraphLicense - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphLicense
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphLicense

+

SYNOPSIS

+

Returns users or groups (or both) who are licensed to user a given SKU

+

SYNTAX

+

None (Default)

+
Get-GraphLicense [-SKUID] <Object> [<CommonParameters>]
+
+ +

Users

+
Get-GraphLicense [-SKUID] <Object> [-UsersOnly] [<CommonParameters>]
+
+ +

Groups

+
Get-GraphLicense [-SKUID] <Object> [-GroupsOnly] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-SKUID

+

The SKU to get either as an ID or a SKU object containing an ID

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-UsersOnly

+

{{ Fill UsersOnly Description }}

+
Type: SwitchParameter
+Parameter Sets: Users
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-GroupsOnly

+

{{ Fill GroupsOnly Description }}

+
Type: SwitchParameter
+Parameter Sets: Groups
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphList/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphList/index.html new file mode 100644 index 0000000..3ee3f7f --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphList/index.html @@ -0,0 +1,1011 @@ + + + + + + + + + + + + Get-GraphList - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphList
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphList

+

SYNOPSIS

+

Gets sharepoint list objects or their items

+

SYNTAX

+

ListID (Default)

+
Get-GraphList [[-List] <Object>] [-Site <Object>] [<CommonParameters>]
+
+ +

ListIDColumns

+
Get-GraphList [-List] <Object> [-Site <Object>] [-ColumnList] [<CommonParameters>]
+
+ +

ListItems

+
Get-GraphList [-List] <Object> [-Site <Object>] [-Items] [-Property <String[]>] [<CommonParameters>]
+
+ +

ListofLists

+
Get-GraphList [-Site <Object>] [-HIDden] [<CommonParameters>]
+
+ +

DESCRIPTION

+

This interogates https://graph.microsoft.com/v1.0/sites/{id}/lists{id} +which requires consent to use the Sites.Read.All scope or better. +This does not suppor the use of a filter parameter so any "where" +operation has to be done on the returned data.

+

EXAMPLES

+

EXAMPLE 1

+
>$myTeamSite = Get-GraphTeam -Site | select -first 1
+>$problemsList = $myteamsite.lists | where name -like problem*
+>
+> Get-GraphList  -list $problemslist -ColumnList
+
+ +

The first command gets the current users group(s) and returns their site(s). +For this example we select the first site. +The sites returned by Get-GraphGroup / +Get-GraphTeam have a .lists property and second command selects the list we want +The third line shows calling Get-GraphList using the ID for both Site and List +and getting the columns in the list. +The next example shows an easier way to provide the information; and in fact +there is already a .columns property of $problemsList which has the column information

+

EXAMPLE 2

+
Get-graphlist $problemsList -Items
+This uses $problemsList from the previous example. Get-GraphGroup (aka Get-GraphTeam)
+gets the Site, it gets the sites lists, and adds the site ID as a property, so
+$Problemslist has propeties for the list ID and the site ID. So this exmaple uses a
+shorter form of just providing the list and returns the items in their raw state
+
+ +

EXAMPLE 3

+
Get-graphlist $problemsList -Items -Property title, issuestatus, AssignedToLookupID, priority
+This builds on the previous example. Specifying -Property causes Get-GraphList to
+return the Item(s) Fields collection(s) and sets the default fields to be displayed.
+By default if an object has 4 visbible properties or fewer PowerShell displays it
+as a table, if it has more than 4 a list is used, this can be managed with
+$FormatEnumerationLimit. In this case 4 properties are show in a table view.
+However 'Person or Group' fields, like AssignedTo return a lookupID.
+This comes from the hidden list 'Users' and the next example shows how to get
+information from this list. (The Get-GraphSiteUserList provides a shortcut for geting
+this Information)
+
+ +

EXAMPLE 4

+
>Get-GraphList -Site $myteamSite -Hidden  | where name -eq 'users' |
+    Get-Graphlist -Items -Property id,ContentType,Title,Name
+
+ +

This uses the $myTeamSite variable from the first example. +If neither Items, nor ColumnList is specified, Get-GraphList returns list objects, +(the same result as using Get-GraphSite -Lists) so the first command gets lists +in the team site including hidden ones - which aren't included in the .lists +property of the site, and users IS hidden. +The where command isolates that list, +and it is piped into a second Get-GraphList command, which gets its items +and displays the properties of interest

+

EXAMPLE 5

+
>$mydocuments = Get-GraphUser -Site | Get-GraphSite -lists | where name -eq documents
+>Get-GraphList $shareddocsList -items | Select -expand driveItem |
+      Copy-FromGraphFolder -Destination C:\temp
+
+ +

This command works with a users "MySite" - the first command gets the user's +site, gets its lists and selects the one named "Documents" +The second gets the items in this list; when a list object has an associated drive, +items returned by Get-GraphList -items will have a .DriveItem property. +Driveitems can be piped into Copy-FromGraphFolder .

+

PARAMETERS

+

-List

+

The list either as an ID or as a list object (which may contain the site.)

+
Type: Object
+Parameter Sets: ListID
+Aliases:
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +
Type: Object
+Parameter Sets: ListIDColumns, ListItems
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Site

+

Specifies a site, if omitted "root" will be assumed - the root site of the user's tennant.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: Root
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HIDden

+

If specified returns hidden lists (like 'Users')

+
Type: SwitchParameter
+Parameter Sets: ListofLists
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Items

+

If specified returns the list's items

+
Type: SwitchParameter
+Parameter Sets: ListItems
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ColumnList

+

If specified returns the columns in the list

+
Type: SwitchParameter
+Parameter Sets: ListIDColumns
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Property

+

if specified returned items will be expanded and the default display fields will be set

+
Type: String[]
+Parameter Sets: ListItems
+Aliases: Fields
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphMailFolder/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphMailFolder/index.html new file mode 100644 index 0000000..bb52075 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphMailFolder/index.html @@ -0,0 +1,968 @@ + + + + + + + + + + + + Get-GraphMailFolder - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphMailFolder
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphMailFolder

+

SYNOPSIS

+

Get the user's Mailbox folders

+

SYNTAX

+

FilterByName (Default)

+
Get-GraphMailFolder [[-Name] <String>] [-ParentFolder <Object>] [-User <String>] [-Top <Int32>]
+ [-Select <String[]>] [-ChildItems] [<CommonParameters>]
+
+ +

Sorted

+
Get-GraphMailFolder [-ParentFolder <Object>] [-User <String>] [-Top <Int32>] [-Select <String[]>]
+ [-OrderBy <String>] [-ChildItems] [<CommonParameters>]
+
+ +

FilterByString

+
Get-GraphMailFolder [-ParentFolder <Object>] [-User <String>] [-Top <Int32>] [-Select <String[]>]
+ [-Filter <String>] [-ChildItems] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphMailFolderList -Name inbox
+Gets the current users inbox folder
+
+ +

PARAMETERS

+

-Name

+

Filter the folders returned by a name

+
Type: String
+Parameter Sets: FilterByName
+Aliases:
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ParentFolder

+

{{ Fill ParentFolder Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-User

+

UserID as a guid or User Principal name. +If not specified defaults to "me"

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Top

+

Select the first n folders.

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: 100
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Select

+

fields to select in the query - will add a validate set later

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-OrderBy

+

String with orderby clause e.g. +"name", "lastmodifiedDate desc"

+
Type: String
+Parameter Sets: Sorted
+Aliases:
+
+Required: False
+Position: Named
+Default value: Displayname
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Filter

+

A custom filter clause.

+
Type: String
+Parameter Sets: FilterByString
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ChildItems

+

{{ Fill ChildItems Description }}

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphMailFolder

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphMailItem/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphMailItem/index.html new file mode 100644 index 0000000..acd12d7 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphMailItem/index.html @@ -0,0 +1,1150 @@ + + + + + + + + + + + + Get-GraphMailItem - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphMailItem
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphMailItem

+

SYNOPSIS

+

Get items in a mail folder

+

SYNTAX

+

None (Default)

+
Get-GraphMailItem [[-Mailfolder] <Object>] [-User <String>] [-Unread] [-Subject <String>] [-From <String>]
+ [-To <String>] [-HasAttachments] [-Important] [-Today] [-Yesterday] [-Before <DateTime>] [-After <DateTime>]
+ [-Search <String>] [-Top <Int32>] [-OrderBy <String>] [-Select <String[]>] [<CommonParameters>]
+
+ +

FilterByString

+
Get-GraphMailItem [[-Mailfolder] <Object>] [-User <String>] [-Unread] [-Subject <String>] [-From <String>]
+ [-To <String>] [-HasAttachments] [-Important] [-Today] [-Yesterday] [-Before <DateTime>] [-After <DateTime>]
+ [-Search <String>] [-Top <Int32>] [-OrderBy <String>] [-Select <String[]>] -Filter <String>
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphMailItem -top 5
+Gets the top 5 items in the current users Inbox
+
+ +

EXAMPLE 2

+
Get-GraphMailItem -Mailfolder "sentitems" -top 5
+Gets the top 5 items in the current users sent items folder
+
+ +

EXAMPLE 3

+
Get-GraphMailFolderList -Name sent | Get-GraphMailItem -top 5
+This has the same result as before but could find any folder
+
+ +

EXAMPLE 4

+
Get-GraphMailItem -Search 'criminal'
+Searches the default folder (inbox) for 'Criminal' in any field
+
+ +

EXAMPLE 5

+
Get-GraphMailItem -Search 'criminal' -Mailfolder ''
+Searches for 'Criminal' in any field but this time searches the whole mailbox
+
+ +

EXAMPLE 6

+
Get-GraphMailItem -Search 'subject:criminal' -Mailfolder ''
+This time limits the search to just the subject line. from:, to: etc can be
+used in the same way as they can in a search in outlook.
+
+ +

EXAMPLE 7

+
Get-GraphMailItem -filter "from/emailAddress/address eq 'alex@contoso.com'"
+Instead of a free text search this applies a filter on email address, looking at the inbox.
+
+ +

EXAMPLE 8

+
Get-GraphMailItem -Filter "(hasattachments eq true) and startswith(from/emailAddress/name, 'alex')"
+This shows a filter based on two conditions.
+
+ +

PARAMETERS

+

-Mailfolder

+

A folder objet or the ID of a folder, or one of the well known folder names 'archive', 'clutter', 'conflicts', 'conversationhistory', 'deleteditems', 'drafts', 'inbox', 'junkemail', 'localfailures', 'msgfolderroot', 'outbox', 'recoverableitemsdeletions', 'scheduled', 'searchfolders', 'sentitems', 'serverfailures', 'syncissues'

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: Inbox
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-User

+

UserID as a guid or User Principal name, if it can't be discovered from the mailfolder. +If not specified defaults to "me"

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Unread

+

Selects only unread mail (equivalent to isread:no in Outlook)

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Subject

+

Searches based on the subject field (equivalent to subject: in Outlook)

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-From

+

Searches based on the from field (equivalent to from: in Outlook)

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-To

+

Searches based on the to field (equivalent to to: in Outlook)

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HasAttachments

+

Selects only mail with attachments (equivalent to hasAttachments:yes in Outlook). +Note this does not combine well with date based searches

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Important

+

Selects only mail marked as important (equivalent to importance:high in Outlook).

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Today

+

Selects only mail from today (equivalent to received:today in Outlook).

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Yesterday

+

Selects only mail from today (equivalent to received:yesterday in Outlook).

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Before

+

Selects only mail from before a given date

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-After

+

Selects only mail from after a given date

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ + +

A term to do a free text search for in the mail box (see examples)

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Top

+

If specified returns the top X items, defaults to 100

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: 100
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-OrderBy

+

Sorting option, defaults to sorting by SentDateTime with newest first. +Searches are not sorted.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: SentdateTime desc
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Select

+

Select particular mail fields , ignored if -ChildFolders is specified; defaults to From, Subject, SentDateTime, BodyPreview, and Weblink

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: @('From', 'Subject', 'SentDatetime', 'hasAttachments', 'BodyPreview', 'weblink')
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Filter

+

A Custom filter string; for example "importance eq high" - the examples have more cases

+
Type: String
+Parameter Sets: FilterByString
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphMessage

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphMailTips/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphMailTips/index.html new file mode 100644 index 0000000..d72fdc4 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphMailTips/index.html @@ -0,0 +1,836 @@ + + + + + + + + + + + + Get-GraphMailTips - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphMailTips
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphMailTips

+

SYNOPSIS

+

Gets mail tips for one or more users (is their mailbox full, are auto-replies on etc)

+

SYNTAX

+
Get-GraphMailTips [-Address] <String[]> [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Address

+

mail addresses

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphNamedLocation/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphNamedLocation/index.html new file mode 100644 index 0000000..0bce89c --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphNamedLocation/index.html @@ -0,0 +1,836 @@ + + + + + + + + + + + + Get-GraphNamedLocation - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphNamedLocation
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphNamedLocation

+

SYNOPSIS

+

Returns named locations used in conditional access

+

SYNTAX

+
Get-GraphNamedLocation [[-Location] <Object>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Location

+

The ID or start of the display-name of a Location

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphOneNoteBook/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphOneNoteBook/index.html new file mode 100644 index 0000000..4e89d61 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphOneNoteBook/index.html @@ -0,0 +1,900 @@ + + + + + + + + + + + + Get-GraphOneNoteBook - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphOneNoteBook
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphOneNoteBook

+

SYNOPSIS

+

Gets notebook objects or sections of notebooks

+

SYNTAX

+
Get-GraphOneNoteBook [[-Notebook] <Object>] [[-InputObject] <Object>] [-AllSections] [[-SectionName] <String>]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

If run with no parameters it will return the current user's personal notebooks. +If run with just a -Notebook parameter it will return that notebook (which might belong to a group) +If run with -Notebook and -Sections it will return the sections in that notebook, +And if run with just -Sections it will return all the sections in the user's personal notebooks.

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphOneNoteBook   team
+Looks for a workbook with a displayname begining "team" in the users workbooks. the search is case insensitive.
+
+ +

EXAMPLE 2

+
Get-GraphOneNoteBook  -SectionName Powershell
+Finds a "PowerShell" secion in any of the users workbooks. Again the search is case insensitive
+
+ +

EXAMPLE 3

+
Get-GraphTeam 'Consultants' -Notebooks | Set-GraphHomeNotebook
+>Get-GraphOneNoteBook -AllSections
+The first command changes the default notebook and selects different sections from the the previous command
+
+ +

PARAMETERS

+

-Notebook

+

A graph URI pointing to the notebook, or a notebook object where the .self property is a graph URI...

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-InputObject

+

{{ Fill InputObject Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 2
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-AllSections

+

If specified returns the sections of the notebook.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-SectionName

+

if specified filters the returned objects by to those with names begining with ...

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 3
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphOneNotePage/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphOneNotePage/index.html new file mode 100644 index 0000000..f443049 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphOneNotePage/index.html @@ -0,0 +1,982 @@ + + + + + + + + + + + + Get-GraphOneNotePage - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphOneNotePage
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphOneNotePage

+

SYNOPSIS

+

Gets a OneNote page's metadata or content

+

SYNTAX

+

None (Default)

+
Get-GraphOneNotePage [-Notebook <Object>] [-Section <Object>] [<CommonParameters>]
+
+ +

PagePreview

+
Get-GraphOneNotePage [-Page] <Object> [-Notebook <Object>] [-Section <Object>] [-PreviewText]
+ [-SavePath <Object>] [<CommonParameters>]
+
+ +

PageContentWithIDs

+
Get-GraphOneNotePage [-Page] <Object> [-Notebook <Object>] [-Section <Object>] [-ContentWithIDs]
+ [-SavePath <Object>] [<CommonParameters>]
+
+ +

PageContent

+
Get-GraphOneNotePage [-Page] <Object> [-Notebook <Object>] [-Section <Object>] [-Content] [-ContentWithIDs]
+ [-SavePath <Object>] [<CommonParameters>]
+
+ +

Page

+
Get-GraphOneNotePage [-Page] <Object> [-Notebook <Object>] [-Section <Object>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

This command interogates https://graph.microsoft.com/v1.0 + /users/{id}/onenote/notebooks/{id}/sections/{id}/pages +or /groups/{id}/onenote/notebooks/{id}/sections/{id}/pages +or /sites/{id}/onenote/notebooks/{id}/sections/{id}/pages +which requires consent to use the Notes.Read scope or better. +It can get either the page metadata, the page content, or +the page content marked up with IDs to update the page.

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Page

+

A graph URI pointing to the page, or a page object where the .self property is a graph URI...

+
Type: Object
+Parameter Sets: PagePreview, PageContentWithIDs, PageContent, Page
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Notebook

+

A graph URI pointing to a notebook, or a notebook object. +this can be set by Set-GraphOneNoteHome

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Section

+

A graph URI pointing to a section, or a Section object this can be set by Set-GraphOneNoteHome

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Content

+

If specified returns the contents of the page. +Ignored if ContentWithIDs is specified

+
Type: SwitchParameter
+Parameter Sets: PageContent
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-ContentWithIDs

+

If specified returs the contents with guids for each section where content can be inserted.

+
Type: SwitchParameter
+Parameter Sets: PageContentWithIDs
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +
Type: SwitchParameter
+Parameter Sets: PageContent
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-PreviewText

+

If specified returs a text preview of the page

+
Type: SwitchParameter
+Parameter Sets: PagePreview
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-SavePath

+

If specified writes the preview or content to a file

+
Type: Object
+Parameter Sets: PagePreview, PageContentWithIDs, PageContent
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphOnenotePage

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphOneNoteSection/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphOneNoteSection/index.html new file mode 100644 index 0000000..d32ecc4 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphOneNoteSection/index.html @@ -0,0 +1,916 @@ + + + + + + + + + + + + Get-GraphOneNoteSection - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphOneNoteSection
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphOneNoteSection

+

SYNOPSIS

+

Gets details of sections in OneNote notebooks or their pages

+

SYNTAX

+
Get-GraphOneNoteSection [-Section] <Object> [-Notebook <Object>] [-AllPages] [-PageTitle <String>]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

This command interogates https://graph.microsoft.com/v1.0 + /users/{id}/onenote/notebooks/{id}/sections +or /groups/{id}/onenote/notebooks/{id}/sections +or /sites/{id}/onenote/notebooks/{id}/sections +which requires consent to use the Notes.Create or Notes.Read scope or better. +If given a Notebook parameter it returns the sections in the notebook. +If given a section parameter it either returns details of the section, or +if the -Pages or -Name Parameters are given returns pages from the section

+

EXAMPLES

+

EXAMPLE 1

+
$notebook = Get-GraphTeam  consultants -Notebooks
+>$notebook.sections[0]  | Get-GraphOneNoteSection  -PageTitle change
+The first line gets the Notebooks object for the 'consultants' team. This object
+has a 'sections' collection. The second line uses pipes a member of this collection as the
+into Get-GraphOneNoteSection to return the pages in the first section, with the title begining "change".
+
+ +

EXAMPLE 2

+
Get-GraphOneNoteSection private -notebook $notebook -allpages
+In this example the notebook used in the first example is passed as a notebook is piped into command to get a section, by contrast with the previous section
+
+ +

EXAMPLE 3

+
Get-GraphOneNoteSection -Section $section -Pages -Name "test" | Remove-GraphOneNotePage -Force
+>Gets all pages with names that begin 'Test...' and removes
+$section may be the a section object (from the Sections collection of a notebook object, or
+form Get-GraphOneNotebook -Sections ) or the URL for a section.
+
+ +

PARAMETERS

+

-Section

+

A graph URI pointing to the section, or a section object where the .self property is a graph URI or a section name...

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Notebook

+

The notebook to query for section(s) if sections is empty or contains a name

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllPages

+

If specified, returns the pages in the section(s).

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PageTitle

+

If specified filters pages or Sections to those with names beginning ...

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphOnenotePage

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphOnenoteSection

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphOrganization/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphOrganization/index.html new file mode 100644 index 0000000..eac5463 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphOrganization/index.html @@ -0,0 +1,888 @@ + + + + + + + + + + + + Get-GraphOrganization - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphOrganization
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphOrganization

+

SYNOPSIS

+

Gets a summary of organization information from MSGraph

+

SYNTAX

+
Get-GraphOrganization [[-Organization] <Object>] [[-Proxy] <Uri>] [[-ProxyCredential] <PSCredential>]
+ [-ProxyUseDefaultCredentials] [<CommonParameters>]
+
+ +

DESCRIPTION

+

Can use msonline\Get-MsolCompanyInformation instead +This needs consent to use either the User.Read or the Directory.Read.All scope

+

EXAMPLES

+

EXAMPLE 1

+
(Get-GraphOrganization).verifiedDomains
+Displays a list of domains in the current subscription
+
+ +

PARAMETERS

+

-Organization

+

{{ Fill Organization Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Proxy

+

The URI for the proxy server to use

+
Type: Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyCredential

+

Credentials for a proxy server to use for the remote call

+
Type: PSCredential
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 3
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyUseDefaultCredentials

+

Use the default credentials for the proxy

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphOrganization

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphPlan/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphPlan/index.html new file mode 100644 index 0000000..0c82d80 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphPlan/index.html @@ -0,0 +1,927 @@ + + + + + + + + + + + + Get-GraphPlan - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphPlan
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphPlan

+

SYNOPSIS

+

Gets information about plans used in the Planner app.

+

SYNTAX

+

None (Default)

+
Get-GraphPlan [[-Plan] <Object>] [<CommonParameters>]
+
+ +

Details

+
Get-GraphPlan [[-Plan] <Object>] [-Details] [<CommonParameters>]
+
+ +

Tasks

+
Get-GraphPlan [[-Plan] <Object>] [-Tasks] [<CommonParameters>]
+
+ +

Buckets

+
Get-GraphPlan [[-Plan] <Object>] [-Buckets] [<CommonParameters>]
+
+ +

FullTask

+
Get-GraphPlan [[-Plan] <Object>] [-FullTasks] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphTeam -Plans | where title -eq "team planner" | get-graphplan -FullTasks
+Gets the Plan(s) for the current user's team(s), and isolates those with the name "Team Planner" ;
+for each of these plans gets the tasks, expanding the name, bucket name, and assignee names
+
+ +

PARAMETERS

+

-Plan

+

The ID of the plan or a plan object with an ID property. +if omitted the current users planner will be assumed.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Details

+

If Specified returns only the details of the plan

+
Type: SwitchParameter
+Parameter Sets: Details
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Tasks

+

If specified returns a list of plan tasks.

+
Type: SwitchParameter
+Parameter Sets: Tasks
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Buckets

+

If specified gets a list of plan buckets which tasks can be assigned to

+
Type: SwitchParameter
+Parameter Sets: Buckets
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-FullTasks

+

If specified fills in the plan name, Assignee Name(s) and bucket name for each task.

+
Type: SwitchParameter
+Parameter Sets: FullTask
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphPlanTask/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphPlanTask/index.html new file mode 100644 index 0000000..0c77054 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphPlanTask/index.html @@ -0,0 +1,852 @@ + + + + + + + + + + + + Get-GraphPlanTask - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphPlanTask
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphPlanTask

+

SYNOPSIS

+

Gets a task from a plan in planner, and optionally expands IDs to names and fetches extended properties

+

SYNTAX

+
Get-GraphPlanTask [-Task] <Object> [-Expand] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Task

+

The Task to get, either an ID or a Task object with an ID property.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Expand

+

If specified IDs will be updated to their names, and extended properties (e.g. +Checklist) will be added

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: FullTasks
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphReminderView/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphReminderView/index.html new file mode 100644 index 0000000..81870b4 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphReminderView/index.html @@ -0,0 +1,889 @@ + + + + + + + + + + + + Get-GraphReminderView - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphReminderView
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphReminderView

+

SYNOPSIS

+

Returns a view of items with reminders set across all a users calendars.

+

SYNTAX

+
Get-GraphReminderView [[-User] <Object>] [[-Timezone] <Object>] [[-Days] <Int32>] [[-Top] <Int32>]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-User

+

UserID as a guid or User Principal name, whose calendar should be fetched If not specified defaults to "me"

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: $Global:GraphUser
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Timezone

+

Time zone to rennder event times. +By default the time zone of the local machine will me use

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 2
+Default value: $(tzutil.exe /g)
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Days

+

Number of days of calendar to fetch from today

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 3
+Default value: 30
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Top

+

The number of events to fetch. +Must be greater than zero, and capped at 1000

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 4
+Default value: 0
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphReminder

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphReport/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphReport/index.html new file mode 100644 index 0000000..451d287 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphReport/index.html @@ -0,0 +1,886 @@ + + + + + + + + + + + + Get-GraphReport - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphReport
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphReport

+

SYNOPSIS

+

Gets reports from MS Graph

+

SYNTAX

+
Get-GraphReport [-Report] <Object> [[-Date] <DateTime>] [[-Period] <Object>] [[-Path] <Object>]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphReport -Report MailboxUsageDetail | ft "Display Name",  "Storage Used (Byte)"
+Displays mailbox storage used by users - note that
+fields have 'friendly' names which need to be wrapped in quotes
+
+ +

PARAMETERS

+

-Report

+

The report to Fetch

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Date

+

Date for the report - this should be a date in the past 30 days. +If specified, -Period is ignored. +Reports ending in Count, Storage or pages don't support date filtering

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Period

+

The range of time for the report in the form "Dn" where n is the number of days. +The default is D7, except for Office365Activation activation reports

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 3
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Path

+

If specified the data will be written in CSV format to the path provided, otherwise it will be output to the pipeline

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 4
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphSKU/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphSKU/index.html new file mode 100644 index 0000000..6068196 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphSKU/index.html @@ -0,0 +1,902 @@ + + + + + + + + + + + + Get-GraphSKU - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphSKU
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphSKU

+

SYNOPSIS

+

Gets details of SKUs that an organization has subscribed to

+

SYNTAX

+
Get-GraphSKU [[-SKU] <Object>] [-ServicePlans] [-Proxy <Uri>] [-ProxyCredential <PSCredential>]
+ [-ProxyUseDefaultCredentials] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphSKU "enterprise*" -ServicePlans | sort servicePlanName | format-table
+Finds any SKU with a name starting "Enterprise" and displays its service plans in alphabetical order.
+
+ +

PARAMETERS

+

-SKU

+

The SKU to get either as an ID or a SKU object containing an ID

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: *
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-ServicePlans

+

If specified just returns the Service plans for the SKU, otherwise returns the SKU with a service plans property

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Proxy

+

The URI for the proxy server to use

+
Type: Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyCredential

+

Credentials for a proxy server to use for the remote call

+
Type: PSCredential
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyUseDefaultCredentials

+

Use the default credentials for the proxy

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphSubscribedSku

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphServicePrincipal/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphServicePrincipal/index.html new file mode 100644 index 0000000..505b2b1 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphServicePrincipal/index.html @@ -0,0 +1,1083 @@ + + + + + + + + + + + + Get-GraphServicePrincipal - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphServicePrincipal
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphServicePrincipal

+

SYNOPSIS

+

Returns information about Service Principals

+

SYNTAX

+

List1 (Default)

+
Get-GraphServicePrincipal [-Property <String[]>] [-Filter <String>] [<CommonParameters>]
+
+ +

Get2

+
Get-GraphServicePrincipal [-ServicePrincipalId] <Object> [-Property <String[]>] [<CommonParameters>]
+
+ +

FilteredScopes

+
Get-GraphServicePrincipal [-ServicePrincipalId] <Object> [-Property <String[]>] -ScopeFilter <String>
+ [<CommonParameters>]
+
+ +

AllScopes

+
Get-GraphServicePrincipal [-ServicePrincipalId] <Object> [-Property <String[]>] [-ExpandScopes]
+ [<CommonParameters>]
+
+ +

FilteredRoles

+
Get-GraphServicePrincipal [-ServicePrincipalId] <Object> [-Property <String[]>] -AppRoleFilter <String>
+ [<CommonParameters>]
+
+ +

AllRoles

+
Get-GraphServicePrincipal [-ServicePrincipalId] <Object> [-Property <String[]>] [-ExpandAppRoles]
+ [<CommonParameters>]
+
+ +

List5

+
Get-GraphServicePrincipal [-AppId <String>] [-Property <String[]>] [<CommonParameters>]
+
+ +

List2

+
Get-GraphServicePrincipal [-ManagedIdentity] [-Property <String[]>] [<CommonParameters>]
+
+ +

List3

+
Get-GraphServicePrincipal [-Application] [-Property <String[]>] [<CommonParameters>]
+
+ +

List4

+
Get-GraphServicePrincipal [-O365ServicePrincipals] [-Property <String[]>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

A replacement for the SDK's Get-MgServicePrincipal +That has orderby which doesn't work - it's in the Docs but the API errors if you try +It doesn't have find by name, or select Application or Managed IDs

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphServicePrincipal "Microsoft graph*"
+
+ +

Id DisplayName AppId SignInAudience +-- ----------- ----- -------------- +25b13fbf-2f44-457a-9e68-d3414fc97915 Microsoft Graph 00000003-0000-0000-c000-000000000000 AzureADMultipleOrgs +4e71d88a-0a46-4274-85b8-82ad86877010 Microsoft Graph Change Tracking 0bf30f3b-4a52-48df-9a82-234910c4a086 AzureADMultipleOrgs +...

+

Run with a name the command returns service principals with matching names.

+

EXAMPLE 2

+
Get-GraphServicePrincipal 25b13fbf-2f44-457a-9e68-d3414fc97915 -ExpandAppRoles
+
+ +

Value DisplayName Enabled Id +----- ----------- ------- -- +AccessReview.Read.All Read all access reviews True d07a8cc0-3d51-4b77-b3b0-32704d1f69fa +AccessReview.ReadWrite.All Manage all access reviews True ef5f7d5c-338f-44b0-86c3-351f46c8bb5f +... +In this example GUID for Microsoft Graph was used from the previous example, and the command has listed the roles available to applications

+

PARAMETERS

+

-ServicePrincipalId

+

The GUID(s) for ServicePrincipal(s). +Or SP objects. +If a name is given instead, the command will try to resolve matching Service principals

+
Type: Object
+Parameter Sets: Get2, FilteredScopes, AllScopes, FilteredRoles, AllRoles
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-AppId

+

{{ Fill AppId Description }}

+
Type: String
+Parameter Sets: List5
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ManagedIdentity

+

Produces a list filtered to only managed identities

+
Type: SwitchParameter
+Parameter Sets: List2
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Application

+

Produces a list filtered to only applications

+
Type: SwitchParameter
+Parameter Sets: List3
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-O365ServicePrincipals

+

Produces a convenience list of office 365 security principals

+
Type: SwitchParameter
+Parameter Sets: List4
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Property

+

Select properties to be returned

+
Type: String[]
+Parameter Sets: (All)
+Aliases: Select
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Filter

+

Filters items by property values

+
Type: String
+Parameter Sets: List1
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ExpandAppRoles

+

Returns the list of application roles to those the role name, displayname or ID match the parameter value. +Wildcards are supported

+
Type: SwitchParameter
+Parameter Sets: AllRoles
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AppRoleFilter

+

Filters the list of application roles available within a SP

+
Type: String
+Parameter Sets: FilteredRoles
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ExpandScopes

+

Returns the list of (user) oauth scopes available within a SP

+
Type: SwitchParameter
+Parameter Sets: AllScopes
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ScopeFilter

+

Filters the list of oauth scopes to those where the scope name, displayname or ID match the parameter value. +Wildcards are supported

+
Type: String
+Parameter Sets: FilteredScopes
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.IMicrosoftGraphAppRole

+

Microsoft.Graph.PowerShell.Models.IMicrosoftGraphPermissionScope

+

Microsoft.Graph.PowerShell.Models.IMicrosoftGraphServicePrincipal

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphSignInLog/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphSignInLog/index.html new file mode 100644 index 0000000..45713bd --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphSignInLog/index.html @@ -0,0 +1,844 @@ + + + + + + + + + + + + Get-GraphSignInLog - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphSignInLog
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphSignInLog

+

SYNOPSIS

+

Gets the audit log -requires a priviledged account

+

SYNTAX

+
Get-GraphSignInLog [[-top] <Object>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

This command calls https://graph.microsoft.com/beta/auditLogs/signIns +which requires consent to use the AuditLog.Read.All Scope this can only be granted to Azure AD apps.

+

EXAMPLES

+

EXAMPLE 1

+
>Get-GraphSignInLog |
+>  select Date,UserPrincipalName,appDisplayName,ipAddress,clientAppUsed,browser,device,city,lat,long |
+>    Export-Excel -Path .\signin.xlsx -AutoSize -IncludePivotTable -PivotTableName Signins -PivotRows appdisplayName -PivotColumns browser -PivotData @{date='Count'} -show
+
+ +

Gets the sign-in Log and exports it Excel, creating a PivotTable

+

PARAMETERS

+

-top

+

{{ Fill top Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: 200
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphSignIn

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphSite/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphSite/index.html new file mode 100644 index 0000000..178f740 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphSite/index.html @@ -0,0 +1,985 @@ + + + + + + + + + + + + Get-GraphSite - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphSite
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphSite

+

SYNOPSIS

+

Gets details of a sharepoint site, or its lists, drives or subsites

+

SYNTAX

+

None (Default)

+
Get-GraphSite [[-Site] <Object>] [<CommonParameters>]
+
+ +

Lists

+
Get-GraphSite [[-Site] <Object>] [-Lists] [-HIDdenLists] [<CommonParameters>]
+
+ +

HiddenLists

+
Get-GraphSite [[-Site] <Object>] [-HIDdenLists] [<CommonParameters>]
+
+ +

SingleList

+
Get-GraphSite [[-Site] <Object>] -ListID <String> [<CommonParameters>]
+
+ +

Notebooks

+
Get-GraphSite [[-Site] <Object>] [-Notebooks] [<CommonParameters>]
+
+ +

Drives

+
Get-GraphSite [[-Site] <Object>] [-Drives] [<CommonParameters>]
+
+ +

SubSites

+
Get-GraphSite [[-Site] <Object>] [-SubSites] [<CommonParameters>]
+
+ +

DESCRIPTION

+

This interogates https://graph.microsoft.com/v1.0/sites/{id} +which requires consent to use the Sites.Read.All scope or better. +If no ID is provided it queries the Root site. +Depending on the parameters given it will return subsites, lists +detials of a single list, OneDrive Drives and on Note Notebooks., +it

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphTeam -site | Get-GraphSite -Lists -Hidden
+Gets the site(s) for the current user's team(s) and gets lists
+from the site(s) including hidden ones.
+
+ +

PARAMETERS

+

-Site

+

Specifies a site, if omitted "root" will be assumed - the root site of the user's tennant.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: Root
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Lists

+

If specified returns the lists in the site.

+
Type: SwitchParameter
+Parameter Sets: Lists
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HIDdenLists

+

If specified returns the system lists which are hidden by default

+
Type: SwitchParameter
+Parameter Sets: Lists
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +
Type: SwitchParameter
+Parameter Sets: HiddenLists
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ListID

+

if Specified returns the details of one list

+
Type: String
+Parameter Sets: SingleList
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Notebooks

+

If Specified returns notebooks in the s

+
Type: SwitchParameter
+Parameter Sets: Notebooks
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Drives

+

If Specified returns the drives in the site.

+
Type: SwitchParameter
+Parameter Sets: Drives
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-SubSites

+

If Specified returns the sub-sites within the site, if the user has suitable permissions. + Needs higher permissions

+
Type: SwitchParameter
+Parameter Sets: SubSites
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphSiteColumn/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphSiteColumn/index.html new file mode 100644 index 0000000..10088ff --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphSiteColumn/index.html @@ -0,0 +1,932 @@ + + + + + + + + + + + + Get-GraphSiteColumn - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphSiteColumn
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphSiteColumn

+

SYNOPSIS

+

Gets a column which is defined for the whole site.

+

SYNTAX

+

None (Default)

+
Get-GraphSiteColumn [-AllowMultiple] [-Raw] [<CommonParameters>]
+
+ +

Terms

+
Get-GraphSiteColumn [[-Name] <String>] [[-ColumnGroup] <String>] [[-ID] <String>] [-AllowMultiple] [-Raw]
+ [<CommonParameters>]
+
+ +

WhereClause

+
Get-GraphSiteColumn [-Where <ScriptBlock>] [-AllowMultiple] [-Raw] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Name

+

Selects column(s) by name (and possibly group)

+
Type: String
+Parameter Sets: Terms
+Aliases:
+
+Required: False
+Position: 1
+Default value: *
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-ColumnGroup

+

Selects column(s) by group (and possibly by name)

+
Type: String
+Parameter Sets: Terms
+Aliases:
+
+Required: False
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ID

+

Selects a column by unique ID

+
Type: String
+Parameter Sets: Terms
+Aliases:
+
+Required: False
+Position: 3
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Where

+

Allows a custom where clause instead of Name and/or group and/or ID

+
Type: ScriptBlock
+Parameter Sets: WhereClause
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllowMultiple

+

Get-GraphSiteColumn is intended to return one column to used when creating a new list, so + if multiple columns are returned that would be an error (i.e. +two columns have the + same name and group wasn't given.) If -allowMultiple is specified it is not treated as an error

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Raw

+

{{ Fill Raw Description }}

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphSiteUserList/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphSiteUserList/index.html new file mode 100644 index 0000000..9c0704f --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphSiteUserList/index.html @@ -0,0 +1,836 @@ + + + + + + + + + + + + Get-GraphSiteUserList - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphSiteUserList
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphSiteUserList

+

SYNOPSIS

+

Gets the Users list for a [team] site

+

SYNTAX

+
Get-GraphSiteUserList [-Site] <Object> [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Site

+

The [team] Site whose user-list will be fetched

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphTeamsApp/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphTeamsApp/index.html new file mode 100644 index 0000000..5209602 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphTeamsApp/index.html @@ -0,0 +1,832 @@ + + + + + + + + + + + + Get-GraphTeamsApp - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphTeamsApp
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphTeamsApp

+

SYNOPSIS

+

Returns apps from the teams app catalog

+

SYNTAX

+
Get-GraphTeamsApp [[-App] <String>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-App

+

{{ Fill App Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphToDoList/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphToDoList/index.html new file mode 100644 index 0000000..240b6a3 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphToDoList/index.html @@ -0,0 +1,868 @@ + + + + + + + + + + + + Get-GraphToDoList - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphToDoList
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphToDoList

+

SYNOPSIS

+

Gets information about lists used in the To Do app.

+

SYNTAX

+
Get-GraphToDoList [[-ToDoList] <Object>] [-UserId <Object>] [-Tasks] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-ToDoList

+

The ID of the plan or a plan object with an ID property. +if omitted the current users planner will be assumed.

+
Type: Object
+Parameter Sets: (All)
+Aliases: id
+
+Required: False
+Position: 1
+Default value: DefaultList
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-UserId

+

The User ID (GUID or UPN) of the list owner. +Defaults to the current user.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Tasks

+

If specified returns the tasks in the list.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphUser/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphUser/index.html new file mode 100644 index 0000000..1c70bd4 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphUser/index.html @@ -0,0 +1,1313 @@ + + + + + + + + + + + + Get-GraphUser - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphUser
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphUser

+

SYNOPSIS

+

Gets information from the MS-Graph API about the a user (current user by default)

+

SYNTAX

+

None (Default)

+
Get-GraphUser [[-UserID] <Object>] [-Current] [<CommonParameters>]
+
+ +

Calendars

+
Get-GraphUser [[-UserID] <Object>] [-Calendars] [-Current] [<CommonParameters>]
+
+ +

DirectReports

+
Get-GraphUser [[-UserID] <Object>] [-DirectReports] [-Current] [<CommonParameters>]
+
+ +

Drive

+
Get-GraphUser [[-UserID] <Object>] [-Drive] [-Current] [<CommonParameters>]
+
+ +

LicenseDetails

+
Get-GraphUser [[-UserID] <Object>] [-LicenseDetails] [-Current] [<CommonParameters>]
+
+ +

MailboxSettings

+
Get-GraphUser [[-UserID] <Object>] [-MailboxSettings] [-Current] [<CommonParameters>]
+
+ +

OutlookCategories

+
Get-GraphUser [[-UserID] <Object>] [-OutlookCategories] [-Current] [<CommonParameters>]
+
+ +

Manager

+
Get-GraphUser [[-UserID] <Object>] [-Manager] [-Current] [<CommonParameters>]
+
+ +

Teams

+
Get-GraphUser [[-UserID] <Object>] [-Teams] [-Current] [<CommonParameters>]
+
+ +

Groups

+
Get-GraphUser [[-UserID] <Object>] [-Groups] [-SecurityGroups] [-Current] [<CommonParameters>]
+
+ +

SecurityGroups

+
Get-GraphUser [[-UserID] <Object>] [-SecurityGroups] [-Current] [<CommonParameters>]
+
+ +

MemberOf

+
Get-GraphUser [[-UserID] <Object>] [-MemberOf] [-Current] [<CommonParameters>]
+
+ +

TransitiveMemberOf

+
Get-GraphUser [[-UserID] <Object>] [-TransitiveMemberOf] [-Current] [<CommonParameters>]
+
+ +

Notebooks

+
Get-GraphUser [[-UserID] <Object>] [-Notebooks] [-Current] [<CommonParameters>]
+
+ +

Photo

+
Get-GraphUser [[-UserID] <Object>] [-Photo] [-Current] [<CommonParameters>]
+
+ +

PlannerTasks

+
Get-GraphUser [[-UserID] <Object>] [-PlannerTasks] [-Current] [<CommonParameters>]
+
+ +

PlannerPlans

+
Get-GraphUser [[-UserID] <Object>] [-Plans] [-Current] [<CommonParameters>]
+
+ +

Presence

+
Get-GraphUser [[-UserID] <Object>] [-Presence] [-Current] [<CommonParameters>]
+
+ +

Site

+
Get-GraphUser [[-UserID] <Object>] [-Site] [-Current] [<CommonParameters>]
+
+ +

ToDoLists

+
Get-GraphUser [[-UserID] <Object>] [-ToDoLists] [-Current] [<CommonParameters>]
+
+ +

Select

+
Get-GraphUser [[-UserID] <Object>] -Select <String[]> [-Current] [<CommonParameters>]
+
+ +

DESCRIPTION

+

Queries https://graph.microsoft.com/v1.0/me or https://graph.microsoft.com/v1.0/name@domain +or https://graph.microsoft.com/v1.0/\<\<guid>> for information about a user. +Getting a user returns a default set of properties only (businessPhones, displayName, givenName, +id, jobTitle, mail, mobilePhone, officeLocation, preferredLanguage, surname, userPrincipalName). +Use -select to get the other properties. +Most options need consent to use the Directory.Read.All or Directory.AccessAsUser.All scopes. +Some options will also work with user.read; and the following need consent which is task specific +Calendars needs Calendars.Read, OutLookCategries needs MailboxSettings.Read, PlannerTasks needs +Group.Read.All, Drive needs Files.Read (or better), Notebooks needs either Notes.Create or +Notes.Read (or better).

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphUser -MemberOf | ft displayname, description, mail, id
+Shows the name description, email address and internal ID for the groups this user is a direct member of
+
+ +

EXAMPLE 2

+
(get-graphuser -Drive).root.children.name
+Gets the user's one drive. The drive object has a .root property which is represents its
+root-directory, and this has a .children property which is a collection of the objects
+in the root directory. So this command shows the names of files and folders in the root directory. To just see sub folders it is possible to use
+get-graphuser -Drive | Get-GraphDrive -subfolders
+
+ +

PARAMETERS

+

-UserID

+

UserID as a guid or User Principal name. +If not specified, it will assume "Current user" if other paraneters are given, or "All users" otherwise.

+
Type: Object
+Parameter Sets: (All)
+Aliases: id
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: True (ByPropertyName, ByValue)
+Accept wildcard characters: False
+
+ +

-Calendars

+

Get the user's Calendar(s)

+
Type: SwitchParameter
+Parameter Sets: Calendars
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DirectReports

+

Select people who have the user as their manager

+
Type: SwitchParameter
+Parameter Sets: DirectReports
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Drive

+

Get the user's one drive

+
Type: SwitchParameter
+Parameter Sets: Drive
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-LicenseDetails

+

Get user's license Details

+
Type: SwitchParameter
+Parameter Sets: LicenseDetails
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-MailboxSettings

+

Get the user's Mailbox Settings

+
Type: SwitchParameter
+Parameter Sets: MailboxSettings
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-OutlookCategories

+

Get the users Outlook-categories (by default, 6 color names)

+
Type: SwitchParameter
+Parameter Sets: OutlookCategories
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Manager

+

Get the user's manager

+
Type: SwitchParameter
+Parameter Sets: Manager
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Teams

+

Get the user's teams

+
Type: SwitchParameter
+Parameter Sets: Teams
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Groups

+

Get the user's Groups

+
Type: SwitchParameter
+Parameter Sets: Groups
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-SecurityGroups

+

{{ Fill SecurityGroups Description }}

+
Type: SwitchParameter
+Parameter Sets: Groups
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +
Type: SwitchParameter
+Parameter Sets: SecurityGroups
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-MemberOf

+

Get the Directory-Roles and Groups the user belongs to; -Groups or -Teams only return one type of object.

+
Type: SwitchParameter
+Parameter Sets: MemberOf
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-TransitiveMemberOf

+

Get the Directory-Roles and Groups the user belongs to; -Groups or -Teams only return one type of object.

+
Type: SwitchParameter
+Parameter Sets: TransitiveMemberOf
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Notebooks

+

Get the user's Notebook(s)

+
Type: SwitchParameter
+Parameter Sets: Notebooks
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Photo

+

Get the user's photo

+
Type: SwitchParameter
+Parameter Sets: Photo
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PlannerTasks

+

Get the user's assigned tasks in planner.

+
Type: SwitchParameter
+Parameter Sets: PlannerTasks
+Aliases: AssignedTasks
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Plans

+

Get the plans owned by the user in planner.

+
Type: SwitchParameter
+Parameter Sets: PlannerPlans
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Presence

+

Get the users presence in Teams

+
Type: SwitchParameter
+Parameter Sets: Presence
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Site

+

Get the user's MySite in SharePoint

+
Type: SwitchParameter
+Parameter Sets: Site
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ToDoLists

+

Get the user's To-do lists

+
Type: SwitchParameter
+Parameter Sets: ToDoLists
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Select

+

specifies which properties of the user object should be returned Additional options are available when selecting individual users +The API documents list deviceEnrollmentLimit, deviceManagementTroubleshootingEvents , mailboxSettings which cause errors

+
Type: String[]
+Parameter Sets: Select
+Aliases:
+
+Required: True
+Position: Named
+Default value: $Script:DefaultUserProperties
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Current

+

Used to explicitly say "Current user" and will over-ride UserID if one is given.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphUser

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphUserList/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphUserList/index.html new file mode 100644 index 0000000..33c2d22 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphUserList/index.html @@ -0,0 +1,1035 @@ + + + + + + + + + + + + Get-GraphUserList - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphUserList
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphUserList

+

SYNOPSIS

+

Returns a list of Azure active directory users for the current tennant.

+

SYNTAX

+

None (Default)

+
Get-GraphUserList [-Select <String[]>] [-Top <Object>] [-ExpandProperty <String>] [-Proxy <Uri>]
+ [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] [<CommonParameters>]
+
+ +

FilterByName

+
Get-GraphUserList [-Name] <String[]> [-Select <String[]>] [-Top <Object>] [-ExpandProperty <String>]
+ [-Proxy <Uri>] [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] [<CommonParameters>]
+
+ +

Sorted

+
Get-GraphUserList [-Select <String[]>] [-Top <Object>] -Sort <String> [-ExpandProperty <String>] [-Proxy <Uri>]
+ [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] [<CommonParameters>]
+
+ +

FilterByString

+
Get-GraphUserList [-Select <String[]>] [-Top <Object>] -Filter <String> [-ExpandProperty <String>]
+ [-Proxy <Uri>] [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] [<CommonParameters>]
+
+ +

FilterToMembers

+
Get-GraphUserList [-Select <String[]>] [-Top <Object>] [-MembersOnly] [-ExpandProperty <String>] [-Proxy <Uri>]
+ [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] [<CommonParameters>]
+
+ +

FilterToGuests

+
Get-GraphUserList [-Select <String[]>] [-Top <Object>] [-GuestsOnly] [-ExpandProperty <String>] [-Proxy <Uri>]
+ [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphUserList -filter "Department eq 'Accounts'"
+Gets the list with a custom filter this is typically fieldname eq 'value' for equals or
+startswith(fieldname,'value') clauses can be joined with and / or.
+
+ +

PARAMETERS

+

-Name

+

If specified searches for users whose first name, surname, displayname, mail address or UPN start with that name.

+
Type: String[]
+Parameter Sets: FilterByName
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Select

+

Names of the fields to return for each user.Note that some properties - aboutMe, Birthday etc, are only available when getting a single user, not a list. +The API defaults to : businessPhones, displayName, givenName, id, jobTitle, mail, mobilePhone, officeLocation, preferredLanguage, surname, userPrincipalName +The module adds to this set - the exactlist can be set with Set-GraphOption -DefaultUserProperties

+
Type: String[]
+Parameter Sets: (All)
+Aliases: Property
+
+Required: False
+Position: Named
+Default value: $Script:DefaultUserProperties
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Top

+

The default is to get all

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Sort

+

Order by clause for the query - most fields result in an error and it can't be combined with some other query values.

+
Type: String
+Parameter Sets: Sorted
+Aliases: OrderBy
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Filter

+

Filter clause for the query for example "startswith(displayname,'Bob') or startswith(displayname,'Robert')"

+
Type: String
+Parameter Sets: FilterByString
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-MembersOnly

+

Adds a filter clause "userType eq 'Member'"

+
Type: SwitchParameter
+Parameter Sets: FilterToMembers
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-GuestsOnly

+

Adds a filter clause "userType eq 'Guest'"

+
Type: SwitchParameter
+Parameter Sets: FilterToGuests
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ExpandProperty

+

{{ Fill ExpandProperty Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: Manager
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Proxy

+

The URI for the proxy server to use

+
Type: Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyCredential

+

Credentials for a proxy server to use for the remote call

+
Type: PSCredential
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyUseDefaultCredentials

+

Use the default credentials for the proxygit

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphUser

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphWorkBook/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphWorkBook/index.html new file mode 100644 index 0000000..d1ac856 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-GraphWorkBook/index.html @@ -0,0 +1,887 @@ + + + + + + + + + + + + Get-GraphWorkBook - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-GraphWorkBook
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-GraphWorkBook

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+

ItemName

+
Get-GraphWorkBook [-Drive <Object>] [-ItemPath] <Object> [<CommonParameters>]
+
+ +

ItemID

+
Get-GraphWorkBook [-Drive <Object>] -ItemID <Object> [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Drive

+

{{ Fill Drive Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-ItemID

+

{{ Fill ItemID Description }}

+
Type: Object
+Parameter Sets: ItemID
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-ItemPath

+

{{ Fill ItemPath Description }}

+
Type: Object
+Parameter Sets: ItemName
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

System.Object

+

OUTPUTS

+

System.Object

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-MgDomainNameerenceByRef_List1/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-MgDomainNameerenceByRef_List1/index.html new file mode 100644 index 0000000..de77362 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-MgDomainNameerenceByRef_List1/index.html @@ -0,0 +1,1091 @@ + + + + + + + + + + + + Get-MgDomainNameerenceByRef_List1 - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-MgDomainNameerenceByRef_List1
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-MgDomainNameerenceByRef_List1

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Get-MgDomainNameerenceByRef_List1 [-Break] -DomainId <String> [-ExpandProperty <String[]>] [-Filter <String>]
+ [-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Property <String[]>]
+ [-Proxy <Uri>] [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] [-Search <String>]
+ [-Skip <Int32>] [-Sort <String[]>] [-Top <Int32>] [-PageSize <Int32>] [-All] [-CountVariable <String>]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-All

+

List all pages.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Break

+

Wait for .NET debugger to attach

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-CountVariable

+

Specifies a count of the total number of items in a collection. +By default, this variable will be set in the global scope.

+
Type: String
+Parameter Sets: (All)
+Aliases: CV
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DomainId

+

key: id of domain

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ExpandProperty

+

Expand related entities

+
Type: String[]
+Parameter Sets: (All)
+Aliases: Expand
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Filter

+

Filter items by property values

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelineAppend

+

SendAsync Pipeline Steps to be appended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelinePrepend

+

SendAsync Pipeline Steps to be prepended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PageSize

+

Sets the page size of results.

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Property

+

Select properties to be returned

+
Type: String[]
+Parameter Sets: (All)
+Aliases: Select
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Proxy

+

The URI for the proxy server to use

+
Type: Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyCredential

+

Credentials for a proxy server to use for the remote call

+
Type: PSCredential
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyUseDefaultCredentials

+

Use the default credentials for the proxy

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ + +

Search items by search phrases

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Skip

+

Skip the first n items

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Sort

+

Order items by property values

+
Type: String[]
+Parameter Sets: (All)
+Aliases: OrderBy
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Top

+

Show only the first n items

+
Type: Int32
+Parameter Sets: (All)
+Aliases: Limit
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

None

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.IMicrosoftGraphDirectoryObject

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-MgDomainServiceConfigurationRecord_List1/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-MgDomainServiceConfigurationRecord_List1/index.html new file mode 100644 index 0000000..aaa2943 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-MgDomainServiceConfigurationRecord_List1/index.html @@ -0,0 +1,1091 @@ + + + + + + + + + + + + Get-MgDomainServiceConfigurationRecord_List1 - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-MgDomainServiceConfigurationRecord_List1
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-MgDomainServiceConfigurationRecord_List1

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Get-MgDomainServiceConfigurationRecord_List1 [-Break] -DomainId <String> [-ExpandProperty <String[]>]
+ [-Filter <String>] [-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>]
+ [-Property <String[]>] [-Proxy <Uri>] [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials]
+ [-Search <String>] [-Skip <Int32>] [-Sort <String[]>] [-Top <Int32>] [-PageSize <Int32>] [-All]
+ [-CountVariable <String>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-All

+

List all pages.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Break

+

Wait for .NET debugger to attach

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-CountVariable

+

Specifies a count of the total number of items in a collection. +By default, this variable will be set in the global scope.

+
Type: String
+Parameter Sets: (All)
+Aliases: CV
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DomainId

+

key: id of domain

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ExpandProperty

+

Expand related entities

+
Type: String[]
+Parameter Sets: (All)
+Aliases: Expand
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Filter

+

Filter items by property values

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelineAppend

+

SendAsync Pipeline Steps to be appended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelinePrepend

+

SendAsync Pipeline Steps to be prepended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PageSize

+

Sets the page size of results.

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Property

+

Select properties to be returned

+
Type: String[]
+Parameter Sets: (All)
+Aliases: Select
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Proxy

+

The URI for the proxy server to use

+
Type: Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyCredential

+

Credentials for a proxy server to use for the remote call

+
Type: PSCredential
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyUseDefaultCredentials

+

Use the default credentials for the proxy

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ + +

Search items by search phrases

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Skip

+

Skip the first n items

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Sort

+

Order items by property values

+
Type: String[]
+Parameter Sets: (All)
+Aliases: OrderBy
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Top

+

Show only the first n items

+
Type: Int32
+Parameter Sets: (All)
+Aliases: Limit
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

None

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.IMicrosoftGraphDomainDnsRecord

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-MgDomainVerificationDnsRecord_List1/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-MgDomainVerificationDnsRecord_List1/index.html new file mode 100644 index 0000000..05eb646 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-MgDomainVerificationDnsRecord_List1/index.html @@ -0,0 +1,1091 @@ + + + + + + + + + + + + Get-MgDomainVerificationDnsRecord_List1 - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-MgDomainVerificationDnsRecord_List1
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-MgDomainVerificationDnsRecord_List1

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Get-MgDomainVerificationDnsRecord_List1 [-Break] -DomainId <String> [-ExpandProperty <String[]>]
+ [-Filter <String>] [-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>]
+ [-Property <String[]>] [-Proxy <Uri>] [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials]
+ [-Search <String>] [-Skip <Int32>] [-Sort <String[]>] [-Top <Int32>] [-PageSize <Int32>] [-All]
+ [-CountVariable <String>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-All

+

List all pages.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Break

+

Wait for .NET debugger to attach

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-CountVariable

+

Specifies a count of the total number of items in a collection. +By default, this variable will be set in the global scope.

+
Type: String
+Parameter Sets: (All)
+Aliases: CV
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DomainId

+

key: id of domain

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ExpandProperty

+

Expand related entities

+
Type: String[]
+Parameter Sets: (All)
+Aliases: Expand
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Filter

+

Filter items by property values

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelineAppend

+

SendAsync Pipeline Steps to be appended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelinePrepend

+

SendAsync Pipeline Steps to be prepended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PageSize

+

Sets the page size of results.

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Property

+

Select properties to be returned

+
Type: String[]
+Parameter Sets: (All)
+Aliases: Select
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Proxy

+

The URI for the proxy server to use

+
Type: Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyCredential

+

Credentials for a proxy server to use for the remote call

+
Type: PSCredential
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyUseDefaultCredentials

+

Use the default credentials for the proxy

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ + +

Search items by search phrases

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Skip

+

Skip the first n items

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Sort

+

Order items by property values

+
Type: String[]
+Parameter Sets: (All)
+Aliases: OrderBy
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Top

+

Show only the first n items

+
Type: Int32
+Parameter Sets: (All)
+Aliases: Limit
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

None

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.IMicrosoftGraphDomainDnsRecord

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-MgDomain_Get1/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-MgDomain_Get1/index.html new file mode 100644 index 0000000..665078a --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-MgDomain_Get1/index.html @@ -0,0 +1,968 @@ + + + + + + + + + + + + Get-MgDomain_Get1 - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-MgDomain_Get1
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-MgDomain_Get1

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Get-MgDomain_Get1 [-Break] -DomainId <String> [-ExpandProperty <String[]>]
+ [-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Property <String[]>]
+ [-Proxy <Uri>] [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Break

+

Wait for .NET debugger to attach

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DomainId

+

key: id of domain

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ExpandProperty

+

Expand related entities

+
Type: String[]
+Parameter Sets: (All)
+Aliases: Expand
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelineAppend

+

SendAsync Pipeline Steps to be appended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelinePrepend

+

SendAsync Pipeline Steps to be prepended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Property

+

Select properties to be returned

+
Type: String[]
+Parameter Sets: (All)
+Aliases: Select
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Proxy

+

The URI for the proxy server to use

+
Type: Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyCredential

+

Credentials for a proxy server to use for the remote call

+
Type: PSCredential
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyUseDefaultCredentials

+

Use the default credentials for the proxy

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

None

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.IMicrosoftGraphDomain

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-MgDomain_List1/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-MgDomain_List1/index.html new file mode 100644 index 0000000..212e3fb --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-MgDomain_List1/index.html @@ -0,0 +1,1076 @@ + + + + + + + + + + + + Get-MgDomain_List1 - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-MgDomain_List1
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-MgDomain_List1

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Get-MgDomain_List1 [-Break] [-ExpandProperty <String[]>] [-Filter <String>]
+ [-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Property <String[]>]
+ [-Proxy <Uri>] [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] [-Search <String>]
+ [-Skip <Int32>] [-Sort <String[]>] [-Top <Int32>] [-PageSize <Int32>] [-All] [-CountVariable <String>]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-All

+

List all pages.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Break

+

Wait for .NET debugger to attach

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-CountVariable

+

Specifies a count of the total number of items in a collection. +By default, this variable will be set in the global scope.

+
Type: String
+Parameter Sets: (All)
+Aliases: CV
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ExpandProperty

+

Expand related entities

+
Type: String[]
+Parameter Sets: (All)
+Aliases: Expand
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Filter

+

Filter items by property values

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelineAppend

+

SendAsync Pipeline Steps to be appended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelinePrepend

+

SendAsync Pipeline Steps to be prepended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PageSize

+

Sets the page size of results.

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Property

+

Select properties to be returned

+
Type: String[]
+Parameter Sets: (All)
+Aliases: Select
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Proxy

+

The URI for the proxy server to use

+
Type: Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyCredential

+

Credentials for a proxy server to use for the remote call

+
Type: PSCredential
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyUseDefaultCredentials

+

Use the default credentials for the proxy

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ + +

Search items by search phrases

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Skip

+

Skip the first n items

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Sort

+

Order items by property values

+
Type: String[]
+Parameter Sets: (All)
+Aliases: OrderBy
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Top

+

Show only the first n items

+
Type: Int32
+Parameter Sets: (All)
+Aliases: Limit
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

None

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.IMicrosoftGraphDomain

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-MgOrganization_List1/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-MgOrganization_List1/index.html new file mode 100644 index 0000000..eb67094 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-MgOrganization_List1/index.html @@ -0,0 +1,1076 @@ + + + + + + + + + + + + Get-MgOrganization_List1 - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-MgOrganization_List1
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-MgOrganization_List1

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Get-MgOrganization_List1 [-Break] [-ExpandProperty <String[]>] [-Filter <String>]
+ [-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Property <String[]>]
+ [-Proxy <Uri>] [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] [-Search <String>]
+ [-Skip <Int32>] [-Sort <String[]>] [-Top <Int32>] [-PageSize <Int32>] [-All] [-CountVariable <String>]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-All

+

List all pages.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Break

+

Wait for .NET debugger to attach

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-CountVariable

+

Specifies a count of the total number of items in a collection. +By default, this variable will be set in the global scope.

+
Type: String
+Parameter Sets: (All)
+Aliases: CV
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ExpandProperty

+

Expand related entities

+
Type: String[]
+Parameter Sets: (All)
+Aliases: Expand
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Filter

+

Filter items by property values

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelineAppend

+

SendAsync Pipeline Steps to be appended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelinePrepend

+

SendAsync Pipeline Steps to be prepended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PageSize

+

Sets the page size of results.

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Property

+

Select properties to be returned

+
Type: String[]
+Parameter Sets: (All)
+Aliases: Select
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Proxy

+

The URI for the proxy server to use

+
Type: Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyCredential

+

Credentials for a proxy server to use for the remote call

+
Type: PSCredential
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyUseDefaultCredentials

+

Use the default credentials for the proxy

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ + +

Search items by search phrases

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Skip

+

Skip the first n items

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Sort

+

Order items by property values

+
Type: String[]
+Parameter Sets: (All)
+Aliases: OrderBy
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Top

+

Show only the first n items

+
Type: Int32
+Parameter Sets: (All)
+Aliases: Limit
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

None

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.IMicrosoftGraphOrganization

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-MgSubscribedSku_Get1/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-MgSubscribedSku_Get1/index.html new file mode 100644 index 0000000..4b564ce --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-MgSubscribedSku_Get1/index.html @@ -0,0 +1,968 @@ + + + + + + + + + + + + Get-MgSubscribedSku_Get1 - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-MgSubscribedSku_Get1
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-MgSubscribedSku_Get1

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Get-MgSubscribedSku_Get1 [-Break] [-ExpandProperty <String[]>] [-HttpPipelineAppend <SendAsyncStep[]>]
+ [-HttpPipelinePrepend <SendAsyncStep[]>] [-Property <String[]>] [-Proxy <Uri>]
+ [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] -SubscribedSkuId <String> [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Break

+

Wait for .NET debugger to attach

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ExpandProperty

+

Expand related entities

+
Type: String[]
+Parameter Sets: (All)
+Aliases: Expand
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelineAppend

+

SendAsync Pipeline Steps to be appended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelinePrepend

+

SendAsync Pipeline Steps to be prepended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Property

+

Select properties to be returned

+
Type: String[]
+Parameter Sets: (All)
+Aliases: Select
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Proxy

+

The URI for the proxy server to use

+
Type: Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyCredential

+

Credentials for a proxy server to use for the remote call

+
Type: PSCredential
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyUseDefaultCredentials

+

Use the default credentials for the proxy

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-SubscribedSkuId

+

key: id of subscribedSku

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

None

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.IMicrosoftGraphSubscribedSku

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Get-MgSubscribedSku_List1/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Get-MgSubscribedSku_List1/index.html new file mode 100644 index 0000000..ba1dd31 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Get-MgSubscribedSku_List1/index.html @@ -0,0 +1,1076 @@ + + + + + + + + + + + + Get-MgSubscribedSku_List1 - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Get-MgSubscribedSku_List1
  • +
  • + +
  • +
+ +
+
+
+
+ +

Get-MgSubscribedSku_List1

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Get-MgSubscribedSku_List1 [-Break] [-ExpandProperty <String[]>] [-Filter <String>]
+ [-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>] [-Property <String[]>]
+ [-Proxy <Uri>] [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] [-Search <String>]
+ [-Skip <Int32>] [-Sort <String[]>] [-Top <Int32>] [-PageSize <Int32>] [-All] [-CountVariable <String>]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-All

+

List all pages.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Break

+

Wait for .NET debugger to attach

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-CountVariable

+

Specifies a count of the total number of items in a collection. +By default, this variable will be set in the global scope.

+
Type: String
+Parameter Sets: (All)
+Aliases: CV
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ExpandProperty

+

Expand related entities

+
Type: String[]
+Parameter Sets: (All)
+Aliases: Expand
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Filter

+

Filter items by property values

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelineAppend

+

SendAsync Pipeline Steps to be appended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelinePrepend

+

SendAsync Pipeline Steps to be prepended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PageSize

+

Sets the page size of results.

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Property

+

Select properties to be returned

+
Type: String[]
+Parameter Sets: (All)
+Aliases: Select
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Proxy

+

The URI for the proxy server to use

+
Type: Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyCredential

+

Credentials for a proxy server to use for the remote call

+
Type: PSCredential
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyUseDefaultCredentials

+

Use the default credentials for the proxy

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ + +

Search items by search phrases

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Skip

+

Skip the first n items

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Sort

+

Order items by property values

+
Type: String[]
+Parameter Sets: (All)
+Aliases: OrderBy
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Top

+

Show only the first n items

+
Type: Int32
+Parameter Sets: (All)
+Aliases: Limit
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

None

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.IMicrosoftGraphSubscribedSku

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Grant-GraphDirectoryRole/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Grant-GraphDirectoryRole/index.html new file mode 100644 index 0000000..a1edbcc --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Grant-GraphDirectoryRole/index.html @@ -0,0 +1,897 @@ + + + + + + + + + + + + Grant-GraphDirectoryRole - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Grant-GraphDirectoryRole
  • +
  • + +
  • +
+ +
+
+
+
+ +

Grant-GraphDirectoryRole

+

SYNOPSIS

+

Grants a directory role to a user or group

+

SYNTAX

+
Grant-GraphDirectoryRole [-Role] <Object> [-Member] <Object> [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Role

+

The role(s) to revoke, either as role names or a role objects.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Member

+

The member to add, can be a user name, or an object representing either a group with IsAssignableToRole set or a user.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Force

+

Runs the command with no confirmation.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Grant-GraphLicense/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Grant-GraphLicense/index.html new file mode 100644 index 0000000..ed924fe --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Grant-GraphLicense/index.html @@ -0,0 +1,956 @@ + + + + + + + + + + + + Grant-GraphLicense - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Grant-GraphLicense
  • +
  • + +
  • +
+ +
+
+
+
+ +

Grant-GraphLicense

+

SYNOPSIS

+

Grants the licence to use a particular stock-keeping-unit (SKU) to users or groups

+

SYNTAX

+

ByUserID (Default)

+
Grant-GraphLicense [-SKUID] <Object> [-UserID] <Object> [-DisabledPlans <String[]>] [-UsageLocation <String>]
+ [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

ByGroupID

+
Grant-GraphLicense [-SKUID] <Object> [-GroupID] <Object> [-DisabledPlans <String[]>] [-UsageLocation <String>]
+ [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-SKUID

+

The SKU to get either as an ID or a SKU object containing an ID

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-UserID

+

ID(s) for users to receive permission ("me" will select the current user), the command will accept user objects and attempt to resolve names to IDs

+
Type: Object
+Parameter Sets: ByUserID
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-GroupID

+

ID(s) for group(s) to receive permission, the command will accept group objects and attempt to resolve names to IDs

+
Type: Object
+Parameter Sets: ByGroupID
+Aliases: Team
+
+Required: True
+Position: 3
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DisabledPlans

+

Disables individual parts of the the SKU

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-UsageLocation

+

A two letter country code (ISO standard 3166). +Examples include: 'US', 'JP', and 'GB' Can be set/reset here

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

Runs the command without a confirmation dialog

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Import-GraphGroup/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Import-GraphGroup/index.html new file mode 100644 index 0000000..372b9f7 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Import-GraphGroup/index.html @@ -0,0 +1,894 @@ + + + + + + + + + + + + Import-GraphGroup - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Import-GraphGroup
  • +
  • + +
  • +
+ +
+
+
+
+ +

Import-GraphGroup

+

SYNOPSIS

+

Imports a list of groups from a CSV file

+

SYNTAX

+
Import-GraphGroup [-Path] <Object> [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

Takes a list of CSV files and looks for four columns +* Action is either Add or Remove - other values will cause the row to be ignored +* DisplayName the name which will be used for add/remove operations. +* Description - the longer text describing the group +* Type is either Security to configure a non-mail-enabled Security group, + or Team, to teams enable a group. +Blank or other values will create a non-security + email enabled group which can be teams-enabled later. +* Visibility - one of 'private', 'public', 'hiddenmembership' +The command fetches the list of existing groups, any marked "remove" in the file +will be removed, and marked "add" who are not in the group will be added using +the type, visibility, and description settings. +IF the group exists no check is done to see that it matches the file settings.

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Path

+

One or more files to read for input.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Force

+

Disables any prompt for confirmation

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Import-GraphGroupMember/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Import-GraphGroupMember/index.html new file mode 100644 index 0000000..9ff5d56 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Import-GraphGroupMember/index.html @@ -0,0 +1,888 @@ + + + + + + + + + + + + Import-GraphGroupMember - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Import-GraphGroupMember
  • +
  • + +
  • +
+ +
+
+
+
+ +

Import-GraphGroupMember

+

SYNOPSIS

+

Imports a list of group memberships from a CSV file

+

SYNTAX

+
Import-GraphGroupMember [-Path] <Object> [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

Takes a list of CSV files and looks for three columns +* Action is either Add or Remove - other values will cause the row to be ignored +* MemberOf the name of ONE group the user should be added to or removed from +* UserPrincipalName the name which will be used for add/remove operations. +for each named group the command fetches the membership, users in the group, +who are marked "remove" in the file will be removed, and users +marked "add" in the file who are not in the group will be added.

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Path

+

One or more files to read for input.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Force

+

Usually the command will prompt for confirmation -Force disables this primpt

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Import-GraphUser/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Import-GraphUser/index.html new file mode 100644 index 0000000..3366fff --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Import-GraphUser/index.html @@ -0,0 +1,915 @@ + + + + + + + + + + + + Import-GraphUser - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Import-GraphUser
  • +
  • + +
  • +
+ +
+
+
+
+ +

Import-GraphUser

+

SYNOPSIS

+

Imports a list of users from a CSV file

+

SYNTAX

+
Import-GraphUser [-Path] <Object> [-Force] [-Quiet] [-ListSeparator <String>] [-WhatIf] [-Confirm]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

Takes a list of CSV files and looks for xxxx columns +* Action is either Add, Remove or Set - other values will cause the row to be ignored +* DisplayName

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Path

+

One or more files to read for input.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Force

+

Disables any prompt for confirmation

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Quiet

+

Supresses output of Added, Removed, or No action messages for each row in the file.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ListSeparator

+

Fields which are lists will be split at , or ; by default but a replacement split expression may be given

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: \s*,\s*|\s*;\s*
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Import-GraphWorksheet/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Import-GraphWorksheet/index.html new file mode 100644 index 0000000..956647e --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Import-GraphWorksheet/index.html @@ -0,0 +1,919 @@ + + + + + + + + + + + + Import-GraphWorksheet - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Import-GraphWorksheet
  • +
  • + +
  • +
+ +
+
+
+
+ +

Import-GraphWorksheet

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+

ItemName

+
Import-GraphWorksheet [-Drive <Object>] [-ItemPath] <Object> [[-SheetName] <String>] [-AsHashTable]
+ [<CommonParameters>]
+
+ +

ItemID

+
Import-GraphWorksheet [-Drive <Object>] -ItemID <Object> [[-SheetName] <String>] [-AsHashTable]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-AsHashTable

+

{{ Fill AsHashTable Description }}

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Drive

+

{{ Fill Drive Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-ItemID

+

{{ Fill ItemID Description }}

+
Type: Object
+Parameter Sets: ItemID
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-ItemPath

+

{{ Fill ItemPath Description }}

+
Type: Object
+Parameter Sets: ItemName
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-SheetName

+

{{ Fill SheetName Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases: WorkSheetName
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

System.Object

+

OUTPUTS

+

System.Object

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Invoke-GraphRequest/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Invoke-GraphRequest/index.html new file mode 100644 index 0000000..5f6dcd7 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Invoke-GraphRequest/index.html @@ -0,0 +1,1149 @@ + + + + + + + + + + + + Invoke-GraphRequest - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Invoke-GraphRequest
  • +
  • + +
  • +
+ +
+
+
+
+ +

Invoke-GraphRequest

+

SYNOPSIS

+

Wrappper for Invoke-MgGraphRequest.With token management and result pre-processing

+

SYNTAX

+
Invoke-GraphRequest [-Uri] <Uri> [[-Method] <Object>] [[-Body] <Object>] [-Headers <IDictionary>]
+ [-OutputFilePath <String>] [-InferOutputFileName] [-InputFilePath <String>] [-PassThru]
+ [-Token <SecureString>] [-SkipHeaderValidation] [-ContentType <String>]
+ [-Authentication <GraphRequestAuthenticationType>] [-SessionVariable <String>]
+ [-ResponseHeadersVariable <String>] [-StatusCodeVariable <String>] [-SkipHttpErrorCheck] [-ValueOnly]
+ [-AllValues] [-ExcludeProperty <String[]>] [-PropertyNotMatch <String>] [-AsType <String>]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

Adds -ValueOnly to return just the value part + -AllValues to return gather multiple sets when data is paged + -AsType to convert the retuned results to a specific type + -ExcludeProperty and -PropertyNotMatch for results which have properties which aren't in the specified type

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Uri

+

Uri to call can be a segment such as /beta/me or a fully qualified https://graph.microsoft.com/beta/me

+
Type: Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Method

+

Http Method

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 3
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Body

+

Request body, required when Method is POST or PATCH

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 4
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Headers

+

Optional custom headers, commonly @{'ConsistencyLevel'='eventual'}

+
Type: IDictionary
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-OutputFilePath

+

Output file where the response body will be saved

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-InferOutputFileName

+

{{ Fill InferOutputFileName Description }}

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-InputFilePath

+

Input file to send in the request

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PassThru

+

Indicates that the cmdlet returns the results, in addition to writing them to a file. +Only valid when the OutFile parameter is also used.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Token

+

OAuth or Bearer token to use instead of acquired token

+
Type: SecureString
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-SkipHeaderValidation

+

Add headers to request header collection without validation

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ContentType

+

Body content type, for exmaple 'application/json'

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Authentication

+

Graph Authentication type - 'default' or 'userProvivedToken'

+
Type: GraphRequestAuthenticationType
+Parameter Sets: (All)
+Aliases:
+Accepted values: Default, UserProvidedToken
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-SessionVariable

+

Specifies a web request session. +Enter the variable name, including the dollar sign ($).You can''t use the SessionVariable and GraphRequestSession parameters in the same command.

+
Type: String
+Parameter Sets: (All)
+Aliases: SV
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ResponseHeadersVariable

+

{{ Fill ResponseHeadersVariable Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases: RHV
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-StatusCodeVariable

+

{{ Fill StatusCodeVariable Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-SkipHttpErrorCheck

+

{{ Fill SkipHttpErrorCheck Description }}

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ValueOnly

+

If specified returns the .values property instead of the whole JSON object returned by the API call

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllValues

+

If specified, loops through multi-paged results indicated by an '@odata.nextLink' property

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ExcludeProperty

+

If specified removes properties found in the JSON before converting to a type or returning the object

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: @()
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PropertyNotMatch

+

A regular expression for keys to be removed, for example to catch many odata properties

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AsType

+

If specified converts the JSON object to properties of the a new object of the requested type. +Any properties which are expected in the JSON but not defined in the type should be excluded.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Move-GraphMailItem/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Move-GraphMailItem/index.html new file mode 100644 index 0000000..69c0ddf --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Move-GraphMailItem/index.html @@ -0,0 +1,876 @@ + + + + + + + + + + + + Move-GraphMailItem - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Move-GraphMailItem
  • +
  • + +
  • +
+ +
+
+
+
+ +

Move-GraphMailItem

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Move-GraphMailItem [-Item] <Object> [-Destination] <Object> [-User <Object>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Destination

+

{{ Fill Destination Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Item

+

{{ Fill Item Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-User

+

{{ Fill User Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

System.Object

+

OUTPUTS

+

System.Object

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphAttendee/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphAttendee/index.html new file mode 100644 index 0000000..435bb09 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphAttendee/index.html @@ -0,0 +1,898 @@ + + + + + + + + + + + + New-GraphAttendee - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphAttendee
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphAttendee

+

SYNOPSIS

+

Helper function to create a new meeting attendee, with a mail address and the type of attendance.

+

SYNTAX

+

Default (Default)

+
New-GraphAttendee [-Address] <String> [[-Name] <Object>] [-AttendeeType <Object>] [<CommonParameters>]
+
+ +

PipedStrings

+
New-GraphAttendee [-AttendeeType <Object>] -InputObject <Object> [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Address

+

The recipient's email address, e.g Alex@contoso.com

+
Type: String
+Parameter Sets: Default
+Aliases: Mail
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Name

+

The displayname for the recipient

+
Type: Object
+Parameter Sets: Default
+Aliases: DisplayName
+
+Required: False
+Position: 2
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-AttendeeType

+

Is the attendee required or optional or a resource (such as a room). +Defaults to required

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: Required
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-InputObject

+

{{ Fill InputObject Description }}

+
Type: Object
+Parameter Sets: PipedStrings
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

System.Collections.Hashtable

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphBooleanColumn/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphBooleanColumn/index.html new file mode 100644 index 0000000..a7ab046 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphBooleanColumn/index.html @@ -0,0 +1,827 @@ + + + + + + + + + + + + New-GraphBooleanColumn - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphBooleanColumn
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphBooleanColumn

+

SYNOPSIS

+

Creates a definition of a Sharepoint calculated column

+

SYNTAX

+
New-GraphBooleanColumn [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

System.Collections.Hashtable

+

NOTES

+ +

https://docs.microsoft.com/en-us/graph/api/resources/calculatedcolumn?view=graph-rest-1.0

+ +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphCalculatedColumn/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphCalculatedColumn/index.html new file mode 100644 index 0000000..2c6023b --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphCalculatedColumn/index.html @@ -0,0 +1,873 @@ + + + + + + + + + + + + New-GraphCalculatedColumn - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphCalculatedColumn
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphCalculatedColumn

+

SYNOPSIS

+

Creates a definition of a Sharepoint calculated column

+

SYNTAX

+
New-GraphCalculatedColumn [[-Formula] <Object>] [[-Format] <Object>] [[-OutputType] <Object>]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Formula

+

The formula used to calculate the value.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Format

+

Should the value be presented as a date only or a date and time

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 2
+Default value: DateTime
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-OutputType

+

Should the result be treated as Number, text, date, Currency or boolean

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 3
+Default value: Text
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

System.Collections.Hashtable

+

NOTES

+ +

https://docs.microsoft.com/en-us/graph/api/resources/calculatedcolumn?view=graph-rest-1.0

+ +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphChannel/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphChannel/index.html new file mode 100644 index 0000000..2d06c44 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphChannel/index.html @@ -0,0 +1,901 @@ + + + + + + + + + + + + New-GraphChannel - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphChannel
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphChannel

+

SYNOPSIS

+

Adds a channel to a team

+

SYNTAX

+
New-GraphChannel [-Team] <Object> [-Name] <String[]> [-Description <String>] [-WhatIf] [-Confirm]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

This requires the Group.ReadWrite.All scope.

+

EXAMPLES

+

EXAMPLE 1

+
$newChannel  = New-GraphChannel -Team $newTeam -Name $newProjectName -Description "For anything about project $newProjectName"
+$newTeam holds the result of creating a team with New-GraphTeam...
+$newProjectName holds the name of a project the team will be working on.
+This command creates a new channel in Teams, and stores the result in a variable
+which can then be used to post messages to the channel, or add tabs to it.
+
+ +

PARAMETERS

+

-Team

+

The team where the channel will be added, either as an ID or a team object

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Name

+

Display name for the new channel

+
Type: String[]
+Parameter Sets: (All)
+Aliases: DisplayName
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Description

+

Description for the new channel

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphChannelMessage/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphChannelMessage/index.html new file mode 100644 index 0000000..73b7a39 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphChannelMessage/index.html @@ -0,0 +1,929 @@ + + + + + + + + + + + + New-GraphChannelMessage - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphChannelMessage
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphChannelMessage

+

SYNOPSIS

+

Adds a new thread in a channel in Teams.

+

SYNTAX

+
New-GraphChannelMessage [-Team <Object>] [-Channel] <Object> [-Content] <String> [-ContentType <String>]
+ [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
>$General = Get-GraphTeam $newTeam -ChannelName "General"
+>Add-GraphChannelMessage -Channel $General -Content "Project Firebird now has its own channel."
+This adds a message
+
+ +

PARAMETERS

+

-Team

+

A team object or the ID of the team, if it can't be derived from the channel.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Channel

+

The channel to post to either as an ID or a channel object.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Content

+

The Message body - text by default, specify -contentType if using HTML

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ContentType

+

The format of the content, text by default , or HTML

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: Text
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

if Specified the message will be created without prompting.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphChannelReply/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphChannelReply/index.html new file mode 100644 index 0000000..819928b --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphChannelReply/index.html @@ -0,0 +1,959 @@ + + + + + + + + + + + + New-GraphChannelReply - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphChannelReply
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphChannelReply

+

SYNOPSIS

+

Posts a reply to a message in a Teams channel

+

SYNTAX

+
New-GraphChannelReply [-Message] <Object> [-Team <Object>] [-Channel <Object>] [-Content] <String>
+ [-ContentType <String>] [-Passthru] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Message

+

The Message to reply to as an ID or a message object

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Team

+

If the message or channel parameters don't include the team ID, the team either as an ID or an object containing the ID

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Channel

+

If Message does not contain the channel, the channel either as an ID or an object containing an ID and possibly the team ID

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Content

+

The Message body - text by default, specify -contentType if using HTML

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ContentType

+

The format of the content, text by default , or HTML

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: Text
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Passthru

+

Normally the reply is added 'silently'. +If passthru is specified, the new message will be returned.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: PT
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

if Specified the message will be created without prompting.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphChoiceColumn/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphChoiceColumn/index.html new file mode 100644 index 0000000..9e65796 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphChoiceColumn/index.html @@ -0,0 +1,872 @@ + + + + + + + + + + + + New-GraphChoiceColumn - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphChoiceColumn
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphChoiceColumn

+

SYNOPSIS

+

Creates a definition of a Sharepoint choice column

+

SYNTAX

+
New-GraphChoiceColumn [-Choices] <String[]> [-DisplayAs <String>] [-AllowTextEntry] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Choices

+

The list of values available for this column..

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DisplayAs

+

How the choices are to be presented in the UX, defaults to dropdown menu

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: DropDownMenu
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllowTextEntry

+

Specified to indicates that values in the column should be able to exceed the standard limit of 255 characters.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

System.Collections.Hashtable

+

NOTES

+ +

https://docs.microsoft.com/en-us/graph/api/resources/lookupcolumn?view=graph-rest-1.0

+ +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphColumn/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphColumn/index.html new file mode 100644 index 0000000..cdaab9e --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphColumn/index.html @@ -0,0 +1,1038 @@ + + + + + + + + + + + + New-GraphColumn - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphColumn
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphColumn

+

SYNOPSIS

+

Create a new Column definition for a sharepoint list

+

SYNTAX

+

None (Default)

+
New-GraphColumn [-Name] <String> [-ColumnDefinition] <Hashtable> [-ColumnGroup <String>]
+ [-Description <String>] [-DisplayName <String>] [-Indexed <Boolean>] [-ReadOnly <Boolean>]
+ [-Required <Boolean>] [-EnforceUniqueValues <Boolean>] [-HIDden <Boolean>] [<CommonParameters>]
+
+ +

DefaultbyFormula

+
New-GraphColumn [-Name] <String> [-ColumnDefinition] <Hashtable> [-ColumnGroup <String>]
+ [-Description <String>] [-DisplayName <String>] -DefaultValueFormula <String> [-Indexed <Boolean>]
+ [-ReadOnly <Boolean>] [-Required <Boolean>] [-EnforceUniqueValues <Boolean>] [-HIDden <Boolean>]
+ [<CommonParameters>]
+
+ +

DefaultbyValue

+
New-GraphColumn [-Name] <String> [-ColumnDefinition] <Hashtable> [-ColumnGroup <String>]
+ [-Description <String>] [-DisplayName <String>] -DefaultValueString <String> [-Indexed <Boolean>]
+ [-ReadOnly <Boolean>] [-Required <Boolean>] [-EnforceUniqueValues <Boolean>] [-HIDden <Boolean>]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

New-GraphList uses column definitions to set up a new list. +Each column has a name, description, default and one of the properties from the following list +boolean, calculated, choice, currency, dateTime, lookup, number, personOrGroup or text +Flags can also be set to say if the column is indexed, Readonly and/or required. +Existing Columns defined in the site can be fetched with Get-GraphSiteColumn +New-GraphColumn defines a new column to be included in a list, and a typical list will need +multiple columns, which may be a mixture of new and existing columns. +The specifics of each of the column types is handled by a new-{typeName}Column command. +Examples appear in New-GraphList

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Name

+

The API-facing name of the column as it appears in the fields on a listItem. +For the user-facing name, see displayName.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ColumnDefinition

+

A definition created with on of the New-*Column commands for a text, currency, boolean etc

+
Type: Hashtable
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ColumnGroup

+

For site columns, the name of the group this column belongs to. +Helps organize related columns.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Description

+

The user-facing description of the column.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DisplayName

+

The user-facing name of the column.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DefaultValueFormula

+

Fills in the default value using a formula

+
Type: String
+Parameter Sets: DefaultbyFormula
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DefaultValueString

+

Fills in the defaultt value using a fixed value

+
Type: String
+Parameter Sets: DefaultbyValue
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Indexed

+

If specified the column is indexed to help the perfomance of searching and grouping.

+
Type: Boolean
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ReadOnly

+

Specifies whether the column values can be modified.

+
Type: Boolean
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Required

+

Specifies whether the column value is not optional.

+
Type: Boolean
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-EnforceUniqueValues

+

If true, no two list items may have the same value for this column.

+
Type: Boolean
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HIDden

+

Specifies whether the column is displayed in the user interface.

+
Type: Boolean
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ +

https://docs.microsoft.com/en-us/graph/api/resources/columndefinition?view=graph-rest-1.0

+

New-GraphList

+ +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphContact/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphContact/index.html new file mode 100644 index 0000000..98f0bd5 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphContact/index.html @@ -0,0 +1,1283 @@ + + + + + + + + + + + + New-GraphContact - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphContact
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphContact

+

SYNOPSIS

+

Adds an entry to the current users Outlook contacts

+

SYNTAX

+
New-GraphContact [[-GivenName] <Object>] [[-MiddleName] <Object>] [[-Initials] <Object>] [[-Surname] <Object>]
+ [[-NickName] <Object>] [[-FileAs] <Object>] [[-DisplayName] <Object>] [[-CompanyName] <Object>]
+ [[-JobTitle] <Object>] [[-Department] <Object>] [[-Manager] <Object>] [[-Email] <Object>] [[-IM] <Object>]
+ [[-MobilePhone] <Object>] [[-BusinessPhones] <Object>] [[-HomePhones] <Object>] [[-Homeaddress] <Object>]
+ [[-BusinessAddress] <Object>] [[-OtherAddress] <Object>] [[-Categories] <Object>] [[-Birthday] <DateTime>]
+ [[-PersonalNotes] <Object>] [[-Profession] <Object>] [[-AssistantName] <Object>] [[-Children] <Object>]
+ [[-SpouseName] <Object>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

Almost all the paramters can be accepted form a piped object to make import easier.

+

EXAMPLES

+

EXAMPLE 1

+
New-GraphContact -GivenName Pavel -Surname Bansky -Email pavelb@fabrikam.onmicrosoft.com -BusinessPhones  "+1 732 555 0102"
+Creates a new contact; if no displayname is given, one will be decided using given name and suranme;
+
+ +

EXAMPLE 2

+
>$PavelMail = New-GraphRecipient -DisplayName "Pavel Bansky [Fabikam]" -Mail  pavelb@fabrikam.onmicrosoft.com
+>New-GraphContact -GivenName Pavel -Surname Bansky -Email $pavelmail  -BusinessPhones  "+1 732 555 0102"
+ This creates the same contanct but sets up their email with a display name.
+ New recipient creates a hash table
+ @{'emailaddress' = @ {
+         'name' = 'Pavel Bansky [Fabikam]'
+         'address' = 'pavelb@fabrikam.onmicrosoft.com'
+     }
+ }
+
+ +

PARAMETERS

+

-GivenName

+

{{ Fill GivenName Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-MiddleName

+

{{ Fill MiddleName Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 2
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Initials

+

{{ Fill Initials Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 3
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Surname

+

{{ Fill Surname Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 4
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-NickName

+

{{ Fill NickName Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 5
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-FileAs

+

{{ Fill FileAs Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 6
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-DisplayName

+

{{ Fill DisplayName Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 7
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-CompanyName

+

{{ Fill CompanyName Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 8
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-JobTitle

+

{{ Fill JobTitle Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 9
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Department

+

{{ Fill Department Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 10
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Manager

+

{{ Fill Manager Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 11
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Email

+

One or more mail addresses, as a single string with semi colons between addresses or as an array of strings or MailAddress objects created with New-GraphMailAddress

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 12
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-IM

+

One or more instant messaging addresses, as an array or as a single string with semi colons between addresses

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 13
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-MobilePhone

+

A single mobile phone number

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 14
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-BusinessPhones

+

One or more Business phones either as an array or as single string with semi colons between numbers

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 15
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-HomePhones

+

One or more home phones either as an array or as single string with semi colons between numbers

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 16
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Homeaddress

+

An address object created with New-GraphPhysicalAddress

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 17
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-BusinessAddress

+

An address object created with New-GraphPhysicalAddress

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 18
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-OtherAddress

+

An address object created with New-GraphPhysicalAddress

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 19
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Categories

+

One or more categories either as an array or as single string with semi colons between them.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 20
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Birthday

+

The contact's Birthday as a date

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 21
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-PersonalNotes

+

{{ Fill PersonalNotes Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 22
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Profession

+

{{ Fill Profession Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 23
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-AssistantName

+

{{ Fill AssistantName Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 24
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Children

+

{{ Fill Children Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 25
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-SpouseName

+

{{ Fill SpouseName Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 26
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Force

+

If sepcified the contact will be created without prompting for confirmation. +This is the default state but can change with the setting of confirmPreference.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphContact

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphCurrencyColumn/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphCurrencyColumn/index.html new file mode 100644 index 0000000..60e3de1 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphCurrencyColumn/index.html @@ -0,0 +1,842 @@ + + + + + + + + + + + + New-GraphCurrencyColumn - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphCurrencyColumn
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphCurrencyColumn

+

SYNOPSIS

+

Creates a definition of a Sharepoint datetime column

+

SYNTAX

+
New-GraphCurrencyColumn [[-Locale] <Object>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Locale

+

{{ Fill Locale Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: (Get-Culture)
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

System.Collections.Hashtable

+

NOTES

+ +

https://docs.microsoft.com/en-us/graph/api/resources/datetimecolumn?view=graph-rest-1.0

+ +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphDateTimeColumn/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphDateTimeColumn/index.html new file mode 100644 index 0000000..7339c3f --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphDateTimeColumn/index.html @@ -0,0 +1,859 @@ + + + + + + + + + + + + New-GraphDateTimeColumn - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphDateTimeColumn
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphDateTimeColumn

+

SYNOPSIS

+

Creates a definition of a Sharepoint datetime column

+

SYNTAX

+
New-GraphDateTimeColumn [[-Format] <Object>] [[-DisplayAs] <Object>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Format

+

Should the value be presented as a date only or a date and time

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: DateTime
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DisplayAs

+

Should the UX use default rendering or relative representation (eg. +"today at 3:00 PM") or the standard absolute representation (eg. +"5/10/2017 3:20 PM")

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 2
+Default value: Default
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

System.Collections.Hashtable

+

NOTES

+ +

https://docs.microsoft.com/en-us/graph/api/resources/datetimecolumn?view=graph-rest-1.0

+ +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphFolder/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphFolder/index.html new file mode 100644 index 0000000..3a5c2b8 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphFolder/index.html @@ -0,0 +1,902 @@ + + + + + + + + + + + + New-GraphFolder - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphFolder
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphFolder

+

SYNOPSIS

+

Creates a new folder on OneDrive.

+

SYNTAX

+
New-GraphFolder [-Path] <String> [-Drive <Object>] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

By default this will create a new folder on the user's one drive, and if the no Parent ID is specified +the folder will be created in the root of the drive.

+

EXAMPLES

+

EXAMPLE 1

+
New-GraphFolder -Path '/Documents/Project-x'
+Creates a new folder named "Project x" in the current users Documents folder
+
+ +

EXAMPLE 2

+
New-GraphFolder -Path 'root:/Documents/Project-Y'
+Creates a new folder named "Project Y" in the current users Documents folder
+Note that tab completion will change /Projects/ to root:/Projects
+
+ +

EXAMPLE 3

+
>$drive = Get-GraphTeam -ByName Consultants -Drive
+>New-GraphFolder -Drive $drive -Path 'root:/Documents/Project Firebird/Planning'
+Gets the drive for the Consultants team; and adds a subfolder under documents.
+As in the previous examples root:/ is how tab completion would render the path, but
+'/Documents/Project Firebird/Planning' works just as well.
+
+ +

PARAMETERS

+

-Path

+

The name for the new folder

+
Type: String
+Parameter Sets: (All)
+Aliases: FolderPath
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Drive

+

The drive holding the new folder - defaults to the user's OneDrive but can be a shared one e.g. +Drives/{ID}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: Me/Drive
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphGroup/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphGroup/index.html new file mode 100644 index 0000000..d1793f9 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphGroup/index.html @@ -0,0 +1,1045 @@ + + + + + + + + + + + + New-GraphGroup - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphGroup
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphGroup

+

SYNOPSIS

+

Adds a new group/team

+

SYNTAX

+

None (Default)

+
New-GraphGroup [-Name] <String> [-Description <String>] [-MailNickName <String>] [-Visibility <String>]
+ [-Members <Object>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

Security

+
New-GraphGroup [-Name] <String> [-AsSecurity] [-AsAssignableToRole] [-Description <String>]
+ [-MailNickName <String>] [-Visibility <String>] [-Members <Object>] [-Owners <Object>] [-Force] [-WhatIf]
+ [-Confirm] [<CommonParameters>]
+
+ +

Team

+
New-GraphGroup [-Name] <String> [-AsTeam] [-Description <String>] [-MailNickName <String>]
+ [-Visibility <String>] [-Members <Object>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

Owners

+
New-GraphGroup [-Name] <String> [-Description <String>] [-MailNickName <String>] [-Visibility <String>]
+ [-Members <Object>] [-Owners <Object>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

Every team is also a group, but not every group is team enabled. +This Command has an alias of New-GraphTeam so you call it as team or group +By default it creates the group as a team UNLESS you specify -NoTeam. +A non-Teams enabled group can be teams enabled with Set-GraphGroup -EnableTeam +Creating and modifying groups requires consent to use the Group.ReadWrite.All scope

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Name

+

The name of the Group / Team

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AsSecurity

+

Unless specified, groups will be mail enabled "unfied" / Microsoft365 groups +The Graph API doesn't allow mail-enabled & security-enabled, or mail-disabled & unified +Only unified groups can be made into teams. +Unified groups can only contain users, +Security groups can contain other security principals

+
Type: SwitchParameter
+Parameter Sets: Security
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AsAssignableToRole

+

If specified allows Azure AD roles can be assigned to the group. +This forces visibility to be private, and can't be changed.

+
Type: SwitchParameter
+Parameter Sets: Security
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AsTeam

+

New-GraphGroup only enables teams functonality if -AsTeam is specified. +Calling as New-GraphTeam defaults AsTeam to true

+
Type: SwitchParameter
+Parameter Sets: Team
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Description

+

A description for the group

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-MailNickName

+

The group/team's mail nickname

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Visibility

+

The visibility of the group, Public by default, it can be 'private' or 'hidden membership'

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: Public
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Members

+

Ordinary Members of the group - assumed to be users, given by their User Principal Name or ID or as objects

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Owners

+

Owners of the group - assumed to be users, given by their User Principal Name or ID or as objects

+
Type: Object
+Parameter Sets: Security, Owners
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

if specified group will be added without prompting

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphGroup

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphInvitation/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphInvitation/index.html new file mode 100644 index 0000000..a47b17c --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphInvitation/index.html @@ -0,0 +1,937 @@ + + + + + + + + + + + + New-GraphInvitation - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphInvitation
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphInvitation

+

SYNOPSIS

+

Invites an external user to become a guest in Azure AD

+

SYNTAX

+
New-GraphInvitation [[-EmailAddress] <String>] [-DisplayName <String>] [-UserType <String>]
+ [-RedirectUrl <String>] [-SendInvitationMessage] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-EmailAddress

+

The email address of the user being invited. +The characters #~ ! +$ % ^ & * ( [ { \< > } ] ) + = \ / | ; : " " ? +, are not permitted +A . +or - is permitted except at the beginning or end of the name. +A _ is permitted anywhere.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-DisplayName

+

The display name of the user being invited.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-UserType

+

The userType of the user being invited. +By default, this is Guest. +You can invite as Member if you are a company administrator.'

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-RedirectUrl

+

The URL the user should be redirected to once the invitation is redeemed. +Required.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: Https://mysignins.microsoft.com/
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-SendInvitationMessage

+

Indicates whether an email should be sent to the user being invited or not.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphList/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphList/index.html new file mode 100644 index 0000000..2b632c5 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphList/index.html @@ -0,0 +1,954 @@ + + + + + + + + + + + + New-GraphList - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphList
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphList

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
New-GraphList [-DisplayName] <Object> [-Site <Object>] [-Template <String>] [-Description <Object>]
+ [-Columns <Object>] [-Hidden] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Columns

+

{{ Fill Columns Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Description

+

{{ Fill Description Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DisplayName

+

{{ Fill DisplayName Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases: Name
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Hidden

+

{{ Fill Hidden Description }}

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Site

+

{{ Fill Site Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Template

+

{{ Fill Template Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+Accepted values: documentLibrary, genericList, tasks, survey, links, announcements, contacts
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

None

+

OUTPUTS

+

System.Object

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphLookupColumn/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphLookupColumn/index.html new file mode 100644 index 0000000..23b24d3 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphLookupColumn/index.html @@ -0,0 +1,904 @@ + + + + + + + + + + + + New-GraphLookupColumn - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphLookupColumn
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphLookupColumn

+

SYNOPSIS

+

Creates a definition of a Sharepoint lookup column

+

SYNTAX

+
New-GraphLookupColumn [-ListID] <String> [-ColumnName] <String> [-PrimaryLookupColumnID <String>]
+ [-MultipleSelection] [-AllowUnlimitedLength] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-ListID

+

The unique identifier of the lookup source list.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ColumnName

+

The name of the lookup source column.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PrimaryLookupColumnID

+

If specified, this column is a secondary lookup, pulling an additional field from the list item looked up by the primary lookup. +Use the list item looked up by the primary as the source for the column named here

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-MultipleSelection

+

If Specified allows multiple/values to be specified

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllowUnlimitedLength

+

Specified to indicates that values in the column should be able to exceed the standard limit of 255 characters.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

System.Collections.Hashtable

+

NOTES

+ +

https://docs.microsoft.com/en-us/graph/api/resources/lookupcolumn?view=graph-rest-1.0

+ +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphMailAddress/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphMailAddress/index.html new file mode 100644 index 0000000..2c2459e --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphMailAddress/index.html @@ -0,0 +1,851 @@ + + + + + + + + + + + + New-GraphMailAddress - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphMailAddress
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphMailAddress

+

SYNOPSIS

+

Helper function to create a email addresses

+

SYNTAX

+
New-GraphMailAddress [-Address] <String> [-Name <Object>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Address

+

The recipient's email address, e.g Alex@contoso.com

+
Type: String
+Parameter Sets: (All)
+Aliases: Mail
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Name

+

The displayname for the recipient

+
Type: Object
+Parameter Sets: (All)
+Aliases: DisplayName
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphNumberColumn/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphNumberColumn/index.html new file mode 100644 index 0000000..761e7e7 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphNumberColumn/index.html @@ -0,0 +1,888 @@ + + + + + + + + + + + + New-GraphNumberColumn - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphNumberColumn
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphNumberColumn

+

SYNOPSIS

+

Creates a definition of a Sharepoint number column

+

SYNTAX

+
New-GraphNumberColumn [[-DisplayAs] <Object>] [[-DecimalPlaces] <String>] [[-Max] <Double>] [[-Min] <Double>]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-DisplayAs

+

How the value should be presented in the UX, number by default, the only other choice is percentage

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: Number
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DecimalPlaces

+

How many decimal places to display Auto, None, or the numbers one to five in words

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 2
+Default value: Automatic
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Max

+

Maximum permitted value

+
Type: Double
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 3
+Default value: 0
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Min

+

Maximum permitted value

+
Type: Double
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 4
+Default value: 0
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

System.Collections.Hashtable

+

NOTES

+ +

https://docs.microsoft.com/en-us/graph/api/resources/numbercolumn?view=graph-rest-1.0

+ +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphOneNoteSection/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphOneNoteSection/index.html new file mode 100644 index 0000000..67b5724 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphOneNoteSection/index.html @@ -0,0 +1,910 @@ + + + + + + + + + + + + New-GraphOneNoteSection - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphOneNoteSection
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphOneNoteSection

+

SYNOPSIS

+

Adds a section to a OneNote notebook

+

SYNTAX

+
New-GraphOneNoteSection [-Notebook] <Object> [-SectionName] <Object> [-Force] [-WhatIf] [-Confirm]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

This command Posts to https://graph.microsoft.com/v1.0 + /users/{id}/onenote/notebooks/{id}/sections +or /groups/{id}/onenote/notebooks/{id}/sections +or /sites/{id}/onenote/notebooks/{id}/sections +which requires consent to use the Notes.Create or Notes.ReadWrite scope or better.

+

EXAMPLES

+

EXAMPLE 1

+
>$notebook = Get-GraphTeam -ByName accounts -Notebooks
+>$section = New-GraphOneNoteSection -Notebook $notebook -SectionName "FY-19 Year End"
+>Add-GraphOneNotePage -Section $section -HTMLPage '<html><head><title>Welcome</Title></head><body><p>This section is ready for you to add your pages.</p></body></html>'
+
+ +

The first command gets the team notebook for the account team; the second adds a section to it +and the third adds a welcome page to the new section.

+

PARAMETERS

+

-Notebook

+

A graph URI pointing to the notebook, or a notebook object, this can be set by Set-GraphOneNoteHome

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-SectionName

+

Name for the new section.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Force

+

If specified, the command will run without asking for confirmation; this is the default unless Confirm Preference has been set

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Returns an object representing the new section

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphPersonOrGroupColumn/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphPersonOrGroupColumn/index.html new file mode 100644 index 0000000..8b630d3 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphPersonOrGroupColumn/index.html @@ -0,0 +1,872 @@ + + + + + + + + + + + + New-GraphPersonOrGroupColumn - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphPersonOrGroupColumn
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphPersonOrGroupColumn

+

SYNOPSIS

+

Creates a definition of a Sharepoint person or group column

+

SYNTAX

+
New-GraphPersonOrGroupColumn [-MultipleSelection] [[-DisplayAs] <String>] [-IncludeGroups] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-MultipleSelection

+

If Specified allows multiple/users to be specified

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DisplayAs

+

Chooses how the name should be displayed; the default is to show name and presence, but it can first name, title, mail etc.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: NameWithPresence
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-IncludeGroups

+

If Specified allows groups to be selected as well as users

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

System.Collections.Hashtable

+

NOTES

+ +

https://docs.microsoft.com/en-us/graph/api/resources/personorgroupcolumn?view=graph-rest-1.0

+ +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphPhysicalAddress/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphPhysicalAddress/index.html new file mode 100644 index 0000000..3fb0372 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphPhysicalAddress/index.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + New-GraphPhysicalAddress - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphPhysicalAddress
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphPhysicalAddress

+

SYNOPSIS

+

Builds a street / postal / physical address to use in the contact commands

+

SYNTAX

+
New-GraphPhysicalAddress [[-Street] <String>] [[-City] <String>] [[-State] <String>] [[-PostalCode] <String>]
+ [[-CountryOrRegion] <String>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
$fabrikamAddress = New-GraphPhysicalAddress  "123 Some Street" Seattle WA 98121 "United States"
+Creates an address - if the -Street, City,  State, Postalcode country are not explictly
+specified they will be assigned in that order. Quotes are desireable but only necessary
+when a value contains spaces.
+It can then be used like this. Set-GraphContact $pavel -BusinessAddress $fabrikamAddress
+
+ +

PARAMETERS

+

-Street

+

Street address. +This can contain carriage returns for a district, e.g. +"101 London Road`r`nBotley"

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-City

+

City, or town as people outside the US tend to call it

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-State

+

State, Province, County, the administrative level below country

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 3
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PostalCode

+

Postal code. +Even it parses as a number, as with US ZIP codes, it will be converted to a string

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 4
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-CountryOrRegion

+

Usually a country but could be some other geographical entity

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 5
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphRecipient/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphRecipient/index.html new file mode 100644 index 0000000..2a095aa --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphRecipient/index.html @@ -0,0 +1,851 @@ + + + + + + + + + + + + New-GraphRecipient - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphRecipient
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphRecipient

+

SYNOPSIS

+

Creats a new meeting attendee, with a mail address and the type of attendance.

+

SYNTAX

+
New-GraphRecipient [-Mail] <Object> [[-DisplayName] <Object>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Mail

+

The recipient's email address, e.g Alex@contoso.com

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-DisplayName

+

The displayname for the recipient

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 3
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphRecurrence/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphRecurrence/index.html new file mode 100644 index 0000000..724ce74 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphRecurrence/index.html @@ -0,0 +1,999 @@ + + + + + + + + + + + + New-GraphRecurrence - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphRecurrence
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphRecurrence

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
New-GraphRecurrence [[-DayOfMonth] <Int32>] [[-DaysOfWeek] <String[]>] [[-FirstDayOfWeek] <String>]
+ [[-Index] <String>] [[-Interval] <Int32>] [[-Month] <Int32>] [[-Type] <String>]
+ [[-NumberOfOccurrences] <Object>] [[-startDate] <DateTime>] [[-EndDate] <DateTime>]
+ [[-RecurrenceTimeZone] <String>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-DayOfMonth

+

{{ Fill DayOfMonth Description }}

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 0
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DaysOfWeek

+

{{ Fill DaysOfWeek Description }}

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+Accepted values: sunday, monday, tuesday, wednesday, thursday, friday, saturday
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-EndDate

+

{{ Fill EndDate Description }}

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 9
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-FirstDayOfWeek

+

{{ Fill FirstDayOfWeek Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+Accepted values: sunday, monday, tuesday, wednesday, thursday, friday, saturday
+
+Required: False
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Index

+

{{ Fill Index Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+Accepted values: first, second, third, fourth, last
+
+Required: False
+Position: 3
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Interval

+

{{ Fill Interval Description }}

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 4
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Month

+

{{ Fill Month Description }}

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 5
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-NumberOfOccurrences

+

{{ Fill NumberOfOccurrences Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 7
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-RecurrenceTimeZone

+

{{ Fill RecurrenceTimeZone Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 10
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Type

+

{{ Fill Type Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+Accepted values: daily, weekly, absoluteMonthly, relativeMonthly, absoluteYearly, relativeYearly
+
+Required: False
+Position: 6
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-startDate

+

{{ Fill startDate Description }}

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 8
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

INPUTS

+

None

+

OUTPUTS

+

System.Object

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphTeamPlan/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphTeamPlan/index.html new file mode 100644 index 0000000..181e86f --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphTeamPlan/index.html @@ -0,0 +1,902 @@ + + + + + + + + + + + + New-GraphTeamPlan - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphTeamPlan
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphTeamPlan

+

SYNOPSIS

+

Creates new a plan (in the planner app) for a team.

+

SYNTAX

+
New-GraphTeamPlan [-Team] <Object> [-PlanName] <Object> [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Team

+

The ID of the team

+
Type: Object
+Parameter Sets: (All)
+Aliases: Group
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-PlanName

+

Name(s) of the plan(s) to add to this team.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If Specified the plan will be added without confirmation

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphPlannerPlan

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphTextColumn/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphTextColumn/index.html new file mode 100644 index 0000000..47f4c07 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphTextColumn/index.html @@ -0,0 +1,903 @@ + + + + + + + + + + + + New-GraphTextColumn - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphTextColumn
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphTextColumn

+

SYNOPSIS

+

Creates a definition of a sharepoint text column

+

SYNTAX

+
New-GraphTextColumn [-MultiLine] [-Append] [[-TextType] <String>] [[-MaxLength] <Int32>]
+ [[-LinesForEditing] <Int32>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-MultiLine

+

Text is single line unless multiline is specified.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Append

+

A new entry replaces exisitng text unless append is specified

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-TextType

+

The type of text being stored - plain or richText (plain by default)

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: Plain
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-MaxLength

+

The maximum number of characters for the value.

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 2
+Default value: 0
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-LinesForEditing

+

The size of the text box.

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 3
+Default value: 0
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

System.Collections.Hashtable

+

NOTES

+ +

https://docs.microsoft.com/en-us/graph/api/resources/textcolumn?view=graph-rest-1.0

+ +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphToDoList/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphToDoList/index.html new file mode 100644 index 0000000..dbae59f --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphToDoList/index.html @@ -0,0 +1,914 @@ + + + + + + + + + + + + New-GraphToDoList - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphToDoList
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphToDoList

+

SYNOPSIS

+

Creates a new list for the To-Do app

+

SYNTAX

+
New-GraphToDoList [-Displayname] <String> [-UserId <Object>] [-IsShared] [-Force] [-WhatIf] [-Confirm]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Displayname

+

The name for the list

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-UserId

+

The User ID (GUID or UPN) of the list owner. +Defaults to the current user,

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: $Global:GraphUser
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-IsShared

+

If specified the the list will be created as a shared list

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If specified any confirmation will be supressed

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphToDoTask/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphToDoTask/index.html new file mode 100644 index 0000000..d3b39a2 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphToDoTask/index.html @@ -0,0 +1,1048 @@ + + + + + + + + + + + + New-GraphToDoTask - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphToDoTask
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphToDoTask

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
New-GraphToDoTask [-ToDoList <Object>] [-UserId <String>] [-Title] <String> [-BodyText <String>]
+ [-BodyType <String>] [-Importance <String>] [-DueDateTime <DateTime>] [-Status <String>]
+ [-CompletedDateTime <DateTime>] [-ReminderDateTime <DateTime>] [-Recurrence <Object>] [-Force] [-WhatIf]
+ [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-BodyText

+

{{ Fill BodyText Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-BodyType

+

{{ Fill BodyType Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+Accepted values: text, html
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-CompletedDateTime

+

{{ Fill CompletedDateTime Description }}

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DueDateTime

+

{{ Fill DueDateTime Description }}

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

{{ Fill Force Description }}

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Importance

+

{{ Fill Importance Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+Accepted values: low, normal, high
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Recurrence

+

{{ Fill Recurrence Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ReminderDateTime

+

{{ Fill ReminderDateTime Description }}

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Status

+

{{ Fill Status Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+Accepted values: notStarted, inProgress, completed, waitingOnOthers, deferred
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Title

+

{{ Fill Title Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ToDoList

+

{{ Fill ToDoList Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases: TodoTaskListId
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-UserId

+

{{ Fill UserId Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

None

+

OUTPUTS

+

System.Object

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphUser/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphUser/index.html new file mode 100644 index 0000000..faeed1b --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphUser/index.html @@ -0,0 +1,1220 @@ + + + + + + + + + + + + New-GraphUser - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphUser
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphUser

+

SYNOPSIS

+

Creates a new user in Azure Active directory

+

SYNTAX

+

DomainFromUPNDisplay

+
New-GraphUser -UserPrincipalName <String> [-MailNickName <String>] -DisplayName <String> [-Manager <String>]
+ [-UsageLocation <String>] [-Groups <Object>] [-Roles <Object>] [-Licenses <Object>]
+ [-Initialpassword <String>] [-NoPasswordChange] [-ForceMFAPasswordChange] [-PasswordPolicies <String[]>]
+ [-SettableProperties <Hashtable>] [-PasswordRule <ScriptBlock>] [-Force] [-WhatIf] [-Confirm]
+ [<CommonParameters>]
+
+ +

DomainFromUPNLast

+
New-GraphUser -UserPrincipalName <String> [-MailNickName <String>] [-DisplayName <String>] -GivenName <String>
+ -Surname <String> [-Manager <String>] [-UsageLocation <String>] [-Groups <Object>] [-Roles <Object>]
+ [-Licenses <Object>] [-Initialpassword <String>] [-NoPasswordChange] [-ForceMFAPasswordChange]
+ [-PasswordPolicies <String[]>] [-SettableProperties <Hashtable>] [-DisplayNameRule <ScriptBlock>]
+ [-NickNameRule <ScriptBlock>] [-PasswordRule <ScriptBlock>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

UPNFromDomainDisplay

+
New-GraphUser -MailNickName <String> [-Domain <String>] -DisplayName <String> [-Manager <String>]
+ [-UsageLocation <String>] [-Groups <Object>] [-Roles <Object>] [-Licenses <Object>]
+ [-Initialpassword <String>] [-NoPasswordChange] [-ForceMFAPasswordChange] [-PasswordPolicies <String[]>]
+ [-SettableProperties <Hashtable>] [-PasswordRule <ScriptBlock>] [-Force] [-WhatIf] [-Confirm]
+ [<CommonParameters>]
+
+ +

UPNFromDomainLast

+
New-GraphUser [-MailNickName <String>] [-Domain <String>] -GivenName <String> -Surname <String>
+ [-Manager <String>] [-UsageLocation <String>] [-Groups <Object>] [-Roles <Object>] [-Licenses <Object>]
+ [-Initialpassword <String>] [-NoPasswordChange] [-ForceMFAPasswordChange] [-PasswordPolicies <String[]>]
+ [-SettableProperties <Hashtable>] [-DisplayNameRule <ScriptBlock>] [-NickNameRule <ScriptBlock>]
+ [-PasswordRule <ScriptBlock>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-UserPrincipalName

+

User principal name for the new user. +If not specified it can be built by specifying Mail nickname and domain name.

+
Type: String
+Parameter Sets: DomainFromUPNDisplay, DomainFromUPNLast
+Aliases: UPN
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-MailNickName

+

Mail nickname for the new user. +If not specified the part of the UPN before the @sign will be used, or using the displayname or first/last name

+
Type: String
+Parameter Sets: DomainFromUPNDisplay, DomainFromUPNLast, UPNFromDomainLast
+Aliases: Nickname
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +
Type: String
+Parameter Sets: UPNFromDomainDisplay
+Aliases: Nickname
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Domain

+

Domain for the new user - used to create UPN name if the UPN paramater is not provided

+
Type: String
+Parameter Sets: UPNFromDomainDisplay, UPNFromDomainLast
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DisplayName

+

The name displayed in the address book for the user. +This is usually the combination of the user''s first name, middle initial and last name. +This property is required when a user is created and it cannot be cleared during updates.

+
Type: String
+Parameter Sets: DomainFromUPNDisplay, UPNFromDomainDisplay
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +
Type: String
+Parameter Sets: DomainFromUPNLast
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-GivenName

+

The given name (first name) of the user.

+
Type: String
+Parameter Sets: DomainFromUPNLast, UPNFromDomainLast
+Aliases: FirstName
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Surname

+

User's last / family name

+
Type: String
+Parameter Sets: DomainFromUPNLast, UPNFromDomainLast
+Aliases: LastName
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Manager

+

ID or UserPrincipalName of the user's manager

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-UsageLocation

+

A two letter country code (ISO standard 3166). +Required for users that will be assigned licenses due to legal requirement to check for availability of services in countries. +Examples include: 'US', 'JP', and 'GB'

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: $Script:DefaultUsageLocation
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Groups

+

{{ Fill Groups Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Roles

+

{{ Fill Roles Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Licenses

+

{{ Fill Licenses Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Initialpassword

+

The initial password for the user. +If none is specified one will be generated and output by the command

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-NoPasswordChange

+

If specified the user will not have to change their password on first logon

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ForceMFAPasswordChange

+

If specified the user will need to use Multi-factor authentication when changing their password.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PasswordPolicies

+

Specifies built-in password policies to apply to the user

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-SettableProperties

+

A hash table of properties which can be passed as parameters to Set-GraphUser command after the account is created

+
Type: Hashtable
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DisplayNameRule

+

A script block specifying how the displayname should be built, by default it is {"$GivenName $Surname"};

+
Type: ScriptBlock
+Parameter Sets: DomainFromUPNLast, UPNFromDomainLast
+Aliases:
+
+Required: False
+Position: Named
+Default value: {"$GivenName $Surname"}
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-NickNameRule

+

A script block specifying how the mailnickname should be built, by default it is $GivenName.$Surname with punctuation removed;

+
Type: ScriptBlock
+Parameter Sets: DomainFromUPNLast, UPNFromDomainLast
+Aliases:
+
+Required: False
+Position: Named
+Default value: {($GivenName -replace '\W','') +'.' + ($Surname -replace '\W','')}
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PasswordRule

+

A script block specifying how to create a password, by default a date between 1800 and 2199 like 10Oct2126 - easy to type and meets complexity rules.

+
Type: ScriptBlock
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: {([datetime]"1/1/1800").AddDays((Get-Random 146000)).tostring("ddMMMyyyy")}
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If specified prevents any confirmation dialog from appearing

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-GraphWorkBook/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphWorkBook/index.html new file mode 100644 index 0000000..38cde51 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-GraphWorkBook/index.html @@ -0,0 +1,876 @@ + + + + + + + + + + + + New-GraphWorkBook - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-GraphWorkBook
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-GraphWorkBook

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
New-GraphWorkBook [-Destination] <String> [-Drive <Object>] [-TemplatePath <Object>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Destination

+

{{ Fill Destination Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Drive

+

{{ Fill Drive Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-TemplatePath

+

{{ Fill TemplatePath Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

None

+

OUTPUTS

+

System.Object

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-MgUserTodoListTask_CreateExpanded1/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-MgUserTodoListTask_CreateExpanded1/index.html new file mode 100644 index 0000000..eaa01ce --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-MgUserTodoListTask_CreateExpanded1/index.html @@ -0,0 +1,1244 @@ + + + + + + + + + + + + New-MgUserTodoListTask_CreateExpanded1 - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-MgUserTodoListTask_CreateExpanded1
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-MgUserTodoListTask_CreateExpanded1

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
New-MgUserTodoListTask_CreateExpanded1 [-AdditionalProperties <Hashtable>] [-Body <IMicrosoftGraphItemBody>]
+ [-BodyLastModifiedDateTime <DateTime>] [-Break] [-CompletedDateTime <IMicrosoftGraphDateTimeZone>]
+ [-CreatedDateTime <DateTime>] [-DueDateTime <IMicrosoftGraphDateTimeZone>]
+ [-Extensions <IMicrosoftGraphExtension[]>] [-HttpPipelineAppend <SendAsyncStep[]>]
+ [-HttpPipelinePrepend <SendAsyncStep[]>] [-Id <String>] [-Importance <String>] [-IsReminderOn]
+ [-LastModifiedDateTime <DateTime>] [-LinkedResources <IMicrosoftGraphLinkedResource[]>] [-Proxy <Uri>]
+ [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials]
+ [-Recurrence <IMicrosoftGraphPatternedRecurrence>] [-ReminderDateTime <IMicrosoftGraphDateTimeZone>]
+ [-Status <String>] [-Title <String>] -TodoTaskListId <String> -UserId <String> [-WhatIf] [-Confirm]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-AdditionalProperties

+

Additional Parameters

+
Type: Hashtable
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Body

+

itemBody

+
Type: IMicrosoftGraphItemBody
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-BodyLastModifiedDateTime

+

The date and time when the task was last modified. +By default, it is in UTC. +You can provide a custom time zone in the request header. +The property value uses ISO 8601 format and is always in UTC time. +For example, midnight UTC on Jan 1, 2020 would look like this: '2020-01-01T00:00:00Z'.

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Break

+

Wait for .NET debugger to attach

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-CompletedDateTime

+

dateTimeTimeZone

+
Type: IMicrosoftGraphDateTimeZone
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-CreatedDateTime

+

The date and time when the task was created. +By default, it is in UTC. +You can provide a custom time zone in the request header. +The property value uses ISO 8601 format. +For example, midnight UTC on Jan 1, 2020 would look like this: '2020-01-01T00:00:00Z'.

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DueDateTime

+

dateTimeTimeZone

+
Type: IMicrosoftGraphDateTimeZone
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Extensions

+

The collection of open extensions defined for the task. +Nullable.

+
Type: IMicrosoftGraphExtension[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelineAppend

+

SendAsync Pipeline Steps to be appended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelinePrepend

+

SendAsync Pipeline Steps to be prepended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Id

+

Read-only.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Importance

+

importance

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-IsReminderOn

+

Set to true if an alert is set to remind the user of the task.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-LastModifiedDateTime

+

The date and time when the task was last modified. +By default, it is in UTC. +You can provide a custom time zone in the request header. +The property value uses ISO 8601 format and is always in UTC time. +For example, midnight UTC on Jan 1, 2020 would look like this: '2020-01-01T00:00:00Z'.

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-LinkedResources

+

A collection of resources linked to the task.

+
Type: IMicrosoftGraphLinkedResource[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Proxy

+

The URI for the proxy server to use

+
Type: Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyCredential

+

Credentials for a proxy server to use for the remote call

+
Type: PSCredential
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyUseDefaultCredentials

+

Use the default credentials for the proxy

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Recurrence

+

patternedRecurrence

+
Type: IMicrosoftGraphPatternedRecurrence
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ReminderDateTime

+

dateTimeTimeZone

+
Type: IMicrosoftGraphDateTimeZone
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Status

+

taskStatus

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Title

+

A brief description of the task.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-TodoTaskListId

+

key: id of todoTaskList

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-UserId

+

key: id of user

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

None

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.IMicrosoftGraphTodoTask

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/New-MgUserTodoList_CreateExpanded1/index.html b/Microsoft.Graph.PlusPlus.Docs/site/New-MgUserTodoList_CreateExpanded1/index.html new file mode 100644 index 0000000..b15faec --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/New-MgUserTodoList_CreateExpanded1/index.html @@ -0,0 +1,1094 @@ + + + + + + + + + + + + New-MgUserTodoList_CreateExpanded1 - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • New-MgUserTodoList_CreateExpanded1
  • +
  • + +
  • +
+ +
+
+
+
+ +

New-MgUserTodoList_CreateExpanded1

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
New-MgUserTodoList_CreateExpanded1 [-AdditionalProperties <Hashtable>] [-Break] [-DisplayName <String>]
+ [-Extensions <IMicrosoftGraphExtension[]>] [-HttpPipelineAppend <SendAsyncStep[]>]
+ [-HttpPipelinePrepend <SendAsyncStep[]>] [-Id <String>] [-IsOwner] [-IsShared] [-Proxy <Uri>]
+ [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] [-Tasks <IMicrosoftGraphTodoTask[]>]
+ -UserId <String> [-WellknownListName <String>] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-AdditionalProperties

+

Additional Parameters

+
Type: Hashtable
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Break

+

Wait for .NET debugger to attach

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DisplayName

+

The name of the task list.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Extensions

+

The collection of open extensions defined for the task list. +Nullable.

+
Type: IMicrosoftGraphExtension[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelineAppend

+

SendAsync Pipeline Steps to be appended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelinePrepend

+

SendAsync Pipeline Steps to be prepended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Id

+

Read-only.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-IsOwner

+

True if the user is owner of the given task list.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-IsShared

+

True if the task list is shared with other users

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Proxy

+

The URI for the proxy server to use

+
Type: Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyCredential

+

Credentials for a proxy server to use for the remote call

+
Type: PSCredential
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyUseDefaultCredentials

+

Use the default credentials for the proxy

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Tasks

+

The tasks in this task list. +Read-only. +Nullable.

+
Type: IMicrosoftGraphTodoTask[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-UserId

+

key: id of user

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WellknownListName

+

wellknownListName

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

None

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.IMicrosoftGraphTodoTaskList

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Out-GraphOneNote/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Out-GraphOneNote/index.html new file mode 100644 index 0000000..79a4159 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Out-GraphOneNote/index.html @@ -0,0 +1,1051 @@ + + + + + + + + + + + + Out-GraphOneNote - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Out-GraphOneNote
  • +
  • + +
  • +
+ +
+
+
+
+ +

Out-GraphOneNote

+

SYNOPSIS

+

Output to a new OneNote page

+

SYNTAX

+

Page (Default)

+
Out-GraphOneNote [-InputObject <PSObject>] [[-Property] <String[]>] [-Section <Object>] [[-Body] <String[]>]
+ [[-Head] <String[]>] [[-Title] <String>] [-As <String>] [-ExcludeProperty <String[]>] [-PreContent <String[]>]
+ [-PostContent <String[]>] [-PassThru] [-Show] [<CommonParameters>]
+
+ +

Fragment

+
Out-GraphOneNote [-InputObject <PSObject>] [[-Property] <String[]>] [-Section <Object>] [-As <String>]
+ [-Fragment] [-ExcludeProperty <String[]>] [-PreContent <String[]>] [-PostContent <String[]>] [-PassThru]
+ [-Show] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
Generates a page
+
+ +

EXAMPLE 2

+
start ( Get-process  | Out-GraphOneNote -Title "Processes @ $(get-date)" -property Name,Handles,NPM,PM,VM,WS -passthru ).links.oneNoteWebUrl.href
+Generates a page in the default section (using the environment variable DefaultOneNoteSection) and opens it in a web browser.
+
+ +

PARAMETERS

+

-InputObject

+

Specifies the objects to be represented in HTML.

+
Type: PSObject
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Property

+

Includes the specified properties of the objects in the output

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: @('*')
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Section

+

The section where the content will be created: to this can be set by Set-GraphOneNoteHome

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Body

+

Specifies the text to add after the opening \<BODY> tag. +By default, there is no text in that position.

+
Type: String[]
+Parameter Sets: Page
+Aliases:
+
+Required: False
+Position: 5
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Head

+

Specifies the content of the \<HEAD> tag. +The default is "\<title>HTML TABLE\</title>". +If you use the Head parameter, the Title parameter is ignored.

+
Type: String[]
+Parameter Sets: Page
+Aliases:
+
+Required: False
+Position: 3
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Title

+

Specifies a title for the Page.

+
Type: String
+Parameter Sets: Page
+Aliases:
+
+Required: False
+Position: 4
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-As

+

Determines whether the object is formatted as a table or a list. +Valid values are TABLE and LIST. +The default value is TABLE.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: Table
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Fragment

+

Generates only an HTML table. +The HTML, HEAD, TITLE, and BODY tags are omitted.

+
Type: SwitchParameter
+Parameter Sets: Fragment
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ExcludeProperty

+

{{ Fill ExcludeProperty Description }}

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PreContent

+

Specifies text to add before the opening \<TABLE> tag. +By default, there is no text in that position.

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PostContent

+

Specifies text to add after the closing \</TABLE> tag. +By default, there is no text in that position.

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PassThru

+

Normally the page is added 'silently'. +If passthru is specified, an object describing the new page will be returned.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: PT
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Show

+

If Specified opens the newly created page

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

You can pipe any .NET object to Out-GraphOneNote

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphChannel/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphChannel/index.html new file mode 100644 index 0000000..46b7e03 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphChannel/index.html @@ -0,0 +1,897 @@ + + + + + + + + + + + + Remove-GraphChannel - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Remove-GraphChannel
  • +
  • + +
  • +
+ +
+
+
+
+ +

Remove-GraphChannel

+

SYNOPSIS

+

Removes a channel from a team

+

SYNTAX

+
Remove-GraphChannel [-Team <Object>] [-Channel] <Object> [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

This requires the Group.ReadWrite.All scope.

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphTeam Developers -ChannelName "Project Firebird" | Remove-GraphChannel
+Finds a channel by name from a named team , and removes it.
+
+ +

PARAMETERS

+

-Team

+

A team object or the ID of the team, if it can't be derived from the channel.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Channel

+

The channel to delete; either as an ID, or a channel object

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Force

+

if Specified the channel will be deleted without prompting

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphContact/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphContact/index.html new file mode 100644 index 0000000..f236019 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphContact/index.html @@ -0,0 +1,885 @@ + + + + + + + + + + + + Remove-GraphContact - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Remove-GraphContact
  • +
  • + +
  • +
+ +
+
+
+
+ +

Remove-GraphContact

+

SYNOPSIS

+

Deletes a contact from the default user's contacts

+

SYNTAX

+
Remove-GraphContact [-Contact] <Object> [-Force <Object>] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphContact -Name pavel | Remove-GraphContact
+Finds and removes any user whose given name, surname, email or display name
+matches Pavel*. This might return unexpected users, fortunately there is a prompt
+before deleting - the prompt it can be supressed by using the -Force switch if you
+are confident you have the right contact selected.
+
+ +

PARAMETERS

+

-Contact

+

The contact to remove, as an ID or as a contact object containing an ID

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Force

+

If specified the contact will be removed without prompting for confirmation

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphEvent/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphEvent/index.html new file mode 100644 index 0000000..c00718e --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphEvent/index.html @@ -0,0 +1,947 @@ + + + + + + + + + + + + Remove-GraphEvent - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Remove-GraphEvent
  • +
  • + +
  • +
+ +
+
+
+
+ +

Remove-GraphEvent

+

SYNOPSIS

+

Deletes an item from the calendar

+

SYNTAX

+

None (Default)

+
Remove-GraphEvent [-Event] <Object> [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

User

+
Remove-GraphEvent [-Event] <Object> -User <String> -Calendar <Object> [-Force] [-WhatIf] [-Confirm]
+ [<CommonParameters>]
+
+ +

GroupID

+
Remove-GraphEvent [-Event] <Object> -Group <Object> [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

Deletes items from the calendar. +If other people have beeen invited to a meeting, +they will reveive a cancellation message.

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Event

+

The event to be removed either as an ID or as an event object containing an ID.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-User

+

UserID as a guid or User Principal name, whose calendar should be fetched If not specified defaults to "me"

+
Type: String
+Parameter Sets: User
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Calendar

+

A sepecific calendar belonging to a user.

+
Type: Object
+Parameter Sets: User
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Group

+

Group ID or a Group object with an ID, whose calendar should be fetched

+
Type: Object
+Parameter Sets: GroupID
+Aliases: Team
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

if Sepcified the event will be deleted without prompting for confirmation

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphGroup/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphGroup/index.html new file mode 100644 index 0000000..c9f9180 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphGroup/index.html @@ -0,0 +1,884 @@ + + + + + + + + + + + + Remove-GraphGroup - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Remove-GraphGroup
  • +
  • + +
  • +
+ +
+
+
+
+ +

Remove-GraphGroup

+

SYNOPSIS

+

Removes a group/team

+

SYNTAX

+
Remove-GraphGroup [-Group] <Object> [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

Requires consent to use the Group.ReadWrite.All scope. +The group may remain visible for a short time. +Deleted groups can be recovered using Get-GraphDeletedObject and Restore-GraphDeletedObject

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Group

+

The ID of the Group / team

+
Type: Object
+Parameter Sets: (All)
+Aliases: Team
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Force

+

If specified the group will be removed without prompting

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphGroupMember/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphGroupMember/index.html new file mode 100644 index 0000000..95f4a99 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphGroupMember/index.html @@ -0,0 +1,922 @@ + + + + + + + + + + + + Remove-GraphGroupMember - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Remove-GraphGroupMember
  • +
  • + +
  • +
+ +
+
+
+
+ +

Remove-GraphGroupMember

+

SYNOPSIS

+

Removes a user (or group) from a group/team

+

SYNTAX

+
Remove-GraphGroupMember [-Group] <Object> [-Member] <Object> [-FromOwners] [-Force] [-WhatIf] [-Confirm]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

Because the group may be a team the command has an alias of Remove-GraphTeamMember. +It requires consent to use the Group.ReadWrite.All, Directory.ReadWrite.All, or +Directory.AccessAsUser.All scope.

+

EXAMPLES

+

EXAMPLE 1

+
Remove-GraphGroupMember -Group $g -FromOwners -Member alex@contoso.com -Force
+Removes a user from the owners of a group without prompting for confirmation.
+
+ +

EXAMPLE 2

+
Get-GraphUserList -Filter "Department eq 'Accounts'" | Remove-GraphGroupMember -Group $g
+Gets a list of users and removes them from from a group.
+
+ +

PARAMETERS

+

-Group

+

The ID of the Group / team

+
Type: Object
+Parameter Sets: (All)
+Aliases: Team
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Member

+

A group object with an ID field, or a user object, user ID or UPN

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-FromOwners

+

If specified the member will be removed from the owners rather than members

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If specified the member will be removed without prompting for confirmation

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphGroupThread/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphGroupThread/index.html new file mode 100644 index 0000000..9e3fbb2 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphGroupThread/index.html @@ -0,0 +1,913 @@ + + + + + + + + + + + + Remove-GraphGroupThread - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Remove-GraphGroupThread
  • +
  • + +
  • +
+ +
+
+
+
+ +

Remove-GraphGroupThread

+

SYNOPSIS

+

Removes a thread from a group in outlook

+

SYNTAX

+
Remove-GraphGroupThread [-Thread] <Object> [-Conversation <Object>] [-Group <Object>] [-Force] [-WhatIf]
+ [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphGroup consultants -Threads | where topic -eq "Today's tests..."  | Remove-GraphGroupThread
+Finds the threads for a named group; isolates one by topic name, and removes it.
+
+ +

PARAMETERS

+

-Thread

+

The thread to remove, either as an ID or a thread object containing an ID, and possibly a conversation ID and group ID

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Conversation

+

The conversation the thread is part of.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Group

+

The group from which the thread is to be removed, either as an ID or a group object containing an ID

+
Type: Object
+Parameter Sets: (All)
+Aliases: Team
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

if Specified the thread will be deleted without prompting.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphListItem/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphListItem/index.html new file mode 100644 index 0000000..7024211 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphListItem/index.html @@ -0,0 +1,915 @@ + + + + + + + + + + + + Remove-GraphListItem - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Remove-GraphListItem
  • +
  • + +
  • +
+ +
+
+
+
+ +

Remove-GraphListItem

+

SYNOPSIS

+

Deletes an item from a SharePoint List

+

SYNTAX

+
Remove-GraphListItem [-Item] <Object> [-List <Object>] [-Site <Object>] [-Force] [-WhatIf] [-Confirm]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

This Deletes an item at https://graph.microsoft.com/v1.0/sites/{id}/lists{id}/items{id} +which requires consent to use the Sites.ReadWrite.All scope

+

EXAMPLES

+

EXAMPLE 1

+
>$problemitems = get-graphlist $problemslist -Items -Property title,issuestatus,AssignedToLookupID,priority
+>$problemitems[4] | Remove-GraphListItem
+
+ +

The first line gets the items from a list , and the second line removes the fifth one

+

PARAMETERS

+

-Item

+

The item to remove; this can be an ID or an object with an ID, and a list and site ID as well

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-List

+

If the item does not contain the list, the list to delete from an ID, or list object with an ID, and a site ID

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Site

+

If there is no site id in the item or list parameter allows the site to specified as an ID or object

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If specified the item will be deleted without prompting for confirmation (prompting is the default)

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphOneNotePage/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphOneNotePage/index.html new file mode 100644 index 0000000..1928f15 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphOneNotePage/index.html @@ -0,0 +1,888 @@ + + + + + + + + + + + + Remove-GraphOneNotePage - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Remove-GraphOneNotePage
  • +
  • + +
  • +
+ +
+
+
+
+ +

Remove-GraphOneNotePage

+

SYNOPSIS

+

Removes a OneNote page

+

SYNTAX

+
Remove-GraphOneNotePage [-Page] <Object> [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

This command makes DELETE requests to https://graph.microsoft.com/v1.0 + /users/{id}/onenote/sections/{id}/pages/{id} + or /groups/{id}/onenote/sections/{id}/pages/{id} + or /sites/{id}/onenote/sections/{id}/pages/{id} + which requires consent to use the Notes.ReadWrite scope or better.

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphUser -Teams -Name Consultants | Get-GraphTeam  -Notebooks |
+   Get-GraphOneNoteBook -Sections -Name General | Get-GraphOneNoteSection -Pages -Name process | Remove-GraphOneNotePage
+finds a team named "consultants" which has the current user as a member, finds its notebook, finds a section named General
+within this sectioned finds page names that begin "process..." and removes them
+
+ +

PARAMETERS

+

-Page

+

A graph URI pointing to the page, or a page object where the .self property is a graph URI...

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Force

+

If specified, the page is deleted without prompting.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphPlan/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphPlan/index.html new file mode 100644 index 0000000..c961386 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphPlan/index.html @@ -0,0 +1,882 @@ + + + + + + + + + + + + Remove-GraphPlan - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Remove-GraphPlan
  • +
  • + +
  • +
+ +
+
+
+
+ +

Remove-GraphPlan

+

SYNOPSIS

+

Removes a plan from a plan the

+

SYNTAX

+
Remove-GraphPlan [[-Plan] <Object>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Plan

+

The ID of the plan or a plan object with an ID property.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Force

+

If specified the plan will be removed without prompting for confirmation; by default confirmation IS requested.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphPlanBucket/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphPlanBucket/index.html new file mode 100644 index 0000000..2cb8632 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphPlanBucket/index.html @@ -0,0 +1,882 @@ + + + + + + + + + + + + Remove-GraphPlanBucket - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Remove-GraphPlanBucket
  • +
  • + +
  • +
+ +
+
+
+
+ +

Remove-GraphPlanBucket

+

SYNOPSIS

+

Removes a bucket from a plan in planner

+

SYNTAX

+
Remove-GraphPlanBucket [-Bucket] <Object> [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Bucket

+

The bucket to remove

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Force

+

If specified the bucket will be removed without prompting for confirmation; by default confirmation IS requested.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphPlanTask/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphPlanTask/index.html new file mode 100644 index 0000000..c54982e --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphPlanTask/index.html @@ -0,0 +1,882 @@ + + + + + + + + + + + + Remove-GraphPlanTask - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Remove-GraphPlanTask
  • +
  • + +
  • +
+ +
+
+
+
+ +

Remove-GraphPlanTask

+

SYNOPSIS

+

Removes a task from a plan in planner

+

SYNTAX

+
Remove-GraphPlanTask [-Task] <Object> [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Task

+

The task to remove, either as an ID, or as a Task object containing an ID.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Force

+

If specified the Task will be removed without prompting for confirmation; by default confirmation IS requested.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphToDoList/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphToDoList/index.html new file mode 100644 index 0000000..9c03a71 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphToDoList/index.html @@ -0,0 +1,899 @@ + + + + + + + + + + + + Remove-GraphToDoList - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Remove-GraphToDoList
  • +
  • + +
  • +
+ +
+
+
+
+ +

Remove-GraphToDoList

+

SYNOPSIS

+

Removes a list from the To Do app, including any task in contains.

+

SYNTAX

+
Remove-GraphToDoList [-ToDoList] <Object> [[-UserId] <String>] [-Force] [-WhatIf] [-Confirm]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-ToDoList

+

A To-do list object or the ID of a To-do list

+
Type: Object
+Parameter Sets: (All)
+Aliases: TodoTaskListId, ListID
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByPropertyName, ByValue)
+Accept wildcard characters: False
+
+ +

-UserId

+

The User ID (GUID or UPN) of the list owner. +Defaults to the current user, and may be found on the ToDo list object

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 2
+Default value: $Global:GraphUser
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Force

+

If specified, no confirmation will be displayed before deleting the list

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphToDoTask/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphToDoTask/index.html new file mode 100644 index 0000000..e71f816 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphToDoTask/index.html @@ -0,0 +1,914 @@ + + + + + + + + + + + + Remove-GraphToDoTask - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Remove-GraphToDoTask
  • +
  • + +
  • +
+ +
+
+
+
+ +

Remove-GraphToDoTask

+

SYNOPSIS

+

Removes a task from the To Do app

+

SYNTAX

+
Remove-GraphToDoTask [-Task] <Object> [[-ToDoList] <Object>] [[-UserId] <String>] [-Force] [-WhatIf] [-Confirm]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Task

+

A Task object or the ID of a task.

+
Type: Object
+Parameter Sets: (All)
+Aliases: ID
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByPropertyName, ByValue)
+Accept wildcard characters: False
+
+ +

-ToDoList

+

A To-do list object or the ID of a To-do list, may be found on the task object

+
Type: Object
+Parameter Sets: (All)
+Aliases: TodoTaskListId, ListID
+
+Required: False
+Position: 2
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-UserId

+

The User ID (GUID or UPN) of the list owner. +Defaults to the current user, and may be found on the task or the ToDo list object

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 3
+Default value: $Global:GraphUser
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Force

+

If specified, no confirmation will be displayed before deleting the task

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphUser/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphUser/index.html new file mode 100644 index 0000000..4207edf --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Remove-GraphUser/index.html @@ -0,0 +1,882 @@ + + + + + + + + + + + + Remove-GraphUser - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Remove-GraphUser
  • +
  • + +
  • +
+ +
+
+
+
+ +

Remove-GraphUser

+

SYNOPSIS

+

Deletes a user from Azure Active directory

+

SYNTAX

+
Remove-GraphUser [-UserID] <Object> [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-UserID

+

ID for the user

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Force

+

If specified the user is deleted without a confirmation prompt.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Remove-MgUserTodoListTask_Delete1/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Remove-MgUserTodoListTask_Delete1/index.html new file mode 100644 index 0000000..681ec1e --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Remove-MgUserTodoListTask_Delete1/index.html @@ -0,0 +1,1030 @@ + + + + + + + + + + + + Remove-MgUserTodoListTask_Delete1 - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Remove-MgUserTodoListTask_Delete1
  • +
  • + +
  • +
+ +
+
+
+
+ +

Remove-MgUserTodoListTask_Delete1

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Remove-MgUserTodoListTask_Delete1 [-Break] [-HttpPipelineAppend <SendAsyncStep[]>]
+ [-HttpPipelinePrepend <SendAsyncStep[]>] [-IfMatch <String>] [-PassThru] [-Proxy <Uri>]
+ [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] -TodoTaskId <String> -TodoTaskListId <String>
+ -UserId <String> [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Break

+

Wait for .NET debugger to attach

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelineAppend

+

SendAsync Pipeline Steps to be appended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelinePrepend

+

SendAsync Pipeline Steps to be prepended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-IfMatch

+

ETag

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PassThru

+

Returns true when the command succeeds

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Proxy

+

The URI for the proxy server to use

+
Type: Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyCredential

+

Credentials for a proxy server to use for the remote call

+
Type: PSCredential
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyUseDefaultCredentials

+

Use the default credentials for the proxy

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-TodoTaskId

+

key: id of todoTask

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-TodoTaskListId

+

key: id of todoTaskList

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-UserId

+

key: id of user

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

None

+

OUTPUTS

+

System.Boolean

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Remove-MgUserTodoList_Delete1/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Remove-MgUserTodoList_Delete1/index.html new file mode 100644 index 0000000..2490695 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Remove-MgUserTodoList_Delete1/index.html @@ -0,0 +1,1015 @@ + + + + + + + + + + + + Remove-MgUserTodoList_Delete1 - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Remove-MgUserTodoList_Delete1
  • +
  • + +
  • +
+ +
+
+
+
+ +

Remove-MgUserTodoList_Delete1

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Remove-MgUserTodoList_Delete1 [-Break] [-HttpPipelineAppend <SendAsyncStep[]>]
+ [-HttpPipelinePrepend <SendAsyncStep[]>] [-IfMatch <String>] [-PassThru] [-Proxy <Uri>]
+ [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] -TodoTaskListId <String> -UserId <String>
+ [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Break

+

Wait for .NET debugger to attach

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelineAppend

+

SendAsync Pipeline Steps to be appended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelinePrepend

+

SendAsync Pipeline Steps to be prepended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-IfMatch

+

ETag

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PassThru

+

Returns true when the command succeeds

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Proxy

+

The URI for the proxy server to use

+
Type: Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyCredential

+

Credentials for a proxy server to use for the remote call

+
Type: PSCredential
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyUseDefaultCredentials

+

Use the default credentials for the proxy

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-TodoTaskListId

+

key: id of todoTaskList

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-UserId

+

key: id of user

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

None

+

OUTPUTS

+

System.Boolean

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Remove-MgUser_Delete/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Remove-MgUser_Delete/index.html new file mode 100644 index 0000000..13ea3bf --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Remove-MgUser_Delete/index.html @@ -0,0 +1,999 @@ + + + + + + + + + + + + Remove-MgUser_Delete - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Remove-MgUser_Delete
  • +
  • + +
  • +
+ +
+
+
+
+ +

Remove-MgUser_Delete

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Remove-MgUser_Delete [-Break] [-HttpPipelineAppend <SendAsyncStep[]>] [-HttpPipelinePrepend <SendAsyncStep[]>]
+ [-IfMatch <String>] [-PassThru] [-Proxy <Uri>] [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials]
+ -UserId <String> [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Break

+

Wait for .NET debugger to attach

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelineAppend

+

SendAsync Pipeline Steps to be appended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelinePrepend

+

SendAsync Pipeline Steps to be prepended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-IfMatch

+

ETag

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PassThru

+

Returns true when the command succeeds

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Proxy

+

The URI for the proxy server to use

+
Type: Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyCredential

+

Credentials for a proxy server to use for the remote call

+
Type: PSCredential
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyUseDefaultCredentials

+

Use the default credentials for the proxy

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-UserId

+

key: id of user

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

None

+

OUTPUTS

+

System.Boolean

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Rename-GraphPlanBucket/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Rename-GraphPlanBucket/index.html new file mode 100644 index 0000000..9a0b436 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Rename-GraphPlanBucket/index.html @@ -0,0 +1,908 @@ + + + + + + + + + + + + Rename-GraphPlanBucket - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Rename-GraphPlanBucket
  • +
  • + +
  • +
+ +
+
+
+
+ +

Rename-GraphPlanBucket

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Rename-GraphPlanBucket [-Bucket] <Object> [-NewName] <Object> [-Force] [-WhatIf] [-Confirm]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Bucket

+

{{ Fill Bucket Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

{{ Fill Force Description }}

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-NewName

+

{{ Fill NewName Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

System.Object

+

OUTPUTS

+

System.Object

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Reset-GraphUserPassword/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Reset-GraphUserPassword/index.html new file mode 100644 index 0000000..9e52c6b --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Reset-GraphUserPassword/index.html @@ -0,0 +1,914 @@ + + + + + + + + + + + + Reset-GraphUserPassword - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Reset-GraphUserPassword
  • +
  • + +
  • +
+ +
+
+
+
+ +

Reset-GraphUserPassword

+

SYNOPSIS

+

Administrative reset to a given our auto-generated password, defaulting to 'reset at next logon'

+

SYNTAX

+
Reset-GraphUserPassword [-UserPrincipalName] <String> [[-Initialpassword] <String>] [-NoPasswordChange]
+ [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-UserPrincipalName

+

User principal name for the user.

+
Type: String
+Parameter Sets: (All)
+Aliases: UPN
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Initialpassword

+

The replacement password for the user. +If none is specified one will be generated and output by the command

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-NoPasswordChange

+

If specified the user will not have to change their password at their next logon

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If Specified prevents any confirmation dialog from appearing

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Restore-GraphDeletedObject/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Restore-GraphDeletedObject/index.html new file mode 100644 index 0000000..c9c35da --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Restore-GraphDeletedObject/index.html @@ -0,0 +1,897 @@ + + + + + + + + + + + + Restore-GraphDeletedObject - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Restore-GraphDeletedObject
  • +
  • + +
  • +
+ +
+
+
+
+ +

Restore-GraphDeletedObject

+

SYNOPSIS

+

Recovers a user or group from the AAD recycle bin

+

SYNTAX

+
Restore-GraphDeletedObject [[-ID] <Object>] [-Group] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-ID

+

A deleted object or the ID of one.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Group

+

Specifies that the ID is associated with a group, not a user.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If specified supresses any confirmation prompt

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Revoke-GraphDirectoryRole/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Revoke-GraphDirectoryRole/index.html new file mode 100644 index 0000000..56da32d --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Revoke-GraphDirectoryRole/index.html @@ -0,0 +1,898 @@ + + + + + + + + + + + + Revoke-GraphDirectoryRole - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Revoke-GraphDirectoryRole
  • +
  • + +
  • +
+ +
+
+
+
+ +

Revoke-GraphDirectoryRole

+

SYNOPSIS

+

Removes a user or group from a an Azure AD directory role

+

SYNTAX

+
Revoke-GraphDirectoryRole [-Role] <Object> [[-Member] <Object>] [-Force] [-WhatIf] [-Confirm]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Role

+

The role(s) to revoke, either as role names or a role objects.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Member

+

The member to remove , can be a user name, or a user or group object

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 2
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Force

+

Runs the command without confirmation.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Revoke-GraphLicense/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Revoke-GraphLicense/index.html new file mode 100644 index 0000000..b7fcb76 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Revoke-GraphLicense/index.html @@ -0,0 +1,971 @@ + + + + + + + + + + + + Revoke-GraphLicense - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Revoke-GraphLicense
  • +
  • + +
  • +
+ +
+
+
+
+ +

Revoke-GraphLicense

+

SYNOPSIS

+

Revokes a users or groups licences to use a particular stock-keeping-unit (SKU)

+

SYNTAX

+

ByUserID (Default)

+
Revoke-GraphLicense [-SKUID] <Object> [-UserID] <Object> [-Force] [-Proxy <Uri>]
+ [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

ByGroupID

+
Revoke-GraphLicense [-SKUID] <Object> [-GroupID] <Object> [-Force] [-Proxy <Uri>]
+ [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-SKUID

+

The SKU to revoke either as an ID or a SKU object containing an ID

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-UserID

+

ID for the user (required. +"me" will select the current user)

+
Type: Object
+Parameter Sets: ByUserID
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-GroupID

+

ID(s) for group(s) to receive permission, the command will accept group objects and attempt to resolve names to IDs

+
Type: Object
+Parameter Sets: ByGroupID
+Aliases: Team
+
+Required: True
+Position: 3
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

Runs the command without a confirmation dialog

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Proxy

+

The URI for the proxy server to use

+
Type: Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyCredential

+

Credentials for a proxy server to use for the remote call

+
Type: PSCredential
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyUseDefaultCredentials

+

Use the default credentials for the proxy

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Save-GraphMailAttachment/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Save-GraphMailAttachment/index.html new file mode 100644 index 0000000..e39651c --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Save-GraphMailAttachment/index.html @@ -0,0 +1,876 @@ + + + + + + + + + + + + Save-GraphMailAttachment - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Save-GraphMailAttachment
  • +
  • + +
  • +
+ +
+
+
+
+ +

Save-GraphMailAttachment

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Save-GraphMailAttachment [[-Attachment] <Object>] [[-Destination] <Object>] [-PassThru] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Attachment

+

{{ Fill Attachment Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 0
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Destination

+

{{ Fill Destination Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PassThru

+

{{ Fill PassThru Description }}

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: PT
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

System.Object

+

OUTPUTS

+

System.Object

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Send-GraphGroupReply/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Send-GraphGroupReply/index.html new file mode 100644 index 0000000..fd1c4f4 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Send-GraphGroupReply/index.html @@ -0,0 +1,957 @@ + + + + + + + + + + + + Send-GraphGroupReply - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Send-GraphGroupReply
  • +
  • + +
  • +
+ +
+
+
+
+ +

Send-GraphGroupReply

+

SYNOPSIS

+

Replies to a group's post in outlook.

+

SYNTAX

+
Send-GraphGroupReply [-Post] <Object> [-Thread <Object>] [-Group <Object>] -Content <String>
+ [-ContentType <String>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
$thread.posts[0] | Send-GraphGroupReply -content '<b><font color="green">Success!!</font> Go team!</b>' -ContentType HTML
+One of the examples for Add-GraphGroupThread left the result of a creating a new thread in $thread
+This takes the only post in the new thread and creates a reply to it with the content in HTML format.
+
+ +

EXAMPLE 2

+
Set-GraphDefaultGroup 'Consultants'
+> ...
+> $post = Get-GraphGroupThread -Topic  "Today's tests..."  -Posts | select -last 1
+>Send-GraphGroupReply $post -Content "Please join a celebration of the successful test at 4PM"
+This example finds threads for the consultants group, Isolates the one with the topic of
+"Today's Tests..." and finds the last post in the thread. It then posts a reply with the content as plain text.
+This example stores the Post between the two commands but they could be piped together as in the previous example
+
+ +

PARAMETERS

+

-Post

+

The Post being replied to, either as an ID or a post object containing an ID which may identify the thread and group

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Thread

+

The thread containing the post (if not embedded in the post itself), as an ID or object, which may identify the group

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Group

+

The group containing the thread (if not embedded in the Post or thread) as an ID or object

+
Type: Object
+Parameter Sets: (All)
+Aliases: Team
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Content

+

The Message body - text by default, specify -contentType if using HTML

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ContentType

+

The type of content, text by default or HTML

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: Text
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

if Specified the message will be created without prompting.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ +

Add-GraphGroupThread

+ +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Send-GraphMailForward/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Send-GraphMailForward/index.html new file mode 100644 index 0000000..a85a9a8 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Send-GraphMailForward/index.html @@ -0,0 +1,867 @@ + + + + + + + + + + + + Send-GraphMailForward - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Send-GraphMailForward
  • +
  • + +
  • +
+ +
+
+
+
+ +

Send-GraphMailForward

+

SYNOPSIS

+

Forwards a mail message.

+

SYNTAX

+
Send-GraphMailForward [-Message] <Object> [-To] <Object> [-Comment <Object>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
> $alex = New-GraphRecipient Alex@contoso.com -DisplayName "Alex B."
+> Get-GraphMailItem -top 1 | Send-GraphMailForward -to $Alex -Comment "FYI :-)"
+Creates a recipient , and forwards the top mail in the users inbox to that recipent
+
+ +

PARAMETERS

+

-Message

+

Either a message ID or a Message object with an ID.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-To

+

Recipient(s) on the "to" line, each is either created with New-MailRecipient (a hash table), or a string holding an address.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Comment

+

Comment to attach when forwarding the message.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Send-GraphMailMessage/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Send-GraphMailMessage/index.html new file mode 100644 index 0000000..46b407a --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Send-GraphMailMessage/index.html @@ -0,0 +1,1034 @@ + + + + + + + + + + + + Send-GraphMailMessage - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Send-GraphMailMessage
  • +
  • + +
  • +
+ +
+
+
+
+ +

Send-GraphMailMessage

+

SYNOPSIS

+

Sends Mail using the Graph API from the current user's mailbox.

+

SYNTAX

+

None (Default)

+
Send-GraphMailMessage [-To] <Object> [-CC <Object>] [-BCC <Object>] [-Subject <String>] [-Body <String>]
+ [-BodyType <Object>] [-Importance <Object>] [-Attachments <Object>] [-Receipt] [<CommonParameters>]
+
+ +

SaveDraftOnly

+
Send-GraphMailMessage [-To] <Object> [-CC <Object>] [-BCC <Object>] [-Subject <String>] [-Body <String>]
+ [-BodyType <Object>] [-Importance <Object>] [-Attachments <Object>] [-Receipt] [-SaveDraftOnly]
+ [<CommonParameters>]
+
+ +

NoSave

+
Send-GraphMailMessage [-To] <Object> [-CC <Object>] [-BCC <Object>] [-Subject <String>] [-Body <String>]
+ [-BodyType <Object>] [-Importance <Object>] [-Attachments <Object>] [-Receipt] [-NoSave] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
Send-GraphMail -To "chris@contoso.com" -subject "You left your keys behind[nt]"
+Sends a mail with a subject but no body or attachments
+
+ +

EXAMPLE 2

+
Send-GraphMail -To "chris@contoso.com" -body "Keys are with reception" -NoSave
+Sends a mail but thi time the subject will read "No subject" and the test will be in the body.
+-NoSave means that no copy of this message will be kept in sent items
+
+ +

EXAMPLE 3

+
Send-GraphMail -To "chris@contoso.com" -Subject "Screen shot" -body "How does this look ?" -Attachments .\Logon.png -Receipt
+#This message has an attachement and requests a read receipt.
+
+ +

EXAMPLE 4

+
$body"<h1>New dialog</h1><br /><img src='cid:Logon.png' -alt='Look at that'><br/>what do you think"
+>$link = Send-GraphMail -To "jhoneill@waitrose.com" -Subject "Login Sreen" -body $body -BodyType HTML  -NoSave -Attachments .\Logon.png -SaveDraftOnly
+This creates an HTML body, the attached picture can be referenced in an <img> tag with cid:fileName.ext
+this time the mail is not sent but left in the user's drafts folder for review.
+
+ +

PARAMETERS

+

-To

+

Recipient(s) on the "to" line, each is either created with New-MailRecipient (a hash table), or a string holding an address.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-CC

+

Recipient(s) on the "CC" line,

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-BCC

+

Recipient(s) on the "Bcc line" line,

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Subject

+

The subject of the message. +A message must have a subject and/or body and/or attachments. +If the subject is left blank it will be sent as "No Subject"

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Body

+

The content of the message; assumed to be plain text, but HTML can be specified with -BodyType

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-BodyType

+

The type of the body content. +Possible values are Text and HTML.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: Text
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Importance

+

The importance of the message: Low, Normal or High

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: Normal
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Attachments

+

Path to file(s) to send as attachments

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Receipt

+

If Specified, requests a receipt.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-SaveDraftOnly

+

If specified leaves the message in the drafts folder without sending it and returns a link to open the message.

+
Type: SwitchParameter
+Parameter Sets: SaveDraftOnly
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-NoSave

+

If specified specifies that a copy of the mail should not be saved

+
Type: SwitchParameter
+Parameter Sets: NoSave
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Send-GraphMailReply/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Send-GraphMailReply/index.html new file mode 100644 index 0000000..7704e81 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Send-GraphMailReply/index.html @@ -0,0 +1,866 @@ + + + + + + + + + + + + Send-GraphMailReply - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Send-GraphMailReply
  • +
  • + +
  • +
+ +
+
+
+
+ +

Send-GraphMailReply

+

SYNOPSIS

+

Replies to a mail message.

+

SYNTAX

+
Send-GraphMailReply [-Message] <Object> [-Comment] <Object> [-ReplyAll] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Message

+

Either a message ID or a Message object with an ID.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Comment

+

Comment to attach when repling to the message - blank replies aren't allowed.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ReplyAll

+

If specified changes reply mode from reply [to sender] to Reply-to-all

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: All
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphContact/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphContact/index.html new file mode 100644 index 0000000..5b8a6e6 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphContact/index.html @@ -0,0 +1,1327 @@ + + + + + + + + + + + + Set-GraphContact - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Set-GraphContact
  • +
  • + +
  • +
+ +
+
+
+
+ +

Set-GraphContact

+

SYNOPSIS

+

Modifies or adds an entry in the current users Outlook contacts

+

SYNTAX

+

UpdateContact

+
Set-GraphContact [-Contact] <Object> [-GivenName <Object>] [-MiddleName <Object>] [-Initials <Object>]
+ [-Surname <Object>] [-NickName <Object>] [-FileAs <Object>] [-DisplayName <Object>] [-CompanyName <Object>]
+ [-JobTitle <Object>] [-Department <Object>] [-Manager <Object>] [-Email <Object>] [-IM <Object>]
+ [-MobilePhone <Object>] [-BusinessPhones <Object>] [-HomePhones <Object>] [-Homeaddress <Object>]
+ [-BusinessAddress <Object>] [-OtherAddress <Object>] [-Categories <Object>] [-Birthday <DateTime>]
+ [-PersonalNotes <Object>] [-Profession <Object>] [-AssistantName <Object>] [-Children <Object>]
+ [-SpouseName <Object>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

NewContact

+
Set-GraphContact [-IsNew] [-GivenName <Object>] [-MiddleName <Object>] [-Initials <Object>] [-Surname <Object>]
+ [-NickName <Object>] [-FileAs <Object>] [-DisplayName <Object>] [-CompanyName <Object>] [-JobTitle <Object>]
+ [-Department <Object>] [-Manager <Object>] [-Email <Object>] [-IM <Object>] [-MobilePhone <Object>]
+ [-BusinessPhones <Object>] [-HomePhones <Object>] [-Homeaddress <Object>] [-BusinessAddress <Object>]
+ [-OtherAddress <Object>] [-Categories <Object>] [-Birthday <DateTime>] [-PersonalNotes <Object>]
+ [-Profession <Object>] [-AssistantName <Object>] [-Children <Object>] [-SpouseName <Object>] [-Force]
+ [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
> $pavel = Get-GraphContact -Name pavel
+> Set-GraphContact $pavel -CompanyName "Fabrikam" -Birthday "1974-07-22"
+The first line gets the Contact which was added in the 'New-GraphContact" example
+and the second adds Birthday and Company-name attributes to the contact.
+
+ +

EXAMPLE 2

+
> $fabrikamAddress = New-GraphPhysicalAddress  "123 Some Street" Seattle WA 98121 "United States"
+> Set-GraphContact $pavel -BusinessAddress $fabrikamAddress
+This continues from the previous example, creating an address in the first line
+and adding it to the contact in the second.
+
+ +

PARAMETERS

+

-Contact

+

The contact to be updated either as an ID or as contact object containing an ID.

+
Type: Object
+Parameter Sets: UpdateContact
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-IsNew

+

If specified, instead of providing a contact, instructs the command to create a contact instead of updating one.

+
Type: SwitchParameter
+Parameter Sets: NewContact
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-GivenName

+

{{ Fill GivenName Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-MiddleName

+

{{ Fill MiddleName Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Initials

+

{{ Fill Initials Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Surname

+

{{ Fill Surname Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-NickName

+

{{ Fill NickName Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-FileAs

+

{{ Fill FileAs Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-DisplayName

+

If not specified a display name will be generated, so updates without the display name may result in overwriting an existing one

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-CompanyName

+

{{ Fill CompanyName Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-JobTitle

+

{{ Fill JobTitle Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Department

+

{{ Fill Department Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Manager

+

{{ Fill Manager Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Email

+

One or more mail addresses, as a single string with semi colons between addresses or as an array of strings or MailAddress objects created with New-GraphMailAddress

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-IM

+

One or more instant messaging addresses, as an array or as a single string with semi colons between addresses

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-MobilePhone

+

A single mobile phone number

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-BusinessPhones

+

One or more Business phones either as an array or as single string with semi colons between numbers

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-HomePhones

+

One or more home phones either as an array or as single string with semi colons between numbers

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Homeaddress

+

An address object created with New-GraphPhysicalAddress

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-BusinessAddress

+

An address object created with New-GraphPhysicalAddress

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-OtherAddress

+

An address object created with New-GraphPhysicalAddress

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Categories

+

One or more categories either as an array or as single string with semi colons between them.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Birthday

+

The contact's Birthday as a date

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-PersonalNotes

+

{{ Fill PersonalNotes Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Profession

+

{{ Fill Profession Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-AssistantName

+

{{ Fill AssistantName Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Children

+

{{ Fill Children Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-SpouseName

+

{{ Fill SpouseName Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Force

+

If sepcified the contact will be created without prompting for confirmation. +This is the default state but can change with the setting of confirmPreference.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphContact

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphDefaultGroup/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphDefaultGroup/index.html new file mode 100644 index 0000000..db77055 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphDefaultGroup/index.html @@ -0,0 +1,848 @@ + + + + + + + + + + + + Set-GraphDefaultGroup - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Set-GraphDefaultGroup
  • +
  • + +
  • +
+ +
+
+
+
+ +

Set-GraphDefaultGroup

+

SYNOPSIS

+

Sets the default paramater for group or team in most functions which take one.

+

SYNTAX

+
Set-GraphDefaultGroup [-Group] <Object> [<CommonParameters>]
+
+ +

DESCRIPTION

+

Takes a group as a parameter or via the pipeline. +If a string is passed it will try to get a matching group from Get-GraphGroup, +a string may be a wildcard for a group name - provided that it only finds one matching group. +If the group has been provisioned as a team then it will be the default for commands which take a -Team parameter. +The primary purpose is to avoid specifying a Group/Team when working with messages, calendar / planner / team channels, +but working with the group itself or its membership it is safer not to default the selection, so no defaults +are set for for Set-Team, Set-Group, Get- Remove-Group Remove-GroupMember or Add-GroupMember or Import and Export

+

EXAMPLES

+

EXAMPLE 1

+
Set-GraphDefaultGroup Accounts
+>  Get-GraphChannel
+Display Name description
+----------- -----------
+General      The Accounts Department
+Mccaw        For anything about project Mccaw
+
+ +

The first command sets the default group - because "Accounts" has been provisioned as a team, +it becomes the default team for Get-GraphChannel

+

PARAMETERS

+

-Group

+

The group to set as the default for other commands

+
Type: Object
+Parameter Sets: (All)
+Aliases: Team
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphEvent/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphEvent/index.html new file mode 100644 index 0000000..36d6872 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphEvent/index.html @@ -0,0 +1,1214 @@ + + + + + + + + + + + + Set-GraphEvent - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Set-GraphEvent
  • +
  • + +
  • +
+ +
+
+
+
+ +

Set-GraphEvent

+

SYNOPSIS

+

Modifies an event on a calendar

+

SYNTAX

+

None (Default)

+
Set-GraphEvent [-Event] <Object> [-Subject <String>] [-Start <DateTime>] [-End <DateTime>] [-Timezone <Object>]
+ [-Location <Object>] [-Body <Object>] [-BodyType <Object>] [-ReminderOn] [-ReminderTime <Object>]
+ [-ShowAs <String>] [-Importance <String>] [-Sensitivity <String>] [-Recurrence <Object>] [-Force] [-PassThru]
+ [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

User

+
Set-GraphEvent [-Event] <Object> [-User <String>] [-Calendar <Object>] [-Subject <String>] [-Start <DateTime>]
+ [-End <DateTime>] [-Timezone <Object>] [-Location <Object>] [-Body <Object>] [-BodyType <Object>]
+ [-ReminderOn] [-ReminderTime <Object>] [-ShowAs <String>] [-Importance <String>] [-Sensitivity <String>]
+ [-Recurrence <Object>] [-Force] [-PassThru] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

Group

+
Set-GraphEvent [-Event] <Object> -Group <Object> [-Subject <String>] [-Start <DateTime>] [-End <DateTime>]
+ [-Timezone <Object>] [-Location <Object>] [-Body <Object>] [-BodyType <Object>] [-ReminderOn]
+ [-ReminderTime <Object>] [-ShowAs <String>] [-Importance <String>] [-Sensitivity <String>]
+ [-Recurrence <Object>] [-Force] [-PassThru] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

AllDay

+
Set-GraphEvent [-Event] <Object> [-Subject <String>] -Start <DateTime> -End <DateTime> [-AllDay]
+ [-Timezone <Object>] [-Location <Object>] [-Body <Object>] [-BodyType <Object>] [-ReminderOn]
+ [-ReminderTime <Object>] [-ShowAs <String>] [-Importance <String>] [-Sensitivity <String>]
+ [-Recurrence <Object>] [-Force] [-PassThru] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Event

+

The event to be updateds either as an ID or as an event object containing an ID.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-User

+

UserID as a guid or User Principal name, whose calendar should be fetched If not specified defaults to "me"

+
Type: String
+Parameter Sets: User
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Calendar

+

A sepecific calendar belonging to a user.

+
Type: Object
+Parameter Sets: User
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Group

+

Group ID or a Group object with an ID whose calendar should be fetched

+
Type: Object
+Parameter Sets: Group
+Aliases: Team
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Subject

+

Subject for the appointment

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Start

+

Start time - if -Timezone is not used this will be the in local machine's times zone

+
Type: DateTime
+Parameter Sets: None, User, Group
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +
Type: DateTime
+Parameter Sets: AllDay
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-End

+

End Time - if -Timezone is not used this will be the in local machine's times zone

+
Type: DateTime
+Parameter Sets: None, User, Group
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +
Type: DateTime
+Parameter Sets: AllDay
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllDay

+

Creates the event as all day - you must also set the start and end time.

+
Type: SwitchParameter
+Parameter Sets: AllDay
+Aliases:
+
+Required: True
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Timezone

+

Timezone - by default the local machine's time zone is used

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: $(tzutil.exe /g)
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Location

+

Location for the appointment

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Body

+

Body text - if using HTML set the body type to HTML

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-BodyType

+

Type of text used for the body, Text or HTML

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: Text
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ReminderOn

+

Unless -Reminder on is specified no reminder will sound before the meeting

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ReminderTime

+

Time in Minutes, before the start time, that the reminder should appear. +It will be set even if -ReminderOn is omitted

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ShowAs

+

Sets the task to appear as Free, Tenatative, Off-of-facility etc

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Importance

+

Priority setting , high , normal or low.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Sensitivity

+

Privacy setting - normal or Private

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Recurrence

+

Recurrence pattern build with New-recurrencePattern

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If specified the update will be performed without prompting for confirmation (this is the default)

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PassThru

+

for some of things still to do see https://docs.microsoft.com/en-us/graph/api/event-update?view=graph-rest-beta +and https://docs.microsoft.com/en-us/graph/api/user-post-events?view=graph-rest-beta +Attendees is one. +link says this also sends the invite

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ +

Get-GraphEvent

+ +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphGroup/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphGroup/index.html new file mode 100644 index 0000000..ad9f29e --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphGroup/index.html @@ -0,0 +1,945 @@ + + + + + + + + + + + + Set-GraphGroup - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Set-GraphGroup
  • +
  • + +
  • +
+ +
+
+
+
+ +

Set-GraphGroup

+

SYNOPSIS

+

Sets options on a group

+

SYNTAX

+
Set-GraphGroup [-Group] <Object> [-DisplayName <Object>] [-AllowExternalSenders] [-Description <String>]
+ [-EnableTeam] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

Allows or blocks external senders, changes visibility or description and enables the group as a team. +Other options for a team are set via Set-GraphTeam. +Requires consent to use the Group.ReadWrite.All scope.

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphGroupList -Name consult* | Set-GraphGroup -Description "People who do consulting work" -Force
+Finds the group(s) with a name which matches Consult* and sets the description without a confirmation prompt.
+
+ +

PARAMETERS

+

-Group

+

{{ Fill Group Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-DisplayName

+

If specified, updates the group's displayName

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllowExternalSenders

+

If specified, the group can receive external email; the option can be disabled with -AllowExternalSenders:$false.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Description

+

A new description for the group

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-EnableTeam

+

Enables team functionality on a group which does not yet have it enabled

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If specified the group will be updated without prompting for confirmation.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphHomeDrive/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphHomeDrive/index.html new file mode 100644 index 0000000..c82c467 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphHomeDrive/index.html @@ -0,0 +1,846 @@ + + + + + + + + + + + + Set-GraphHomeDrive - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Set-GraphHomeDrive
  • +
  • + +
  • +
+ +
+
+
+
+ +

Set-GraphHomeDrive

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Set-GraphHomeDrive [-Drive] <MicrosoftGraphDrive> [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Drive

+

{{ Fill Drive Description }}

+
Type: MicrosoftGraphDrive
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 0
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphDrive

+

OUTPUTS

+

System.Object

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphListItem/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphListItem/index.html new file mode 100644 index 0000000..888a31c --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphListItem/index.html @@ -0,0 +1,932 @@ + + + + + + + + + + + + Set-GraphListItem - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Set-GraphListItem
  • +
  • + +
  • +
+ +
+
+
+
+ +

Set-GraphListItem

+

SYNOPSIS

+

Updates an item in a SharePoint List

+

SYNTAX

+
Set-GraphListItem [-Item] <Object> [-Fields] <Hashtable> [-List <Object>] [-Site <Object>] [-Force] [-WhatIf]
+ [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

This Patches an existing item at https://graph.microsoft.com/v1.0/sites/{id}/lists{id}/items{id}/Fields +which requires consent to use the Sites.ReadWrite.All scope +Caveats in Add-GraphListItem apply to Set-GraphListItem.

+

EXAMPLES

+

EXAMPLE 1

+
>$problemitems = get-graphlist $problemslist -Items -Property title,issuestatus,AssignedToLookupID,priority
+>$problemitems[2] | Set-GraphListItem -Fields @{Priority='(2) Normal'}
+
+ +

The first line gets the items from a list , and the second updates the Priority field of the third one

+

PARAMETERS

+

-Item

+

The item to update; this can be an ID or an object with an ID, and a list and site ID as well

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Fields

+

The item property values in a hash table as @{col1=$value1; col2='Value2'; col3=33}

+
Type: Hashtable
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-List

+

If the item does not contain the list, the list to delete from an ID, or list object with an ID, and a site ID

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Site

+

If there is no site id in the item or list parameter allows the site to specified as an ID or object

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If specified the item will be updated without prompting for confirmation

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ +

Add-GraphListItem

+ +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphOneNoteHome/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphOneNoteHome/index.html new file mode 100644 index 0000000..b668c7a --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphOneNoteHome/index.html @@ -0,0 +1,843 @@ + + + + + + + + + + + + Set-GraphOneNoteHome - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Set-GraphOneNoteHome
  • +
  • + +
  • +
+ +
+
+
+
+ +

Set-GraphOneNoteHome

+

SYNOPSIS

+

Sets a default notebook (and optionally section). +Set to $Null to clear the setting

+

SYNTAX

+
Set-GraphOneNoteHome [-Notebook] <Object> [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphGroup 'Consultants' -Notebooks | Get-GraphOneNoteBook -SectionName general*  | Set-GraphOneNoteHome -Verbose
+The first command in the pipeline gets the notebook for the consultants group ,
+the second finds the section in the notebook with an display name beginning "general"
+and the third sets the default section for Add-FileToGraphOneNote, Add-GraphOneNotePage,
+Get-GraphOneNotePage, and Out-GraphOneNote to the this section, and sets the
+default Notebook for All the GraphOneNoteBook and all the GraphOneNoteSection commands
+to the consultants group's notebook.
+
+ +

PARAMETERS

+

-Notebook

+

A note book or notebook section to set as the default location for oneNoteCommands. +Passing Null will clear the default.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphOptions/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphOptions/index.html new file mode 100644 index 0000000..07b43ee --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphOptions/index.html @@ -0,0 +1,931 @@ + + + + + + + + + + + + Set-GraphOptions - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Set-GraphOptions
  • +
  • + +
  • +
+ +
+
+
+
+ +

Set-GraphOptions

+

SYNOPSIS

+

Sets defaults and the tenant client ID & Client Secret used when logging on without a web dialog

+

SYNTAX

+
Set-GraphOptions [[-TenantID] <Object>] [[-ClientID] <Object>] [[-ClientSecret] <Object>]
+ [[-DefaultScopes] <Object>] [[-RefreshToken] <Object>] [[-DefaultUserProperties] <String[]>]
+ [[-DefaultUsageLocation] <String>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-TenantID

+

Your Tennant ID

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ClientID

+

Client ID if not using the SDK default of 14d82eec-204b-4c2f-b7e8-296a70dab67e. +Must be known to your tennant

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 2
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ClientSecret

+

Secret set for the client ID in your $TenantID

+
Type: Object
+Parameter Sets: (All)
+Aliases: Client_Secret,
+
+Required: False
+Position: 3
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DefaultScopes

+

Default Scopes to request

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 4
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-RefreshToken

+

Allows a saved Refresh Token (e.g. +from Show-GraphSession) to be added to the session.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 5
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DefaultUserProperties

+

Changes the dafault properties returned by Get-GraphUser and Get-GraphUserList

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 6
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DefaultUsageLocation

+

Changes the default two letter (ISO 3166) country code - for new users so they can be assigned licenses. +Examples include: 'US', 'JP', and 'GB'

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 7
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphPlanDetails/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphPlanDetails/index.html new file mode 100644 index 0000000..3aee3f3 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphPlanDetails/index.html @@ -0,0 +1,974 @@ + + + + + + + + + + + + Set-GraphPlanDetails - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Set-GraphPlanDetails
  • +
  • + +
  • +
+ +
+
+
+
+ +

Set-GraphPlanDetails

+

SYNOPSIS

+

Sets the category labels on a Plan

+

SYNTAX

+
Set-GraphPlanDetails [-Plan] <Object> [-Category1 <String>] [-Category2 <String>] [-Category3 <String>]
+ [-Category4 <String>] [-Category5 <String>] [-Category6 <String>] [-Force] [-WhatIf] [-Confirm]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Plan

+

The ID of the Plan or a Plan object with an ID property.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Category1

+

Label for category 1

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Category2

+

Label for category 2

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Category3

+

Label for category 3

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Category4

+

Label for category 4

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Category5

+

Label for category 5

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Category6

+

Label for category 6

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If specified the plan will updated without confirmation

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphPlanTask/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphPlanTask/index.html new file mode 100644 index 0000000..8270780 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphPlanTask/index.html @@ -0,0 +1,1083 @@ + + + + + + + + + + + + Set-GraphPlanTask - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Set-GraphPlanTask
  • +
  • + +
  • +
+ +
+
+
+
+ +

Set-GraphPlanTask

+

SYNOPSIS

+

Update an a existing task in a planner plan

+

SYNTAX

+
Set-GraphPlanTask [-Task] <Object> [-Title <Object>] [-Description <String>] [-AssignTo <Object>]
+ [-Bucket <Object>] [-StartDate <DateTime>] [-DueDate <DateTime>] [-PercentComplete <Int32>]
+ [-CategoryNumbers <Int32[]>] [-ClearList] [-Checklist <Object>] [-ClearLinks] [-Links <Object>] [-Force]
+ [-Passthru] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Task

+

The Task to update, either an ID or a Task object with an ID property.

+
Type: Object
+Parameter Sets: (All)
+Aliases: ID
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Title

+

The new title of for task.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Description

+

Longer description of the task

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-AssignTo

+

User(s) to assign the task to either as a UPN name (bob@contoso.com) or ID. +They must already be part of the team.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Bucket

+

Bucket to place the task in - it must exist already

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-StartDate

+

Start date for the task

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-DueDate

+

Date by when task should be completed

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-PercentComplete

+

Percentage complete (note the planner app doesn't show percentages, only "Not started", "In Progress", and "Complete")

+
Type: Int32
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: 0
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-CategoryNumbers

+

Category tabs by number (1=Magenta, 2=Red, 3=Orange, 4=Green, 5=Teal, 6=Cyan) + [ValidateRange(1,6)] #doesn't work if piped and values are null.

+
Type: Int32[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-ClearList

+

If specified, any existing check-list will be removed

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Checklist

+

A single item, A string with items seperated with ";" or an array of items to display as a list with check boxes on the task.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ + +

If specified, any existing links will be removed

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ + +

HyperLinks (a.k.a. +references): a single item, a string with items seperated with ';' an array of strings or as a hash table of URI=Label.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-Force

+

Specified no confirmation will occur

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Passthru

+

If Specified returns the modified task.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: PT
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphTeam/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphTeam/index.html new file mode 100644 index 0000000..22f308e --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphTeam/index.html @@ -0,0 +1,1113 @@ + + + + + + + + + + + + Set-GraphTeam - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Set-GraphTeam
  • +
  • + +
  • +
+ +
+
+
+
+ +

Set-GraphTeam

+

SYNOPSIS

+

Updates the settings for a team

+

SYNTAX

+
Set-GraphTeam [[-Team] <Object>] [-AllowMemberAddRemoveApps] [-AllowMemberCreateUpdateRemoveConnectors]
+ [-AllowMemberCreateUpdateRemoveTabs] [-AllowMemberCreateUpdateChannels] [-AllowMemberDeleteChannels]
+ [-AllowGuestCreateUpdateChannels] [-AllowGuestDeleteChannels] [-AllowUserEditMessages]
+ [-AllowUserDeleteMessages] [-AllowOwnerDeleteMessages] [-AllowTeamMentions] [-AllowChannelMentions]
+ [-AllowGiphy] [-GiphyContentRating <String>] [-AllowStickersAndMemes] [-AllowCustomMemes] [-WhatIf] [-Confirm]
+ [<CommonParameters>]
+
+ +

DESCRIPTION

+

Requires consent to use the Group.ReadWrite.All scope

+

EXAMPLES

+

EXAMPLE 1

+
Get-GraphTeam accounts* | Set-GraphTeam -AllowGiphy:$false
+Gets a the team(s) with a name that begins with accounts, and turns off Giphy content
+Note the use of -SwitchName:$false.
+
+ +

PARAMETERS

+

-Team

+

The team to update either as an ID or a team object with and ID.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-AllowMemberAddRemoveApps

+

Allow members to add or remove apps

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllowMemberCreateUpdateRemoveConnectors

+

Allow members to create update or remove connectors

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllowMemberCreateUpdateRemoveTabs

+

Allow members to create update or remove Tabs

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllowMemberCreateUpdateChannels

+

Allow members to create or update Channels

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllowMemberDeleteChannels

+

Allow members to delete Channels

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllowGuestCreateUpdateChannels

+

Allow guests to create or update Channels

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllowGuestDeleteChannels

+

Allow guests to delete Channels

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllowUserEditMessages

+

Allow members to edit their own messages

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllowUserDeleteMessages

+

Allow members to delete their own messages

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllowOwnerDeleteMessages

+

Allow owners to delete mssages

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllowTeamMentions

+

Allow mentions of teams in messages

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllowChannelMentions

+

Allow mentions of channels in messages

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllowGiphy

+

Allow giphy graphics

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-GiphyContentRating

+

Rating for giphy graphics; either moderate or strict

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllowStickersAndMemes

+

Allow stickers and memes

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AllowCustomMemes

+

Allow Custom memes

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphUser/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphUser/index.html new file mode 100644 index 0000000..72781af --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Set-GraphUser/index.html @@ -0,0 +1,1401 @@ + + + + + + + + + + + + Set-GraphUser - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Set-GraphUser
  • +
  • + +
  • +
+ +
+
+
+
+ +

Set-GraphUser

+

SYNOPSIS

+

Sets properties of a user (the current user by default)

+

SYNTAX

+
Set-GraphUser [[-UserID] <Object>] [-AboutMe <String>] [-Mail <String>] [-OtherMails <String[]>]
+ [-MobilePhone <String>] [-BusinessPhones <String[]>] [-MySite <String>] [-UsageLocation <String>]
+ [-DisplayName <String>] [-GivenName <String>] [-Surname <String>] [-JobTitle <String>] [-Department <String>]
+ [-OfficeLocation <String>] [-CompanyName <Object>] [-Manager <String>] [-EmployeeID <String>]
+ [-EmployeeType <String>] [-EmployeeHireDate <DateTime>] [-ExternalUserState <Object>]
+ [-StreetAddress <Object>] [-City <Object>] [-State <Object>] [-Country <Object>] [-PostalCode <Object>]
+ [-Birthday <DateTime>] [-Interests <String[]>] [-PastProjects <String[]>] [-Photo <String>]
+ [-Responsibilities <String[]>] [-Schools <String[]>] [-Skills <String[]>] [-AccountDisabled] [-PassThru]
+ [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

Needs consent to use the User.ReadWrite, User.ReadWrite.All, Directory.ReadWrite.All, +or Directory.AccessAsUser.All scope.

+

EXAMPLES

+

EXAMPLE 1

+
Set-GraphUser -Birthday "31 march 1965"  -Aboutme "Lots to say" -PastProjects "Phoenix","Excalibur" -interests "Photography","F1" -Skills "PowerShell","Active Directory","Networking","Clustering","Excel","SQL","Devops","Server builds","Windows Server","Office 365" -Responsibilities "Design","Implementation","Audit"
+Sets the current user, giving lists for projects, interests and skills
+
+ +

PARAMETERS

+

-UserID

+

ID for the user if not the current user

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 1
+Default value: Me
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-AboutMe

+

A freeform text entry field for the user to describe themselves.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Mail

+

The SMTP address for the user, for example, 'Alex@contoso.onmicrosoft.com'

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-OtherMails

+

A list of additional email addresses for the user; for example: ['bob@contoso.com', 'Robert@fabrikam.com'].

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-MobilePhone

+

User's mobile phone number

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-BusinessPhones

+

The telephone numbers for the user. +NOTE: Although this is a string collection, only one number can be set for this property

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-MySite

+

Url for user's personal site.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-UsageLocation

+

A two letter country code (ISO standard 3166). +Required for users that will be assigned licenses due to legal requirement to check for availability of services in countries. +Examples include: 'US', 'JP', and 'GB'

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DisplayName

+

The name displayed in the address book for the user. +This is usually the combination of the user''s first name, middle initial and last name. +This property is required when a user is created and it cannot be cleared during updates.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-GivenName

+

The given name (first name) of the user.

+
Type: String
+Parameter Sets: (All)
+Aliases: FirstName
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Surname

+

User's last / family name

+
Type: String
+Parameter Sets: (All)
+Aliases: LastName
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-JobTitle

+

The user's job title

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Department

+

The name for the department in which the user works.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-OfficeLocation

+

The office location in the user's place of business.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-CompanyName

+

The company name which the user is associated. +This property can be useful for describing the company that an external user comes from. +The maximum length of the company name is 64 chararcters.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Manager

+

ID or UserPrincipalName of the user's manager

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-EmployeeID

+

The employee identifier assigned to the user by the organization

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-EmployeeType

+

Captures enterprise worker type: Employee, Contractor, Consultant, Vendor, etc.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-EmployeeHireDate

+

The date and time when the user was hired or will start work in case of a future hire

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ExternalUserState

+

For an external user invited to the tenant using the invitation API, this property represents the invited user's invitation status. +For invited users, the state can be PendingAcceptance or Accepted, or null for all other users.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-StreetAddress

+

The street address of the user's place of business.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-City

+

The city in which the user is located.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-State

+

The state, province or county in the user's address.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Country

+

The country/region in which the user is located; for example, 'US' or 'UK'

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PostalCode

+

The postal code for the user's postal address, specific to the user's country/region. +In the United States of America, this attribute contains the ZIP code.

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Birthday

+

User's birthday as a date. +If passing a string it can be "March 31 1965", "31 March 1965", "1965/03/31" or "3/31/1965" - this layout will always be read as US format.

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Interests

+

List of user's interests

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PastProjects

+

List of user's past projects

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Photo

+

Path to a .jpg file holding the users photos

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Responsibilities

+

List of user's responsibilities

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Schools

+

List of user's Schools

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Skills

+

List of user's skills

+
Type: String[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AccountDisabled

+

Set to disable the user account, to re-enable an account use $AccountDisabled:$false

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PassThru

+

If specified the modified user will be returned

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

Supresses any confirmation prompt

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

Microsoft.Graph.PowerShell.Models.MicrosoftGraphUser

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Show-GraphFolder/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Show-GraphFolder/index.html new file mode 100644 index 0000000..633dcad --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Show-GraphFolder/index.html @@ -0,0 +1,888 @@ + + + + + + + + + + + + Show-GraphFolder - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Show-GraphFolder
  • +
  • + +
  • +
+ +
+
+
+
+ +

Show-GraphFolder

+

SYNOPSIS

+

Opens a OneDrive folder in a browser

+

SYNTAX

+

FolderName (Default)

+
Show-GraphFolder [-Path] <String> [-Drive <Object>] [<CommonParameters>]
+
+ +

FolderID

+
Show-GraphFolder -FolderID <String> [-Drive <Object>] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

EXAMPLE 1

+
Show-GraphFolder -Path 'root:/Documents'
+Opens the documents folder from the current user's drive in the default browser
+Note that root:/documents is how tab completion will render the path, but
+/documents is equally valid
+
+ +

EXAMPLE 2

+
>$drive = Get-GraphTeam -ByName Consultants -Drive
+>Show-GraphFolder -Path 'root:/Documents' -drive $drive
+Finds the drive for the consultants team, and opens its
+documents folder in the default browser
+
+ +

PARAMETERS

+

-Path

+

If Specified gets the folder by folder ID

+
Type: String
+Parameter Sets: FolderName
+Aliases: FolderPath
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-FolderID

+

If Specified gets the folder by folder ID

+
Type: String
+Parameter Sets: FolderID
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Drive

+

The Drive containing the path .

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: Me/Drive
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Show-GraphSession/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Show-GraphSession/index.html new file mode 100644 index 0000000..083921e --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Show-GraphSession/index.html @@ -0,0 +1,930 @@ + + + + + + + + + + + + Show-GraphSession - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Show-GraphSession
  • +
  • + +
  • +
+ +
+
+
+
+ +

Show-GraphSession

+

SYNOPSIS

+

Returns information about the current sesssion

+

SYNTAX

+

None (Default)

+
Show-GraphSession [-Force] [<CommonParameters>]
+
+ +

Who

+
Show-GraphSession [-Who] [-Force] [<CommonParameters>]
+
+ +

Scopes

+
Show-GraphSession [-Scopes] [-Force] [<CommonParameters>]
+
+ +

Options

+
Show-GraphSession [-Options] [-Force] [<CommonParameters>]
+
+ +

AppName

+
Show-GraphSession [-AppName] [-Force] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Who

+

If specified returns only the current account

+
Type: SwitchParameter
+Parameter Sets: Who
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Scopes

+

If specified returns only the scopes available to the current session

+
Type: SwitchParameter
+Parameter Sets: Scopes
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Options

+

If specified returns the options set using Set-GraphOption

+
Type: SwitchParameter
+Parameter Sets: Options
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-AppName

+

If specified returns the current app name.

+
Type: SwitchParameter
+Parameter Sets: AppName
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If specified runs Test-GraphSession to ensure a session exists.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

System.String

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Test-GraphSession/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Test-GraphSession/index.html new file mode 100644 index 0000000..a356a63 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Test-GraphSession/index.html @@ -0,0 +1,832 @@ + + + + + + + + + + + + Test-GraphSession - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Test-GraphSession
  • +
  • + +
  • +
+ +
+
+
+
+ +

Test-GraphSession

+

SYNOPSIS

+

Connect if necessary, catch tokens needing renewal.

+

SYNTAX

+
Test-GraphSession [-Quiet]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Quiet

+

{{ Fill Quiet Description }}

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

INPUTS

+

OUTPUTS

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Update-GraphOneNotePage/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Update-GraphOneNotePage/index.html new file mode 100644 index 0000000..27e37f8 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Update-GraphOneNotePage/index.html @@ -0,0 +1,951 @@ + + + + + + + + + + + + Update-GraphOneNotePage - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Update-GraphOneNotePage
  • +
  • + +
  • +
+ +
+
+
+
+ +

Update-GraphOneNotePage

+

SYNOPSIS

+

Update a OneNote page

+

SYNTAX

+
Update-GraphOneNotePage [-Page] <Object> [[-Action] <String>] [-Content] <String> [[-Position] <String>]
+ [[-Target] <String>] [-Force] [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

This command makes PATCH requests to https://graph.microsoft.com/v1.0 + /users/{id}/onenote/sections/{id}/pages/{id}/content +or /groups/{id}/onenote/sections/{id}/pages/{id}/content +or /sites/{id}/onenote/sections/{id}/pages/{id}/content +which requires consent to use the Notes.ReadWrite scope or better. +To understand the use of Target, action & Postion and what needs to +be in content for different scenarios, read the MSFT page at the link ...

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-Page

+

A graph URI pointing to the page, or a page object where the .self property is a graph URI...

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 1
+Default value: None
+Accept pipeline input: True (ByValue)
+Accept wildcard characters: False
+
+ +

-Action

+

The action to perform on the target element.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 2
+Default value: Append
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Content

+

A string of well-formed HTML to add to the page, and any image or file binary data.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: 3
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Position

+

The location to add the supplied content, relative to the target element.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 4
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Target

+

The element to update. +Must be the #\<data-id> or the generated \<id> of the element, or the body or title keyword.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 5
+Default value: Body
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

If specified, the page is updated without prompting.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: False
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

OUTPUTS

+

NOTES

+ +

https://docs.microsoft.com/en-gb/graph/onenote-update-page

+ +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Update-GraphToDoTask/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Update-GraphToDoTask/index.html new file mode 100644 index 0000000..8c17a19 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Update-GraphToDoTask/index.html @@ -0,0 +1,1081 @@ + + + + + + + + + + + + Update-GraphToDoTask - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Update-GraphToDoTask
  • +
  • + +
  • +
+ +
+
+
+
+ +

Update-GraphToDoTask

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Update-GraphToDoTask -Task <Object> [-ToDoList <Object>] [-UserId <String>] [[-Title] <String>]
+ [-BodyText <String>] [-BodyType <String>] [-Importance <String>] [-DueDateTime <DateTime>] [-Status <String>]
+ [-CompletedDateTime <DateTime>] [-ReminderDateTime <DateTime>] [-ReminderOff] [-Recurrence <Object>] [-Force]
+ [-WhatIf] [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-BodyText

+

{{ Fill BodyText Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-BodyType

+

{{ Fill BodyType Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+Accepted values: text, html
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-CompletedDateTime

+

{{ Fill CompletedDateTime Description }}

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DueDateTime

+

{{ Fill DueDateTime Description }}

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Force

+

{{ Fill Force Description }}

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Importance

+

{{ Fill Importance Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+Accepted values: low, normal, high
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Recurrence

+

{{ Fill Recurrence Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ReminderDateTime

+

{{ Fill ReminderDateTime Description }}

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ReminderOff

+

{{ Fill ReminderOff Description }}

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Status

+

{{ Fill Status Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+Accepted values: notStarted, inProgress, completed, waitingOnOthers, deferred
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Task

+

{{ Fill Task Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases: ID
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName, ByValue)
+Accept wildcard characters: False
+
+ +

-Title

+

{{ Fill Title Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: 0
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ToDoList

+

{{ Fill ToDoList Description }}

+
Type: Object
+Parameter Sets: (All)
+Aliases: TodoTaskListId, ListID
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-UserId

+

{{ Fill UserId Description }}

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: True (ByPropertyName)
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

System.Object

+

System.String

+

OUTPUTS

+

System.Object

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + Next » + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/Update-MgUserTodoListTask_UpdateExpanded1/index.html b/Microsoft.Graph.PlusPlus.Docs/site/Update-MgUserTodoListTask_UpdateExpanded1/index.html new file mode 100644 index 0000000..be7ee48 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/Update-MgUserTodoListTask_UpdateExpanded1/index.html @@ -0,0 +1,1270 @@ + + + + + + + + + + + + Update-MgUserTodoListTask_UpdateExpanded1 - Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Update-MgUserTodoListTask_UpdateExpanded1
  • +
  • + +
  • +
+ +
+
+
+
+ +

Update-MgUserTodoListTask_UpdateExpanded1

+

SYNOPSIS

+

{{ Fill in the Synopsis }}

+

SYNTAX

+
Update-MgUserTodoListTask_UpdateExpanded1 [-AdditionalProperties <Hashtable>] [-Body <IMicrosoftGraphItemBody>]
+ [-BodyLastModifiedDateTime <DateTime>] [-Break] [-CompletedDateTime <IMicrosoftGraphDateTimeZone>]
+ [-CreatedDateTime <DateTime>] [-DueDateTime <IMicrosoftGraphDateTimeZone>]
+ [-Extensions <IMicrosoftGraphExtension[]>] [-HttpPipelineAppend <SendAsyncStep[]>]
+ [-HttpPipelinePrepend <SendAsyncStep[]>] [-Id <String>] [-Importance <String>] [-IsReminderOn]
+ [-LastModifiedDateTime <DateTime>] [-LinkedResources <IMicrosoftGraphLinkedResource[]>] [-PassThru]
+ [-Proxy <Uri>] [-ProxyCredential <PSCredential>] [-ProxyUseDefaultCredentials]
+ [-Recurrence <IMicrosoftGraphPatternedRecurrence>] [-ReminderDateTime <IMicrosoftGraphDateTimeZone>]
+ [-Status <String>] [-Title <String>] -TodoTaskId <String> -TodoTaskListId <String> -UserId <String> [-WhatIf]
+ [-Confirm] [<CommonParameters>]
+
+ +

DESCRIPTION

+

{{ Fill in the Description }}

+

EXAMPLES

+

Example 1

+
PS C:\> {{ Add example code here }}
+
+ +

{{ Add example description here }}

+

PARAMETERS

+

-AdditionalProperties

+

Additional Parameters

+
Type: Hashtable
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Body

+

itemBody

+
Type: IMicrosoftGraphItemBody
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-BodyLastModifiedDateTime

+

The date and time when the task was last modified. +By default, it is in UTC. +You can provide a custom time zone in the request header. +The property value uses ISO 8601 format and is always in UTC time. +For example, midnight UTC on Jan 1, 2020 would look like this: '2020-01-01T00:00:00Z'.

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Break

+

Wait for .NET debugger to attach

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-CompletedDateTime

+

dateTimeTimeZone

+
Type: IMicrosoftGraphDateTimeZone
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Confirm

+

Prompts you for confirmation before running the cmdlet.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: cf
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-CreatedDateTime

+

The date and time when the task was created. +By default, it is in UTC. +You can provide a custom time zone in the request header. +The property value uses ISO 8601 format. +For example, midnight UTC on Jan 1, 2020 would look like this: '2020-01-01T00:00:00Z'.

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-DueDateTime

+

dateTimeTimeZone

+
Type: IMicrosoftGraphDateTimeZone
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Extensions

+

The collection of open extensions defined for the task. +Nullable.

+
Type: IMicrosoftGraphExtension[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelineAppend

+

SendAsync Pipeline Steps to be appended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-HttpPipelinePrepend

+

SendAsync Pipeline Steps to be prepended to the front of the pipeline

+
Type: SendAsyncStep[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Id

+

Read-only.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Importance

+

importance

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-IsReminderOn

+

Set to true if an alert is set to remind the user of the task.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-LastModifiedDateTime

+

The date and time when the task was last modified. +By default, it is in UTC. +You can provide a custom time zone in the request header. +The property value uses ISO 8601 format and is always in UTC time. +For example, midnight UTC on Jan 1, 2020 would look like this: '2020-01-01T00:00:00Z'.

+
Type: DateTime
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-LinkedResources

+

A collection of resources linked to the task.

+
Type: IMicrosoftGraphLinkedResource[]
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-PassThru

+

Returns true when the command succeeds

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Proxy

+

The URI for the proxy server to use

+
Type: Uri
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyCredential

+

Credentials for a proxy server to use for the remote call

+
Type: PSCredential
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ProxyUseDefaultCredentials

+

Use the default credentials for the proxy

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Recurrence

+

patternedRecurrence

+
Type: IMicrosoftGraphPatternedRecurrence
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-ReminderDateTime

+

dateTimeTimeZone

+
Type: IMicrosoftGraphDateTimeZone
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Status

+

taskStatus

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-Title

+

A brief description of the task.

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-TodoTaskId

+

key: id of todoTask

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-TodoTaskListId

+

key: id of todoTaskList

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-UserId

+

key: id of user

+
Type: String
+Parameter Sets: (All)
+Aliases:
+
+Required: True
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

-WhatIf

+

Shows what would happen if the cmdlet runs. +The cmdlet is not run.

+
Type: SwitchParameter
+Parameter Sets: (All)
+Aliases: wi
+
+Required: False
+Position: Named
+Default value: None
+Accept pipeline input: False
+Accept wildcard characters: False
+
+ +

CommonParameters

+

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.

+

INPUTS

+

None

+

OUTPUTS

+

System.Boolean

+

NOTES

+ + +
+
+ + +
+
+ +
+ +
+ +
+ + + + « Previous + + + +
+ + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/css/theme.css b/Microsoft.Graph.PlusPlus.Docs/site/css/theme.css new file mode 100644 index 0000000..bb00f2f --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/css/theme.css @@ -0,0 +1,14 @@ +/* + * This file is copied from the upstream ReadTheDocs Sphinx + * theme. To aid upgradability this file should *not* be edited. + * modifications we need should be included in theme_extra.css. + * + * https://github.com/rtfd/sphinx_rtd_theme + */ + + /* sphinx_rtd_theme version 0.4.1 | MIT license */ + /* Built 20180727 10:07 */ + *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio,canvas,video{display:inline-block;*display:inline;*zoom:1}audio:not([controls]){display:none}[hidden]{display:none}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:100%;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}a:hover,a:active{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}blockquote{margin:0}dfn{font-style:italic}ins{background:#ff9;color:#000;text-decoration:none}mark{background:#ff0;color:#000;font-style:italic;font-weight:bold}pre,code,.rst-content tt,.rst-content code,kbd,samp{font-family:monospace,serif;_font-family:"courier new",monospace;font-size:1em}pre{white-space:pre}q{quotes:none}q:before,q:after{content:"";content:none}small{font-size:85%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}ul,ol,dl{margin:0;padding:0;list-style:none;list-style-image:none}li{list-style:none}dd{margin:0}img{border:0;-ms-interpolation-mode:bicubic;vertical-align:middle;max-width:100%}svg:not(:root){overflow:hidden}figure{margin:0}form{margin:0}fieldset{border:0;margin:0;padding:0}label{cursor:pointer}legend{border:0;*margin-left:-7px;padding:0;white-space:normal}button,input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}button,input{line-height:normal}button,input[type="button"],input[type="reset"],input[type="submit"]{cursor:pointer;-webkit-appearance:button;*overflow:visible}button[disabled],input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;*width:13px;*height:13px}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-decoration,input[type="search"]::-webkit-search-cancel-button{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top;resize:vertical}table{border-collapse:collapse;border-spacing:0}td{vertical-align:top}.chromeframe{margin:.2em 0;background:#ccc;color:#000;padding:.2em 0}.ir{display:block;border:0;text-indent:-999em;overflow:hidden;background-color:transparent;background-repeat:no-repeat;text-align:left;direction:ltr;*line-height:0}.ir br{display:none}.hidden{display:none !important;visibility:hidden}.visuallyhidden{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.visuallyhidden.focusable:active,.visuallyhidden.focusable:focus{clip:auto;height:auto;margin:0;overflow:visible;position:static;width:auto}.invisible{visibility:hidden}.relative{position:relative}big,small{font-size:100%}@media print{html,body,section{background:none !important}*{box-shadow:none !important;text-shadow:none !important;filter:none !important;-ms-filter:none !important}a,a:visited{text-decoration:underline}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}@page{margin:.5cm}p,h2,.rst-content .toctree-wrapper p.caption,h3{orphans:3;widows:3}h2,.rst-content .toctree-wrapper p.caption,h3{page-break-after:avoid}}.fa:before,.wy-menu-vertical li span.toctree-expand:before,.wy-menu-vertical li.on a span.toctree-expand:before,.wy-menu-vertical li.current>a span.toctree-expand:before,.rst-content .admonition-title:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content dl dt .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content table>caption .headerlink:before,.rst-content tt.download span:first-child:before,.rst-content code.download span:first-child:before,.icon:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.wy-alert,.rst-content .note,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .warning,.rst-content .seealso,.rst-content .admonition-todo,.rst-content .admonition,.btn,input[type="text"],input[type="password"],input[type="email"],input[type="url"],input[type="date"],input[type="month"],input[type="time"],input[type="datetime"],input[type="datetime-local"],input[type="week"],input[type="number"],input[type="search"],input[type="tel"],input[type="color"],select,textarea,.wy-menu-vertical li.on a,.wy-menu-vertical li.current>a,.wy-side-nav-search>a,.wy-side-nav-search .wy-dropdown>a,.wy-nav-top a{-webkit-font-smoothing:antialiased}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:""}.clearfix:after{clear:both}/*! + * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome + * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) + */@font-face{font-family:'FontAwesome';src:url("../fonts/fontawesome-webfont.eot?v=4.7.0");src:url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"),url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"),url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"),url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"),url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");font-weight:normal;font-style:normal}.fa,.wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.current>a span.toctree-expand,.rst-content .admonition-title,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink,.rst-content p.caption .headerlink,.rst-content table>caption .headerlink,.rst-content tt.download span:first-child,.rst-content code.download span:first-child,.icon{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.3333333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.2857142857em;text-align:center}.fa-ul{padding-left:0;margin-left:2.1428571429em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.1428571429em;width:2.1428571429em;top:.1428571429em;text-align:center}.fa-li.fa-lg{left:-1.8571428571em}.fa-border{padding:.2em .25em .15em;border:solid 0.08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left,.wy-menu-vertical li span.fa-pull-left.toctree-expand,.wy-menu-vertical li.on a span.fa-pull-left.toctree-expand,.wy-menu-vertical li.current>a span.fa-pull-left.toctree-expand,.rst-content .fa-pull-left.admonition-title,.rst-content h1 .fa-pull-left.headerlink,.rst-content h2 .fa-pull-left.headerlink,.rst-content h3 .fa-pull-left.headerlink,.rst-content h4 .fa-pull-left.headerlink,.rst-content h5 .fa-pull-left.headerlink,.rst-content h6 .fa-pull-left.headerlink,.rst-content dl dt .fa-pull-left.headerlink,.rst-content p.caption .fa-pull-left.headerlink,.rst-content table>caption .fa-pull-left.headerlink,.rst-content tt.download span.fa-pull-left:first-child,.rst-content code.download span.fa-pull-left:first-child,.fa-pull-left.icon{margin-right:.3em}.fa.fa-pull-right,.wy-menu-vertical li span.fa-pull-right.toctree-expand,.wy-menu-vertical li.on a span.fa-pull-right.toctree-expand,.wy-menu-vertical li.current>a span.fa-pull-right.toctree-expand,.rst-content .fa-pull-right.admonition-title,.rst-content h1 .fa-pull-right.headerlink,.rst-content h2 .fa-pull-right.headerlink,.rst-content h3 .fa-pull-right.headerlink,.rst-content h4 .fa-pull-right.headerlink,.rst-content h5 .fa-pull-right.headerlink,.rst-content h6 .fa-pull-right.headerlink,.rst-content dl dt .fa-pull-right.headerlink,.rst-content p.caption .fa-pull-right.headerlink,.rst-content table>caption .fa-pull-right.headerlink,.rst-content tt.download span.fa-pull-right:first-child,.rst-content code.download span.fa-pull-right:first-child,.fa-pull-right.icon{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left,.wy-menu-vertical li span.pull-left.toctree-expand,.wy-menu-vertical li.on a span.pull-left.toctree-expand,.wy-menu-vertical li.current>a span.pull-left.toctree-expand,.rst-content .pull-left.admonition-title,.rst-content h1 .pull-left.headerlink,.rst-content h2 .pull-left.headerlink,.rst-content h3 .pull-left.headerlink,.rst-content h4 .pull-left.headerlink,.rst-content h5 .pull-left.headerlink,.rst-content h6 .pull-left.headerlink,.rst-content dl dt .pull-left.headerlink,.rst-content p.caption .pull-left.headerlink,.rst-content table>caption .pull-left.headerlink,.rst-content tt.download span.pull-left:first-child,.rst-content code.download span.pull-left:first-child,.pull-left.icon{margin-right:.3em}.fa.pull-right,.wy-menu-vertical li span.pull-right.toctree-expand,.wy-menu-vertical li.on a span.pull-right.toctree-expand,.wy-menu-vertical li.current>a span.pull-right.toctree-expand,.rst-content .pull-right.admonition-title,.rst-content h1 .pull-right.headerlink,.rst-content h2 .pull-right.headerlink,.rst-content h3 .pull-right.headerlink,.rst-content h4 .pull-right.headerlink,.rst-content h5 .pull-right.headerlink,.rst-content h6 .pull-right.headerlink,.rst-content dl dt .pull-right.headerlink,.rst-content p.caption .pull-right.headerlink,.rst-content table>caption .pull-right.headerlink,.rst-content tt.download span.pull-right:first-child,.rst-content code.download span.pull-right:first-child,.pull-right.icon{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:""}.fa-music:before{content:""}.fa-search:before,.icon-search:before{content:""}.fa-envelope-o:before{content:""}.fa-heart:before{content:""}.fa-star:before{content:""}.fa-star-o:before{content:""}.fa-user:before{content:""}.fa-film:before{content:""}.fa-th-large:before{content:""}.fa-th:before{content:""}.fa-th-list:before{content:""}.fa-check:before{content:""}.fa-remove:before,.fa-close:before,.fa-times:before{content:""}.fa-search-plus:before{content:""}.fa-search-minus:before{content:""}.fa-power-off:before{content:""}.fa-signal:before{content:""}.fa-gear:before,.fa-cog:before{content:""}.fa-trash-o:before{content:""}.fa-home:before,.icon-home:before{content:""}.fa-file-o:before{content:""}.fa-clock-o:before{content:""}.fa-road:before{content:""}.fa-download:before,.rst-content tt.download span:first-child:before,.rst-content code.download span:first-child:before{content:""}.fa-arrow-circle-o-down:before{content:""}.fa-arrow-circle-o-up:before{content:""}.fa-inbox:before{content:""}.fa-play-circle-o:before{content:""}.fa-rotate-right:before,.fa-repeat:before{content:""}.fa-refresh:before{content:""}.fa-list-alt:before{content:""}.fa-lock:before{content:""}.fa-flag:before{content:""}.fa-headphones:before{content:""}.fa-volume-off:before{content:""}.fa-volume-down:before{content:""}.fa-volume-up:before{content:""}.fa-qrcode:before{content:""}.fa-barcode:before{content:""}.fa-tag:before{content:""}.fa-tags:before{content:""}.fa-book:before,.icon-book:before{content:""}.fa-bookmark:before{content:""}.fa-print:before{content:""}.fa-camera:before{content:""}.fa-font:before{content:""}.fa-bold:before{content:""}.fa-italic:before{content:""}.fa-text-height:before{content:""}.fa-text-width:before{content:""}.fa-align-left:before{content:""}.fa-align-center:before{content:""}.fa-align-right:before{content:""}.fa-align-justify:before{content:""}.fa-list:before{content:""}.fa-dedent:before,.fa-outdent:before{content:""}.fa-indent:before{content:""}.fa-video-camera:before{content:""}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:""}.fa-pencil:before{content:""}.fa-map-marker:before{content:""}.fa-adjust:before{content:""}.fa-tint:before{content:""}.fa-edit:before,.fa-pencil-square-o:before{content:""}.fa-share-square-o:before{content:""}.fa-check-square-o:before{content:""}.fa-arrows:before{content:""}.fa-step-backward:before{content:""}.fa-fast-backward:before{content:""}.fa-backward:before{content:""}.fa-play:before{content:""}.fa-pause:before{content:""}.fa-stop:before{content:""}.fa-forward:before{content:""}.fa-fast-forward:before{content:""}.fa-step-forward:before{content:""}.fa-eject:before{content:""}.fa-chevron-left:before{content:""}.fa-chevron-right:before{content:""}.fa-plus-circle:before{content:""}.fa-minus-circle:before{content:""}.fa-times-circle:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before{content:""}.fa-check-circle:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before{content:""}.fa-question-circle:before{content:""}.fa-info-circle:before{content:""}.fa-crosshairs:before{content:""}.fa-times-circle-o:before{content:""}.fa-check-circle-o:before{content:""}.fa-ban:before{content:""}.fa-arrow-left:before{content:""}.fa-arrow-right:before{content:""}.fa-arrow-up:before{content:""}.fa-arrow-down:before{content:""}.fa-mail-forward:before,.fa-share:before{content:""}.fa-expand:before{content:""}.fa-compress:before{content:""}.fa-plus:before{content:""}.fa-minus:before{content:""}.fa-asterisk:before{content:""}.fa-exclamation-circle:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before,.rst-content .admonition-title:before{content:""}.fa-gift:before{content:""}.fa-leaf:before{content:""}.fa-fire:before,.icon-fire:before{content:""}.fa-eye:before{content:""}.fa-eye-slash:before{content:""}.fa-warning:before,.fa-exclamation-triangle:before{content:""}.fa-plane:before{content:""}.fa-calendar:before{content:""}.fa-random:before{content:""}.fa-comment:before{content:""}.fa-magnet:before{content:""}.fa-chevron-up:before{content:""}.fa-chevron-down:before{content:""}.fa-retweet:before{content:""}.fa-shopping-cart:before{content:""}.fa-folder:before{content:""}.fa-folder-open:before{content:""}.fa-arrows-v:before{content:""}.fa-arrows-h:before{content:""}.fa-bar-chart-o:before,.fa-bar-chart:before{content:""}.fa-twitter-square:before{content:""}.fa-facebook-square:before{content:""}.fa-camera-retro:before{content:""}.fa-key:before{content:""}.fa-gears:before,.fa-cogs:before{content:""}.fa-comments:before{content:""}.fa-thumbs-o-up:before{content:""}.fa-thumbs-o-down:before{content:""}.fa-star-half:before{content:""}.fa-heart-o:before{content:""}.fa-sign-out:before{content:""}.fa-linkedin-square:before{content:""}.fa-thumb-tack:before{content:""}.fa-external-link:before{content:""}.fa-sign-in:before{content:""}.fa-trophy:before{content:""}.fa-github-square:before{content:""}.fa-upload:before{content:""}.fa-lemon-o:before{content:""}.fa-phone:before{content:""}.fa-square-o:before{content:""}.fa-bookmark-o:before{content:""}.fa-phone-square:before{content:""}.fa-twitter:before{content:""}.fa-facebook-f:before,.fa-facebook:before{content:""}.fa-github:before,.icon-github:before{content:""}.fa-unlock:before{content:""}.fa-credit-card:before{content:""}.fa-feed:before,.fa-rss:before{content:""}.fa-hdd-o:before{content:""}.fa-bullhorn:before{content:""}.fa-bell:before{content:""}.fa-certificate:before{content:""}.fa-hand-o-right:before{content:""}.fa-hand-o-left:before{content:""}.fa-hand-o-up:before{content:""}.fa-hand-o-down:before{content:""}.fa-arrow-circle-left:before,.icon-circle-arrow-left:before{content:""}.fa-arrow-circle-right:before,.icon-circle-arrow-right:before{content:""}.fa-arrow-circle-up:before{content:""}.fa-arrow-circle-down:before{content:""}.fa-globe:before{content:""}.fa-wrench:before{content:""}.fa-tasks:before{content:""}.fa-filter:before{content:""}.fa-briefcase:before{content:""}.fa-arrows-alt:before{content:""}.fa-group:before,.fa-users:before{content:""}.fa-chain:before,.fa-link:before,.icon-link:before{content:""}.fa-cloud:before{content:""}.fa-flask:before{content:""}.fa-cut:before,.fa-scissors:before{content:""}.fa-copy:before,.fa-files-o:before{content:""}.fa-paperclip:before{content:""}.fa-save:before,.fa-floppy-o:before{content:""}.fa-square:before{content:""}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:""}.fa-list-ul:before{content:""}.fa-list-ol:before{content:""}.fa-strikethrough:before{content:""}.fa-underline:before{content:""}.fa-table:before{content:""}.fa-magic:before{content:""}.fa-truck:before{content:""}.fa-pinterest:before{content:""}.fa-pinterest-square:before{content:""}.fa-google-plus-square:before{content:""}.fa-google-plus:before{content:""}.fa-money:before{content:""}.fa-caret-down:before,.wy-dropdown .caret:before,.icon-caret-down:before{content:""}.fa-caret-up:before{content:""}.fa-caret-left:before{content:""}.fa-caret-right:before{content:""}.fa-columns:before{content:""}.fa-unsorted:before,.fa-sort:before{content:""}.fa-sort-down:before,.fa-sort-desc:before{content:""}.fa-sort-up:before,.fa-sort-asc:before{content:""}.fa-envelope:before{content:""}.fa-linkedin:before{content:""}.fa-rotate-left:before,.fa-undo:before{content:""}.fa-legal:before,.fa-gavel:before{content:""}.fa-dashboard:before,.fa-tachometer:before{content:""}.fa-comment-o:before{content:""}.fa-comments-o:before{content:""}.fa-flash:before,.fa-bolt:before{content:""}.fa-sitemap:before{content:""}.fa-umbrella:before{content:""}.fa-paste:before,.fa-clipboard:before{content:""}.fa-lightbulb-o:before{content:""}.fa-exchange:before{content:""}.fa-cloud-download:before{content:""}.fa-cloud-upload:before{content:""}.fa-user-md:before{content:""}.fa-stethoscope:before{content:""}.fa-suitcase:before{content:""}.fa-bell-o:before{content:""}.fa-coffee:before{content:""}.fa-cutlery:before{content:""}.fa-file-text-o:before{content:""}.fa-building-o:before{content:""}.fa-hospital-o:before{content:""}.fa-ambulance:before{content:""}.fa-medkit:before{content:""}.fa-fighter-jet:before{content:""}.fa-beer:before{content:""}.fa-h-square:before{content:""}.fa-plus-square:before{content:""}.fa-angle-double-left:before{content:""}.fa-angle-double-right:before{content:""}.fa-angle-double-up:before{content:""}.fa-angle-double-down:before{content:""}.fa-angle-left:before{content:""}.fa-angle-right:before{content:""}.fa-angle-up:before{content:""}.fa-angle-down:before{content:""}.fa-desktop:before{content:""}.fa-laptop:before{content:""}.fa-tablet:before{content:""}.fa-mobile-phone:before,.fa-mobile:before{content:""}.fa-circle-o:before{content:""}.fa-quote-left:before{content:""}.fa-quote-right:before{content:""}.fa-spinner:before{content:""}.fa-circle:before{content:""}.fa-mail-reply:before,.fa-reply:before{content:""}.fa-github-alt:before{content:""}.fa-folder-o:before{content:""}.fa-folder-open-o:before{content:""}.fa-smile-o:before{content:""}.fa-frown-o:before{content:""}.fa-meh-o:before{content:""}.fa-gamepad:before{content:""}.fa-keyboard-o:before{content:""}.fa-flag-o:before{content:""}.fa-flag-checkered:before{content:""}.fa-terminal:before{content:""}.fa-code:before{content:""}.fa-mail-reply-all:before,.fa-reply-all:before{content:""}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:""}.fa-location-arrow:before{content:""}.fa-crop:before{content:""}.fa-code-fork:before{content:""}.fa-unlink:before,.fa-chain-broken:before{content:""}.fa-question:before{content:""}.fa-info:before{content:""}.fa-exclamation:before{content:""}.fa-superscript:before{content:""}.fa-subscript:before{content:""}.fa-eraser:before{content:""}.fa-puzzle-piece:before{content:""}.fa-microphone:before{content:""}.fa-microphone-slash:before{content:""}.fa-shield:before{content:""}.fa-calendar-o:before{content:""}.fa-fire-extinguisher:before{content:""}.fa-rocket:before{content:""}.fa-maxcdn:before{content:""}.fa-chevron-circle-left:before{content:""}.fa-chevron-circle-right:before{content:""}.fa-chevron-circle-up:before{content:""}.fa-chevron-circle-down:before{content:""}.fa-html5:before{content:""}.fa-css3:before{content:""}.fa-anchor:before{content:""}.fa-unlock-alt:before{content:""}.fa-bullseye:before{content:""}.fa-ellipsis-h:before{content:""}.fa-ellipsis-v:before{content:""}.fa-rss-square:before{content:""}.fa-play-circle:before{content:""}.fa-ticket:before{content:""}.fa-minus-square:before{content:""}.fa-minus-square-o:before,.wy-menu-vertical li.on a span.toctree-expand:before,.wy-menu-vertical li.current>a span.toctree-expand:before{content:""}.fa-level-up:before{content:""}.fa-level-down:before{content:""}.fa-check-square:before{content:""}.fa-pencil-square:before{content:""}.fa-external-link-square:before{content:""}.fa-share-square:before{content:""}.fa-compass:before{content:""}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:""}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:""}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:""}.fa-euro:before,.fa-eur:before{content:""}.fa-gbp:before{content:""}.fa-dollar:before,.fa-usd:before{content:""}.fa-rupee:before,.fa-inr:before{content:""}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:""}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:""}.fa-won:before,.fa-krw:before{content:""}.fa-bitcoin:before,.fa-btc:before{content:""}.fa-file:before{content:""}.fa-file-text:before{content:""}.fa-sort-alpha-asc:before{content:""}.fa-sort-alpha-desc:before{content:""}.fa-sort-amount-asc:before{content:""}.fa-sort-amount-desc:before{content:""}.fa-sort-numeric-asc:before{content:""}.fa-sort-numeric-desc:before{content:""}.fa-thumbs-up:before{content:""}.fa-thumbs-down:before{content:""}.fa-youtube-square:before{content:""}.fa-youtube:before{content:""}.fa-xing:before{content:""}.fa-xing-square:before{content:""}.fa-youtube-play:before{content:""}.fa-dropbox:before{content:""}.fa-stack-overflow:before{content:""}.fa-instagram:before{content:""}.fa-flickr:before{content:""}.fa-adn:before{content:""}.fa-bitbucket:before,.icon-bitbucket:before{content:""}.fa-bitbucket-square:before{content:""}.fa-tumblr:before{content:""}.fa-tumblr-square:before{content:""}.fa-long-arrow-down:before{content:""}.fa-long-arrow-up:before{content:""}.fa-long-arrow-left:before{content:""}.fa-long-arrow-right:before{content:""}.fa-apple:before{content:""}.fa-windows:before{content:""}.fa-android:before{content:""}.fa-linux:before{content:""}.fa-dribbble:before{content:""}.fa-skype:before{content:""}.fa-foursquare:before{content:""}.fa-trello:before{content:""}.fa-female:before{content:""}.fa-male:before{content:""}.fa-gittip:before,.fa-gratipay:before{content:""}.fa-sun-o:before{content:""}.fa-moon-o:before{content:""}.fa-archive:before{content:""}.fa-bug:before{content:""}.fa-vk:before{content:""}.fa-weibo:before{content:""}.fa-renren:before{content:""}.fa-pagelines:before{content:""}.fa-stack-exchange:before{content:""}.fa-arrow-circle-o-right:before{content:""}.fa-arrow-circle-o-left:before{content:""}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:""}.fa-dot-circle-o:before{content:""}.fa-wheelchair:before{content:""}.fa-vimeo-square:before{content:""}.fa-turkish-lira:before,.fa-try:before{content:""}.fa-plus-square-o:before,.wy-menu-vertical li span.toctree-expand:before{content:""}.fa-space-shuttle:before{content:""}.fa-slack:before{content:""}.fa-envelope-square:before{content:""}.fa-wordpress:before{content:""}.fa-openid:before{content:""}.fa-institution:before,.fa-bank:before,.fa-university:before{content:""}.fa-mortar-board:before,.fa-graduation-cap:before{content:""}.fa-yahoo:before{content:""}.fa-google:before{content:""}.fa-reddit:before{content:""}.fa-reddit-square:before{content:""}.fa-stumbleupon-circle:before{content:""}.fa-stumbleupon:before{content:""}.fa-delicious:before{content:""}.fa-digg:before{content:""}.fa-pied-piper-pp:before{content:""}.fa-pied-piper-alt:before{content:""}.fa-drupal:before{content:""}.fa-joomla:before{content:""}.fa-language:before{content:""}.fa-fax:before{content:""}.fa-building:before{content:""}.fa-child:before{content:""}.fa-paw:before{content:""}.fa-spoon:before{content:""}.fa-cube:before{content:""}.fa-cubes:before{content:""}.fa-behance:before{content:""}.fa-behance-square:before{content:""}.fa-steam:before{content:""}.fa-steam-square:before{content:""}.fa-recycle:before{content:""}.fa-automobile:before,.fa-car:before{content:""}.fa-cab:before,.fa-taxi:before{content:""}.fa-tree:before{content:""}.fa-spotify:before{content:""}.fa-deviantart:before{content:""}.fa-soundcloud:before{content:""}.fa-database:before{content:""}.fa-file-pdf-o:before{content:""}.fa-file-word-o:before{content:""}.fa-file-excel-o:before{content:""}.fa-file-powerpoint-o:before{content:""}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:""}.fa-file-zip-o:before,.fa-file-archive-o:before{content:""}.fa-file-sound-o:before,.fa-file-audio-o:before{content:""}.fa-file-movie-o:before,.fa-file-video-o:before{content:""}.fa-file-code-o:before{content:""}.fa-vine:before{content:""}.fa-codepen:before{content:""}.fa-jsfiddle:before{content:""}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:""}.fa-circle-o-notch:before{content:""}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:""}.fa-ge:before,.fa-empire:before{content:""}.fa-git-square:before{content:""}.fa-git:before{content:""}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:""}.fa-tencent-weibo:before{content:""}.fa-qq:before{content:""}.fa-wechat:before,.fa-weixin:before{content:""}.fa-send:before,.fa-paper-plane:before{content:""}.fa-send-o:before,.fa-paper-plane-o:before{content:""}.fa-history:before{content:""}.fa-circle-thin:before{content:""}.fa-header:before{content:""}.fa-paragraph:before{content:""}.fa-sliders:before{content:""}.fa-share-alt:before{content:""}.fa-share-alt-square:before{content:""}.fa-bomb:before{content:""}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:""}.fa-tty:before{content:""}.fa-binoculars:before{content:""}.fa-plug:before{content:""}.fa-slideshare:before{content:""}.fa-twitch:before{content:""}.fa-yelp:before{content:""}.fa-newspaper-o:before{content:""}.fa-wifi:before{content:""}.fa-calculator:before{content:""}.fa-paypal:before{content:""}.fa-google-wallet:before{content:""}.fa-cc-visa:before{content:""}.fa-cc-mastercard:before{content:""}.fa-cc-discover:before{content:""}.fa-cc-amex:before{content:""}.fa-cc-paypal:before{content:""}.fa-cc-stripe:before{content:""}.fa-bell-slash:before{content:""}.fa-bell-slash-o:before{content:""}.fa-trash:before{content:""}.fa-copyright:before{content:""}.fa-at:before{content:""}.fa-eyedropper:before{content:""}.fa-paint-brush:before{content:""}.fa-birthday-cake:before{content:""}.fa-area-chart:before{content:""}.fa-pie-chart:before{content:""}.fa-line-chart:before{content:""}.fa-lastfm:before{content:""}.fa-lastfm-square:before{content:""}.fa-toggle-off:before{content:""}.fa-toggle-on:before{content:""}.fa-bicycle:before{content:""}.fa-bus:before{content:""}.fa-ioxhost:before{content:""}.fa-angellist:before{content:""}.fa-cc:before{content:""}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:""}.fa-meanpath:before{content:""}.fa-buysellads:before{content:""}.fa-connectdevelop:before{content:""}.fa-dashcube:before{content:""}.fa-forumbee:before{content:""}.fa-leanpub:before{content:""}.fa-sellsy:before{content:""}.fa-shirtsinbulk:before{content:""}.fa-simplybuilt:before{content:""}.fa-skyatlas:before{content:""}.fa-cart-plus:before{content:""}.fa-cart-arrow-down:before{content:""}.fa-diamond:before{content:""}.fa-ship:before{content:""}.fa-user-secret:before{content:""}.fa-motorcycle:before{content:""}.fa-street-view:before{content:""}.fa-heartbeat:before{content:""}.fa-venus:before{content:""}.fa-mars:before{content:""}.fa-mercury:before{content:""}.fa-intersex:before,.fa-transgender:before{content:""}.fa-transgender-alt:before{content:""}.fa-venus-double:before{content:""}.fa-mars-double:before{content:""}.fa-venus-mars:before{content:""}.fa-mars-stroke:before{content:""}.fa-mars-stroke-v:before{content:""}.fa-mars-stroke-h:before{content:""}.fa-neuter:before{content:""}.fa-genderless:before{content:""}.fa-facebook-official:before{content:""}.fa-pinterest-p:before{content:""}.fa-whatsapp:before{content:""}.fa-server:before{content:""}.fa-user-plus:before{content:""}.fa-user-times:before{content:""}.fa-hotel:before,.fa-bed:before{content:""}.fa-viacoin:before{content:""}.fa-train:before{content:""}.fa-subway:before{content:""}.fa-medium:before{content:""}.fa-yc:before,.fa-y-combinator:before{content:""}.fa-optin-monster:before{content:""}.fa-opencart:before{content:""}.fa-expeditedssl:before{content:""}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:""}.fa-battery-3:before,.fa-battery-three-quarters:before{content:""}.fa-battery-2:before,.fa-battery-half:before{content:""}.fa-battery-1:before,.fa-battery-quarter:before{content:""}.fa-battery-0:before,.fa-battery-empty:before{content:""}.fa-mouse-pointer:before{content:""}.fa-i-cursor:before{content:""}.fa-object-group:before{content:""}.fa-object-ungroup:before{content:""}.fa-sticky-note:before{content:""}.fa-sticky-note-o:before{content:""}.fa-cc-jcb:before{content:""}.fa-cc-diners-club:before{content:""}.fa-clone:before{content:""}.fa-balance-scale:before{content:""}.fa-hourglass-o:before{content:""}.fa-hourglass-1:before,.fa-hourglass-start:before{content:""}.fa-hourglass-2:before,.fa-hourglass-half:before{content:""}.fa-hourglass-3:before,.fa-hourglass-end:before{content:""}.fa-hourglass:before{content:""}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:""}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:""}.fa-hand-scissors-o:before{content:""}.fa-hand-lizard-o:before{content:""}.fa-hand-spock-o:before{content:""}.fa-hand-pointer-o:before{content:""}.fa-hand-peace-o:before{content:""}.fa-trademark:before{content:""}.fa-registered:before{content:""}.fa-creative-commons:before{content:""}.fa-gg:before{content:""}.fa-gg-circle:before{content:""}.fa-tripadvisor:before{content:""}.fa-odnoklassniki:before{content:""}.fa-odnoklassniki-square:before{content:""}.fa-get-pocket:before{content:""}.fa-wikipedia-w:before{content:""}.fa-safari:before{content:""}.fa-chrome:before{content:""}.fa-firefox:before{content:""}.fa-opera:before{content:""}.fa-internet-explorer:before{content:""}.fa-tv:before,.fa-television:before{content:""}.fa-contao:before{content:""}.fa-500px:before{content:""}.fa-amazon:before{content:""}.fa-calendar-plus-o:before{content:""}.fa-calendar-minus-o:before{content:""}.fa-calendar-times-o:before{content:""}.fa-calendar-check-o:before{content:""}.fa-industry:before{content:""}.fa-map-pin:before{content:""}.fa-map-signs:before{content:""}.fa-map-o:before{content:""}.fa-map:before{content:""}.fa-commenting:before{content:""}.fa-commenting-o:before{content:""}.fa-houzz:before{content:""}.fa-vimeo:before{content:""}.fa-black-tie:before{content:""}.fa-fonticons:before{content:""}.fa-reddit-alien:before{content:""}.fa-edge:before{content:""}.fa-credit-card-alt:before{content:""}.fa-codiepie:before{content:""}.fa-modx:before{content:""}.fa-fort-awesome:before{content:""}.fa-usb:before{content:""}.fa-product-hunt:before{content:""}.fa-mixcloud:before{content:""}.fa-scribd:before{content:""}.fa-pause-circle:before{content:""}.fa-pause-circle-o:before{content:""}.fa-stop-circle:before{content:""}.fa-stop-circle-o:before{content:""}.fa-shopping-bag:before{content:""}.fa-shopping-basket:before{content:""}.fa-hashtag:before{content:""}.fa-bluetooth:before{content:""}.fa-bluetooth-b:before{content:""}.fa-percent:before{content:""}.fa-gitlab:before,.icon-gitlab:before{content:""}.fa-wpbeginner:before{content:""}.fa-wpforms:before{content:""}.fa-envira:before{content:""}.fa-universal-access:before{content:""}.fa-wheelchair-alt:before{content:""}.fa-question-circle-o:before{content:""}.fa-blind:before{content:""}.fa-audio-description:before{content:""}.fa-volume-control-phone:before{content:""}.fa-braille:before{content:""}.fa-assistive-listening-systems:before{content:""}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:""}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:""}.fa-glide:before{content:""}.fa-glide-g:before{content:""}.fa-signing:before,.fa-sign-language:before{content:""}.fa-low-vision:before{content:""}.fa-viadeo:before{content:""}.fa-viadeo-square:before{content:""}.fa-snapchat:before{content:""}.fa-snapchat-ghost:before{content:""}.fa-snapchat-square:before{content:""}.fa-pied-piper:before{content:""}.fa-first-order:before{content:""}.fa-yoast:before{content:""}.fa-themeisle:before{content:""}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:""}.fa-fa:before,.fa-font-awesome:before{content:""}.fa-handshake-o:before{content:""}.fa-envelope-open:before{content:""}.fa-envelope-open-o:before{content:""}.fa-linode:before{content:""}.fa-address-book:before{content:""}.fa-address-book-o:before{content:""}.fa-vcard:before,.fa-address-card:before{content:""}.fa-vcard-o:before,.fa-address-card-o:before{content:""}.fa-user-circle:before{content:""}.fa-user-circle-o:before{content:""}.fa-user-o:before{content:""}.fa-id-badge:before{content:""}.fa-drivers-license:before,.fa-id-card:before{content:""}.fa-drivers-license-o:before,.fa-id-card-o:before{content:""}.fa-quora:before{content:""}.fa-free-code-camp:before{content:""}.fa-telegram:before{content:""}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:""}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:""}.fa-thermometer-2:before,.fa-thermometer-half:before{content:""}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:""}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:""}.fa-shower:before{content:""}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:""}.fa-podcast:before{content:""}.fa-window-maximize:before{content:""}.fa-window-minimize:before{content:""}.fa-window-restore:before{content:""}.fa-times-rectangle:before,.fa-window-close:before{content:""}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:""}.fa-bandcamp:before{content:""}.fa-grav:before{content:""}.fa-etsy:before{content:""}.fa-imdb:before{content:""}.fa-ravelry:before{content:""}.fa-eercast:before{content:""}.fa-microchip:before{content:""}.fa-snowflake-o:before{content:""}.fa-superpowers:before{content:""}.fa-wpexplorer:before{content:""}.fa-meetup:before{content:""}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.fa,.wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.current>a span.toctree-expand,.rst-content .admonition-title,.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink,.rst-content p.caption .headerlink,.rst-content table>caption .headerlink,.rst-content tt.download span:first-child,.rst-content code.download span:first-child,.icon,.wy-dropdown .caret,.wy-inline-validate.wy-inline-validate-success .wy-input-context,.wy-inline-validate.wy-inline-validate-danger .wy-input-context,.wy-inline-validate.wy-inline-validate-warning .wy-input-context,.wy-inline-validate.wy-inline-validate-info .wy-input-context{font-family:inherit}.fa:before,.wy-menu-vertical li span.toctree-expand:before,.wy-menu-vertical li.on a span.toctree-expand:before,.wy-menu-vertical li.current>a span.toctree-expand:before,.rst-content .admonition-title:before,.rst-content h1 .headerlink:before,.rst-content h2 .headerlink:before,.rst-content h3 .headerlink:before,.rst-content h4 .headerlink:before,.rst-content h5 .headerlink:before,.rst-content h6 .headerlink:before,.rst-content dl dt .headerlink:before,.rst-content p.caption .headerlink:before,.rst-content table>caption .headerlink:before,.rst-content tt.download span:first-child:before,.rst-content code.download span:first-child:before,.icon:before,.wy-dropdown .caret:before,.wy-inline-validate.wy-inline-validate-success .wy-input-context:before,.wy-inline-validate.wy-inline-validate-danger .wy-input-context:before,.wy-inline-validate.wy-inline-validate-warning .wy-input-context:before,.wy-inline-validate.wy-inline-validate-info .wy-input-context:before{font-family:"FontAwesome";display:inline-block;font-style:normal;font-weight:normal;line-height:1;text-decoration:inherit}a .fa,a .wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li a span.toctree-expand,.wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.current>a span.toctree-expand,a .rst-content .admonition-title,.rst-content a .admonition-title,a .rst-content h1 .headerlink,.rst-content h1 a .headerlink,a .rst-content h2 .headerlink,.rst-content h2 a .headerlink,a .rst-content h3 .headerlink,.rst-content h3 a .headerlink,a .rst-content h4 .headerlink,.rst-content h4 a .headerlink,a .rst-content h5 .headerlink,.rst-content h5 a .headerlink,a .rst-content h6 .headerlink,.rst-content h6 a .headerlink,a .rst-content dl dt .headerlink,.rst-content dl dt a .headerlink,a .rst-content p.caption .headerlink,.rst-content p.caption a .headerlink,a .rst-content table>caption .headerlink,.rst-content table>caption a .headerlink,a .rst-content tt.download span:first-child,.rst-content tt.download a span:first-child,a .rst-content code.download span:first-child,.rst-content code.download a span:first-child,a .icon{display:inline-block;text-decoration:inherit}.btn .fa,.btn .wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li .btn span.toctree-expand,.btn .wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.on a .btn span.toctree-expand,.btn .wy-menu-vertical li.current>a span.toctree-expand,.wy-menu-vertical li.current>a .btn span.toctree-expand,.btn .rst-content .admonition-title,.rst-content .btn .admonition-title,.btn .rst-content h1 .headerlink,.rst-content h1 .btn .headerlink,.btn .rst-content h2 .headerlink,.rst-content h2 .btn .headerlink,.btn .rst-content h3 .headerlink,.rst-content h3 .btn .headerlink,.btn .rst-content h4 .headerlink,.rst-content h4 .btn .headerlink,.btn .rst-content h5 .headerlink,.rst-content h5 .btn .headerlink,.btn .rst-content h6 .headerlink,.rst-content h6 .btn .headerlink,.btn .rst-content dl dt .headerlink,.rst-content dl dt .btn .headerlink,.btn .rst-content p.caption .headerlink,.rst-content p.caption .btn .headerlink,.btn .rst-content table>caption .headerlink,.rst-content table>caption .btn .headerlink,.btn .rst-content tt.download span:first-child,.rst-content tt.download .btn span:first-child,.btn .rst-content code.download span:first-child,.rst-content code.download .btn span:first-child,.btn .icon,.nav .fa,.nav .wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li .nav span.toctree-expand,.nav .wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.on a .nav span.toctree-expand,.nav .wy-menu-vertical li.current>a span.toctree-expand,.wy-menu-vertical li.current>a .nav span.toctree-expand,.nav .rst-content .admonition-title,.rst-content .nav .admonition-title,.nav .rst-content h1 .headerlink,.rst-content h1 .nav .headerlink,.nav .rst-content h2 .headerlink,.rst-content h2 .nav .headerlink,.nav .rst-content h3 .headerlink,.rst-content h3 .nav .headerlink,.nav .rst-content h4 .headerlink,.rst-content h4 .nav .headerlink,.nav .rst-content h5 .headerlink,.rst-content h5 .nav .headerlink,.nav .rst-content h6 .headerlink,.rst-content h6 .nav .headerlink,.nav .rst-content dl dt .headerlink,.rst-content dl dt .nav .headerlink,.nav .rst-content p.caption .headerlink,.rst-content p.caption .nav .headerlink,.nav .rst-content table>caption .headerlink,.rst-content table>caption .nav .headerlink,.nav .rst-content tt.download span:first-child,.rst-content tt.download .nav span:first-child,.nav .rst-content code.download span:first-child,.rst-content code.download .nav span:first-child,.nav .icon{display:inline}.btn .fa.fa-large,.btn .wy-menu-vertical li span.fa-large.toctree-expand,.wy-menu-vertical li .btn span.fa-large.toctree-expand,.btn .rst-content .fa-large.admonition-title,.rst-content .btn .fa-large.admonition-title,.btn .rst-content h1 .fa-large.headerlink,.rst-content h1 .btn .fa-large.headerlink,.btn .rst-content h2 .fa-large.headerlink,.rst-content h2 .btn .fa-large.headerlink,.btn .rst-content h3 .fa-large.headerlink,.rst-content h3 .btn .fa-large.headerlink,.btn .rst-content h4 .fa-large.headerlink,.rst-content h4 .btn .fa-large.headerlink,.btn .rst-content h5 .fa-large.headerlink,.rst-content h5 .btn .fa-large.headerlink,.btn .rst-content h6 .fa-large.headerlink,.rst-content h6 .btn .fa-large.headerlink,.btn .rst-content dl dt .fa-large.headerlink,.rst-content dl dt .btn .fa-large.headerlink,.btn .rst-content p.caption .fa-large.headerlink,.rst-content p.caption .btn .fa-large.headerlink,.btn .rst-content table>caption .fa-large.headerlink,.rst-content table>caption .btn .fa-large.headerlink,.btn .rst-content tt.download span.fa-large:first-child,.rst-content tt.download .btn span.fa-large:first-child,.btn .rst-content code.download span.fa-large:first-child,.rst-content code.download .btn span.fa-large:first-child,.btn .fa-large.icon,.nav .fa.fa-large,.nav .wy-menu-vertical li span.fa-large.toctree-expand,.wy-menu-vertical li .nav span.fa-large.toctree-expand,.nav .rst-content .fa-large.admonition-title,.rst-content .nav .fa-large.admonition-title,.nav .rst-content h1 .fa-large.headerlink,.rst-content h1 .nav .fa-large.headerlink,.nav .rst-content h2 .fa-large.headerlink,.rst-content h2 .nav .fa-large.headerlink,.nav .rst-content h3 .fa-large.headerlink,.rst-content h3 .nav .fa-large.headerlink,.nav .rst-content h4 .fa-large.headerlink,.rst-content h4 .nav .fa-large.headerlink,.nav .rst-content h5 .fa-large.headerlink,.rst-content h5 .nav .fa-large.headerlink,.nav .rst-content h6 .fa-large.headerlink,.rst-content h6 .nav .fa-large.headerlink,.nav .rst-content dl dt .fa-large.headerlink,.rst-content dl dt .nav .fa-large.headerlink,.nav .rst-content p.caption .fa-large.headerlink,.rst-content p.caption .nav .fa-large.headerlink,.nav .rst-content table>caption .fa-large.headerlink,.rst-content table>caption .nav .fa-large.headerlink,.nav .rst-content tt.download span.fa-large:first-child,.rst-content tt.download .nav span.fa-large:first-child,.nav .rst-content code.download span.fa-large:first-child,.rst-content code.download .nav span.fa-large:first-child,.nav .fa-large.icon{line-height:.9em}.btn .fa.fa-spin,.btn .wy-menu-vertical li span.fa-spin.toctree-expand,.wy-menu-vertical li .btn span.fa-spin.toctree-expand,.btn .rst-content .fa-spin.admonition-title,.rst-content .btn .fa-spin.admonition-title,.btn .rst-content h1 .fa-spin.headerlink,.rst-content h1 .btn .fa-spin.headerlink,.btn .rst-content h2 .fa-spin.headerlink,.rst-content h2 .btn .fa-spin.headerlink,.btn .rst-content h3 .fa-spin.headerlink,.rst-content h3 .btn .fa-spin.headerlink,.btn .rst-content h4 .fa-spin.headerlink,.rst-content h4 .btn .fa-spin.headerlink,.btn .rst-content h5 .fa-spin.headerlink,.rst-content h5 .btn .fa-spin.headerlink,.btn .rst-content h6 .fa-spin.headerlink,.rst-content h6 .btn .fa-spin.headerlink,.btn .rst-content dl dt .fa-spin.headerlink,.rst-content dl dt .btn .fa-spin.headerlink,.btn .rst-content p.caption .fa-spin.headerlink,.rst-content p.caption .btn .fa-spin.headerlink,.btn .rst-content table>caption .fa-spin.headerlink,.rst-content table>caption .btn .fa-spin.headerlink,.btn .rst-content tt.download span.fa-spin:first-child,.rst-content tt.download .btn span.fa-spin:first-child,.btn .rst-content code.download span.fa-spin:first-child,.rst-content code.download .btn span.fa-spin:first-child,.btn .fa-spin.icon,.nav .fa.fa-spin,.nav .wy-menu-vertical li span.fa-spin.toctree-expand,.wy-menu-vertical li .nav span.fa-spin.toctree-expand,.nav .rst-content .fa-spin.admonition-title,.rst-content .nav .fa-spin.admonition-title,.nav .rst-content h1 .fa-spin.headerlink,.rst-content h1 .nav .fa-spin.headerlink,.nav .rst-content h2 .fa-spin.headerlink,.rst-content h2 .nav .fa-spin.headerlink,.nav .rst-content h3 .fa-spin.headerlink,.rst-content h3 .nav .fa-spin.headerlink,.nav .rst-content h4 .fa-spin.headerlink,.rst-content h4 .nav .fa-spin.headerlink,.nav .rst-content h5 .fa-spin.headerlink,.rst-content h5 .nav .fa-spin.headerlink,.nav .rst-content h6 .fa-spin.headerlink,.rst-content h6 .nav .fa-spin.headerlink,.nav .rst-content dl dt .fa-spin.headerlink,.rst-content dl dt .nav .fa-spin.headerlink,.nav .rst-content p.caption .fa-spin.headerlink,.rst-content p.caption .nav .fa-spin.headerlink,.nav .rst-content table>caption .fa-spin.headerlink,.rst-content table>caption .nav .fa-spin.headerlink,.nav .rst-content tt.download span.fa-spin:first-child,.rst-content tt.download .nav span.fa-spin:first-child,.nav .rst-content code.download span.fa-spin:first-child,.rst-content code.download .nav span.fa-spin:first-child,.nav .fa-spin.icon{display:inline-block}.btn.fa:before,.wy-menu-vertical li span.btn.toctree-expand:before,.rst-content .btn.admonition-title:before,.rst-content h1 .btn.headerlink:before,.rst-content h2 .btn.headerlink:before,.rst-content h3 .btn.headerlink:before,.rst-content h4 .btn.headerlink:before,.rst-content h5 .btn.headerlink:before,.rst-content h6 .btn.headerlink:before,.rst-content dl dt .btn.headerlink:before,.rst-content p.caption .btn.headerlink:before,.rst-content table>caption .btn.headerlink:before,.rst-content tt.download span.btn:first-child:before,.rst-content code.download span.btn:first-child:before,.btn.icon:before{opacity:.5;-webkit-transition:opacity .05s ease-in;-moz-transition:opacity .05s ease-in;transition:opacity .05s ease-in}.btn.fa:hover:before,.wy-menu-vertical li span.btn.toctree-expand:hover:before,.rst-content .btn.admonition-title:hover:before,.rst-content h1 .btn.headerlink:hover:before,.rst-content h2 .btn.headerlink:hover:before,.rst-content h3 .btn.headerlink:hover:before,.rst-content h4 .btn.headerlink:hover:before,.rst-content h5 .btn.headerlink:hover:before,.rst-content h6 .btn.headerlink:hover:before,.rst-content dl dt .btn.headerlink:hover:before,.rst-content p.caption .btn.headerlink:hover:before,.rst-content table>caption .btn.headerlink:hover:before,.rst-content tt.download span.btn:first-child:hover:before,.rst-content code.download span.btn:first-child:hover:before,.btn.icon:hover:before{opacity:1}.btn-mini .fa:before,.btn-mini .wy-menu-vertical li span.toctree-expand:before,.wy-menu-vertical li .btn-mini span.toctree-expand:before,.btn-mini .rst-content .admonition-title:before,.rst-content .btn-mini .admonition-title:before,.btn-mini .rst-content h1 .headerlink:before,.rst-content h1 .btn-mini .headerlink:before,.btn-mini .rst-content h2 .headerlink:before,.rst-content h2 .btn-mini .headerlink:before,.btn-mini .rst-content h3 .headerlink:before,.rst-content h3 .btn-mini .headerlink:before,.btn-mini .rst-content h4 .headerlink:before,.rst-content h4 .btn-mini .headerlink:before,.btn-mini .rst-content h5 .headerlink:before,.rst-content h5 .btn-mini .headerlink:before,.btn-mini .rst-content h6 .headerlink:before,.rst-content h6 .btn-mini .headerlink:before,.btn-mini .rst-content dl dt .headerlink:before,.rst-content dl dt .btn-mini .headerlink:before,.btn-mini .rst-content p.caption .headerlink:before,.rst-content p.caption .btn-mini .headerlink:before,.btn-mini .rst-content table>caption .headerlink:before,.rst-content table>caption .btn-mini .headerlink:before,.btn-mini .rst-content tt.download span:first-child:before,.rst-content tt.download .btn-mini span:first-child:before,.btn-mini .rst-content code.download span:first-child:before,.rst-content code.download .btn-mini span:first-child:before,.btn-mini .icon:before{font-size:14px;vertical-align:-15%}.wy-alert,.rst-content .note,.rst-content .attention,.rst-content .caution,.rst-content .danger,.rst-content .error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .warning,.rst-content .seealso,.rst-content .admonition-todo,.rst-content .admonition{padding:12px;line-height:24px;margin-bottom:24px;background:#e7f2fa}.wy-alert-title,.rst-content .admonition-title{color:#fff;font-weight:bold;display:block;color:#fff;background:#6ab0de;margin:-12px;padding:6px 12px;margin-bottom:12px}.wy-alert.wy-alert-danger,.rst-content .wy-alert-danger.note,.rst-content .wy-alert-danger.attention,.rst-content .wy-alert-danger.caution,.rst-content .danger,.rst-content .error,.rst-content .wy-alert-danger.hint,.rst-content .wy-alert-danger.important,.rst-content .wy-alert-danger.tip,.rst-content .wy-alert-danger.warning,.rst-content .wy-alert-danger.seealso,.rst-content .wy-alert-danger.admonition-todo,.rst-content .wy-alert-danger.admonition{background:#fdf3f2}.wy-alert.wy-alert-danger .wy-alert-title,.rst-content .wy-alert-danger.note .wy-alert-title,.rst-content .wy-alert-danger.attention .wy-alert-title,.rst-content .wy-alert-danger.caution .wy-alert-title,.rst-content .danger .wy-alert-title,.rst-content .error .wy-alert-title,.rst-content .wy-alert-danger.hint .wy-alert-title,.rst-content .wy-alert-danger.important .wy-alert-title,.rst-content .wy-alert-danger.tip .wy-alert-title,.rst-content .wy-alert-danger.warning .wy-alert-title,.rst-content .wy-alert-danger.seealso .wy-alert-title,.rst-content .wy-alert-danger.admonition-todo .wy-alert-title,.rst-content .wy-alert-danger.admonition .wy-alert-title,.wy-alert.wy-alert-danger .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-danger .admonition-title,.rst-content .wy-alert-danger.note .admonition-title,.rst-content .wy-alert-danger.attention .admonition-title,.rst-content .wy-alert-danger.caution .admonition-title,.rst-content .danger .admonition-title,.rst-content .error .admonition-title,.rst-content .wy-alert-danger.hint .admonition-title,.rst-content .wy-alert-danger.important .admonition-title,.rst-content .wy-alert-danger.tip .admonition-title,.rst-content .wy-alert-danger.warning .admonition-title,.rst-content .wy-alert-danger.seealso .admonition-title,.rst-content .wy-alert-danger.admonition-todo .admonition-title,.rst-content .wy-alert-danger.admonition .admonition-title{background:#f29f97}.wy-alert.wy-alert-warning,.rst-content .wy-alert-warning.note,.rst-content .attention,.rst-content .caution,.rst-content .wy-alert-warning.danger,.rst-content .wy-alert-warning.error,.rst-content .wy-alert-warning.hint,.rst-content .wy-alert-warning.important,.rst-content .wy-alert-warning.tip,.rst-content .warning,.rst-content .wy-alert-warning.seealso,.rst-content .admonition-todo,.rst-content .wy-alert-warning.admonition{background:#ffedcc}.wy-alert.wy-alert-warning .wy-alert-title,.rst-content .wy-alert-warning.note .wy-alert-title,.rst-content .attention .wy-alert-title,.rst-content .caution .wy-alert-title,.rst-content .wy-alert-warning.danger .wy-alert-title,.rst-content .wy-alert-warning.error .wy-alert-title,.rst-content .wy-alert-warning.hint .wy-alert-title,.rst-content .wy-alert-warning.important .wy-alert-title,.rst-content .wy-alert-warning.tip .wy-alert-title,.rst-content .warning .wy-alert-title,.rst-content .wy-alert-warning.seealso .wy-alert-title,.rst-content .admonition-todo .wy-alert-title,.rst-content .wy-alert-warning.admonition .wy-alert-title,.wy-alert.wy-alert-warning .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-warning .admonition-title,.rst-content .wy-alert-warning.note .admonition-title,.rst-content .attention .admonition-title,.rst-content .caution .admonition-title,.rst-content .wy-alert-warning.danger .admonition-title,.rst-content .wy-alert-warning.error .admonition-title,.rst-content .wy-alert-warning.hint .admonition-title,.rst-content .wy-alert-warning.important .admonition-title,.rst-content .wy-alert-warning.tip .admonition-title,.rst-content .warning .admonition-title,.rst-content .wy-alert-warning.seealso .admonition-title,.rst-content .admonition-todo .admonition-title,.rst-content .wy-alert-warning.admonition .admonition-title{background:#f0b37e}.wy-alert.wy-alert-info,.rst-content .note,.rst-content .wy-alert-info.attention,.rst-content .wy-alert-info.caution,.rst-content .wy-alert-info.danger,.rst-content .wy-alert-info.error,.rst-content .wy-alert-info.hint,.rst-content .wy-alert-info.important,.rst-content .wy-alert-info.tip,.rst-content .wy-alert-info.warning,.rst-content .seealso,.rst-content .wy-alert-info.admonition-todo,.rst-content .wy-alert-info.admonition{background:#e7f2fa}.wy-alert.wy-alert-info .wy-alert-title,.rst-content .note .wy-alert-title,.rst-content .wy-alert-info.attention .wy-alert-title,.rst-content .wy-alert-info.caution .wy-alert-title,.rst-content .wy-alert-info.danger .wy-alert-title,.rst-content .wy-alert-info.error .wy-alert-title,.rst-content .wy-alert-info.hint .wy-alert-title,.rst-content .wy-alert-info.important .wy-alert-title,.rst-content .wy-alert-info.tip .wy-alert-title,.rst-content .wy-alert-info.warning .wy-alert-title,.rst-content .seealso .wy-alert-title,.rst-content .wy-alert-info.admonition-todo .wy-alert-title,.rst-content .wy-alert-info.admonition .wy-alert-title,.wy-alert.wy-alert-info .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-info .admonition-title,.rst-content .note .admonition-title,.rst-content .wy-alert-info.attention .admonition-title,.rst-content .wy-alert-info.caution .admonition-title,.rst-content .wy-alert-info.danger .admonition-title,.rst-content .wy-alert-info.error .admonition-title,.rst-content .wy-alert-info.hint .admonition-title,.rst-content .wy-alert-info.important .admonition-title,.rst-content .wy-alert-info.tip .admonition-title,.rst-content .wy-alert-info.warning .admonition-title,.rst-content .seealso .admonition-title,.rst-content .wy-alert-info.admonition-todo .admonition-title,.rst-content .wy-alert-info.admonition .admonition-title{background:#6ab0de}.wy-alert.wy-alert-success,.rst-content .wy-alert-success.note,.rst-content .wy-alert-success.attention,.rst-content .wy-alert-success.caution,.rst-content .wy-alert-success.danger,.rst-content .wy-alert-success.error,.rst-content .hint,.rst-content .important,.rst-content .tip,.rst-content .wy-alert-success.warning,.rst-content .wy-alert-success.seealso,.rst-content .wy-alert-success.admonition-todo,.rst-content .wy-alert-success.admonition{background:#dbfaf4}.wy-alert.wy-alert-success .wy-alert-title,.rst-content .wy-alert-success.note .wy-alert-title,.rst-content .wy-alert-success.attention .wy-alert-title,.rst-content .wy-alert-success.caution .wy-alert-title,.rst-content .wy-alert-success.danger .wy-alert-title,.rst-content .wy-alert-success.error .wy-alert-title,.rst-content .hint .wy-alert-title,.rst-content .important .wy-alert-title,.rst-content .tip .wy-alert-title,.rst-content .wy-alert-success.warning .wy-alert-title,.rst-content .wy-alert-success.seealso .wy-alert-title,.rst-content .wy-alert-success.admonition-todo .wy-alert-title,.rst-content .wy-alert-success.admonition .wy-alert-title,.wy-alert.wy-alert-success .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-success .admonition-title,.rst-content .wy-alert-success.note .admonition-title,.rst-content .wy-alert-success.attention .admonition-title,.rst-content .wy-alert-success.caution .admonition-title,.rst-content .wy-alert-success.danger .admonition-title,.rst-content .wy-alert-success.error .admonition-title,.rst-content .hint .admonition-title,.rst-content .important .admonition-title,.rst-content .tip .admonition-title,.rst-content .wy-alert-success.warning .admonition-title,.rst-content .wy-alert-success.seealso .admonition-title,.rst-content .wy-alert-success.admonition-todo .admonition-title,.rst-content .wy-alert-success.admonition .admonition-title{background:#1abc9c}.wy-alert.wy-alert-neutral,.rst-content .wy-alert-neutral.note,.rst-content .wy-alert-neutral.attention,.rst-content .wy-alert-neutral.caution,.rst-content .wy-alert-neutral.danger,.rst-content .wy-alert-neutral.error,.rst-content .wy-alert-neutral.hint,.rst-content .wy-alert-neutral.important,.rst-content .wy-alert-neutral.tip,.rst-content .wy-alert-neutral.warning,.rst-content .wy-alert-neutral.seealso,.rst-content .wy-alert-neutral.admonition-todo,.rst-content .wy-alert-neutral.admonition{background:#f3f6f6}.wy-alert.wy-alert-neutral .wy-alert-title,.rst-content .wy-alert-neutral.note .wy-alert-title,.rst-content .wy-alert-neutral.attention .wy-alert-title,.rst-content .wy-alert-neutral.caution .wy-alert-title,.rst-content .wy-alert-neutral.danger .wy-alert-title,.rst-content .wy-alert-neutral.error .wy-alert-title,.rst-content .wy-alert-neutral.hint .wy-alert-title,.rst-content .wy-alert-neutral.important .wy-alert-title,.rst-content .wy-alert-neutral.tip .wy-alert-title,.rst-content .wy-alert-neutral.warning .wy-alert-title,.rst-content .wy-alert-neutral.seealso .wy-alert-title,.rst-content .wy-alert-neutral.admonition-todo .wy-alert-title,.rst-content .wy-alert-neutral.admonition .wy-alert-title,.wy-alert.wy-alert-neutral .rst-content .admonition-title,.rst-content .wy-alert.wy-alert-neutral .admonition-title,.rst-content .wy-alert-neutral.note .admonition-title,.rst-content .wy-alert-neutral.attention .admonition-title,.rst-content .wy-alert-neutral.caution .admonition-title,.rst-content .wy-alert-neutral.danger .admonition-title,.rst-content .wy-alert-neutral.error .admonition-title,.rst-content .wy-alert-neutral.hint .admonition-title,.rst-content .wy-alert-neutral.important .admonition-title,.rst-content .wy-alert-neutral.tip .admonition-title,.rst-content .wy-alert-neutral.warning .admonition-title,.rst-content .wy-alert-neutral.seealso .admonition-title,.rst-content .wy-alert-neutral.admonition-todo .admonition-title,.rst-content .wy-alert-neutral.admonition .admonition-title{color:#404040;background:#e1e4e5}.wy-alert.wy-alert-neutral a,.rst-content .wy-alert-neutral.note a,.rst-content .wy-alert-neutral.attention a,.rst-content .wy-alert-neutral.caution a,.rst-content .wy-alert-neutral.danger a,.rst-content .wy-alert-neutral.error a,.rst-content .wy-alert-neutral.hint a,.rst-content .wy-alert-neutral.important a,.rst-content .wy-alert-neutral.tip a,.rst-content .wy-alert-neutral.warning a,.rst-content .wy-alert-neutral.seealso a,.rst-content .wy-alert-neutral.admonition-todo a,.rst-content .wy-alert-neutral.admonition a{color:#2980B9}.wy-alert p:last-child,.rst-content .note p:last-child,.rst-content .attention p:last-child,.rst-content .caution p:last-child,.rst-content .danger p:last-child,.rst-content .error p:last-child,.rst-content .hint p:last-child,.rst-content .important p:last-child,.rst-content .tip p:last-child,.rst-content .warning p:last-child,.rst-content .seealso p:last-child,.rst-content .admonition-todo p:last-child,.rst-content .admonition p:last-child{margin-bottom:0}.wy-tray-container{position:fixed;bottom:0px;left:0;z-index:600}.wy-tray-container li{display:block;width:300px;background:transparent;color:#fff;text-align:center;box-shadow:0 5px 5px 0 rgba(0,0,0,0.1);padding:0 24px;min-width:20%;opacity:0;height:0;line-height:56px;overflow:hidden;-webkit-transition:all .3s ease-in;-moz-transition:all .3s ease-in;transition:all .3s ease-in}.wy-tray-container li.wy-tray-item-success{background:#27AE60}.wy-tray-container li.wy-tray-item-info{background:#2980B9}.wy-tray-container li.wy-tray-item-warning{background:#E67E22}.wy-tray-container li.wy-tray-item-danger{background:#E74C3C}.wy-tray-container li.on{opacity:1;height:56px}@media screen and (max-width: 768px){.wy-tray-container{bottom:auto;top:0;width:100%}.wy-tray-container li{width:100%}}button{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle;cursor:pointer;line-height:normal;-webkit-appearance:button;*overflow:visible}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}button[disabled]{cursor:default}.btn{display:inline-block;border-radius:2px;line-height:normal;white-space:nowrap;text-align:center;cursor:pointer;font-size:100%;padding:6px 12px 8px 12px;color:#fff;border:1px solid rgba(0,0,0,0.1);background-color:#27AE60;text-decoration:none;font-weight:normal;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;box-shadow:0px 1px 2px -1px rgba(255,255,255,0.5) inset,0px -2px 0px 0px rgba(0,0,0,0.1) inset;outline-none:false;vertical-align:middle;*display:inline;zoom:1;-webkit-user-drag:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-transition:all .1s linear;-moz-transition:all .1s linear;transition:all .1s linear}.btn-hover{background:#2e8ece;color:#fff}.btn:hover{background:#2cc36b;color:#fff}.btn:focus{background:#2cc36b;outline:0}.btn:active{box-shadow:0px -1px 0px 0px rgba(0,0,0,0.05) inset,0px 2px 0px 0px rgba(0,0,0,0.1) inset;padding:8px 12px 6px 12px}.btn:visited{color:#fff}.btn:disabled{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:.4;cursor:not-allowed;box-shadow:none}.btn-disabled{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:.4;cursor:not-allowed;box-shadow:none}.btn-disabled:hover,.btn-disabled:focus,.btn-disabled:active{background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);filter:alpha(opacity=40);opacity:.4;cursor:not-allowed;box-shadow:none}.btn::-moz-focus-inner{padding:0;border:0}.btn-small{font-size:80%}.btn-info{background-color:#2980B9 !important}.btn-info:hover{background-color:#2e8ece !important}.btn-neutral{background-color:#f3f6f6 !important;color:#404040 !important}.btn-neutral:hover{background-color:#e5ebeb !important;color:#404040}.btn-neutral:visited{color:#404040 !important}.btn-success{background-color:#27AE60 !important}.btn-success:hover{background-color:#295 !important}.btn-danger{background-color:#E74C3C !important}.btn-danger:hover{background-color:#ea6153 !important}.btn-warning{background-color:#E67E22 !important}.btn-warning:hover{background-color:#e98b39 !important}.btn-invert{background-color:#222}.btn-invert:hover{background-color:#2f2f2f !important}.btn-link{background-color:transparent !important;color:#2980B9;box-shadow:none;border-color:transparent !important}.btn-link:hover{background-color:transparent !important;color:#409ad5 !important;box-shadow:none}.btn-link:active{background-color:transparent !important;color:#409ad5 !important;box-shadow:none}.btn-link:visited{color:#9B59B6}.wy-btn-group .btn,.wy-control .btn{vertical-align:middle}.wy-btn-group{margin-bottom:24px;*zoom:1}.wy-btn-group:before,.wy-btn-group:after{display:table;content:""}.wy-btn-group:after{clear:both}.wy-dropdown{position:relative;display:inline-block}.wy-dropdown-active .wy-dropdown-menu{display:block}.wy-dropdown-menu{position:absolute;left:0;display:none;float:left;top:100%;min-width:100%;background:#fcfcfc;z-index:100;border:solid 1px #cfd7dd;box-shadow:0 2px 2px 0 rgba(0,0,0,0.1);padding:12px}.wy-dropdown-menu>dd>a{display:block;clear:both;color:#404040;white-space:nowrap;font-size:90%;padding:0 12px;cursor:pointer}.wy-dropdown-menu>dd>a:hover{background:#2980B9;color:#fff}.wy-dropdown-menu>dd.divider{border-top:solid 1px #cfd7dd;margin:6px 0}.wy-dropdown-menu>dd.search{padding-bottom:12px}.wy-dropdown-menu>dd.search input[type="search"]{width:100%}.wy-dropdown-menu>dd.call-to-action{background:#e3e3e3;text-transform:uppercase;font-weight:500;font-size:80%}.wy-dropdown-menu>dd.call-to-action:hover{background:#e3e3e3}.wy-dropdown-menu>dd.call-to-action .btn{color:#fff}.wy-dropdown.wy-dropdown-up .wy-dropdown-menu{bottom:100%;top:auto;left:auto;right:0}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu{background:#fcfcfc;margin-top:2px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a{padding:6px 12px}.wy-dropdown.wy-dropdown-bubble .wy-dropdown-menu a:hover{background:#2980B9;color:#fff}.wy-dropdown.wy-dropdown-left .wy-dropdown-menu{right:0;left:auto;text-align:right}.wy-dropdown-arrow:before{content:" ";border-bottom:5px solid #f5f5f5;border-left:5px solid transparent;border-right:5px solid transparent;position:absolute;display:block;top:-4px;left:50%;margin-left:-3px}.wy-dropdown-arrow.wy-dropdown-arrow-left:before{left:11px}.wy-form-stacked select{display:block}.wy-form-aligned input,.wy-form-aligned textarea,.wy-form-aligned select,.wy-form-aligned .wy-help-inline,.wy-form-aligned label{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-form-aligned .wy-control-group>label{display:inline-block;vertical-align:middle;width:10em;margin:6px 12px 0 0;float:left}.wy-form-aligned .wy-control{float:left}.wy-form-aligned .wy-control label{display:block}.wy-form-aligned .wy-control select{margin-top:6px}fieldset{border:0;margin:0;padding:0}legend{display:block;width:100%;border:0;padding:0;white-space:normal;margin-bottom:24px;font-size:150%;*margin-left:-7px}label{display:block;margin:0 0 .3125em 0;color:#333;font-size:90%}input,select,textarea{font-size:100%;margin:0;vertical-align:baseline;*vertical-align:middle}.wy-control-group{margin-bottom:24px;*zoom:1;max-width:68em;margin-left:auto;margin-right:auto;*zoom:1}.wy-control-group:before,.wy-control-group:after{display:table;content:""}.wy-control-group:after{clear:both}.wy-control-group:before,.wy-control-group:after{display:table;content:""}.wy-control-group:after{clear:both}.wy-control-group.wy-control-group-required>label:after{content:" *";color:#E74C3C}.wy-control-group .wy-form-full,.wy-control-group .wy-form-halves,.wy-control-group .wy-form-thirds{padding-bottom:12px}.wy-control-group .wy-form-full select,.wy-control-group .wy-form-halves select,.wy-control-group .wy-form-thirds select{width:100%}.wy-control-group .wy-form-full input[type="text"],.wy-control-group .wy-form-full input[type="password"],.wy-control-group .wy-form-full input[type="email"],.wy-control-group .wy-form-full input[type="url"],.wy-control-group .wy-form-full input[type="date"],.wy-control-group .wy-form-full input[type="month"],.wy-control-group .wy-form-full input[type="time"],.wy-control-group .wy-form-full input[type="datetime"],.wy-control-group .wy-form-full input[type="datetime-local"],.wy-control-group .wy-form-full input[type="week"],.wy-control-group .wy-form-full input[type="number"],.wy-control-group .wy-form-full input[type="search"],.wy-control-group .wy-form-full input[type="tel"],.wy-control-group .wy-form-full input[type="color"],.wy-control-group .wy-form-halves input[type="text"],.wy-control-group .wy-form-halves input[type="password"],.wy-control-group .wy-form-halves input[type="email"],.wy-control-group .wy-form-halves input[type="url"],.wy-control-group .wy-form-halves input[type="date"],.wy-control-group .wy-form-halves input[type="month"],.wy-control-group .wy-form-halves input[type="time"],.wy-control-group .wy-form-halves input[type="datetime"],.wy-control-group .wy-form-halves input[type="datetime-local"],.wy-control-group .wy-form-halves input[type="week"],.wy-control-group .wy-form-halves input[type="number"],.wy-control-group .wy-form-halves input[type="search"],.wy-control-group .wy-form-halves input[type="tel"],.wy-control-group .wy-form-halves input[type="color"],.wy-control-group .wy-form-thirds input[type="text"],.wy-control-group .wy-form-thirds input[type="password"],.wy-control-group .wy-form-thirds input[type="email"],.wy-control-group .wy-form-thirds input[type="url"],.wy-control-group .wy-form-thirds input[type="date"],.wy-control-group .wy-form-thirds input[type="month"],.wy-control-group .wy-form-thirds input[type="time"],.wy-control-group .wy-form-thirds input[type="datetime"],.wy-control-group .wy-form-thirds input[type="datetime-local"],.wy-control-group .wy-form-thirds input[type="week"],.wy-control-group .wy-form-thirds input[type="number"],.wy-control-group .wy-form-thirds input[type="search"],.wy-control-group .wy-form-thirds input[type="tel"],.wy-control-group .wy-form-thirds input[type="color"]{width:100%}.wy-control-group .wy-form-full{float:left;display:block;margin-right:2.3576515979%;width:100%;margin-right:0}.wy-control-group .wy-form-full:last-child{margin-right:0}.wy-control-group .wy-form-halves{float:left;display:block;margin-right:2.3576515979%;width:48.821174201%}.wy-control-group .wy-form-halves:last-child{margin-right:0}.wy-control-group .wy-form-halves:nth-of-type(2n){margin-right:0}.wy-control-group .wy-form-halves:nth-of-type(2n+1){clear:left}.wy-control-group .wy-form-thirds{float:left;display:block;margin-right:2.3576515979%;width:31.7615656014%}.wy-control-group .wy-form-thirds:last-child{margin-right:0}.wy-control-group .wy-form-thirds:nth-of-type(3n){margin-right:0}.wy-control-group .wy-form-thirds:nth-of-type(3n+1){clear:left}.wy-control-group.wy-control-group-no-input .wy-control{margin:6px 0 0 0;font-size:90%}.wy-control-no-input{display:inline-block;margin:6px 0 0 0;font-size:90%}.wy-control-group.fluid-input input[type="text"],.wy-control-group.fluid-input input[type="password"],.wy-control-group.fluid-input input[type="email"],.wy-control-group.fluid-input input[type="url"],.wy-control-group.fluid-input input[type="date"],.wy-control-group.fluid-input input[type="month"],.wy-control-group.fluid-input input[type="time"],.wy-control-group.fluid-input input[type="datetime"],.wy-control-group.fluid-input input[type="datetime-local"],.wy-control-group.fluid-input input[type="week"],.wy-control-group.fluid-input input[type="number"],.wy-control-group.fluid-input input[type="search"],.wy-control-group.fluid-input input[type="tel"],.wy-control-group.fluid-input input[type="color"]{width:100%}.wy-form-message-inline{display:inline-block;padding-left:.3em;color:#666;vertical-align:middle;font-size:90%}.wy-form-message{display:block;color:#999;font-size:70%;margin-top:.3125em;font-style:italic}.wy-form-message p{font-size:inherit;font-style:italic;margin-bottom:6px}.wy-form-message p:last-child{margin-bottom:0}input{line-height:normal}input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;*overflow:visible}input[type="text"],input[type="password"],input[type="email"],input[type="url"],input[type="date"],input[type="month"],input[type="time"],input[type="datetime"],input[type="datetime-local"],input[type="week"],input[type="number"],input[type="search"],input[type="tel"],input[type="color"]{-webkit-appearance:none;padding:6px;display:inline-block;border:1px solid #ccc;font-size:80%;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;box-shadow:inset 0 1px 3px #ddd;border-radius:0;-webkit-transition:border .3s linear;-moz-transition:border .3s linear;transition:border .3s linear}input[type="datetime-local"]{padding:.34375em .625em}input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0;margin-right:.3125em;*height:13px;*width:13px}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}input[type="text"]:focus,input[type="password"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus{outline:0;outline:thin dotted \9;border-color:#333}input.no-focus:focus{border-color:#ccc !important}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:1px auto #129FEA}input[type="text"][disabled],input[type="password"][disabled],input[type="email"][disabled],input[type="url"][disabled],input[type="date"][disabled],input[type="month"][disabled],input[type="time"][disabled],input[type="datetime"][disabled],input[type="datetime-local"][disabled],input[type="week"][disabled],input[type="number"][disabled],input[type="search"][disabled],input[type="tel"][disabled],input[type="color"][disabled]{cursor:not-allowed;background-color:#fafafa}input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#E74C3C;border:1px solid #E74C3C}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#E74C3C}input[type="file"]:focus:invalid:focus,input[type="radio"]:focus:invalid:focus,input[type="checkbox"]:focus:invalid:focus{outline-color:#E74C3C}input.wy-input-large{padding:12px;font-size:100%}textarea{overflow:auto;vertical-align:top;width:100%;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif}select,textarea{padding:.5em .625em;display:inline-block;border:1px solid #ccc;font-size:80%;box-shadow:inset 0 1px 3px #ddd;-webkit-transition:border .3s linear;-moz-transition:border .3s linear;transition:border .3s linear}select{border:1px solid #ccc;background-color:#fff}select[multiple]{height:auto}select:focus,textarea:focus{outline:0}select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#fafafa}input[type="radio"][disabled],input[type="checkbox"][disabled]{cursor:not-allowed}.wy-checkbox,.wy-radio{margin:6px 0;color:#404040;display:block}.wy-checkbox input,.wy-radio input{vertical-align:baseline}.wy-form-message-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle}.wy-input-prefix,.wy-input-suffix{white-space:nowrap;padding:6px}.wy-input-prefix .wy-input-context,.wy-input-suffix .wy-input-context{line-height:27px;padding:0 8px;display:inline-block;font-size:80%;background-color:#f3f6f6;border:solid 1px #ccc;color:#999}.wy-input-suffix .wy-input-context{border-left:0}.wy-input-prefix .wy-input-context{border-right:0}.wy-switch{position:relative;display:block;height:24px;margin-top:12px;cursor:pointer}.wy-switch:before{position:absolute;content:"";display:block;left:0;top:0;width:36px;height:12px;border-radius:4px;background:#ccc;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wy-switch:after{position:absolute;content:"";display:block;width:18px;height:18px;border-radius:4px;background:#999;left:-3px;top:-3px;-webkit-transition:all .2s ease-in-out;-moz-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wy-switch span{position:absolute;left:48px;display:block;font-size:12px;color:#ccc;line-height:1}.wy-switch.active:before{background:#1e8449}.wy-switch.active:after{left:24px;background:#27AE60}.wy-switch.disabled{cursor:not-allowed;opacity:.8}.wy-control-group.wy-control-group-error .wy-form-message,.wy-control-group.wy-control-group-error>label{color:#E74C3C}.wy-control-group.wy-control-group-error input[type="text"],.wy-control-group.wy-control-group-error input[type="password"],.wy-control-group.wy-control-group-error input[type="email"],.wy-control-group.wy-control-group-error input[type="url"],.wy-control-group.wy-control-group-error input[type="date"],.wy-control-group.wy-control-group-error input[type="month"],.wy-control-group.wy-control-group-error input[type="time"],.wy-control-group.wy-control-group-error input[type="datetime"],.wy-control-group.wy-control-group-error input[type="datetime-local"],.wy-control-group.wy-control-group-error input[type="week"],.wy-control-group.wy-control-group-error input[type="number"],.wy-control-group.wy-control-group-error input[type="search"],.wy-control-group.wy-control-group-error input[type="tel"],.wy-control-group.wy-control-group-error input[type="color"]{border:solid 1px #E74C3C}.wy-control-group.wy-control-group-error textarea{border:solid 1px #E74C3C}.wy-inline-validate{white-space:nowrap}.wy-inline-validate .wy-input-context{padding:.5em .625em;display:inline-block;font-size:80%}.wy-inline-validate.wy-inline-validate-success .wy-input-context{color:#27AE60}.wy-inline-validate.wy-inline-validate-danger .wy-input-context{color:#E74C3C}.wy-inline-validate.wy-inline-validate-warning .wy-input-context{color:#E67E22}.wy-inline-validate.wy-inline-validate-info .wy-input-context{color:#2980B9}.rotate-90{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.rotate-180{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.rotate-270{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.mirror{-webkit-transform:scaleX(-1);-moz-transform:scaleX(-1);-ms-transform:scaleX(-1);-o-transform:scaleX(-1);transform:scaleX(-1)}.mirror.rotate-90{-webkit-transform:scaleX(-1) rotate(90deg);-moz-transform:scaleX(-1) rotate(90deg);-ms-transform:scaleX(-1) rotate(90deg);-o-transform:scaleX(-1) rotate(90deg);transform:scaleX(-1) rotate(90deg)}.mirror.rotate-180{-webkit-transform:scaleX(-1) rotate(180deg);-moz-transform:scaleX(-1) rotate(180deg);-ms-transform:scaleX(-1) rotate(180deg);-o-transform:scaleX(-1) rotate(180deg);transform:scaleX(-1) rotate(180deg)}.mirror.rotate-270{-webkit-transform:scaleX(-1) rotate(270deg);-moz-transform:scaleX(-1) rotate(270deg);-ms-transform:scaleX(-1) rotate(270deg);-o-transform:scaleX(-1) rotate(270deg);transform:scaleX(-1) rotate(270deg)}@media only screen and (max-width: 480px){.wy-form button[type="submit"]{margin:.7em 0 0}.wy-form input[type="text"],.wy-form input[type="password"],.wy-form input[type="email"],.wy-form input[type="url"],.wy-form input[type="date"],.wy-form input[type="month"],.wy-form input[type="time"],.wy-form input[type="datetime"],.wy-form input[type="datetime-local"],.wy-form input[type="week"],.wy-form input[type="number"],.wy-form input[type="search"],.wy-form input[type="tel"],.wy-form input[type="color"]{margin-bottom:.3em;display:block}.wy-form label{margin-bottom:.3em;display:block}.wy-form input[type="password"],.wy-form input[type="email"],.wy-form input[type="url"],.wy-form input[type="date"],.wy-form input[type="month"],.wy-form input[type="time"],.wy-form input[type="datetime"],.wy-form input[type="datetime-local"],.wy-form input[type="week"],.wy-form input[type="number"],.wy-form input[type="search"],.wy-form input[type="tel"],.wy-form input[type="color"]{margin-bottom:0}.wy-form-aligned .wy-control-group label{margin-bottom:.3em;text-align:left;display:block;width:100%}.wy-form-aligned .wy-control{margin:1.5em 0 0 0}.wy-form .wy-help-inline,.wy-form-message-inline,.wy-form-message{display:block;font-size:80%;padding:6px 0}}@media screen and (max-width: 768px){.tablet-hide{display:none}}@media screen and (max-width: 480px){.mobile-hide{display:none}}.float-left{float:left}.float-right{float:right}.full-width{width:100%}.wy-table,.rst-content table.docutils,.rst-content table.field-list{border-collapse:collapse;border-spacing:0;empty-cells:show;margin-bottom:24px}.wy-table caption,.rst-content table.docutils caption,.rst-content table.field-list caption{color:#000;font:italic 85%/1 arial,sans-serif;padding:1em 0;text-align:center}.wy-table td,.rst-content table.docutils td,.rst-content table.field-list td,.wy-table th,.rst-content table.docutils th,.rst-content table.field-list th{font-size:90%;margin:0;overflow:visible;padding:8px 16px}.wy-table td:first-child,.rst-content table.docutils td:first-child,.rst-content table.field-list td:first-child,.wy-table th:first-child,.rst-content table.docutils th:first-child,.rst-content table.field-list th:first-child{border-left-width:0}.wy-table thead,.rst-content table.docutils thead,.rst-content table.field-list thead{color:#000;text-align:left;vertical-align:bottom;white-space:nowrap}.wy-table thead th,.rst-content table.docutils thead th,.rst-content table.field-list thead th{font-weight:bold;border-bottom:solid 2px #e1e4e5}.wy-table td,.rst-content table.docutils td,.rst-content table.field-list td{background-color:transparent;vertical-align:middle}.wy-table td p,.rst-content table.docutils td p,.rst-content table.field-list td p{line-height:18px}.wy-table td p:last-child,.rst-content table.docutils td p:last-child,.rst-content table.field-list td p:last-child{margin-bottom:0}.wy-table .wy-table-cell-min,.rst-content table.docutils .wy-table-cell-min,.rst-content table.field-list .wy-table-cell-min{width:1%;padding-right:0}.wy-table .wy-table-cell-min input[type=checkbox],.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox],.wy-table .wy-table-cell-min input[type=checkbox],.rst-content table.docutils .wy-table-cell-min input[type=checkbox],.rst-content table.field-list .wy-table-cell-min input[type=checkbox]{margin:0}.wy-table-secondary{color:gray;font-size:90%}.wy-table-tertiary{color:gray;font-size:80%}.wy-table-odd td,.wy-table-striped tr:nth-child(2n-1) td,.rst-content table.docutils:not(.field-list) tr:nth-child(2n-1) td{background-color:#f3f6f6}.wy-table-backed{background-color:#f3f6f6}.wy-table-bordered-all,.rst-content table.docutils{border:1px solid #e1e4e5}.wy-table-bordered-all td,.rst-content table.docutils td{border-bottom:1px solid #e1e4e5;border-left:1px solid #e1e4e5}.wy-table-bordered-all tbody>tr:last-child td,.rst-content table.docutils tbody>tr:last-child td{border-bottom-width:0}.wy-table-bordered{border:1px solid #e1e4e5}.wy-table-bordered-rows td{border-bottom:1px solid #e1e4e5}.wy-table-bordered-rows tbody>tr:last-child td{border-bottom-width:0}.wy-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.wy-table-horizontal td,.wy-table-horizontal th{border-width:0 0 1px 0;border-bottom:1px solid #e1e4e5}.wy-table-horizontal tbody>tr:last-child td{border-bottom-width:0}.wy-table-responsive{margin-bottom:24px;max-width:100%;overflow:auto}.wy-table-responsive table{margin-bottom:0 !important}.wy-table-responsive table td,.wy-table-responsive table th{white-space:nowrap}a{color:#2980B9;text-decoration:none;cursor:pointer}a:hover{color:#3091d1}a:visited{color:#9B59B6}html{height:100%;overflow-x:hidden}body{font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;font-weight:normal;color:#404040;min-height:100%;overflow-x:hidden;background:#edf0f2}.wy-text-left{text-align:left}.wy-text-center{text-align:center}.wy-text-right{text-align:right}.wy-text-large{font-size:120%}.wy-text-normal{font-size:100%}.wy-text-small,small{font-size:80%}.wy-text-strike{text-decoration:line-through}.wy-text-warning{color:#E67E22 !important}a.wy-text-warning:hover{color:#eb9950 !important}.wy-text-info{color:#2980B9 !important}a.wy-text-info:hover{color:#409ad5 !important}.wy-text-success{color:#27AE60 !important}a.wy-text-success:hover{color:#36d278 !important}.wy-text-danger{color:#E74C3C !important}a.wy-text-danger:hover{color:#ed7669 !important}.wy-text-neutral{color:#404040 !important}a.wy-text-neutral:hover{color:#595959 !important}h1,h2,.rst-content .toctree-wrapper p.caption,h3,h4,h5,h6,legend{margin-top:0;font-weight:700;font-family:"Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif}p{line-height:24px;margin:0;font-size:16px;margin-bottom:24px}h1{font-size:175%}h2,.rst-content .toctree-wrapper p.caption{font-size:150%}h3{font-size:125%}h4{font-size:115%}h5{font-size:110%}h6{font-size:100%}hr{display:block;height:1px;border:0;border-top:1px solid #e1e4e5;margin:24px 0;padding:0}code,.rst-content tt,.rst-content code{white-space:nowrap;max-width:100%;background:#fff;border:solid 1px #e1e4e5;font-size:75%;padding:0 5px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",Courier,monospace;color:#E74C3C;overflow-x:auto}code.code-large,.rst-content tt.code-large{font-size:90%}.wy-plain-list-disc,.rst-content .section ul,.rst-content .toctree-wrapper ul,article ul{list-style:disc;line-height:24px;margin-bottom:24px}.wy-plain-list-disc li,.rst-content .section ul li,.rst-content .toctree-wrapper ul li,article ul li{list-style:disc;margin-left:24px}.wy-plain-list-disc li p:last-child,.rst-content .section ul li p:last-child,.rst-content .toctree-wrapper ul li p:last-child,article ul li p:last-child{margin-bottom:0}.wy-plain-list-disc li ul,.rst-content .section ul li ul,.rst-content .toctree-wrapper ul li ul,article ul li ul{margin-bottom:0}.wy-plain-list-disc li li,.rst-content .section ul li li,.rst-content .toctree-wrapper ul li li,article ul li li{list-style:circle}.wy-plain-list-disc li li li,.rst-content .section ul li li li,.rst-content .toctree-wrapper ul li li li,article ul li li li{list-style:square}.wy-plain-list-disc li ol li,.rst-content .section ul li ol li,.rst-content .toctree-wrapper ul li ol li,article ul li ol li{list-style:decimal}.wy-plain-list-decimal,.rst-content .section ol,.rst-content ol.arabic,article ol{list-style:decimal;line-height:24px;margin-bottom:24px}.wy-plain-list-decimal li,.rst-content .section ol li,.rst-content ol.arabic li,article ol li{list-style:decimal;margin-left:24px}.wy-plain-list-decimal li p:last-child,.rst-content .section ol li p:last-child,.rst-content ol.arabic li p:last-child,article ol li p:last-child{margin-bottom:0}.wy-plain-list-decimal li ul,.rst-content .section ol li ul,.rst-content ol.arabic li ul,article ol li ul{margin-bottom:0}.wy-plain-list-decimal li ul li,.rst-content .section ol li ul li,.rst-content ol.arabic li ul li,article ol li ul li{list-style:disc}.wy-breadcrumbs{*zoom:1}.wy-breadcrumbs:before,.wy-breadcrumbs:after{display:table;content:""}.wy-breadcrumbs:after{clear:both}.wy-breadcrumbs li{display:inline-block}.wy-breadcrumbs li.wy-breadcrumbs-aside{float:right}.wy-breadcrumbs li a{display:inline-block;padding:5px}.wy-breadcrumbs li a:first-child{padding-left:0}.wy-breadcrumbs li code,.wy-breadcrumbs li .rst-content tt,.rst-content .wy-breadcrumbs li tt{padding:5px;border:none;background:none}.wy-breadcrumbs li code.literal,.wy-breadcrumbs li .rst-content tt.literal,.rst-content .wy-breadcrumbs li tt.literal{color:#404040}.wy-breadcrumbs-extra{margin-bottom:0;color:#b3b3b3;font-size:80%;display:inline-block}@media screen and (max-width: 480px){.wy-breadcrumbs-extra{display:none}.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}@media print{.wy-breadcrumbs li.wy-breadcrumbs-aside{display:none}}.wy-affix{position:fixed;top:1.618em}.wy-menu a:hover{text-decoration:none}.wy-menu-horiz{*zoom:1}.wy-menu-horiz:before,.wy-menu-horiz:after{display:table;content:""}.wy-menu-horiz:after{clear:both}.wy-menu-horiz ul,.wy-menu-horiz li{display:inline-block}.wy-menu-horiz li:hover{background:rgba(255,255,255,0.1)}.wy-menu-horiz li.divide-left{border-left:solid 1px #404040}.wy-menu-horiz li.divide-right{border-right:solid 1px #404040}.wy-menu-horiz a{height:32px;display:inline-block;line-height:32px;padding:0 16px}.wy-menu-vertical{width:300px}.wy-menu-vertical header,.wy-menu-vertical p.caption{height:32px;display:inline-block;line-height:32px;padding:0 1.618em;margin-bottom:0;display:block;font-weight:bold;text-transform:uppercase;font-size:80%;white-space:nowrap}.wy-menu-vertical ul{margin-bottom:0}.wy-menu-vertical li.divide-top{border-top:solid 1px #404040}.wy-menu-vertical li.divide-bottom{border-bottom:solid 1px #404040}.wy-menu-vertical li.current{background:#e3e3e3}.wy-menu-vertical li.current a{color:gray;border-right:solid 1px #c9c9c9;padding:.4045em 2.427em}.wy-menu-vertical li.current a:hover{background:#d6d6d6}.wy-menu-vertical li code,.wy-menu-vertical li .rst-content tt,.rst-content .wy-menu-vertical li tt{border:none;background:inherit;color:inherit;padding-left:0;padding-right:0}.wy-menu-vertical li span.toctree-expand{display:block;float:left;margin-left:-1.2em;font-size:.8em;line-height:1.6em;color:#4d4d4d}.wy-menu-vertical li.on a,.wy-menu-vertical li.current>a{color:#404040;padding:.4045em 1.618em;font-weight:bold;position:relative;background:#fcfcfc;border:none;padding-left:1.618em -4px}.wy-menu-vertical li.on a:hover,.wy-menu-vertical li.current>a:hover{background:#fcfcfc}.wy-menu-vertical li.on a:hover span.toctree-expand,.wy-menu-vertical li.current>a:hover span.toctree-expand{color:gray}.wy-menu-vertical li.on a span.toctree-expand,.wy-menu-vertical li.current>a span.toctree-expand{display:block;font-size:.8em;line-height:1.6em;color:#333}.wy-menu-vertical li.toctree-l1.current>a{border-bottom:solid 1px #c9c9c9;border-top:solid 1px #c9c9c9}.wy-menu-vertical li.toctree-l2 a,.wy-menu-vertical li.toctree-l3 a,.wy-menu-vertical li.toctree-l4 a{color:#404040}.wy-menu-vertical li.toctree-l1.current li.toctree-l2>ul,.wy-menu-vertical li.toctree-l2.current li.toctree-l3>ul{display:none}.wy-menu-vertical li.toctree-l1.current li.toctree-l2.current>ul,.wy-menu-vertical li.toctree-l2.current li.toctree-l3.current>ul{display:block}.wy-menu-vertical li.toctree-l2.current>a{background:#c9c9c9;padding:.4045em 2.427em}.wy-menu-vertical li.toctree-l2.current li.toctree-l3>a{display:block;background:#c9c9c9;padding:.4045em 4.045em}.wy-menu-vertical li.toctree-l2 a:hover span.toctree-expand{color:gray}.wy-menu-vertical li.toctree-l2 span.toctree-expand{color:#a3a3a3}.wy-menu-vertical li.toctree-l3{font-size:.9em}.wy-menu-vertical li.toctree-l3.current>a{background:#bdbdbd;padding:.4045em 4.045em}.wy-menu-vertical li.toctree-l3.current li.toctree-l4>a{display:block;background:#bdbdbd;padding:.4045em 5.663em}.wy-menu-vertical li.toctree-l3 a:hover span.toctree-expand{color:gray}.wy-menu-vertical li.toctree-l3 span.toctree-expand{color:#969696}.wy-menu-vertical li.toctree-l4{font-size:.9em}.wy-menu-vertical li.current ul{display:block}.wy-menu-vertical li ul{margin-bottom:0;display:none}.wy-menu-vertical li ul li a{margin-bottom:0;color:#d9d9d9;font-weight:normal}.wy-menu-vertical a{display:inline-block;line-height:18px;padding:.4045em 1.618em;display:block;position:relative;font-size:90%;color:#d9d9d9}.wy-menu-vertical a:hover{background-color:#4e4a4a;cursor:pointer}.wy-menu-vertical a:hover span.toctree-expand{color:#d9d9d9}.wy-menu-vertical a:active{background-color:#2980B9;cursor:pointer;color:#fff}.wy-menu-vertical a:active span.toctree-expand{color:#fff}.wy-side-nav-search{display:block;width:300px;padding:.809em;margin-bottom:.809em;z-index:200;background-color:#2980B9;text-align:center;padding:.809em;display:block;color:#fcfcfc;margin-bottom:.809em}.wy-side-nav-search input[type=text]{width:100%;border-radius:50px;padding:6px 12px;border-color:#2472a4}.wy-side-nav-search img{display:block;margin:auto auto .809em auto;height:45px;width:45px;background-color:#2980B9;padding:5px;border-radius:100%}.wy-side-nav-search>a,.wy-side-nav-search .wy-dropdown>a{color:#fcfcfc;font-size:100%;font-weight:bold;display:inline-block;padding:4px 6px;margin-bottom:.809em}.wy-side-nav-search>a:hover,.wy-side-nav-search .wy-dropdown>a:hover{background:rgba(255,255,255,0.1)}.wy-side-nav-search>a img.logo,.wy-side-nav-search .wy-dropdown>a img.logo{display:block;margin:0 auto;height:auto;width:auto;border-radius:0;max-width:100%;background:transparent}.wy-side-nav-search>a.icon img.logo,.wy-side-nav-search .wy-dropdown>a.icon img.logo{margin-top:.85em}.wy-side-nav-search>div.version{margin-top:-.4045em;margin-bottom:.809em;font-weight:normal;color:rgba(255,255,255,0.3)}.wy-nav .wy-menu-vertical header{color:#2980B9}.wy-nav .wy-menu-vertical a{color:#b3b3b3}.wy-nav .wy-menu-vertical a:hover{background-color:#2980B9;color:#fff}[data-menu-wrap]{-webkit-transition:all .2s ease-in;-moz-transition:all .2s ease-in;transition:all .2s ease-in;position:absolute;opacity:1;width:100%;opacity:0}[data-menu-wrap].move-center{left:0;right:auto;opacity:1}[data-menu-wrap].move-left{right:auto;left:-100%;opacity:0}[data-menu-wrap].move-right{right:-100%;left:auto;opacity:0}.wy-body-for-nav{background:#fcfcfc}.wy-grid-for-nav{position:absolute;width:100%;height:100%}.wy-nav-side{position:fixed;top:0;bottom:0;left:0;padding-bottom:2em;width:300px;overflow-x:hidden;overflow-y:hidden;min-height:100%;color:#9b9b9b;background:#343131;z-index:200}.wy-side-scroll{width:320px;position:relative;overflow-x:hidden;overflow-y:scroll;height:100%}.wy-nav-top{display:none;background:#2980B9;color:#fff;padding:.4045em .809em;position:relative;line-height:50px;text-align:center;font-size:100%;*zoom:1}.wy-nav-top:before,.wy-nav-top:after{display:table;content:""}.wy-nav-top:after{clear:both}.wy-nav-top a{color:#fff;font-weight:bold}.wy-nav-top img{margin-right:12px;height:45px;width:45px;background-color:#2980B9;padding:5px;border-radius:100%}.wy-nav-top i{font-size:30px;float:left;cursor:pointer;padding-top:inherit}.wy-nav-content-wrap{margin-left:300px;background:#fcfcfc;min-height:100%}.wy-nav-content{padding:1.618em 3.236em;height:100%;max-width:800px;margin:auto}.wy-body-mask{position:fixed;width:100%;height:100%;background:rgba(0,0,0,0.2);display:none;z-index:499}.wy-body-mask.on{display:block}footer{color:gray}footer p{margin-bottom:12px}footer span.commit code,footer span.commit .rst-content tt,.rst-content footer span.commit tt{padding:0px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",Courier,monospace;font-size:1em;background:none;border:none;color:gray}.rst-footer-buttons{*zoom:1}.rst-footer-buttons:before,.rst-footer-buttons:after{width:100%}.rst-footer-buttons:before,.rst-footer-buttons:after{display:table;content:""}.rst-footer-buttons:after{clear:both}.rst-breadcrumbs-buttons{margin-top:12px;*zoom:1}.rst-breadcrumbs-buttons:before,.rst-breadcrumbs-buttons:after{display:table;content:""}.rst-breadcrumbs-buttons:after{clear:both}#search-results .search li{margin-bottom:24px;border-bottom:solid 1px #e1e4e5;padding-bottom:24px}#search-results .search li:first-child{border-top:solid 1px #e1e4e5;padding-top:24px}#search-results .search li a{font-size:120%;margin-bottom:12px;display:inline-block}#search-results .context{color:gray;font-size:90%}@media screen and (max-width: 768px){.wy-body-for-nav{background:#fcfcfc}.wy-nav-top{display:block}.wy-nav-side{left:-300px}.wy-nav-side.shift{width:85%;left:0}.wy-side-scroll{width:auto}.wy-side-nav-search{width:auto}.wy-menu.wy-menu-vertical{width:auto}.wy-nav-content-wrap{margin-left:0}.wy-nav-content-wrap .wy-nav-content{padding:1.618em}.wy-nav-content-wrap.shift{position:fixed;min-width:100%;left:85%;top:0;height:100%;overflow:hidden}}@media screen and (min-width: 1100px){.wy-nav-content-wrap{background:rgba(0,0,0,0.05)}.wy-nav-content{margin:0;background:#fcfcfc}}@media print{.rst-versions,footer,.wy-nav-side{display:none}.wy-nav-content-wrap{margin-left:0}}.rst-versions{position:fixed;bottom:0;left:0;width:300px;color:#fcfcfc;background:#1f1d1d;font-family:"Lato","proxima-nova","Helvetica Neue",Arial,sans-serif;z-index:400}.rst-versions a{color:#2980B9;text-decoration:none}.rst-versions .rst-badge-small{display:none}.rst-versions .rst-current-version{padding:12px;background-color:#272525;display:block;text-align:right;font-size:90%;cursor:pointer;color:#27AE60;*zoom:1}.rst-versions .rst-current-version:before,.rst-versions .rst-current-version:after{display:table;content:""}.rst-versions .rst-current-version:after{clear:both}.rst-versions .rst-current-version .fa,.rst-versions .rst-current-version .wy-menu-vertical li span.toctree-expand,.wy-menu-vertical li .rst-versions .rst-current-version span.toctree-expand,.rst-versions .rst-current-version .rst-content .admonition-title,.rst-content .rst-versions .rst-current-version .admonition-title,.rst-versions .rst-current-version .rst-content h1 .headerlink,.rst-content h1 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h2 .headerlink,.rst-content h2 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h3 .headerlink,.rst-content h3 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h4 .headerlink,.rst-content h4 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h5 .headerlink,.rst-content h5 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content h6 .headerlink,.rst-content h6 .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content dl dt .headerlink,.rst-content dl dt .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content p.caption .headerlink,.rst-content p.caption .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content table>caption .headerlink,.rst-content table>caption .rst-versions .rst-current-version .headerlink,.rst-versions .rst-current-version .rst-content tt.download span:first-child,.rst-content tt.download .rst-versions .rst-current-version span:first-child,.rst-versions .rst-current-version .rst-content code.download span:first-child,.rst-content code.download .rst-versions .rst-current-version span:first-child,.rst-versions .rst-current-version .icon{color:#fcfcfc}.rst-versions .rst-current-version .fa-book,.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version .icon-book{float:left}.rst-versions .rst-current-version.rst-out-of-date{background-color:#E74C3C;color:#fff}.rst-versions .rst-current-version.rst-active-old-version{background-color:#F1C40F;color:#000}.rst-versions.shift-up{height:auto;max-height:100%}.rst-versions.shift-up .rst-other-versions{display:block}.rst-versions .rst-other-versions{font-size:90%;padding:12px;color:gray;display:none}.rst-versions .rst-other-versions hr{display:block;height:1px;border:0;margin:20px 0;padding:0;border-top:solid 1px #413d3d}.rst-versions .rst-other-versions dd{display:inline-block;margin:0}.rst-versions .rst-other-versions dd a{display:inline-block;padding:6px;color:#fcfcfc}.rst-versions.rst-badge{width:auto;bottom:20px;right:20px;left:auto;border:none;max-width:300px}.rst-versions.rst-badge .icon-book{float:none}.rst-versions.rst-badge .fa-book,.rst-versions.rst-badge .icon-book{float:none}.rst-versions.rst-badge.shift-up .rst-current-version{text-align:right}.rst-versions.rst-badge.shift-up .rst-current-version .fa-book,.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge.shift-up .rst-current-version .icon-book{float:left}.rst-versions.rst-badge .rst-current-version{width:auto;height:30px;line-height:30px;padding:0 6px;display:block;text-align:center}@media screen and (max-width: 768px){.rst-versions{width:85%;display:none}.rst-versions.shift{display:block}}.rst-content img{max-width:100%;height:auto}.rst-content div.figure{margin-bottom:24px}.rst-content div.figure p.caption{font-style:italic}.rst-content div.figure p:last-child.caption{margin-bottom:0px}.rst-content div.figure.align-center{text-align:center}.rst-content .section>img,.rst-content .section>a>img{margin-bottom:24px}.rst-content abbr[title]{text-decoration:none}.rst-content.style-external-links a.reference.external:after{font-family:FontAwesome;content:"";color:#b3b3b3;vertical-align:super;font-size:60%;margin:0 .2em}.rst-content blockquote{margin-left:24px;line-height:24px;margin-bottom:24px}.rst-content pre.literal-block{white-space:pre;margin:0;padding:12px 12px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",Courier,monospace;display:block;overflow:auto}.rst-content pre.literal-block,.rst-content div[class^='highlight']{border:1px solid #e1e4e5;overflow-x:auto;margin:1px 0 24px 0}.rst-content pre.literal-block div[class^='highlight'],.rst-content div[class^='highlight'] div[class^='highlight']{padding:0px;border:none;margin:0}.rst-content div[class^='highlight'] td.code{width:100%}.rst-content .linenodiv pre{border-right:solid 1px #e6e9ea;margin:0;padding:12px 12px;font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",Courier,monospace;user-select:none;pointer-events:none}.rst-content div[class^='highlight'] pre{white-space:pre;margin:0;padding:12px 12px;display:block;overflow:auto}.rst-content div[class^='highlight'] pre .hll{display:block;margin:0 -12px;padding:0 12px}.rst-content pre.literal-block,.rst-content div[class^='highlight'] pre,.rst-content .linenodiv pre{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",Courier,monospace;font-size:12px;line-height:1.4}@media print{.rst-content .codeblock,.rst-content div[class^='highlight'],.rst-content div[class^='highlight'] pre{white-space:pre-wrap}}.rst-content .note .last,.rst-content .attention .last,.rst-content .caution .last,.rst-content .danger .last,.rst-content .error .last,.rst-content .hint .last,.rst-content .important .last,.rst-content .tip .last,.rst-content .warning .last,.rst-content .seealso .last,.rst-content .admonition-todo .last,.rst-content .admonition .last{margin-bottom:0}.rst-content .admonition-title:before{margin-right:4px}.rst-content .admonition table{border-color:rgba(0,0,0,0.1)}.rst-content .admonition table td,.rst-content .admonition table th{background:transparent !important;border-color:rgba(0,0,0,0.1) !important}.rst-content .section ol.loweralpha,.rst-content .section ol.loweralpha li{list-style:lower-alpha}.rst-content .section ol.upperalpha,.rst-content .section ol.upperalpha li{list-style:upper-alpha}.rst-content .section ol p,.rst-content .section ul p{margin-bottom:12px}.rst-content .section ol p:last-child,.rst-content .section ul p:last-child{margin-bottom:24px}.rst-content .line-block{margin-left:0px;margin-bottom:24px;line-height:24px}.rst-content .line-block .line-block{margin-left:24px;margin-bottom:0px}.rst-content .topic-title{font-weight:bold;margin-bottom:12px}.rst-content .toc-backref{color:#404040}.rst-content .align-right{float:right;margin:0px 0px 24px 24px}.rst-content .align-left{float:left;margin:0px 24px 24px 0px}.rst-content .align-center{margin:auto}.rst-content .align-center:not(table){display:block}.rst-content h1 .headerlink,.rst-content h2 .headerlink,.rst-content .toctree-wrapper p.caption .headerlink,.rst-content h3 .headerlink,.rst-content h4 .headerlink,.rst-content h5 .headerlink,.rst-content h6 .headerlink,.rst-content dl dt .headerlink,.rst-content p.caption .headerlink,.rst-content table>caption .headerlink{visibility:hidden;font-size:14px}.rst-content h1 .headerlink:after,.rst-content h2 .headerlink:after,.rst-content .toctree-wrapper p.caption .headerlink:after,.rst-content h3 .headerlink:after,.rst-content h4 .headerlink:after,.rst-content h5 .headerlink:after,.rst-content h6 .headerlink:after,.rst-content dl dt .headerlink:after,.rst-content p.caption .headerlink:after,.rst-content table>caption .headerlink:after{content:"";font-family:FontAwesome}.rst-content h1:hover .headerlink:after,.rst-content h2:hover .headerlink:after,.rst-content .toctree-wrapper p.caption:hover .headerlink:after,.rst-content h3:hover .headerlink:after,.rst-content h4:hover .headerlink:after,.rst-content h5:hover .headerlink:after,.rst-content h6:hover .headerlink:after,.rst-content dl dt:hover .headerlink:after,.rst-content p.caption:hover .headerlink:after,.rst-content table>caption:hover .headerlink:after{visibility:visible}.rst-content table>caption .headerlink:after{font-size:12px}.rst-content .centered{text-align:center}.rst-content .sidebar{float:right;width:40%;display:block;margin:0 0 24px 24px;padding:24px;background:#f3f6f6;border:solid 1px #e1e4e5}.rst-content .sidebar p,.rst-content .sidebar ul,.rst-content .sidebar dl{font-size:90%}.rst-content .sidebar .last{margin-bottom:0}.rst-content .sidebar .sidebar-title{display:block;font-family:"Roboto Slab","ff-tisa-web-pro","Georgia",Arial,sans-serif;font-weight:bold;background:#e1e4e5;padding:6px 12px;margin:-24px;margin-bottom:24px;font-size:100%}.rst-content .highlighted{background:#F1C40F;display:inline-block;font-weight:bold;padding:0 6px}.rst-content .footnote-reference,.rst-content .citation-reference{vertical-align:baseline;position:relative;top:-0.4em;line-height:0;font-size:90%}.rst-content table.docutils.citation,.rst-content table.docutils.footnote{background:none;border:none;color:gray}.rst-content table.docutils.citation td,.rst-content table.docutils.citation tr,.rst-content table.docutils.footnote td,.rst-content table.docutils.footnote tr{border:none;background-color:transparent !important;white-space:normal}.rst-content table.docutils.citation td.label,.rst-content table.docutils.footnote td.label{padding-left:0;padding-right:0;vertical-align:top}.rst-content table.docutils.citation tt,.rst-content table.docutils.citation code,.rst-content table.docutils.footnote tt,.rst-content table.docutils.footnote code{color:#555}.rst-content .wy-table-responsive.citation,.rst-content .wy-table-responsive.footnote{margin-bottom:0}.rst-content .wy-table-responsive.citation+:not(.citation),.rst-content .wy-table-responsive.footnote+:not(.footnote){margin-top:24px}.rst-content .wy-table-responsive.citation:last-child,.rst-content .wy-table-responsive.footnote:last-child{margin-bottom:24px}.rst-content table.docutils th{border-color:#e1e4e5}.rst-content table.docutils td .last,.rst-content table.docutils td .last :last-child{margin-bottom:0}.rst-content table.field-list{border:none}.rst-content table.field-list td{border:none}.rst-content table.field-list td>strong{display:inline-block}.rst-content table.field-list .field-name{padding-right:10px;text-align:left;white-space:nowrap}.rst-content table.field-list .field-body{text-align:left}.rst-content tt,.rst-content tt,.rst-content code{color:#000;font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",Courier,monospace;padding:2px 5px}.rst-content tt big,.rst-content tt em,.rst-content tt big,.rst-content code big,.rst-content tt em,.rst-content code em{font-size:100% !important;line-height:normal}.rst-content tt.literal,.rst-content tt.literal,.rst-content code.literal{color:#E74C3C}.rst-content tt.xref,a .rst-content tt,.rst-content tt.xref,.rst-content code.xref,a .rst-content tt,a .rst-content code{font-weight:bold;color:#404040}.rst-content pre,.rst-content kbd,.rst-content samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",Courier,monospace}.rst-content a tt,.rst-content a tt,.rst-content a code{color:#2980B9}.rst-content dl{margin-bottom:24px}.rst-content dl dt{font-weight:bold;margin-bottom:12px}.rst-content dl p,.rst-content dl table,.rst-content dl ul,.rst-content dl ol{margin-bottom:12px !important}.rst-content dl dd{margin:0 0 12px 24px;line-height:24px}.rst-content dl:not(.docutils){margin-bottom:24px}.rst-content dl:not(.docutils) dt{display:table;margin:6px 0;font-size:90%;line-height:normal;background:#e7f2fa;color:#2980B9;border-top:solid 3px #6ab0de;padding:6px;position:relative}.rst-content dl:not(.docutils) dt:before{color:#6ab0de}.rst-content dl:not(.docutils) dt .headerlink{color:#404040;font-size:100% !important}.rst-content dl:not(.docutils) dl dt{margin-bottom:6px;border:none;border-left:solid 3px #ccc;background:#f0f0f0;color:#555}.rst-content dl:not(.docutils) dl dt .headerlink{color:#404040;font-size:100% !important}.rst-content dl:not(.docutils) dt:first-child{margin-top:0}.rst-content dl:not(.docutils) tt,.rst-content dl:not(.docutils) tt,.rst-content dl:not(.docutils) code{font-weight:bold}.rst-content dl:not(.docutils) tt.descname,.rst-content dl:not(.docutils) tt.descclassname,.rst-content dl:not(.docutils) tt.descname,.rst-content dl:not(.docutils) code.descname,.rst-content dl:not(.docutils) tt.descclassname,.rst-content dl:not(.docutils) code.descclassname{background-color:transparent;border:none;padding:0;font-size:100% !important}.rst-content dl:not(.docutils) tt.descname,.rst-content dl:not(.docutils) tt.descname,.rst-content dl:not(.docutils) code.descname{font-weight:bold}.rst-content dl:not(.docutils) .optional{display:inline-block;padding:0 4px;color:#000;font-weight:bold}.rst-content dl:not(.docutils) .property{display:inline-block;padding-right:8px}.rst-content .viewcode-link,.rst-content .viewcode-back{display:inline-block;color:#27AE60;font-size:80%;padding-left:24px}.rst-content .viewcode-back{display:block;float:right}.rst-content p.rubric{margin-bottom:12px;font-weight:bold}.rst-content tt.download,.rst-content code.download{background:inherit;padding:inherit;font-weight:normal;font-family:inherit;font-size:inherit;color:inherit;border:inherit;white-space:inherit}.rst-content tt.download span:first-child,.rst-content code.download span:first-child{-webkit-font-smoothing:subpixel-antialiased}.rst-content tt.download span:first-child:before,.rst-content code.download span:first-child:before{margin-right:4px}.rst-content .guilabel{border:1px solid #7fbbe3;background:#e7f2fa;font-size:80%;font-weight:700;border-radius:4px;padding:2.4px 6px;margin:auto 2px}.rst-content .versionmodified{font-style:italic}@media screen and (max-width: 480px){.rst-content .sidebar{width:100%}}span[id*='MathJax-Span']{color:#404040}.math{text-align:center}@font-face{font-family:"Lato";src:url("../fonts/Lato/lato-regular.eot");src:url("../fonts/Lato/lato-regular.eot?#iefix") format("embedded-opentype"),url("../fonts/Lato/lato-regular.woff2") format("woff2"),url("../fonts/Lato/lato-regular.woff") format("woff"),url("../fonts/Lato/lato-regular.ttf") format("truetype");font-weight:400;font-style:normal}@font-face{font-family:"Lato";src:url("../fonts/Lato/lato-bold.eot");src:url("../fonts/Lato/lato-bold.eot?#iefix") format("embedded-opentype"),url("../fonts/Lato/lato-bold.woff2") format("woff2"),url("../fonts/Lato/lato-bold.woff") format("woff"),url("../fonts/Lato/lato-bold.ttf") format("truetype");font-weight:700;font-style:normal}@font-face{font-family:"Lato";src:url("../fonts/Lato/lato-bolditalic.eot");src:url("../fonts/Lato/lato-bolditalic.eot?#iefix") format("embedded-opentype"),url("../fonts/Lato/lato-bolditalic.woff2") format("woff2"),url("../fonts/Lato/lato-bolditalic.woff") format("woff"),url("../fonts/Lato/lato-bolditalic.ttf") format("truetype");font-weight:700;font-style:italic}@font-face{font-family:"Lato";src:url("../fonts/Lato/lato-italic.eot");src:url("../fonts/Lato/lato-italic.eot?#iefix") format("embedded-opentype"),url("../fonts/Lato/lato-italic.woff2") format("woff2"),url("../fonts/Lato/lato-italic.woff") format("woff"),url("../fonts/Lato/lato-italic.ttf") format("truetype");font-weight:400;font-style:italic}@font-face{font-family:"Roboto Slab";font-style:normal;font-weight:400;src:url("../fonts/RobotoSlab/roboto-slab.eot");src:url("../fonts/RobotoSlab/roboto-slab-v7-regular.eot?#iefix") format("embedded-opentype"),url("../fonts/RobotoSlab/roboto-slab-v7-regular.woff2") format("woff2"),url("../fonts/RobotoSlab/roboto-slab-v7-regular.woff") format("woff"),url("../fonts/RobotoSlab/roboto-slab-v7-regular.ttf") format("truetype")}@font-face{font-family:"Roboto Slab";font-style:normal;font-weight:700;src:url("../fonts/RobotoSlab/roboto-slab-v7-bold.eot");src:url("../fonts/RobotoSlab/roboto-slab-v7-bold.eot?#iefix") format("embedded-opentype"),url("../fonts/RobotoSlab/roboto-slab-v7-bold.woff2") format("woff2"),url("../fonts/RobotoSlab/roboto-slab-v7-bold.woff") format("woff"),url("../fonts/RobotoSlab/roboto-slab-v7-bold.ttf") format("truetype")} diff --git a/Microsoft.Graph.PlusPlus.Docs/site/css/theme_extra.css b/Microsoft.Graph.PlusPlus.Docs/site/css/theme_extra.css new file mode 100644 index 0000000..9cb7579 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/css/theme_extra.css @@ -0,0 +1,140 @@ +/* + * Wrap inline code samples otherwise they shoot of the side and + * can't be read at all. + * + * https://github.com/mkdocs/mkdocs/issues/313 + * https://github.com/mkdocs/mkdocs/issues/233 + * https://github.com/mkdocs/mkdocs/issues/834 + */ +.rst-content code { + white-space: pre-wrap; + word-wrap: break-word; + padding: 2px 5px; +} + +/** + * Make code blocks display as blocks and give them the appropriate + * font size and padding. + * + * https://github.com/mkdocs/mkdocs/issues/855 + * https://github.com/mkdocs/mkdocs/issues/834 + * https://github.com/mkdocs/mkdocs/issues/233 + */ +.rst-content pre code { + white-space: pre; + word-wrap: normal; + display: block; + padding: 12px; + font-size: 12px; +} + +/** + * Fix code colors + * + * https://github.com/mkdocs/mkdocs/issues/2027 + */ +.rst-content code { + color: #E74C3C; +} + +.rst-content pre code { + color: #000; + background: #f8f8f8; +} + +/* + * Fix link colors when the link text is inline code. + * + * https://github.com/mkdocs/mkdocs/issues/718 + */ +a code { + color: #2980B9; +} +a:hover code { + color: #3091d1; +} +a:visited code { + color: #9B59B6; +} + +/* + * The CSS classes from highlight.js seem to clash with the + * ReadTheDocs theme causing some code to be incorrectly made + * bold and italic. + * + * https://github.com/mkdocs/mkdocs/issues/411 + */ +pre .cs, pre .c { + font-weight: inherit; + font-style: inherit; +} + +/* + * Fix some issues with the theme and non-highlighted code + * samples. Without and highlighting styles attached the + * formatting is broken. + * + * https://github.com/mkdocs/mkdocs/issues/319 + */ +.rst-content .no-highlight { + display: block; + padding: 0.5em; + color: #333; +} + + +/* + * Additions specific to the search functionality provided by MkDocs + */ + +.search-results { + margin-top: 23px; +} + +.search-results article { + border-top: 1px solid #E1E4E5; + padding-top: 24px; +} + +.search-results article:first-child { + border-top: none; +} + +form .search-query { + width: 100%; + border-radius: 50px; + padding: 6px 12px; /* csslint allow: box-model */ + border-color: #D1D4D5; +} + +/* + * Improve inline code blocks within admonitions. + * + * https://github.com/mkdocs/mkdocs/issues/656 + */ + .rst-content .admonition code { + color: #404040; + border: 1px solid #c7c9cb; + border: 1px solid rgba(0, 0, 0, 0.2); + background: #f8fbfd; + background: rgba(255, 255, 255, 0.7); +} + +/* + * Account for wide tables which go off the side. + * Override borders to avoid wierdness on narrow tables. + * + * https://github.com/mkdocs/mkdocs/issues/834 + * https://github.com/mkdocs/mkdocs/pull/1034 + */ +.rst-content .section .docutils { + width: 100%; + overflow: auto; + display: block; + border: none; +} + +td, th { + border: 1px solid #e1e4e5 !important; /* csslint allow: important */ + border-collapse: collapse; +} diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bold.eot b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bold.eot new file mode 100644 index 0000000..3361183 Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bold.eot differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bold.ttf b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bold.ttf new file mode 100644 index 0000000..29f691d Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bold.ttf differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bold.woff b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bold.woff new file mode 100644 index 0000000..c6dff51 Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bold.woff differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bold.woff2 b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bold.woff2 new file mode 100644 index 0000000..bb19504 Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bold.woff2 differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bolditalic.eot b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bolditalic.eot new file mode 100644 index 0000000..3d41549 Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bolditalic.eot differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bolditalic.ttf b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bolditalic.ttf new file mode 100644 index 0000000..f402040 Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bolditalic.ttf differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bolditalic.woff b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bolditalic.woff new file mode 100644 index 0000000..88ad05b Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bolditalic.woff differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bolditalic.woff2 b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bolditalic.woff2 new file mode 100644 index 0000000..c4e3d80 Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-bolditalic.woff2 differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-italic.eot b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-italic.eot new file mode 100644 index 0000000..3f82642 Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-italic.eot differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-italic.ttf b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-italic.ttf new file mode 100644 index 0000000..b4bfc9b Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-italic.ttf differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-italic.woff b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-italic.woff new file mode 100644 index 0000000..76114bc Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-italic.woff differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-italic.woff2 b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-italic.woff2 new file mode 100644 index 0000000..3404f37 Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-italic.woff2 differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-regular.eot b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-regular.eot new file mode 100644 index 0000000..11e3f2a Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-regular.eot differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-regular.ttf b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-regular.ttf new file mode 100644 index 0000000..74decd9 Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-regular.ttf differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-regular.woff b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-regular.woff new file mode 100644 index 0000000..ae1307f Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-regular.woff differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-regular.woff2 b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-regular.woff2 new file mode 100644 index 0000000..3bf9843 Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/Lato/lato-regular.woff2 differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-bold.eot b/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-bold.eot new file mode 100644 index 0000000..79dc8ef Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-bold.eot differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-bold.ttf b/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-bold.ttf new file mode 100644 index 0000000..df5d1df Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-bold.ttf differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-bold.woff b/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-bold.woff new file mode 100644 index 0000000..6cb6000 Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-bold.woff differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 b/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 new file mode 100644 index 0000000..7059e23 Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-bold.woff2 differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-regular.eot b/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-regular.eot new file mode 100644 index 0000000..2f7ca78 Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-regular.eot differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-regular.ttf b/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-regular.ttf new file mode 100644 index 0000000..eb52a79 Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-regular.ttf differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-regular.woff b/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-regular.woff new file mode 100644 index 0000000..f815f63 Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-regular.woff differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 b/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 new file mode 100644 index 0000000..f2c76e5 Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab-v7-regular.woff2 differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab.eot b/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab.eot new file mode 100644 index 0000000..2f7ca78 Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/RobotoSlab/roboto-slab.eot differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/fontawesome-webfont.eot b/Microsoft.Graph.PlusPlus.Docs/site/fonts/fontawesome-webfont.eot new file mode 100644 index 0000000..e9f60ca Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/fontawesome-webfont.eot differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/fontawesome-webfont.svg b/Microsoft.Graph.PlusPlus.Docs/site/fonts/fontawesome-webfont.svg new file mode 100644 index 0000000..855c845 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/fonts/fontawesome-webfont.svg @@ -0,0 +1,2671 @@ + + + + +Created by FontForge 20120731 at Mon Oct 24 17:37:40 2016 + By ,,, +Copyright Dave Gandy 2016. All rights reserved. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/fontawesome-webfont.ttf b/Microsoft.Graph.PlusPlus.Docs/site/fonts/fontawesome-webfont.ttf new file mode 100644 index 0000000..35acda2 Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/fontawesome-webfont.ttf differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/fontawesome-webfont.woff b/Microsoft.Graph.PlusPlus.Docs/site/fonts/fontawesome-webfont.woff new file mode 100644 index 0000000..400014a Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/fontawesome-webfont.woff differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/fonts/fontawesome-webfont.woff2 b/Microsoft.Graph.PlusPlus.Docs/site/fonts/fontawesome-webfont.woff2 new file mode 100644 index 0000000..4d13fc6 Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/fonts/fontawesome-webfont.woff2 differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/img/favicon.ico b/Microsoft.Graph.PlusPlus.Docs/site/img/favicon.ico new file mode 100644 index 0000000..e85006a Binary files /dev/null and b/Microsoft.Graph.PlusPlus.Docs/site/img/favicon.ico differ diff --git a/Microsoft.Graph.PlusPlus.Docs/site/index.html b/Microsoft.Graph.PlusPlus.Docs/site/index.html new file mode 100644 index 0000000..7660118 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/index.html @@ -0,0 +1,965 @@ + + + + + + + + + + + + Microsoft.Graph.PlusPlus Docs + + + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + +
+
+
+
    +
  • Docs »
  • + + + +
  • Documentation for Microsoft.Graph.PlusPlus
  • +
  • + +
  • +
+ +
+
+
+
+ +

Documentation for Microsoft.Graph.PlusPlus

+

Here you will find the document for the Microsoft.Graph.PlusPlus module!

+

If you would like to view the source code for this module, please visit the Github Repository

+

Commands

+

The following commands are available as part of the module:

+
    +
  • Add-FileToGraphNoteBook
  • +
  • Add-GraphNoteBookPage
  • +
  • Add-GraphTeamChannel
  • +
  • Add-GraphTeamMember
  • +
  • Copy-GraphNoteBookPage
  • +
  • Get-GraphContext
  • +
  • Get-GraphConversation
  • +
  • Get-GraphNoteBook
  • +
  • Get-GraphNoteBookPage
  • +
  • Get-GraphNoteBookSection
  • +
  • Get-GraphTeam
  • +
  • Get-GraphTeamChannel
  • +
  • Get-GraphTeamConversation
  • +
  • Get-GraphTeamThread
  • +
  • New-GraphGroupPlan
  • +
  • New-GraphNoteBookSection
  • +
  • New-GraphSession
  • +
  • New-GraphTeam
  • +
  • Out-GraphNoteBook
  • +
  • Remove-GraphNoteBookPage
  • +
  • Remove-GraphTeam
  • +
  • Remove-GraphTeamMember
  • +
  • Set-GraphDefaultTeam
  • +
  • Update-GraphNoteBookPage
  • +
  • Add-FileToGraphOneNote
  • +
  • Add-GraphEvent
  • +
  • Add-GraphGroupMember
  • +
  • Add-GraphGroupThread
  • +
  • Add-GraphListItem
  • +
  • Add-GraphOneNotePage
  • +
  • Add-GraphOneNoteTab
  • +
  • Add-GraphPlanBucket
  • +
  • Add-GraphPlannerTab
  • +
  • Add-GraphPlanTask
  • +
  • Add-GraphSharePointTab
  • +
  • Add-GraphWikiTab
  • +
  • Connect-Graph
  • +
  • ConvertTo-GraphDateTimeTimeZone
  • +
  • Copy-FromGraphFolder
  • +
  • Copy-GraphOneNotePage
  • +
  • Copy-ToGraphFolder
  • +
  • Expand-GraphConditionalAccessPolicy
  • +
  • Export-GraphGroupMember
  • +
  • Export-GraphUser
  • +
  • Export-GraphWorkSheet
  • +
  • Find-GraphPeople
  • +
  • Get-AccessToken
  • +
  • Get-GraphApplication
  • +
  • Get-GraphBucketTaskList
  • +
  • Get-GraphChannel
  • +
  • Get-GraphChannelReply
  • +
  • Get-GraphConditionalAccessPolicy
  • +
  • Get-GraphContact
  • +
  • Get-GraphDeletedObject
  • +
  • Get-GraphDirectoryLog
  • +
  • Get-GraphDirectoryRole
  • +
  • Get-GraphDirectoryRoleTemplate
  • +
  • Get-GraphDomain
  • +
  • Get-GraphDrive
  • +
  • Get-GraphEvent
  • +
  • Get-GraphGroup
  • +
  • Get-GraphGroupConversation
  • +
  • Get-GraphGroupList
  • +
  • Get-GraphGroupThread
  • +
  • Get-GraphLicense
  • +
  • Get-GraphList
  • +
  • Get-GraphMailFolder
  • +
  • Get-GraphMailItem
  • +
  • Get-GraphMailTips
  • +
  • Get-GraphNamedLocation
  • +
  • Get-GraphOneNoteBook
  • +
  • Get-GraphOneNotePage
  • +
  • Get-GraphOneNoteSection
  • +
  • Get-GraphOrganization
  • +
  • Get-GraphPlan
  • +
  • Get-GraphPlanTask
  • +
  • Get-GraphReminderView
  • +
  • Get-GraphReport
  • +
  • Get-GraphServicePrincipal
  • +
  • Get-GraphSignInLog
  • +
  • Get-GraphSite
  • +
  • Get-GraphSiteColumn
  • +
  • Get-GraphSiteUserList
  • +
  • Get-GraphSKU
  • +
  • Get-GraphTeamsApp
  • +
  • Get-GraphToDoList
  • +
  • Get-GraphUser
  • +
  • Get-GraphUserList
  • +
  • Get-GraphWorkBook
  • +
  • Grant-GraphDirectoryRole
  • +
  • Grant-GraphLicense
  • +
  • Import-GraphGroup
  • +
  • Import-GraphGroupMember
  • +
  • Import-GraphUser
  • +
  • Import-GraphWorksheet
  • +
  • Invoke-GraphRequest
  • +
  • Move-GraphMailItem
  • +
  • New-GraphAttendee
  • +
  • New-GraphBooleanColumn
  • +
  • New-GraphCalculatedColumn
  • +
  • New-GraphChannel
  • +
  • New-GraphChannelMessage
  • +
  • New-GraphChannelReply
  • +
  • New-GraphChoiceColumn
  • +
  • New-GraphColumn
  • +
  • New-GraphContact
  • +
  • New-GraphCurrencyColumn
  • +
  • New-GraphDateTimeColumn
  • +
  • New-GraphFolder
  • +
  • New-GraphGroup
  • +
  • New-GraphInvitation
  • +
  • New-GraphList
  • +
  • New-GraphLookupColumn
  • +
  • New-GraphMailAddress
  • +
  • New-GraphNumberColumn
  • +
  • New-GraphOneNoteSection
  • +
  • New-GraphPersonOrGroupColumn
  • +
  • New-GraphPhysicalAddress
  • +
  • New-GraphRecipient
  • +
  • New-GraphRecurrence
  • +
  • New-GraphTeamPlan
  • +
  • New-GraphTextColumn
  • +
  • New-GraphToDoList
  • +
  • New-GraphToDoTask
  • +
  • New-GraphUser
  • +
  • New-GraphWorkBook
  • +
  • Out-GraphOneNote
  • +
  • Remove-GraphChannel
  • +
  • Remove-GraphContact
  • +
  • Remove-GraphEvent
  • +
  • Remove-GraphGroup
  • +
  • Remove-GraphGroupMember
  • +
  • Remove-GraphGroupThread
  • +
  • Remove-GraphListItem
  • +
  • Remove-GraphOneNotePage
  • +
  • Remove-GraphPlan
  • +
  • Remove-GraphPlanBucket
  • +
  • Remove-GraphPlanTask
  • +
  • Remove-GraphToDoList
  • +
  • Remove-GraphToDoTask
  • +
  • Remove-GraphUser
  • +
  • Rename-GraphPlanBucket
  • +
  • Reset-GraphUserPassword
  • +
  • Restore-GraphDeletedObject
  • +
  • Revoke-GraphDirectoryRole
  • +
  • Revoke-GraphLicense
  • +
  • Save-GraphMailAttachment
  • +
  • Send-GraphGroupReply
  • +
  • Send-GraphMailForward
  • +
  • Send-GraphMailMessage
  • +
  • Send-GraphMailReply
  • +
  • Set-GraphContact
  • +
  • Set-GraphDefaultGroup
  • +
  • Set-GraphEvent
  • +
  • Set-GraphGroup
  • +
  • Set-GraphHomeDrive
  • +
  • Set-GraphListItem
  • +
  • Set-GraphOneNoteHome
  • +
  • Set-GraphOptions
  • +
  • Set-GraphPlanDetails
  • +
  • Set-GraphPlanTask
  • +
  • Set-GraphTeam
  • +
  • Set-GraphUser
  • +
  • Show-GraphFolder
  • +
  • Show-GraphSession
  • +
  • Test-GraphSession
  • +
  • Update-GraphOneNotePage
  • +
  • Update-GraphToDoTask
  • +
  • Get-MgDomainNameerenceByRef_List1
  • +
  • Get-MgDomainServiceConfigurationRecord_List1
  • +
  • Get-MgDomainVerificationDnsRecord_List1
  • +
  • Get-MgDomain_Get1
  • +
  • Get-MgDomain_List1
  • +
  • Get-MgOrganization_List1
  • +
  • Get-MgSubscribedSku_Get1
  • +
  • Get-MgSubscribedSku_List1
  • +
  • New-MgUserTodoListTask_CreateExpanded1
  • +
  • New-MgUserTodoList_CreateExpanded1
  • +
  • Remove-MgUserTodoListTask_Delete1
  • +
  • Remove-MgUserTodoList_Delete1
  • +
  • Remove-MgUser_Delete
  • +
  • Update-MgUserTodoListTask_UpdateExpanded1
  • +
+ +
+
+ + +
+
+ +
+ +
+ +
+ + + + + Next » + + +
+ + + + + + + + + diff --git a/Microsoft.Graph.PlusPlus.Docs/site/js/jquery-2.1.1.min.js b/Microsoft.Graph.PlusPlus.Docs/site/js/jquery-2.1.1.min.js new file mode 100644 index 0000000..e5ace11 --- /dev/null +++ b/Microsoft.Graph.PlusPlus.Docs/site/js/jquery-2.1.1.min.js @@ -0,0 +1,4 @@ +/*! jQuery v2.1.1 | (c) 2005, 2014 jQuery Foundation, Inc. | jquery.org/license */ +!function(a,b){"object"==typeof module&&"object"==typeof module.exports?module.exports=a.document?b(a,!0):function(a){if(!a.document)throw new Error("jQuery requires a window with a document");return b(a)}:b(a)}("undefined"!=typeof window?window:this,function(a,b){var c=[],d=c.slice,e=c.concat,f=c.push,g=c.indexOf,h={},i=h.toString,j=h.hasOwnProperty,k={},l=a.document,m="2.1.1",n=function(a,b){return new n.fn.init(a,b)},o=/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,p=/^-ms-/,q=/-([\da-z])/gi,r=function(a,b){return b.toUpperCase()};n.fn=n.prototype={jquery:m,constructor:n,selector:"",length:0,toArray:function(){return d.call(this)},get:function(a){return null!=a?0>a?this[a+this.length]:this[a]:d.call(this)},pushStack:function(a){var b=n.merge(this.constructor(),a);return b.prevObject=this,b.context=this.context,b},each:function(a,b){return n.each(this,a,b)},map:function(a){return this.pushStack(n.map(this,function(b,c){return a.call(b,c,b)}))},slice:function(){return this.pushStack(d.apply(this,arguments))},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},eq:function(a){var b=this.length,c=+a+(0>a?b:0);return this.pushStack(c>=0&&b>c?[this[c]]:[])},end:function(){return this.prevObject||this.constructor(null)},push:f,sort:c.sort,splice:c.splice},n.extend=n.fn.extend=function(){var a,b,c,d,e,f,g=arguments[0]||{},h=1,i=arguments.length,j=!1;for("boolean"==typeof g&&(j=g,g=arguments[h]||{},h++),"object"==typeof g||n.isFunction(g)||(g={}),h===i&&(g=this,h--);i>h;h++)if(null!=(a=arguments[h]))for(b in a)c=g[b],d=a[b],g!==d&&(j&&d&&(n.isPlainObject(d)||(e=n.isArray(d)))?(e?(e=!1,f=c&&n.isArray(c)?c:[]):f=c&&n.isPlainObject(c)?c:{},g[b]=n.extend(j,f,d)):void 0!==d&&(g[b]=d));return g},n.extend({expando:"jQuery"+(m+Math.random()).replace(/\D/g,""),isReady:!0,error:function(a){throw new Error(a)},noop:function(){},isFunction:function(a){return"function"===n.type(a)},isArray:Array.isArray,isWindow:function(a){return null!=a&&a===a.window},isNumeric:function(a){return!n.isArray(a)&&a-parseFloat(a)>=0},isPlainObject:function(a){return"object"!==n.type(a)||a.nodeType||n.isWindow(a)?!1:a.constructor&&!j.call(a.constructor.prototype,"isPrototypeOf")?!1:!0},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},type:function(a){return null==a?a+"":"object"==typeof a||"function"==typeof a?h[i.call(a)]||"object":typeof a},globalEval:function(a){var b,c=eval;a=n.trim(a),a&&(1===a.indexOf("use strict")?(b=l.createElement("script"),b.text=a,l.head.appendChild(b).parentNode.removeChild(b)):c(a))},camelCase:function(a){return a.replace(p,"ms-").replace(q,r)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,b,c){var d,e=0,f=a.length,g=s(a);if(c){if(g){for(;f>e;e++)if(d=b.apply(a[e],c),d===!1)break}else for(e in a)if(d=b.apply(a[e],c),d===!1)break}else if(g){for(;f>e;e++)if(d=b.call(a[e],e,a[e]),d===!1)break}else for(e in a)if(d=b.call(a[e],e,a[e]),d===!1)break;return a},trim:function(a){return null==a?"":(a+"").replace(o,"")},makeArray:function(a,b){var c=b||[];return null!=a&&(s(Object(a))?n.merge(c,"string"==typeof a?[a]:a):f.call(c,a)),c},inArray:function(a,b,c){return null==b?-1:g.call(b,a,c)},merge:function(a,b){for(var c=+b.length,d=0,e=a.length;c>d;d++)a[e++]=b[d];return a.length=e,a},grep:function(a,b,c){for(var d,e=[],f=0,g=a.length,h=!c;g>f;f++)d=!b(a[f],f),d!==h&&e.push(a[f]);return e},map:function(a,b,c){var d,f=0,g=a.length,h=s(a),i=[];if(h)for(;g>f;f++)d=b(a[f],f,c),null!=d&&i.push(d);else for(f in a)d=b(a[f],f,c),null!=d&&i.push(d);return e.apply([],i)},guid:1,proxy:function(a,b){var c,e,f;return"string"==typeof b&&(c=a[b],b=a,a=c),n.isFunction(a)?(e=d.call(arguments,2),f=function(){return a.apply(b||this,e.concat(d.call(arguments)))},f.guid=a.guid=a.guid||n.guid++,f):void 0},now:Date.now,support:k}),n.each("Boolean Number String Function Array Date RegExp Object Error".split(" "),function(a,b){h["[object "+b+"]"]=b.toLowerCase()});function s(a){var b=a.length,c=n.type(a);return"function"===c||n.isWindow(a)?!1:1===a.nodeType&&b?!0:"array"===c||0===b||"number"==typeof b&&b>0&&b-1 in a}var t=function(a){var b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u="sizzle"+-new Date,v=a.document,w=0,x=0,y=gb(),z=gb(),A=gb(),B=function(a,b){return a===b&&(l=!0),0},C="undefined",D=1<<31,E={}.hasOwnProperty,F=[],G=F.pop,H=F.push,I=F.push,J=F.slice,K=F.indexOf||function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]===a)return b;return-1},L="checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped",M="[\\x20\\t\\r\\n\\f]",N="(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+",O=N.replace("w","w#"),P="\\["+M+"*("+N+")(?:"+M+"*([*^$|!~]?=)"+M+"*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|("+O+"))|)"+M+"*\\]",Q=":("+N+")(?:\\((('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|((?:\\\\.|[^\\\\()[\\]]|"+P+")*)|.*)\\)|)",R=new RegExp("^"+M+"+|((?:^|[^\\\\])(?:\\\\.)*)"+M+"+$","g"),S=new RegExp("^"+M+"*,"+M+"*"),T=new RegExp("^"+M+"*([>+~]|"+M+")"+M+"*"),U=new RegExp("="+M+"*([^\\]'\"]*?)"+M+"*\\]","g"),V=new RegExp(Q),W=new RegExp("^"+O+"$"),X={ID:new RegExp("^#("+N+")"),CLASS:new RegExp("^\\.("+N+")"),TAG:new RegExp("^("+N.replace("w","w*")+")"),ATTR:new RegExp("^"+P),PSEUDO:new RegExp("^"+Q),CHILD:new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\("+M+"*(even|odd|(([+-]|)(\\d*)n|)"+M+"*(?:([+-]|)"+M+"*(\\d+)|))"+M+"*\\)|)","i"),bool:new RegExp("^(?:"+L+")$","i"),needsContext:new RegExp("^"+M+"*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\("+M+"*((?:-\\d)?\\d*)"+M+"*\\)|)(?=[^-]|$)","i")},Y=/^(?:input|select|textarea|button)$/i,Z=/^h\d$/i,$=/^[^{]+\{\s*\[native \w/,_=/^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/,ab=/[+~]/,bb=/'|\\/g,cb=new RegExp("\\\\([\\da-f]{1,6}"+M+"?|("+M+")|.)","ig"),db=function(a,b,c){var d="0x"+b-65536;return d!==d||c?b:0>d?String.fromCharCode(d+65536):String.fromCharCode(d>>10|55296,1023&d|56320)};try{I.apply(F=J.call(v.childNodes),v.childNodes),F[v.childNodes.length].nodeType}catch(eb){I={apply:F.length?function(a,b){H.apply(a,J.call(b))}:function(a,b){var c=a.length,d=0;while(a[c++]=b[d++]);a.length=c-1}}}function fb(a,b,d,e){var f,h,j,k,l,o,r,s,w,x;if((b?b.ownerDocument||b:v)!==n&&m(b),b=b||n,d=d||[],!a||"string"!=typeof a)return d;if(1!==(k=b.nodeType)&&9!==k)return[];if(p&&!e){if(f=_.exec(a))if(j=f[1]){if(9===k){if(h=b.getElementById(j),!h||!h.parentNode)return d;if(h.id===j)return d.push(h),d}else if(b.ownerDocument&&(h=b.ownerDocument.getElementById(j))&&t(b,h)&&h.id===j)return d.push(h),d}else{if(f[2])return I.apply(d,b.getElementsByTagName(a)),d;if((j=f[3])&&c.getElementsByClassName&&b.getElementsByClassName)return I.apply(d,b.getElementsByClassName(j)),d}if(c.qsa&&(!q||!q.test(a))){if(s=r=u,w=b,x=9===k&&a,1===k&&"object"!==b.nodeName.toLowerCase()){o=g(a),(r=b.getAttribute("id"))?s=r.replace(bb,"\\$&"):b.setAttribute("id",s),s="[id='"+s+"'] ",l=o.length;while(l--)o[l]=s+qb(o[l]);w=ab.test(a)&&ob(b.parentNode)||b,x=o.join(",")}if(x)try{return I.apply(d,w.querySelectorAll(x)),d}catch(y){}finally{r||b.removeAttribute("id")}}}return i(a.replace(R,"$1"),b,d,e)}function gb(){var a=[];function b(c,e){return a.push(c+" ")>d.cacheLength&&delete b[a.shift()],b[c+" "]=e}return b}function hb(a){return a[u]=!0,a}function ib(a){var b=n.createElement("div");try{return!!a(b)}catch(c){return!1}finally{b.parentNode&&b.parentNode.removeChild(b),b=null}}function jb(a,b){var c=a.split("|"),e=a.length;while(e--)d.attrHandle[c[e]]=b}function kb(a,b){var c=b&&a,d=c&&1===a.nodeType&&1===b.nodeType&&(~b.sourceIndex||D)-(~a.sourceIndex||D);if(d)return d;if(c)while(c=c.nextSibling)if(c===b)return-1;return a?1:-1}function lb(a){return function(b){var c=b.nodeName.toLowerCase();return"input"===c&&b.type===a}}function mb(a){return function(b){var c=b.nodeName.toLowerCase();return("input"===c||"button"===c)&&b.type===a}}function nb(a){return hb(function(b){return b=+b,hb(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function ob(a){return a&&typeof a.getElementsByTagName!==C&&a}c=fb.support={},f=fb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?"HTML"!==b.nodeName:!1},m=fb.setDocument=function(a){var b,e=a?a.ownerDocument||a:v,g=e.defaultView;return e!==n&&9===e.nodeType&&e.documentElement?(n=e,o=e.documentElement,p=!f(e),g&&g!==g.top&&(g.addEventListener?g.addEventListener("unload",function(){m()},!1):g.attachEvent&&g.attachEvent("onunload",function(){m()})),c.attributes=ib(function(a){return a.className="i",!a.getAttribute("className")}),c.getElementsByTagName=ib(function(a){return a.appendChild(e.createComment("")),!a.getElementsByTagName("*").length}),c.getElementsByClassName=$.test(e.getElementsByClassName)&&ib(function(a){return a.innerHTML="
",a.firstChild.className="i",2===a.getElementsByClassName("i").length}),c.getById=ib(function(a){return o.appendChild(a).id=u,!e.getElementsByName||!e.getElementsByName(u).length}),c.getById?(d.find.ID=function(a,b){if(typeof b.getElementById!==C&&p){var c=b.getElementById(a);return c&&c.parentNode?[c]:[]}},d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){return a.getAttribute("id")===b}}):(delete d.find.ID,d.filter.ID=function(a){var b=a.replace(cb,db);return function(a){var c=typeof a.getAttributeNode!==C&&a.getAttributeNode("id");return c&&c.value===b}}),d.find.TAG=c.getElementsByTagName?function(a,b){return typeof b.getElementsByTagName!==C?b.getElementsByTagName(a):void 0}:function(a,b){var c,d=[],e=0,f=b.getElementsByTagName(a);if("*"===a){while(c=f[e++])1===c.nodeType&&d.push(c);return d}return f},d.find.CLASS=c.getElementsByClassName&&function(a,b){return typeof b.getElementsByClassName!==C&&p?b.getElementsByClassName(a):void 0},r=[],q=[],(c.qsa=$.test(e.querySelectorAll))&&(ib(function(a){a.innerHTML="",a.querySelectorAll("[msallowclip^='']").length&&q.push("[*^$]="+M+"*(?:''|\"\")"),a.querySelectorAll("[selected]").length||q.push("\\["+M+"*(?:value|"+L+")"),a.querySelectorAll(":checked").length||q.push(":checked")}),ib(function(a){var b=e.createElement("input");b.setAttribute("type","hidden"),a.appendChild(b).setAttribute("name","D"),a.querySelectorAll("[name=d]").length&&q.push("name"+M+"*[*^$|!~]?="),a.querySelectorAll(":enabled").length||q.push(":enabled",":disabled"),a.querySelectorAll("*,:x"),q.push(",.*:")})),(c.matchesSelector=$.test(s=o.matches||o.webkitMatchesSelector||o.mozMatchesSelector||o.oMatchesSelector||o.msMatchesSelector))&&ib(function(a){c.disconnectedMatch=s.call(a,"div"),s.call(a,"[s!='']:x"),r.push("!=",Q)}),q=q.length&&new RegExp(q.join("|")),r=r.length&&new RegExp(r.join("|")),b=$.test(o.compareDocumentPosition),t=b||$.test(o.contains)?function(a,b){var c=9===a.nodeType?a.documentElement:a,d=b&&b.parentNode;return a===d||!(!d||1!==d.nodeType||!(c.contains?c.contains(d):a.compareDocumentPosition&&16&a.compareDocumentPosition(d)))}:function(a,b){if(b)while(b=b.parentNode)if(b===a)return!0;return!1},B=b?function(a,b){if(a===b)return l=!0,0;var d=!a.compareDocumentPosition-!b.compareDocumentPosition;return d?d:(d=(a.ownerDocument||a)===(b.ownerDocument||b)?a.compareDocumentPosition(b):1,1&d||!c.sortDetached&&b.compareDocumentPosition(a)===d?a===e||a.ownerDocument===v&&t(v,a)?-1:b===e||b.ownerDocument===v&&t(v,b)?1:k?K.call(k,a)-K.call(k,b):0:4&d?-1:1)}:function(a,b){if(a===b)return l=!0,0;var c,d=0,f=a.parentNode,g=b.parentNode,h=[a],i=[b];if(!f||!g)return a===e?-1:b===e?1:f?-1:g?1:k?K.call(k,a)-K.call(k,b):0;if(f===g)return kb(a,b);c=a;while(c=c.parentNode)h.unshift(c);c=b;while(c=c.parentNode)i.unshift(c);while(h[d]===i[d])d++;return d?kb(h[d],i[d]):h[d]===v?-1:i[d]===v?1:0},e):n},fb.matches=function(a,b){return fb(a,null,null,b)},fb.matchesSelector=function(a,b){if((a.ownerDocument||a)!==n&&m(a),b=b.replace(U,"='$1']"),!(!c.matchesSelector||!p||r&&r.test(b)||q&&q.test(b)))try{var d=s.call(a,b);if(d||c.disconnectedMatch||a.document&&11!==a.document.nodeType)return d}catch(e){}return fb(b,n,null,[a]).length>0},fb.contains=function(a,b){return(a.ownerDocument||a)!==n&&m(a),t(a,b)},fb.attr=function(a,b){(a.ownerDocument||a)!==n&&m(a);var e=d.attrHandle[b.toLowerCase()],f=e&&E.call(d.attrHandle,b.toLowerCase())?e(a,b,!p):void 0;return void 0!==f?f:c.attributes||!p?a.getAttribute(b):(f=a.getAttributeNode(b))&&f.specified?f.value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized expression: "+a)},fb.uniqueSort=function(a){var b,d=[],e=0,f=0;if(l=!c.detectDuplicates,k=!c.sortStable&&a.slice(0),a.sort(B),l){while(b=a[f++])b===a[f]&&(e=d.push(f));while(e--)a.splice(d[e],1)}return k=null,a},e=fb.getText=function(a){var b,c="",d=0,f=a.nodeType;if(f){if(1===f||9===f||11===f){if("string"==typeof a.textContent)return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=e(a)}else if(3===f||4===f)return a.nodeValue}else while(b=a[d++])c+=e(b);return c},d=fb.selectors={cacheLength:50,createPseudo:hb,match:X,attrHandle:{},find:{},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(cb,db),a[3]=(a[3]||a[4]||a[5]||"").replace(cb,db),"~="===a[2]&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),"nth"===a[1].slice(0,3)?(a[3]||fb.error(a[0]),a[4]=+(a[4]?a[5]+(a[6]||1):2*("even"===a[3]||"odd"===a[3])),a[5]=+(a[7]+a[8]||"odd"===a[3])):a[3]&&fb.error(a[0]),a},PSEUDO:function(a){var b,c=!a[6]&&a[2];return X.CHILD.test(a[0])?null:(a[3]?a[2]=a[4]||a[5]||"":c&&V.test(c)&&(b=g(c,!0))&&(b=c.indexOf(")",c.length-b)-c.length)&&(a[0]=a[0].slice(0,b),a[2]=c.slice(0,b)),a.slice(0,3))}},filter:{TAG:function(a){var b=a.replace(cb,db).toLowerCase();return"*"===a?function(){return!0}:function(a){return a.nodeName&&a.nodeName.toLowerCase()===b}},CLASS:function(a){var b=y[a+" "];return b||(b=new RegExp("(^|"+M+")"+a+"("+M+"|$)"))&&y(a,function(a){return b.test("string"==typeof a.className&&a.className||typeof a.getAttribute!==C&&a.getAttribute("class")||"")})},ATTR:function(a,b,c){return function(d){var e=fb.attr(d,a);return null==e?"!="===b:b?(e+="","="===b?e===c:"!="===b?e!==c:"^="===b?c&&0===e.indexOf(c):"*="===b?c&&e.indexOf(c)>-1:"$="===b?c&&e.slice(-c.length)===c:"~="===b?(" "+e+" ").indexOf(c)>-1:"|="===b?e===c||e.slice(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d,e){var f="nth"!==a.slice(0,3),g="last"!==a.slice(-4),h="of-type"===b;return 1===d&&0===e?function(a){return!!a.parentNode}:function(b,c,i){var j,k,l,m,n,o,p=f!==g?"nextSibling":"previousSibling",q=b.parentNode,r=h&&b.nodeName.toLowerCase(),s=!i&&!h;if(q){if(f){while(p){l=b;while(l=l[p])if(h?l.nodeName.toLowerCase()===r:1===l.nodeType)return!1;o=p="only"===a&&!o&&"nextSibling"}return!0}if(o=[g?q.firstChild:q.lastChild],g&&s){k=q[u]||(q[u]={}),j=k[a]||[],n=j[0]===w&&j[1],m=j[0]===w&&j[2],l=n&&q.childNodes[n];while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if(1===l.nodeType&&++m&&l===b){k[a]=[w,n,m];break}}else if(s&&(j=(b[u]||(b[u]={}))[a])&&j[0]===w)m=j[1];else while(l=++n&&l&&l[p]||(m=n=0)||o.pop())if((h?l.nodeName.toLowerCase()===r:1===l.nodeType)&&++m&&(s&&((l[u]||(l[u]={}))[a]=[w,m]),l===b))break;return m-=e,m===d||m%d===0&&m/d>=0}}},PSEUDO:function(a,b){var c,e=d.pseudos[a]||d.setFilters[a.toLowerCase()]||fb.error("unsupported pseudo: "+a);return e[u]?e(b):e.length>1?(c=[a,a,"",b],d.setFilters.hasOwnProperty(a.toLowerCase())?hb(function(a,c){var d,f=e(a,b),g=f.length;while(g--)d=K.call(a,f[g]),a[d]=!(c[d]=f[g])}):function(a){return e(a,0,c)}):e}},pseudos:{not:hb(function(a){var b=[],c=[],d=h(a.replace(R,"$1"));return d[u]?hb(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)(f=g[h])&&(a[h]=!(b[h]=f))}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:hb(function(a){return function(b){return fb(a,b).length>0}}),contains:hb(function(a){return function(b){return(b.textContent||b.innerText||e(b)).indexOf(a)>-1}}),lang:hb(function(a){return W.test(a||"")||fb.error("unsupported lang: "+a),a=a.replace(cb,db).toLowerCase(),function(b){var c;do if(c=p?b.lang:b.getAttribute("xml:lang")||b.getAttribute("lang"))return c=c.toLowerCase(),c===a||0===c.indexOf(a+"-");while((b=b.parentNode)&&1===b.nodeType);return!1}}),target:function(b){var c=a.location&&a.location.hash;return c&&c.slice(1)===b.id},root:function(a){return a===o},focus:function(a){return a===n.activeElement&&(!n.hasFocus||n.hasFocus())&&!!(a.type||a.href||~a.tabIndex)},enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&!!a.checked||"option"===b&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},empty:function(a){for(a=a.firstChild;a;a=a.nextSibling)if(a.nodeType<6)return!1;return!0},parent:function(a){return!d.pseudos.empty(a)},header:function(a){return Z.test(a.nodeName)},input:function(a){return Y.test(a.nodeName)},button:function(a){var b=a.nodeName.toLowerCase();return"input"===b&&"button"===a.type||"button"===b},text:function(a){var b;return"input"===a.nodeName.toLowerCase()&&"text"===a.type&&(null==(b=a.getAttribute("type"))||"text"===b.toLowerCase())},first:nb(function(){return[0]}),last:nb(function(a,b){return[b-1]}),eq:nb(function(a,b,c){return[0>c?c+b:c]}),even:nb(function(a,b){for(var c=0;b>c;c+=2)a.push(c);return a}),odd:nb(function(a,b){for(var c=1;b>c;c+=2)a.push(c);return a}),lt:nb(function(a,b,c){for(var d=0>c?c+b:c;--d>=0;)a.push(d);return a}),gt:nb(function(a,b,c){for(var d=0>c?c+b:c;++db;b++)d+=a[b].value;return d}function rb(a,b,c){var d=b.dir,e=c&&"parentNode"===d,f=x++;return b.first?function(b,c,f){while(b=b[d])if(1===b.nodeType||e)return a(b,c,f)}:function(b,c,g){var h,i,j=[w,f];if(g){while(b=b[d])if((1===b.nodeType||e)&&a(b,c,g))return!0}else while(b=b[d])if(1===b.nodeType||e){if(i=b[u]||(b[u]={}),(h=i[d])&&h[0]===w&&h[1]===f)return j[2]=h[2];if(i[d]=j,j[2]=a(b,c,g))return!0}}}function sb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function tb(a,b,c){for(var d=0,e=b.length;e>d;d++)fb(a,b[d],c);return c}function ub(a,b,c,d,e){for(var f,g=[],h=0,i=a.length,j=null!=b;i>h;h++)(f=a[h])&&(!c||c(f,d,e))&&(g.push(f),j&&b.push(h));return g}function vb(a,b,c,d,e,f){return d&&!d[u]&&(d=vb(d)),e&&!e[u]&&(e=vb(e,f)),hb(function(f,g,h,i){var j,k,l,m=[],n=[],o=g.length,p=f||tb(b||"*",h.nodeType?[h]:h,[]),q=!a||!f&&b?p:ub(p,m,a,h,i),r=c?e||(f?a:o||d)?[]:g:q;if(c&&c(q,r,h,i),d){j=ub(r,n),d(j,[],h,i),k=j.length;while(k--)(l=j[k])&&(r[n[k]]=!(q[n[k]]=l))}if(f){if(e||a){if(e){j=[],k=r.length;while(k--)(l=r[k])&&j.push(q[k]=l);e(null,r=[],j,i)}k=r.length;while(k--)(l=r[k])&&(j=e?K.call(f,l):m[k])>-1&&(f[j]=!(g[j]=l))}}else r=ub(r===g?r.splice(o,r.length):r),e?e(null,g,r,i):I.apply(g,r)})}function wb(a){for(var b,c,e,f=a.length,g=d.relative[a[0].type],h=g||d.relative[" "],i=g?1:0,k=rb(function(a){return a===b},h,!0),l=rb(function(a){return K.call(b,a)>-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==j)||((b=c).nodeType?k(a,c,d):l(a,c,d))}];f>i;i++)if(c=d.relative[a[i].type])m=[rb(sb(m),c)];else{if(c=d.filter[a[i].type].apply(null,a[i].matches),c[u]){for(e=++i;f>e;e++)if(d.relative[a[e].type])break;return vb(i>1&&sb(m),i>1&&qb(a.slice(0,i-1).concat({value:" "===a[i-2].type?"*":""})).replace(R,"$1"),c,e>i&&wb(a.slice(i,e)),f>e&&wb(a=a.slice(e)),f>e&&qb(a))}m.push(c)}return sb(m)}function xb(a,b){var c=b.length>0,e=a.length>0,f=function(f,g,h,i,k){var l,m,o,p=0,q="0",r=f&&[],s=[],t=j,u=f||e&&d.find.TAG("*",k),v=w+=null==t?1:Math.random()||.1,x=u.length;for(k&&(j=g!==n&&g);q!==x&&null!=(l=u[q]);q++){if(e&&l){m=0;while(o=a[m++])if(o(l,g,h)){i.push(l);break}k&&(w=v)}c&&((l=!o&&l)&&p--,f&&r.push(l))}if(p+=q,c&&q!==p){m=0;while(o=b[m++])o(r,s,g,h);if(f){if(p>0)while(q--)r[q]||s[q]||(s[q]=G.call(i));s=ub(s)}I.apply(i,s),k&&!f&&s.length>0&&p+b.length>1&&fb.uniqueSort(i)}return k&&(w=v,j=t),r};return c?hb(f):f}return h=fb.compile=function(a,b){var c,d=[],e=[],f=A[a+" "];if(!f){b||(b=g(a)),c=b.length;while(c--)f=wb(b[c]),f[u]?d.push(f):e.push(f);f=A(a,xb(e,d)),f.selector=a}return f},i=fb.select=function(a,b,e,f){var i,j,k,l,m,n="function"==typeof a&&a,o=!f&&g(a=n.selector||a);if(e=e||[],1===o.length){if(j=o[0]=o[0].slice(0),j.length>2&&"ID"===(k=j[0]).type&&c.getById&&9===b.nodeType&&p&&d.relative[j[1].type]){if(b=(d.find.ID(k.matches[0].replace(cb,db),b)||[])[0],!b)return e;n&&(b=b.parentNode),a=a.slice(j.shift().value.length)}i=X.needsContext.test(a)?0:j.length;while(i--){if(k=j[i],d.relative[l=k.type])break;if((m=d.find[l])&&(f=m(k.matches[0].replace(cb,db),ab.test(j[0].type)&&ob(b.parentNode)||b))){if(j.splice(i,1),a=f.length&&qb(j),!a)return I.apply(e,f),e;break}}}return(n||h(a,o))(f,b,!p,e,ab.test(a)&&ob(b.parentNode)||b),e},c.sortStable=u.split("").sort(B).join("")===u,c.detectDuplicates=!!l,m(),c.sortDetached=ib(function(a){return 1&a.compareDocumentPosition(n.createElement("div"))}),ib(function(a){return a.innerHTML="","#"===a.firstChild.getAttribute("href")})||jb("type|href|height|width",function(a,b,c){return c?void 0:a.getAttribute(b,"type"===b.toLowerCase()?1:2)}),c.attributes&&ib(function(a){return a.innerHTML="",a.firstChild.setAttribute("value",""),""===a.firstChild.getAttribute("value")})||jb("value",function(a,b,c){return c||"input"!==a.nodeName.toLowerCase()?void 0:a.defaultValue}),ib(function(a){return null==a.getAttribute("disabled")})||jb(L,function(a,b,c){var d;return c?void 0:a[b]===!0?b.toLowerCase():(d=a.getAttributeNode(b))&&d.specified?d.value:null}),fb}(a);n.find=t,n.expr=t.selectors,n.expr[":"]=n.expr.pseudos,n.unique=t.uniqueSort,n.text=t.getText,n.isXMLDoc=t.isXML,n.contains=t.contains;var u=n.expr.match.needsContext,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^.[^:#\[\.,]*$/;function x(a,b,c){if(n.isFunction(b))return n.grep(a,function(a,d){return!!b.call(a,d,a)!==c});if(b.nodeType)return n.grep(a,function(a){return a===b!==c});if("string"==typeof b){if(w.test(b))return n.filter(b,a,c);b=n.filter(b,a)}return n.grep(a,function(a){return g.call(b,a)>=0!==c})}n.filter=function(a,b,c){var d=b[0];return c&&(a=":not("+a+")"),1===b.length&&1===d.nodeType?n.find.matchesSelector(d,a)?[d]:[]:n.find.matches(a,n.grep(b,function(a){return 1===a.nodeType}))},n.fn.extend({find:function(a){var b,c=this.length,d=[],e=this;if("string"!=typeof a)return this.pushStack(n(a).filter(function(){for(b=0;c>b;b++)if(n.contains(e[b],this))return!0}));for(b=0;c>b;b++)n.find(a,e[b],d);return d=this.pushStack(c>1?n.unique(d):d),d.selector=this.selector?this.selector+" "+a:a,d},filter:function(a){return this.pushStack(x(this,a||[],!1))},not:function(a){return this.pushStack(x(this,a||[],!0))},is:function(a){return!!x(this,"string"==typeof a&&u.test(a)?n(a):a||[],!1).length}});var y,z=/^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/,A=n.fn.init=function(a,b){var c,d;if(!a)return this;if("string"==typeof a){if(c="<"===a[0]&&">"===a[a.length-1]&&a.length>=3?[null,a,null]:z.exec(a),!c||!c[1]&&b)return!b||b.jquery?(b||y).find(a):this.constructor(b).find(a);if(c[1]){if(b=b instanceof n?b[0]:b,n.merge(this,n.parseHTML(c[1],b&&b.nodeType?b.ownerDocument||b:l,!0)),v.test(c[1])&&n.isPlainObject(b))for(c in b)n.isFunction(this[c])?this[c](b[c]):this.attr(c,b[c]);return this}return d=l.getElementById(c[2]),d&&d.parentNode&&(this.length=1,this[0]=d),this.context=l,this.selector=a,this}return a.nodeType?(this.context=this[0]=a,this.length=1,this):n.isFunction(a)?"undefined"!=typeof y.ready?y.ready(a):a(n):(void 0!==a.selector&&(this.selector=a.selector,this.context=a.context),n.makeArray(a,this))};A.prototype=n.fn,y=n(l);var B=/^(?:parents|prev(?:Until|All))/,C={children:!0,contents:!0,next:!0,prev:!0};n.extend({dir:function(a,b,c){var d=[],e=void 0!==c;while((a=a[b])&&9!==a.nodeType)if(1===a.nodeType){if(e&&n(a).is(c))break;d.push(a)}return d},sibling:function(a,b){for(var c=[];a;a=a.nextSibling)1===a.nodeType&&a!==b&&c.push(a);return c}}),n.fn.extend({has:function(a){var b=n(a,this),c=b.length;return this.filter(function(){for(var a=0;c>a;a++)if(n.contains(this,b[a]))return!0})},closest:function(a,b){for(var c,d=0,e=this.length,f=[],g=u.test(a)||"string"!=typeof a?n(a,b||this.context):0;e>d;d++)for(c=this[d];c&&c!==b;c=c.parentNode)if(c.nodeType<11&&(g?g.index(c)>-1:1===c.nodeType&&n.find.matchesSelector(c,a))){f.push(c);break}return this.pushStack(f.length>1?n.unique(f):f)},index:function(a){return a?"string"==typeof a?g.call(n(a),this[0]):g.call(this,a.jquery?a[0]:a):this[0]&&this[0].parentNode?this.first().prevAll().length:-1},add:function(a,b){return this.pushStack(n.unique(n.merge(this.get(),n(a,b))))},addBack:function(a){return this.add(null==a?this.prevObject:this.prevObject.filter(a))}});function D(a,b){while((a=a[b])&&1!==a.nodeType);return a}n.each({parent:function(a){var b=a.parentNode;return b&&11!==b.nodeType?b:null},parents:function(a){return n.dir(a,"parentNode")},parentsUntil:function(a,b,c){return n.dir(a,"parentNode",c)},next:function(a){return D(a,"nextSibling")},prev:function(a){return D(a,"previousSibling")},nextAll:function(a){return n.dir(a,"nextSibling")},prevAll:function(a){return n.dir(a,"previousSibling")},nextUntil:function(a,b,c){return n.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return n.dir(a,"previousSibling",c)},siblings:function(a){return n.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return n.sibling(a.firstChild)},contents:function(a){return a.contentDocument||n.merge([],a.childNodes)}},function(a,b){n.fn[a]=function(c,d){var e=n.map(this,b,c);return"Until"!==a.slice(-5)&&(d=c),d&&"string"==typeof d&&(e=n.filter(d,e)),this.length>1&&(C[a]||n.unique(e),B.test(a)&&e.reverse()),this.pushStack(e)}});var E=/\S+/g,F={};function G(a){var b=F[a]={};return n.each(a.match(E)||[],function(a,c){b[c]=!0}),b}n.Callbacks=function(a){a="string"==typeof a?F[a]||G(a):n.extend({},a);var b,c,d,e,f,g,h=[],i=!a.once&&[],j=function(l){for(b=a.memory&&l,c=!0,g=e||0,e=0,f=h.length,d=!0;h&&f>g;g++)if(h[g].apply(l[0],l[1])===!1&&a.stopOnFalse){b=!1;break}d=!1,h&&(i?i.length&&j(i.shift()):b?h=[]:k.disable())},k={add:function(){if(h){var c=h.length;!function g(b){n.each(b,function(b,c){var d=n.type(c);"function"===d?a.unique&&k.has(c)||h.push(c):c&&c.length&&"string"!==d&&g(c)})}(arguments),d?f=h.length:b&&(e=c,j(b))}return this},remove:function(){return h&&n.each(arguments,function(a,b){var c;while((c=n.inArray(b,h,c))>-1)h.splice(c,1),d&&(f>=c&&f--,g>=c&&g--)}),this},has:function(a){return a?n.inArray(a,h)>-1:!(!h||!h.length)},empty:function(){return h=[],f=0,this},disable:function(){return h=i=b=void 0,this},disabled:function(){return!h},lock:function(){return i=void 0,b||k.disable(),this},locked:function(){return!i},fireWith:function(a,b){return!h||c&&!i||(b=b||[],b=[a,b.slice?b.slice():b],d?i.push(b):j(b)),this},fire:function(){return k.fireWith(this,arguments),this},fired:function(){return!!c}};return k},n.extend({Deferred:function(a){var b=[["resolve","done",n.Callbacks("once memory"),"resolved"],["reject","fail",n.Callbacks("once memory"),"rejected"],["notify","progress",n.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return n.Deferred(function(c){n.each(b,function(b,f){var g=n.isFunction(a[b])&&a[b];e[f[1]](function(){var a=g&&g.apply(this,arguments);a&&n.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f[0]+"With"](this===d?c.promise():this,g?[a]:arguments)})}),a=null}).promise()},promise:function(a){return null!=a?n.extend(a,d):d}},e={};return d.pipe=d.then,n.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[1^a][2].disable,b[2][2].lock),e[f[0]]=function(){return e[f[0]+"With"](this===e?d:this,arguments),this},e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=d.call(arguments),e=c.length,f=1!==e||a&&n.isFunction(a.promise)?e:0,g=1===f?a:n.Deferred(),h=function(a,b,c){return function(e){b[a]=this,c[a]=arguments.length>1?d.call(arguments):e,c===i?g.notifyWith(b,c):--f||g.resolveWith(b,c)}},i,j,k;if(e>1)for(i=new Array(e),j=new Array(e),k=new Array(e);e>b;b++)c[b]&&n.isFunction(c[b].promise)?c[b].promise().done(h(b,k,c)).fail(g.reject).progress(h(b,j,i)):--f;return f||g.resolveWith(k,c),g.promise()}});var H;n.fn.ready=function(a){return n.ready.promise().done(a),this},n.extend({isReady:!1,readyWait:1,holdReady:function(a){a?n.readyWait++:n.ready(!0)},ready:function(a){(a===!0?--n.readyWait:n.isReady)||(n.isReady=!0,a!==!0&&--n.readyWait>0||(H.resolveWith(l,[n]),n.fn.triggerHandler&&(n(l).triggerHandler("ready"),n(l).off("ready"))))}});function I(){l.removeEventListener("DOMContentLoaded",I,!1),a.removeEventListener("load",I,!1),n.ready()}n.ready.promise=function(b){return H||(H=n.Deferred(),"complete"===l.readyState?setTimeout(n.ready):(l.addEventListener("DOMContentLoaded",I,!1),a.addEventListener("load",I,!1))),H.promise(b)},n.ready.promise();var J=n.access=function(a,b,c,d,e,f,g){var h=0,i=a.length,j=null==c;if("object"===n.type(c)){e=!0;for(h in c)n.access(a,b,h,c[h],!0,f,g)}else if(void 0!==d&&(e=!0,n.isFunction(d)||(g=!0),j&&(g?(b.call(a,d),b=null):(j=b,b=function(a,b,c){return j.call(n(a),c)})),b))for(;i>h;h++)b(a[h],c,g?d:d.call(a[h],h,b(a[h],c)));return e?a:j?b.call(a):i?b(a[0],c):f};n.acceptData=function(a){return 1===a.nodeType||9===a.nodeType||!+a.nodeType};function K(){Object.defineProperty(this.cache={},0,{get:function(){return{}}}),this.expando=n.expando+Math.random()}K.uid=1,K.accepts=n.acceptData,K.prototype={key:function(a){if(!K.accepts(a))return 0;var b={},c=a[this.expando];if(!c){c=K.uid++;try{b[this.expando]={value:c},Object.defineProperties(a,b)}catch(d){b[this.expando]=c,n.extend(a,b)}}return this.cache[c]||(this.cache[c]={}),c},set:function(a,b,c){var d,e=this.key(a),f=this.cache[e];if("string"==typeof b)f[b]=c;else if(n.isEmptyObject(f))n.extend(this.cache[e],b);else for(d in b)f[d]=b[d];return f},get:function(a,b){var c=this.cache[this.key(a)];return void 0===b?c:c[b]},access:function(a,b,c){var d;return void 0===b||b&&"string"==typeof b&&void 0===c?(d=this.get(a,b),void 0!==d?d:this.get(a,n.camelCase(b))):(this.set(a,b,c),void 0!==c?c:b)},remove:function(a,b){var c,d,e,f=this.key(a),g=this.cache[f];if(void 0===b)this.cache[f]={};else{n.isArray(b)?d=b.concat(b.map(n.camelCase)):(e=n.camelCase(b),b in g?d=[b,e]:(d=e,d=d in g?[d]:d.match(E)||[])),c=d.length;while(c--)delete g[d[c]]}},hasData:function(a){return!n.isEmptyObject(this.cache[a[this.expando]]||{})},discard:function(a){a[this.expando]&&delete this.cache[a[this.expando]]}};var L=new K,M=new K,N=/^(?:\{[\w\W]*\}|\[[\w\W]*\])$/,O=/([A-Z])/g;function P(a,b,c){var d;if(void 0===c&&1===a.nodeType)if(d="data-"+b.replace(O,"-$1").toLowerCase(),c=a.getAttribute(d),"string"==typeof c){try{c="true"===c?!0:"false"===c?!1:"null"===c?null:+c+""===c?+c:N.test(c)?n.parseJSON(c):c}catch(e){}M.set(a,b,c)}else c=void 0;return c}n.extend({hasData:function(a){return M.hasData(a)||L.hasData(a)},data:function(a,b,c){return M.access(a,b,c)},removeData:function(a,b){M.remove(a,b) +},_data:function(a,b,c){return L.access(a,b,c)},_removeData:function(a,b){L.remove(a,b)}}),n.fn.extend({data:function(a,b){var c,d,e,f=this[0],g=f&&f.attributes;if(void 0===a){if(this.length&&(e=M.get(f),1===f.nodeType&&!L.get(f,"hasDataAttrs"))){c=g.length;while(c--)g[c]&&(d=g[c].name,0===d.indexOf("data-")&&(d=n.camelCase(d.slice(5)),P(f,d,e[d])));L.set(f,"hasDataAttrs",!0)}return e}return"object"==typeof a?this.each(function(){M.set(this,a)}):J(this,function(b){var c,d=n.camelCase(a);if(f&&void 0===b){if(c=M.get(f,a),void 0!==c)return c;if(c=M.get(f,d),void 0!==c)return c;if(c=P(f,d,void 0),void 0!==c)return c}else this.each(function(){var c=M.get(this,d);M.set(this,d,b),-1!==a.indexOf("-")&&void 0!==c&&M.set(this,a,b)})},null,b,arguments.length>1,null,!0)},removeData:function(a){return this.each(function(){M.remove(this,a)})}}),n.extend({queue:function(a,b,c){var d;return a?(b=(b||"fx")+"queue",d=L.get(a,b),c&&(!d||n.isArray(c)?d=L.access(a,b,n.makeArray(c)):d.push(c)),d||[]):void 0},dequeue:function(a,b){b=b||"fx";var c=n.queue(a,b),d=c.length,e=c.shift(),f=n._queueHooks(a,b),g=function(){n.dequeue(a,b)};"inprogress"===e&&(e=c.shift(),d--),e&&("fx"===b&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return L.get(a,c)||L.access(a,c,{empty:n.Callbacks("once memory").add(function(){L.remove(a,[b+"queue",c])})})}}),n.fn.extend({queue:function(a,b){var c=2;return"string"!=typeof a&&(b=a,a="fx",c--),arguments.lengthx",k.noCloneChecked=!!b.cloneNode(!0).lastChild.defaultValue}();var U="undefined";k.focusinBubbles="onfocusin"in a;var V=/^key/,W=/^(?:mouse|pointer|contextmenu)|click/,X=/^(?:focusinfocus|focusoutblur)$/,Y=/^([^.]*)(?:\.(.+)|)$/;function Z(){return!0}function $(){return!1}function _(){try{return l.activeElement}catch(a){}}n.event={global:{},add:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.get(a);if(r){c.handler&&(f=c,c=f.handler,e=f.selector),c.guid||(c.guid=n.guid++),(i=r.events)||(i=r.events={}),(g=r.handle)||(g=r.handle=function(b){return typeof n!==U&&n.event.triggered!==b.type?n.event.dispatch.apply(a,arguments):void 0}),b=(b||"").match(E)||[""],j=b.length;while(j--)h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o&&(l=n.event.special[o]||{},o=(e?l.delegateType:l.bindType)||o,l=n.event.special[o]||{},k=n.extend({type:o,origType:q,data:d,handler:c,guid:c.guid,selector:e,needsContext:e&&n.expr.match.needsContext.test(e),namespace:p.join(".")},f),(m=i[o])||(m=i[o]=[],m.delegateCount=0,l.setup&&l.setup.call(a,d,p,g)!==!1||a.addEventListener&&a.addEventListener(o,g,!1)),l.add&&(l.add.call(a,k),k.handler.guid||(k.handler.guid=c.guid)),e?m.splice(m.delegateCount++,0,k):m.push(k),n.event.global[o]=!0)}},remove:function(a,b,c,d,e){var f,g,h,i,j,k,l,m,o,p,q,r=L.hasData(a)&&L.get(a);if(r&&(i=r.events)){b=(b||"").match(E)||[""],j=b.length;while(j--)if(h=Y.exec(b[j])||[],o=q=h[1],p=(h[2]||"").split(".").sort(),o){l=n.event.special[o]||{},o=(d?l.delegateType:l.bindType)||o,m=i[o]||[],h=h[2]&&new RegExp("(^|\\.)"+p.join("\\.(?:.*\\.|)")+"(\\.|$)"),g=f=m.length;while(f--)k=m[f],!e&&q!==k.origType||c&&c.guid!==k.guid||h&&!h.test(k.namespace)||d&&d!==k.selector&&("**"!==d||!k.selector)||(m.splice(f,1),k.selector&&m.delegateCount--,l.remove&&l.remove.call(a,k));g&&!m.length&&(l.teardown&&l.teardown.call(a,p,r.handle)!==!1||n.removeEvent(a,o,r.handle),delete i[o])}else for(o in i)n.event.remove(a,o+b[j],c,d,!0);n.isEmptyObject(i)&&(delete r.handle,L.remove(a,"events"))}},trigger:function(b,c,d,e){var f,g,h,i,k,m,o,p=[d||l],q=j.call(b,"type")?b.type:b,r=j.call(b,"namespace")?b.namespace.split("."):[];if(g=h=d=d||l,3!==d.nodeType&&8!==d.nodeType&&!X.test(q+n.event.triggered)&&(q.indexOf(".")>=0&&(r=q.split("."),q=r.shift(),r.sort()),k=q.indexOf(":")<0&&"on"+q,b=b[n.expando]?b:new n.Event(q,"object"==typeof b&&b),b.isTrigger=e?2:3,b.namespace=r.join("."),b.namespace_re=b.namespace?new RegExp("(^|\\.)"+r.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,b.result=void 0,b.target||(b.target=d),c=null==c?[b]:n.makeArray(c,[b]),o=n.event.special[q]||{},e||!o.trigger||o.trigger.apply(d,c)!==!1)){if(!e&&!o.noBubble&&!n.isWindow(d)){for(i=o.delegateType||q,X.test(i+q)||(g=g.parentNode);g;g=g.parentNode)p.push(g),h=g;h===(d.ownerDocument||l)&&p.push(h.defaultView||h.parentWindow||a)}f=0;while((g=p[f++])&&!b.isPropagationStopped())b.type=f>1?i:o.bindType||q,m=(L.get(g,"events")||{})[b.type]&&L.get(g,"handle"),m&&m.apply(g,c),m=k&&g[k],m&&m.apply&&n.acceptData(g)&&(b.result=m.apply(g,c),b.result===!1&&b.preventDefault());return b.type=q,e||b.isDefaultPrevented()||o._default&&o._default.apply(p.pop(),c)!==!1||!n.acceptData(d)||k&&n.isFunction(d[q])&&!n.isWindow(d)&&(h=d[k],h&&(d[k]=null),n.event.triggered=q,d[q](),n.event.triggered=void 0,h&&(d[k]=h)),b.result}},dispatch:function(a){a=n.event.fix(a);var b,c,e,f,g,h=[],i=d.call(arguments),j=(L.get(this,"events")||{})[a.type]||[],k=n.event.special[a.type]||{};if(i[0]=a,a.delegateTarget=this,!k.preDispatch||k.preDispatch.call(this,a)!==!1){h=n.event.handlers.call(this,a,j),b=0;while((f=h[b++])&&!a.isPropagationStopped()){a.currentTarget=f.elem,c=0;while((g=f.handlers[c++])&&!a.isImmediatePropagationStopped())(!a.namespace_re||a.namespace_re.test(g.namespace))&&(a.handleObj=g,a.data=g.data,e=((n.event.special[g.origType]||{}).handle||g.handler).apply(f.elem,i),void 0!==e&&(a.result=e)===!1&&(a.preventDefault(),a.stopPropagation()))}return k.postDispatch&&k.postDispatch.call(this,a),a.result}},handlers:function(a,b){var c,d,e,f,g=[],h=b.delegateCount,i=a.target;if(h&&i.nodeType&&(!a.button||"click"!==a.type))for(;i!==this;i=i.parentNode||this)if(i.disabled!==!0||"click"!==a.type){for(d=[],c=0;h>c;c++)f=b[c],e=f.selector+" ",void 0===d[e]&&(d[e]=f.needsContext?n(e,this).index(i)>=0:n.find(e,this,null,[i]).length),d[e]&&d.push(f);d.length&&g.push({elem:i,handlers:d})}return h]*)\/>/gi,bb=/<([\w:]+)/,cb=/<|&#?\w+;/,db=/<(?:script|style|link)/i,eb=/checked\s*(?:[^=]|=\s*.checked.)/i,fb=/^$|\/(?:java|ecma)script/i,gb=/^true\/(.*)/,hb=/^\s*\s*$/g,ib={option:[1,""],thead:[1,"","
"],col:[2,"","
"],tr:[2,"","
"],td:[3,"","
"],_default:[0,"",""]};ib.optgroup=ib.option,ib.tbody=ib.tfoot=ib.colgroup=ib.caption=ib.thead,ib.th=ib.td;function jb(a,b){return n.nodeName(a,"table")&&n.nodeName(11!==b.nodeType?b:b.firstChild,"tr")?a.getElementsByTagName("tbody")[0]||a.appendChild(a.ownerDocument.createElement("tbody")):a}function kb(a){return a.type=(null!==a.getAttribute("type"))+"/"+a.type,a}function lb(a){var b=gb.exec(a.type);return b?a.type=b[1]:a.removeAttribute("type"),a}function mb(a,b){for(var c=0,d=a.length;d>c;c++)L.set(a[c],"globalEval",!b||L.get(b[c],"globalEval"))}function nb(a,b){var c,d,e,f,g,h,i,j;if(1===b.nodeType){if(L.hasData(a)&&(f=L.access(a),g=L.set(b,f),j=f.events)){delete g.handle,g.events={};for(e in j)for(c=0,d=j[e].length;d>c;c++)n.event.add(b,e,j[e][c])}M.hasData(a)&&(h=M.access(a),i=n.extend({},h),M.set(b,i))}}function ob(a,b){var c=a.getElementsByTagName?a.getElementsByTagName(b||"*"):a.querySelectorAll?a.querySelectorAll(b||"*"):[];return void 0===b||b&&n.nodeName(a,b)?n.merge([a],c):c}function pb(a,b){var c=b.nodeName.toLowerCase();"input"===c&&T.test(a.type)?b.checked=a.checked:("input"===c||"textarea"===c)&&(b.defaultValue=a.defaultValue)}n.extend({clone:function(a,b,c){var d,e,f,g,h=a.cloneNode(!0),i=n.contains(a.ownerDocument,a);if(!(k.noCloneChecked||1!==a.nodeType&&11!==a.nodeType||n.isXMLDoc(a)))for(g=ob(h),f=ob(a),d=0,e=f.length;e>d;d++)pb(f[d],g[d]);if(b)if(c)for(f=f||ob(a),g=g||ob(h),d=0,e=f.length;e>d;d++)nb(f[d],g[d]);else nb(a,h);return g=ob(h,"script"),g.length>0&&mb(g,!i&&ob(a,"script")),h},buildFragment:function(a,b,c,d){for(var e,f,g,h,i,j,k=b.createDocumentFragment(),l=[],m=0,o=a.length;o>m;m++)if(e=a[m],e||0===e)if("object"===n.type(e))n.merge(l,e.nodeType?[e]:e);else if(cb.test(e)){f=f||k.appendChild(b.createElement("div")),g=(bb.exec(e)||["",""])[1].toLowerCase(),h=ib[g]||ib._default,f.innerHTML=h[1]+e.replace(ab,"<$1>")+h[2],j=h[0];while(j--)f=f.lastChild;n.merge(l,f.childNodes),f=k.firstChild,f.textContent=""}else l.push(b.createTextNode(e));k.textContent="",m=0;while(e=l[m++])if((!d||-1===n.inArray(e,d))&&(i=n.contains(e.ownerDocument,e),f=ob(k.appendChild(e),"script"),i&&mb(f),c)){j=0;while(e=f[j++])fb.test(e.type||"")&&c.push(e)}return k},cleanData:function(a){for(var b,c,d,e,f=n.event.special,g=0;void 0!==(c=a[g]);g++){if(n.acceptData(c)&&(e=c[L.expando],e&&(b=L.cache[e]))){if(b.events)for(d in b.events)f[d]?n.event.remove(c,d):n.removeEvent(c,d,b.handle);L.cache[e]&&delete L.cache[e]}delete M.cache[c[M.expando]]}}}),n.fn.extend({text:function(a){return J(this,function(a){return void 0===a?n.text(this):this.empty().each(function(){(1===this.nodeType||11===this.nodeType||9===this.nodeType)&&(this.textContent=a)})},null,a,arguments.length)},append:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.appendChild(a)}})},prepend:function(){return this.domManip(arguments,function(a){if(1===this.nodeType||11===this.nodeType||9===this.nodeType){var b=jb(this,a);b.insertBefore(a,b.firstChild)}})},before:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this)})},after:function(){return this.domManip(arguments,function(a){this.parentNode&&this.parentNode.insertBefore(a,this.nextSibling)})},remove:function(a,b){for(var c,d=a?n.filter(a,this):this,e=0;null!=(c=d[e]);e++)b||1!==c.nodeType||n.cleanData(ob(c)),c.parentNode&&(b&&n.contains(c.ownerDocument,c)&&mb(ob(c,"script")),c.parentNode.removeChild(c));return this},empty:function(){for(var a,b=0;null!=(a=this[b]);b++)1===a.nodeType&&(n.cleanData(ob(a,!1)),a.textContent="");return this},clone:function(a,b){return a=null==a?!1:a,b=null==b?a:b,this.map(function(){return n.clone(this,a,b)})},html:function(a){return J(this,function(a){var b=this[0]||{},c=0,d=this.length;if(void 0===a&&1===b.nodeType)return b.innerHTML;if("string"==typeof a&&!db.test(a)&&!ib[(bb.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(ab,"<$1>");try{for(;d>c;c++)b=this[c]||{},1===b.nodeType&&(n.cleanData(ob(b,!1)),b.innerHTML=a);b=0}catch(e){}}b&&this.empty().append(a)},null,a,arguments.length)},replaceWith:function(){var a=arguments[0];return this.domManip(arguments,function(b){a=this.parentNode,n.cleanData(ob(this)),a&&a.replaceChild(b,this)}),a&&(a.length||a.nodeType)?this:this.remove()},detach:function(a){return this.remove(a,!0)},domManip:function(a,b){a=e.apply([],a);var c,d,f,g,h,i,j=0,l=this.length,m=this,o=l-1,p=a[0],q=n.isFunction(p);if(q||l>1&&"string"==typeof p&&!k.checkClone&&eb.test(p))return this.each(function(c){var d=m.eq(c);q&&(a[0]=p.call(this,c,d.html())),d.domManip(a,b)});if(l&&(c=n.buildFragment(a,this[0].ownerDocument,!1,this),d=c.firstChild,1===c.childNodes.length&&(c=d),d)){for(f=n.map(ob(c,"script"),kb),g=f.length;l>j;j++)h=c,j!==o&&(h=n.clone(h,!0,!0),g&&n.merge(f,ob(h,"script"))),b.call(this[j],h,j);if(g)for(i=f[f.length-1].ownerDocument,n.map(f,lb),j=0;g>j;j++)h=f[j],fb.test(h.type||"")&&!L.access(h,"globalEval")&&n.contains(i,h)&&(h.src?n._evalUrl&&n._evalUrl(h.src):n.globalEval(h.textContent.replace(hb,"")))}return this}}),n.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){n.fn[a]=function(a){for(var c,d=[],e=n(a),g=e.length-1,h=0;g>=h;h++)c=h===g?this:this.clone(!0),n(e[h])[b](c),f.apply(d,c.get());return this.pushStack(d)}});var qb,rb={};function sb(b,c){var d,e=n(c.createElement(b)).appendTo(c.body),f=a.getDefaultComputedStyle&&(d=a.getDefaultComputedStyle(e[0]))?d.display:n.css(e[0],"display");return e.detach(),f}function tb(a){var b=l,c=rb[a];return c||(c=sb(a,b),"none"!==c&&c||(qb=(qb||n("