Class: Google::Apis::AppengineV1::Resources

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

Overview

Machine resources for a version.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Resources

Returns a new instance of Resources.



2665
2666
2667
# File 'lib/google/apis/appengine_v1/classes.rb', line 2665

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

Instance Attribute Details

#cpuFloat

Number of CPU cores needed. Corresponds to the JSON property cpu

Returns:

  • (Float)


2642
2643
2644
# File 'lib/google/apis/appengine_v1/classes.rb', line 2642

def cpu
  @cpu
end

#disk_gbFloat

Disk size (GB) needed. Corresponds to the JSON property diskGb

Returns:

  • (Float)


2647
2648
2649
# File 'lib/google/apis/appengine_v1/classes.rb', line 2647

def disk_gb
  @disk_gb
end

#kms_key_referenceString

The name of the encryption key that is stored in Google Cloud KMS. Only should be used by Cloud Composer to encrypt the vm disk Corresponds to the JSON property kmsKeyReference

Returns:

  • (String)


2653
2654
2655
# File 'lib/google/apis/appengine_v1/classes.rb', line 2653

def kms_key_reference
  @kms_key_reference
end

#memory_gbFloat

Memory (GB) needed. Corresponds to the JSON property memoryGb

Returns:

  • (Float)


2658
2659
2660
# File 'lib/google/apis/appengine_v1/classes.rb', line 2658

def memory_gb
  @memory_gb
end

#volumesArray<Google::Apis::AppengineV1::Volume>

User specified volumes. Corresponds to the JSON property volumes



2663
2664
2665
# File 'lib/google/apis/appengine_v1/classes.rb', line 2663

def volumes
  @volumes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2670
2671
2672
2673
2674
2675
2676
# File 'lib/google/apis/appengine_v1/classes.rb', line 2670

def update!(**args)
  @cpu = args[:cpu] if args.key?(:cpu)
  @disk_gb = args[:disk_gb] if args.key?(:disk_gb)
  @kms_key_reference = args[:kms_key_reference] if args.key?(:kms_key_reference)
  @memory_gb = args[:memory_gb] if args.key?(:memory_gb)
  @volumes = args[:volumes] if args.key?(:volumes)
end