{-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} -- | -- Module : Network.Google.Debugger.Types -- Copyright : (c) 2015 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- module Network.Google.Debugger.Types ( -- * Service Configuration debuggerService -- * OAuth Scopes , cloudDebuggerScope , cloudDebugletcontrollerScope , cloudPlatformScope -- * RegisterDebuggeeResponse , RegisterDebuggeeResponse , registerDebuggeeResponse , rdrDebuggee -- * SourceContext , SourceContext , sourceContext , scCloudWorkspace , scCloudRepo , scGerrit , scGit -- * SetBreakpointResponse , SetBreakpointResponse , setBreakpointResponse , sbrBreakpoint -- * Empty , Empty , empty -- * UpdateActiveBreakpointResponse , UpdateActiveBreakpointResponse , updateActiveBreakpointResponse -- * GerritSourceContext , GerritSourceContext , gerritSourceContext , gscGerritProject , gscAliasName , gscRevisionId , gscHostURI -- * RepoId , RepoId , repoId , riUid , riProjectRepoId -- * ProjectRepoId , ProjectRepoId , projectRepoId , priRepoName , priProjectId -- * FormatMessage , FormatMessage , formatMessage , fmFormat , fmParameters -- * Breakpoint , Breakpoint , breakpoint , bStatus , bLogLevel , bLocation , bAction , bFinalTime , bExpressions , bLogMessageFormat , bId , bUserEmail , bVariableTable , bStackFrames , bCondition , bEvaluatedExpressions , bCreateTime , bIsFinalState -- * GetBreakpointResponse , GetBreakpointResponse , getBreakpointResponse , gbrBreakpoint -- * Variable , Variable , variable , vStatus , vVarTableIndex , vMembers , vValue , vName -- * ListBreakpointsResponse , ListBreakpointsResponse , listBreakpointsResponse , lbrNextWaitToken , lbrBreakpoints -- * ListDebuggeesResponse , ListDebuggeesResponse , listDebuggeesResponse , ldrDebuggees -- * UpdateActiveBreakpointRequest , UpdateActiveBreakpointRequest , updateActiveBreakpointRequest , uabrBreakpoint -- * StatusMessage , StatusMessage , statusMessage , smRefersTo , smIsError , smDescription -- * ListActiveBreakpointsResponse , ListActiveBreakpointsResponse , listActiveBreakpointsResponse , labrNextWaitToken , labrBreakpoints -- * GitSourceContext , GitSourceContext , gitSourceContext , gURL , gRevisionId -- * SourceLocation , SourceLocation , sourceLocation , slPath , slLine -- * StackFrame , StackFrame , stackFrame , sfFunction , sfLocation , sfArguments , sfLocals -- * CloudRepoSourceContext , CloudRepoSourceContext , cloudRepoSourceContext , crscRepoId , crscAliasName , crscRevisionId -- * DebuggeeLabels , DebuggeeLabels , debuggeeLabels , dlAddtional -- * Debuggee , Debuggee , debuggee , dStatus , dUniquifier , dProject , dAgentVersion , dIsDisabled , dId , dLabels , dDescription , dIsInactive , dSourceContexts -- * CloudWorkspaceSourceContext , CloudWorkspaceSourceContext , cloudWorkspaceSourceContext , cwscWorkspaceId , cwscSnapshotId -- * RegisterDebuggeeRequest , RegisterDebuggeeRequest , registerDebuggeeRequest , rDebuggee -- * CloudWorkspaceId , CloudWorkspaceId , cloudWorkspaceId , cwiRepoId , cwiName ) where import Network.Google.Debugger.Types.Product import Network.Google.Debugger.Types.Sum import Network.Google.Prelude -- | Default request referring to version 'v2' of the Google Cloud Debugger API. This contains the host and root path used as a starting point for constructing service requests. debuggerService :: Service debuggerService = defaultService (ServiceId "clouddebugger:v2") "clouddebugger.googleapis.com" -- | Manage cloud debugger cloudDebuggerScope :: OAuthScope cloudDebuggerScope = "https://www.googleapis.com/auth/cloud_debugger"; -- | Manage active breakpoints in cloud debugger cloudDebugletcontrollerScope :: OAuthScope cloudDebugletcontrollerScope = "https://www.googleapis.com/auth/cloud_debugletcontroller"; -- | View and manage your data across Google Cloud Platform services cloudPlatformScope :: OAuthScope cloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform";