Class: Google::Apis::ContaineranalysisV1beta1::BuildProvenance

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

Overview

Provenance of a build. Contains all information needed to verify the full details about the build from source to completion.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ BuildProvenance

Returns a new instance of BuildProvenance.



467
468
469
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 467

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

Instance Attribute Details

#build_optionsHash<String,String>

Special options applied to this build. This is a catch-all field where build providers can enter any desired additional details. Corresponds to the JSON property buildOptions

Returns:

  • (Hash<String,String>)


403
404
405
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 403

def build_options
  @build_options
end

#builder_versionString

Version string of the builder at the time this build was executed. Corresponds to the JSON property builderVersion

Returns:

  • (String)


408
409
410
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 408

def builder_version
  @builder_version
end

#built_artifactsArray<Google::Apis::ContaineranalysisV1beta1::Artifact>

Output of the build. Corresponds to the JSON property builtArtifacts



413
414
415
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 413

def built_artifacts
  @built_artifacts
end

#commandsArray<Google::Apis::ContaineranalysisV1beta1::Command>

Commands requested by the build. Corresponds to the JSON property commands



418
419
420
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 418

def commands
  @commands
end

#create_timeString

Time at which the build was created. Corresponds to the JSON property createTime

Returns:

  • (String)


423
424
425
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 423

def create_time
  @create_time
end

#creatorString

E-mail address of the user who initiated this build. Note that this was the user's e-mail address at the time the build was initiated; this address may not represent the same end-user for all time. Corresponds to the JSON property creator

Returns:

  • (String)


430
431
432
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 430

def creator
  @creator
end

#end_timeString

Time at which execution of the build was finished. Corresponds to the JSON property endTime

Returns:

  • (String)


435
436
437
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 435

def end_time
  @end_time
end

#idString

Required. Unique identifier of the build. Corresponds to the JSON property id

Returns:

  • (String)


440
441
442
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 440

def id
  @id
end

#logs_uriString

URI where any logs for this provenance were written. Corresponds to the JSON property logsUri

Returns:

  • (String)


445
446
447
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 445

def logs_uri
  @logs_uri
end

#project_idString

ID of the project. Corresponds to the JSON property projectId

Returns:

  • (String)


450
451
452
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 450

def project_id
  @project_id
end

#source_provenanceGoogle::Apis::ContaineranalysisV1beta1::Source

Source describes the location of the source used for the build. Corresponds to the JSON property sourceProvenance



455
456
457
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 455

def source_provenance
  @source_provenance
end

#start_timeString

Time at which execution of the build was started. Corresponds to the JSON property startTime

Returns:

  • (String)


460
461
462
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 460

def start_time
  @start_time
end

#trigger_idString

Trigger identifier if the build was triggered automatically; empty if not. Corresponds to the JSON property triggerId

Returns:

  • (String)


465
466
467
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 465

def trigger_id
  @trigger_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 472

def update!(**args)
  @build_options = args[:build_options] if args.key?(:build_options)
  @builder_version = args[:builder_version] if args.key?(:builder_version)
  @built_artifacts = args[:built_artifacts] if args.key?(:built_artifacts)
  @commands = args[:commands] if args.key?(:commands)
  @create_time = args[:create_time] if args.key?(:create_time)
  @creator = args[:creator] if args.key?(:creator)
  @end_time = args[:end_time] if args.key?(:end_time)
  @id = args[:id] if args.key?(:id)
  @logs_uri = args[:logs_uri] if args.key?(:logs_uri)
  @project_id = args[:project_id] if args.key?(:project_id)
  @source_provenance = args[:source_provenance] if args.key?(:source_provenance)
  @start_time = args[:start_time] if args.key?(:start_time)
  @trigger_id = args[:trigger_id] if args.key?(:trigger_id)
end