Copyright | (c) 2015-2016 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
Language | Haskell2010 |
Gets information about a single replica pool.
See: Replica Pool API Reference for replicapool.pools.get
.
Synopsis
- type PoolsGetResource = "replicapool" :> ("v1beta1" :> ("projects" :> (Capture "projectName" Text :> ("zones" :> (Capture "zone" Text :> ("pools" :> (Capture "poolName" Text :> (QueryParam "alt" AltJSON :> Get '[JSON] Pool))))))))
- poolsGet :: Text -> Text -> Text -> PoolsGet
- data PoolsGet
- pgPoolName :: Lens' PoolsGet Text
- pgZone :: Lens' PoolsGet Text
- pgProjectName :: Lens' PoolsGet Text
REST Resource
type PoolsGetResource = "replicapool" :> ("v1beta1" :> ("projects" :> (Capture "projectName" Text :> ("zones" :> (Capture "zone" Text :> ("pools" :> (Capture "poolName" Text :> (QueryParam "alt" AltJSON :> Get '[JSON] Pool)))))))) Source #
A resource alias for replicapool.pools.get
method which the
PoolsGet
request conforms to.
Creating a Request
Creates a value of PoolsGet
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
Gets information about a single replica pool.
See: poolsGet
smart constructor.
Instances
Eq PoolsGet Source # | |
Data PoolsGet Source # | |
Defined in Network.Google.Resource.ReplicaPool.Pools.Get gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PoolsGet -> c PoolsGet # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PoolsGet # toConstr :: PoolsGet -> Constr # dataTypeOf :: PoolsGet -> DataType # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c PoolsGet) # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PoolsGet) # gmapT :: (forall b. Data b => b -> b) -> PoolsGet -> PoolsGet # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PoolsGet -> r # gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PoolsGet -> r # gmapQ :: (forall d. Data d => d -> u) -> PoolsGet -> [u] # gmapQi :: Int -> (forall d. Data d => d -> u) -> PoolsGet -> u # gmapM :: Monad m => (forall d. Data d => d -> m d) -> PoolsGet -> m PoolsGet # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PoolsGet -> m PoolsGet # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PoolsGet -> m PoolsGet # | |
Show PoolsGet Source # | |
Generic PoolsGet Source # | |
GoogleRequest PoolsGet Source # | |
type Rep PoolsGet Source # | |
Defined in Network.Google.Resource.ReplicaPool.Pools.Get type Rep PoolsGet = D1 (MetaData "PoolsGet" "Network.Google.Resource.ReplicaPool.Pools.Get" "gogol-replicapool-0.4.0-l56ptZixCn8PWsfP2iNmj" False) (C1 (MetaCons "PoolsGet'" PrefixI True) (S1 (MetaSel (Just "_pgPoolName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: (S1 (MetaSel (Just "_pgZone") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: S1 (MetaSel (Just "_pgProjectName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text)))) | |
type Scopes PoolsGet Source # | |
Defined in Network.Google.Resource.ReplicaPool.Pools.Get type Scopes PoolsGet = "https://www.googleapis.com/auth/cloud-platform" ': ("https://www.googleapis.com/auth/cloud-platform.read-only" ': ("https://www.googleapis.com/auth/ndev.cloudman" ': ("https://www.googleapis.com/auth/ndev.cloudman.readonly" ': ("https://www.googleapis.com/auth/replicapool" ': ("https://www.googleapis.com/auth/replicapool.readonly" ': ([] :: [Symbol])))))) | |
type Rs PoolsGet Source # | |