Class: Google::Apis::OsconfigV1::OsPolicyResourcePackageResourceApt
- Inherits:
-
Object
- Object
- Google::Apis::OsconfigV1::OsPolicyResourcePackageResourceApt
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/osconfig_v1/classes.rb,
lib/google/apis/osconfig_v1/representations.rb,
lib/google/apis/osconfig_v1/representations.rb
Overview
A package managed by APT. - install: apt-get update && apt-get -y install [
name]
- remove: apt-get -y remove [name]
Instance Attribute Summary collapse
-
#name ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OsPolicyResourcePackageResourceApt
constructor
A new instance of OsPolicyResourcePackageResourceApt.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OsPolicyResourcePackageResourceApt
Returns a new instance of OsPolicyResourcePackageResourceApt.
2265 2266 2267 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 2265 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Required. Package name.
Corresponds to the JSON property name
2263 2264 2265 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 2263 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2270 2271 2272 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 2270 def update!(**args) @name = args[:name] if args.key?(:name) end |