Class: Google::Apis::ContaineranalysisV1::PackageNote

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PackageNote

Returns a new instance of PackageNote.



4795
4796
4797
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4795

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#architectureString

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

Returns:

  • (String)


4739
4740
4741
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4739

def architecture
  @architecture
end

#cpe_uriString

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

Returns:

  • (String)


4746
4747
4748
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4746

def cpe_uri
  @cpe_uri
end

#descriptionString

The description of this package. Corresponds to the JSON property description

Returns:

  • (String)


4751
4752
4753
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4751

def description
  @description
end

#digestArray<Google::Apis::ContaineranalysisV1::Digest>

Hash value, typically a file digest, that allows unique identification a specific package. Corresponds to the JSON property digest



4757
4758
4759
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4757

def digest
  @digest
end

#distributionArray<Google::Apis::ContaineranalysisV1::Distribution>

Deprecated. The various channels by which a package is distributed. Corresponds to the JSON property distribution



4762
4763
4764
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4762

def distribution
  @distribution
end

#licenseGoogle::Apis::ContaineranalysisV1::License

License information. Corresponds to the JSON property license



4767
4768
4769
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4767

def license
  @license
end

#maintainerString

A freeform text denoting the maintainer of this package. Corresponds to the JSON property maintainer

Returns:

  • (String)


4772
4773
4774
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4772

def maintainer
  @maintainer
end

#nameString

Required. Immutable. The name of the package. Corresponds to the JSON property name

Returns:

  • (String)


4777
4778
4779
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4777

def name
  @name
end

#package_typeString

The type of package; whether native or non native (e.g., ruby gems, node.js packages, etc.). Corresponds to the JSON property packageType

Returns:

  • (String)


4783
4784
4785
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4783

def package_type
  @package_type
end

#urlString

The homepage for this package. Corresponds to the JSON property url

Returns:

  • (String)


4788
4789
4790
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4788

def url
  @url
end

#versionGoogle::Apis::ContaineranalysisV1::Version

Version contains structured information about the version of a package. Corresponds to the JSON property version



4793
4794
4795
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4793

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
# File 'lib/google/apis/containeranalysis_v1/classes.rb', line 4800

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