Class: Google::Apis::LifesciencesV2beta::Resources

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/lifesciences_v2beta/classes.rb,
generated/google/apis/lifesciences_v2beta/representations.rb,
generated/google/apis/lifesciences_v2beta/representations.rb

Overview

The system resources for the pipeline run. At least one zone or region must be specified or the pipeline run will fail.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Resources

Returns a new instance of Resources.



969
970
971
# File 'generated/google/apis/lifesciences_v2beta/classes.rb', line 969

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

Instance Attribute Details

#regionsArray<String>

The list of regions allowed for VM allocation. If set, the zones field must not be set. Corresponds to the JSON property regions

Returns:

  • (Array<String>)


956
957
958
# File 'generated/google/apis/lifesciences_v2beta/classes.rb', line 956

def regions
  @regions
end

#virtual_machineGoogle::Apis::LifesciencesV2beta::VirtualMachine

Carries information about a Compute Engine VM resource. Corresponds to the JSON property virtualMachine



961
962
963
# File 'generated/google/apis/lifesciences_v2beta/classes.rb', line 961

def virtual_machine
  @virtual_machine
end

#zonesArray<String>

The list of zones allowed for VM allocation. If set, the regions field must not be set. Corresponds to the JSON property zones

Returns:

  • (Array<String>)


967
968
969
# File 'generated/google/apis/lifesciences_v2beta/classes.rb', line 967

def zones
  @zones
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



974
975
976
977
978
# File 'generated/google/apis/lifesciences_v2beta/classes.rb', line 974

def update!(**args)
  @regions = args[:regions] if args.key?(:regions)
  @virtual_machine = args[:virtual_machine] if args.key?(:virtual_machine)
  @zones = args[:zones] if args.key?(:zones)
end