Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TaskEventData

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb

Overview

Data for a TaskEvent.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1TaskEventData

Returns a new instance of GoogleCloudAiplatformV1beta1TaskEventData.



64174
64175
64176
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 64174

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#metadata_changeGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TaskMetadataChange

An event representing a change to the task's top-level metadata. example: metadata_change: new_metadata: "name": "My task", update_mask: paths: " name" Corresponds to the JSON property metadataChange



64157
64158
64159
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 64157

def 
  @metadata_change
end

#output_changeGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TaskOutputChange

An event representing a change to the task's outputs. Corresponds to the JSON property outputChange



64162
64163
64164
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 64162

def output_change
  @output_change
end

#state_changeGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TaskStateChange

A message representing a change in a task's state. Corresponds to the JSON property stateChange



64167
64168
64169
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 64167

def state_change
  @state_change
end

#status_details_changeGoogle::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TaskStatusDetailsChange

Represents a change to the task's status details. Corresponds to the JSON property statusDetailsChange



64172
64173
64174
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 64172

def status_details_change
  @status_details_change
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



64179
64180
64181
64182
64183
64184
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 64179

def update!(**args)
  @metadata_change = args[:metadata_change] if args.key?(:metadata_change)
  @output_change = args[:output_change] if args.key?(:output_change)
  @state_change = args[:state_change] if args.key?(:state_change)
  @status_details_change = args[:status_details_change] if args.key?(:status_details_change)
end