Class: Google::Apis::ContaineranalysisV1alpha1::SbomReferenceIntotoPredicate

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

Overview

A predicate which describes the SBOM being referenced.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SbomReferenceIntotoPredicate

Returns a new instance of SbomReferenceIntotoPredicate.



6316
6317
6318
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 6316

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

Instance Attribute Details

#digestHash<String,String>

A map of algorithm to digest of the contents of the SBOM. Corresponds to the JSON property digest

Returns:

  • (Hash<String,String>)


6299
6300
6301
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 6299

def digest
  @digest
end

#locationString

The location of the SBOM. Corresponds to the JSON property location

Returns:

  • (String)


6304
6305
6306
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 6304

def location
  @location
end

#mime_typeString

The mime type of the SBOM. Corresponds to the JSON property mimeType

Returns:

  • (String)


6309
6310
6311
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 6309

def mime_type
  @mime_type
end

#referrer_idString

The person or system referring this predicate to the consumer. Corresponds to the JSON property referrerId

Returns:

  • (String)


6314
6315
6316
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 6314

def referrer_id
  @referrer_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6321
6322
6323
6324
6325
6326
# File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 6321

def update!(**args)
  @digest = args[:digest] if args.key?(:digest)
  @location = args[:location] if args.key?(:location)
  @mime_type = args[:mime_type] if args.key?(:mime_type)
  @referrer_id = args[:referrer_id] if args.key?(:referrer_id)
end