google_api_cloud_debugger v0.8.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 (type: String.t, default: nil) - Version ID of the agent. Schema: domain/language-platform/vmajor.minor (for example google.com/java-gcp/v1.1).
  • description (type: String.t, default: nil) - Human readable description of the debuggee. Including a human-readable project name, environment name and version information is recommended.
  • extSourceContexts (type: list(GoogleApi.CloudDebugger.V2.Model.ExtendedSourceContext.t), default: nil) - References to the locations and revisions of the source code used in the deployed application.
  • id (type: String.t, default: nil) - Unique identifier for the debuggee generated by the controller service.
  • isDisabled (type: boolean(), default: nil) - If set to true, indicates that the agent should disable itself and detach from the debuggee.
  • isInactive (type: boolean(), default: nil) - If set to true, indicates that Controller service does not detect any activity from the debuggee agents and the application is possibly stopped.
  • labels (type: map(), default: nil) - A set of custom debuggee properties, populated by the agent, to be displayed to the user.
  • project (type: String.t, default: nil) - Project the debuggee is associated with. Use project number or id when registering a Google Cloud Platform project.
  • sourceContexts (type: list(GoogleApi.CloudDebugger.V2.Model.SourceContext.t), default: nil) - References to the locations and revisions of the source code used in the deployed application.
  • status (type: GoogleApi.CloudDebugger.V2.Model.StatusMessage.t, default: nil) - 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.
  • uniquifier (type: String.t, default: nil) - 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.

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() :: %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
decode(struct(), keyword()) :: struct()

Unwrap a decoded JSON object into its complex fields.