{-# 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.IAM.Projects.ServiceAccounts.GetIAMPolicy -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Returns the IAM access control policy for a ServiceAccount. -- -- /See:/ for @iam.projects.serviceAccounts.getIamPolicy@. module Network.Google.Resource.IAM.Projects.ServiceAccounts.GetIAMPolicy ( -- * REST Resource ProjectsServiceAccountsGetIAMPolicyResource -- * Creating a Request , projectsServiceAccountsGetIAMPolicy , ProjectsServiceAccountsGetIAMPolicy -- * Request Lenses , psagipXgafv , psagipUploadProtocol , psagipAccessToken , psagipUploadType , psagipResource , psagipCallback ) where import Network.Google.IAM.Types import Network.Google.Prelude -- | A resource alias for @iam.projects.serviceAccounts.getIamPolicy@ method which the -- 'ProjectsServiceAccountsGetIAMPolicy' request conforms to. type ProjectsServiceAccountsGetIAMPolicyResource = "v1" :> CaptureMode "resource" "getIamPolicy" Text :> QueryParam "$.xgafv" Xgafv :> QueryParam "upload_protocol" Text :> QueryParam "access_token" Text :> QueryParam "uploadType" Text :> QueryParam "callback" Text :> QueryParam "alt" AltJSON :> Post '[JSON] Policy -- | Returns the IAM access control policy for a ServiceAccount. -- -- /See:/ 'projectsServiceAccountsGetIAMPolicy' smart constructor. data ProjectsServiceAccountsGetIAMPolicy = ProjectsServiceAccountsGetIAMPolicy' { _psagipXgafv :: !(Maybe Xgafv) , _psagipUploadProtocol :: !(Maybe Text) , _psagipAccessToken :: !(Maybe Text) , _psagipUploadType :: !(Maybe Text) , _psagipResource :: !Text , _psagipCallback :: !(Maybe Text) } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'ProjectsServiceAccountsGetIAMPolicy' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'psagipXgafv' -- -- * 'psagipUploadProtocol' -- -- * 'psagipAccessToken' -- -- * 'psagipUploadType' -- -- * 'psagipResource' -- -- * 'psagipCallback' projectsServiceAccountsGetIAMPolicy :: Text -- ^ 'psagipResource' -> ProjectsServiceAccountsGetIAMPolicy projectsServiceAccountsGetIAMPolicy pPsagipResource_ = ProjectsServiceAccountsGetIAMPolicy' { _psagipXgafv = Nothing , _psagipUploadProtocol = Nothing , _psagipAccessToken = Nothing , _psagipUploadType = Nothing , _psagipResource = pPsagipResource_ , _psagipCallback = Nothing } -- | V1 error format. psagipXgafv :: Lens' ProjectsServiceAccountsGetIAMPolicy (Maybe Xgafv) psagipXgafv = lens _psagipXgafv (\ s a -> s{_psagipXgafv = a}) -- | Upload protocol for media (e.g. \"raw\", \"multipart\"). psagipUploadProtocol :: Lens' ProjectsServiceAccountsGetIAMPolicy (Maybe Text) psagipUploadProtocol = lens _psagipUploadProtocol (\ s a -> s{_psagipUploadProtocol = a}) -- | OAuth access token. psagipAccessToken :: Lens' ProjectsServiceAccountsGetIAMPolicy (Maybe Text) psagipAccessToken = lens _psagipAccessToken (\ s a -> s{_psagipAccessToken = a}) -- | Legacy upload protocol for media (e.g. \"media\", \"multipart\"). psagipUploadType :: Lens' ProjectsServiceAccountsGetIAMPolicy (Maybe Text) psagipUploadType = lens _psagipUploadType (\ s a -> s{_psagipUploadType = a}) -- | REQUIRED: The resource for which the policy is being requested. See the -- operation documentation for the appropriate value for this field. psagipResource :: Lens' ProjectsServiceAccountsGetIAMPolicy Text psagipResource = lens _psagipResource (\ s a -> s{_psagipResource = a}) -- | JSONP psagipCallback :: Lens' ProjectsServiceAccountsGetIAMPolicy (Maybe Text) psagipCallback = lens _psagipCallback (\ s a -> s{_psagipCallback = a}) instance GoogleRequest ProjectsServiceAccountsGetIAMPolicy where type Rs ProjectsServiceAccountsGetIAMPolicy = Policy type Scopes ProjectsServiceAccountsGetIAMPolicy = '["https://www.googleapis.com/auth/cloud-platform"] requestClient ProjectsServiceAccountsGetIAMPolicy'{..} = go _psagipResource _psagipXgafv _psagipUploadProtocol _psagipAccessToken _psagipUploadType _psagipCallback (Just AltJSON) iAMService where go = buildClient (Proxy :: Proxy ProjectsServiceAccountsGetIAMPolicyResource) mempty