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
-
#log_streaming_option ⇒ String
LogStreamingOption to define build log streaming behavior to Google Cloud Storage.
-
#requested_verify_option ⇒ String
Requested verifiability options.
-
#source_provenance_hash ⇒ Array<String>
Requested hash for SourceProvenance.
-
#substitution_option ⇒ String
SubstitutionOption to allow unmatch substitutions.
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
254 255 256 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 254 def initialize(**args) update!(**args) end |
Instance Attribute Details
#log_streaming_option ⇒ String
LogStreamingOption to define build log streaming behavior to Google Cloud
Storage.
Corresponds to the JSON property logStreamingOption
237 238 239 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 237 def log_streaming_option @log_streaming_option end |
#requested_verify_option ⇒ String
Requested verifiability options.
Corresponds to the JSON property requestedVerifyOption
242 243 244 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 242 def requested_verify_option @requested_verify_option end |
#source_provenance_hash ⇒ Array<String>
Requested hash for SourceProvenance.
Corresponds to the JSON property sourceProvenanceHash
247 248 249 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 247 def source_provenance_hash @source_provenance_hash end |
#substitution_option ⇒ String
SubstitutionOption to allow unmatch substitutions.
Corresponds to the JSON property substitutionOption
252 253 254 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 252 def substitution_option @substitution_option end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
259 260 261 262 263 264 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 259 def update!(**args) @log_streaming_option = args[:log_streaming_option] if args.key?(:log_streaming_option) @requested_verify_option = args[:requested_verify_option] if args.key?(:requested_verify_option) @source_provenance_hash = args[:source_provenance_hash] if args.key?(:source_provenance_hash) @substitution_option = args[:substitution_option] if args.key?(:substitution_option) end |