{-# LANGUAGE DataKinds #-} {-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} -- | -- Module : Network.Google.Container.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.Container.Types ( -- * Service Configuration containerService -- * OAuth Scopes , cloudPlatformScope -- * HorizontalPodAutoscaling , HorizontalPodAutoscaling , horizontalPodAutoscaling , hpaDisabled -- * ListOperationsResponse , ListOperationsResponse , listOperationsResponse , lorOperations , lorMissingZones -- * CreateClusterRequest , CreateClusterRequest , createClusterRequest , ccrCluster -- * Cluster , Cluster , cluster , cStatus , cNodePools , cNodeConfig , cNodeIPv4CIdRSize , cClusterIPv4CIdR , cInitialNodeCount , cCurrentNodeVersion , cNetwork , cInitialClusterVersion , cZone , cAddonsConfig , cServicesIPv4CIdR , cMasterAuth , cSelfLink , cName , cCurrentMasterVersion , cStatusMessage , cSubnetwork , cCurrentNodeCount , cEndpoint , cLocations , cLoggingService , cDescription , cInstanceGroupURLs , cMonitoringService , cCreateTime -- * UpdateClusterRequest , UpdateClusterRequest , updateClusterRequest , ucrUpdate -- * NodeConfig , NodeConfig , nodeConfig , ncDiskSizeGb , ncOAuthScopes , ncMachineType , ncMetadata -- * HTTPLoadBalancing , HTTPLoadBalancing , hTTPLoadBalancing , httplbDisabled -- * Operation , Operation , operation , oStatus , oZone , oSelfLink , oName , oStatusMessage , oOperationType , oTargetLink , oDetail -- * AddonsConfig , AddonsConfig , addonsConfig , acHorizontalPodAutoscaling , acHTTPLoadBalancing -- * NodePool , NodePool , nodePool , npStatus , npConfig , npInitialNodeCount , npSelfLink , npName , npStatusMessage , npVersion , npInstanceGroupURLs -- * MasterAuth , MasterAuth , masterAuth , maClientKey , maUsername , maClientCertificate , maPassword , maClusterCaCertificate -- * NodeConfigMetadata , NodeConfigMetadata , nodeConfigMetadata , ncmAddtional -- * ServerConfig , ServerConfig , serverConfig , scValidNodeVersions , scDefaultImageFamily , scValidImageFamilies , scDefaultClusterVersion -- * ListClustersResponse , ListClustersResponse , listClustersResponse , lcrClusters , lcrMissingZones -- * ClusterUpdate , ClusterUpdate , clusterUpdate , cuDesiredAddonsConfig , cuDesiredNodePoolId , cuDesiredNodeVersion , cuDesiredMasterVersion , cuDesiredMonitoringService -- * ListNodePoolsResponse , ListNodePoolsResponse , listNodePoolsResponse , lnprNodePools -- * CreateNodePoolRequest , CreateNodePoolRequest , createNodePoolRequest , cnprNodePool ) where import Network.Google.Container.Types.Product import Network.Google.Container.Types.Sum import Network.Google.Prelude -- | Default request referring to version 'v1' of the Google Container Engine API. This contains the host and root path used as a starting point for constructing service requests. containerService :: ServiceConfig containerService = defaultService (ServiceId "container:v1") "container.googleapis.com" -- | View and manage your data across Google Cloud Platform services cloudPlatformScope :: Proxy '["https://www.googleapis.com/auth/cloud-platform"] cloudPlatformScope = Proxy;