Class: Google::Apis::CloudassetV1::VersionedPackage
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1::VersionedPackage
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudasset_v1/classes.rb,
lib/google/apis/cloudasset_v1/representations.rb,
lib/google/apis/cloudasset_v1/representations.rb
Overview
Information related to the a standard versioned package. This includes package info for APT, Yum, Zypper, and Googet package managers.
Instance Attribute Summary collapse
-
#architecture ⇒ String
The system architecture this package is intended for.
-
#package_name ⇒ String
The name of the package.
-
#version ⇒ String
The version of the package.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VersionedPackage
constructor
A new instance of VersionedPackage.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ VersionedPackage
Returns a new instance of VersionedPackage.
6198 6199 6200 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 6198 def initialize(**args) update!(**args) end |
Instance Attribute Details
#architecture ⇒ String
The system architecture this package is intended for.
Corresponds to the JSON property architecture
6186 6187 6188 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 6186 def architecture @architecture end |
#package_name ⇒ String
The name of the package.
Corresponds to the JSON property packageName
6191 6192 6193 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 6191 def package_name @package_name end |
#version ⇒ String
The version of the package.
Corresponds to the JSON property version
6196 6197 6198 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 6196 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6203 6204 6205 6206 6207 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 6203 def update!(**args) @architecture = args[:architecture] if args.key?(:architecture) @package_name = args[:package_name] if args.key?(:package_name) @version = args[:version] if args.key?(:version) end |