Class: Google::Apis::CloudbuildV1::CreateWorkerPoolOperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::CloudbuildV1::CreateWorkerPoolOperationMetadata
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudbuild_v1/classes.rb,
lib/google/apis/cloudbuild_v1/representations.rb,
lib/google/apis/cloudbuild_v1/representations.rb
Overview
Metadata for the CreateWorkerPool
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
to create.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CreateWorkerPoolOperationMetadata
constructor
A new instance of CreateWorkerPoolOperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CreateWorkerPoolOperationMetadata
Returns a new instance of CreateWorkerPoolOperationMetadata.
1777 1778 1779 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1777 def initialize(**args) update!(**args) end |
Instance Attribute Details
#complete_time ⇒ String
Time the operation was completed.
Corresponds to the JSON property completeTime
1764 1765 1766 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1764 def complete_time @complete_time end |
#create_time ⇒ String
Time the operation was created.
Corresponds to the JSON property createTime
1769 1770 1771 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1769 def create_time @create_time end |
#worker_pool ⇒ String
The resource name of the WorkerPool
to create. Format: projects/
project/
locations/
location/workerPools/
worker_pool`.
Corresponds to the JSON property
workerPool`
1775 1776 1777 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1775 def worker_pool @worker_pool end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1782 1783 1784 1785 1786 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 1782 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 |