google-apis-container_v1 0.53.0 → 0.54.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: ea4fee55fc59334b9c8eb18e9ba1d97571b9c985d4e3bcbc5380a559e7fbc07c
4
- data.tar.gz: 7ba2b6f93fcb2c0c0d65235a4e57ea80bc1503ac69a57fb585cf854cd02e66df
3
+ metadata.gz: 0dd5666c9b10df745f8fd28b6db98c6d627a2e77d0493d27775a911c37a605b6
4
+ data.tar.gz: 185a6e8f4e332d246ebb498be926780e721e120c210f73c16a66476e8d20ed2a
5
5
  SHA512:
6
- metadata.gz: 90ef20ac365cdc12d593598dedba9c292c2021ef60d8802ba3fc7da26e5ea9fadfef7c09671279a5e7f88cfdb7d351e21dde83ead78d8e49bd0610695cac38dc
7
- data.tar.gz: 30e491f731353fff13e4eab3c39b0402c209e06f9fd9b20a15456837f464a9ab3cd2193256689ffe9b8de969ed773c03653d1fab1151d85e34b1160f7dac16f5
6
+ metadata.gz: 8d1307be8e53461c0606cfee4fcc1138fba06c4e64fdcc8b492252b0a75a1ecdc346b20f22c55748e7930cd3700d1aa1750bec4f08bef143b34b5a8a14d72c11
7
+ data.tar.gz: 52a8a39df58de95456186fe1e6be127e0c5b1447bf2643f904b3a88bce5bfaa8985afd8efd3c1584acadd07f83e4eac87d9b9a90538df081579ace49636186e4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-container_v1
2
2
 
3
+ ### v0.54.0 (2023-07-02)
4
+
5
+ * Regenerated from discovery document revision 20230620
6
+
3
7
  ### v0.53.0 (2023-06-11)
4
8
 
5
9
  * Regenerated from discovery document revision 20230522
@@ -75,6 +75,11 @@ module Google
75
75
  class AdditionalPodRangesConfig
76
76
  include Google::Apis::Core::Hashable
77
77
 
78
+ # Output only. [Output only] Information for additional pod range.
79
+ # Corresponds to the JSON property `podRangeInfo`
80
+ # @return [Array<Google::Apis::ContainerV1::RangeInfo>]
81
+ attr_accessor :pod_range_info
82
+
78
83
  # Name for pod secondary ipv4 range which has the actual range defined ahead.
79
84
  # Corresponds to the JSON property `podRangeNames`
80
85
  # @return [Array<String>]
@@ -86,6 +91,7 @@ module Google
86
91
 
87
92
  # Update properties of this object
88
93
  def update!(**args)
94
+ @pod_range_info = args[:pod_range_info] if args.key?(:pod_range_info)
89
95
  @pod_range_names = args[:pod_range_names] if args.key?(:pod_range_names)
90
96
  end
91
97
  end
@@ -120,6 +126,11 @@ module Google
120
126
  # @return [Google::Apis::ContainerV1::GcpFilestoreCsiDriverConfig]
121
127
  attr_accessor :gcp_filestore_csi_driver_config
122
128
 
129
+ # Configuration for the Cloud Storage Fuse CSI driver.
130
+ # Corresponds to the JSON property `gcsFuseCsiDriverConfig`
131
+ # @return [Google::Apis::ContainerV1::GcsFuseCsiDriverConfig]
132
+ attr_accessor :gcs_fuse_csi_driver_config
133
+
123
134
  # Configuration for the Backup for GKE Agent.
124
135
  # Corresponds to the JSON property `gkeBackupAgentConfig`
125
136
  # @return [Google::Apis::ContainerV1::GkeBackupAgentConfig]
@@ -161,6 +172,7 @@ module Google
161
172
  @dns_cache_config = args[:dns_cache_config] if args.key?(:dns_cache_config)
162
173
  @gce_persistent_disk_csi_driver_config = args[:gce_persistent_disk_csi_driver_config] if args.key?(:gce_persistent_disk_csi_driver_config)
163
174
  @gcp_filestore_csi_driver_config = args[:gcp_filestore_csi_driver_config] if args.key?(:gcp_filestore_csi_driver_config)
175
+ @gcs_fuse_csi_driver_config = args[:gcs_fuse_csi_driver_config] if args.key?(:gcs_fuse_csi_driver_config)
164
176
  @gke_backup_agent_config = args[:gke_backup_agent_config] if args.key?(:gke_backup_agent_config)
165
177
  @horizontal_pod_autoscaling = args[:horizontal_pod_autoscaling] if args.key?(:horizontal_pod_autoscaling)
166
178
  @http_load_balancing = args[:http_load_balancing] if args.key?(:http_load_balancing)
@@ -356,6 +368,12 @@ module Google
356
368
  # @return [String]
357
369
  attr_accessor :image_type
358
370
 
371
+ # Enable or disable Kubelet read only port.
372
+ # Corresponds to the JSON property `insecureKubeletReadonlyPortEnabled`
373
+ # @return [Boolean]
374
+ attr_accessor :insecure_kubelet_readonly_port_enabled
375
+ alias_method :insecure_kubelet_readonly_port_enabled?, :insecure_kubelet_readonly_port_enabled
376
+
359
377
  # NodeManagement defines the set of node management services turned on for the
360
378
  # node pool.
361
379
  # Corresponds to the JSON property `management`
@@ -435,6 +453,7 @@ module Google
435
453
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
436
454
  @disk_type = args[:disk_type] if args.key?(:disk_type)
437
455
  @image_type = args[:image_type] if args.key?(:image_type)
456
+ @insecure_kubelet_readonly_port_enabled = args[:insecure_kubelet_readonly_port_enabled] if args.key?(:insecure_kubelet_readonly_port_enabled)
438
457
  @management = args[:management] if args.key?(:management)
439
458
  @min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
440
459
  @oauth_scopes = args[:oauth_scopes] if args.key?(:oauth_scopes)
@@ -1287,6 +1306,25 @@ module Google
1287
1306
  end
1288
1307
  end
1289
1308
 
1309
+ # Configuration of network bandwidth tiers
1310
+ class ClusterNetworkPerformanceConfig
1311
+ include Google::Apis::Core::Hashable
1312
+
1313
+ # Specifies the total network bandwidth tier for NodePools in the cluster.
1314
+ # Corresponds to the JSON property `totalEgressBandwidthTier`
1315
+ # @return [String]
1316
+ attr_accessor :total_egress_bandwidth_tier
1317
+
1318
+ def initialize(**args)
1319
+ update!(**args)
1320
+ end
1321
+
1322
+ # Update properties of this object
1323
+ def update!(**args)
1324
+ @total_egress_bandwidth_tier = args[:total_egress_bandwidth_tier] if args.key?(:total_egress_bandwidth_tier)
1325
+ end
1326
+ end
1327
+
1290
1328
  # ClusterUpdate describes an update to the cluster. Exactly one update can be
1291
1329
  # applied to a cluster with each request, so at most one field can be provided.
1292
1330
  class ClusterUpdate
@@ -1475,6 +1513,11 @@ module Google
1475
1513
  # @return [String]
1476
1514
  attr_accessor :desired_monitoring_service
1477
1515
 
1516
+ # Configuration of network bandwidth tiers
1517
+ # Corresponds to the JSON property `desiredNetworkPerformanceConfig`
1518
+ # @return [Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig]
1519
+ attr_accessor :desired_network_performance_config
1520
+
1478
1521
  # Collection of Compute Engine network tags that can be applied to a node's
1479
1522
  # underlying VM instance.
1480
1523
  # Corresponds to the JSON property `desiredNodePoolAutoConfigNetworkTags`
@@ -1626,6 +1669,7 @@ module Google
1626
1669
  @desired_mesh_certificates = args[:desired_mesh_certificates] if args.key?(:desired_mesh_certificates)
1627
1670
  @desired_monitoring_config = args[:desired_monitoring_config] if args.key?(:desired_monitoring_config)
1628
1671
  @desired_monitoring_service = args[:desired_monitoring_service] if args.key?(:desired_monitoring_service)
1672
+ @desired_network_performance_config = args[:desired_network_performance_config] if args.key?(:desired_network_performance_config)
1629
1673
  @desired_node_pool_auto_config_network_tags = args[:desired_node_pool_auto_config_network_tags] if args.key?(:desired_node_pool_auto_config_network_tags)
1630
1674
  @desired_node_pool_autoscaling = args[:desired_node_pool_autoscaling] if args.key?(:desired_node_pool_autoscaling)
1631
1675
  @desired_node_pool_id = args[:desired_node_pool_id] if args.key?(:desired_node_pool_id)
@@ -2254,6 +2298,26 @@ module Google
2254
2298
  end
2255
2299
  end
2256
2300
 
2301
+ # Configuration for the Cloud Storage Fuse CSI driver.
2302
+ class GcsFuseCsiDriverConfig
2303
+ include Google::Apis::Core::Hashable
2304
+
2305
+ # Whether the Cloud Storage Fuse CSI driver is enabled for this cluster.
2306
+ # Corresponds to the JSON property `enabled`
2307
+ # @return [Boolean]
2308
+ attr_accessor :enabled
2309
+ alias_method :enabled?, :enabled
2310
+
2311
+ def initialize(**args)
2312
+ update!(**args)
2313
+ end
2314
+
2315
+ # Update properties of this object
2316
+ def update!(**args)
2317
+ @enabled = args[:enabled] if args.key?(:enabled)
2318
+ end
2319
+ end
2320
+
2257
2321
  # GetJSONWebKeysResponse is a valid JSON Web Key Set as specififed in rfc 7517
2258
2322
  class GetJsonWebKeysResponse
2259
2323
  include Google::Apis::Core::Hashable
@@ -2500,6 +2564,13 @@ module Google
2500
2564
  attr_accessor :create_subnetwork
2501
2565
  alias_method :create_subnetwork?, :create_subnetwork
2502
2566
 
2567
+ # Output only. [Output only] The utilization of the cluster default IPv4 range
2568
+ # for pod. The ratio is Usage/[Total number of IPs in the secondary range],
2569
+ # Usage=numNodes*numZones*podIPsPerNode.
2570
+ # Corresponds to the JSON property `defaultPodIpv4RangeUtilization`
2571
+ # @return [Float]
2572
+ attr_accessor :default_pod_ipv4_range_utilization
2573
+
2503
2574
  # The ipv6 access type (internal or external) when create_subnetwork is true
2504
2575
  # Corresponds to the JSON property `ipv6AccessType`
2505
2576
  # @return [String]
@@ -2613,6 +2684,7 @@ module Google
2613
2684
  @cluster_ipv4_cidr_block = args[:cluster_ipv4_cidr_block] if args.key?(:cluster_ipv4_cidr_block)
2614
2685
  @cluster_secondary_range_name = args[:cluster_secondary_range_name] if args.key?(:cluster_secondary_range_name)
2615
2686
  @create_subnetwork = args[:create_subnetwork] if args.key?(:create_subnetwork)
2687
+ @default_pod_ipv4_range_utilization = args[:default_pod_ipv4_range_utilization] if args.key?(:default_pod_ipv4_range_utilization)
2616
2688
  @ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
2617
2689
  @node_ipv4_cidr = args[:node_ipv4_cidr] if args.key?(:node_ipv4_cidr)
2618
2690
  @node_ipv4_cidr_block = args[:node_ipv4_cidr_block] if args.key?(:node_ipv4_cidr_block)
@@ -3391,6 +3463,11 @@ module Google
3391
3463
  # @return [String]
3392
3464
  attr_accessor :network
3393
3465
 
3466
+ # Configuration of network bandwidth tiers
3467
+ # Corresponds to the JSON property `networkPerformanceConfig`
3468
+ # @return [Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig]
3469
+ attr_accessor :network_performance_config
3470
+
3394
3471
  # The desired state of IPv6 connectivity to Google Services. By default, no
3395
3472
  # private IPv6 access to or from Google Services (all access will be via IPv4)
3396
3473
  # Corresponds to the JSON property `privateIpv6GoogleAccess`
@@ -3423,6 +3500,7 @@ module Google
3423
3500
  @enable_l4ilb_subsetting = args[:enable_l4ilb_subsetting] if args.key?(:enable_l4ilb_subsetting)
3424
3501
  @gateway_api_config = args[:gateway_api_config] if args.key?(:gateway_api_config)
3425
3502
  @network = args[:network] if args.key?(:network)
3503
+ @network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
3426
3504
  @private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
3427
3505
  @service_external_ips_config = args[:service_external_ips_config] if args.key?(:service_external_ips_config)
3428
3506
  @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
@@ -3900,6 +3978,12 @@ module Google
3900
3978
  # @return [String]
3901
3979
  attr_accessor :cpu_manager_policy
3902
3980
 
3981
+ # Enable or disable Kubelet read only port.
3982
+ # Corresponds to the JSON property `insecureKubeletReadonlyPortEnabled`
3983
+ # @return [Boolean]
3984
+ attr_accessor :insecure_kubelet_readonly_port_enabled
3985
+ alias_method :insecure_kubelet_readonly_port_enabled?, :insecure_kubelet_readonly_port_enabled
3986
+
3903
3987
  # Set the Pod PID limits. See https://kubernetes.io/docs/concepts/policy/pid-
3904
3988
  # limiting/#pod-pid-limits Controls the maximum number of processes allowed to
3905
3989
  # run in a pod. The value must be greater than or equal to 1024 and less than
@@ -3917,6 +4001,7 @@ module Google
3917
4001
  @cpu_cfs_quota = args[:cpu_cfs_quota] if args.key?(:cpu_cfs_quota)
3918
4002
  @cpu_cfs_quota_period = args[:cpu_cfs_quota_period] if args.key?(:cpu_cfs_quota_period)
3919
4003
  @cpu_manager_policy = args[:cpu_manager_policy] if args.key?(:cpu_manager_policy)
4004
+ @insecure_kubelet_readonly_port_enabled = args[:insecure_kubelet_readonly_port_enabled] if args.key?(:insecure_kubelet_readonly_port_enabled)
3920
4005
  @pod_pids_limit = args[:pod_pids_limit] if args.key?(:pod_pids_limit)
3921
4006
  end
3922
4007
  end
@@ -4025,6 +4110,13 @@ module Google
4025
4110
  # @return [String]
4026
4111
  attr_accessor :pod_ipv4_cidr_block
4027
4112
 
4113
+ # Output only. [Output only] The utilization of the IPv4 range for pod. The
4114
+ # ratio is Usage/[Total number of IPs in the secondary range], Usage=numNodes*
4115
+ # numZones*podIPsPerNode.
4116
+ # Corresponds to the JSON property `podIpv4RangeUtilization`
4117
+ # @return [Float]
4118
+ attr_accessor :pod_ipv4_range_utilization
4119
+
4028
4120
  # The ID of the secondary range for pod IPs. If `create_pod_range` is true, this
4029
4121
  # ID is used for the new range. If `create_pod_range` is false, uses an existing
4030
4122
  # secondary range with this ID. Only applicable if `ip_allocation_policy.
@@ -4045,6 +4137,7 @@ module Google
4045
4137
  @network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
4046
4138
  @pod_cidr_overprovision_config = args[:pod_cidr_overprovision_config] if args.key?(:pod_cidr_overprovision_config)
4047
4139
  @pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
4140
+ @pod_ipv4_range_utilization = args[:pod_ipv4_range_utilization] if args.key?(:pod_ipv4_range_utilization)
4048
4141
  @pod_range = args[:pod_range] if args.key?(:pod_range)
4049
4142
  end
4050
4143
  end
@@ -4767,6 +4860,31 @@ module Google
4767
4860
  end
4768
4861
  end
4769
4862
 
4863
+ # RangeInfo contains the range name and the range utilization by this cluster.
4864
+ class RangeInfo
4865
+ include Google::Apis::Core::Hashable
4866
+
4867
+ # Output only. [Output only] Name of a range.
4868
+ # Corresponds to the JSON property `rangeName`
4869
+ # @return [String]
4870
+ attr_accessor :range_name
4871
+
4872
+ # Output only. [Output only] The utilization of the range.
4873
+ # Corresponds to the JSON property `utilization`
4874
+ # @return [Float]
4875
+ attr_accessor :utilization
4876
+
4877
+ def initialize(**args)
4878
+ update!(**args)
4879
+ end
4880
+
4881
+ # Update properties of this object
4882
+ def update!(**args)
4883
+ @range_name = args[:range_name] if args.key?(:range_name)
4884
+ @utilization = args[:utilization] if args.key?(:utilization)
4885
+ end
4886
+ end
4887
+
4770
4888
  # Represents an arbitrary window of time that recurs.
4771
4889
  class RecurringTimeWindow
4772
4890
  include Google::Apis::Core::Hashable
@@ -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.53.0"
19
+ GEM_VERSION = "0.54.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230522"
25
+ REVISION = "20230620"
26
26
  end
27
27
  end
28
28
  end
@@ -148,6 +148,12 @@ module Google
148
148
  include Google::Apis::Core::JsonObjectSupport
149
149
  end
150
150
 
151
+ class ClusterNetworkPerformanceConfig
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
151
157
  class ClusterUpdate
152
158
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
159
 
@@ -298,6 +304,12 @@ module Google
298
304
  include Google::Apis::Core::JsonObjectSupport
299
305
  end
300
306
 
307
+ class GcsFuseCsiDriverConfig
308
+ class Representation < Google::Apis::Core::JsonRepresentation; end
309
+
310
+ include Google::Apis::Core::JsonObjectSupport
311
+ end
312
+
301
313
  class GetJsonWebKeysResponse
302
314
  class Representation < Google::Apis::Core::JsonRepresentation; end
303
315
 
@@ -664,6 +676,12 @@ module Google
664
676
  include Google::Apis::Core::JsonObjectSupport
665
677
  end
666
678
 
679
+ class RangeInfo
680
+ class Representation < Google::Apis::Core::JsonRepresentation; end
681
+
682
+ include Google::Apis::Core::JsonObjectSupport
683
+ end
684
+
667
685
  class RecurringTimeWindow
668
686
  class Representation < Google::Apis::Core::JsonRepresentation; end
669
687
 
@@ -968,6 +986,8 @@ module Google
968
986
  class AdditionalPodRangesConfig
969
987
  # @private
970
988
  class Representation < Google::Apis::Core::JsonRepresentation
989
+ collection :pod_range_info, as: 'podRangeInfo', class: Google::Apis::ContainerV1::RangeInfo, decorator: Google::Apis::ContainerV1::RangeInfo::Representation
990
+
971
991
  collection :pod_range_names, as: 'podRangeNames'
972
992
  end
973
993
  end
@@ -985,6 +1005,8 @@ module Google
985
1005
 
986
1006
  property :gcp_filestore_csi_driver_config, as: 'gcpFilestoreCsiDriverConfig', class: Google::Apis::ContainerV1::GcpFilestoreCsiDriverConfig, decorator: Google::Apis::ContainerV1::GcpFilestoreCsiDriverConfig::Representation
987
1007
 
1008
+ property :gcs_fuse_csi_driver_config, as: 'gcsFuseCsiDriverConfig', class: Google::Apis::ContainerV1::GcsFuseCsiDriverConfig, decorator: Google::Apis::ContainerV1::GcsFuseCsiDriverConfig::Representation
1009
+
988
1010
  property :gke_backup_agent_config, as: 'gkeBackupAgentConfig', class: Google::Apis::ContainerV1::GkeBackupAgentConfig, decorator: Google::Apis::ContainerV1::GkeBackupAgentConfig::Representation
989
1011
 
990
1012
  property :horizontal_pod_autoscaling, as: 'horizontalPodAutoscaling', class: Google::Apis::ContainerV1::HorizontalPodAutoscaling, decorator: Google::Apis::ContainerV1::HorizontalPodAutoscaling::Representation
@@ -1049,6 +1071,7 @@ module Google
1049
1071
  property :disk_size_gb, as: 'diskSizeGb'
1050
1072
  property :disk_type, as: 'diskType'
1051
1073
  property :image_type, as: 'imageType'
1074
+ property :insecure_kubelet_readonly_port_enabled, as: 'insecureKubeletReadonlyPortEnabled'
1052
1075
  property :management, as: 'management', class: Google::Apis::ContainerV1::NodeManagement, decorator: Google::Apis::ContainerV1::NodeManagement::Representation
1053
1076
 
1054
1077
  property :min_cpu_platform, as: 'minCpuPlatform'
@@ -1266,6 +1289,13 @@ module Google
1266
1289
  end
1267
1290
  end
1268
1291
 
1292
+ class ClusterNetworkPerformanceConfig
1293
+ # @private
1294
+ class Representation < Google::Apis::Core::JsonRepresentation
1295
+ property :total_egress_bandwidth_tier, as: 'totalEgressBandwidthTier'
1296
+ end
1297
+ end
1298
+
1269
1299
  class ClusterUpdate
1270
1300
  # @private
1271
1301
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1319,6 +1349,8 @@ module Google
1319
1349
  property :desired_monitoring_config, as: 'desiredMonitoringConfig', class: Google::Apis::ContainerV1::MonitoringConfig, decorator: Google::Apis::ContainerV1::MonitoringConfig::Representation
1320
1350
 
1321
1351
  property :desired_monitoring_service, as: 'desiredMonitoringService'
1352
+ property :desired_network_performance_config, as: 'desiredNetworkPerformanceConfig', class: Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig, decorator: Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig::Representation
1353
+
1322
1354
  property :desired_node_pool_auto_config_network_tags, as: 'desiredNodePoolAutoConfigNetworkTags', class: Google::Apis::ContainerV1::NetworkTags, decorator: Google::Apis::ContainerV1::NetworkTags::Representation
1323
1355
 
1324
1356
  property :desired_node_pool_autoscaling, as: 'desiredNodePoolAutoscaling', class: Google::Apis::ContainerV1::NodePoolAutoscaling, decorator: Google::Apis::ContainerV1::NodePoolAutoscaling::Representation
@@ -1540,6 +1572,13 @@ module Google
1540
1572
  end
1541
1573
  end
1542
1574
 
1575
+ class GcsFuseCsiDriverConfig
1576
+ # @private
1577
+ class Representation < Google::Apis::Core::JsonRepresentation
1578
+ property :enabled, as: 'enabled'
1579
+ end
1580
+ end
1581
+
1543
1582
  class GetJsonWebKeysResponse
1544
1583
  # @private
1545
1584
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1611,6 +1650,7 @@ module Google
1611
1650
  property :cluster_ipv4_cidr_block, as: 'clusterIpv4CidrBlock'
1612
1651
  property :cluster_secondary_range_name, as: 'clusterSecondaryRangeName'
1613
1652
  property :create_subnetwork, as: 'createSubnetwork'
1653
+ property :default_pod_ipv4_range_utilization, as: 'defaultPodIpv4RangeUtilization'
1614
1654
  property :ipv6_access_type, as: 'ipv6AccessType'
1615
1655
  property :node_ipv4_cidr, as: 'nodeIpv4Cidr'
1616
1656
  property :node_ipv4_cidr_block, as: 'nodeIpv4CidrBlock'
@@ -1864,6 +1904,8 @@ module Google
1864
1904
  property :gateway_api_config, as: 'gatewayApiConfig', class: Google::Apis::ContainerV1::GatewayApiConfig, decorator: Google::Apis::ContainerV1::GatewayApiConfig::Representation
1865
1905
 
1866
1906
  property :network, as: 'network'
1907
+ property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig, decorator: Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig::Representation
1908
+
1867
1909
  property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
1868
1910
  property :service_external_ips_config, as: 'serviceExternalIpsConfig', class: Google::Apis::ContainerV1::ServiceExternalIPsConfig, decorator: Google::Apis::ContainerV1::ServiceExternalIPsConfig::Representation
1869
1911
 
@@ -1983,6 +2025,7 @@ module Google
1983
2025
  property :cpu_cfs_quota, as: 'cpuCfsQuota'
1984
2026
  property :cpu_cfs_quota_period, as: 'cpuCfsQuotaPeriod'
1985
2027
  property :cpu_manager_policy, as: 'cpuManagerPolicy'
2028
+ property :insecure_kubelet_readonly_port_enabled, as: 'insecureKubeletReadonlyPortEnabled'
1986
2029
  property :pod_pids_limit, :numeric_string => true, as: 'podPidsLimit'
1987
2030
  end
1988
2031
  end
@@ -2014,6 +2057,7 @@ module Google
2014
2057
  property :pod_cidr_overprovision_config, as: 'podCidrOverprovisionConfig', class: Google::Apis::ContainerV1::PodCidrOverprovisionConfig, decorator: Google::Apis::ContainerV1::PodCidrOverprovisionConfig::Representation
2015
2058
 
2016
2059
  property :pod_ipv4_cidr_block, as: 'podIpv4CidrBlock'
2060
+ property :pod_ipv4_range_utilization, as: 'podIpv4RangeUtilization'
2017
2061
  property :pod_range, as: 'podRange'
2018
2062
  end
2019
2063
  end
@@ -2199,6 +2243,14 @@ module Google
2199
2243
  end
2200
2244
  end
2201
2245
 
2246
+ class RangeInfo
2247
+ # @private
2248
+ class Representation < Google::Apis::Core::JsonRepresentation
2249
+ property :range_name, as: 'rangeName'
2250
+ property :utilization, as: 'utilization'
2251
+ end
2252
+ end
2253
+
2202
2254
  class RecurringTimeWindow
2203
2255
  # @private
2204
2256
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-container_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.53.0
4
+ version: 0.54.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-06-11 00:00:00.000000000 Z
11
+ date: 2023-07-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.53.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.54.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1
63
63
  post_install_message:
64
64
  rdoc_options: []