google-apis-container_v1 0.115.0 → 0.116.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: 99918350b9272b8fcb9e22068cac81cc76097802292ffc1c7a4c9755dcf7e34e
4
- data.tar.gz: f338d96d9870bd5dc5a06b43b2425d9a946d3e5411507e393a2fd1377b7e6932
3
+ metadata.gz: 31929f8d768d09148e75e03efdc3cd57fdc8d53f9d3239cc89e7a392f77c38f7
4
+ data.tar.gz: b787d0c899cd93b82f03f1e2fc6909d9b6c233305bbd800b978dd5c10005e276
5
5
  SHA512:
6
- metadata.gz: 20421931a09a8d2c08ddb5ce33689e4809a620488d8212cacebb0312c6180bbc752c45bef8c0dbd1e21b083b0657495441ebd656ae121ecde570392bcdda7b7a
7
- data.tar.gz: 25bd56b6bc3379ed1077df908f295f74aa91ae6f6465f5f0313017e14552ed21dbe5eaf613a30ab1af606ee8fa1674240d84860269a28d26a6f454b69567d19c
6
+ metadata.gz: 855a3bef677a919787b6d7788ff98a45dbf227be2416ec80e6be8a5f2daaa2f43abc762b869e006b503898c78ddbfca7bba51d8e9469e2b59d99bd1ff61d3d51
7
+ data.tar.gz: a7eee8219e98123ab4ce9ccaa7e0c6fb51bec5b9f4cab8ad9ff77588878525c4f6be46f83c81454a3f09c4660e8f86c22d9628dfcfb89e448e820550b0df3163
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-container_v1
2
2
 
3
+ ### v0.116.0 (2026-06-21)
4
+
5
+ * Regenerated from discovery document revision 20260609
6
+
3
7
  ### v0.115.0 (2026-06-10)
4
8
 
5
9
  * Regenerated from discovery document revision 20260519
@@ -3077,11 +3077,6 @@ module Google
3077
3077
  # @return [String]
3078
3078
  attr_accessor :image
3079
3079
 
3080
- # The name of the image family to use for this node.
3081
- # Corresponds to the JSON property `imageFamily`
3082
- # @return [String]
3083
- attr_accessor :image_family
3084
-
3085
3080
  # The project containing the image to use for this node.
3086
3081
  # Corresponds to the JSON property `imageProject`
3087
3082
  # @return [String]
@@ -3094,11 +3089,29 @@ module Google
3094
3089
  # Update properties of this object
3095
3090
  def update!(**args)
3096
3091
  @image = args[:image] if args.key?(:image)
3097
- @image_family = args[:image_family] if args.key?(:image_family)
3098
3092
  @image_project = args[:image_project] if args.key?(:image_project)
3099
3093
  end
3100
3094
  end
3101
3095
 
3096
+ # Contains the custom image info for a node pool.
3097
+ class CustomImageInfo
3098
+ include Google::Apis::Core::Hashable
3099
+
3100
+ # Output only. The human-readable upgrade message for the custom image.
3101
+ # Corresponds to the JSON property `upgradeMessage`
3102
+ # @return [String]
3103
+ attr_accessor :upgrade_message
3104
+
3105
+ def initialize(**args)
3106
+ update!(**args)
3107
+ end
3108
+
3109
+ # Update properties of this object
3110
+ def update!(**args)
3111
+ @upgrade_message = args[:upgrade_message] if args.key?(:upgrade_message)
3112
+ end
3113
+ end
3114
+
3102
3115
  # Support for running custom init code while bootstrapping nodes.
3103
3116
  class CustomNodeInit
3104
3117
  include Google::Apis::Core::Hashable
@@ -7361,6 +7374,11 @@ module Google
7361
7374
  # @return [Array<String>]
7362
7375
  attr_accessor :auto_upgrade_status
7363
7376
 
7377
+ # Contains the custom image info for a node pool.
7378
+ # Corresponds to the JSON property `customImageInfo`
7379
+ # @return [Google::Apis::ContainerV1::CustomImageInfo]
7380
+ attr_accessor :custom_image_info
7381
+
7364
7382
  # The node pool's current minor version's end of extended support timestamp.
7365
7383
  # Corresponds to the JSON property `endOfExtendedSupportTimestamp`
7366
7384
  # @return [String]
@@ -7398,6 +7416,7 @@ module Google
7398
7416
  # Update properties of this object
7399
7417
  def update!(**args)
7400
7418
  @auto_upgrade_status = args[:auto_upgrade_status] if args.key?(:auto_upgrade_status)
7419
+ @custom_image_info = args[:custom_image_info] if args.key?(:custom_image_info)
7401
7420
  @end_of_extended_support_timestamp = args[:end_of_extended_support_timestamp] if args.key?(:end_of_extended_support_timestamp)
7402
7421
  @end_of_standard_support_timestamp = args[:end_of_standard_support_timestamp] if args.key?(:end_of_standard_support_timestamp)
7403
7422
  @minor_target_version = args[:minor_target_version] if args.key?(:minor_target_version)
@@ -10385,6 +10404,11 @@ module Google
10385
10404
  # @return [String]
10386
10405
  attr_accessor :machine_type
10387
10406
 
10407
+ # Defines the maintenance policy for the node pool.
10408
+ # Corresponds to the JSON property `maintenancePolicy`
10409
+ # @return [Google::Apis::ContainerV1::NodePoolMaintenancePolicy]
10410
+ attr_accessor :maintenance_policy
10411
+
10388
10412
  # The maximum duration for the nodes to exist. If unspecified, the nodes can
10389
10413
  # exist indefinitely.
10390
10414
  # Corresponds to the JSON property `maxRunDuration`
@@ -10558,6 +10582,7 @@ module Google
10558
10582
  @locations = args[:locations] if args.key?(:locations)
10559
10583
  @logging_config = args[:logging_config] if args.key?(:logging_config)
10560
10584
  @machine_type = args[:machine_type] if args.key?(:machine_type)
10585
+ @maintenance_policy = args[:maintenance_policy] if args.key?(:maintenance_policy)
10561
10586
  @max_run_duration = args[:max_run_duration] if args.key?(:max_run_duration)
10562
10587
  @name = args[:name] if args.key?(:name)
10563
10588
  @node_drain_config = args[:node_drain_config] if args.key?(:node_drain_config)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ContainerV1
18
18
  # Version of the google-apis-container_v1 gem
19
- GEM_VERSION = "0.115.0"
19
+ GEM_VERSION = "0.116.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260519"
25
+ REVISION = "20260609"
26
26
  end
27
27
  end
28
28
  end
@@ -358,6 +358,12 @@ module Google
358
358
  include Google::Apis::Core::JsonObjectSupport
359
359
  end
360
360
 
361
+ class CustomImageInfo
362
+ class Representation < Google::Apis::Core::JsonRepresentation; end
363
+
364
+ include Google::Apis::Core::JsonObjectSupport
365
+ end
366
+
361
367
  class CustomNodeInit
362
368
  class Representation < Google::Apis::Core::JsonRepresentation; end
363
369
 
@@ -2366,11 +2372,17 @@ module Google
2366
2372
  # @private
2367
2373
  class Representation < Google::Apis::Core::JsonRepresentation
2368
2374
  property :image, as: 'image'
2369
- property :image_family, as: 'imageFamily'
2370
2375
  property :image_project, as: 'imageProject'
2371
2376
  end
2372
2377
  end
2373
2378
 
2379
+ class CustomImageInfo
2380
+ # @private
2381
+ class Representation < Google::Apis::Core::JsonRepresentation
2382
+ property :upgrade_message, as: 'upgradeMessage'
2383
+ end
2384
+ end
2385
+
2374
2386
  class CustomNodeInit
2375
2387
  # @private
2376
2388
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3468,6 +3480,8 @@ module Google
3468
3480
  # @private
3469
3481
  class Representation < Google::Apis::Core::JsonRepresentation
3470
3482
  collection :auto_upgrade_status, as: 'autoUpgradeStatus'
3483
+ property :custom_image_info, as: 'customImageInfo', class: Google::Apis::ContainerV1::CustomImageInfo, decorator: Google::Apis::ContainerV1::CustomImageInfo::Representation
3484
+
3471
3485
  property :end_of_extended_support_timestamp, as: 'endOfExtendedSupportTimestamp'
3472
3486
  property :end_of_standard_support_timestamp, as: 'endOfStandardSupportTimestamp'
3473
3487
  property :minor_target_version, as: 'minorTargetVersion'
@@ -4265,6 +4279,8 @@ module Google
4265
4279
  property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1::NodePoolLoggingConfig::Representation
4266
4280
 
4267
4281
  property :machine_type, as: 'machineType'
4282
+ property :maintenance_policy, as: 'maintenancePolicy', class: Google::Apis::ContainerV1::NodePoolMaintenancePolicy, decorator: Google::Apis::ContainerV1::NodePoolMaintenancePolicy::Representation
4283
+
4268
4284
  property :max_run_duration, as: 'maxRunDuration'
4269
4285
  property :name, as: 'name'
4270
4286
  property :node_drain_config, as: 'nodeDrainConfig', class: Google::Apis::ContainerV1::NodeDrainConfig, decorator: Google::Apis::ContainerV1::NodeDrainConfig::Representation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-container_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.115.0
4
+ version: 0.116.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-container_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.115.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.116.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
62
62
  rdoc_options: []
63
63
  require_paths: