Class: Google::Apis::CloudbuildV1alpha2::WorkerConfig
- Inherits:
-
Object
- Object
- Google::Apis::CloudbuildV1alpha2::WorkerConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/cloudbuild_v1alpha2/classes.rb,
generated/google/apis/cloudbuild_v1alpha2/representations.rb,
generated/google/apis/cloudbuild_v1alpha2/representations.rb
Overview
WorkerConfig defines the configuration to be used for a creating workers in the pool.
Instance Attribute Summary collapse
-
#disk_size_gb ⇒ Fixnum
Size of the disk attached to the worker, in GB.
-
#machine_type ⇒ String
Machine Type of the worker, such as n1-standard-1.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WorkerConfig
constructor
A new instance of WorkerConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ WorkerConfig
Returns a new instance of WorkerConfig.
1436 1437 1438 |
# File 'generated/google/apis/cloudbuild_v1alpha2/classes.rb', line 1436 def initialize(**args) update!(**args) end |
Instance Attribute Details
#disk_size_gb ⇒ Fixnum
Size of the disk attached to the worker, in GB. See https://cloud.google.com/
compute/docs/disks/ If 0
is specified, Cloud Build will use a standard disk
size.
Corresponds to the JSON property diskSizeGb
1427 1428 1429 |
# File 'generated/google/apis/cloudbuild_v1alpha2/classes.rb', line 1427 def disk_size_gb @disk_size_gb end |
#machine_type ⇒ String
Machine Type of the worker, such as n1-standard-1. See https://cloud.google.
com/compute/docs/machine-types. If left blank, Cloud Build will use a standard
unspecified machine to create the worker pool.
Corresponds to the JSON property machineType
1434 1435 1436 |
# File 'generated/google/apis/cloudbuild_v1alpha2/classes.rb', line 1434 def machine_type @machine_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1441 1442 1443 1444 |
# File 'generated/google/apis/cloudbuild_v1alpha2/classes.rb', line 1441 def update!(**args) @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb) @machine_type = args[:machine_type] if args.key?(:machine_type) end |