google-apis-osconfig_v1 0.49.0 → 0.50.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: 88dcbcbe1339e7689034659b9c3c16f90d5f698f8b8853e3682989b371437a2b
|
|
4
|
+
data.tar.gz: 053c2f14adb3748296620782269e585b3b0b83ea1f9f16d94e9af5c3f28b560b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d2b4c07f04d36c26e81ed4838a323d4b1c2b94dac74814b736cc8a55dd9e202eec24fdee52ae9519d45d673b9059808b6fe3fced0313a2d7168334acf089e22
|
|
7
|
+
data.tar.gz: 964fa43bceda94bae142baf2b2d5d69844ca6360e23c9920a786fe80546c39e3543d4540b65fed379c06412cf9120b012718c1287801f260af4ea55278b1207a
|
data/CHANGELOG.md
CHANGED
|
@@ -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 can
|
|
2814
|
+
# be unpatchable for two reasons: a. The instance runs Container-Optimized OS (
|
|
2815
|
+
# COS), which cannot be patched. b. The patch job's configuration prohibits
|
|
2816
|
+
# patching on Managed Instance Groups (MIGs) through the PatchConfig.
|
|
2817
|
+
# migInstancesAllowed field, and the instance is part of one. 2. The system
|
|
2818
|
+
# reports the patch job as SUCCEEDED if it completes without errors, regardless
|
|
2819
|
+
# of whether any instances were SKIPPED. 3. The system reports the patch job as
|
|
2820
|
+
# COMPLETED_WITH_INACTIVE_VMS if it completes without errors, but some instances
|
|
2821
|
+
# were INACTIVE and therefore 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.
|
|
19
|
+
GEM_VERSION = "0.50.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 = "
|
|
25
|
+
REVISION = "20251030"
|
|
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.
|
|
4
|
+
version: 0.50.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-osconfig_v1/v0.50.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:
|