Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpec
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpec
- 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
-
#batch ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpecBatchComputeResources
Batch compute resources associated with the task.
-
#container_image ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
Container Image Runtime Configuration used with Batch execution.
-
#vpc_network ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpecVpcNetwork
Cloud VPC Network used to run the infrastructure.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDataplexV1TaskInfrastructureSpec
constructor
A new instance of GoogleCloudDataplexV1TaskInfrastructureSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1TaskInfrastructureSpec
Returns a new instance of GoogleCloudDataplexV1TaskInfrastructureSpec.
6589 6590 6591 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6589 def initialize(**args) update!(**args) end |
Instance Attribute Details
#batch ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpecBatchComputeResources
Batch compute resources associated with the task.
Corresponds to the JSON property batch
6577 6578 6579 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6577 def batch @batch end |
#container_image ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime
Container Image Runtime Configuration used with Batch execution.
Corresponds to the JSON property containerImage
6582 6583 6584 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6582 def container_image @container_image end |
#vpc_network ⇒ Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpecVpcNetwork
Cloud VPC Network used to run the infrastructure.
Corresponds to the JSON property vpcNetwork
6587 6588 6589 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6587 def vpc_network @vpc_network end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6594 6595 6596 6597 6598 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6594 def update!(**args) @batch = args[:batch] if args.key?(:batch) @container_image = args[:container_image] if args.key?(:container_image) @vpc_network = args[:vpc_network] if args.key?(:vpc_network) end |