{-# LANGUAGE DataKinds #-} {-# LANGUAGE DerivingStrategies #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE ImportQualifiedPost #-} {-# LANGUAGE LambdaCase #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE PatternSynonyms #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-duplicate-exports #-} {-# OPTIONS_GHC -fno-warn-name-shadowing #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- | -- Module : Gogol.ReplicaPoolUpdater.Types -- Copyright : (c) 2015-2025 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Toni Cebrián -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Gogol.ReplicaPoolUpdater.Types ( -- * Configuration replicaPoolUpdaterService, -- * OAuth Scopes CloudPlatform'FullControl, CloudPlatform'ReadOnly, Replicapool'FullControl, Replicapool'Readonly, -- * Types -- ** InstanceUpdate InstanceUpdate (..), newInstanceUpdate, -- ** InstanceUpdate_Error InstanceUpdate_Error (..), newInstanceUpdate_Error, -- ** InstanceUpdate_Error_ErrorsItem InstanceUpdate_Error_ErrorsItem (..), newInstanceUpdate_Error_ErrorsItem, -- ** InstanceUpdateList InstanceUpdateList (..), newInstanceUpdateList, -- ** Operation Operation (..), newOperation, -- ** Operation_Error Operation_Error (..), newOperation_Error, -- ** Operation_Error_ErrorsItem Operation_Error_ErrorsItem (..), newOperation_Error_ErrorsItem, -- ** Operation_WarningsItem Operation_WarningsItem (..), newOperation_WarningsItem, -- ** Operation_WarningsItem_DataItem Operation_WarningsItem_DataItem (..), newOperation_WarningsItem_DataItem, -- ** OperationList OperationList (..), newOperationList, -- ** RollingUpdate RollingUpdate (..), newRollingUpdate, -- ** RollingUpdate_Error RollingUpdate_Error (..), newRollingUpdate_Error, -- ** RollingUpdate_Error_ErrorsItem RollingUpdate_Error_ErrorsItem (..), newRollingUpdate_Error_ErrorsItem, -- ** RollingUpdate_Policy RollingUpdate_Policy (..), newRollingUpdate_Policy, -- ** RollingUpdateList RollingUpdateList (..), newRollingUpdateList, ) where import Gogol.Prelude qualified as Core import Gogol.ReplicaPoolUpdater.Internal.Product import Gogol.ReplicaPoolUpdater.Internal.Sum -- | Default request referring to version @v1beta1@ of the Google Compute Engine Instance Group Updater API. This contains the host and root path used as a starting point for constructing service requests. replicaPoolUpdaterService :: Core.ServiceConfig replicaPoolUpdaterService = Core.defaultService (Core.ServiceId "replicapoolupdater:v1beta1") "www.googleapis.com" -- | View and manage your data across Google Cloud Platform services type CloudPlatform'FullControl = "https://www.googleapis.com/auth/cloud-platform" -- | View your data across Google Cloud Platform services type CloudPlatform'ReadOnly = "https://www.googleapis.com/auth/cloud-platform.read-only" -- | View and manage replica pools type Replicapool'FullControl = "https://www.googleapis.com/auth/replicapool" -- | View replica pools type Replicapool'Readonly = "https://www.googleapis.com/auth/replicapool.readonly"