Class: Google::Apis::DeploymentmanagerV2beta2::DeploymentUpdate
- Inherits:
-
Object
- Object
- Google::Apis::DeploymentmanagerV2beta2::DeploymentUpdate
- Includes:
- Core::Hashable
- Defined in:
- generated/google/apis/deploymentmanager_v2beta2/classes.rb,
generated/google/apis/deploymentmanager_v2beta2/representations.rb,
generated/google/apis/deploymentmanager_v2beta2/representations.rb
Instance Attribute Summary collapse
-
#errors ⇒ Array<String>
[Output Only] List of all errors encountered while trying to enact the update.
-
#manifest ⇒ String
[Output Only] URL of the manifest representing the update configuration of this deployment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeploymentUpdate
constructor
A new instance of DeploymentUpdate.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DeploymentUpdate
Returns a new instance of DeploymentUpdate
150 151 152 |
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 150 def initialize(**args) update!(**args) end |
Instance Attribute Details
#errors ⇒ Array<String>
[Output Only] List of all errors encountered while trying to enact the update.
Corresponds to the JSON property errors
142 143 144 |
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 142 def errors @errors end |
#manifest ⇒ String
[Output Only] URL of the manifest representing the update configuration of
this deployment.
Corresponds to the JSON property manifest
148 149 150 |
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 148 def manifest @manifest end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
155 156 157 158 |
# File 'generated/google/apis/deploymentmanager_v2beta2/classes.rb', line 155 def update!(**args) @errors = args[:errors] unless args[:errors].nil? @manifest = args[:manifest] unless args[:manifest].nil? end |