Class: Google::Apis::OsconfigV1beta::WindowsUpdateSettings
- Inherits:
-
Object
- Object
- Google::Apis::OsconfigV1beta::WindowsUpdateSettings
- 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
Windows patching is performed using the Windows Update Agent.
Instance Attribute Summary collapse
-
#classifications ⇒ Array<String>
Only apply updates of these windows update classifications.
-
#excludes ⇒ Array<String>
List of KBs to exclude from update.
-
#exclusive_patches ⇒ Array<String>
An exclusive list of kbs to be updated.
Instance Method Summary collapse
-
#initialize(**args) ⇒ WindowsUpdateSettings
constructor
A new instance of WindowsUpdateSettings.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ WindowsUpdateSettings
Returns a new instance of WindowsUpdateSettings.
2249 2250 2251 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 2249 def initialize(**args) update!(**args) end |
Instance Attribute Details
#classifications ⇒ Array<String>
Only apply updates of these windows update classifications. If empty, all
updates are applied.
Corresponds to the JSON property classifications
2236 2237 2238 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 2236 def classifications @classifications end |
#excludes ⇒ Array<String>
List of KBs to exclude from update.
Corresponds to the JSON property excludes
2241 2242 2243 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 2241 def excludes @excludes end |
#exclusive_patches ⇒ Array<String>
An exclusive list of kbs to be updated. These are the only patches that will
be updated. This field must not be used with other patch configurations.
Corresponds to the JSON property exclusivePatches
2247 2248 2249 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 2247 def exclusive_patches @exclusive_patches end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2254 2255 2256 2257 2258 |
# File 'lib/google/apis/osconfig_v1beta/classes.rb', line 2254 def update!(**args) @classifications = args[:classifications] if args.key?(:classifications) @excludes = args[:excludes] if args.key?(:excludes) @exclusive_patches = args[:exclusive_patches] if args.key?(:exclusive_patches) end |