class Google::Apis::CloudbuildV1alpha1::DeleteWorkerPoolOperationMetadata

Metadata for the `DeleteWorkerPool` operation.

Attributes

complete_time[RW]

Time the operation was completed. Corresponds to the JSON property `completeTime` @return [String]

create_time[RW]

Time the operation was created. Corresponds to the JSON property `createTime` @return [String]

worker_pool[RW]

The resource name of the `WorkerPool` being deleted. Format: `projects/` project`/locations/`location`/workerPools/`worker_pool“. Corresponds to the JSON property `workerPool` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudbuild_v1alpha1/classes.rb, line 885
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/cloudbuild_v1alpha1/classes.rb, line 890
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