Class: Google::Apis::ClouddebuggerV2::RegisterDebuggeeRequest
- Inherits:
-
Object
- Object
- Google::Apis::ClouddebuggerV2::RegisterDebuggeeRequest
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/clouddebugger_v2/classes.rb,
lib/google/apis/clouddebugger_v2/representations.rb,
lib/google/apis/clouddebugger_v2/representations.rb
Overview
Request to register a debuggee.
Instance Attribute Summary collapse
-
#debuggee ⇒ Google::Apis::ClouddebuggerV2::Debuggee
Represents the debugged application.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RegisterDebuggeeRequest
constructor
A new instance of RegisterDebuggeeRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RegisterDebuggeeRequest
Returns a new instance of RegisterDebuggeeRequest.
695 696 697 |
# File 'lib/google/apis/clouddebugger_v2/classes.rb', line 695 def initialize(**args) update!(**args) end |
Instance Attribute Details
#debuggee ⇒ Google::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
693 694 695 |
# File 'lib/google/apis/clouddebugger_v2/classes.rb', line 693 def debuggee @debuggee end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
700 701 702 |
# File 'lib/google/apis/clouddebugger_v2/classes.rb', line 700 def update!(**args) @debuggee = args[:debuggee] if args.key?(:debuggee) end |