google-apis-osconfig_v1beta 0.30.0 → 0.32.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 33636bc7af990edb3ba2765b215fd357063b3ccbe5238e7bba865a4de7adfd52
|
|
4
|
+
data.tar.gz: 1fa884f4bedb2625067aaf41c864606412faef091cf0a225ce90f625f7d36003
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5e0c9ad500fdc8401642bad37ea29196aa418aa0ae49e54c32ba30782a300d87b5414e388c3c119a9025884d0f1f3ca33c5c125c8a1f932735ba26ad30716430
|
|
7
|
+
data.tar.gz: f37e6734f49cfd345f17effdcf2af361d0094d62b1af671b256c36c296771349c55ed3f5ea4130381c909fa60854a111dd9e1f1d4610da96b8af504e19e4e6f2
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-osconfig_v1beta
|
|
2
2
|
|
|
3
|
+
### v0.32.0 (2025-11-23)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251117
|
|
6
|
+
|
|
7
|
+
### v0.31.0 (2025-11-09)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251030
|
|
10
|
+
* Regenerated using generator version 0.18.0
|
|
11
|
+
|
|
3
12
|
### v0.30.0 (2025-05-18)
|
|
4
13
|
|
|
5
14
|
* 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
|
|
1223
|
+
# can be unpatchable for two reasons: 1. The instance runs Container-Optimized
|
|
1224
|
+
# OS (COS), which cannot be patched. 2. The instance is part of a managed
|
|
1225
|
+
# instance group (MIG), and patching MIG instances is disabled in the patch job'
|
|
1226
|
+
# s configuration (PatchConfig.migInstancesAllowed is `false`). 2. Reports the
|
|
1227
|
+
# patch job as `SUCCEEDED` if it completes without errors, even if some
|
|
1228
|
+
# instances were `SKIPPED`. 3. Reports the patch job as `
|
|
1229
|
+
# COMPLETED_WITH_INACTIVE_VMS` if it completes without errors, but some
|
|
1230
|
+
# instances were `INACTIVE` and were 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.
|
|
19
|
+
GEM_VERSION = "0.32.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251117"
|
|
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.
|
|
4
|
+
version: 0.32.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v1beta/v0.32.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.
|
|
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: []
|