Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1LineageSubgraph

Inherits:
Object
  • Object
show all
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

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) ⇒ GoogleCloudAiplatformV1LineageSubgraph

Returns a new instance of GoogleCloudAiplatformV1LineageSubgraph.



14528
14529
14530
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14528

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

Instance Attribute Details

#artifactsArray<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Artifact>

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



14516
14517
14518
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14516

def artifacts
  @artifacts
end

#eventsArray<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Event>

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



14521
14522
14523
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14521

def events
  @events
end

#executionsArray<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Execution>

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



14526
14527
14528
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14526

def executions
  @executions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



14533
14534
14535
14536
14537
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 14533

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