Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecInlineSource
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecInlineSource
- 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
Specifies source code provided as a byte stream.
Instance Attribute Summary collapse
-
#source_archive ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecInlineSource
constructor
A new instance of GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecInlineSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecInlineSource
Returns a new instance of GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecInlineSource.
31326 31327 31328 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 31326 def initialize(**args) update!(**args) end |
Instance Attribute Details
#source_archive ⇒ String
Required. Input only. The application source code archive. It must be a
compressed tarball (.tar.gz) file.
Corresponds to the JSON property sourceArchive
NOTE: Values are automatically base64 encoded/decoded in the client library.
31324 31325 31326 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 31324 def source_archive @source_archive end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
31331 31332 31333 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 31331 def update!(**args) @source_archive = args[:source_archive] if args.key?(:source_archive) end |