Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RuntimeConfig
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RuntimeConfig
- 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
Runtime configuration to run the extension.
Instance Attribute Summary collapse
-
#code_interpreter_runtime_config ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RuntimeConfigCodeInterpreterRuntimeConfig
Code execution runtime configurations for code interpreter extension.
-
#default_params ⇒ Hash<String,Object>
Optional.
-
#vertex_ai_search_runtime_config ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RuntimeConfigVertexAiSearchRuntimeConfig
Runtime configuration for Vertext AI Search extension.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1RuntimeConfig
constructor
A new instance of GoogleCloudAiplatformV1beta1RuntimeConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1RuntimeConfig
Returns a new instance of GoogleCloudAiplatformV1beta1RuntimeConfig.
24100 24101 24102 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 24100 def initialize(**args) update!(**args) end |
Instance Attribute Details
#code_interpreter_runtime_config ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RuntimeConfigCodeInterpreterRuntimeConfig
Code execution runtime configurations for code interpreter extension.
Corresponds to the JSON property codeInterpreterRuntimeConfig
24083 24084 24085 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 24083 def code_interpreter_runtime_config @code_interpreter_runtime_config end |
#default_params ⇒ Hash<String,Object>
Optional. Default parameters that will be set for all the execution of this
extension. If specified, the parameter values can be overridden by values in [[
ExecuteExtensionRequest.operation_params]] at request time. The struct should
be in a form of map with param name as the key and actual param value as the
value. E.g. If this operation requires a param "name" to be set to "abc". you
can set this to something like "name": "abc".
Corresponds to the JSON property defaultParams
24093 24094 24095 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 24093 def default_params @default_params end |
#vertex_ai_search_runtime_config ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1RuntimeConfigVertexAiSearchRuntimeConfig
Runtime configuration for Vertext AI Search extension.
Corresponds to the JSON property vertexAiSearchRuntimeConfig
24098 24099 24100 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 24098 def vertex_ai_search_runtime_config @vertex_ai_search_runtime_config end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
24105 24106 24107 24108 24109 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 24105 def update!(**args) @code_interpreter_runtime_config = args[:code_interpreter_runtime_config] if args.key?(:code_interpreter_runtime_config) @default_params = args[:default_params] if args.key?(:default_params) @vertex_ai_search_runtime_config = args[:vertex_ai_search_runtime_config] if args.key?(:vertex_ai_search_runtime_config) end |