Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1LineageSubgraph
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1LineageSubgraph
- 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
-
#artifacts ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Artifact>
The Artifact nodes in the subgraph.
-
#events ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Event>
The Event edges between Artifacts and Executions in the subgraph.
-
#executions ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Execution>
The Execution nodes in the subgraph.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1LineageSubgraph
constructor
A new instance of GoogleCloudAiplatformV1LineageSubgraph.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1LineageSubgraph
Returns a new instance of GoogleCloudAiplatformV1LineageSubgraph.
10677 10678 10679 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10677 def initialize(**args) update!(**args) end |
Instance Attribute Details
#artifacts ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Artifact>
The Artifact nodes in the subgraph.
Corresponds to the JSON property artifacts
10665 10666 10667 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10665 def artifacts @artifacts end |
#events ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Event>
The Event edges between Artifacts and Executions in the subgraph.
Corresponds to the JSON property events
10670 10671 10672 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10670 def events @events end |
#executions ⇒ Array<Google::Apis::AiplatformV1::GoogleCloudAiplatformV1Execution>
The Execution nodes in the subgraph.
Corresponds to the JSON property executions
10675 10676 10677 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10675 def executions @executions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10682 10683 10684 10685 10686 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 10682 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 |