Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1LineageSubgraph
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1LineageSubgraph
- 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
-
#artifacts ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Artifact>
The Artifact nodes in the subgraph.
-
#events ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Event>
The Event edges between Artifacts and Executions in the subgraph.
-
#executions ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Execution>
The Execution nodes in the subgraph.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1LineageSubgraph
constructor
A new instance of GoogleCloudAiplatformV1beta1LineageSubgraph.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1LineageSubgraph
Returns a new instance of GoogleCloudAiplatformV1beta1LineageSubgraph.
15042 15043 15044 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15042 def initialize(**args) update!(**args) end |
Instance Attribute Details
#artifacts ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Artifact>
The Artifact nodes in the subgraph.
Corresponds to the JSON property artifacts
15030 15031 15032 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15030 def artifacts @artifacts end |
#events ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Event>
The Event edges between Artifacts and Executions in the subgraph.
Corresponds to the JSON property events
15035 15036 15037 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15035 def events @events end |
#executions ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1Execution>
The Execution nodes in the subgraph.
Corresponds to the JSON property executions
15040 15041 15042 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15040 def executions @executions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
15047 15048 15049 15050 15051 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15047 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 |