Class: Google::Apis::ClouddeployV1::ApproveRolloutRequest

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/clouddeploy_v1/classes.rb,
lib/google/apis/clouddeploy_v1/representations.rb,
lib/google/apis/clouddeploy_v1/representations.rb

Overview

The request object used by ApproveRollout.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ApproveRolloutRequest

Returns a new instance of ApproveRolloutRequest.



56
57
58
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 56

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

Instance Attribute Details

#approvedBoolean Also known as: approved?

Required. True = approve; false = reject Corresponds to the JSON property approved

Returns:

  • (Boolean)


53
54
55
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 53

def approved
  @approved
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



61
62
63
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 61

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