Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AddContextArtifactsAndExecutionsRequest
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1AddContextArtifactsAndExecutionsRequest
- 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
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) ⇒ GoogleCloudAiplatformV1AddContextArtifactsAndExecutionsRequest
constructor
A new instance of GoogleCloudAiplatformV1AddContextArtifactsAndExecutionsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1AddContextArtifactsAndExecutionsRequest
Returns a new instance of GoogleCloudAiplatformV1AddContextArtifactsAndExecutionsRequest.
1011 1012 1013 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 1011 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 propertyartifacts`
1002 1003 1004 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 1002 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 propertyexecutions`
1009 1010 1011 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 1009 def executions @executions end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1016 1017 1018 1019 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 1016 def update!(**args) @artifacts = args[:artifacts] if args.key?(:artifacts) @executions = args[:executions] if args.key?(:executions) end |