google-apis-container_v1beta1 0.103.0 → 0.104.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: 2c1304f259efec4370eb091574d4ab0c12ac974c9f56cc0344f7abcfce96a4ef
|
|
4
|
+
data.tar.gz: 2ce244b22ea90ad6a23183ae11160c3725f5a74431d227e66c8f040c699428c2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f96a8a8967b6f924ad217ee4d838b4b5ef065afef394a433b507e5d77ada881e0ad0c2387198d0196bc3d452e7fc25f868a7864552bd8b7ec80779da74d00002
|
|
7
|
+
data.tar.gz: 3b97fd9abd4c461fe34e694d3d7390227429fb6fcaddffbf01cb41c5891b1830d17133ddb0fb0fa49bc74e2623c8bb776d23b194d661e5f170a096a2c821a729
|
data/CHANGELOG.md
CHANGED
|
@@ -3403,11 +3403,6 @@ module Google
|
|
|
3403
3403
|
# @return [String]
|
|
3404
3404
|
attr_accessor :image
|
|
3405
3405
|
|
|
3406
|
-
# The name of the image family to use for this node.
|
|
3407
|
-
# Corresponds to the JSON property `imageFamily`
|
|
3408
|
-
# @return [String]
|
|
3409
|
-
attr_accessor :image_family
|
|
3410
|
-
|
|
3411
3406
|
# The project containing the image to use for this node.
|
|
3412
3407
|
# Corresponds to the JSON property `imageProject`
|
|
3413
3408
|
# @return [String]
|
|
@@ -3420,11 +3415,29 @@ module Google
|
|
|
3420
3415
|
# Update properties of this object
|
|
3421
3416
|
def update!(**args)
|
|
3422
3417
|
@image = args[:image] if args.key?(:image)
|
|
3423
|
-
@image_family = args[:image_family] if args.key?(:image_family)
|
|
3424
3418
|
@image_project = args[:image_project] if args.key?(:image_project)
|
|
3425
3419
|
end
|
|
3426
3420
|
end
|
|
3427
3421
|
|
|
3422
|
+
# Contains the custom image info for a node pool.
|
|
3423
|
+
class CustomImageInfo
|
|
3424
|
+
include Google::Apis::Core::Hashable
|
|
3425
|
+
|
|
3426
|
+
# Output only. The human-readable upgrade message for the custom image.
|
|
3427
|
+
# Corresponds to the JSON property `upgradeMessage`
|
|
3428
|
+
# @return [String]
|
|
3429
|
+
attr_accessor :upgrade_message
|
|
3430
|
+
|
|
3431
|
+
def initialize(**args)
|
|
3432
|
+
update!(**args)
|
|
3433
|
+
end
|
|
3434
|
+
|
|
3435
|
+
# Update properties of this object
|
|
3436
|
+
def update!(**args)
|
|
3437
|
+
@upgrade_message = args[:upgrade_message] if args.key?(:upgrade_message)
|
|
3438
|
+
end
|
|
3439
|
+
end
|
|
3440
|
+
|
|
3428
3441
|
# Support for running custom init code while bootstrapping nodes.
|
|
3429
3442
|
class CustomNodeInit
|
|
3430
3443
|
include Google::Apis::Core::Hashable
|
|
@@ -7922,6 +7935,11 @@ module Google
|
|
|
7922
7935
|
# @return [Array<String>]
|
|
7923
7936
|
attr_accessor :auto_upgrade_status
|
|
7924
7937
|
|
|
7938
|
+
# Contains the custom image info for a node pool.
|
|
7939
|
+
# Corresponds to the JSON property `customImageInfo`
|
|
7940
|
+
# @return [Google::Apis::ContainerV1beta1::CustomImageInfo]
|
|
7941
|
+
attr_accessor :custom_image_info
|
|
7942
|
+
|
|
7925
7943
|
# The node pool's current minor version's end of extended support timestamp.
|
|
7926
7944
|
# Corresponds to the JSON property `endOfExtendedSupportTimestamp`
|
|
7927
7945
|
# @return [String]
|
|
@@ -7959,6 +7977,7 @@ module Google
|
|
|
7959
7977
|
# Update properties of this object
|
|
7960
7978
|
def update!(**args)
|
|
7961
7979
|
@auto_upgrade_status = args[:auto_upgrade_status] if args.key?(:auto_upgrade_status)
|
|
7980
|
+
@custom_image_info = args[:custom_image_info] if args.key?(:custom_image_info)
|
|
7962
7981
|
@end_of_extended_support_timestamp = args[:end_of_extended_support_timestamp] if args.key?(:end_of_extended_support_timestamp)
|
|
7963
7982
|
@end_of_standard_support_timestamp = args[:end_of_standard_support_timestamp] if args.key?(:end_of_standard_support_timestamp)
|
|
7964
7983
|
@minor_target_version = args[:minor_target_version] if args.key?(:minor_target_version)
|
|
@@ -11153,6 +11172,11 @@ module Google
|
|
|
11153
11172
|
# @return [String]
|
|
11154
11173
|
attr_accessor :machine_type
|
|
11155
11174
|
|
|
11175
|
+
# Defines the maintenance policy for the node pool.
|
|
11176
|
+
# Corresponds to the JSON property `maintenancePolicy`
|
|
11177
|
+
# @return [Google::Apis::ContainerV1beta1::NodePoolMaintenancePolicy]
|
|
11178
|
+
attr_accessor :maintenance_policy
|
|
11179
|
+
|
|
11156
11180
|
# The maximum duration for the nodes to exist. If unspecified, the nodes can
|
|
11157
11181
|
# exist indefinitely.
|
|
11158
11182
|
# Corresponds to the JSON property `maxRunDuration`
|
|
@@ -11327,6 +11351,7 @@ module Google
|
|
|
11327
11351
|
@locations = args[:locations] if args.key?(:locations)
|
|
11328
11352
|
@logging_config = args[:logging_config] if args.key?(:logging_config)
|
|
11329
11353
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
|
11354
|
+
@maintenance_policy = args[:maintenance_policy] if args.key?(:maintenance_policy)
|
|
11330
11355
|
@max_run_duration = args[:max_run_duration] if args.key?(:max_run_duration)
|
|
11331
11356
|
@name = args[:name] if args.key?(:name)
|
|
11332
11357
|
@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 ContainerV1beta1
|
|
18
18
|
# Version of the google-apis-container_v1beta1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.104.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 = "
|
|
25
|
+
REVISION = "20260609"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -388,6 +388,12 @@ module Google
|
|
|
388
388
|
include Google::Apis::Core::JsonObjectSupport
|
|
389
389
|
end
|
|
390
390
|
|
|
391
|
+
class CustomImageInfo
|
|
392
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
393
|
+
|
|
394
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
395
|
+
end
|
|
396
|
+
|
|
391
397
|
class CustomNodeInit
|
|
392
398
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
393
399
|
|
|
@@ -2609,11 +2615,17 @@ module Google
|
|
|
2609
2615
|
# @private
|
|
2610
2616
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2611
2617
|
property :image, as: 'image'
|
|
2612
|
-
property :image_family, as: 'imageFamily'
|
|
2613
2618
|
property :image_project, as: 'imageProject'
|
|
2614
2619
|
end
|
|
2615
2620
|
end
|
|
2616
2621
|
|
|
2622
|
+
class CustomImageInfo
|
|
2623
|
+
# @private
|
|
2624
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2625
|
+
property :upgrade_message, as: 'upgradeMessage'
|
|
2626
|
+
end
|
|
2627
|
+
end
|
|
2628
|
+
|
|
2617
2629
|
class CustomNodeInit
|
|
2618
2630
|
# @private
|
|
2619
2631
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -3783,6 +3795,8 @@ module Google
|
|
|
3783
3795
|
# @private
|
|
3784
3796
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
3785
3797
|
collection :auto_upgrade_status, as: 'autoUpgradeStatus'
|
|
3798
|
+
property :custom_image_info, as: 'customImageInfo', class: Google::Apis::ContainerV1beta1::CustomImageInfo, decorator: Google::Apis::ContainerV1beta1::CustomImageInfo::Representation
|
|
3799
|
+
|
|
3786
3800
|
property :end_of_extended_support_timestamp, as: 'endOfExtendedSupportTimestamp'
|
|
3787
3801
|
property :end_of_standard_support_timestamp, as: 'endOfStandardSupportTimestamp'
|
|
3788
3802
|
property :minor_target_version, as: 'minorTargetVersion'
|
|
@@ -4642,6 +4656,8 @@ module Google
|
|
|
4642
4656
|
property :logging_config, as: 'loggingConfig', class: Google::Apis::ContainerV1beta1::NodePoolLoggingConfig, decorator: Google::Apis::ContainerV1beta1::NodePoolLoggingConfig::Representation
|
|
4643
4657
|
|
|
4644
4658
|
property :machine_type, as: 'machineType'
|
|
4659
|
+
property :maintenance_policy, as: 'maintenancePolicy', class: Google::Apis::ContainerV1beta1::NodePoolMaintenancePolicy, decorator: Google::Apis::ContainerV1beta1::NodePoolMaintenancePolicy::Representation
|
|
4660
|
+
|
|
4645
4661
|
property :max_run_duration, as: 'maxRunDuration'
|
|
4646
4662
|
property :name, as: 'name'
|
|
4647
4663
|
property :node_drain_config, as: 'nodeDrainConfig', class: Google::Apis::ContainerV1beta1::NodeDrainConfig, decorator: Google::Apis::ContainerV1beta1::NodeDrainConfig::Representation
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-container_v1beta1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.104.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_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.104.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|