Class: Google::Apis::ContaineranalysisV1beta1::Source

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

Source describes the location of the source used for the build.

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) ⇒ Source

Returns a new instance of Source



2611
2612
2613
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2611

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

Instance Attribute Details

#additional_contextsArray<Google::Apis::ContaineranalysisV1beta1::SourceContext>

If provided, some of the source code used for the build may be found in these locations, in the case where the source repository had multiple remotes or submodules. This list will not include the context specified in the context field. Corresponds to the JSON property additionalContexts



2587
2588
2589
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2587

def additional_contexts
  @additional_contexts
end

#artifact_storage_source_uriString

If provided, the input binary artifacts for the build came from this location. Corresponds to the JSON property artifactStorageSourceUri

Returns:

  • (String)


2593
2594
2595
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2593

def artifact_storage_source_uri
  @artifact_storage_source_uri
end

#contextGoogle::Apis::ContaineranalysisV1beta1::SourceContext

A SourceContext is a reference to a tree of files. A SourceContext together with a path point to a unique revision of a single file or directory. Corresponds to the JSON property context



2599
2600
2601
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2599

def context
  @context
end

#file_hashesHash<String,Google::Apis::ContaineranalysisV1beta1::FileHashes>

Hash(es) of the build source, which can be used to verify that the original source integrity was maintained in the build. The keys to this map are file paths used as build source and the values contain the hash values for those files. If the build source came in a single package such as a gzipped tarfile (.tar.gz), the FileHash will be for the single path to that file. Corresponds to the JSON property fileHashes



2609
2610
2611
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2609

def file_hashes
  @file_hashes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2616
2617
2618
2619
2620
2621
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 2616

def update!(**args)
  @additional_contexts = args[:additional_contexts] if args.key?(:additional_contexts)
  @artifact_storage_source_uri = args[:artifact_storage_source_uri] if args.key?(:artifact_storage_source_uri)
  @context = args[:context] if args.key?(:context)
  @file_hashes = args[:file_hashes] if args.key?(:file_hashes)
end