{-# 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.Directory.Resources.Buildings.Update -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Updates a building. -- -- /See:/ for @directory.resources.buildings.update@. module Network.Google.Resource.Directory.Resources.Buildings.Update ( -- * REST Resource ResourcesBuildingsUpdateResource -- * Creating a Request , resourcesBuildingsUpdate , ResourcesBuildingsUpdate -- * Request Lenses , rbuBuildingId , rbuPayload , rbuCustomer , rbuCoordinatesSource ) where import Network.Google.Directory.Types import Network.Google.Prelude -- | A resource alias for @directory.resources.buildings.update@ method which the -- 'ResourcesBuildingsUpdate' request conforms to. type ResourcesBuildingsUpdateResource = "admin" :> "directory" :> "v1" :> "customer" :> Capture "customer" Text :> "resources" :> "buildings" :> Capture "buildingId" Text :> QueryParam "coordinatesSource" ResourcesBuildingsUpdateCoordinatesSource :> QueryParam "alt" AltJSON :> ReqBody '[JSON] Building :> Put '[JSON] Building -- | Updates a building. -- -- /See:/ 'resourcesBuildingsUpdate' smart constructor. data ResourcesBuildingsUpdate = ResourcesBuildingsUpdate' { _rbuBuildingId :: !Text , _rbuPayload :: !Building , _rbuCustomer :: !Text , _rbuCoordinatesSource :: !ResourcesBuildingsUpdateCoordinatesSource } deriving (Eq, Show, Data, Typeable, Generic) -- | Creates a value of 'ResourcesBuildingsUpdate' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'rbuBuildingId' -- -- * 'rbuPayload' -- -- * 'rbuCustomer' -- -- * 'rbuCoordinatesSource' resourcesBuildingsUpdate :: Text -- ^ 'rbuBuildingId' -> Building -- ^ 'rbuPayload' -> Text -- ^ 'rbuCustomer' -> ResourcesBuildingsUpdate resourcesBuildingsUpdate pRbuBuildingId_ pRbuPayload_ pRbuCustomer_ = ResourcesBuildingsUpdate' { _rbuBuildingId = pRbuBuildingId_ , _rbuPayload = pRbuPayload_ , _rbuCustomer = pRbuCustomer_ , _rbuCoordinatesSource = RBUCSSourceUnspecified } -- | The ID of the building to update. rbuBuildingId :: Lens' ResourcesBuildingsUpdate Text rbuBuildingId = lens _rbuBuildingId (\ s a -> s{_rbuBuildingId = a}) -- | Multipart request metadata. rbuPayload :: Lens' ResourcesBuildingsUpdate Building rbuPayload = lens _rbuPayload (\ s a -> s{_rbuPayload = a}) -- | The unique ID for the customer\'s G Suite account. As an account -- administrator, you can also use the my_customer alias to represent your -- account\'s customer ID. rbuCustomer :: Lens' ResourcesBuildingsUpdate Text rbuCustomer = lens _rbuCustomer (\ s a -> s{_rbuCustomer = a}) -- | Source from which Building.coordinates are derived. rbuCoordinatesSource :: Lens' ResourcesBuildingsUpdate ResourcesBuildingsUpdateCoordinatesSource rbuCoordinatesSource = lens _rbuCoordinatesSource (\ s a -> s{_rbuCoordinatesSource = a}) instance GoogleRequest ResourcesBuildingsUpdate where type Rs ResourcesBuildingsUpdate = Building type Scopes ResourcesBuildingsUpdate = '["https://www.googleapis.com/auth/admin.directory.resource.calendar"] requestClient ResourcesBuildingsUpdate'{..} = go _rbuCustomer _rbuBuildingId (Just _rbuCoordinatesSource) (Just AltJSON) _rbuPayload directoryService where go = buildClient (Proxy :: Proxy ResourcesBuildingsUpdateResource) mempty