Class: Google::Apis::ClouddebuggerV2::RegisterDebuggeeResponse

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/clouddebugger_v2/classes.rb,
generated/google/apis/clouddebugger_v2/representations.rb,
generated/google/apis/clouddebugger_v2/representations.rb

Overview

Response for registering a debuggee.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ RegisterDebuggeeResponse

Returns a new instance of RegisterDebuggeeResponse.



711
712
713
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 711

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#debuggeeGoogle::Apis::ClouddebuggerV2::Debuggee

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



709
710
711
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 709

def debuggee
  @debuggee
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



716
717
718
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 716

def update!(**args)
  @debuggee = args[:debuggee] if args.key?(:debuggee)
end