{-# 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.Routers.Patch
(
RoutersPatchResource
, routersPatch
, RoutersPatch
, rpRequestId
, rpProject
, rpRouter
, rpPayload
, rpRegion
) where
import Network.Google.Compute.Types
import Network.Google.Prelude
type RoutersPatchResource =
"compute" :>
"v1" :>
"projects" :>
Capture "project" Text :>
"regions" :>
Capture "region" Text :>
"routers" :>
Capture "router" Text :>
QueryParam "requestId" Text :>
QueryParam "alt" AltJSON :>
ReqBody '[JSON] Router :> Patch '[JSON] Operation
data RoutersPatch = RoutersPatch'
{ _rpRequestId :: !(Maybe Text)
, _rpProject :: !Text
, _rpRouter :: !Text
, _rpPayload :: !Router
, _rpRegion :: !Text
} deriving (Eq,Show,Data,Typeable,Generic)
routersPatch
:: Text
-> Text
-> Router
-> Text
-> RoutersPatch
routersPatch pRpProject_ pRpRouter_ pRpPayload_ pRpRegion_ =
RoutersPatch'
{ _rpRequestId = Nothing
, _rpProject = pRpProject_
, _rpRouter = pRpRouter_
, _rpPayload = pRpPayload_
, _rpRegion = pRpRegion_
}
rpRequestId :: Lens' RoutersPatch (Maybe Text)
rpRequestId
= lens _rpRequestId (\ s a -> s{_rpRequestId = a})
rpProject :: Lens' RoutersPatch Text
rpProject
= lens _rpProject (\ s a -> s{_rpProject = a})
rpRouter :: Lens' RoutersPatch Text
rpRouter = lens _rpRouter (\ s a -> s{_rpRouter = a})
rpPayload :: Lens' RoutersPatch Router
rpPayload
= lens _rpPayload (\ s a -> s{_rpPayload = a})
rpRegion :: Lens' RoutersPatch Text
rpRegion = lens _rpRegion (\ s a -> s{_rpRegion = a})
instance GoogleRequest RoutersPatch where
type Rs RoutersPatch = Operation
type Scopes RoutersPatch =
'["https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/compute"]
requestClient RoutersPatch'{..}
= go _rpProject _rpRegion _rpRouter _rpRequestId
(Just AltJSON)
_rpPayload
computeService
where go
= buildClient (Proxy :: Proxy RoutersPatchResource)
mempty