Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ReasoningEngineSpecPackageSpec

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

User-provided package specification, containing pickled object and package requirements.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ReasoningEngineSpecPackageSpec

Returns a new instance of GoogleCloudAiplatformV1beta1ReasoningEngineSpecPackageSpec.



46979
46980
46981
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 46979

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

Instance Attribute Details

#dependency_files_gcs_uriString

Optional. The Cloud Storage URI of the dependency files in tar.gz format. Corresponds to the JSON property dependencyFilesGcsUri

Returns:

  • (String)


46961
46962
46963
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 46961

def dependency_files_gcs_uri
  @dependency_files_gcs_uri
end

#pickle_object_gcs_uriString

Optional. The Cloud Storage URI of the pickled python object. Corresponds to the JSON property pickleObjectGcsUri

Returns:

  • (String)


46966
46967
46968
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 46966

def pickle_object_gcs_uri
  @pickle_object_gcs_uri
end

#python_versionString

Optional. The Python version. Supported values are 3.10, 3.11, 3.12, 3.13, 3.

  1. If not specified, the default value is 3.10. Corresponds to the JSON property pythonVersion

Returns:

  • (String)


46972
46973
46974
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 46972

def python_version
  @python_version
end

#requirements_gcs_uriString

Optional. The Cloud Storage URI of the requirements.txt file Corresponds to the JSON property requirementsGcsUri

Returns:

  • (String)


46977
46978
46979
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 46977

def requirements_gcs_uri
  @requirements_gcs_uri
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



46984
46985
46986
46987
46988
46989
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 46984

def update!(**args)
  @dependency_files_gcs_uri = args[:dependency_files_gcs_uri] if args.key?(:dependency_files_gcs_uri)
  @pickle_object_gcs_uri = args[:pickle_object_gcs_uri] if args.key?(:pickle_object_gcs_uri)
  @python_version = args[:python_version] if args.key?(:python_version)
  @requirements_gcs_uri = args[:requirements_gcs_uri] if args.key?(:requirements_gcs_uri)
end