Class: Google::Apis::CloudbuildV1::BuildOptions

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

Overview

Optional arguments to enable specific features of builds.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ BuildOptions

Returns a new instance of BuildOptions.



793
794
795
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 793

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

Instance Attribute Details

#requested_verify_optionString

Options for a verifiable build with details uploaded to the Analysis API. Corresponds to the JSON property requestedVerifyOption

Returns:

  • (String)


791
792
793
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 791

def requested_verify_option
  @requested_verify_option
end

#source_provenance_hashArray<String>

Requested hash for SourceProvenance. Corresponds to the JSON property sourceProvenanceHash

Returns:

  • (Array<String>)


786
787
788
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 786

def source_provenance_hash
  @source_provenance_hash
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



798
799
800
801
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 798

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