Class: Google::Apis::DeploymentmanagerV2::DeploymentsStopRequest

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) ⇒ DeploymentsStopRequest

Returns a new instance of DeploymentsStopRequest



454
455
456
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 454

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

Instance Attribute Details

#fingerprintString

Specifies a fingerprint for stop() requests. A fingerprint is a randomly generated value that must be provided in stop() requests to perform optimistic locking. This ensures optimistic concurrency so that the deployment does not have conflicting requests (e.g. if someone attempts to make a new update request while another user attempts to stop an ongoing update request, this would prevent a collision). The fingerprint is initially generated by Deployment Manager and changes after every request to modify a deployment. To get the latest fingerprint value, perform a get() request on the deployment. Corresponds to the JSON property fingerprint

Returns:

  • (String)


452
453
454
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 452

def fingerprint
  @fingerprint
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



459
460
461
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 459

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