gogol-compute-0.0.1: gen/Network/Google/Resource/Compute/Autoscalers/Insert.hs
{-# 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.Compute.Autoscalers.Insert
-- Copyright : (c) 2015 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay <brendan.g.hay@gmail.com>
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Creates an autoscaler resource in the specified project using the data
-- included in the request.
--
-- /See:/ <https://developers.google.com/compute/docs/reference/latest/ Compute Engine API Reference> for @compute.autoscalers.insert@.
module Network.Google.Resource.Compute.Autoscalers.Insert
(
-- * REST Resource
AutoscalersInsertResource
-- * Creating a Request
, autoscalersInsert
, AutoscalersInsert
-- * Request Lenses
, aiiProject
, aiiZone
, aiiPayload
) where
import Network.Google.Compute.Types
import Network.Google.Prelude
-- | A resource alias for @compute.autoscalers.insert@ method which the
-- 'AutoscalersInsert' request conforms to.
type AutoscalersInsertResource =
"compute" :>
"v1" :>
"projects" :>
Capture "project" Text :>
"zones" :>
Capture "zone" Text :>
"autoscalers" :>
QueryParam "alt" AltJSON :>
ReqBody '[JSON] Autoscaler :> Post '[JSON] Operation
-- | Creates an autoscaler resource in the specified project using the data
-- included in the request.
--
-- /See:/ 'autoscalersInsert' smart constructor.
data AutoscalersInsert = AutoscalersInsert
{ _aiiProject :: !Text
, _aiiZone :: !Text
, _aiiPayload :: !Autoscaler
} deriving (Eq,Show,Data,Typeable,Generic)
-- | Creates a value of 'AutoscalersInsert' with the minimum fields required to make a request.
--
-- Use one of the following lenses to modify other fields as desired:
--
-- * 'aiiProject'
--
-- * 'aiiZone'
--
-- * 'aiiPayload'
autoscalersInsert
:: Text -- ^ 'aiiProject'
-> Text -- ^ 'aiiZone'
-> Autoscaler -- ^ 'aiiPayload'
-> AutoscalersInsert
autoscalersInsert pAiiProject_ pAiiZone_ pAiiPayload_ =
AutoscalersInsert
{ _aiiProject = pAiiProject_
, _aiiZone = pAiiZone_
, _aiiPayload = pAiiPayload_
}
-- | Name of the project scoping this request.
aiiProject :: Lens' AutoscalersInsert Text
aiiProject
= lens _aiiProject (\ s a -> s{_aiiProject = a})
-- | Name of the zone scoping this request.
aiiZone :: Lens' AutoscalersInsert Text
aiiZone = lens _aiiZone (\ s a -> s{_aiiZone = a})
-- | Multipart request metadata.
aiiPayload :: Lens' AutoscalersInsert Autoscaler
aiiPayload
= lens _aiiPayload (\ s a -> s{_aiiPayload = a})
instance GoogleRequest AutoscalersInsert where
type Rs AutoscalersInsert = Operation
requestClient AutoscalersInsert{..}
= go _aiiProject _aiiZone (Just AltJSON) _aiiPayload
computeService
where go
= buildClient
(Proxy :: Proxy AutoscalersInsertResource)
mempty