Update-GoogleCalendar Cmdlet
Updates Google Calendar data.
Syntax
Update-GoogleCalendar [parameters]
Remarks
The Update-GoogleCalendar cmdlet allows you to use a syntax similar to SQL UPDATE statements to update Google Calendar data.
$conn = Connect-GoogleCalendar Update-GoogleCalendar -Connection $conn -Table "MyCalendar" -Columns @("Description") -Values @("My Calendar") -Id "S"The Where parameter can also be used to specify the primary key of the table:
Update-GoogleCalendar -Connection $conn -Table "MyCalendar" -Columns @("Description") -Values @("My Calendar") -Where "Id = 'S'"The primary key can also be passed to the cmdlet along the pipeline:
Select-GoogleCalendar -Connection $conn -Table MyCalendar -Where "Status = 'confirmed'" | Update-GoogleCalendar -Columns @("Status") -Values @("confirmed 2")