Class: Google::Apis::DeploymentmanagerAlpha::DeploymentOutputEntry
- Inherits:
-
Object
- Object
- Google::Apis::DeploymentmanagerAlpha::DeploymentOutputEntry
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/deploymentmanager_alpha/classes.rb,
generated/google/apis/deploymentmanager_alpha/representations.rb,
generated/google/apis/deploymentmanager_alpha/representations.rb
Overview
Output object for Deployments
Instance Attribute Summary collapse
-
#key ⇒ String
Key of the output Corresponds to the JSON property
key
. -
#value ⇒ String
Value of the label Corresponds to the JSON property
value
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeploymentOutputEntry
constructor
A new instance of DeploymentOutputEntry.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DeploymentOutputEntry
Returns a new instance of DeploymentOutputEntry.
642 643 644 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 642 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
Key of the output
Corresponds to the JSON property key
635 636 637 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 635 def key @key end |
#value ⇒ String
Value of the label
Corresponds to the JSON property value
640 641 642 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 640 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
647 648 649 650 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 647 def update!(**args) @key = args[:key] if args.key?(:key) @value = args[:value] if args.key?(:value) end |