{-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE TypeOperators #-} {-# OPTIONS_GHC -fno-warn-duplicate-exports #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} -- | -- Module : Network.Google.Resource.Calendar.Events.Insert -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Creates an event. -- -- /See:/ for @calendar.events.insert@. module Network.Google.Resource.Calendar.Events.Insert ( -- * REST Resource EventsInsertResource -- * Creating a Request , eventsInsert , EventsInsert -- * Request Lenses , eveConferenceDataVersion , eveCalendarId , evePayload , eveMaxAttendees , eveSendNotifications , eveSupportsAttachments , eveSendUpdates ) where import Network.Google.AppsCalendar.Types import Network.Google.Prelude -- | A resource alias for @calendar.events.insert@ method which the -- 'EventsInsert' request conforms to. type EventsInsertResource = "calendar" :> "v3" :> "calendars" :> Capture "calendarId" Text :> "events" :> QueryParam "conferenceDataVersion" (Textual Int32) :> QueryParam "maxAttendees" (Textual Int32) :> QueryParam "sendNotifications" Bool :> QueryParam "supportsAttachments" Bool :> QueryParam "sendUpdates" EventsInsertSendUpdates :> QueryParam "alt" AltJSON :> ReqBody '[JSON] Event :> Post '[JSON] Event -- | Creates an event. -- -- /See:/ 'eventsInsert' smart constructor. data EventsInsert = EventsInsert' { _eveConferenceDataVersion :: !(Maybe (Textual Int32)) , _eveCalendarId :: !Text , _evePayload :: !Event , _eveMaxAttendees :: !(Maybe (Textual Int32)) , _eveSendNotifications :: !(Maybe Bool) , _eveSupportsAttachments :: !(Maybe Bool) , _eveSendUpdates :: !(Maybe EventsInsertSendUpdates) } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'EventsInsert' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'eveConferenceDataVersion' -- -- * 'eveCalendarId' -- -- * 'evePayload' -- -- * 'eveMaxAttendees' -- -- * 'eveSendNotifications' -- -- * 'eveSupportsAttachments' -- -- * 'eveSendUpdates' eventsInsert :: Text -- ^ 'eveCalendarId' -> Event -- ^ 'evePayload' -> EventsInsert eventsInsert pEveCalendarId_ pEvePayload_ = EventsInsert' { _eveConferenceDataVersion = Nothing , _eveCalendarId = pEveCalendarId_ , _evePayload = pEvePayload_ , _eveMaxAttendees = Nothing , _eveSendNotifications = Nothing , _eveSupportsAttachments = Nothing , _eveSendUpdates = Nothing } -- | Version number of conference data supported by the API client. Version 0 -- assumes no conference data support and ignores conference data in the -- event\'s body. Version 1 enables support for copying of ConferenceData -- as well as for creating new conferences using the createRequest field of -- conferenceData. The default is 0. eveConferenceDataVersion :: Lens' EventsInsert (Maybe Int32) eveConferenceDataVersion = lens _eveConferenceDataVersion (\ s a -> s{_eveConferenceDataVersion = a}) . mapping _Coerce -- | Calendar identifier. To retrieve calendar IDs call the calendarList.list -- method. If you want to access the primary calendar of the currently -- logged in user, use the \"primary\" keyword. eveCalendarId :: Lens' EventsInsert Text eveCalendarId = lens _eveCalendarId (\ s a -> s{_eveCalendarId = a}) -- | Multipart request metadata. evePayload :: Lens' EventsInsert Event evePayload = lens _evePayload (\ s a -> s{_evePayload = a}) -- | The maximum number of attendees to include in the response. If there are -- more than the specified number of attendees, only the participant is -- returned. Optional. eveMaxAttendees :: Lens' EventsInsert (Maybe Int32) eveMaxAttendees = lens _eveMaxAttendees (\ s a -> s{_eveMaxAttendees = a}) . mapping _Coerce -- | Deprecated. Please use sendUpdates instead. Whether to send -- notifications about the creation of the new event. Note that some emails -- might still be sent even if you set the value to false. The default is -- false. eveSendNotifications :: Lens' EventsInsert (Maybe Bool) eveSendNotifications = lens _eveSendNotifications (\ s a -> s{_eveSendNotifications = a}) -- | Whether API client performing operation supports event attachments. -- Optional. The default is False. eveSupportsAttachments :: Lens' EventsInsert (Maybe Bool) eveSupportsAttachments = lens _eveSupportsAttachments (\ s a -> s{_eveSupportsAttachments = a}) -- | Whether to send notifications about the creation of the new event. Note -- that some emails might still be sent. The default is false. eveSendUpdates :: Lens' EventsInsert (Maybe EventsInsertSendUpdates) eveSendUpdates = lens _eveSendUpdates (\ s a -> s{_eveSendUpdates = a}) instance GoogleRequest EventsInsert where type Rs EventsInsert = Event type Scopes EventsInsert = '["https://www.googleapis.com/auth/calendar", "https://www.googleapis.com/auth/calendar.events"] requestClient EventsInsert'{..} = go _eveCalendarId _eveConferenceDataVersion _eveMaxAttendees _eveSendNotifications _eveSupportsAttachments _eveSendUpdates (Just AltJSON) _evePayload appsCalendarService where go = buildClient (Proxy :: Proxy EventsInsertResource) mempty