Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1EnvironmentInfrastructureSpec
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1EnvironmentInfrastructureSpec
- 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
Configuration for the underlying infrastructure used to run workloads.
Instance Attribute Summary collapse
-
#compute ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1EnvironmentInfrastructureSpecComputeResources
Compute resources associated with the analyze interactive workloads.
-
#os_image ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntime
Software Runtime Configuration to run Analyze.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1EnvironmentInfrastructureSpec
constructor
A new instance of GoogleCloudDataplexV1EnvironmentInfrastructureSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1EnvironmentInfrastructureSpec
Returns a new instance of GoogleCloudDataplexV1EnvironmentInfrastructureSpec.
5464 5465 5466 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5464 def initialize(**args) update!(**args) end |
Instance Attribute Details
#compute ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1EnvironmentInfrastructureSpecComputeResources
Compute resources associated with the analyze interactive workloads.
Corresponds to the JSON property compute
5457 5458 5459 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5457 def compute @compute end |
#os_image ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1EnvironmentInfrastructureSpecOsImageRuntime
Software Runtime Configuration to run Analyze.
Corresponds to the JSON property osImage
5462 5463 5464 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5462 def os_image @os_image end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5469 5470 5471 5472 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 5469 def update!(**args) @compute = args[:compute] if args.key?(:compute) @os_image = args[:os_image] if args.key?(:os_image) end |