!kT/      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~        ! " # $ % & ' ( ) * + , - . (c) 2015-2016 Brendan HayMozilla Public License, v. 2.0.%Brendan Hay <brendan.g.hay@gmail.com>auto-generatednon-portable (GHC extensions)None27_-(gogol-debuggerThe alias kind.gogol-debuggerANY Do not use.gogol-debuggerFIXED Git taggogol-debuggerMOVABLE Git branchgogol-debuggerOTHER OTHER is used to specify non-standard aliases, those not of the kinds above. For example, if a Git repo has a ref named "refs/foo/bar", it is considered to be of kind OTHER.gogol-debuggerVAction that the agent should perform when the code at the breakpoint location is hit.gogol-debuggerCAPTURE Capture stack frame and variables and update the breakpoint. The data is only captured once. After that the breakpoint is set in a final state.gogol-debuggerLOGS Log each breakpoint hit. The breakpoint remains active until deleted or expired.gogol-debuggerV1 error format. gogol-debugger1 v1 error format gogol-debugger2 v2 error format gogol-debuggerFIndicates the severity of the log. Only relevant when action is `LOG`. gogol-debuggerINFO Information log message. gogol-debuggerWARNING Warning log message.gogol-debuggerERROR Error log message.gogol-debugger'Reference to which the message applies.gogol-debugger UNSPECIFIED/ Status doesn't refer to any particular input.gogol-debuggerBREAKPOINT_SOURCE_LOCATIONB Status applies to the breakpoint and is related to its location.gogol-debuggerBREAKPOINT_CONDITIONC Status applies to the breakpoint and is related to its condition.gogol-debuggerBREAKPOINT_EXPRESSIONE Status applies to the breakpoint and is related to its expressions.gogol-debuggerBREAKPOINT_AGE= Status applies to the breakpoint and is related to its age.gogol-debugger VARIABLE_NAME( Status applies to the entire variable.gogol-debuggerVARIABLE_VALUE< Status applies to variable value (variable name is valid).   (c) 2015-2016 Brendan HayMozilla Public License, v. 2.0.%Brendan Hay <brendan.g.hay@gmail.com>auto-generatednon-portable (GHC extensions)None"#27gogol-debuggerA CloudWorkspaceId is a unique identifier for a cloud workspace. A cloud workspace is a place associated with a repo where modified files can be stored before they are committed.See:  smart constructor.gogol-debuggerAn alias to a repo revision.See:  smart constructor.gogol-debuggerRequest to register a debuggee.See:  smart constructor.gogol-debuggerLA CloudWorkspaceSourceContext denotes a workspace at a particular snapshot.See:  smart constructor.gogol-debuggerbRepresents the debugged application. The application may include one or more replicated processes executing the same code. Each of these processes is attached with a debugger agent, carrying out the debugging commands. Agents attached to the same debuggee identify themselves as such by using exactly the same Debuggee message value when registering.See:  smart constructor.gogol-debuggerZA set of custom debuggee properties, populated by the agent, to be displayed to the user.See:  smart constructor.gogol-debuggeruA CloudRepoSourceContext denotes a particular revision in a cloud repo (a repo hosted by the Google Cloud Platform).See:  smart constructor.gogol-debugger!Represents a stack frame context.See:  smart constructor.gogol-debugger)Represents a location in the source code.See:  smart constructor. gogol-debugger`A GitSourceContext denotes a particular revision in a third party Git repository (e.g. GitHub).See:  smart constructor.!gogol-debuggereAn ExtendedSourceContext is a SourceContext combined with additional details describing the context.See: | smart constructor."gogol-debugger(Response for listing active breakpoints.See: x smart constructor.#gogol-debugger2Represents a contextual status message. The message can indicate an error or informational status, and refer to specific parts of the containing object. For example, the `Breakpoint.status` field can indicate an error referring to the `BREAKPOINT_SOURCE_LOCATION` with the message `Location not found`.See: t smart constructor.$gogol-debugger'Request to update an active breakpoint.See: r smart constructor.%gogol-debuggerResponse for listing debuggees.See: p smart constructor.&gogol-debugger!Response for listing breakpoints.See: m smart constructor.'gogol-debugger Represents a variable or an argument possibly of a compound object type. Note how the following variables are represented: 1) A simple variable: int x = 5 { name: "x", value: "5", type: "int" } // Captured variable 2) A compound object: struct T { int m1; int m2; }; T x = { 3, 7 }; { // Captured variable name: "x", type: "T", members { name: "m1", value: "3", type: "int" }, members { name: "m2", value: "7", type: "int" } } 3) A pointer where the pointee was captured: T x = { 3, 7 }; T* p = &x; { // Captured variable name: "p", type: "T*", value: "0x00500500", members { name: "m1", value: "3", type: "int" }, members { name: "m2", value: "7", type: "int" } } 4) A pointer where the pointee was not captured: T* p = new T; { // Captured variable name: "p", type: "T*", value: "0x00400400" status { is_error: true, description { format: "unavailable" } } } The status should describe the reason for the missing value, such as ``, ``, ``. Note that a null pointer should not have members. 5) An unnamed value: int* p = new int(7); { // Captured variable name: "p", value: "0x00500500", type: "int*", members { value: "7", type: "int" } } 6) An unnamed pointer where the pointee was not captured: int* p = new int(7); int** pp = &p; { // Captured variable name: "pp", value: "0x00500500", type: "int**", members { value: "0x00400400", type: "int*" status { is_error: true, description: { format: "unavailable" } } } } } To optimize computation, memory and network traffic, variables that repeat in the output multiple times can be stored once in a shared variable table and be referenced using the `var_table_index` field. The variables stored in the shared table are nameless and are essentially a partition of the complete variable. To reconstruct the complete variable, merge the referencing variable with the referenced variable. When using the shared variable table, the following variables: T x = { 3, 7 }; T* p = &x; T& r = x; { name: "x", var_table_index: 3, type: "T" } // Captured variables { name: "p", value "0x00500500", type="T*", var_table_index: 3 } { name: "r", type="T&", var_table_index: 3 } { // Shared variable table entry #3: members { name: "m1", value: "3", type: "int" }, members { name: "m2", value: "7", type: "int" } } Note that the pointer address is stored with the referencing variable and not with the referenced variable. This allows the referenced variable to be shared between pointers and references. The type field is optional. The debugger agent may or may not support it.See: f smart constructor.(gogol-debugger,Response for getting breakpoint information.See: d smart constructor.)gogol-debugger\A set of custom breakpoint properties, populated by the agent, to be displayed to the user.See: b smart constructor.*gogol-debugger<Represents the breakpoint specification, status and results.See: Q smart constructor.+gogol-debugger%Represents a message with parameters.See: N smart constructor.,gogol-debuggertSelects a repo using a Google Cloud Platform project ID (e.g. winged-cargo-31) and a repo name within that project.See: K smart constructor.-gogol-debugger"Labels with user defined metadata.See: I smart constructor..gogol-debugger%A unique identifier for a cloud repo.See: F smart constructor./gogol-debugger.A SourceContext referring to a Gerrit project.See: @ smart constructor.0gogol-debugger_Response for updating an active breakpoint. The message is defined to allow future extensions.See: ? smart constructor.1gogol-debugger[A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.See: > smart constructor.2gogol-debugger"Response for setting a breakpoint.See: < smart constructor.3gogol-debuggerA SourceContext is a reference to a tree of files. A SourceContext together with a path point to a unique revision of a single file or directory.See: 7 smart constructor.4gogol-debugger$Response for registering a debuggee.See: 5 smart constructor.5gogol-debuggerCreates a value of 44 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:66gogol-debugger5Debuggee resource. The field `id` is guaranteed to be set (in addition to the echoed fields). If the field `is_disabled` is set to `true`, the agent should disable itself by removing all breakpoints and detaching from the application. It should however continue to poll `RegisterDebuggee` until reenabled.7gogol-debuggerCreates a value of 34 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:89:;8gogol-debugger=A SourceContext referring to a snapshot in a cloud workspace.9gogol-debugger8A SourceContext referring to a revision in a cloud repo.:gogol-debugger.A SourceContext referring to a Gerrit project.;gogol-debuggerDA SourceContext referring to any third party Git repo (e.g. GitHub).<gogol-debuggerCreates a value of 24 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:==gogol-debugger`Breakpoint resource. The field `id` is guaranteed to be set (in addition to the echoed fileds).>gogol-debuggerCreates a value of 14 with the minimum fields required to make a request.?gogol-debuggerCreates a value of 04 with the minimum fields required to make a request.@gogol-debuggerCreates a value of /4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:ABCDEAgogol-debuggerThe full project name within the host. Projects may be nested, so "project/subproject" is a valid project name. The "repo name" is hostURI/project.Bgogol-debugger)The name of an alias (branch, tag, etc.).Cgogol-debuggerA revision (commit) ID.Dgogol-debugger%The URI of a running Gerrit instance.Egogol-debugger'An alias, which may be a branch or tag.Fgogol-debuggerCreates a value of .4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:GHGgogol-debugger.A server-assigned, globally unique identifier.Hgogol-debugger.A combination of a project ID and a repo name.Igogol-debuggerCreates a value of -4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:JKgogol-debuggerCreates a value of ,4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:LMLgogol-debugger7The name of the repo. Leave empty for the default repo.Mgogol-debuggerThe ID of the project.Ngogol-debuggerCreates a value of +4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:OPPgogol-debugger4Optional parameters to be embedded into the message.Qgogol-debuggerCreates a value of *4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:RSTUVWXYZ[\]^_`aRgogol-debuggerBreakpoint status. The status includes an error flag and a human readable message. This field is usually unset. The message can be either informational or an error message. Regardless, clients should always display the text message back to the user. Error status indicates complete failure of the breakpoint. Example (non-final state): `Still loading symbols...` Examples (final state): * `Invalid line number` referring to location * `Field f not found in class C` referring to conditionSgogol-debuggerFIndicates the severity of the log. Only relevant when action is `LOG`.Tgogol-debuggerBreakpoint source location.Ugogol-debuggerVAction that the agent should perform when the code at the breakpoint location is hit.Vgogol-debuggerPTime this breakpoint was finalized as seen by the server in seconds resolution.Wgogol-debuggerList of read-only expressions to evaluate at the breakpoint location. The expressions are composed using expressions in the programming language at the source location. If the breakpoint action is `LOG`, the evaluated expressions are included in log statements.Ygogol-debugger;Breakpoint identifier, unique in the scope of the debuggee.Zgogol-debugger\A set of custom breakpoint properties, populated by the agent, to be displayed to the user.[gogol-debugger7E-mail address of the user that created this breakpoint\gogol-debuggerThe `variable_table` exists to aid with computation, memory and network traffic optimization. It enables storing a variable once and reference it from multiple variables, including variables stored in the `variable_table` itself. For example, the same `this` object, which may appear at many levels of the stack, can have all of its data stored once in this table. The stack frame variables then would hold only a reference to it. The variable `var_table_index` field is an index into this repeated field. The stored objects are nameless and get their name from the referencing variable. The effective variable is a merge of the referencing variable and the referenced variable.]gogol-debuggercThe stack at breakpoint time, where stack_frames[0] represents the most recently entered function.^gogol-debuggerCondition that triggers the breakpoint. The condition is a compound boolean expression composed using expressions in a programming language at the source location._gogol-debuggerValues of evaluated expressions at breakpoint time. The evaluated expressions appear in exactly the same order they are listed in the `expressions` field. The `name` field holds the original expression text, the `value` or `members` field holds the result of the evaluated expression. If the expression cannot be evaluated, the `status` inside the `Variable` will indicate an error and contain the error text.`gogol-debuggerETime this breakpoint was created by the server in seconds resolution.agogol-debuggerhWhen true, indicates that this is a final result and the breakpoint state will not change from here on.bgogol-debuggerCreates a value of )4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:cdgogol-debuggerCreates a value of (4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:eegogol-debuggerTComplete breakpoint state. The fields `id` and `location` are guaranteed to be set.fgogol-debuggerCreates a value of '4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:ghijklggogol-debuggerStatus associated with the variable. This field will usually stay unset. A status of a single variable only applies to that variable or expression. The rest of breakpoint data still remains valid. Variables might be reported in error state even when breakpoint is not in final state. The message may refer to variable name with `refers_to` set to `VARIABLE_NAME`. Alternatively `refers_to` will be set to `VARIABLE_VALUE`. In either case variable value and members will be unset. Example of error message applied to name: `Invalid expression syntax`. Example of information message applied to value: `Not captured`. Examples of error message applied to value: * `Malformed string`, * `Field f not found in class C` * `Null pointer dereference`hgogol-debuggerReference to a variable in the shared variable table. More than one variable can reference the same variable in the table. The `var_table_index` field is an index into `variable_table` in Breakpoint.igogol-debugger0Members contained or pointed to by the variable.jgogol-debuggerSimple value of the variable.kgogol-debuggerName of the variable, if any.lgogol-debuggerVariable type (e.g. `MyClass`). If the variable is split with `var_table_index`, `type` goes next to `value`. The interpretation of a type is agent specific. It is recommended to include the dynamic type rather than a static type of an object.mgogol-debuggerCreates a value of &4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:nongogol-debuggerA wait token that can be used in the next call to `list` (REST) or `ListBreakpoints` (RPC) to block until the list of breakpoints has changes.ogogol-debuggerList of breakpoints matching the request. The fields `id` and `location` are guaranteed to be set on each breakpoint. The fields: `stack_frames`, `evaluated_expressions` and `variable_table` are cleared on each breakpoint regardless of its status.pgogol-debuggerCreates a value of %4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:qqgogol-debuggerList of debuggees accessible to the calling user. The fields `debuggee.id` and `description` are guaranteed to be set. The `description` field is a human readable field provided by agents and can be displayed to users.rgogol-debuggerCreates a value of $4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:ssgogol-debuggerUpdated breakpoint information. The field `id` must be set. The agent must echo all Breakpoint specification fields in the update.tgogol-debuggerCreates a value of #4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:uvwugogol-debugger'Reference to which the message applies.vgogol-debugger1Distinguishes errors from informational messages.wgogol-debuggerStatus message text.xgogol-debuggerCreates a value of "4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:yz{ygogol-debuggeraA token that can be used in the next method call to block until the list of breakpoints changes.zgogol-debuggerlList of all active breakpoints. The fields `id` and `location` are guaranteed to be set on each breakpoint.{gogol-debuggerIf set to `true`, indicates that there is no change to the list of active breakpoints and the server-selected timeout has expired. The `breakpoints` field would be empty and should be ignored.|gogol-debuggerCreates a value of !4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:}~}gogol-debuggerAny source context.~gogol-debugger"Labels with user defined metadata.gogol-debuggerCreates a value of  4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:gogol-debuggerGit repository URL.gogol-debuggerGit commit hash. required.gogol-debuggerCreates a value of 4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:gogol-debuggerGPath to the source file within the source context of the target binary.gogol-debuggerCLine inside the file. The first line in the file has the value `1`.gogol-debuggerColumn within a line. The first column in a line as the value `1`. Agents that do not support setting breakpoints on specific columns ignore this field.gogol-debuggerCreates a value of 4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:gogol-debugger)Demangled function name at the call site.gogol-debugger!Source location of the call site.gogol-debuggerfSet of arguments passed to this function. Note that this might not be populated for all stack frames.gogol-debuggerpSet of local variables at the stack frame location. Note that this might not be populated for all stack frames.gogol-debuggerCreates a value of 4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:gogol-debuggerThe ID of the repo.gogol-debugger)The name of an alias (branch, tag, etc.).gogol-debuggerA revision ID.gogol-debugger'An alias, which may be a branch or tag.gogol-debuggerCreates a value of 4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:gogol-debuggerCreates a value of 4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired: gogol-debuggerHuman readable message to be displayed to the user about this debuggee. Absence of this field indicates no status. The message can be either informational or an error status.gogol-debuggerUniquifier to further distinguish the application. It is possible that different applications might have identical values in the debuggee message, thus, incorrectly identified as a single application by the Controller service. This field adds salt to further distinguish the application. Agents should consider seeding this field with value that identifies the code, binary, configuration and environment.gogol-debuggertProject the debuggee is associated with. Use project number or id when registering a Google Cloud Platform project.gogol-debugger_References to the locations and revisions of the source code used in the deployed application.gogol-debuggertVersion ID of the agent. Schema: `domain/language-platform/vmajor.minor` (for example `google.com/java-gcp/v1.1`).gogol-debugger_If set to `true`, indicates that the agent should disable itself and detach from the debuggee.gogol-debuggerGUnique identifier for the debuggee generated by the controller service.gogol-debuggerZA set of custom debuggee properties, populated by the agent, to be displayed to the user.gogol-debuggerHuman readable description of the debuggee. Including a human-readable project name, environment name and version information is recommended.gogol-debuggerIf set to `true`, indicates that Controller service does not detect any activity from the debuggee agents and the application is possibly stopped.gogol-debugger_References to the locations and revisions of the source code used in the deployed application.gogol-debuggerCreates a value of 4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:gogol-debuggerThe ID of the workspace.gogol-debuggerQThe ID of the snapshot. An empty snapshot_id refers to the most recent snapshot.gogol-debuggerCreates a value of 4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:gogol-debuggerDebuggee information to register. The fields `project`, `uniquifier`, `description` and `agent_version` of the debuggee must be set.gogol-debuggerCreates a value of 4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:gogol-debuggerThe alias kind.gogol-debuggerThe alias name.gogol-debuggerCreates a value of 4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:gogol-debugger,The ID of the repo containing the workspace.gogol-debuggerThe unique name of the workspace within the repo. This is the name chosen by the client in the Source API's CreateWorkspace method.Igogol-debuggerJbgogol-debuggercgogol-debugger/0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTU VWX!YZ["\]^_#`abc$de%fg&hij'klmnopq(rs)tu*vwxyz{|}~+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~(c) 2015-2016 Brendan HayMozilla Public License, v. 2.0.%Brendan Hay <brendan.g.hay@gmail.com>auto-generatednon-portable (GHC extensions)None.27gogol-debugger%Default request referring to version v2 of the Stackdriver Debugger API. This contains the host and root path used as a starting point for constructing service requests.gogol-debuggerUse Stackdriver Debuggergogol-debugger?View and manage your data across Google Cloud Platform services  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~4563789:;2<=1>0?/@ABCDE.FGH-IJ,KLM+NOP*QRSTUVWXYZ[\]^_`a)bc(de'fghijkl&mno %pq$rs#tuvw "xyz{!|}~ (c) 2015-2016 Brendan HayMozilla Public License, v. 2.0.%Brendan Hay <brendan.g.hay@gmail.com>auto-generatednon-portable (GHC extensions)None "#.27=?HUV gogol-debuggerReturns the list of all active breakpoints for the debuggee. The breakpoint specification (`location`, `condition`, and `expressions` fields) is semantically immutable, although the field values may change. For example, an agent may update the location line number to reflect the actual line where the breakpoint was set, but this doesn't change the breakpoint semantics. This means that an agent does not need to check if a breakpoint has changed when it encounters the same breakpoint on a successive call. Moreover, an agent should remember the breakpoints that are completed until the controller removes them from the active list to avoid setting those breakpoints again.See:  smart constructor.gogol-debuggerA resource alias for 3clouddebugger.controller.debuggees.breakpoints.list method which the  request conforms to.gogol-debuggerCreates a value of 4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:gogol-debuggerV1 error format.gogol-debugger4Upload protocol for media (e.g. "raw", "multipart").gogol-debuggerOAuth access token.gogol-debugger=Legacy upload protocol for media (e.g. "media", "multipart").gogol-debugger!If set to `true` (recommended), returns `google.rpc.Code.OK` status and sets the `wait_expired` response field to `true` when the server-selected timeout has expired. If set to `false` (deprecated), returns `google.rpc.Code.ABORTED` status when the server-selected timeout has expired.gogol-debugger A token that, if specified, blocks the method call until the list of active breakpoints has changed, or a server-selected timeout has expired. The value should be set from the `next_wait_token` field in the last response. The initial value should be set to `"init"`.gogol-debuggerIdentifies the debuggee.gogol-debuggerJSONPgogol-debugger (c) 2015-2016 Brendan HayMozilla Public License, v. 2.0.%Brendan Hay <brendan.g.hay@gmail.com>auto-generatednon-portable (GHC extensions)None "#.27=?HUVѿ gogol-debuggerUpdates the breakpoint state or mutable fields. The entire Breakpoint message must be sent back to the controller service. Updates to active breakpoint fields are only allowed if the new value does not change the breakpoint specification. Updates to the `location`, `condition` and `expressions` fields should not alter the breakpoint semantics. These may only make changes such as canonicalizing a value or snapping the location to the correct line of code.See:  smart constructor.gogol-debuggerA resource alias for 5clouddebugger.controller.debuggees.breakpoints.update method which the  request conforms to.gogol-debuggerCreates a value of 4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:gogol-debuggerV1 error format.gogol-debugger4Upload protocol for media (e.g. "raw", "multipart").gogol-debuggerOAuth access token.gogol-debugger=Legacy upload protocol for media (e.g. "media", "multipart").gogol-debuggerMultipart request metadata.gogol-debugger;Breakpoint identifier, unique in the scope of the debuggee.gogol-debugger'Identifies the debuggee being debugged.gogol-debuggerJSONPgogol-debuggergogol-debuggergogol-debugger (c) 2015-2016 Brendan HayMozilla Public License, v. 2.0.%Brendan Hay <brendan.g.hay@gmail.com>auto-generatednon-portable (GHC extensions)None "#.27=?HUV gogol-debuggerRegisters the debuggee with the controller service. All agents attached to the same application must call this method with exactly the same request content to get back the same stable `debuggee_id`. Agents should call this method again whenever `google.rpc.Code.NOT_FOUND` is returned from any controller method. This protocol allows the controller service to disable debuggees, recover from data loss, or change the `debuggee_id` format. Agents must handle `debuggee_id` value changing upon re-registration.See:  smart constructor.gogol-debuggerA resource alias for +clouddebugger.controller.debuggees.register method which the  request conforms to.gogol-debuggerCreates a value of 4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:gogol-debuggerV1 error format.gogol-debugger4Upload protocol for media (e.g. "raw", "multipart").gogol-debuggerOAuth access token.gogol-debugger=Legacy upload protocol for media (e.g. "media", "multipart").gogol-debuggerMultipart request metadata.gogol-debuggerJSONPgogol-debugger (c) 2015-2016 Brendan HayMozilla Public License, v. 2.0.%Brendan Hay <brendan.g.hay@gmail.com>auto-generatednon-portable (GHC extensions)None "#.27=?HUV gogol-debugger)Deletes the breakpoint from the debuggee.See:  smart constructor.gogol-debuggerA resource alias for 3clouddebugger.debugger.debuggees.breakpoints.delete method which the  request conforms to.gogol-debuggerCreates a value of 4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:gogol-debuggerV1 error format.gogol-debugger4Upload protocol for media (e.g. "raw", "multipart").gogol-debuggerOAuth access token.gogol-debugger=Legacy upload protocol for media (e.g. "media", "multipart").gogol-debuggerID of the breakpoint to delete.gogol-debugger.ID of the debuggee whose breakpoint to delete.gogol-debuggerdThe client version making the call. Schema: `domain/type/version` (e.g., `google.com/intellij/v1`).gogol-debuggerJSONPgogol-debuggergogol-debugger (c) 2015-2016 Brendan HayMozilla Public License, v. 2.0.%Brendan Hay <brendan.g.hay@gmail.com>auto-generatednon-portable (GHC extensions)None "#.27=?HUV] gogol-debuggerGets breakpoint information.See:  smart constructor.gogol-debuggerA resource alias for 0clouddebugger.debugger.debuggees.breakpoints.get method which the  request conforms to.gogol-debuggerCreates a value of 4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:gogol-debuggerV1 error format.gogol-debugger4Upload protocol for media (e.g. "raw", "multipart").gogol-debuggerOAuth access token.gogol-debugger=Legacy upload protocol for media (e.g. "media", "multipart").gogol-debuggerID of the breakpoint to get.gogol-debugger+ID of the debuggee whose breakpoint to get.gogol-debuggerdThe client version making the call. Schema: `domain/type/version` (e.g., `google.com/intellij/v1`).gogol-debuggerJSONPgogol-debuggergogol-debugger (c) 2015-2016 Brendan HayMozilla Public License, v. 2.0.%Brendan Hay <brendan.g.hay@gmail.com>auto-generatednon-portable (GHC extensions)None "#.27=?HUV&gogol-debugger'Lists all breakpoints for the debuggee.See:  smart constructor.gogol-debuggerA resource alias for 1clouddebugger.debugger.debuggees.breakpoints.list method which the  request conforms to.gogol-debuggerCreates a value of 4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired: gogol-debuggerV1 error format.gogol-debugger{When set to `true`, the response includes active and inactive breakpoints. Otherwise, it includes only active breakpoints.gogol-debugger4Upload protocol for media (e.g. "raw", "multipart").gogol-debuggerOAuth access token.gogol-debugger@Only breakpoints with the specified action will pass the filter.gogol-debugger=Legacy upload protocol for media (e.g. "media", "multipart").gogol-debuggerThis field is deprecated. The following fields are always stripped out of the result: `stack_frames`, `evaluated_expressions` and `variable_table`.gogol-debuggerWhen set to `true`, the response includes the list of breakpoints set by any user. Otherwise, it includes only breakpoints set by the caller.gogol-debugger;A wait token that, if specified, blocks the call until the breakpoints list has changed, or a server selected timeout has expired. The value should be set from the last response. The error code `google.rpc.Code.ABORTED` (RPC) is returned on wait timeout, which should be called again with the same `wait_token`.gogol-debugger-ID of the debuggee whose breakpoints to list.gogol-debuggerdThe client version making the call. Schema: `domain/type/version` (e.g., `google.com/intellij/v1`).gogol-debuggerJSONPgogol-debugger(c) 2015-2016 Brendan HayMozilla Public License, v. 2.0.%Brendan Hay <brendan.g.hay@gmail.com>auto-generatednon-portable (GHC extensions)None "#.27=?HUV7 gogol-debugger$Sets the breakpoint to the debuggee.See:  smart constructor.gogol-debuggerA resource alias for 0clouddebugger.debugger.debuggees.breakpoints.set method which the  request conforms to.gogol-debuggerCreates a value of 4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:gogol-debuggerV1 error format.gogol-debugger4Upload protocol for media (e.g. "raw", "multipart").gogol-debuggerOAuth access token.gogol-debugger=Legacy upload protocol for media (e.g. "media", "multipart").gogol-debuggerMultipart request metadata.gogol-debugger5ID of the debuggee where the breakpoint is to be set.gogol-debuggerdThe client version making the call. Schema: `domain/type/version` (e.g., `google.com/intellij/v1`).gogol-debuggerJSONPgogol-debuggergogol-debugger   (c) 2015-2016 Brendan HayMozilla Public License, v. 2.0.%Brendan Hay <brendan.g.hay@gmail.com>auto-generatednon-portable (GHC extensions)None "#.27=?HUVI gogol-debugger4Lists all the debuggees that the user has access to.See:   smart constructor.gogol-debuggerA resource alias for %clouddebugger.debugger.debuggees.list method which the  request conforms to. gogol-debuggerCreates a value of 4 with the minimum fields required to make a request.BUse one of the following lenses to modify other fields as desired:!"#$%&'(!gogol-debuggerV1 error format."gogol-debuggervWhen set to `true`, the result includes all debuggees. Otherwise, the result includes only debuggees that are active.#gogol-debugger4Upload protocol for media (e.g. "raw", "multipart").$gogol-debuggerAProject number of a Google Cloud project whose debuggees to list.%gogol-debuggerOAuth access token.&gogol-debugger=Legacy upload protocol for media (e.g. "media", "multipart").'gogol-debuggerdThe client version making the call. Schema: `domain/type/version` (e.g., `google.com/intellij/v1`).(gogol-debuggerJSONP  !"#$%&'(  !"#$%&'( (c) 2015-2016 Brendan HayMozilla Public License, v. 2.0.%Brendan Hay <brendan.g.hay@gmail.com>auto-generatednon-portable (GHC extensions)None.UVM.gogol-debuggerhRepresents the entirety of the methods and resources available for the Stackdriver Debugger API service.  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ !"#$%&'(..4563789:;2<=1>0?/@ABCDE.FGH-IJ,KLM+NOP*QRSTUVWXYZ[\]^_`a)bc(de'fghijkl&mno %pq$rs#tuvw "xyz{!|}~                      ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~        !"#$%&'()* + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~                                                 +gogol-debugger-0.4.0-BwqAhQeYXdICGCX47imh4SNetwork.Google.Debugger.TypesKNetwork.Google.Resource.CloudDebugger.Controller.Debuggees.Breakpoints.ListMNetwork.Google.Resource.CloudDebugger.Controller.Debuggees.Breakpoints.UpdateCNetwork.Google.Resource.CloudDebugger.Controller.Debuggees.RegisterKNetwork.Google.Resource.CloudDebugger.Debugger.Debuggees.Breakpoints.DeleteHNetwork.Google.Resource.CloudDebugger.Debugger.Debuggees.Breakpoints.GetINetwork.Google.Resource.CloudDebugger.Debugger.Debuggees.Breakpoints.ListHNetwork.Google.Resource.CloudDebugger.Debugger.Debuggees.Breakpoints.Set=Network.Google.Resource.CloudDebugger.Debugger.Debuggees.ListNetwork.Google.Debugger!Network.Google.Debugger.Types.Sum%Network.Google.Debugger.Types.ProductAliasContextKindAnyFixedMovableOtherBreakpointActionCaptureLogXgafvX1X2BreakpointLogLevelInfoWarningError'StatusMessageRefersTo UnspecifiedBreakpointSourceLocationBreakpointConditionBreakpointExpression BreakpointAge VariableName VariableValueCloudWorkspaceId AliasContextRegisterDebuggeeRequestCloudWorkspaceSourceContextDebuggeeDebuggeeLabelsCloudRepoSourceContext StackFrameSourceLocationGitSourceContextExtendedSourceContextListActiveBreakpointsResponse StatusMessageUpdateActiveBreakpointRequestListDebuggeesResponseListBreakpointsResponseVariableGetBreakpointResponseBreakpointLabels Breakpoint FormatMessage ProjectRepoIdExtendedSourceContextLabelsRepoIdGerritSourceContextUpdateActiveBreakpointResponseEmptySetBreakpointResponse SourceContextRegisterDebuggeeResponseregisterDebuggeeResponse rdrDebuggee sourceContextscCloudWorkspace scCloudReposcGerritscGitsetBreakpointResponse sbrBreakpointemptyupdateActiveBreakpointResponsegerritSourceContextgscGerritProject gscAliasName gscRevisionId gscHostURIgscAliasContextrepoIdriUidriProjectRepoIdextendedSourceContextLabels esclAddtional projectRepoId priRepoName priProjectId formatMessagefmFormat fmParameters breakpointbStatus bLogLevel bLocationbAction bFinalTime bExpressionsbLogMessageFormatbIdbLabels bUserEmailbVariableTable bStackFrames bConditionbEvaluatedExpressions bCreateTime bIsFinalStatebreakpointLabels blAddtionalgetBreakpointResponse gbrBreakpointvariablevStatusvVarTableIndexvMembersvValuevNamevTypelistBreakpointsResponselbrNextWaitTokenlbrBreakpointslistDebuggeesResponse ldrDebuggeesupdateActiveBreakpointRequestuabrBreakpoint statusMessage smRefersTo smIsError smDescriptionlistActiveBreakpointsResponselabrNextWaitTokenlabrBreakpointslabrWaitExpiredextendedSourceContext escContext escLabelsgitSourceContextgURL gRevisionIdsourceLocationslPathslLineslColumn stackFrame sfFunction sfLocation sfArgumentssfLocalscloudRepoSourceContext crscRepoId crscAliasNamecrscRevisionIdcrscAliasContextdebuggeeLabels dlAddtionaldebuggeedStatus dUniquifierdProjectdExtSourceContexts dAgentVersion dIsDisableddIddLabels dDescription dIsInactivedSourceContextscloudWorkspaceSourceContextcwscWorkspaceIdcwscSnapshotIdregisterDebuggeeRequest rDebuggee aliasContextacKindacNamecloudWorkspaceId cwiRepoIdcwiNamedebuggerServicecloudDebuggerScopecloudPlatformScope"ControllerDebuggeesBreakpointsList*ControllerDebuggeesBreakpointsListResource"controllerDebuggeesBreakpointsList cdblXgafvcdblUploadProtocolcdblAccessTokencdblUploadTypecdblSuccessOnTimeout cdblWaitTokencdblDebuggeeId cdblCallback1$fGoogleRequestControllerDebuggeesBreakpointsList&$fEqControllerDebuggeesBreakpointsList($fShowControllerDebuggeesBreakpointsList($fDataControllerDebuggeesBreakpointsList+$fGenericControllerDebuggeesBreakpointsList$ControllerDebuggeesBreakpointsUpdate,ControllerDebuggeesBreakpointsUpdateResource$controllerDebuggeesBreakpointsUpdate cdbuXgafvcdbuUploadProtocolcdbuAccessTokencdbuUploadType cdbuPayloadcdbuIdcdbuDebuggeeId cdbuCallback3$fGoogleRequestControllerDebuggeesBreakpointsUpdate($fEqControllerDebuggeesBreakpointsUpdate*$fShowControllerDebuggeesBreakpointsUpdate*$fDataControllerDebuggeesBreakpointsUpdate-$fGenericControllerDebuggeesBreakpointsUpdateControllerDebuggeesRegister#ControllerDebuggeesRegisterResourcecontrollerDebuggeesRegistercdrXgafvcdrUploadProtocolcdrAccessToken cdrUploadType cdrPayload cdrCallback*$fGoogleRequestControllerDebuggeesRegister$fEqControllerDebuggeesRegister!$fShowControllerDebuggeesRegister!$fDataControllerDebuggeesRegister$$fGenericControllerDebuggeesRegister"DebuggerDebuggeesBreakpointsDelete*DebuggerDebuggeesBreakpointsDeleteResource"debuggerDebuggeesBreakpointsDelete ddbdXgafvddbdUploadProtocolddbdAccessTokenddbdUploadTypeddbdBreakpointIdddbdDebuggeeIdddbdClientVersion ddbdCallback1$fGoogleRequestDebuggerDebuggeesBreakpointsDelete&$fEqDebuggerDebuggeesBreakpointsDelete($fShowDebuggerDebuggeesBreakpointsDelete($fDataDebuggerDebuggeesBreakpointsDelete+$fGenericDebuggerDebuggeesBreakpointsDeleteDebuggerDebuggeesBreakpointsGet'DebuggerDebuggeesBreakpointsGetResourcedebuggerDebuggeesBreakpointsGet ddbgXgafvddbgUploadProtocolddbgAccessTokenddbgUploadTypeddbgBreakpointIdddbgDebuggeeIdddbgClientVersion ddbgCallback.$fGoogleRequestDebuggerDebuggeesBreakpointsGet#$fEqDebuggerDebuggeesBreakpointsGet%$fShowDebuggerDebuggeesBreakpointsGet%$fDataDebuggerDebuggeesBreakpointsGet($fGenericDebuggerDebuggeesBreakpointsGet DebuggerDebuggeesBreakpointsList(DebuggerDebuggeesBreakpointsListResource debuggerDebuggeesBreakpointsList ddblXgafvddblIncludeInactiveddblUploadProtocolddblAccessTokenddblActionValueddblUploadTypeddblStripResultsddblIncludeAllUsers ddblWaitTokenddblDebuggeeIdddblClientVersion ddblCallback/$fGoogleRequestDebuggerDebuggeesBreakpointsList$$fEqDebuggerDebuggeesBreakpointsList&$fShowDebuggerDebuggeesBreakpointsList&$fDataDebuggerDebuggeesBreakpointsList)$fGenericDebuggerDebuggeesBreakpointsListDebuggerDebuggeesBreakpointsSet'DebuggerDebuggeesBreakpointsSetResourcedebuggerDebuggeesBreakpointsSet ddbsXgafvddbsUploadProtocolddbsAccessTokenddbsUploadType ddbsPayloadddbsDebuggeeIdddbsClientVersion ddbsCallback.$fGoogleRequestDebuggerDebuggeesBreakpointsSet#$fEqDebuggerDebuggeesBreakpointsSet%$fShowDebuggerDebuggeesBreakpointsSet%$fDataDebuggerDebuggeesBreakpointsSet($fGenericDebuggerDebuggeesBreakpointsSetDebuggerDebuggeesListDebuggerDebuggeesListResourcedebuggerDebuggeesListddlXgafvddlIncludeInactiveddlUploadProtocol ddlProjectddlAccessToken ddlUploadTypeddlClientVersion ddlCallback$$fGoogleRequestDebuggerDebuggeesList$fEqDebuggerDebuggeesList$fShowDebuggerDebuggeesList$fDataDebuggerDebuggeesList$fGenericDebuggerDebuggeesList DebuggerAPICloudWorkspaceId'_cwiName _cwiRepoId AliasContext'_acName_acKindRegisterDebuggeeRequest' _rDebuggeeCloudWorkspaceSourceContext'_cwscSnapshotId_cwscWorkspaceId Debuggee'_dSourceContexts _dIsInactive _dDescription_dLabels_dId _dIsDisabled_dAgentVersion_dExtSourceContexts _dProject _dUniquifier_dStatusDebuggeeLabels' _dlAddtionalCloudRepoSourceContext'_crscAliasContext_crscRevisionId_crscAliasName _crscRepoId StackFrame' _sfLocals _sfArguments _sfLocation _sfFunctionSourceLocation' _slColumn_slLine_slPathGitSourceContext' _gRevisionId_gURLExtendedSourceContext' _escLabels _escContextListActiveBreakpointsResponse'_labrWaitExpired_labrBreakpoints_labrNextWaitTokenStatusMessage'_smDescription _smIsError _smRefersToUpdateActiveBreakpointRequest'_uabrBreakpointListDebuggeesResponse' _ldrDebuggeesListBreakpointsResponse'_lbrBreakpoints_lbrNextWaitToken Variable'_vType_vName_vValue _vMembers_vVarTableIndex_vStatusGetBreakpointResponse'_gbrBreakpointBreakpointLabels' _blAddtional Breakpoint'_bIsFinalState _bCreateTime_bEvaluatedExpressions _bCondition _bStackFrames_bVariableTable _bUserEmail_bLabels_bId_bLogMessageFormat _bExpressions _bFinalTime_bAction _bLocation _bLogLevel_bStatusFormatMessage' _fmParameters _fmFormatProjectRepoId' _priProjectId _priRepoNameExtendedSourceContextLabels'_esclAddtionalRepoId'_riProjectRepoId_riUidGerritSourceContext'_gscAliasContext _gscHostURI_gscRevisionId _gscAliasName_gscGerritProjectUpdateActiveBreakpointResponse'Empty'SetBreakpointResponse'_sbrBreakpointSourceContext'_scGit _scGerrit _scCloudRepo_scCloudWorkspaceRegisterDebuggeeResponse' _rdrDebuggee