Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntime
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntime
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/representations.rb
Overview
Software Runtime Configuration to run Analyze.
Instance Attribute Summary collapse
-
#image_version ⇒ String
Required.
-
#java_libraries ⇒ Array<String>
Optional.
-
#properties ⇒ Hash<String,String>
Optional.
-
#python_packages ⇒ Array<String>
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntime
constructor
A new instance of GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntime.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntime
Returns a new instance of GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntime.
2995 2996 2997 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2995 def initialize(**args) update!(**args) end |
Instance Attribute Details
#image_version ⇒ String
Required. Dataplex Image version.
Corresponds to the JSON property imageVersion
2971 2972 2973 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2971 def image_version @image_version end |
#java_libraries ⇒ Array<String>
Optional. List of Java jars to be included in the runtime environment. Valid
input includes Cloud Storage URIs to Jar binaries. For example, gs://bucket-
name/my/path/to/file.jar
Corresponds to the JSON property javaLibraries
2978 2979 2980 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2978 def java_libraries @java_libraries end |
#properties ⇒ Hash<String,String>
Optional. Spark properties to provide configuration for use in sessions
created for this environment. The properties to set on daemon config files.
Property keys are specified in prefix:property format. The prefix must be "
spark".
Corresponds to the JSON property properties
2986 2987 2988 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2986 def properties @properties end |
#python_packages ⇒ Array<String>
Optional. A list of python packages to be installed. Valid formats include
Cloud Storage URI to a PIP installable library. For example, gs://bucket-name/
my/path/to/lib.tar.gz
Corresponds to the JSON property pythonPackages
2993 2994 2995 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 2993 def python_packages @python_packages end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3000 3001 3002 3003 3004 3005 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3000 def update!(**args) @image_version = args[:image_version] if args.key?(:image_version) @java_libraries = args[:java_libraries] if args.key?(:java_libraries) @properties = args[:properties] if args.key?(:properties) @python_packages = args[:python_packages] if args.key?(:python_packages) end |