Class: Google::Apis::ContaineranalysisV1alpha1::Occurrence

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

Overview

Occurrence includes information about analysis occurrences for an image.

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

Returns a new instance of Occurrence



1733
1734
1735
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1733

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

Instance Attribute Details

#attestationGoogle::Apis::ContaineranalysisV1alpha1::Attestation

Occurrence that represents a single "attestation". The authenticity of an Attestation can be verified using the attached signature. If the verifier trusts the public key of the signer, then verifying the signature is sufficient to establish trust. In this circumstance, the AttestationAuthority to which this Attestation is attached is primarily useful for look-up (how to find this Attestation if you already know the Authority and artifact to be verified) and intent (which authority was this attestation intended to sign for). Corresponds to the JSON property attestation



1644
1645
1646
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1644

def attestation
  @attestation
end

#build_detailsGoogle::Apis::ContaineranalysisV1alpha1::BuildDetails

Message encapsulating build provenance details. Corresponds to the JSON property buildDetails



1649
1650
1651
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1649

def build_details
  @build_details
end

#create_timeString

Output only. The time this Occurrence was created. Corresponds to the JSON property createTime

Returns:

  • (String)


1654
1655
1656
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1654

def create_time
  @create_time
end

#deploymentGoogle::Apis::ContaineranalysisV1alpha1::Deployment

The period during which some deployable was active in a runtime. Corresponds to the JSON property deployment



1659
1660
1661
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1659

def deployment
  @deployment
end

#derived_imageGoogle::Apis::ContaineranalysisV1alpha1::Derived

Derived describes the derived image portion (Occurrence) of the DockerImage relationship. This image would be produced from a Dockerfile with FROM . Corresponds to the JSON property derivedImage



1666
1667
1668
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1666

def derived_image
  @derived_image
end

#discoveredGoogle::Apis::ContaineranalysisV1alpha1::Discovered

Provides information about the scan status of a discovered resource. Corresponds to the JSON property discovered



1671
1672
1673
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1671

def discovered
  @discovered
end

#installationGoogle::Apis::ContaineranalysisV1alpha1::Installation

This represents how a particular software package may be installed on a system. Corresponds to the JSON property installation



1677
1678
1679
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1677

def installation
  @installation
end

#kindString

Output only. This explicitly denotes which of the Occurrence details are specified. This field can be used as a filter in list requests. Corresponds to the JSON property kind

Returns:

  • (String)


1683
1684
1685
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1683

def kind
  @kind
end

#nameString

Output only. The name of the Occurrence in the form "projects/project_id/occurrences/OCCURRENCE_ID" Corresponds to the JSON property name

Returns:

  • (String)


1689
1690
1691
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1689

def name
  @name
end

#note_nameString

An analysis note associated with this image, in the form "providers/provider_id/notes/NOTE_ID" This field can be used as a filter in list requests. Corresponds to the JSON property noteName

Returns:

  • (String)


1696
1697
1698
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1696

def note_name
  @note_name
end

#remediationString

A description of actions that can be taken to remedy the Note Corresponds to the JSON property remediation

Returns:

  • (String)


1701
1702
1703
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1701

def remediation
  @remediation
end

#resourceGoogle::Apis::ContaineranalysisV1alpha1::Resource

Resource is an entity that can have metadata. E.g., a Docker image. Corresponds to the JSON property resource



1706
1707
1708
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1706

def resource
  @resource
end

#resource_urlString

The unique URL of the image or the container for which the Occurrence applies. For example, https://gcr.io/project/image@sha256:foo This field can be used as a filter in list requests. Corresponds to the JSON property resourceUrl

Returns:

  • (String)


1713
1714
1715
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1713

def resource_url
  @resource_url
end

#update_timeString

Output only. The time this Occurrence was last updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


1718
1719
1720
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1718

def update_time
  @update_time
end

#upgradeGoogle::Apis::ContaineranalysisV1alpha1::UpgradeOccurrence

An Upgrade Occurrence represents that a specific resource_url could install a specific upgrade. This presence is supplied via local sources (i.e. it is present in the mirror and the running system has noticed its availability). Corresponds to the JSON property upgrade



1725
1726
1727
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1725

def upgrade
  @upgrade
end

#vulnerability_detailsGoogle::Apis::ContaineranalysisV1alpha1::VulnerabilityDetails

Used by Occurrence to point to where the vulnerability exists and how to fix it. Corresponds to the JSON property vulnerabilityDetails



1731
1732
1733
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1731

def vulnerability_details
  @vulnerability_details
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
# File 'generated/google/apis/containeranalysis_v1alpha1/classes.rb', line 1738

def update!(**args)
  @attestation = args[:attestation] if args.key?(:attestation)
  @build_details = args[:build_details] if args.key?(:build_details)
  @create_time = args[:create_time] if args.key?(:create_time)
  @deployment = args[:deployment] if args.key?(:deployment)
  @derived_image = args[:derived_image] if args.key?(:derived_image)
  @discovered = args[:discovered] if args.key?(:discovered)
  @installation = args[:installation] if args.key?(:installation)
  @kind = args[:kind] if args.key?(:kind)
  @name = args[:name] if args.key?(:name)
  @note_name = args[:note_name] if args.key?(:note_name)
  @remediation = args[:remediation] if args.key?(:remediation)
  @resource = args[:resource] if args.key?(:resource)
  @resource_url = args[:resource_url] if args.key?(:resource_url)
  @update_time = args[:update_time] if args.key?(:update_time)
  @upgrade = args[:upgrade] if args.key?(:upgrade)
  @vulnerability_details = args[:vulnerability_details] if args.key?(:vulnerability_details)
end