{-# 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.BigtableAdmin.Projects.Instances.Create -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Create an instance within a project. -- -- /See:/ for @bigtableadmin.projects.instances.create@. module Network.Google.Resource.BigtableAdmin.Projects.Instances.Create ( -- * REST Resource ProjectsInstancesCreateResource -- * Creating a Request , projectsInstancesCreate , ProjectsInstancesCreate -- * Request Lenses , picParent , picXgafv , picUploadProtocol , picAccessToken , picUploadType , picPayload , picCallback ) where import Network.Google.BigtableAdmin.Types import Network.Google.Prelude -- | A resource alias for @bigtableadmin.projects.instances.create@ method which the -- 'ProjectsInstancesCreate' request conforms to. type ProjectsInstancesCreateResource = "v2" :> Capture "parent" Text :> "instances" :> QueryParam "$.xgafv" Xgafv :> QueryParam "upload_protocol" Text :> QueryParam "access_token" Text :> QueryParam "uploadType" Text :> QueryParam "callback" Text :> QueryParam "alt" AltJSON :> ReqBody '[JSON] CreateInstanceRequest :> Post '[JSON] Operation -- | Create an instance within a project. -- -- /See:/ 'projectsInstancesCreate' smart constructor. data ProjectsInstancesCreate = ProjectsInstancesCreate' { _picParent :: !Text , _picXgafv :: !(Maybe Xgafv) , _picUploadProtocol :: !(Maybe Text) , _picAccessToken :: !(Maybe Text) , _picUploadType :: !(Maybe Text) , _picPayload :: !CreateInstanceRequest , _picCallback :: !(Maybe Text) } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'ProjectsInstancesCreate' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'picParent' -- -- * 'picXgafv' -- -- * 'picUploadProtocol' -- -- * 'picAccessToken' -- -- * 'picUploadType' -- -- * 'picPayload' -- -- * 'picCallback' projectsInstancesCreate :: Text -- ^ 'picParent' -> CreateInstanceRequest -- ^ 'picPayload' -> ProjectsInstancesCreate projectsInstancesCreate pPicParent_ pPicPayload_ = ProjectsInstancesCreate' { _picParent = pPicParent_ , _picXgafv = Nothing , _picUploadProtocol = Nothing , _picAccessToken = Nothing , _picUploadType = Nothing , _picPayload = pPicPayload_ , _picCallback = Nothing } -- | The unique name of the project in which to create the new instance. -- Values are of the form \`projects\/\`. picParent :: Lens' ProjectsInstancesCreate Text picParent = lens _picParent (\ s a -> s{_picParent = a}) -- | V1 error format. picXgafv :: Lens' ProjectsInstancesCreate (Maybe Xgafv) picXgafv = lens _picXgafv (\ s a -> s{_picXgafv = a}) -- | Upload protocol for media (e.g. \"raw\", \"multipart\"). picUploadProtocol :: Lens' ProjectsInstancesCreate (Maybe Text) picUploadProtocol = lens _picUploadProtocol (\ s a -> s{_picUploadProtocol = a}) -- | OAuth access token. picAccessToken :: Lens' ProjectsInstancesCreate (Maybe Text) picAccessToken = lens _picAccessToken (\ s a -> s{_picAccessToken = a}) -- | Legacy upload protocol for media (e.g. \"media\", \"multipart\"). picUploadType :: Lens' ProjectsInstancesCreate (Maybe Text) picUploadType = lens _picUploadType (\ s a -> s{_picUploadType = a}) -- | Multipart request metadata. picPayload :: Lens' ProjectsInstancesCreate CreateInstanceRequest picPayload = lens _picPayload (\ s a -> s{_picPayload = a}) -- | JSONP picCallback :: Lens' ProjectsInstancesCreate (Maybe Text) picCallback = lens _picCallback (\ s a -> s{_picCallback = a}) instance GoogleRequest ProjectsInstancesCreate where type Rs ProjectsInstancesCreate = Operation type Scopes ProjectsInstancesCreate = '["https://www.googleapis.com/auth/bigtable.admin", "https://www.googleapis.com/auth/bigtable.admin.cluster", "https://www.googleapis.com/auth/bigtable.admin.instance", "https://www.googleapis.com/auth/cloud-bigtable.admin", "https://www.googleapis.com/auth/cloud-bigtable.admin.cluster", "https://www.googleapis.com/auth/cloud-platform"] requestClient ProjectsInstancesCreate'{..} = go _picParent _picXgafv _picUploadProtocol _picAccessToken _picUploadType _picCallback (Just AltJSON) _picPayload bigtableAdminService where go = buildClient (Proxy :: Proxy ProjectsInstancesCreateResource) mempty