{-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} -- | -- Module : Network.Google.Redis.Types -- Copyright : (c) 2015-2016 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- module Network.Google.Redis.Types ( -- * Service Configuration redisService -- * OAuth Scopes , cloudPlatformScope -- * InstanceLabels , InstanceLabels , instanceLabels , ilAddtional -- * Status , Status , status , sDetails , sCode , sMessage -- * ListLocationsResponse , ListLocationsResponse , listLocationsResponse , llrNextPageToken , llrLocations -- * ListOperationsResponse , ListOperationsResponse , listOperationsResponse , lorNextPageToken , lorOperations -- * Location , Location , location , lName , lMetadata , lDisplayName , lLabels , lLocationId -- * GoogleCloudRedisV1ZoneMetadata , GoogleCloudRedisV1ZoneMetadata , googleCloudRedisV1ZoneMetadata -- * Operation , Operation , operation , oDone , oError , oResponse , oName , oMetadata -- * Empty , Empty , empty -- * InstanceTier , InstanceTier (..) -- * StatusDetailsItem , StatusDetailsItem , statusDetailsItem , sdiAddtional -- * GoogleCloudRedisV1LocationMetadata , GoogleCloudRedisV1LocationMetadata , googleCloudRedisV1LocationMetadata , gcrvlmAvailableZones -- * GoogleCloudRedisV1OperationMetadata , GoogleCloudRedisV1OperationMetadata , googleCloudRedisV1OperationMetadata , gcrvomAPIVersion , gcrvomEndTime , gcrvomStatusDetail , gcrvomVerb , gcrvomCancelRequested , gcrvomTarget , gcrvomCreateTime -- * InstanceRedisConfigs , InstanceRedisConfigs , instanceRedisConfigs , ircAddtional -- * GoogleCloudRedisV1LocationMetadataAvailableZones , GoogleCloudRedisV1LocationMetadataAvailableZones , googleCloudRedisV1LocationMetadataAvailableZones , gcrvlmazAddtional -- * Xgafv , Xgafv (..) -- * LocationLabels , LocationLabels , locationLabels , llAddtional -- * LocationMetadata , LocationMetadata , locationMetadata , lmAddtional -- * OperationMetadata , OperationMetadata , operationMetadata , omAddtional -- * ListInstancesResponse , ListInstancesResponse , listInstancesResponse , lirNextPageToken , lirUnreachable , lirInstances -- * InstanceState , InstanceState (..) -- * OperationResponse , OperationResponse , operationResponse , orAddtional -- * Instance , Instance , instance' , iState , iAuthorizedNetwork , iMemorySizeGb , iName , iStatusMessage , iAlternativeLocationId , iReservedIPRange , iTier , iDisplayName , iLabels , iLocationId , iHost , iRedisConfigs , iRedisVersion , iCreateTime , iPort , iCurrentLocationId ) where import Network.Google.Prelude import Network.Google.Redis.Types.Product import Network.Google.Redis.Types.Sum -- | Default request referring to version 'v1' of the Google Cloud Memorystore for Redis API. This contains the host and root path used as a starting point for constructing service requests. redisService :: ServiceConfig redisService = defaultService (ServiceId "redis:v1") "redis.googleapis.com" -- | View and manage your data across Google Cloud Platform services cloudPlatformScope :: Proxy '["https://www.googleapis.com/auth/cloud-platform"] cloudPlatformScope = Proxy;