Class: Google::Apis::ContaineranalysisV1alpha1::Version
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContaineranalysisV1alpha1::Version
 
 
- 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
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/
Instance Attribute Summary collapse
- 
  
    
      #epoch  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Used to correct mistakes in the version numbering scheme.
 - 
  
    
      #inclusive  ⇒ Boolean 
    
    
      (also: #inclusive?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Whether this version is vulnerable, when defining the version bounds.
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Distinguish between sentinel MIN/MAX versions and normal versions.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The main part of the version name.
 - 
  
    
      #revision  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The iteration of the package build from the above version.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Version 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Version.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ Version
Returns a new instance of Version.
      7340 7341 7342  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 7340 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#epoch ⇒ Fixnum
Used to correct mistakes in the version numbering scheme.
Corresponds to the JSON property epoch
      7314 7315 7316  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 7314 def epoch @epoch end  | 
  
#inclusive ⇒ Boolean Also known as: inclusive?
Whether this version is vulnerable, when defining the version bounds. For
example, if the minimum version is 2.0, inclusive=true would say 2.0 is
vulnerable, while inclusive=false would say it's not
Corresponds to the JSON property inclusive
      7321 7322 7323  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 7321 def inclusive @inclusive end  | 
  
#kind ⇒ String
Distinguish between sentinel MIN/MAX versions and normal versions. If kind is
not NORMAL, then the other fields are ignored.
Corresponds to the JSON property kind
      7328 7329 7330  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 7328 def kind @kind end  | 
  
#name ⇒ String
The main part of the version name.
Corresponds to the JSON property name
      7333 7334 7335  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 7333 def name @name end  | 
  
#revision ⇒ String
The iteration of the package build from the above version.
Corresponds to the JSON property revision
      7338 7339 7340  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 7338 def revision @revision end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      7345 7346 7347 7348 7349 7350 7351  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 7345 def update!(**args) @epoch = args[:epoch] if args.key?(:epoch) @inclusive = args[:inclusive] if args.key?(:inclusive) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @revision = args[:revision] if args.key?(:revision) end  |