Class: Google::Apis::BigtableadminV2::CreateAuthorizedViewMetadata
- Inherits:
-
Object
- Object
- Google::Apis::BigtableadminV2::CreateAuthorizedViewMetadata
- 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
The metadata for the Operation returned by CreateAuthorizedView.
Instance Attribute Summary collapse
-
#finish_time ⇒ String
The time at which the operation failed or was completed successfully.
-
#original_request ⇒ Google::Apis::BigtableadminV2::CreateAuthorizedViewRequest
The request for CreateAuthorizedView Corresponds to the JSON property
originalRequest. -
#request_time ⇒ String
The time at which the original request was received.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CreateAuthorizedViewMetadata
constructor
A new instance of CreateAuthorizedViewMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CreateAuthorizedViewMetadata
Returns a new instance of CreateAuthorizedViewMetadata.
957 958 959 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 957 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
945 946 947 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 945 def finish_time @finish_time end |
#original_request ⇒ Google::Apis::BigtableadminV2::CreateAuthorizedViewRequest
The request for CreateAuthorizedView
Corresponds to the JSON property originalRequest
950 951 952 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 950 def original_request @original_request end |
#request_time ⇒ String
The time at which the original request was received.
Corresponds to the JSON property requestTime
955 956 957 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 955 def request_time @request_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
962 963 964 965 966 |
# File 'lib/google/apis/bigtableadmin_v2/classes.rb', line 962 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 |