Class: Google::Apis::DeploymentmanagerV2::DeploymentUpdate

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/deploymentmanager_v2/classes.rb,
generated/google/apis/deploymentmanager_v2/representations.rb,
generated/google/apis/deploymentmanager_v2/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DeploymentUpdate

Returns a new instance of DeploymentUpdate.



185
186
187
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 185

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#labelsArray<Google::Apis::DeploymentmanagerV2::DeploymentUpdateLabelEntry>

[Output Only] Map of 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? Label values must be between 0 and 63 characters long and must conform to the regular expression (a-z?)? Corresponds to the JSON property labels



177
178
179
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 177

def labels
  @labels
end

#manifestString

[Output Only] URL of the manifest representing the update configuration of this deployment. Corresponds to the JSON property manifest

Returns:

  • (String)


183
184
185
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 183

def manifest
  @manifest
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



190
191
192
193
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 190

def update!(**args)
  @labels = args[:labels] if args.key?(:labels)
  @manifest = args[:manifest] if args.key?(:manifest)
end