google-apis-osconfig_v1 0.49.0 → 0.51.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: 1768f2453b5b3ba5e52b38a787943ce7f39846df88a94deaf9ae9648236006a2
4
- data.tar.gz: 969bc68276ee2a74b850f58306405a688993929b34a199455c4a20abdf661c6d
3
+ metadata.gz: 0de3bc06380d65c1648bf7afff77054f0c6a5d5c2eb3820fb6279391abff16b9
4
+ data.tar.gz: a466b820368c17bc929c5d2595ef931d6e90c1b8bf915e845bf925bc497f9484
5
5
  SHA512:
6
- metadata.gz: 2b2d2e29c9f86f648cc04bbe3fc200836877dc192382de64f786e17ca9b29fbd64ba0410d87259b98cabe41e6b3e7400d5e78bf473611e9c70b655c3374dd0fc
7
- data.tar.gz: e4746e46a42af1688e7ef239577d2c5bd661a26dcfcaccb49351fa56cd342df9ba7813e531478c602d7120cc9e2f32009fbb6276cd8fe5242611fbeddce8a4ad
6
+ metadata.gz: 5cc0959a756887c7ec970c2792ebb04e632907cc1e919c6141914fc5bea3f974d8dc1e8ba361b96253f57c34189613a9404d4c9806c88bd6412c9bacbd063ed9
7
+ data.tar.gz: 2f8cb7053eadfbd4fb841bec5a93a46ce1d5635566beee24aaf89c12460aa471ae9d918631fd127d1b265b75ab146b64f65a1476dbfc52478bc4a3ae0ca779d0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-osconfig_v1
2
2
 
3
+ ### v0.51.0 (2025-11-23)
4
+
5
+ * Regenerated from discovery document revision 20251117
6
+
7
+ ### v0.50.0 (2025-11-09)
8
+
9
+ * Regenerated from discovery document revision 20251030
10
+
3
11
  ### v0.49.0 (2025-08-03)
4
12
 
5
13
  * Regenerated from discovery document revision 20250727
@@ -2809,6 +2809,21 @@ module Google
2809
2809
  # @return [String]
2810
2810
  attr_accessor :reboot_config
2811
2811
 
2812
+ # Optional. Enables enhanced reporting for the patch job: 1. Allows the patch
2813
+ # job to skip unpatchable instances, reporting them as `SKIPPED`. An instance
2814
+ # can be unpatchable for two reasons: 1. The instance runs Container-Optimized
2815
+ # OS (COS), which cannot be patched. 2. The instance is part of a managed
2816
+ # instance group (MIG), and patching MIG instances is disabled in the patch job'
2817
+ # s configuration (PatchConfig.migInstancesAllowed is `false`). 2. Reports the
2818
+ # patch job as `SUCCEEDED` if it completes without errors, even if some
2819
+ # instances were `SKIPPED`. 3. Reports the patch job as `
2820
+ # COMPLETED_WITH_INACTIVE_VMS` if it completes without errors, but some
2821
+ # instances were `INACTIVE` and were not patched.
2822
+ # Corresponds to the JSON property `skipUnpatchableVms`
2823
+ # @return [Boolean]
2824
+ attr_accessor :skip_unpatchable_vms
2825
+ alias_method :skip_unpatchable_vms?, :skip_unpatchable_vms
2826
+
2812
2827
  # Windows patching is performed using the Windows Update Agent.
2813
2828
  # Corresponds to the JSON property `windowsUpdate`
2814
2829
  # @return [Google::Apis::OsconfigV1::WindowsUpdateSettings]
@@ -2839,6 +2854,7 @@ module Google
2839
2854
  @post_step = args[:post_step] if args.key?(:post_step)
2840
2855
  @pre_step = args[:pre_step] if args.key?(:pre_step)
2841
2856
  @reboot_config = args[:reboot_config] if args.key?(:reboot_config)
2857
+ @skip_unpatchable_vms = args[:skip_unpatchable_vms] if args.key?(:skip_unpatchable_vms)
2842
2858
  @windows_update = args[:windows_update] if args.key?(:windows_update)
2843
2859
  @yum = args[:yum] if args.key?(:yum)
2844
2860
  @zypper = args[:zypper] if args.key?(:zypper)
@@ -3255,6 +3271,11 @@ module Google
3255
3271
  # @return [Fixnum]
3256
3272
  attr_accessor :rebooting_instance_count
3257
3273
 
3274
+ # Number of instances that were skipped during patching.
3275
+ # Corresponds to the JSON property `skippedInstanceCount`
3276
+ # @return [Fixnum]
3277
+ attr_accessor :skipped_instance_count
3278
+
3258
3279
  # Number of instances that have started.
3259
3280
  # Corresponds to the JSON property `startedInstanceCount`
3260
3281
  # @return [Fixnum]
@@ -3292,6 +3313,7 @@ module Google
3292
3313
  @post_patch_step_instance_count = args[:post_patch_step_instance_count] if args.key?(:post_patch_step_instance_count)
3293
3314
  @pre_patch_step_instance_count = args[:pre_patch_step_instance_count] if args.key?(:pre_patch_step_instance_count)
3294
3315
  @rebooting_instance_count = args[:rebooting_instance_count] if args.key?(:rebooting_instance_count)
3316
+ @skipped_instance_count = args[:skipped_instance_count] if args.key?(:skipped_instance_count)
3295
3317
  @started_instance_count = args[:started_instance_count] if args.key?(:started_instance_count)
3296
3318
  @succeeded_instance_count = args[:succeeded_instance_count] if args.key?(:succeeded_instance_count)
3297
3319
  @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 OsconfigV1
18
18
  # Version of the google-apis-osconfig_v1 gem
19
- GEM_VERSION = "0.49.0"
19
+ GEM_VERSION = "0.51.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250727"
25
+ REVISION = "20251117"
26
26
  end
27
27
  end
28
28
  end
@@ -1362,6 +1362,7 @@ module Google
1362
1362
  property :pre_step, as: 'preStep', class: Google::Apis::OsconfigV1::ExecStep, decorator: Google::Apis::OsconfigV1::ExecStep::Representation
1363
1363
 
1364
1364
  property :reboot_config, as: 'rebootConfig'
1365
+ property :skip_unpatchable_vms, as: 'skipUnpatchableVms'
1365
1366
  property :windows_update, as: 'windowsUpdate', class: Google::Apis::OsconfigV1::WindowsUpdateSettings, decorator: Google::Apis::OsconfigV1::WindowsUpdateSettings::Representation
1366
1367
 
1367
1368
  property :yum, as: 'yum', class: Google::Apis::OsconfigV1::YumSettings, decorator: Google::Apis::OsconfigV1::YumSettings::Representation
@@ -1463,6 +1464,7 @@ module Google
1463
1464
  property :post_patch_step_instance_count, :numeric_string => true, as: 'postPatchStepInstanceCount'
1464
1465
  property :pre_patch_step_instance_count, :numeric_string => true, as: 'prePatchStepInstanceCount'
1465
1466
  property :rebooting_instance_count, :numeric_string => true, as: 'rebootingInstanceCount'
1467
+ property :skipped_instance_count, :numeric_string => true, as: 'skippedInstanceCount'
1466
1468
  property :started_instance_count, :numeric_string => true, as: 'startedInstanceCount'
1467
1469
  property :succeeded_instance_count, :numeric_string => true, as: 'succeededInstanceCount'
1468
1470
  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_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.49.0
4
+ version: 0.51.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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v1/v0.49.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v1/v0.51.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-osconfig_v1
62
62
  rdoc_options: []
63
63
  require_paths: