Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpecBatchComputeResources
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DataplexV1::GoogleCloudDataplexV1TaskInfrastructureSpecBatchComputeResources
 
 
- 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
Batch compute resources associated with the task.
Instance Attribute Summary collapse
- 
  
    
      #executors_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 - 
  
    
      #max_executors_count  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Optional.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudDataplexV1TaskInfrastructureSpecBatchComputeResources 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of GoogleCloudDataplexV1TaskInfrastructureSpecBatchComputeResources.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ GoogleCloudDataplexV1TaskInfrastructureSpecBatchComputeResources
Returns a new instance of GoogleCloudDataplexV1TaskInfrastructureSpecBatchComputeResources.
      7058 7059 7060  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 7058 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#executors_count ⇒ Fixnum
Optional. Total number of job executors. Executor Count should be between 2
and 100. Default=2
Corresponds to the JSON property executorsCount
      7049 7050 7051  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 7049 def executors_count @executors_count end  | 
  
#max_executors_count ⇒ Fixnum
Optional. Max configurable executors. If max_executors_count > executors_count,
then auto-scaling is enabled. Max Executor Count should be between 2 and 1000.
Default=1000
Corresponds to the JSON property maxExecutorsCount
      7056 7057 7058  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 7056 def max_executors_count @max_executors_count end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      7063 7064 7065 7066  | 
    
      # File 'lib/google/apis/dataplex_v1/classes.rb', line 7063 def update!(**args) @executors_count = args[:executors_count] if args.key?(:executors_count) @max_executors_count = args[:max_executors_count] if args.key?(:max_executors_count) end  |