google-apis-osconfig_v1beta 0.30.0 → 0.31.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f1242c12f13c306f0afe912c9633cbe85c0fa35e87dbdefb9a9533a82cd0aa49
4
- data.tar.gz: 26c4dcf95f5df5eea2882918870eae0dd0714f0cf80f8c3a11ba12cf6e4a4c2d
3
+ metadata.gz: 41f45a563c59031d9969b1c819dbe7d5ab09a9fb45808710a3ae1394b494aad6
4
+ data.tar.gz: 46c603a0f0c491243d70c51a278b48698ae8ce47186b9b6021e4822f878ace2a
5
5
  SHA512:
6
- metadata.gz: dccfe5644c93d150e3cc1abaad42727678b11563f1deec599d448ad6068a9aa831b4b1a84ddcda6d359054b24ba75fa301948a9171994dd74895d716296f7ec1
7
- data.tar.gz: e9a7c96645337cb803b392c5610a085fa7813764c106611480b3387b3ad2dd37d8d6588d4af560a669f3b7824aab466718258d733c080384a30f2c15be1b4a5b
6
+ metadata.gz: 7ae5cd754998381736db44b701dbf37de7a642fab95d3a85f00ddeda303ca42b1b64cdca1ed8d741649abaf77b539019a236ba529e20077bd1f26368846b6df1
7
+ data.tar.gz: 67adcd5464dd1281a39bff996265ffb4542cc085958346b7f7f3de4a4c1b5eb30035c05078ccc6dfb62af912037ca01ed0e0ac6576db312d684a42c3654dbe4b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-osconfig_v1beta
2
2
 
3
+ ### v0.31.0 (2025-11-09)
4
+
5
+ * Regenerated from discovery document revision 20251030
6
+ * Regenerated using generator version 0.18.0
7
+
3
8
  ### v0.30.0 (2025-05-18)
4
9
 
5
10
  * Regenerated from discovery document revision 20250511
@@ -1218,6 +1218,21 @@ module Google
1218
1218
  # @return [String]
1219
1219
  attr_accessor :reboot_config
1220
1220
 
1221
+ # Optional. Enables enhanced reporting for the patch job: 1. Allows the patch
1222
+ # job to skip unpatchable instances, reporting them as SKIPPED. An instance can
1223
+ # be unpatchable for two reasons: a. The instance runs Container-Optimized OS (
1224
+ # COS), which cannot be patched. b. The patch job's configuration prohibits
1225
+ # patching on Managed Instance Groups (MIGs) through the PatchConfig.
1226
+ # migInstancesAllowed field, and the instance is part of one. 2. The system
1227
+ # reports the patch job as SUCCEEDED if it completes without errors, regardless
1228
+ # of whether any instances were SKIPPED. 3. The system reports the patch job as
1229
+ # COMPLETED_WITH_INACTIVE_VMS if it completes without errors, but some instances
1230
+ # were INACTIVE and therefore not patched.
1231
+ # Corresponds to the JSON property `skipUnpatchableVms`
1232
+ # @return [Boolean]
1233
+ attr_accessor :skip_unpatchable_vms
1234
+ alias_method :skip_unpatchable_vms?, :skip_unpatchable_vms
1235
+
1221
1236
  # Windows patching is performed using the Windows Update Agent.
1222
1237
  # Corresponds to the JSON property `windowsUpdate`
1223
1238
  # @return [Google::Apis::OsconfigV1beta::WindowsUpdateSettings]
@@ -1248,6 +1263,7 @@ module Google
1248
1263
  @post_step = args[:post_step] if args.key?(:post_step)
1249
1264
  @pre_step = args[:pre_step] if args.key?(:pre_step)
1250
1265
  @reboot_config = args[:reboot_config] if args.key?(:reboot_config)
1266
+ @skip_unpatchable_vms = args[:skip_unpatchable_vms] if args.key?(:skip_unpatchable_vms)
1251
1267
  @windows_update = args[:windows_update] if args.key?(:windows_update)
1252
1268
  @yum = args[:yum] if args.key?(:yum)
1253
1269
  @zypper = args[:zypper] if args.key?(:zypper)
@@ -1660,6 +1676,11 @@ module Google
1660
1676
  # @return [Fixnum]
1661
1677
  attr_accessor :rebooting_instance_count
1662
1678
 
1679
+ # Number of instances that were skipped during patching.
1680
+ # Corresponds to the JSON property `skippedInstanceCount`
1681
+ # @return [Fixnum]
1682
+ attr_accessor :skipped_instance_count
1683
+
1663
1684
  # Number of instances that have started.
1664
1685
  # Corresponds to the JSON property `startedInstanceCount`
1665
1686
  # @return [Fixnum]
@@ -1697,6 +1718,7 @@ module Google
1697
1718
  @post_patch_step_instance_count = args[:post_patch_step_instance_count] if args.key?(:post_patch_step_instance_count)
1698
1719
  @pre_patch_step_instance_count = args[:pre_patch_step_instance_count] if args.key?(:pre_patch_step_instance_count)
1699
1720
  @rebooting_instance_count = args[:rebooting_instance_count] if args.key?(:rebooting_instance_count)
1721
+ @skipped_instance_count = args[:skipped_instance_count] if args.key?(:skipped_instance_count)
1700
1722
  @started_instance_count = args[:started_instance_count] if args.key?(:started_instance_count)
1701
1723
  @succeeded_instance_count = args[:succeeded_instance_count] if args.key?(:succeeded_instance_count)
1702
1724
  @succeeded_reboot_required_instance_count = args[:succeeded_reboot_required_instance_count] if args.key?(:succeeded_reboot_required_instance_count)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module OsconfigV1beta
18
18
  # Version of the google-apis-osconfig_v1beta gem
19
- GEM_VERSION = "0.30.0"
19
+ GEM_VERSION = "0.31.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250511"
25
+ REVISION = "20251030"
26
26
  end
27
27
  end
28
28
  end
@@ -756,6 +756,7 @@ module Google
756
756
  property :pre_step, as: 'preStep', class: Google::Apis::OsconfigV1beta::ExecStep, decorator: Google::Apis::OsconfigV1beta::ExecStep::Representation
757
757
 
758
758
  property :reboot_config, as: 'rebootConfig'
759
+ property :skip_unpatchable_vms, as: 'skipUnpatchableVms'
759
760
  property :windows_update, as: 'windowsUpdate', class: Google::Apis::OsconfigV1beta::WindowsUpdateSettings, decorator: Google::Apis::OsconfigV1beta::WindowsUpdateSettings::Representation
760
761
 
761
762
  property :yum, as: 'yum', class: Google::Apis::OsconfigV1beta::YumSettings, decorator: Google::Apis::OsconfigV1beta::YumSettings::Representation
@@ -857,6 +858,7 @@ module Google
857
858
  property :post_patch_step_instance_count, :numeric_string => true, as: 'postPatchStepInstanceCount'
858
859
  property :pre_patch_step_instance_count, :numeric_string => true, as: 'prePatchStepInstanceCount'
859
860
  property :rebooting_instance_count, :numeric_string => true, as: 'rebootingInstanceCount'
861
+ property :skipped_instance_count, :numeric_string => true, as: 'skippedInstanceCount'
860
862
  property :started_instance_count, :numeric_string => true, as: 'startedInstanceCount'
861
863
  property :succeeded_instance_count, :numeric_string => true, as: 'succeededInstanceCount'
862
864
  property :succeeded_reboot_required_instance_count, :numeric_string => true, as: 'succeededRebootRequiredInstanceCount'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-osconfig_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.30.0
4
+ version: 0.31.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-osconfig_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v1beta/v0.30.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v1beta/v0.31.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-osconfig_v1beta
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for OS Config API V1beta
79
79
  test_files: []