Class: Google::Apis::ContaineranalysisV1alpha1::Installation
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContaineranalysisV1alpha1::Installation
 
 
- 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 how a particular software package may be installed on a system.
Instance Attribute Summary collapse
- 
  
    
      #architecture  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #cpe_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #license  ⇒ Google::Apis::ContaineranalysisV1alpha1::License 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
License information.
 - 
  
    
      #location  ⇒ Array<Google::Apis::ContaineranalysisV1alpha1::Location> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
All of the places within the filesystem versions of this package have been found.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #package_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #version  ⇒ Google::Apis::ContaineranalysisV1alpha1::Version 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Version contains structured information about the version of the package.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Installation 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Installation.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ Installation
Returns a new instance of Installation.
      4612 4613 4614  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4612 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#architecture ⇒ String
Output only. The CPU architecture for which packages in this distribution
channel were built. Architecture will be blank for language packages.
Corresponds to the JSON property architecture
      4573 4574 4575  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4573 def architecture @architecture end  | 
  
#cpe_uri ⇒ String
Output only. The cpe_uri in CPE format
denoting the package manager version distributing a package. The cpe_uri will
be blank for language packages.
Corresponds to the JSON property cpeUri
      4580 4581 4582  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4580 def cpe_uri @cpe_uri end  | 
  
#license ⇒ Google::Apis::ContaineranalysisV1alpha1::License
License information.
Corresponds to the JSON property license
      4585 4586 4587  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4585 def license @license end  | 
  
#location ⇒ Array<Google::Apis::ContaineranalysisV1alpha1::Location>
All of the places within the filesystem versions of this package have been
found.
Corresponds to the JSON property location
      4591 4592 4593  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4591 def location @location end  | 
  
#name ⇒ String
Output only. The name of the installed package.
Corresponds to the JSON property name
      4596 4597 4598  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4596 def name @name end  | 
  
#package_type ⇒ String
Output only. The type of package; whether native or non native (e.g., ruby
gems, node.js packages, etc.).
Corresponds to the JSON property packageType
      4602 4603 4604  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4602 def package_type @package_type end  | 
  
#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 version
      4610 4611 4612  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4610 def version @version end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4617 4618 4619 4620 4621 4622 4623 4624 4625  | 
    
      # File 'lib/google/apis/containeranalysis_v1alpha1/classes.rb', line 4617 def update!(**args) @architecture = args[:architecture] if args.key?(:architecture) @cpe_uri = args[:cpe_uri] if args.key?(:cpe_uri) @license = args[:license] if args.key?(:license) @location = args[:location] if args.key?(:location) @name = args[:name] if args.key?(:name) @package_type = args[:package_type] if args.key?(:package_type) @version = args[:version] if args.key?(:version) end  |