class Google::Apis::ClouddebuggerV2::RegisterDebuggeeResponse

Response for registering a debuggee.

Attributes

agent_id[RW]

A unique ID generated for the agent. Each RegisterDebuggee request will generate a new agent ID. Corresponds to the JSON property `agentId` @return [String]

debuggee[RW]

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. Corresponds to the JSON property `debuggee` @return [Google::Apis::ClouddebuggerV2::Debuggee]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/clouddebugger_v2/classes.rb, line 725
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/clouddebugger_v2/classes.rb, line 730
def update!(**args)
  @agent_id = args[:agent_id] if args.key?(:agent_id)
  @debuggee = args[:debuggee] if args.key?(:debuggee)
end