{-# 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.Projects.MoveInstance -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Moves an instance and its attached persistent disks from one zone to -- another. -- -- /See:/ for @compute.projects.moveInstance@. module Network.Google.Resource.Compute.Projects.MoveInstance ( -- * REST Resource ProjectsMoveInstanceResource -- * Creating a Request , projectsMoveInstance , ProjectsMoveInstance -- * Request Lenses , pmiRequestId , pmiProject , pmiPayload ) where import Network.Google.Compute.Types import Network.Google.Prelude -- | A resource alias for @compute.projects.moveInstance@ method which the -- 'ProjectsMoveInstance' request conforms to. type ProjectsMoveInstanceResource = "compute" :> "v1" :> "projects" :> Capture "project" Text :> "moveInstance" :> QueryParam "requestId" Text :> QueryParam "alt" AltJSON :> ReqBody '[JSON] InstanceMoveRequest :> Post '[JSON] Operation -- | Moves an instance and its attached persistent disks from one zone to -- another. -- -- /See:/ 'projectsMoveInstance' smart constructor. data ProjectsMoveInstance = ProjectsMoveInstance' { _pmiRequestId :: !(Maybe Text) , _pmiProject :: !Text , _pmiPayload :: !InstanceMoveRequest } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'ProjectsMoveInstance' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'pmiRequestId' -- -- * 'pmiProject' -- -- * 'pmiPayload' projectsMoveInstance :: Text -- ^ 'pmiProject' -> InstanceMoveRequest -- ^ 'pmiPayload' -> ProjectsMoveInstance projectsMoveInstance pPmiProject_ pPmiPayload_ = ProjectsMoveInstance' { _pmiRequestId = Nothing , _pmiProject = pPmiProject_ , _pmiPayload = pPmiPayload_ } -- | An optional request ID to identify requests. Specify a unique request ID -- so that if you must retry your request, the server will know to ignore -- the request if it has already been completed. For example, consider a -- situation where you make an initial request and the request times out. -- If you make the request again with the same request ID, the server can -- check if original operation with the same request ID was received, and -- if so, will ignore the second request. This prevents clients from -- accidentally creating duplicate commitments. The request ID must be a -- valid UUID with the exception that zero UUID is not supported -- (00000000-0000-0000-0000-000000000000). pmiRequestId :: Lens' ProjectsMoveInstance (Maybe Text) pmiRequestId = lens _pmiRequestId (\ s a -> s{_pmiRequestId = a}) -- | Project ID for this request. pmiProject :: Lens' ProjectsMoveInstance Text pmiProject = lens _pmiProject (\ s a -> s{_pmiProject = a}) -- | Multipart request metadata. pmiPayload :: Lens' ProjectsMoveInstance InstanceMoveRequest pmiPayload = lens _pmiPayload (\ s a -> s{_pmiPayload = a}) instance GoogleRequest ProjectsMoveInstance where type Rs ProjectsMoveInstance = Operation type Scopes ProjectsMoveInstance = '["https://www.googleapis.com/auth/cloud-platform", "https://www.googleapis.com/auth/compute"] requestClient ProjectsMoveInstance'{..} = go _pmiProject _pmiRequestId (Just AltJSON) _pmiPayload computeService where go = buildClient (Proxy :: Proxy ProjectsMoveInstanceResource) mempty