Class: Google::Apis::OsconfigV1beta::WindowsUpdateSettings

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/osconfig_v1beta/classes.rb,
generated/google/apis/osconfig_v1beta/representations.rb,
generated/google/apis/osconfig_v1beta/representations.rb

Overview

Windows patching is performed using the Windows Update Agent.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ WindowsUpdateSettings

Returns a new instance of WindowsUpdateSettings.



2160
2161
2162
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 2160

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

Instance Attribute Details

#classificationsArray<String>

Only apply updates of these windows update classifications. If empty, all updates are applied. Corresponds to the JSON property classifications

Returns:

  • (Array<String>)


2146
2147
2148
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 2146

def classifications
  @classifications
end

#excludesArray<String>

List of KBs to exclude from update. Corresponds to the JSON property excludes

Returns:

  • (Array<String>)


2151
2152
2153
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 2151

def excludes
  @excludes
end

#exclusive_patchesArray<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

Returns:

  • (Array<String>)


2158
2159
2160
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 2158

def exclusive_patches
  @exclusive_patches
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2165
2166
2167
2168
2169
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 2165

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