Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1LineageSubgraph

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

A subgraph of the overall lineage graph. Event edges connect Artifact and Execution nodes.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1LineageSubgraph

Returns a new instance of GoogleCloudAiplatformV1beta1LineageSubgraph.



11603
11604
11605
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 11603

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

Instance Attribute Details

#artifactsArray<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Artifact>

The Artifact nodes in the subgraph. Corresponds to the JSON property artifacts



11591
11592
11593
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 11591

def artifacts
  @artifacts
end

#eventsArray<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Event>

The Event edges between Artifacts and Executions in the subgraph. Corresponds to the JSON property events



11596
11597
11598
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 11596

def events
  @events
end

#executionsArray<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Execution>

The Execution nodes in the subgraph. Corresponds to the JSON property executions



11601
11602
11603
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 11601

def executions
  @executions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11608
11609
11610
11611
11612
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 11608

def update!(**args)
  @artifacts = args[:artifacts] if args.key?(:artifacts)
  @events = args[:events] if args.key?(:events)
  @executions = args[:executions] if args.key?(:executions)
end