Class: Google::Apis::ContaineranalysisV1alpha1::Distribution
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContaineranalysisV1alpha1::Distribution
 
 
- 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
This represents a particular channel of distribution for a given package. e.g. Debian's jessie-backports dpkg mirror
Instance Attribute Summary collapse
- 
  
    
      #architecture  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The CPU architecture for which packages in this distribution channel were built Corresponds to the JSON property
architecture. - 
  
    
      #cpe_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The cpe_uri in cpe format denoting the package manager version distributing a package.
 - 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The distribution channel-specific description of this package.
 - 
  
    
      #latest_version  ⇒ Google::Apis::ContaineranalysisV1alpha1::Version 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Version contains structured information about the version of the package.
 - 
  
    
      #maintainer  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A freeform string denoting the maintainer of this package.
 - 
  
    
      #url  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The distribution channel-specific homepage for this package.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Distribution 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Distribution.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ Distribution
Returns a new instance of Distribution.
      3447 3448 3449  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3447 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#architecture ⇒ String
The CPU architecture for which packages in this distribution channel were
built
Corresponds to the JSON property architecture
      3416 3417 3418  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3416 def architecture @architecture end  | 
  
#cpe_uri ⇒ String
The cpe_uri in cpe format denoting the
package manager version distributing a package.
Corresponds to the JSON property cpeUri
      3422 3423 3424  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3422 def cpe_uri @cpe_uri end  | 
  
#description ⇒ String
The distribution channel-specific description of this package.
Corresponds to the JSON property description
      3427 3428 3429  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3427 def description @description end  | 
  
#latest_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 latestVersion
      3435 3436 3437  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3435 def latest_version @latest_version end  | 
  
#maintainer ⇒ String
A freeform string denoting the maintainer of this package.
Corresponds to the JSON property maintainer
      3440 3441 3442  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3440 def maintainer @maintainer end  | 
  
#url ⇒ String
The distribution channel-specific homepage for this package.
Corresponds to the JSON property url
      3445 3446 3447  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3445 def url @url end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3452 3453 3454 3455 3456 3457 3458 3459  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 3452 def update!(**args) @architecture = args[:architecture] if args.key?(:architecture) @cpe_uri = args[:cpe_uri] if args.key?(:cpe_uri) @description = args[:description] if args.key?(:description) @latest_version = args[:latest_version] if args.key?(:latest_version) @maintainer = args[:maintainer] if args.key?(:maintainer) @url = args[:url] if args.key?(:url) end  |