Class: Google::Apis::CloudbuildV1alpha2::ApprovalConfig

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

Overview

ApprovalConfig describes configuration for manual approval of a build.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ApprovalConfig

Returns a new instance of ApprovalConfig.



36
37
38
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 36

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

Instance Attribute Details

#approval_requiredBoolean Also known as: approval_required?

Whether or not approval is needed. If this is set on a build, it will become pending when created, and will need to be explicitly approved to start. Corresponds to the JSON property approvalRequired

Returns:

  • (Boolean)


33
34
35
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 33

def approval_required
  @approval_required
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



41
42
43
# File 'lib/google/apis/cloudbuild_v1alpha2/classes.rb', line 41

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