Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpec

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1TaskInfrastructureSpec

Returns a new instance of GoogleCloudDataplexV1TaskInfrastructureSpec.



6978
6979
6980
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6978

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

Instance Attribute Details

#batchGoogle::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpecBatchComputeResources

Batch compute resources associated with the task. Corresponds to the JSON property batch



6966
6967
6968
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6966

def batch
  @batch
end

#container_imageGoogle::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpecContainerImageRuntime

Container Image Runtime Configuration used with Batch execution. Corresponds to the JSON property containerImage



6971
6972
6973
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6971

def container_image
  @container_image
end

#vpc_networkGoogle::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpecVpcNetwork

Cloud VPC Network used to run the infrastructure. Corresponds to the JSON property vpcNetwork



6976
6977
6978
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6976

def vpc_network
  @vpc_network
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6983
6984
6985
6986
6987
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6983

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