Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TaskArtifactChange
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TaskArtifactChange
- 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
Describes changes to the artifact list.
Instance Attribute Summary collapse
-
#added_artifacts ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TaskArtifact>
Optional.
-
#deleted_artifact_ids ⇒ Array<String>
Optional.
-
#updated_artifacts ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TaskArtifact>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1TaskArtifactChange
constructor
A new instance of GoogleCloudAiplatformV1beta1TaskArtifactChange.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1TaskArtifactChange
Returns a new instance of GoogleCloudAiplatformV1beta1TaskArtifactChange.
53479 53480 53481 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 53479 def initialize(**args) update!(**args) end |
Instance Attribute Details
#added_artifacts ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TaskArtifact>
Optional. A list of brand-new artifacts created in this event.
Corresponds to the JSON property addedArtifacts
53467 53468 53469 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 53467 def added_artifacts @added_artifacts end |
#deleted_artifact_ids ⇒ Array<String>
Optional. A list of artifact IDs that were removed in this event.
Corresponds to the JSON property deletedArtifactIds
53472 53473 53474 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 53472 def deleted_artifact_ids @deleted_artifact_ids end |
#updated_artifacts ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1TaskArtifact>
Optional. A list of existing artifacts that were modified in this event.
Corresponds to the JSON property updatedArtifacts
53477 53478 53479 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 53477 def updated_artifacts @updated_artifacts end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
53484 53485 53486 53487 53488 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 53484 def update!(**args) @added_artifacts = args[:added_artifacts] if args.key?(:added_artifacts) @deleted_artifact_ids = args[:deleted_artifact_ids] if args.key?(:deleted_artifact_ids) @updated_artifacts = args[:updated_artifacts] if args.key?(:updated_artifacts) end |