{-# 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.HealthChecks.Insert -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Creates a HealthCheck resource in the specified project using the data -- included in the request. -- -- /See:/ for @compute.healthChecks.insert@. module Network.Google.Resource.Compute.HealthChecks.Insert ( -- * REST Resource HealthChecksInsertResource -- * Creating a Request , healthChecksInsert , HealthChecksInsert -- * Request Lenses , hciRequestId , hciProject , hciPayload ) where import Network.Google.Compute.Types import Network.Google.Prelude -- | A resource alias for @compute.healthChecks.insert@ method which the -- 'HealthChecksInsert' request conforms to. type HealthChecksInsertResource = "compute" :> "v1" :> "projects" :> Capture "project" Text :> "global" :> "healthChecks" :> QueryParam "requestId" Text :> QueryParam "alt" AltJSON :> ReqBody '[JSON] HealthCheck :> Post '[JSON] Operation -- | Creates a HealthCheck resource in the specified project using the data -- included in the request. -- -- /See:/ 'healthChecksInsert' smart constructor. data HealthChecksInsert = HealthChecksInsert' { _hciRequestId :: !(Maybe Text) , _hciProject :: !Text , _hciPayload :: !HealthCheck } deriving (Eq,Show,Data,Typeable,Generic) -- | Creates a value of 'HealthChecksInsert' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'hciRequestId' -- -- * 'hciProject' -- -- * 'hciPayload' healthChecksInsert :: Text -- ^ 'hciProject' -> HealthCheck -- ^ 'hciPayload' -> HealthChecksInsert healthChecksInsert pHciProject_ pHciPayload_ = HealthChecksInsert' { _hciRequestId = Nothing , _hciProject = pHciProject_ , _hciPayload = pHciPayload_ } -- | 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). hciRequestId :: Lens' HealthChecksInsert (Maybe Text) hciRequestId = lens _hciRequestId (\ s a -> s{_hciRequestId = a}) -- | Project ID for this request. hciProject :: Lens' HealthChecksInsert Text hciProject = lens _hciProject (\ s a -> s{_hciProject = a}) -- | Multipart request metadata. hciPayload :: Lens' HealthChecksInsert HealthCheck hciPayload = lens _hciPayload (\ s a -> s{_hciPayload = a}) instance GoogleRequest HealthChecksInsert where type Rs HealthChecksInsert = Operation type Scopes HealthChecksInsert = '["https://www.googleapis.com/auth/cloud-platform", "https://www.googleapis.com/auth/compute"] requestClient HealthChecksInsert'{..} = go _hciProject _hciRequestId (Just AltJSON) _hciPayload computeService where go = buildClient (Proxy :: Proxy HealthChecksInsertResource) mempty