Class: Google::Apis::BigtableadminV2::UpdateAuthorizedViewMetadata
- Inherits:
-
Object
- Object
- Google::Apis::BigtableadminV2::UpdateAuthorizedViewMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigtableadmin_v2/classes.rb,
lib/google/apis/bigtableadmin_v2/representations.rb,
lib/google/apis/bigtableadmin_v2/representations.rb
Overview
Metadata for the google.longrunning.Operation returned by UpdateAuthorizedView.
Instance Attribute Summary collapse
-
#finish_time ⇒ String
The time at which the operation failed or was completed successfully.
-
#original_request ⇒ Google::Apis::BigtableadminV2::UpdateAuthorizedViewRequest
The request for UpdateAuthorizedView.
-
#request_time ⇒ String
The time at which the original request was received.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UpdateAuthorizedViewMetadata
constructor
A new instance of UpdateAuthorizedViewMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UpdateAuthorizedViewMetadata
Returns a new instance of UpdateAuthorizedViewMetadata.
3792 3793 3794 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3792 def initialize(**args) update!(**args) end |
Instance Attribute Details
#finish_time ⇒ String
The time at which the operation failed or was completed successfully.
Corresponds to the JSON property finishTime
3780 3781 3782 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3780 def finish_time @finish_time end |
#original_request ⇒ Google::Apis::BigtableadminV2::UpdateAuthorizedViewRequest
The request for UpdateAuthorizedView.
Corresponds to the JSON property originalRequest
3785 3786 3787 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3785 def original_request @original_request end |
#request_time ⇒ String
The time at which the original request was received.
Corresponds to the JSON property requestTime
3790 3791 3792 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3790 def request_time @request_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3797 3798 3799 3800 3801 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 3797 def update!(**args) @finish_time = args[:finish_time] if args.key?(:finish_time) @original_request = args[:original_request] if args.key?(:original_request) @request_time = args[:request_time] if args.key?(:request_time) end |