{-# 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.Licenses.GetIAMPolicy
(
LicensesGetIAMPolicyResource
, licensesGetIAMPolicy
, LicensesGetIAMPolicy
, lgipProject
, lgipResource
) where
import Network.Google.Compute.Types
import Network.Google.Prelude
type LicensesGetIAMPolicyResource =
"compute" :>
"v1" :>
"projects" :>
Capture "project" Text :>
"global" :>
"licenses" :>
Capture "resource" Text :>
"getIamPolicy" :>
QueryParam "alt" AltJSON :> Get '[JSON] Policy
data LicensesGetIAMPolicy = LicensesGetIAMPolicy'
{ _lgipProject :: !Text
, _lgipResource :: !Text
} deriving (Eq,Show,Data,Typeable,Generic)
licensesGetIAMPolicy
:: Text
-> Text
-> LicensesGetIAMPolicy
licensesGetIAMPolicy pLgipProject_ pLgipResource_ =
LicensesGetIAMPolicy'
{ _lgipProject = pLgipProject_
, _lgipResource = pLgipResource_
}
lgipProject :: Lens' LicensesGetIAMPolicy Text
lgipProject
= lens _lgipProject (\ s a -> s{_lgipProject = a})
lgipResource :: Lens' LicensesGetIAMPolicy Text
lgipResource
= lens _lgipResource (\ s a -> s{_lgipResource = a})
instance GoogleRequest LicensesGetIAMPolicy where
type Rs LicensesGetIAMPolicy = Policy
type Scopes LicensesGetIAMPolicy =
'["https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/compute",
"https://www.googleapis.com/auth/compute.readonly"]
requestClient LicensesGetIAMPolicy'{..}
= go _lgipProject _lgipResource (Just AltJSON)
computeService
where go
= buildClient
(Proxy :: Proxy LicensesGetIAMPolicyResource)
mempty