{-# 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.GamesConfiguration.LeaderboardConfigurations.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) -- -- Insert a new leaderboard configuration in this application. -- -- /See:/ for @gamesConfiguration.leaderboardConfigurations.insert@. module Network.Google.Resource.GamesConfiguration.LeaderboardConfigurations.Insert ( -- * REST Resource LeaderboardConfigurationsInsertResource -- * Creating a Request , leaderboardConfigurationsInsert , LeaderboardConfigurationsInsert -- * Request Lenses , lciPayload , lciApplicationId ) where import Network.Google.GamesConfiguration.Types import Network.Google.Prelude -- | A resource alias for @gamesConfiguration.leaderboardConfigurations.insert@ method which the -- 'LeaderboardConfigurationsInsert' request conforms to. type LeaderboardConfigurationsInsertResource = "games" :> "v1configuration" :> "applications" :> Capture "applicationId" Text :> "leaderboards" :> QueryParam "alt" AltJSON :> ReqBody '[JSON] LeaderboardConfiguration :> Post '[JSON] LeaderboardConfiguration -- | Insert a new leaderboard configuration in this application. -- -- /See:/ 'leaderboardConfigurationsInsert' smart constructor. data LeaderboardConfigurationsInsert = LeaderboardConfigurationsInsert' { _lciPayload :: !LeaderboardConfiguration , _lciApplicationId :: !Text } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'LeaderboardConfigurationsInsert' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'lciPayload' -- -- * 'lciApplicationId' leaderboardConfigurationsInsert :: LeaderboardConfiguration -- ^ 'lciPayload' -> Text -- ^ 'lciApplicationId' -> LeaderboardConfigurationsInsert leaderboardConfigurationsInsert pLciPayload_ pLciApplicationId_ = LeaderboardConfigurationsInsert' { _lciPayload = pLciPayload_ , _lciApplicationId = pLciApplicationId_ } -- | Multipart request metadata. lciPayload :: Lens' LeaderboardConfigurationsInsert LeaderboardConfiguration lciPayload = lens _lciPayload (\ s a -> s{_lciPayload = a}) -- | The application ID from the Google Play developer console. lciApplicationId :: Lens' LeaderboardConfigurationsInsert Text lciApplicationId = lens _lciApplicationId (\ s a -> s{_lciApplicationId = a}) instance GoogleRequest LeaderboardConfigurationsInsert where type Rs LeaderboardConfigurationsInsert = LeaderboardConfiguration type Scopes LeaderboardConfigurationsInsert = '["https://www.googleapis.com/auth/androidpublisher"] requestClient LeaderboardConfigurationsInsert'{..} = go _lciApplicationId (Just AltJSON) _lciPayload gamesConfigurationService where go = buildClient (Proxy :: Proxy LeaderboardConfigurationsInsertResource) mempty