Class: Google::Apis::OsconfigV1::PatchConfig

Inherits:
Object
  • Object
show all
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

Patch configuration specifications. Contains details on how to apply the patch( es) to a VM instance.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PatchConfig

Returns a new instance of PatchConfig.



1088
1089
1090
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1088

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

Instance Attribute Details

#aptGoogle::Apis::OsconfigV1::AptSettings

Apt patching is completed by executing apt-get update && apt-get upgrade. Additional options can be set to control how this is executed. Corresponds to the JSON property apt



1048
1049
1050
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1048

def apt
  @apt
end

#gooGoogle::Apis::OsconfigV1::GooSettings

Googet patching is performed by running googet update. Corresponds to the JSON property goo



1053
1054
1055
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1053

def goo
  @goo
end

#post_stepGoogle::Apis::OsconfigV1::ExecStep

A step that runs an executable for a PatchJob. Corresponds to the JSON property postStep



1058
1059
1060
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1058

def post_step
  @post_step
end

#pre_stepGoogle::Apis::OsconfigV1::ExecStep

A step that runs an executable for a PatchJob. Corresponds to the JSON property preStep



1063
1064
1065
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1063

def pre_step
  @pre_step
end

#reboot_configString

Post-patch reboot settings. Corresponds to the JSON property rebootConfig

Returns:

  • (String)


1068
1069
1070
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1068

def reboot_config
  @reboot_config
end

#windows_updateGoogle::Apis::OsconfigV1::WindowsUpdateSettings

Windows patching is performed using the Windows Update Agent. Corresponds to the JSON property windowsUpdate



1073
1074
1075
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1073

def windows_update
  @windows_update
end

#yumGoogle::Apis::OsconfigV1::YumSettings

Yum patching is performed by executing yum update. Additional options can be set to control how this is executed. Note that not all settings are supported on all platforms. Corresponds to the JSON property yum



1080
1081
1082
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1080

def yum
  @yum
end

#zypperGoogle::Apis::OsconfigV1::ZypperSettings

Zypper patching is performed by running zypper patch. See also https://en. opensuse.org/SDB:Zypper_manual. Corresponds to the JSON property zypper



1086
1087
1088
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1086

def zypper
  @zypper
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
# File 'lib/google/apis/osconfig_v1/classes.rb', line 1093

def update!(**args)
  @apt = args[:apt] if args.key?(:apt)
  @goo = args[:goo] if args.key?(:goo)
  @post_step = args[:post_step] if args.key?(:post_step)
  @pre_step = args[:pre_step] if args.key?(:pre_step)
  @reboot_config = args[:reboot_config] if args.key?(:reboot_config)
  @windows_update = args[:windows_update] if args.key?(:windows_update)
  @yum = args[:yum] if args.key?(:yum)
  @zypper = args[:zypper] if args.key?(:zypper)
end