google-apis-container_v1 0.53.0 → 0.55.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ea4fee55fc59334b9c8eb18e9ba1d97571b9c985d4e3bcbc5380a559e7fbc07c
4
- data.tar.gz: 7ba2b6f93fcb2c0c0d65235a4e57ea80bc1503ac69a57fb585cf854cd02e66df
3
+ metadata.gz: cef321412d280a76c66e4ff6d128da974a74a6a8e6b243662c17e0e467c51bcc
4
+ data.tar.gz: afcb904dd6a9dab88d906f16eb7d0f5a5e62d1ac147edc3fac71e3d4bb8f6827
5
5
  SHA512:
6
- metadata.gz: 90ef20ac365cdc12d593598dedba9c292c2021ef60d8802ba3fc7da26e5ea9fadfef7c09671279a5e7f88cfdb7d351e21dde83ead78d8e49bd0610695cac38dc
7
- data.tar.gz: 30e491f731353fff13e4eab3c39b0402c209e06f9fd9b20a15456837f464a9ab3cd2193256689ffe9b8de969ed773c03653d1fab1151d85e34b1160f7dac16f5
6
+ metadata.gz: 4d8a7d0a5dd8b262047c61cdbe797a84183077eb40cf5bbce7611604f400572f6053f3545313a3a47ccab1a539b0ac29512769b8d82ad46b936a89ae1c0f06b8
7
+ data.tar.gz: 4271d30eff3921e12ad63c01ae9dc30dfb6c2d1079cf6115a724ee131de91fa060dfca3fb2e542d47160a9e484765d16972801bb4e49b77569c97d2388982e0a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-container_v1
2
2
 
3
+ ### v0.55.0 (2023-07-09)
4
+
5
+ * Regenerated from discovery document revision 20230626
6
+
7
+ ### v0.54.0 (2023-07-02)
8
+
9
+ * Regenerated from discovery document revision 20230620
10
+
3
11
  ### v0.53.0 (2023-06-11)
4
12
 
5
13
  * 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)
@@ -169,6 +181,33 @@ module Google
169
181
  end
170
182
  end
171
183
 
184
+ # AdvancedDatapathObservabilityConfig specifies configuration of observability
185
+ # features of advanced datapath.
186
+ class AdvancedDatapathObservabilityConfig
187
+ include Google::Apis::Core::Hashable
188
+
189
+ # Expose flow metrics on nodes
190
+ # Corresponds to the JSON property `enableMetrics`
191
+ # @return [Boolean]
192
+ attr_accessor :enable_metrics
193
+ alias_method :enable_metrics?, :enable_metrics
194
+
195
+ # Method used to make Relay available
196
+ # Corresponds to the JSON property `relayMode`
197
+ # @return [String]
198
+ attr_accessor :relay_mode
199
+
200
+ def initialize(**args)
201
+ update!(**args)
202
+ end
203
+
204
+ # Update properties of this object
205
+ def update!(**args)
206
+ @enable_metrics = args[:enable_metrics] if args.key?(:enable_metrics)
207
+ @relay_mode = args[:relay_mode] if args.key?(:relay_mode)
208
+ end
209
+ end
210
+
172
211
  # Specifies options for controlling advanced machine features.
173
212
  class AdvancedMachineFeatures
174
213
  include Google::Apis::Core::Hashable
@@ -356,6 +395,12 @@ module Google
356
395
  # @return [String]
357
396
  attr_accessor :image_type
358
397
 
398
+ # Enable or disable Kubelet read only port.
399
+ # Corresponds to the JSON property `insecureKubeletReadonlyPortEnabled`
400
+ # @return [Boolean]
401
+ attr_accessor :insecure_kubelet_readonly_port_enabled
402
+ alias_method :insecure_kubelet_readonly_port_enabled?, :insecure_kubelet_readonly_port_enabled
403
+
359
404
  # NodeManagement defines the set of node management services turned on for the
360
405
  # node pool.
361
406
  # Corresponds to the JSON property `management`
@@ -435,6 +480,7 @@ module Google
435
480
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
436
481
  @disk_type = args[:disk_type] if args.key?(:disk_type)
437
482
  @image_type = args[:image_type] if args.key?(:image_type)
483
+ @insecure_kubelet_readonly_port_enabled = args[:insecure_kubelet_readonly_port_enabled] if args.key?(:insecure_kubelet_readonly_port_enabled)
438
484
  @management = args[:management] if args.key?(:management)
439
485
  @min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
440
486
  @oauth_scopes = args[:oauth_scopes] if args.key?(:oauth_scopes)
@@ -1287,6 +1333,25 @@ module Google
1287
1333
  end
1288
1334
  end
1289
1335
 
1336
+ # Configuration of network bandwidth tiers
1337
+ class ClusterNetworkPerformanceConfig
1338
+ include Google::Apis::Core::Hashable
1339
+
1340
+ # Specifies the total network bandwidth tier for NodePools in the cluster.
1341
+ # Corresponds to the JSON property `totalEgressBandwidthTier`
1342
+ # @return [String]
1343
+ attr_accessor :total_egress_bandwidth_tier
1344
+
1345
+ def initialize(**args)
1346
+ update!(**args)
1347
+ end
1348
+
1349
+ # Update properties of this object
1350
+ def update!(**args)
1351
+ @total_egress_bandwidth_tier = args[:total_egress_bandwidth_tier] if args.key?(:total_egress_bandwidth_tier)
1352
+ end
1353
+ end
1354
+
1290
1355
  # ClusterUpdate describes an update to the cluster. Exactly one update can be
1291
1356
  # applied to a cluster with each request, so at most one field can be provided.
1292
1357
  class ClusterUpdate
@@ -1475,6 +1540,11 @@ module Google
1475
1540
  # @return [String]
1476
1541
  attr_accessor :desired_monitoring_service
1477
1542
 
1543
+ # Configuration of network bandwidth tiers
1544
+ # Corresponds to the JSON property `desiredNetworkPerformanceConfig`
1545
+ # @return [Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig]
1546
+ attr_accessor :desired_network_performance_config
1547
+
1478
1548
  # Collection of Compute Engine network tags that can be applied to a node's
1479
1549
  # underlying VM instance.
1480
1550
  # Corresponds to the JSON property `desiredNodePoolAutoConfigNetworkTags`
@@ -1626,6 +1696,7 @@ module Google
1626
1696
  @desired_mesh_certificates = args[:desired_mesh_certificates] if args.key?(:desired_mesh_certificates)
1627
1697
  @desired_monitoring_config = args[:desired_monitoring_config] if args.key?(:desired_monitoring_config)
1628
1698
  @desired_monitoring_service = args[:desired_monitoring_service] if args.key?(:desired_monitoring_service)
1699
+ @desired_network_performance_config = args[:desired_network_performance_config] if args.key?(:desired_network_performance_config)
1629
1700
  @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
1701
  @desired_node_pool_autoscaling = args[:desired_node_pool_autoscaling] if args.key?(:desired_node_pool_autoscaling)
1631
1702
  @desired_node_pool_id = args[:desired_node_pool_id] if args.key?(:desired_node_pool_id)
@@ -2254,6 +2325,26 @@ module Google
2254
2325
  end
2255
2326
  end
2256
2327
 
2328
+ # Configuration for the Cloud Storage Fuse CSI driver.
2329
+ class GcsFuseCsiDriverConfig
2330
+ include Google::Apis::Core::Hashable
2331
+
2332
+ # Whether the Cloud Storage Fuse CSI driver is enabled for this cluster.
2333
+ # Corresponds to the JSON property `enabled`
2334
+ # @return [Boolean]
2335
+ attr_accessor :enabled
2336
+ alias_method :enabled?, :enabled
2337
+
2338
+ def initialize(**args)
2339
+ update!(**args)
2340
+ end
2341
+
2342
+ # Update properties of this object
2343
+ def update!(**args)
2344
+ @enabled = args[:enabled] if args.key?(:enabled)
2345
+ end
2346
+ end
2347
+
2257
2348
  # GetJSONWebKeysResponse is a valid JSON Web Key Set as specififed in rfc 7517
2258
2349
  class GetJsonWebKeysResponse
2259
2350
  include Google::Apis::Core::Hashable
@@ -2500,6 +2591,13 @@ module Google
2500
2591
  attr_accessor :create_subnetwork
2501
2592
  alias_method :create_subnetwork?, :create_subnetwork
2502
2593
 
2594
+ # Output only. [Output only] The utilization of the cluster default IPv4 range
2595
+ # for the pod. The ratio is Usage/[Total number of IPs in the secondary range],
2596
+ # Usage=numNodes*numZones*podIPsPerNode.
2597
+ # Corresponds to the JSON property `defaultPodIpv4RangeUtilization`
2598
+ # @return [Float]
2599
+ attr_accessor :default_pod_ipv4_range_utilization
2600
+
2503
2601
  # The ipv6 access type (internal or external) when create_subnetwork is true
2504
2602
  # Corresponds to the JSON property `ipv6AccessType`
2505
2603
  # @return [String]
@@ -2613,6 +2711,7 @@ module Google
2613
2711
  @cluster_ipv4_cidr_block = args[:cluster_ipv4_cidr_block] if args.key?(:cluster_ipv4_cidr_block)
2614
2712
  @cluster_secondary_range_name = args[:cluster_secondary_range_name] if args.key?(:cluster_secondary_range_name)
2615
2713
  @create_subnetwork = args[:create_subnetwork] if args.key?(:create_subnetwork)
2714
+ @default_pod_ipv4_range_utilization = args[:default_pod_ipv4_range_utilization] if args.key?(:default_pod_ipv4_range_utilization)
2616
2715
  @ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
2617
2716
  @node_ipv4_cidr = args[:node_ipv4_cidr] if args.key?(:node_ipv4_cidr)
2618
2717
  @node_ipv4_cidr_block = args[:node_ipv4_cidr_block] if args.key?(:node_ipv4_cidr_block)
@@ -3317,6 +3416,12 @@ module Google
3317
3416
  class MonitoringConfig
3318
3417
  include Google::Apis::Core::Hashable
3319
3418
 
3419
+ # AdvancedDatapathObservabilityConfig specifies configuration of observability
3420
+ # features of advanced datapath.
3421
+ # Corresponds to the JSON property `advancedDatapathObservabilityConfig`
3422
+ # @return [Google::Apis::ContainerV1::AdvancedDatapathObservabilityConfig]
3423
+ attr_accessor :advanced_datapath_observability_config
3424
+
3320
3425
  # MonitoringComponentConfig is cluster monitoring component configuration.
3321
3426
  # Corresponds to the JSON property `componentConfig`
3322
3427
  # @return [Google::Apis::ContainerV1::MonitoringComponentConfig]
@@ -3334,6 +3439,7 @@ module Google
3334
3439
 
3335
3440
  # Update properties of this object
3336
3441
  def update!(**args)
3442
+ @advanced_datapath_observability_config = args[:advanced_datapath_observability_config] if args.key?(:advanced_datapath_observability_config)
3337
3443
  @component_config = args[:component_config] if args.key?(:component_config)
3338
3444
  @managed_prometheus_config = args[:managed_prometheus_config] if args.key?(:managed_prometheus_config)
3339
3445
  end
@@ -3391,6 +3497,11 @@ module Google
3391
3497
  # @return [String]
3392
3498
  attr_accessor :network
3393
3499
 
3500
+ # Configuration of network bandwidth tiers
3501
+ # Corresponds to the JSON property `networkPerformanceConfig`
3502
+ # @return [Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig]
3503
+ attr_accessor :network_performance_config
3504
+
3394
3505
  # The desired state of IPv6 connectivity to Google Services. By default, no
3395
3506
  # private IPv6 access to or from Google Services (all access will be via IPv4)
3396
3507
  # Corresponds to the JSON property `privateIpv6GoogleAccess`
@@ -3423,6 +3534,7 @@ module Google
3423
3534
  @enable_l4ilb_subsetting = args[:enable_l4ilb_subsetting] if args.key?(:enable_l4ilb_subsetting)
3424
3535
  @gateway_api_config = args[:gateway_api_config] if args.key?(:gateway_api_config)
3425
3536
  @network = args[:network] if args.key?(:network)
3537
+ @network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
3426
3538
  @private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
3427
3539
  @service_external_ips_config = args[:service_external_ips_config] if args.key?(:service_external_ips_config)
3428
3540
  @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
@@ -3900,6 +4012,12 @@ module Google
3900
4012
  # @return [String]
3901
4013
  attr_accessor :cpu_manager_policy
3902
4014
 
4015
+ # Enable or disable Kubelet read only port.
4016
+ # Corresponds to the JSON property `insecureKubeletReadonlyPortEnabled`
4017
+ # @return [Boolean]
4018
+ attr_accessor :insecure_kubelet_readonly_port_enabled
4019
+ alias_method :insecure_kubelet_readonly_port_enabled?, :insecure_kubelet_readonly_port_enabled
4020
+
3903
4021
  # Set the Pod PID limits. See https://kubernetes.io/docs/concepts/policy/pid-
3904
4022
  # limiting/#pod-pid-limits Controls the maximum number of processes allowed to
3905
4023
  # run in a pod. The value must be greater than or equal to 1024 and less than
@@ -3917,6 +4035,7 @@ module Google
3917
4035
  @cpu_cfs_quota = args[:cpu_cfs_quota] if args.key?(:cpu_cfs_quota)
3918
4036
  @cpu_cfs_quota_period = args[:cpu_cfs_quota_period] if args.key?(:cpu_cfs_quota_period)
3919
4037
  @cpu_manager_policy = args[:cpu_manager_policy] if args.key?(:cpu_manager_policy)
4038
+ @insecure_kubelet_readonly_port_enabled = args[:insecure_kubelet_readonly_port_enabled] if args.key?(:insecure_kubelet_readonly_port_enabled)
3920
4039
  @pod_pids_limit = args[:pod_pids_limit] if args.key?(:pod_pids_limit)
3921
4040
  end
3922
4041
  end
@@ -4025,6 +4144,13 @@ module Google
4025
4144
  # @return [String]
4026
4145
  attr_accessor :pod_ipv4_cidr_block
4027
4146
 
4147
+ # Output only. [Output only] The utilization of the IPv4 range for the pod. The
4148
+ # ratio is Usage/[Total number of IPs in the secondary range], Usage=numNodes*
4149
+ # numZones*podIPsPerNode.
4150
+ # Corresponds to the JSON property `podIpv4RangeUtilization`
4151
+ # @return [Float]
4152
+ attr_accessor :pod_ipv4_range_utilization
4153
+
4028
4154
  # The ID of the secondary range for pod IPs. If `create_pod_range` is true, this
4029
4155
  # ID is used for the new range. If `create_pod_range` is false, uses an existing
4030
4156
  # secondary range with this ID. Only applicable if `ip_allocation_policy.
@@ -4045,6 +4171,7 @@ module Google
4045
4171
  @network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
4046
4172
  @pod_cidr_overprovision_config = args[:pod_cidr_overprovision_config] if args.key?(:pod_cidr_overprovision_config)
4047
4173
  @pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
4174
+ @pod_ipv4_range_utilization = args[:pod_ipv4_range_utilization] if args.key?(:pod_ipv4_range_utilization)
4048
4175
  @pod_range = args[:pod_range] if args.key?(:pod_range)
4049
4176
  end
4050
4177
  end
@@ -4767,6 +4894,31 @@ module Google
4767
4894
  end
4768
4895
  end
4769
4896
 
4897
+ # RangeInfo contains the range name and the range utilization by this cluster.
4898
+ class RangeInfo
4899
+ include Google::Apis::Core::Hashable
4900
+
4901
+ # Output only. [Output only] Name of a range.
4902
+ # Corresponds to the JSON property `rangeName`
4903
+ # @return [String]
4904
+ attr_accessor :range_name
4905
+
4906
+ # Output only. [Output only] The utilization of the range.
4907
+ # Corresponds to the JSON property `utilization`
4908
+ # @return [Float]
4909
+ attr_accessor :utilization
4910
+
4911
+ def initialize(**args)
4912
+ update!(**args)
4913
+ end
4914
+
4915
+ # Update properties of this object
4916
+ def update!(**args)
4917
+ @range_name = args[:range_name] if args.key?(:range_name)
4918
+ @utilization = args[:utilization] if args.key?(:utilization)
4919
+ end
4920
+ end
4921
+
4770
4922
  # Represents an arbitrary window of time that recurs.
4771
4923
  class RecurringTimeWindow
4772
4924
  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.55.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 = "20230626"
26
26
  end
27
27
  end
28
28
  end
@@ -40,6 +40,12 @@ module Google
40
40
  include Google::Apis::Core::JsonObjectSupport
41
41
  end
42
42
 
43
+ class AdvancedDatapathObservabilityConfig
44
+ class Representation < Google::Apis::Core::JsonRepresentation; end
45
+
46
+ include Google::Apis::Core::JsonObjectSupport
47
+ end
48
+
43
49
  class AdvancedMachineFeatures
44
50
  class Representation < Google::Apis::Core::JsonRepresentation; end
45
51
 
@@ -148,6 +154,12 @@ module Google
148
154
  include Google::Apis::Core::JsonObjectSupport
149
155
  end
150
156
 
157
+ class ClusterNetworkPerformanceConfig
158
+ class Representation < Google::Apis::Core::JsonRepresentation; end
159
+
160
+ include Google::Apis::Core::JsonObjectSupport
161
+ end
162
+
151
163
  class ClusterUpdate
152
164
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
165
 
@@ -298,6 +310,12 @@ module Google
298
310
  include Google::Apis::Core::JsonObjectSupport
299
311
  end
300
312
 
313
+ class GcsFuseCsiDriverConfig
314
+ class Representation < Google::Apis::Core::JsonRepresentation; end
315
+
316
+ include Google::Apis::Core::JsonObjectSupport
317
+ end
318
+
301
319
  class GetJsonWebKeysResponse
302
320
  class Representation < Google::Apis::Core::JsonRepresentation; end
303
321
 
@@ -664,6 +682,12 @@ module Google
664
682
  include Google::Apis::Core::JsonObjectSupport
665
683
  end
666
684
 
685
+ class RangeInfo
686
+ class Representation < Google::Apis::Core::JsonRepresentation; end
687
+
688
+ include Google::Apis::Core::JsonObjectSupport
689
+ end
690
+
667
691
  class RecurringTimeWindow
668
692
  class Representation < Google::Apis::Core::JsonRepresentation; end
669
693
 
@@ -968,6 +992,8 @@ module Google
968
992
  class AdditionalPodRangesConfig
969
993
  # @private
970
994
  class Representation < Google::Apis::Core::JsonRepresentation
995
+ collection :pod_range_info, as: 'podRangeInfo', class: Google::Apis::ContainerV1::RangeInfo, decorator: Google::Apis::ContainerV1::RangeInfo::Representation
996
+
971
997
  collection :pod_range_names, as: 'podRangeNames'
972
998
  end
973
999
  end
@@ -985,6 +1011,8 @@ module Google
985
1011
 
986
1012
  property :gcp_filestore_csi_driver_config, as: 'gcpFilestoreCsiDriverConfig', class: Google::Apis::ContainerV1::GcpFilestoreCsiDriverConfig, decorator: Google::Apis::ContainerV1::GcpFilestoreCsiDriverConfig::Representation
987
1013
 
1014
+ property :gcs_fuse_csi_driver_config, as: 'gcsFuseCsiDriverConfig', class: Google::Apis::ContainerV1::GcsFuseCsiDriverConfig, decorator: Google::Apis::ContainerV1::GcsFuseCsiDriverConfig::Representation
1015
+
988
1016
  property :gke_backup_agent_config, as: 'gkeBackupAgentConfig', class: Google::Apis::ContainerV1::GkeBackupAgentConfig, decorator: Google::Apis::ContainerV1::GkeBackupAgentConfig::Representation
989
1017
 
990
1018
  property :horizontal_pod_autoscaling, as: 'horizontalPodAutoscaling', class: Google::Apis::ContainerV1::HorizontalPodAutoscaling, decorator: Google::Apis::ContainerV1::HorizontalPodAutoscaling::Representation
@@ -998,6 +1026,14 @@ module Google
998
1026
  end
999
1027
  end
1000
1028
 
1029
+ class AdvancedDatapathObservabilityConfig
1030
+ # @private
1031
+ class Representation < Google::Apis::Core::JsonRepresentation
1032
+ property :enable_metrics, as: 'enableMetrics'
1033
+ property :relay_mode, as: 'relayMode'
1034
+ end
1035
+ end
1036
+
1001
1037
  class AdvancedMachineFeatures
1002
1038
  # @private
1003
1039
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1049,6 +1085,7 @@ module Google
1049
1085
  property :disk_size_gb, as: 'diskSizeGb'
1050
1086
  property :disk_type, as: 'diskType'
1051
1087
  property :image_type, as: 'imageType'
1088
+ property :insecure_kubelet_readonly_port_enabled, as: 'insecureKubeletReadonlyPortEnabled'
1052
1089
  property :management, as: 'management', class: Google::Apis::ContainerV1::NodeManagement, decorator: Google::Apis::ContainerV1::NodeManagement::Representation
1053
1090
 
1054
1091
  property :min_cpu_platform, as: 'minCpuPlatform'
@@ -1266,6 +1303,13 @@ module Google
1266
1303
  end
1267
1304
  end
1268
1305
 
1306
+ class ClusterNetworkPerformanceConfig
1307
+ # @private
1308
+ class Representation < Google::Apis::Core::JsonRepresentation
1309
+ property :total_egress_bandwidth_tier, as: 'totalEgressBandwidthTier'
1310
+ end
1311
+ end
1312
+
1269
1313
  class ClusterUpdate
1270
1314
  # @private
1271
1315
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1319,6 +1363,8 @@ module Google
1319
1363
  property :desired_monitoring_config, as: 'desiredMonitoringConfig', class: Google::Apis::ContainerV1::MonitoringConfig, decorator: Google::Apis::ContainerV1::MonitoringConfig::Representation
1320
1364
 
1321
1365
  property :desired_monitoring_service, as: 'desiredMonitoringService'
1366
+ property :desired_network_performance_config, as: 'desiredNetworkPerformanceConfig', class: Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig, decorator: Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig::Representation
1367
+
1322
1368
  property :desired_node_pool_auto_config_network_tags, as: 'desiredNodePoolAutoConfigNetworkTags', class: Google::Apis::ContainerV1::NetworkTags, decorator: Google::Apis::ContainerV1::NetworkTags::Representation
1323
1369
 
1324
1370
  property :desired_node_pool_autoscaling, as: 'desiredNodePoolAutoscaling', class: Google::Apis::ContainerV1::NodePoolAutoscaling, decorator: Google::Apis::ContainerV1::NodePoolAutoscaling::Representation
@@ -1540,6 +1586,13 @@ module Google
1540
1586
  end
1541
1587
  end
1542
1588
 
1589
+ class GcsFuseCsiDriverConfig
1590
+ # @private
1591
+ class Representation < Google::Apis::Core::JsonRepresentation
1592
+ property :enabled, as: 'enabled'
1593
+ end
1594
+ end
1595
+
1543
1596
  class GetJsonWebKeysResponse
1544
1597
  # @private
1545
1598
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1611,6 +1664,7 @@ module Google
1611
1664
  property :cluster_ipv4_cidr_block, as: 'clusterIpv4CidrBlock'
1612
1665
  property :cluster_secondary_range_name, as: 'clusterSecondaryRangeName'
1613
1666
  property :create_subnetwork, as: 'createSubnetwork'
1667
+ property :default_pod_ipv4_range_utilization, as: 'defaultPodIpv4RangeUtilization'
1614
1668
  property :ipv6_access_type, as: 'ipv6AccessType'
1615
1669
  property :node_ipv4_cidr, as: 'nodeIpv4Cidr'
1616
1670
  property :node_ipv4_cidr_block, as: 'nodeIpv4CidrBlock'
@@ -1843,6 +1897,8 @@ module Google
1843
1897
  class MonitoringConfig
1844
1898
  # @private
1845
1899
  class Representation < Google::Apis::Core::JsonRepresentation
1900
+ property :advanced_datapath_observability_config, as: 'advancedDatapathObservabilityConfig', class: Google::Apis::ContainerV1::AdvancedDatapathObservabilityConfig, decorator: Google::Apis::ContainerV1::AdvancedDatapathObservabilityConfig::Representation
1901
+
1846
1902
  property :component_config, as: 'componentConfig', class: Google::Apis::ContainerV1::MonitoringComponentConfig, decorator: Google::Apis::ContainerV1::MonitoringComponentConfig::Representation
1847
1903
 
1848
1904
  property :managed_prometheus_config, as: 'managedPrometheusConfig', class: Google::Apis::ContainerV1::ManagedPrometheusConfig, decorator: Google::Apis::ContainerV1::ManagedPrometheusConfig::Representation
@@ -1864,6 +1920,8 @@ module Google
1864
1920
  property :gateway_api_config, as: 'gatewayApiConfig', class: Google::Apis::ContainerV1::GatewayApiConfig, decorator: Google::Apis::ContainerV1::GatewayApiConfig::Representation
1865
1921
 
1866
1922
  property :network, as: 'network'
1923
+ property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig, decorator: Google::Apis::ContainerV1::ClusterNetworkPerformanceConfig::Representation
1924
+
1867
1925
  property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
1868
1926
  property :service_external_ips_config, as: 'serviceExternalIpsConfig', class: Google::Apis::ContainerV1::ServiceExternalIPsConfig, decorator: Google::Apis::ContainerV1::ServiceExternalIPsConfig::Representation
1869
1927
 
@@ -1983,6 +2041,7 @@ module Google
1983
2041
  property :cpu_cfs_quota, as: 'cpuCfsQuota'
1984
2042
  property :cpu_cfs_quota_period, as: 'cpuCfsQuotaPeriod'
1985
2043
  property :cpu_manager_policy, as: 'cpuManagerPolicy'
2044
+ property :insecure_kubelet_readonly_port_enabled, as: 'insecureKubeletReadonlyPortEnabled'
1986
2045
  property :pod_pids_limit, :numeric_string => true, as: 'podPidsLimit'
1987
2046
  end
1988
2047
  end
@@ -2014,6 +2073,7 @@ module Google
2014
2073
  property :pod_cidr_overprovision_config, as: 'podCidrOverprovisionConfig', class: Google::Apis::ContainerV1::PodCidrOverprovisionConfig, decorator: Google::Apis::ContainerV1::PodCidrOverprovisionConfig::Representation
2015
2074
 
2016
2075
  property :pod_ipv4_cidr_block, as: 'podIpv4CidrBlock'
2076
+ property :pod_ipv4_range_utilization, as: 'podIpv4RangeUtilization'
2017
2077
  property :pod_range, as: 'podRange'
2018
2078
  end
2019
2079
  end
@@ -2199,6 +2259,14 @@ module Google
2199
2259
  end
2200
2260
  end
2201
2261
 
2262
+ class RangeInfo
2263
+ # @private
2264
+ class Representation < Google::Apis::Core::JsonRepresentation
2265
+ property :range_name, as: 'rangeName'
2266
+ property :utilization, as: 'utilization'
2267
+ end
2268
+ end
2269
+
2202
2270
  class RecurringTimeWindow
2203
2271
  # @private
2204
2272
  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.55.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-09 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.55.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: []