Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenericOperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1GenericOperationMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
Generic Metadata shared by all operations.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#partial_failures ⇒ Array<Google::Apis::AiplatformV1::GoogleRpcStatus>
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1GenericOperationMetadata
constructor
A new instance of GoogleCloudAiplatformV1GenericOperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1GenericOperationMetadata
Returns a new instance of GoogleCloudAiplatformV1GenericOperationMetadata.
10595 10596 10597 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10595 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Time when the operation was created.
Corresponds to the JSON property createTime
10580 10581 10582 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10580 def create_time @create_time end |
#partial_failures ⇒ Array<Google::Apis::AiplatformV1::GoogleRpcStatus>
Output only. Partial failures encountered. E.g. single files that couldn't be
read. This field should never exceed 20 entries. Status details field will
contain standard Google Cloud error details.
Corresponds to the JSON property partialFailures
10587 10588 10589 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10587 def partial_failures @partial_failures end |
#update_time ⇒ String
Output only. Time when the operation was updated for the last time. If the
operation has finished (successfully or not), this is the finish time.
Corresponds to the JSON property updateTime
10593 10594 10595 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10593 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10600 10601 10602 10603 10604 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10600 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @partial_failures = args[:partial_failures] if args.key?(:partial_failures) @update_time = args[:update_time] if args.key?(:update_time) end |