Class: Google::Apis::ConfigV1::ProvisionDeploymentGroupOperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::ConfigV1::ProvisionDeploymentGroupOperationMetadata
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/config_v1/classes.rb,
lib/google/apis/config_v1/representations.rb,
lib/google/apis/config_v1/representations.rb
Overview
Operation metadata for ProvisionDeploymentGroup and
DeprovisionDeploymentGroup long-running operations.
Instance Attribute Summary collapse
-
#deployment_unit_progresses ⇒ Array<Google::Apis::ConfigV1::DeploymentUnitProgress>
Output only.
-
#step ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ProvisionDeploymentGroupOperationMetadata
constructor
A new instance of ProvisionDeploymentGroupOperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ProvisionDeploymentGroupOperationMetadata
Returns a new instance of ProvisionDeploymentGroupOperationMetadata.
2165 2166 2167 |
# File 'lib/google/apis/config_v1/classes.rb', line 2165 def initialize(**args) update!(**args) end |
Instance Attribute Details
#deployment_unit_progresses ⇒ Array<Google::Apis::ConfigV1::DeploymentUnitProgress>
Output only. Progress information for each deployment unit within the
operation.
Corresponds to the JSON property deploymentUnitProgresses
2158 2159 2160 |
# File 'lib/google/apis/config_v1/classes.rb', line 2158 def deployment_unit_progresses @deployment_unit_progresses end |
#step ⇒ String
Output only. The current step of the deployment group operation.
Corresponds to the JSON property step
2163 2164 2165 |
# File 'lib/google/apis/config_v1/classes.rb', line 2163 def step @step end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2170 2171 2172 2173 |
# File 'lib/google/apis/config_v1/classes.rb', line 2170 def update!(**args) @deployment_unit_progresses = args[:deployment_unit_progresses] if args.key?(:deployment_unit_progresses) @step = args[:step] if args.key?(:step) end |