google_api_cloud_debugger v0.3.0 GoogleApi.CloudDebugger.V2.Model.Debuggee View Source
Represents 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.
Attributes
- agentVersion (String.t): Version ID of the agent.
Schema:
domain/language-platform/vmajor.minor
(for examplegoogle.com/java-gcp/v1.1
). Defaults tonil
. - description (String.t): Human readable description of the debuggee.
Including a human-readable project name, environment name and version
information is recommended. Defaults to
nil
. - extSourceContexts (list(GoogleApi.CloudDebugger.V2.Model.ExtendedSourceContext.t)): References to the locations and revisions of the source code used in the
deployed application. Defaults to
nil
. - id (String.t): Unique identifier for the debuggee generated by the controller service. Defaults to
nil
. - isDisabled (boolean()): If set to
true
, indicates that the agent should disable itself and detach from the debuggee. Defaults tonil
. - isInactive (boolean()): If set to
true
, indicates that Controller service does not detect any activity from the debuggee agents and the application is possibly stopped. Defaults tonil
. - labels (map()): A set of custom debuggee properties, populated by the agent, to be
displayed to the user. Defaults to
nil
. - project (String.t): Project the debuggee is associated with.
Use project number or id when registering a Google Cloud Platform project. Defaults to
nil
. - sourceContexts (list(GoogleApi.CloudDebugger.V2.Model.SourceContext.t)): References to the locations and revisions of the source code used in the
deployed application. Defaults to
nil
. - status (GoogleApi.CloudDebugger.V2.Model.StatusMessage.t): Human 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. Defaults to
nil
. - uniquifier (String.t): Uniquifier 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. Defaults to
nil
.
Link to this section Summary
Functions
Unwrap a decoded JSON object into its complex fields.
Link to this section Types
Link to this type
t()
View Source
t()
View Source
t() :: %GoogleApi.CloudDebugger.V2.Model.Debuggee{
agentVersion: String.t(),
description: String.t(),
extSourceContexts: [
GoogleApi.CloudDebugger.V2.Model.ExtendedSourceContext.t()
],
id: String.t(),
isDisabled: boolean(),
isInactive: boolean(),
labels: map(),
project: String.t(),
sourceContexts: [GoogleApi.CloudDebugger.V2.Model.SourceContext.t()],
status: GoogleApi.CloudDebugger.V2.Model.StatusMessage.t(),
uniquifier: String.t()
}
t() :: %GoogleApi.CloudDebugger.V2.Model.Debuggee{ agentVersion: String.t(), description: String.t(), extSourceContexts: [ GoogleApi.CloudDebugger.V2.Model.ExtendedSourceContext.t() ], id: String.t(), isDisabled: boolean(), isInactive: boolean(), labels: map(), project: String.t(), sourceContexts: [GoogleApi.CloudDebugger.V2.Model.SourceContext.t()], status: GoogleApi.CloudDebugger.V2.Model.StatusMessage.t(), uniquifier: String.t() }
Link to this section Functions
Link to this function
decode(value, options) View Source
Unwrap a decoded JSON object into its complex fields.