Class: Google::Apis::ContaineranalysisV1beta1::Package
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1beta1::Package
- 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
Package represents a particular package version.
Instance Attribute Summary collapse
-
#architecture ⇒ String
The CPU architecture for which packages in this distribution channel were built.
-
#cpe_uri ⇒ String
The cpe_uri in CPE format denoting the package manager version distributing a package.
-
#description ⇒ String
The description of this package.
-
#digest ⇒ Array<Google::Apis::ContaineranalysisV1beta1::Digest>
Hash value, typically a file digest, that allows unique identification a specific package.
-
#distribution ⇒ Array<Google::Apis::ContaineranalysisV1beta1::Distribution>
The various channels by which a package is distributed.
-
#license ⇒ Google::Apis::ContaineranalysisV1beta1::License
License information.
-
#maintainer ⇒ String
A freeform text denoting the maintainer of this package.
-
#name ⇒ String
Required.
-
#package_type ⇒ String
The type of package; whether native or non native (e.g., ruby gems, node.js packages, etc.).
-
#url ⇒ String
The homepage for this package.
-
#version ⇒ Google::Apis::ContaineranalysisV1beta1::Version
Version contains structured information about the version of a package.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Package
constructor
A new instance of Package.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Package
Returns a new instance of Package.
5034 5035 5036 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 5034 def initialize(**args) update!(**args) end |
Instance Attribute Details
#architecture ⇒ String
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
4978 4979 4980 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 4978 def architecture @architecture end |
#cpe_uri ⇒ String
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
4985 4986 4987 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 4985 def cpe_uri @cpe_uri end |
#description ⇒ String
The description of this package.
Corresponds to the JSON property description
4990 4991 4992 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 4990 def description @description end |
#digest ⇒ Array<Google::Apis::ContaineranalysisV1beta1::Digest>
Hash value, typically a file digest, that allows unique identification a
specific package.
Corresponds to the JSON property digest
4996 4997 4998 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 4996 def digest @digest end |
#distribution ⇒ Array<Google::Apis::ContaineranalysisV1beta1::Distribution>
The various channels by which a package is distributed.
Corresponds to the JSON property distribution
5001 5002 5003 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 5001 def distribution @distribution end |
#license ⇒ Google::Apis::ContaineranalysisV1beta1::License
License information.
Corresponds to the JSON property license
5006 5007 5008 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 5006 def license @license end |
#maintainer ⇒ String
A freeform text denoting the maintainer of this package.
Corresponds to the JSON property maintainer
5011 5012 5013 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 5011 def maintainer @maintainer end |
#name ⇒ String
Required. Immutable. The name of the package.
Corresponds to the JSON property name
5016 5017 5018 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 5016 def name @name end |
#package_type ⇒ String
The type of package; whether native or non native (e.g., ruby gems, node.js
packages, etc.).
Corresponds to the JSON property packageType
5022 5023 5024 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 5022 def package_type @package_type end |
#url ⇒ String
The homepage for this package.
Corresponds to the JSON property url
5027 5028 5029 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 5027 def url @url end |
#version ⇒ Google::Apis::ContaineranalysisV1beta1::Version
Version contains structured information about the version of a package.
Corresponds to the JSON property version
5032 5033 5034 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 5032 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 5039 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) @digest = args[:digest] if args.key?(:digest) @distribution = args[:distribution] if args.key?(:distribution) @license = args[:license] if args.key?(:license) @maintainer = args[:maintainer] if args.key?(:maintainer) @name = args[:name] if args.key?(:name) @package_type = args[:package_type] if args.key?(:package_type) @url = args[:url] if args.key?(:url) @version = args[:version] if args.key?(:version) end |