{-# 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.Redis.Projects.Locations.Instances.Patch -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Updates the metadata and configuration of a specific Redis instance. -- Completed longrunning.Operation will contain the new instance object in -- the response field. The returned operation is automatically deleted -- after a few hours, so there is no need to call DeleteOperation. -- -- /See:/ for @redis.projects.locations.instances.patch@. module Network.Google.Resource.Redis.Projects.Locations.Instances.Patch ( -- * REST Resource ProjectsLocationsInstancesPatchResource -- * Creating a Request , projectsLocationsInstancesPatch , ProjectsLocationsInstancesPatch -- * Request Lenses , plipXgafv , plipUploadProtocol , plipUpdateMask , plipAccessToken , plipUploadType , plipPayload , plipName , plipCallback ) where import Network.Google.Prelude import Network.Google.Redis.Types -- | A resource alias for @redis.projects.locations.instances.patch@ method which the -- 'ProjectsLocationsInstancesPatch' request conforms to. type ProjectsLocationsInstancesPatchResource = "v1" :> Capture "name" Text :> QueryParam "$.xgafv" Xgafv :> QueryParam "upload_protocol" Text :> QueryParam "updateMask" GFieldMask :> QueryParam "access_token" Text :> QueryParam "uploadType" Text :> QueryParam "callback" Text :> QueryParam "alt" AltJSON :> ReqBody '[JSON] Instance :> Patch '[JSON] Operation -- | Updates the metadata and configuration of a specific Redis instance. -- Completed longrunning.Operation will contain the new instance object in -- the response field. The returned operation is automatically deleted -- after a few hours, so there is no need to call DeleteOperation. -- -- /See:/ 'projectsLocationsInstancesPatch' smart constructor. data ProjectsLocationsInstancesPatch = ProjectsLocationsInstancesPatch' { _plipXgafv :: !(Maybe Xgafv) , _plipUploadProtocol :: !(Maybe Text) , _plipUpdateMask :: !(Maybe GFieldMask) , _plipAccessToken :: !(Maybe Text) , _plipUploadType :: !(Maybe Text) , _plipPayload :: !Instance , _plipName :: !Text , _plipCallback :: !(Maybe Text) } deriving (Eq, Show, Data, Typeable, Generic) -- | Creates a value of 'ProjectsLocationsInstancesPatch' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'plipXgafv' -- -- * 'plipUploadProtocol' -- -- * 'plipUpdateMask' -- -- * 'plipAccessToken' -- -- * 'plipUploadType' -- -- * 'plipPayload' -- -- * 'plipName' -- -- * 'plipCallback' projectsLocationsInstancesPatch :: Instance -- ^ 'plipPayload' -> Text -- ^ 'plipName' -> ProjectsLocationsInstancesPatch projectsLocationsInstancesPatch pPlipPayload_ pPlipName_ = ProjectsLocationsInstancesPatch' { _plipXgafv = Nothing , _plipUploadProtocol = Nothing , _plipUpdateMask = Nothing , _plipAccessToken = Nothing , _plipUploadType = Nothing , _plipPayload = pPlipPayload_ , _plipName = pPlipName_ , _plipCallback = Nothing } -- | V1 error format. plipXgafv :: Lens' ProjectsLocationsInstancesPatch (Maybe Xgafv) plipXgafv = lens _plipXgafv (\ s a -> s{_plipXgafv = a}) -- | Upload protocol for media (e.g. \"raw\", \"multipart\"). plipUploadProtocol :: Lens' ProjectsLocationsInstancesPatch (Maybe Text) plipUploadProtocol = lens _plipUploadProtocol (\ s a -> s{_plipUploadProtocol = a}) -- | Required. Mask of fields to update. At least one path must be supplied -- in this field. The elements of the repeated paths field may only include -- these fields from Instance: * \`displayName\` * \`labels\` * -- \`memorySizeGb\` * \`redisConfig\` plipUpdateMask :: Lens' ProjectsLocationsInstancesPatch (Maybe GFieldMask) plipUpdateMask = lens _plipUpdateMask (\ s a -> s{_plipUpdateMask = a}) -- | OAuth access token. plipAccessToken :: Lens' ProjectsLocationsInstancesPatch (Maybe Text) plipAccessToken = lens _plipAccessToken (\ s a -> s{_plipAccessToken = a}) -- | Legacy upload protocol for media (e.g. \"media\", \"multipart\"). plipUploadType :: Lens' ProjectsLocationsInstancesPatch (Maybe Text) plipUploadType = lens _plipUploadType (\ s a -> s{_plipUploadType = a}) -- | Multipart request metadata. plipPayload :: Lens' ProjectsLocationsInstancesPatch Instance plipPayload = lens _plipPayload (\ s a -> s{_plipPayload = a}) -- | Required. Unique name of the resource in this scope including project -- and location using the form: -- \`projects\/{project_id}\/locations\/{location_id}\/instances\/{instance_id}\` -- Note: Redis instances are managed and addressed at regional level so -- location_id here refers to a GCP region; however, users may choose which -- specific zone (or collection of zones for cross-zone instances) an -- instance should be provisioned in. Refer to [location_id] and -- [alternative_location_id] fields for more details. plipName :: Lens' ProjectsLocationsInstancesPatch Text plipName = lens _plipName (\ s a -> s{_plipName = a}) -- | JSONP plipCallback :: Lens' ProjectsLocationsInstancesPatch (Maybe Text) plipCallback = lens _plipCallback (\ s a -> s{_plipCallback = a}) instance GoogleRequest ProjectsLocationsInstancesPatch where type Rs ProjectsLocationsInstancesPatch = Operation type Scopes ProjectsLocationsInstancesPatch = '["https://www.googleapis.com/auth/cloud-platform"] requestClient ProjectsLocationsInstancesPatch'{..} = go _plipName _plipXgafv _plipUploadProtocol _plipUpdateMask _plipAccessToken _plipUploadType _plipCallback (Just AltJSON) _plipPayload redisService where go = buildClient (Proxy :: Proxy ProjectsLocationsInstancesPatchResource) mempty