Class: Google::Apis::ContaineranalysisV1alpha1::UpgradeOccurrence
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContaineranalysisV1alpha1::UpgradeOccurrence
 
 
- 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
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).
Instance Attribute Summary collapse
- 
  
    
      #distribution  ⇒ Google::Apis::ContaineranalysisV1alpha1::UpgradeDistribution 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Upgrade Distribution represents metadata about the Upgrade for each operating system (CPE).
 - 
  
    
      #package  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required - The package this Upgrade is for.
 - 
  
    
      #parsed_version  ⇒ Google::Apis::ContaineranalysisV1alpha1::Version 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Version contains structured information about the version of the package.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ UpgradeOccurrence 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of UpgradeOccurrence.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ UpgradeOccurrence
Returns a new instance of UpgradeOccurrence.
      7292 7293 7294  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 7292 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#distribution ⇒ Google::Apis::ContaineranalysisV1alpha1::UpgradeDistribution
The Upgrade Distribution represents metadata about the Upgrade for each
operating system (CPE). Some distributions have additional metadata around
updates, classifying them into various categories and severities.
Corresponds to the JSON property distribution
      7277 7278 7279  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 7277 def distribution @distribution end  | 
  
#package ⇒ String
Required - The package this Upgrade is for.
Corresponds to the JSON property package
      7282 7283 7284  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 7282 def package @package end  | 
  
#parsed_version ⇒ Google::Apis::ContaineranalysisV1alpha1::Version
Version contains structured information about the version of the package. For
a discussion of this in Debian/Ubuntu: http://serverfault.com/questions/604541/
debian-packages-version-convention For a discussion of this in Redhat/Fedora/
Centos: http://blog.jasonantman.com/2014/07/how-yum-and-rpm-compare-versions/
Corresponds to the JSON property parsedVersion
      7290 7291 7292  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 7290 def parsed_version @parsed_version end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      7297 7298 7299 7300 7301  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 7297 def update!(**args) @distribution = args[:distribution] if args.key?(:distribution) @package = args[:package] if args.key?(:package) @parsed_version = args[:parsed_version] if args.key?(:parsed_version) end  |