google-apis-container_v1 0.88.0 → 0.89.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: e4af0d2a3a1c94a1fbb56c8f5902b1ed6585440d8128956e7773f85ad3a16404
|
4
|
+
data.tar.gz: '039a7bec55ee2e96dacbfdfe5dd29b4ddfe918bf1f9b7b7782f127307b121962'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 29efb9d358e9b1d7114bd6d29d1fedd671bf7f79fd70b4a57d046d289f4440325a06c2133ed2d7b4a37a2bf1849613e23472cb47a28be1579121b8ad7ca190a5
|
7
|
+
data.tar.gz: d7490cd5c07fe7680f22572b545af7b373a9054579185ea14e2493fad2b80ae9879d3c04a1b84c0020dccaf37168723051afc06fde293ac0ee6c02258831e183
|
data/CHANGELOG.md
CHANGED
@@ -425,7 +425,7 @@ module Google
|
|
425
425
|
# @return [String]
|
426
426
|
attr_accessor :description
|
427
427
|
|
428
|
-
# A URL to a public
|
428
|
+
# A URL to a public documentation, which addresses resolving this issue.
|
429
429
|
# Corresponds to the JSON property `documentationUrl`
|
430
430
|
# @return [String]
|
431
431
|
attr_accessor :documentation_url
|
@@ -460,6 +460,26 @@ module Google
|
|
460
460
|
end
|
461
461
|
end
|
462
462
|
|
463
|
+
# AutopilotConfig contains configuration of autopilot feature for this nodepool.
|
464
|
+
class AutopilotConfig
|
465
|
+
include Google::Apis::Core::Hashable
|
466
|
+
|
467
|
+
# Denotes that nodes belonging to this node pool are Autopilot nodes.
|
468
|
+
# Corresponds to the JSON property `enabled`
|
469
|
+
# @return [Boolean]
|
470
|
+
attr_accessor :enabled
|
471
|
+
alias_method :enabled?, :enabled
|
472
|
+
|
473
|
+
def initialize(**args)
|
474
|
+
update!(**args)
|
475
|
+
end
|
476
|
+
|
477
|
+
# Update properties of this object
|
478
|
+
def update!(**args)
|
479
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
480
|
+
end
|
481
|
+
end
|
482
|
+
|
463
483
|
# AutoprovisioningNodePoolDefaults contains defaults for a node pool created by
|
464
484
|
# NAP.
|
465
485
|
class AutoprovisioningNodePoolDefaults
|
@@ -786,7 +806,7 @@ module Google
|
|
786
806
|
include Google::Apis::Core::Hashable
|
787
807
|
|
788
808
|
# List of fully qualified domain names (FQDN). Specifying port is supported.
|
789
|
-
#
|
809
|
+
# Wildcards are NOT supported. Examples: - my.customdomain.com - 10.0.1.2:5000
|
790
810
|
# Corresponds to the JSON property `fqdns`
|
791
811
|
# @return [Array<String>]
|
792
812
|
attr_accessor :fqdns
|
@@ -1027,7 +1047,9 @@ module Google
|
|
1027
1047
|
attr_accessor :enable_kubernetes_alpha
|
1028
1048
|
alias_method :enable_kubernetes_alpha?, :enable_kubernetes_alpha
|
1029
1049
|
|
1030
|
-
# Enable the ability to use Cloud TPUs in this cluster.
|
1050
|
+
# Enable the ability to use Cloud TPUs in this cluster. This field is deprecated
|
1051
|
+
# due to the deprecation of 2VM TPU. The end of life date for 2VM TPU is 2025-04-
|
1052
|
+
# 25.
|
1031
1053
|
# Corresponds to the JSON property `enableTpu`
|
1032
1054
|
# @return [Boolean]
|
1033
1055
|
attr_accessor :enable_tpu
|
@@ -1120,10 +1142,7 @@ module Google
|
|
1120
1142
|
# @return [Google::Apis::ContainerV1::LegacyAbac]
|
1121
1143
|
attr_accessor :legacy_abac
|
1122
1144
|
|
1123
|
-
#
|
1124
|
-
# com/compute/docs/regions-zones/regions-zones#available) or [region](https://
|
1125
|
-
# cloud.google.com/compute/docs/regions-zones/regions-zones#available) in which
|
1126
|
-
# the cluster resides.
|
1145
|
+
#
|
1127
1146
|
# Corresponds to the JSON property `location`
|
1128
1147
|
# @return [String]
|
1129
1148
|
attr_accessor :location
|
@@ -1356,7 +1375,8 @@ module Google
|
|
1356
1375
|
|
1357
1376
|
# Output only. The IP address range of the Cloud TPUs in this cluster, in [CIDR](
|
1358
1377
|
# http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing) notation (e.g. `1.
|
1359
|
-
# 2.3.4/29`).
|
1378
|
+
# 2.3.4/29`). This field is deprecated due to the deprecation of 2VM TPU. The
|
1379
|
+
# end of life date for 2VM TPU is 2025-04-25.
|
1360
1380
|
# Corresponds to the JSON property `tpuIpv4CidrBlock`
|
1361
1381
|
# @return [String]
|
1362
1382
|
attr_accessor :tpu_ipv4_cidr_block
|
@@ -2867,7 +2887,7 @@ module Google
|
|
2867
2887
|
end
|
2868
2888
|
end
|
2869
2889
|
|
2870
|
-
# GetJSONWebKeysResponse is a valid JSON Web Key Set as
|
2890
|
+
# GetJSONWebKeysResponse is a valid JSON Web Key Set as specified in rfc 7517
|
2871
2891
|
class GetJsonWebKeysResponse
|
2872
2892
|
include Google::Apis::Core::Hashable
|
2873
2893
|
|
@@ -3224,7 +3244,8 @@ module Google
|
|
3224
3244
|
# specific netmask. Set to a [CIDR](http://en.wikipedia.org/wiki/Classless_Inter-
|
3225
3245
|
# Domain_Routing) notation (e.g. `10.96.0.0/14`) from the RFC-1918 private
|
3226
3246
|
# networks (e.g. `10.0.0.0/8`, `172.16.0.0/12`, `192.168.0.0/16`) to pick a
|
3227
|
-
# specific range to use.
|
3247
|
+
# specific range to use. This field is deprecated due to the deprecation of 2VM
|
3248
|
+
# TPU. The end of life date for 2VM TPU is 2025-04-25.
|
3228
3249
|
# Corresponds to the JSON property `tpuIpv4CidrBlock`
|
3229
3250
|
# @return [String]
|
3230
3251
|
attr_accessor :tpu_ipv4_cidr_block
|
@@ -3533,9 +3554,14 @@ module Google
|
|
3533
3554
|
|
3534
3555
|
# The Linux kernel parameters to be applied to the nodes and all pods running on
|
3535
3556
|
# the nodes. The following parameters are supported. net.core.busy_poll net.core.
|
3536
|
-
# busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.
|
3537
|
-
# net.core.
|
3538
|
-
# ipv4.tcp_wmem net.ipv4.tcp_tw_reuse
|
3557
|
+
# busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.rmem_default
|
3558
|
+
# net.core.wmem_default net.core.wmem_max net.core.optmem_max net.core.somaxconn
|
3559
|
+
# net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse net.netfilter.
|
3560
|
+
# nf_conntrack_max net.netfilter.nf_conntrack_buckets net.netfilter.
|
3561
|
+
# nf_conntrack_tcp_timeout_close_wait net.netfilter.
|
3562
|
+
# nf_conntrack_tcp_timeout_time_wait net.netfilter.
|
3563
|
+
# nf_conntrack_tcp_timeout_established net.netfilter.nf_conntrack_acct kernel.
|
3564
|
+
# shmmni kernel.shmmax kernel.shmall vm.max_map_count
|
3539
3565
|
# Corresponds to the JSON property `sysctls`
|
3540
3566
|
# @return [Hash<String,String>]
|
3541
3567
|
attr_accessor :sysctls
|
@@ -3924,7 +3950,7 @@ module Google
|
|
3924
3950
|
attr_accessor :enabled
|
3925
3951
|
alias_method :enabled?, :enabled
|
3926
3952
|
|
3927
|
-
# Whether master is
|
3953
|
+
# Whether master is accessible via Google Compute Engine Public IP addresses.
|
3928
3954
|
# Corresponds to the JSON property `gcpPublicCidrsAccessEnabled`
|
3929
3955
|
# @return [Boolean]
|
3930
3956
|
attr_accessor :gcp_public_cidrs_access_enabled
|
@@ -4160,7 +4186,7 @@ module Google
|
|
4160
4186
|
# @return [String]
|
4161
4187
|
attr_accessor :in_transit_encryption_config
|
4162
4188
|
|
4163
|
-
# Output only. The relative name of the Google Compute Engine network(https://
|
4189
|
+
# Output only. The relative name of the Google Compute Engine [network](https://
|
4164
4190
|
# cloud.google.com/compute/docs/networks-and-firewalls#networks) to which the
|
4165
4191
|
# cluster is connected. Example: projects/my-project/global/networks/my-network
|
4166
4192
|
# Corresponds to the JSON property `network`
|
@@ -4464,7 +4490,7 @@ module Google
|
|
4464
4490
|
# @return [Fixnum]
|
4465
4491
|
attr_accessor :local_ssd_count
|
4466
4492
|
|
4467
|
-
# Specifies which method should be used for encrypting the Local SSDs
|
4493
|
+
# Specifies which method should be used for encrypting the Local SSDs attached
|
4468
4494
|
# to the node.
|
4469
4495
|
# Corresponds to the JSON property `localSsdEncryptionMode`
|
4470
4496
|
# @return [String]
|
@@ -4734,6 +4760,37 @@ module Google
|
|
4734
4760
|
class NodeKubeletConfig
|
4735
4761
|
include Google::Apis::Core::Hashable
|
4736
4762
|
|
4763
|
+
# Optional. Defines a comma-separated allowlist of unsafe sysctls or sysctl
|
4764
|
+
# patterns (ending in `*`). The unsafe namespaced sysctl groups are `kernel.shm*`
|
4765
|
+
# , `kernel.msg*`, `kernel.sem`, `fs.mqueue.*`, and `net.*`. Leaving this
|
4766
|
+
# allowlist empty means they cannot be set on Pods. To allow certain sysctls or
|
4767
|
+
# sysctl patterns to be set on Pods, list them separated by commas. For example:
|
4768
|
+
# `kernel.msg*,net.ipv4.route.min_pmtu`. See https://kubernetes.io/docs/tasks/
|
4769
|
+
# administer-cluster/sysctl-cluster/ for more details.
|
4770
|
+
# Corresponds to the JSON property `allowedUnsafeSysctls`
|
4771
|
+
# @return [Array<String>]
|
4772
|
+
attr_accessor :allowed_unsafe_sysctls
|
4773
|
+
|
4774
|
+
# Optional. Defines the maximum number of container log files that can be
|
4775
|
+
# present for a container. See https://kubernetes.io/docs/concepts/cluster-
|
4776
|
+
# administration/logging/#log-rotation The value must be an integer between 2
|
4777
|
+
# and 10, inclusive. The default value is 5 if unspecified.
|
4778
|
+
# Corresponds to the JSON property `containerLogMaxFiles`
|
4779
|
+
# @return [Fixnum]
|
4780
|
+
attr_accessor :container_log_max_files
|
4781
|
+
|
4782
|
+
# Optional. Defines the maximum size of the container log file before it is
|
4783
|
+
# rotated. See https://kubernetes.io/docs/concepts/cluster-administration/
|
4784
|
+
# logging/#log-rotation Valid format is positive number + unit, e.g. 100Ki, 10Mi.
|
4785
|
+
# Valid units are Ki, Mi, Gi. The value must be between 10Mi and 500Mi,
|
4786
|
+
# inclusive. Note that the total container log size (container_log_max_size *
|
4787
|
+
# container_log_max_files) cannot exceed 1% of the total storage of the node, to
|
4788
|
+
# avoid disk pressure caused by log files. The default value is 10Mi if
|
4789
|
+
# unspecified.
|
4790
|
+
# Corresponds to the JSON property `containerLogMaxSize`
|
4791
|
+
# @return [String]
|
4792
|
+
attr_accessor :container_log_max_size
|
4793
|
+
|
4737
4794
|
# Enable CPU CFS quota enforcement for containers that specify CPU limits. This
|
4738
4795
|
# option is enabled by default which makes kubelet use CFS quota (https://www.
|
4739
4796
|
# kernel.org/doc/Documentation/scheduler/sched-bwc.txt) to enforce container CPU
|
@@ -4764,6 +4821,44 @@ module Google
|
|
4764
4821
|
# @return [String]
|
4765
4822
|
attr_accessor :cpu_manager_policy
|
4766
4823
|
|
4824
|
+
# Optional. Defines the percent of disk usage after which image garbage
|
4825
|
+
# collection is always run. The percent is calculated as this field value out of
|
4826
|
+
# 100. The value must be between 10 and 85, inclusive and greater than
|
4827
|
+
# image_gc_low_threshold_percent. The default value is 85 if unspecified.
|
4828
|
+
# Corresponds to the JSON property `imageGcHighThresholdPercent`
|
4829
|
+
# @return [Fixnum]
|
4830
|
+
attr_accessor :image_gc_high_threshold_percent
|
4831
|
+
|
4832
|
+
# Optional. Defines the percent of disk usage before which image garbage
|
4833
|
+
# collection is never run. Lowest disk usage to garbage collect to. The percent
|
4834
|
+
# is calculated as this field value out of 100. The value must be between 10 and
|
4835
|
+
# 85, inclusive and smaller than image_gc_high_threshold_percent. The default
|
4836
|
+
# value is 80 if unspecified.
|
4837
|
+
# Corresponds to the JSON property `imageGcLowThresholdPercent`
|
4838
|
+
# @return [Fixnum]
|
4839
|
+
attr_accessor :image_gc_low_threshold_percent
|
4840
|
+
|
4841
|
+
# Optional. Defines the maximum age an image can be unused before it is garbage
|
4842
|
+
# collected. The string must be a sequence of decimal numbers, each with
|
4843
|
+
# optional fraction and a unit suffix, such as "300s", "1.5h", and "2h45m".
|
4844
|
+
# Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". The value must
|
4845
|
+
# be a positive duration greater than image_minimum_gc_age or "0s". The default
|
4846
|
+
# value is "0s" if unspecified, which disables this field, meaning images won't
|
4847
|
+
# be garbage collected based on being unused for too long.
|
4848
|
+
# Corresponds to the JSON property `imageMaximumGcAge`
|
4849
|
+
# @return [String]
|
4850
|
+
attr_accessor :image_maximum_gc_age
|
4851
|
+
|
4852
|
+
# Optional. Defines the minimum age for an unused image before it is garbage
|
4853
|
+
# collected. The string must be a sequence of decimal numbers, each with
|
4854
|
+
# optional fraction and a unit suffix, such as "300s", "1.5h", and "2h45m".
|
4855
|
+
# Valid time units are "ns", "us" (or "µs"), "ms", "s", "m", "h". The value must
|
4856
|
+
# be a positive duration less than or equal to 2 minutes. The default value is "
|
4857
|
+
# 2m0s" if unspecified.
|
4858
|
+
# Corresponds to the JSON property `imageMinimumGcAge`
|
4859
|
+
# @return [String]
|
4860
|
+
attr_accessor :image_minimum_gc_age
|
4861
|
+
|
4767
4862
|
# Enable or disable Kubelet read only port.
|
4768
4863
|
# Corresponds to the JSON property `insecureKubeletReadonlyPortEnabled`
|
4769
4864
|
# @return [Boolean]
|
@@ -4784,9 +4879,16 @@ module Google
|
|
4784
4879
|
|
4785
4880
|
# Update properties of this object
|
4786
4881
|
def update!(**args)
|
4882
|
+
@allowed_unsafe_sysctls = args[:allowed_unsafe_sysctls] if args.key?(:allowed_unsafe_sysctls)
|
4883
|
+
@container_log_max_files = args[:container_log_max_files] if args.key?(:container_log_max_files)
|
4884
|
+
@container_log_max_size = args[:container_log_max_size] if args.key?(:container_log_max_size)
|
4787
4885
|
@cpu_cfs_quota = args[:cpu_cfs_quota] if args.key?(:cpu_cfs_quota)
|
4788
4886
|
@cpu_cfs_quota_period = args[:cpu_cfs_quota_period] if args.key?(:cpu_cfs_quota_period)
|
4789
4887
|
@cpu_manager_policy = args[:cpu_manager_policy] if args.key?(:cpu_manager_policy)
|
4888
|
+
@image_gc_high_threshold_percent = args[:image_gc_high_threshold_percent] if args.key?(:image_gc_high_threshold_percent)
|
4889
|
+
@image_gc_low_threshold_percent = args[:image_gc_low_threshold_percent] if args.key?(:image_gc_low_threshold_percent)
|
4890
|
+
@image_maximum_gc_age = args[:image_maximum_gc_age] if args.key?(:image_maximum_gc_age)
|
4891
|
+
@image_minimum_gc_age = args[:image_minimum_gc_age] if args.key?(:image_minimum_gc_age)
|
4790
4892
|
@insecure_kubelet_readonly_port_enabled = args[:insecure_kubelet_readonly_port_enabled] if args.key?(:insecure_kubelet_readonly_port_enabled)
|
4791
4893
|
@pod_pids_limit = args[:pod_pids_limit] if args.key?(:pod_pids_limit)
|
4792
4894
|
end
|
@@ -4951,6 +5053,11 @@ module Google
|
|
4951
5053
|
class NodePool
|
4952
5054
|
include Google::Apis::Core::Hashable
|
4953
5055
|
|
5056
|
+
# AutopilotConfig contains configuration of autopilot feature for this nodepool.
|
5057
|
+
# Corresponds to the JSON property `autopilotConfig`
|
5058
|
+
# @return [Google::Apis::ContainerV1::AutopilotConfig]
|
5059
|
+
attr_accessor :autopilot_config
|
5060
|
+
|
4954
5061
|
# NodePoolAutoscaling contains information required by cluster autoscaler to
|
4955
5062
|
# adjust the size of the node pool to the current cluster usage.
|
4956
5063
|
# Corresponds to the JSON property `autoscaling`
|
@@ -5113,6 +5220,7 @@ module Google
|
|
5113
5220
|
|
5114
5221
|
# Update properties of this object
|
5115
5222
|
def update!(**args)
|
5223
|
+
@autopilot_config = args[:autopilot_config] if args.key?(:autopilot_config)
|
5116
5224
|
@autoscaling = args[:autoscaling] if args.key?(:autoscaling)
|
5117
5225
|
@best_effort_provisioning = args[:best_effort_provisioning] if args.key?(:best_effort_provisioning)
|
5118
5226
|
@conditions = args[:conditions] if args.key?(:conditions)
|
@@ -8384,6 +8492,12 @@ module Google
|
|
8384
8492
|
attr_accessor :allow_net_admin
|
8385
8493
|
alias_method :allow_net_admin?, :allow_net_admin
|
8386
8494
|
|
8495
|
+
# If true, enables the GCW Auditor that audits workloads on standard clusters.
|
8496
|
+
# Corresponds to the JSON property `autopilotCompatibilityAuditingEnabled`
|
8497
|
+
# @return [Boolean]
|
8498
|
+
attr_accessor :autopilot_compatibility_auditing_enabled
|
8499
|
+
alias_method :autopilot_compatibility_auditing_enabled?, :autopilot_compatibility_auditing_enabled
|
8500
|
+
|
8387
8501
|
def initialize(**args)
|
8388
8502
|
update!(**args)
|
8389
8503
|
end
|
@@ -8391,6 +8505,7 @@ module Google
|
|
8391
8505
|
# Update properties of this object
|
8392
8506
|
def update!(**args)
|
8393
8507
|
@allow_net_admin = args[:allow_net_admin] if args.key?(:allow_net_admin)
|
8508
|
+
@autopilot_compatibility_auditing_enabled = args[:autopilot_compatibility_auditing_enabled] if args.key?(:autopilot_compatibility_auditing_enabled)
|
8394
8509
|
end
|
8395
8510
|
end
|
8396
8511
|
end
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.89.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250211"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -88,6 +88,12 @@ module Google
|
|
88
88
|
include Google::Apis::Core::JsonObjectSupport
|
89
89
|
end
|
90
90
|
|
91
|
+
class AutopilotConfig
|
92
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
|
+
|
94
|
+
include Google::Apis::Core::JsonObjectSupport
|
95
|
+
end
|
96
|
+
|
91
97
|
class AutoprovisioningNodePoolDefaults
|
92
98
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
93
99
|
|
@@ -1279,6 +1285,13 @@ module Google
|
|
1279
1285
|
end
|
1280
1286
|
end
|
1281
1287
|
|
1288
|
+
class AutopilotConfig
|
1289
|
+
# @private
|
1290
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1291
|
+
property :enabled, as: 'enabled'
|
1292
|
+
end
|
1293
|
+
end
|
1294
|
+
|
1282
1295
|
class AutoprovisioningNodePoolDefaults
|
1283
1296
|
# @private
|
1284
1297
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2409,9 +2422,16 @@ module Google
|
|
2409
2422
|
class NodeKubeletConfig
|
2410
2423
|
# @private
|
2411
2424
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2425
|
+
collection :allowed_unsafe_sysctls, as: 'allowedUnsafeSysctls'
|
2426
|
+
property :container_log_max_files, as: 'containerLogMaxFiles'
|
2427
|
+
property :container_log_max_size, as: 'containerLogMaxSize'
|
2412
2428
|
property :cpu_cfs_quota, as: 'cpuCfsQuota'
|
2413
2429
|
property :cpu_cfs_quota_period, as: 'cpuCfsQuotaPeriod'
|
2414
2430
|
property :cpu_manager_policy, as: 'cpuManagerPolicy'
|
2431
|
+
property :image_gc_high_threshold_percent, as: 'imageGcHighThresholdPercent'
|
2432
|
+
property :image_gc_low_threshold_percent, as: 'imageGcLowThresholdPercent'
|
2433
|
+
property :image_maximum_gc_age, as: 'imageMaximumGcAge'
|
2434
|
+
property :image_minimum_gc_age, as: 'imageMinimumGcAge'
|
2415
2435
|
property :insecure_kubelet_readonly_port_enabled, as: 'insecureKubeletReadonlyPortEnabled'
|
2416
2436
|
property :pod_pids_limit, :numeric_string => true, as: 'podPidsLimit'
|
2417
2437
|
end
|
@@ -2456,6 +2476,8 @@ module Google
|
|
2456
2476
|
class NodePool
|
2457
2477
|
# @private
|
2458
2478
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2479
|
+
property :autopilot_config, as: 'autopilotConfig', class: Google::Apis::ContainerV1::AutopilotConfig, decorator: Google::Apis::ContainerV1::AutopilotConfig::Representation
|
2480
|
+
|
2459
2481
|
property :autoscaling, as: 'autoscaling', class: Google::Apis::ContainerV1::NodePoolAutoscaling, decorator: Google::Apis::ContainerV1::NodePoolAutoscaling::Representation
|
2460
2482
|
|
2461
2483
|
property :best_effort_provisioning, as: 'bestEffortProvisioning', class: Google::Apis::ContainerV1::BestEffortProvisioning, decorator: Google::Apis::ContainerV1::BestEffortProvisioning::Representation
|
@@ -3314,6 +3336,7 @@ module Google
|
|
3314
3336
|
# @private
|
3315
3337
|
class Representation < Google::Apis::Core::JsonRepresentation
|
3316
3338
|
property :allow_net_admin, as: 'allowNetAdmin'
|
3339
|
+
property :autopilot_compatibility_auditing_enabled, as: 'autopilotCompatibilityAuditingEnabled'
|
3317
3340
|
end
|
3318
3341
|
end
|
3319
3342
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-container_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.89.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-03-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.89.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:
|
@@ -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.5
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Kubernetes Engine API V1
|
79
79
|
test_files: []
|