Class: Google::Apis::OsconfigV1beta::ZypperSettings
- Inherits:
-
Object
- Object
- Google::Apis::OsconfigV1beta::ZypperSettings
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/osconfig_v1beta/classes.rb,
lib/google/apis/osconfig_v1beta/representations.rb,
lib/google/apis/osconfig_v1beta/representations.rb
Overview
Zypper patching is performed by running zypper patch. See also https://en.
opensuse.org/SDB:Zypper_manual.
Instance Attribute Summary collapse
-
#categories ⇒ Array<String>
Install only patches with these categories.
-
#excludes ⇒ Array<String>
List of patches to exclude from update.
-
#exclusive_patches ⇒ Array<String>
An exclusive list of patches to be updated.
-
#severities ⇒ Array<String>
Install only patches with these severities.
-
#with_optional ⇒ Boolean
(also: #with_optional?)
Adds the
--with-optionalflag tozypper patch. -
#with_update ⇒ Boolean
(also: #with_update?)
Adds the
--with-updateflag, tozypper patch.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ZypperSettings
constructor
A new instance of ZypperSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ZypperSettings
Returns a new instance of ZypperSettings.
2701 2702 2703 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 2701 def initialize(**args) update!(**args) end |
Instance Attribute Details
#categories ⇒ Array<String>
Install only patches with these categories. Common categories include security,
recommended, and feature.
Corresponds to the JSON property categories
2669 2670 2671 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 2669 def categories @categories end |
#excludes ⇒ Array<String>
List of patches to exclude from update.
Corresponds to the JSON property excludes
2674 2675 2676 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 2674 def excludes @excludes end |
#exclusive_patches ⇒ Array<String>
An exclusive list of patches to be updated. These are the only patches that
will be installed using 'zypper patch patch:' command. This field must not be
used with any other patch configuration fields.
Corresponds to the JSON property exclusivePatches
2681 2682 2683 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 2681 def exclusive_patches @exclusive_patches end |
#severities ⇒ Array<String>
Install only patches with these severities. Common severities include critical,
important, moderate, and low.
Corresponds to the JSON property severities
2687 2688 2689 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 2687 def severities @severities end |
#with_optional ⇒ Boolean Also known as: with_optional?
Adds the --with-optional flag to zypper patch.
Corresponds to the JSON property withOptional
2692 2693 2694 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 2692 def with_optional @with_optional end |
#with_update ⇒ Boolean Also known as: with_update?
Adds the --with-update flag, to zypper patch.
Corresponds to the JSON property withUpdate
2698 2699 2700 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 2698 def with_update @with_update end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2706 2707 2708 2709 2710 2711 2712 2713 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 2706 def update!(**args) @categories = args[:categories] if args.key?(:categories) @excludes = args[:excludes] if args.key?(:excludes) @exclusive_patches = args[:exclusive_patches] if args.key?(:exclusive_patches) @severities = args[:severities] if args.key?(:severities) @with_optional = args[:with_optional] if args.key?(:with_optional) @with_update = args[:with_update] if args.key?(:with_update) end |