Class: Google::Apis::DeploymentmanagerV2::DeploymentUpdate
- Inherits:
-
Object
- Object
- Google::Apis::DeploymentmanagerV2::DeploymentUpdate
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/deploymentmanager_v2/classes.rb,
lib/google/apis/deploymentmanager_v2/representations.rb,
lib/google/apis/deploymentmanager_v2/representations.rb
Instance Attribute Summary collapse
-
#description ⇒ String
Output only.
-
#labels ⇒ Array<Google::Apis::DeploymentmanagerV2::DeploymentUpdateLabelEntry>
Map of One Platform labels; provided by the client when the resource is created or updated.
-
#manifest ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeploymentUpdate
constructor
A new instance of DeploymentUpdate.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DeploymentUpdate
Returns a new instance of DeploymentUpdate.
451 452 453 |
# File 'lib/google/apis/deploymentmanager_v2/classes.rb', line 451 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Output only. An optional user-provided description of the deployment after the
current update has been applied.
Corresponds to the JSON property description
434 435 436 |
# File 'lib/google/apis/deploymentmanager_v2/classes.rb', line 434 def description @description end |
#labels ⇒ Array<Google::Apis::DeploymentmanagerV2::DeploymentUpdateLabelEntry>
Map of One Platform labels; provided by the client when the resource is
created or updated. Specifically: Label keys must be between 1 and 63
characters long and must conform to the following regular expression: [a-z]([-
a-z0-9]*[a-z0-9])?
Label values must be between 0 and 63 characters long and
must conform to the regular expression ([a-z]([-a-z0-9]*[a-z0-9])?)?
.
Corresponds to the JSON property labels
443 444 445 |
# File 'lib/google/apis/deploymentmanager_v2/classes.rb', line 443 def labels @labels end |
#manifest ⇒ String
Output only. URL of the manifest representing the update configuration of this
deployment.
Corresponds to the JSON property manifest
449 450 451 |
# File 'lib/google/apis/deploymentmanager_v2/classes.rb', line 449 def manifest @manifest end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
456 457 458 459 460 |
# File 'lib/google/apis/deploymentmanager_v2/classes.rb', line 456 def update!(**args) @description = args[:description] if args.key?(:description) @labels = args[:labels] if args.key?(:labels) @manifest = args[:manifest] if args.key?(:manifest) end |