Class: Google::Apis::ContaineranalysisV1beta1::Detail

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

Overview

Identifies all appearances of this vulnerability in the package for a specific distro/location. For example: glibc in cpe:/o:debian:debian_linux:8 for versions 2.1 - 2.2

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Detail

Returns a new instance of Detail.



3089
3090
3091
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3089

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

Instance Attribute Details

#cpe_uriString

Required. The CPE URI in cpe format in which the vulnerability manifests. Examples include distro or storage location for vulnerable jar. Corresponds to the JSON property cpeUri

Returns:

  • (String)


3027
3028
3029
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3027

def cpe_uri
  @cpe_uri
end

#descriptionString

A vendor-specific description of this note. Corresponds to the JSON property description

Returns:

  • (String)


3032
3033
3034
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3032

def description
  @description
end

#fixed_locationGoogle::Apis::ContaineranalysisV1beta1::VulnerabilityLocation

The location of the vulnerability. Corresponds to the JSON property fixedLocation



3037
3038
3039
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3037

def fixed_location
  @fixed_location
end

#is_obsoleteBoolean Also known as: is_obsolete?

Whether this detail is obsolete. Occurrences are expected not to point to obsolete details. Corresponds to the JSON property isObsolete

Returns:

  • (Boolean)


3043
3044
3045
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3043

def is_obsolete
  @is_obsolete
end

#max_affected_versionGoogle::Apis::ContaineranalysisV1beta1::Version

Version contains structured information about the version of a package. Corresponds to the JSON property maxAffectedVersion



3049
3050
3051
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3049

def max_affected_version
  @max_affected_version
end

#min_affected_versionGoogle::Apis::ContaineranalysisV1beta1::Version

Version contains structured information about the version of a package. Corresponds to the JSON property minAffectedVersion



3054
3055
3056
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3054

def min_affected_version
  @min_affected_version
end

#packageString

Required. The name of the package where the vulnerability was found. Corresponds to the JSON property package

Returns:

  • (String)


3059
3060
3061
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3059

def package
  @package
end

#package_typeString

The type of package; whether native or non native(ruby gems, node.js packages etc). Corresponds to the JSON property packageType

Returns:

  • (String)


3065
3066
3067
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3065

def package_type
  @package_type
end

#severity_nameString

The severity (eg: distro assigned severity) for this vulnerability. Corresponds to the JSON property severityName

Returns:

  • (String)


3070
3071
3072
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3070

def severity_name
  @severity_name
end

#sourceString

The source from which the information in this Detail was obtained. Corresponds to the JSON property source

Returns:

  • (String)


3075
3076
3077
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3075

def source
  @source
end

#source_update_timeString

The time this information was last changed at the source. This is an upstream timestamp from the underlying information source - e.g. Ubuntu security tracker. Corresponds to the JSON property sourceUpdateTime

Returns:

  • (String)


3082
3083
3084
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3082

def source_update_time
  @source_update_time
end

#vendorString

The name of the vendor of the product. Corresponds to the JSON property vendor

Returns:

  • (String)


3087
3088
3089
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3087

def vendor
  @vendor
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 3094

def update!(**args)
  @cpe_uri = args[:cpe_uri] if args.key?(:cpe_uri)
  @description = args[:description] if args.key?(:description)
  @fixed_location = args[:fixed_location] if args.key?(:fixed_location)
  @is_obsolete = args[:is_obsolete] if args.key?(:is_obsolete)
  @max_affected_version = args[:max_affected_version] if args.key?(:max_affected_version)
  @min_affected_version = args[:min_affected_version] if args.key?(:min_affected_version)
  @package = args[:package] if args.key?(:package)
  @package_type = args[:package_type] if args.key?(:package_type)
  @severity_name = args[:severity_name] if args.key?(:severity_name)
  @source = args[:source] if args.key?(:source)
  @source_update_time = args[:source_update_time] if args.key?(:source_update_time)
  @vendor = args[:vendor] if args.key?(:vendor)
end