Class: Google::Apis::ClouddebuggerV2::RegisterDebuggeeResponse
- Inherits:
-
Object
- Object
- Google::Apis::ClouddebuggerV2::RegisterDebuggeeResponse
- 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
-
#debuggee ⇒ Google::Apis::ClouddebuggerV2::Debuggee
Represents the application to debug.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RegisterDebuggeeResponse
constructor
A new instance of RegisterDebuggeeResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ RegisterDebuggeeResponse
Returns a new instance of RegisterDebuggeeResponse.
535 536 537 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 535 def initialize(**args) update!(**args) end |
Instance Attribute Details
#debuggee ⇒ Google::Apis::ClouddebuggerV2::Debuggee
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.
Corresponds to the JSON property debuggee
533 534 535 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 533 def debuggee @debuggee end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
540 541 542 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 540 def update!(**args) @debuggee = args[:debuggee] if args.key?(:debuggee) end |