Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpec

Inherits:
Object
  • Object
show all
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

Specification for deploying from source code.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpec

Returns a new instance of GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpec.



35644
35645
35646
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 35644

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#agent_config_sourceGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecAgentConfigSource

Specification for the deploying from agent config. Corresponds to the JSON property agentConfigSource



35620
35621
35622
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 35620

def agent_config_source
  @agent_config_source
end

#developer_connect_sourceGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecDeveloperConnectSource

Specifies source code to be fetched from a Git repository managed through the Developer Connect service. Corresponds to the JSON property developerConnectSource



35626
35627
35628
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 35626

def developer_connect_source
  @developer_connect_source
end

#image_specGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecImageSpec

The image spec for building an image (within a single build step), based on the config file (i.e. Dockerfile) in the source directory. Corresponds to the JSON property imageSpec



35632
35633
35634
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 35632

def image_spec
  @image_spec
end

#inline_sourceGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecInlineSource

Specifies source code provided as a byte stream. Corresponds to the JSON property inlineSource



35637
35638
35639
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 35637

def inline_source
  @inline_source
end

#python_specGoogle::Apis::AiplatformV1::GoogleCloudAiplatformV1ReasoningEngineSpecSourceCodeSpecPythonSpec

Specification for running a Python application from source. Corresponds to the JSON property pythonSpec



35642
35643
35644
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 35642

def python_spec
  @python_spec
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



35649
35650
35651
35652
35653
35654
35655
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 35649

def update!(**args)
  @agent_config_source = args[:agent_config_source] if args.key?(:agent_config_source)
  @developer_connect_source = args[:developer_connect_source] if args.key?(:developer_connect_source)
  @image_spec = args[:image_spec] if args.key?(:image_spec)
  @inline_source = args[:inline_source] if args.key?(:inline_source)
  @python_spec = args[:python_spec] if args.key?(:python_spec)
end