Struct google_clouddebugger2::Debuggee [] [src]

pub struct Debuggee {
    pub status: Option<StatusMessage>,
    pub description: Option<String>,
    pub is_disabled: Option<bool>,
    pub labels: Option<HashMap<String, String>>,
    pub uniquifier: Option<String>,
    pub project: Option<String>,
    pub source_contexts: Option<Vec<SourceContext>>,
    pub ext_source_contexts: Option<Vec<ExtendedSourceContext>>,
    pub agent_version: Option<String>,
    pub is_inactive: Option<bool>,
    pub id: Option<String>,
}

Represents the application to debug. 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. The agents attached to the same debuggee are identified by using exactly the same field values when registering.

This type is not used in any activity, and only used as part of another schema.

Fields

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.

Human readable description of the debuggee. Including a human-readable project name, environment name and version information is recommended.

If set to true, indicates that the agent should disable itself and detach from the debuggee.

A set of custom debuggee properties, populated by the agent, to be displayed to the user.

Debuggee uniquifier within the project. Any string that identifies the application within the project can be used. Including environment and version or build IDs is recommended.

Project the debuggee is associated with. Use the project number when registering a Google Cloud Platform project.

References to the locations and revisions of the source code used in the deployed application.

NOTE: This field is deprecated. Consumers should use ext_source_contexts if it is not empty. Debug agents should populate both this field and ext_source_contexts.

References to the locations and revisions of the source code used in the deployed application.

Contexts describing a remote repo related to the source code have a category label of remote_repo. Source snapshot source contexts have a category of snapshot.

Version ID of the agent release. The version ID is structured as following: domain/type/vmajor.minor (for example google.com/gcp-java/v1.1).

If set to true, indicates that the debuggee is considered as inactive by the Controller service.

Unique identifier for the debuggee generated by the controller service.

Trait Implementations

impl Default for Debuggee
[src]

[src]

Returns the "default value" for a type. Read more

impl Clone for Debuggee
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Debuggee
[src]

[src]

Formats the value using the given formatter.

impl Part for Debuggee
[src]