Class: Google::Apis::DeploymentmanagerV2beta::DeploymentsCancelPreviewRequest

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DeploymentsCancelPreviewRequest

Returns a new instance of DeploymentsCancelPreviewRequest.



688
689
690
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 688

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

Instance Attribute Details

#fingerprintString

Specifies a fingerprint for cancelPreview() requests. A fingerprint is a randomly generated value that must be provided in cancelPreview() 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 cancel a preview, this would prevent one of the requests). 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 NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


686
687
688
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 686

def fingerprint
  @fingerprint
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



693
694
695
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 693

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