Skip to content

New GCalendarNotificationObj

Spencer Varney edited this page Dec 9, 2016 · 2 revisions

New-GCalendarNotificationObj

SYNOPSIS

Creates a new Calendar API CalendarNotification object.

SYNTAX

New-GCalendarNotificationObj [[-Method] <String>] [[-Type] <String>] [-WhatIf] [-Confirm]

DESCRIPTION

This provides a Cmdlet-Based approach to creating a CalendarNotification object which may be required as a parameter for some other Cmdlets in the Calendar API category.

You could alternately create this object by calling New-Object -TypeName Google.Apis.Calendar.v3.Data.CalendarNotification

EXAMPLES

---------- EXAMPLE 1 ----------

PS C:\> New-GCalendarNotificationObj

This automatically generated example serves to show the bare minimum required to call this Cmdlet.

Additional examples may be added, viewed and edited by users on the community wiki at the URL found in the related links.

PARAMETERS

-Method

The method used to deliver the notification. Possible values are:- "email" - Reminders are sent via email.- "sms" - Reminders are sent via SMS. This value is read-only and is ignored on inserts and updates. SMS reminders are only available for Google Apps for Work, Education, and Government customers.

Type: String
Parameter Sets: (All)
Aliases: 

Required: False
Position: 0
Default value: 
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

-Type

The type of notification. Possible values are:- "eventCreation" - Notification sent when a new event is put on the calendar.- "eventChange" - Notification sent when an event is changed.- "eventCancellation" - Notification sent when an event is cancelled.- "eventResponse" - Notification sent when an event is changed.- "agenda" - An agenda with the events of the day (sent out in the morning).

Type: String
Parameter Sets: (All)
Aliases: 

Required: False
Position: 1
Default value: 
Accept pipeline input: True (ByPropertyName)
Accept wildcard characters: False

INPUTS

System.String

The method used to deliver the notification. Possible values are:- "email" - Reminders are sent via email.- "sms" - Reminders are sent via SMS. This value is read-only and is ignored on inserts and updates. SMS reminders are only available for Google Apps for Work, Education, and Government customers.

System.String

The type of notification. Possible values are:- "eventCreation" - Notification sent when a new event is put on the calendar.- "eventChange" - Notification sent when an event is changed.- "eventCancellation" - Notification sent when an event is cancelled.- "eventResponse" - Notification sent when an event is changed.- "agenda" - An agenda with the events of the day (sent out in the morning).

OUTPUTS

Google.Apis.Calendar.v3.Data.CalendarNotification

NOTES

Part of the gShell Project, relating to the Google Calendar API; see Related Links or use the -Online parameter.

RELATED LINKS

[Wiki page for this Cmdlet]

[Getting started with gShell]

Clone this wiki locally