Class: Google::Apis::NotebooksV1::DiagnoseRuntimeRequest
- Inherits:
-
Object
- Object
- Google::Apis::NotebooksV1::DiagnoseRuntimeRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/notebooks_v1/classes.rb,
lib/google/apis/notebooks_v1/representations.rb,
lib/google/apis/notebooks_v1/representations.rb more...
Overview
Request for creating a notebook instance diagnostic file.
Instance Attribute Summary collapse
-
#diagnostic_config ⇒ Google::Apis::NotebooksV1::DiagnosticConfig
Defines flags that are used to run the diagnostic tool Corresponds to the JSON property
diagnosticConfig
. -
#timeout_minutes ⇒ Fixnum
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DiagnoseRuntimeRequest
constructor
A new instance of DiagnoseRuntimeRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DiagnoseRuntimeRequest
Returns a new instance of DiagnoseRuntimeRequest.
268 269 270 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 268 def initialize(**args) update!(**args) end |
Instance Attribute Details
#diagnostic_config ⇒ Google::Apis::NotebooksV1::DiagnosticConfig
Defines flags that are used to run the diagnostic tool
Corresponds to the JSON property diagnosticConfig
261 262 263 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 261 def diagnostic_config @diagnostic_config end |
#timeout_minutes ⇒ Fixnum
Optional. Maximum amount of time in minutes before the operation times out.
Corresponds to the JSON property timeoutMinutes
266 267 268 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 266 def timeout_minutes @timeout_minutes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
273 274 275 276 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 273 def update!(**args) @diagnostic_config = args[:diagnostic_config] if args.key?(:diagnostic_config) @timeout_minutes = args[:timeout_minutes] if args.key?(:timeout_minutes) end |