{-# 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.Subnetworks.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) -- -- Patches the specified subnetwork with the data included in the request. -- Only certain fields can up updated with a patch request as indicated in -- the field descriptions. You must specify the current fingeprint of the -- subnetwork resource being patched. -- -- /See:/ for @compute.subnetworks.patch@. module Network.Google.Resource.Compute.Subnetworks.Patch ( -- * REST Resource SubnetworksPatchResource -- * Creating a Request , subnetworksPatch , SubnetworksPatch -- * Request Lenses , spRequestId , spProject , spPayload , spSubnetwork , spRegion ) where import Network.Google.Compute.Types import Network.Google.Prelude -- | A resource alias for @compute.subnetworks.patch@ method which the -- 'SubnetworksPatch' request conforms to. type SubnetworksPatchResource = "compute" :> "v1" :> "projects" :> Capture "project" Text :> "regions" :> Capture "region" Text :> "subnetworks" :> Capture "subnetwork" Text :> QueryParam "requestId" Text :> QueryParam "alt" AltJSON :> ReqBody '[JSON] Subnetwork :> Patch '[JSON] Operation -- | Patches the specified subnetwork with the data included in the request. -- Only certain fields can up updated with a patch request as indicated in -- the field descriptions. You must specify the current fingeprint of the -- subnetwork resource being patched. -- -- /See:/ 'subnetworksPatch' smart constructor. data SubnetworksPatch = SubnetworksPatch' { _spRequestId :: !(Maybe Text) , _spProject :: !Text , _spPayload :: !Subnetwork , _spSubnetwork :: !Text , _spRegion :: !Text } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'SubnetworksPatch' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'spRequestId' -- -- * 'spProject' -- -- * 'spPayload' -- -- * 'spSubnetwork' -- -- * 'spRegion' subnetworksPatch :: Text -- ^ 'spProject' -> Subnetwork -- ^ 'spPayload' -> Text -- ^ 'spSubnetwork' -> Text -- ^ 'spRegion' -> SubnetworksPatch subnetworksPatch pSpProject_ pSpPayload_ pSpSubnetwork_ pSpRegion_ = SubnetworksPatch' { _spRequestId = Nothing , _spProject = pSpProject_ , _spPayload = pSpPayload_ , _spSubnetwork = pSpSubnetwork_ , _spRegion = pSpRegion_ } -- | 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). spRequestId :: Lens' SubnetworksPatch (Maybe Text) spRequestId = lens _spRequestId (\ s a -> s{_spRequestId = a}) -- | Project ID for this request. spProject :: Lens' SubnetworksPatch Text spProject = lens _spProject (\ s a -> s{_spProject = a}) -- | Multipart request metadata. spPayload :: Lens' SubnetworksPatch Subnetwork spPayload = lens _spPayload (\ s a -> s{_spPayload = a}) -- | Name of the Subnetwork resource to patch. spSubnetwork :: Lens' SubnetworksPatch Text spSubnetwork = lens _spSubnetwork (\ s a -> s{_spSubnetwork = a}) -- | Name of the region scoping this request. spRegion :: Lens' SubnetworksPatch Text spRegion = lens _spRegion (\ s a -> s{_spRegion = a}) instance GoogleRequest SubnetworksPatch where type Rs SubnetworksPatch = Operation type Scopes SubnetworksPatch = '["https://www.googleapis.com/auth/cloud-platform", "https://www.googleapis.com/auth/compute"] requestClient SubnetworksPatch'{..} = go _spProject _spRegion _spSubnetwork _spRequestId (Just AltJSON) _spPayload computeService where go = buildClient (Proxy :: Proxy SubnetworksPatchResource) mempty