Class: Google::Apis::RunV1::GoogleLongrunningWaitOperationRequest
- Inherits:
-
Object
- Object
- Google::Apis::RunV1::GoogleLongrunningWaitOperationRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/run_v1/classes.rb,
lib/google/apis/run_v1/representations.rb,
lib/google/apis/run_v1/representations.rb
Overview
The request message for Operations.WaitOperation.
Instance Attribute Summary collapse
-
#timeout ⇒ String
The maximum duration to wait before timing out.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleLongrunningWaitOperationRequest
constructor
A new instance of GoogleLongrunningWaitOperationRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleLongrunningWaitOperationRequest
Returns a new instance of GoogleLongrunningWaitOperationRequest.
3323 3324 3325 |
# File 'lib/google/apis/run_v1/classes.rb', line 3323 def initialize(**args) update!(**args) end |
Instance Attribute Details
#timeout ⇒ String
The maximum duration to wait before timing out. If left blank, the wait will
be at most the time permitted by the underlying HTTP/RPC protocol. If RPC
context deadline is also specified, the shorter one will be used.
Corresponds to the JSON property timeout
3321 3322 3323 |
# File 'lib/google/apis/run_v1/classes.rb', line 3321 def timeout @timeout end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3328 3329 3330 |
# File 'lib/google/apis/run_v1/classes.rb', line 3328 def update!(**args) @timeout = args[:timeout] if args.key?(:timeout) end |