class Google::Apis::ContaineranalysisV1::Occurrence

An instance of an analysis type that has been found on a resource.

Attributes

attestation[RW]

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 authority to which this attestation is attached is primarily useful for lookup (how to find this attestation if you already know the authority and artifact to be verified) and intent (for which authority this attestation was intended to sign. Corresponds to the JSON property ‘attestation` @return [Google::Apis::ContaineranalysisV1::AttestationOccurrence]

build[RW]

Details of a build occurrence. Corresponds to the JSON property ‘build` @return [Google::Apis::ContaineranalysisV1::BuildOccurrence]

compliance[RW]

An indication that the compliance checks in the associated ComplianceNote were not satisfied for particular resources or a specified reason. Corresponds to the JSON property ‘compliance` @return [Google::Apis::ContaineranalysisV1::ComplianceOccurrence]

create_time[RW]

Output only. The time this occurrence was created. Corresponds to the JSON property ‘createTime` @return [String]

deployment[RW]

The period during which some deployable was active in a runtime. Corresponds to the JSON property ‘deployment` @return [Google::Apis::ContaineranalysisV1::DeploymentOccurrence]

discovery[RW]

Provides information about the analysis status of a discovered resource. Corresponds to the JSON property ‘discovery` @return [Google::Apis::ContaineranalysisV1::DiscoveryOccurrence]

dsse_attestation[RW]

Deprecated. Prefer to use a regular Occurrence, and populate the Envelope at the top level of the Occurrence. Corresponds to the JSON property ‘dsseAttestation` @return [Google::Apis::ContaineranalysisV1::DsseAttestationOccurrence]

envelope[RW]

MUST match github.com/secure-systems-lab/dsse/blob/master/envelope. proto. An authenticated message of arbitrary type. Corresponds to the JSON property ‘envelope` @return [Google::Apis::ContaineranalysisV1::Envelope]

image[RW]

Details of the derived image portion of the DockerImage relationship. This image would be produced from a Dockerfile with FROM . Corresponds to the JSON property ‘image` @return [Google::Apis::ContaineranalysisV1::ImageOccurrence]

kind[RW]

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` @return [String]

name[RW]

Output only. The name of the occurrence in the form of ‘projects// occurrences/`. Corresponds to the JSON property `name` @return [String]

note_name[RW]

Required. Immutable. The analysis note associated with this occurrence, in the form of ‘projects//notes/`. This field can be used as a filter in list requests. Corresponds to the JSON property `noteName` @return [String]

package[RW]

Details on how a particular software package was installed on a system. Corresponds to the JSON property ‘package` @return [Google::Apis::ContaineranalysisV1::PackageOccurrence]

remediation[RW]

A description of actions that can be taken to remedy the note. Corresponds to the JSON property ‘remediation` @return [String]

resource_uri[RW]

Required. Immutable. A URI that represents the resource for which the occurrence applies. For example, ‘gcr.io/project/image@sha256:123abc` for a Docker image. Corresponds to the JSON property `resourceUri` @return [String]

update_time[RW]

Output only. The time this occurrence was last updated. Corresponds to the JSON property ‘updateTime` @return [String]

upgrade[RW]

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). For Windows, both distribution and windows_update contain information for the Windows update. Corresponds to the JSON property ‘upgrade` @return [Google::Apis::ContaineranalysisV1::UpgradeOccurrence]

vulnerability[RW]

An occurrence of a severity vulnerability on a resource. Corresponds to the JSON property ‘vulnerability` @return [Google::Apis::ContaineranalysisV1::VulnerabilityOccurrence]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/containeranalysis_v1/classes.rb, line 3717
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/containeranalysis_v1/classes.rb, line 3722
def update!(**args)
  @attestation = args[:attestation] if args.key?(:attestation)
  @build = args[:build] if args.key?(:build)
  @compliance = args[:compliance] if args.key?(:compliance)
  @create_time = args[:create_time] if args.key?(:create_time)
  @deployment = args[:deployment] if args.key?(:deployment)
  @discovery = args[:discovery] if args.key?(:discovery)
  @dsse_attestation = args[:dsse_attestation] if args.key?(:dsse_attestation)
  @envelope = args[:envelope] if args.key?(:envelope)
  @image = args[:image] if args.key?(:image)
  @kind = args[:kind] if args.key?(:kind)
  @name = args[:name] if args.key?(:name)
  @note_name = args[:note_name] if args.key?(:note_name)
  @package = args[:package] if args.key?(:package)
  @remediation = args[:remediation] if args.key?(:remediation)
  @resource_uri = args[:resource_uri] if args.key?(:resource_uri)
  @update_time = args[:update_time] if args.key?(:update_time)
  @upgrade = args[:upgrade] if args.key?(:upgrade)
  @vulnerability = args[:vulnerability] if args.key?(:vulnerability)
end