Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AddContextArtifactsAndExecutionsRequest
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1AddContextArtifactsAndExecutionsRequest
- 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
Request message for MetadataService.AddContextArtifactsAndExecutions.
Instance Attribute Summary collapse
-
#artifacts ⇒ Array<String>
The resource names of the Artifacts to attribute to the Context.
-
#executions ⇒ Array<String>
The resource names of the Executions to associate with the Context.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1AddContextArtifactsAndExecutionsRequest
constructor
A new instance of GoogleCloudAiplatformV1beta1AddContextArtifactsAndExecutionsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1AddContextArtifactsAndExecutionsRequest
Returns a new instance of GoogleCloudAiplatformV1beta1AddContextArtifactsAndExecutionsRequest.
547 548 549 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 547 def initialize(**args) update!(**args) end |
Instance Attribute Details
#artifacts ⇒ Array<String>
The resource names of the Artifacts to attribute to the Context. Format:
projects/
project/locations/
location/metadataStores/
metadatastore/
artifacts/
artifact`
Corresponds to the JSON property
artifacts`
538 539 540 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 538 def artifacts @artifacts end |
#executions ⇒ Array<String>
The resource names of the Executions to associate with the Context. Format:
projects/
project/locations/
location/metadataStores/
metadatastore/
executions/
execution`
Corresponds to the JSON property
executions`
545 546 547 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 545 def executions @executions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
552 553 554 555 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 552 def update!(**args) @artifacts = args[:artifacts] if args.key?(:artifacts) @executions = args[:executions] if args.key?(:executions) end |