Class: Google::Apis::CloudbuildV1alpha2::UpdateWorkerPoolOperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::CloudbuildV1alpha2::UpdateWorkerPoolOperationMetadata
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudbuild_v1alpha2/classes.rb,
lib/google/apis/cloudbuild_v1alpha2/representations.rb,
lib/google/apis/cloudbuild_v1alpha2/representations.rb
Overview
Metadata for the UpdateWorkerPool
operation.
Instance Attribute Summary collapse
-
#complete_time ⇒ String
Time the operation was completed.
-
#create_time ⇒ String
Time the operation was created.
-
#worker_pool ⇒ String
The resource name of the
WorkerPool
being updated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UpdateWorkerPoolOperationMetadata
constructor
A new instance of UpdateWorkerPoolOperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UpdateWorkerPoolOperationMetadata
Returns a new instance of UpdateWorkerPoolOperationMetadata.
2751 2752 2753 |
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 2751 def initialize(**args) update!(**args) end |
Instance Attribute Details
#complete_time ⇒ String
Time the operation was completed.
Corresponds to the JSON property completeTime
2738 2739 2740 |
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 2738 def complete_time @complete_time end |
#create_time ⇒ String
Time the operation was created.
Corresponds to the JSON property createTime
2743 2744 2745 |
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 2743 def create_time @create_time end |
#worker_pool ⇒ String
The resource name of the WorkerPool
being updated. Format: projects/
project/locations/
location/workerPools/
worker_pool`.
Corresponds to the JSON property
workerPool`
2749 2750 2751 |
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 2749 def worker_pool @worker_pool end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2756 2757 2758 2759 2760 |
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 2756 def update!(**args) @complete_time = args[:complete_time] if args.key?(:complete_time) @create_time = args[:create_time] if args.key?(:create_time) @worker_pool = args[:worker_pool] if args.key?(:worker_pool) end |