Class: Google::Apis::ContaineranalysisV1::PackageNote
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1::PackageNote
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/containeranalysis_v1/classes.rb,
lib/google/apis/containeranalysis_v1/representations.rb,
lib/google/apis/containeranalysis_v1/representations.rb
Overview
PackageNote 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::ContaineranalysisV1::Digest>
Hash value, typically a file digest, that allows unique identification a specific package.
-
#distribution ⇒ Array<Google::Apis::ContaineranalysisV1::Distribution>
Deprecated.
-
#license ⇒ Google::Apis::ContaineranalysisV1::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::ContaineranalysisV1::Version
Version contains structured information about the version of a package.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PackageNote
constructor
A new instance of PackageNote.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PackageNote
Returns a new instance of PackageNote.
4949 4950 4951 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4949 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
4893 4894 4895 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4893 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
4900 4901 4902 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4900 def cpe_uri @cpe_uri end |
#description ⇒ String
The description of this package.
Corresponds to the JSON property description
4905 4906 4907 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4905 def description @description end |
#digest ⇒ Array<Google::Apis::ContaineranalysisV1::Digest>
Hash value, typically a file digest, that allows unique identification a
specific package.
Corresponds to the JSON property digest
4911 4912 4913 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4911 def digest @digest end |
#distribution ⇒ Array<Google::Apis::ContaineranalysisV1::Distribution>
Deprecated. The various channels by which a package is distributed.
Corresponds to the JSON property distribution
4916 4917 4918 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4916 def distribution @distribution end |
#license ⇒ Google::Apis::ContaineranalysisV1::License
License information.
Corresponds to the JSON property license
4921 4922 4923 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4921 def license @license end |
#maintainer ⇒ String
A freeform text denoting the maintainer of this package.
Corresponds to the JSON property maintainer
4926 4927 4928 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4926 def maintainer @maintainer end |
#name ⇒ String
Required. Immutable. The name of the package.
Corresponds to the JSON property name
4931 4932 4933 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4931 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
4937 4938 4939 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4937 def package_type @package_type end |
#url ⇒ String
The homepage for this package.
Corresponds to the JSON property url
4942 4943 4944 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4942 def url @url end |
#version ⇒ Google::Apis::ContaineranalysisV1::Version
Version contains structured information about the version of a package.
Corresponds to the JSON property version
4947 4948 4949 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4947 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 |
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4954 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 |