Class: Google::Apis::CloudbuildV1::BuildOptions
- Inherits:
-
Object
- Object
- Google::Apis::CloudbuildV1::BuildOptions
- 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
-
#requested_verify_option ⇒ String
Requested verifiability options.
-
#source_provenance_hash ⇒ Array<String>
Requested hash for SourceProvenance.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BuildOptions
constructor
A new instance of BuildOptions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ BuildOptions
Returns a new instance of BuildOptions.
854 855 856 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 854 def initialize(**args) update!(**args) end |
Instance Attribute Details
#requested_verify_option ⇒ String
Requested verifiability options.
Corresponds to the JSON property requestedVerifyOption
852 853 854 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 852 def requested_verify_option @requested_verify_option end |
#source_provenance_hash ⇒ Array<String>
Requested hash for SourceProvenance.
Corresponds to the JSON property sourceProvenanceHash
847 848 849 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 847 def source_provenance_hash @source_provenance_hash end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
859 860 861 862 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 859 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 |