google-apis-container_v1beta1 0.51.0 → 0.53.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: cafd878f5993b410dc7106b66498014ffb442bebbd8b8418e5ac324245f26add
4
- data.tar.gz: f4edaa5d6fc52da8c78a437e3a298c8f11cf15d2cbcc1afb84ad8dbeed795888
3
+ metadata.gz: 28f5fb13517700bb00d0e6a168f2e43d413976000c38508ec15792b61c7c84a9
4
+ data.tar.gz: eab2ebc9bdfdc02c65e9f4b2299407a57f5d2e5a096cc29418ee7f6ec3c8c8a8
5
5
  SHA512:
6
- metadata.gz: ea63c39180faf8d8cfb6f40f1e925cdf1929236c51c385a2b6ea058a1d8bd650e576b577890f3a6aa553002be0f02906d5d0752d837522c94f9b095639765ae7
7
- data.tar.gz: 1cedf1324fff42c791416ce6d63b824ce8a5184096d8ab0ed18e92ea9144bee65a8038920efb3ce788f966c0146a6d134311a3e79e07e9921a3c2fdb3ae60cf6
6
+ metadata.gz: 405627a49ff795e79d8f937f185193124f21f26020781172cd752b64584a143f5a4228d4fe4aa7905fa4d687aef73cf2f777f4f959588ce228abff3f19e7198a
7
+ data.tar.gz: 41c628d65cf8b35f892a2ac16d8b669d5358e112932f64ede63a60d6588b2c20949aa23f9b62426567760b07c4dc84afe232c67df5b9246b35cd1cb76329b6a5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-container_v1beta1
2
2
 
3
+ ### v0.53.0 (2023-07-02)
4
+
5
+ * Regenerated from discovery document revision 20230620
6
+
7
+ ### v0.52.0 (2023-06-25)
8
+
9
+ * Regenerated from discovery document revision 20230614
10
+
3
11
  ### v0.51.0 (2023-06-04)
4
12
 
5
13
  * Regenerated from discovery document revision 20230522
@@ -81,6 +81,11 @@ module Google
81
81
  class AdditionalPodRangesConfig
82
82
  include Google::Apis::Core::Hashable
83
83
 
84
+ # Output only. [Output only] Information for additional pod range.
85
+ # Corresponds to the JSON property `podRangeInfo`
86
+ # @return [Array<Google::Apis::ContainerV1beta1::RangeInfo>]
87
+ attr_accessor :pod_range_info
88
+
84
89
  # Name for pod secondary ipv4 range which has the actual range defined ahead.
85
90
  # Corresponds to the JSON property `podRangeNames`
86
91
  # @return [Array<String>]
@@ -92,6 +97,7 @@ module Google
92
97
 
93
98
  # Update properties of this object
94
99
  def update!(**args)
100
+ @pod_range_info = args[:pod_range_info] if args.key?(:pod_range_info)
95
101
  @pod_range_names = args[:pod_range_names] if args.key?(:pod_range_names)
96
102
  end
97
103
  end
@@ -380,6 +386,12 @@ module Google
380
386
  # @return [String]
381
387
  attr_accessor :image_type
382
388
 
389
+ # Enable or disable Kubelet read only port.
390
+ # Corresponds to the JSON property `insecureKubeletReadonlyPortEnabled`
391
+ # @return [Boolean]
392
+ attr_accessor :insecure_kubelet_readonly_port_enabled
393
+ alias_method :insecure_kubelet_readonly_port_enabled?, :insecure_kubelet_readonly_port_enabled
394
+
383
395
  # NodeManagement defines the set of node management services turned on for the
384
396
  # node pool.
385
397
  # Corresponds to the JSON property `management`
@@ -455,6 +467,7 @@ module Google
455
467
  @disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
456
468
  @disk_type = args[:disk_type] if args.key?(:disk_type)
457
469
  @image_type = args[:image_type] if args.key?(:image_type)
470
+ @insecure_kubelet_readonly_port_enabled = args[:insecure_kubelet_readonly_port_enabled] if args.key?(:insecure_kubelet_readonly_port_enabled)
458
471
  @management = args[:management] if args.key?(:management)
459
472
  @min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
460
473
  @oauth_scopes = args[:oauth_scopes] if args.key?(:oauth_scopes)
@@ -1397,6 +1410,25 @@ module Google
1397
1410
  end
1398
1411
  end
1399
1412
 
1413
+ # Configuration of all network bandwidth tiers
1414
+ class ClusterNetworkPerformanceConfig
1415
+ include Google::Apis::Core::Hashable
1416
+
1417
+ # Specifies the total network bandwidth tier for the NodePool.
1418
+ # Corresponds to the JSON property `totalEgressBandwidthTier`
1419
+ # @return [String]
1420
+ attr_accessor :total_egress_bandwidth_tier
1421
+
1422
+ def initialize(**args)
1423
+ update!(**args)
1424
+ end
1425
+
1426
+ # Update properties of this object
1427
+ def update!(**args)
1428
+ @total_egress_bandwidth_tier = args[:total_egress_bandwidth_tier] if args.key?(:total_egress_bandwidth_tier)
1429
+ end
1430
+ end
1431
+
1400
1432
  # Telemetry integration for the cluster.
1401
1433
  class ClusterTelemetry
1402
1434
  include Google::Apis::Core::Hashable
@@ -1613,6 +1645,11 @@ module Google
1613
1645
  # @return [String]
1614
1646
  attr_accessor :desired_monitoring_service
1615
1647
 
1648
+ # Configuration of all network bandwidth tiers
1649
+ # Corresponds to the JSON property `desiredNetworkPerformanceConfig`
1650
+ # @return [Google::Apis::ContainerV1beta1::ClusterNetworkPerformanceConfig]
1651
+ attr_accessor :desired_network_performance_config
1652
+
1616
1653
  # Collection of Compute Engine network tags that can be applied to a node's
1617
1654
  # underlying VM instance. (See `tags` field in [`NodeConfig`](/kubernetes-engine/
1618
1655
  # docs/reference/rest/v1/NodeConfig)).
@@ -1794,6 +1831,7 @@ module Google
1794
1831
  @desired_mesh_certificates = args[:desired_mesh_certificates] if args.key?(:desired_mesh_certificates)
1795
1832
  @desired_monitoring_config = args[:desired_monitoring_config] if args.key?(:desired_monitoring_config)
1796
1833
  @desired_monitoring_service = args[:desired_monitoring_service] if args.key?(:desired_monitoring_service)
1834
+ @desired_network_performance_config = args[:desired_network_performance_config] if args.key?(:desired_network_performance_config)
1797
1835
  @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)
1798
1836
  @desired_node_pool_autoscaling = args[:desired_node_pool_autoscaling] if args.key?(:desired_node_pool_autoscaling)
1799
1837
  @desired_node_pool_id = args[:desired_node_pool_id] if args.key?(:desired_node_pool_id)
@@ -2780,6 +2818,13 @@ module Google
2780
2818
  attr_accessor :create_subnetwork
2781
2819
  alias_method :create_subnetwork?, :create_subnetwork
2782
2820
 
2821
+ # Output only. [Output only] The utilization of the cluster default IPv4 range
2822
+ # for pod. The ratio is Usage/[Total number of IPs in the secondary range],
2823
+ # Usage=numNodes*numZones*podIPsPerNode.
2824
+ # Corresponds to the JSON property `defaultPodIpv4RangeUtilization`
2825
+ # @return [Float]
2826
+ attr_accessor :default_pod_ipv4_range_utilization
2827
+
2783
2828
  # The ipv6 access type (internal or external) when create_subnetwork is true
2784
2829
  # Corresponds to the JSON property `ipv6AccessType`
2785
2830
  # @return [String]
@@ -2895,6 +2940,7 @@ module Google
2895
2940
  @cluster_ipv4_cidr_block = args[:cluster_ipv4_cidr_block] if args.key?(:cluster_ipv4_cidr_block)
2896
2941
  @cluster_secondary_range_name = args[:cluster_secondary_range_name] if args.key?(:cluster_secondary_range_name)
2897
2942
  @create_subnetwork = args[:create_subnetwork] if args.key?(:create_subnetwork)
2943
+ @default_pod_ipv4_range_utilization = args[:default_pod_ipv4_range_utilization] if args.key?(:default_pod_ipv4_range_utilization)
2898
2944
  @ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
2899
2945
  @node_ipv4_cidr = args[:node_ipv4_cidr] if args.key?(:node_ipv4_cidr)
2900
2946
  @node_ipv4_cidr_block = args[:node_ipv4_cidr_block] if args.key?(:node_ipv4_cidr_block)
@@ -3794,6 +3840,11 @@ module Google
3794
3840
  # @return [String]
3795
3841
  attr_accessor :network
3796
3842
 
3843
+ # Configuration of all network bandwidth tiers
3844
+ # Corresponds to the JSON property `networkPerformanceConfig`
3845
+ # @return [Google::Apis::ContainerV1beta1::ClusterNetworkPerformanceConfig]
3846
+ attr_accessor :network_performance_config
3847
+
3797
3848
  # The desired state of IPv6 connectivity to Google Services. By default, no
3798
3849
  # private IPv6 access to or from Google Services (all access will be via IPv4)
3799
3850
  # Corresponds to the JSON property `privateIpv6GoogleAccess`
@@ -3826,6 +3877,7 @@ module Google
3826
3877
  @enable_l4ilb_subsetting = args[:enable_l4ilb_subsetting] if args.key?(:enable_l4ilb_subsetting)
3827
3878
  @gateway_api_config = args[:gateway_api_config] if args.key?(:gateway_api_config)
3828
3879
  @network = args[:network] if args.key?(:network)
3880
+ @network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
3829
3881
  @private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
3830
3882
  @service_external_ips_config = args[:service_external_ips_config] if args.key?(:service_external_ips_config)
3831
3883
  @subnetwork = args[:subnetwork] if args.key?(:subnetwork)
@@ -4135,7 +4187,7 @@ module Google
4135
4187
  attr_accessor :oauth_scopes
4136
4188
 
4137
4189
  # Whether the nodes are created as preemptible VM instances. See: https://cloud.
4138
- # google.com/compute/docs/instances/preemptible for more inforamtion about
4190
+ # google.com/compute/docs/instances/preemptible for more information about
4139
4191
  # preemptible VM instances.
4140
4192
  # Corresponds to the JSON property `preemptible`
4141
4193
  # @return [Boolean]
@@ -4316,6 +4368,12 @@ module Google
4316
4368
  # @return [String]
4317
4369
  attr_accessor :cpu_manager_policy
4318
4370
 
4371
+ # Enable or disable Kubelet read only port.
4372
+ # Corresponds to the JSON property `insecureKubeletReadonlyPortEnabled`
4373
+ # @return [Boolean]
4374
+ attr_accessor :insecure_kubelet_readonly_port_enabled
4375
+ alias_method :insecure_kubelet_readonly_port_enabled?, :insecure_kubelet_readonly_port_enabled
4376
+
4319
4377
  # Set the Pod PID limits. See https://kubernetes.io/docs/concepts/policy/pid-
4320
4378
  # limiting/#pod-pid-limits Controls the maximum number of processes allowed to
4321
4379
  # run in a pod. The value must be greater than or equal to 1024 and less than
@@ -4333,6 +4391,7 @@ module Google
4333
4391
  @cpu_cfs_quota = args[:cpu_cfs_quota] if args.key?(:cpu_cfs_quota)
4334
4392
  @cpu_cfs_quota_period = args[:cpu_cfs_quota_period] if args.key?(:cpu_cfs_quota_period)
4335
4393
  @cpu_manager_policy = args[:cpu_manager_policy] if args.key?(:cpu_manager_policy)
4394
+ @insecure_kubelet_readonly_port_enabled = args[:insecure_kubelet_readonly_port_enabled] if args.key?(:insecure_kubelet_readonly_port_enabled)
4336
4395
  @pod_pids_limit = args[:pod_pids_limit] if args.key?(:pod_pids_limit)
4337
4396
  end
4338
4397
  end
@@ -4436,6 +4495,13 @@ module Google
4436
4495
  # @return [String]
4437
4496
  attr_accessor :pod_ipv4_cidr_block
4438
4497
 
4498
+ # Output only. [Output only] The utilization of the IPv4 range for pod. The
4499
+ # ratio is Usage/[Total number of IPs in the secondary range], Usage=numNodes*
4500
+ # numZones*podIPsPerNode.
4501
+ # Corresponds to the JSON property `podIpv4RangeUtilization`
4502
+ # @return [Float]
4503
+ attr_accessor :pod_ipv4_range_utilization
4504
+
4439
4505
  # The ID of the secondary range for pod IPs. If `create_pod_range` is true, this
4440
4506
  # ID is used for the new range. If `create_pod_range` is false, uses an existing
4441
4507
  # secondary range with this ID. Only applicable if `ip_allocation_policy.
@@ -4456,6 +4522,7 @@ module Google
4456
4522
  @network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
4457
4523
  @pod_cidr_overprovision_config = args[:pod_cidr_overprovision_config] if args.key?(:pod_cidr_overprovision_config)
4458
4524
  @pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
4525
+ @pod_ipv4_range_utilization = args[:pod_ipv4_range_utilization] if args.key?(:pod_ipv4_range_utilization)
4459
4526
  @pod_range = args[:pod_range] if args.key?(:pod_range)
4460
4527
  end
4461
4528
  end
@@ -5017,6 +5084,12 @@ module Google
5017
5084
  class PlacementPolicy
5018
5085
  include Google::Apis::Core::Hashable
5019
5086
 
5087
+ # TPU placement topology for pod slice node pool. https://cloud.google.com/tpu/
5088
+ # docs/types-topologies#tpu_topologies
5089
+ # Corresponds to the JSON property `tpuTopology`
5090
+ # @return [String]
5091
+ attr_accessor :tpu_topology
5092
+
5020
5093
  # The type of placement.
5021
5094
  # Corresponds to the JSON property `type`
5022
5095
  # @return [String]
@@ -5028,6 +5101,7 @@ module Google
5028
5101
 
5029
5102
  # Update properties of this object
5030
5103
  def update!(**args)
5104
+ @tpu_topology = args[:tpu_topology] if args.key?(:tpu_topology)
5031
5105
  @type = args[:type] if args.key?(:type)
5032
5106
  end
5033
5107
  end
@@ -5226,6 +5300,31 @@ module Google
5226
5300
  end
5227
5301
  end
5228
5302
 
5303
+ # RangeInfo contains the range name and the range utilization by this cluster.
5304
+ class RangeInfo
5305
+ include Google::Apis::Core::Hashable
5306
+
5307
+ # Output only. [Output only] Name of a range.
5308
+ # Corresponds to the JSON property `rangeName`
5309
+ # @return [String]
5310
+ attr_accessor :range_name
5311
+
5312
+ # Output only. [Output only] The utilization of the range.
5313
+ # Corresponds to the JSON property `utilization`
5314
+ # @return [Float]
5315
+ attr_accessor :utilization
5316
+
5317
+ def initialize(**args)
5318
+ update!(**args)
5319
+ end
5320
+
5321
+ # Update properties of this object
5322
+ def update!(**args)
5323
+ @range_name = args[:range_name] if args.key?(:range_name)
5324
+ @utilization = args[:utilization] if args.key?(:utilization)
5325
+ end
5326
+ end
5327
+
5229
5328
  # Represents an arbitrary window of time that recurs.
5230
5329
  class RecurringTimeWindow
5231
5330
  include Google::Apis::Core::Hashable
@@ -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.51.0"
19
+ GEM_VERSION = "0.53.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
@@ -154,6 +154,12 @@ module Google
154
154
  include Google::Apis::Core::JsonObjectSupport
155
155
  end
156
156
 
157
+ class ClusterNetworkPerformanceConfig
158
+ class Representation < Google::Apis::Core::JsonRepresentation; end
159
+
160
+ include Google::Apis::Core::JsonObjectSupport
161
+ end
162
+
157
163
  class ClusterTelemetry
158
164
  class Representation < Google::Apis::Core::JsonRepresentation; end
159
165
 
@@ -736,6 +742,12 @@ module Google
736
742
  include Google::Apis::Core::JsonObjectSupport
737
743
  end
738
744
 
745
+ class RangeInfo
746
+ class Representation < Google::Apis::Core::JsonRepresentation; end
747
+
748
+ include Google::Apis::Core::JsonObjectSupport
749
+ end
750
+
739
751
  class RecurringTimeWindow
740
752
  class Representation < Google::Apis::Core::JsonRepresentation; end
741
753
 
@@ -1077,6 +1089,8 @@ module Google
1077
1089
  class AdditionalPodRangesConfig
1078
1090
  # @private
1079
1091
  class Representation < Google::Apis::Core::JsonRepresentation
1092
+ collection :pod_range_info, as: 'podRangeInfo', class: Google::Apis::ContainerV1beta1::RangeInfo, decorator: Google::Apis::ContainerV1beta1::RangeInfo::Representation
1093
+
1080
1094
  collection :pod_range_names, as: 'podRangeNames'
1081
1095
  end
1082
1096
  end
@@ -1164,6 +1178,7 @@ module Google
1164
1178
  property :disk_size_gb, as: 'diskSizeGb'
1165
1179
  property :disk_type, as: 'diskType'
1166
1180
  property :image_type, as: 'imageType'
1181
+ property :insecure_kubelet_readonly_port_enabled, as: 'insecureKubeletReadonlyPortEnabled'
1167
1182
  property :management, as: 'management', class: Google::Apis::ContainerV1beta1::NodeManagement, decorator: Google::Apis::ContainerV1beta1::NodeManagement::Representation
1168
1183
 
1169
1184
  property :min_cpu_platform, as: 'minCpuPlatform'
@@ -1405,6 +1420,13 @@ module Google
1405
1420
  end
1406
1421
  end
1407
1422
 
1423
+ class ClusterNetworkPerformanceConfig
1424
+ # @private
1425
+ class Representation < Google::Apis::Core::JsonRepresentation
1426
+ property :total_egress_bandwidth_tier, as: 'totalEgressBandwidthTier'
1427
+ end
1428
+ end
1429
+
1408
1430
  class ClusterTelemetry
1409
1431
  # @private
1410
1432
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1469,6 +1491,8 @@ module Google
1469
1491
  property :desired_monitoring_config, as: 'desiredMonitoringConfig', class: Google::Apis::ContainerV1beta1::MonitoringConfig, decorator: Google::Apis::ContainerV1beta1::MonitoringConfig::Representation
1470
1492
 
1471
1493
  property :desired_monitoring_service, as: 'desiredMonitoringService'
1494
+ property :desired_network_performance_config, as: 'desiredNetworkPerformanceConfig', class: Google::Apis::ContainerV1beta1::ClusterNetworkPerformanceConfig, decorator: Google::Apis::ContainerV1beta1::ClusterNetworkPerformanceConfig::Representation
1495
+
1472
1496
  property :desired_node_pool_auto_config_network_tags, as: 'desiredNodePoolAutoConfigNetworkTags', class: Google::Apis::ContainerV1beta1::NetworkTags, decorator: Google::Apis::ContainerV1beta1::NetworkTags::Representation
1473
1497
 
1474
1498
  property :desired_node_pool_autoscaling, as: 'desiredNodePoolAutoscaling', class: Google::Apis::ContainerV1beta1::NodePoolAutoscaling, decorator: Google::Apis::ContainerV1beta1::NodePoolAutoscaling::Representation
@@ -1795,6 +1819,7 @@ module Google
1795
1819
  property :cluster_ipv4_cidr_block, as: 'clusterIpv4CidrBlock'
1796
1820
  property :cluster_secondary_range_name, as: 'clusterSecondaryRangeName'
1797
1821
  property :create_subnetwork, as: 'createSubnetwork'
1822
+ property :default_pod_ipv4_range_utilization, as: 'defaultPodIpv4RangeUtilization'
1798
1823
  property :ipv6_access_type, as: 'ipv6AccessType'
1799
1824
  property :node_ipv4_cidr, as: 'nodeIpv4Cidr'
1800
1825
  property :node_ipv4_cidr_block, as: 'nodeIpv4CidrBlock'
@@ -2087,6 +2112,8 @@ module Google
2087
2112
  property :gateway_api_config, as: 'gatewayApiConfig', class: Google::Apis::ContainerV1beta1::GatewayApiConfig, decorator: Google::Apis::ContainerV1beta1::GatewayApiConfig::Representation
2088
2113
 
2089
2114
  property :network, as: 'network'
2115
+ property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ContainerV1beta1::ClusterNetworkPerformanceConfig, decorator: Google::Apis::ContainerV1beta1::ClusterNetworkPerformanceConfig::Representation
2116
+
2090
2117
  property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
2091
2118
  property :service_external_ips_config, as: 'serviceExternalIpsConfig', class: Google::Apis::ContainerV1beta1::ServiceExternalIPsConfig, decorator: Google::Apis::ContainerV1beta1::ServiceExternalIPsConfig::Representation
2092
2119
 
@@ -2209,6 +2236,7 @@ module Google
2209
2236
  property :cpu_cfs_quota, as: 'cpuCfsQuota'
2210
2237
  property :cpu_cfs_quota_period, as: 'cpuCfsQuotaPeriod'
2211
2238
  property :cpu_manager_policy, as: 'cpuManagerPolicy'
2239
+ property :insecure_kubelet_readonly_port_enabled, as: 'insecureKubeletReadonlyPortEnabled'
2212
2240
  property :pod_pids_limit, :numeric_string => true, as: 'podPidsLimit'
2213
2241
  end
2214
2242
  end
@@ -2240,6 +2268,7 @@ module Google
2240
2268
  property :pod_cidr_overprovision_config, as: 'podCidrOverprovisionConfig', class: Google::Apis::ContainerV1beta1::PodCidrOverprovisionConfig, decorator: Google::Apis::ContainerV1beta1::PodCidrOverprovisionConfig::Representation
2241
2269
 
2242
2270
  property :pod_ipv4_cidr_block, as: 'podIpv4CidrBlock'
2271
+ property :pod_ipv4_range_utilization, as: 'podIpv4RangeUtilization'
2243
2272
  property :pod_range, as: 'podRange'
2244
2273
  end
2245
2274
  end
@@ -2382,6 +2411,7 @@ module Google
2382
2411
  class PlacementPolicy
2383
2412
  # @private
2384
2413
  class Representation < Google::Apis::Core::JsonRepresentation
2414
+ property :tpu_topology, as: 'tpuTopology'
2385
2415
  property :type, as: 'type'
2386
2416
  end
2387
2417
  end
@@ -2441,6 +2471,14 @@ module Google
2441
2471
  end
2442
2472
  end
2443
2473
 
2474
+ class RangeInfo
2475
+ # @private
2476
+ class Representation < Google::Apis::Core::JsonRepresentation
2477
+ property :range_name, as: 'rangeName'
2478
+ property :utilization, as: 'utilization'
2479
+ end
2480
+ end
2481
+
2444
2482
  class RecurringTimeWindow
2445
2483
  # @private
2446
2484
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-container_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.51.0
4
+ version: 0.53.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-04 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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.51.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1beta1/v0.53.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-container_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []