google-apis-container_v1 0.25.0 → 0.28.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: 0f91d04a67a55020f9259095c3c9e1d56c6246efd0d9e75f6e998e973b8af9c8
4
- data.tar.gz: d7215f69e5a31497efd0c827a9809ce88f07b6e3bf78b670870f756527725fe6
3
+ metadata.gz: 2f1a7c9852ef396e94bdaa630afa32f38fb69b7faa7d3bb9f931353b1a43ddbe
4
+ data.tar.gz: 31ca5cde103eef1ebaa0ffd3cd822cdf925a4812a2f39767cbe663ccc5c45cec
5
5
  SHA512:
6
- metadata.gz: 2527bad9a5f00ed63500af208c5d1f220fdef917f11f80d288f57c53c9e2fbd0067ca550eb264a5f2c3d2f2eb9ed9cdb4439d10783161e984d7d66e4cfc23586
7
- data.tar.gz: 5552368d0f62694e728e84c8e4a8706e5e9e9d2717c77d297aa00bce3aafbbbb9b9ecdd98dba31589a86f4a794ff94111af3e2e4d099aa114fd94d7bd207c965
6
+ metadata.gz: 2d9b7d03857599901f5049b74094e24a27ddb9878d344268626497f16f7402a156962257e23b4d030f9f039a02ec7d7196e1e65a1124f021fd703f5c61cf3641
7
+ data.tar.gz: bd688b0c12e56ad5067b6841a5ee0c7ecdf0f0eeb0042319a9a455b0835958d88c8cef1010033b659b6504ae5052abe084ae02c0f4861279616644a8c839a20e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-container_v1
2
2
 
3
+ ### v0.28.0 (2022-04-26)
4
+
5
+ * Regenerated from discovery document revision 20220330
6
+
7
+ ### v0.27.0 (2022-04-14)
8
+
9
+ * Regenerated from discovery document revision 20220328
10
+
11
+ ### v0.26.0 (2022-03-21)
12
+
13
+ * Regenerated from discovery document revision 20220308
14
+
3
15
  ### v0.25.0 (2022-03-03)
4
16
 
5
17
  * Regenerated from discovery document revision 20220215
@@ -763,7 +763,9 @@ module Google
763
763
  # @return [Google::Apis::ContainerV1::NetworkPolicy]
764
764
  attr_accessor :network_policy
765
765
 
766
- # Parameters that describe the nodes in a cluster.
766
+ # Parameters that describe the nodes in a cluster. *Note: *GKE Autopilot
767
+ # clusters do not recognize parameters in `NodeConfig`. Use
768
+ # AutoprovisioningNodePoolDefaults instead.
767
769
  # Corresponds to the JSON property `nodeConfig`
768
770
  # @return [Google::Apis::ContainerV1::NodeConfig]
769
771
  attr_accessor :node_config
@@ -1599,8 +1601,7 @@ module Google
1599
1601
  # A generic empty message that you can re-use to avoid defining duplicated empty
1600
1602
  # messages in your APIs. A typical example is to use it as the request or the
1601
1603
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
1602
- # protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
1603
- # `Empty` is empty JSON object ````.
1604
+ # protobuf.Empty) returns (google.protobuf.Empty); `
1604
1605
  class Empty
1605
1606
  include Google::Apis::Core::Hashable
1606
1607
 
@@ -2172,9 +2173,10 @@ module Google
2172
2173
  include Google::Apis::Core::Hashable
2173
2174
 
2174
2175
  # The Linux kernel parameters to be applied to the nodes and all pods running on
2175
- # the nodes. The following parameters are supported. net.core.netdev_max_backlog
2176
- # net.core.rmem_max net.core.wmem_default net.core.wmem_max net.core.optmem_max
2177
- # net.core.somaxconn net.ipv4.tcp_rmem net.ipv4.tcp_wmem net.ipv4.tcp_tw_reuse
2176
+ # the nodes. The following parameters are supported. net.core.busy_poll net.core.
2177
+ # busy_read net.core.netdev_max_backlog net.core.rmem_max net.core.wmem_default
2178
+ # net.core.wmem_max net.core.optmem_max net.core.somaxconn net.ipv4.tcp_rmem net.
2179
+ # ipv4.tcp_wmem net.ipv4.tcp_tw_reuse
2178
2180
  # Corresponds to the JSON property `sysctls`
2179
2181
  # @return [Hash<String,String>]
2180
2182
  attr_accessor :sysctls
@@ -2406,6 +2408,27 @@ module Google
2406
2408
  end
2407
2409
  end
2408
2410
 
2411
+ # ManagedPrometheusConfig defines the configuration for Google Cloud Managed
2412
+ # Service for Prometheus.
2413
+ class ManagedPrometheusConfig
2414
+ include Google::Apis::Core::Hashable
2415
+
2416
+ # Enable Managed Collection.
2417
+ # Corresponds to the JSON property `enabled`
2418
+ # @return [Boolean]
2419
+ attr_accessor :enabled
2420
+ alias_method :enabled?, :enabled
2421
+
2422
+ def initialize(**args)
2423
+ update!(**args)
2424
+ end
2425
+
2426
+ # Update properties of this object
2427
+ def update!(**args)
2428
+ @enabled = args[:enabled] if args.key?(:enabled)
2429
+ end
2430
+ end
2431
+
2409
2432
  # The authentication information for accessing the master endpoint.
2410
2433
  # Authentication can be done using HTTP basic auth or using client certificates.
2411
2434
  class MasterAuth
@@ -2610,6 +2633,12 @@ module Google
2610
2633
  # @return [Google::Apis::ContainerV1::MonitoringComponentConfig]
2611
2634
  attr_accessor :component_config
2612
2635
 
2636
+ # ManagedPrometheusConfig defines the configuration for Google Cloud Managed
2637
+ # Service for Prometheus.
2638
+ # Corresponds to the JSON property `managedPrometheusConfig`
2639
+ # @return [Google::Apis::ContainerV1::ManagedPrometheusConfig]
2640
+ attr_accessor :managed_prometheus_config
2641
+
2613
2642
  def initialize(**args)
2614
2643
  update!(**args)
2615
2644
  end
@@ -2617,6 +2646,7 @@ module Google
2617
2646
  # Update properties of this object
2618
2647
  def update!(**args)
2619
2648
  @component_config = args[:component_config] if args.key?(:component_config)
2649
+ @managed_prometheus_config = args[:managed_prometheus_config] if args.key?(:managed_prometheus_config)
2620
2650
  end
2621
2651
  end
2622
2652
 
@@ -2697,6 +2727,25 @@ module Google
2697
2727
  end
2698
2728
  end
2699
2729
 
2730
+ # Configuration of all network bandwidth tiers
2731
+ class NetworkPerformanceConfig
2732
+ include Google::Apis::Core::Hashable
2733
+
2734
+ # Specifies the total network bandwidth tier for the NodePool.
2735
+ # Corresponds to the JSON property `totalEgressBandwidthTier`
2736
+ # @return [String]
2737
+ attr_accessor :total_egress_bandwidth_tier
2738
+
2739
+ def initialize(**args)
2740
+ update!(**args)
2741
+ end
2742
+
2743
+ # Update properties of this object
2744
+ def update!(**args)
2745
+ @total_egress_bandwidth_tier = args[:total_egress_bandwidth_tier] if args.key?(:total_egress_bandwidth_tier)
2746
+ end
2747
+ end
2748
+
2700
2749
  # Configuration options for the NetworkPolicy feature. https://kubernetes.io/
2701
2750
  # docs/concepts/services-networking/networkpolicies/
2702
2751
  class NetworkPolicy
@@ -2766,7 +2815,9 @@ module Google
2766
2815
  end
2767
2816
  end
2768
2817
 
2769
- # Parameters that describe the nodes in a cluster.
2818
+ # Parameters that describe the nodes in a cluster. *Note: *GKE Autopilot
2819
+ # clusters do not recognize parameters in `NodeConfig`. Use
2820
+ # AutoprovisioningNodePoolDefaults instead.
2770
2821
  class NodeConfig
2771
2822
  include Google::Apis::Core::Hashable
2772
2823
 
@@ -3052,6 +3103,14 @@ module Google
3052
3103
  # @return [String]
3053
3104
  attr_accessor :cpu_manager_policy
3054
3105
 
3106
+ # Set the Pod PID limits. See https://kubernetes.io/docs/concepts/policy/pid-
3107
+ # limiting/#pod-pid-limits Controls the maximum number of processes allowed to
3108
+ # run in a pod. The value must be greater than or equal to 1024 and less than
3109
+ # 4194304.
3110
+ # Corresponds to the JSON property `podPidsLimit`
3111
+ # @return [Fixnum]
3112
+ attr_accessor :pod_pids_limit
3113
+
3055
3114
  def initialize(**args)
3056
3115
  update!(**args)
3057
3116
  end
@@ -3061,6 +3120,27 @@ module Google
3061
3120
  @cpu_cfs_quota = args[:cpu_cfs_quota] if args.key?(:cpu_cfs_quota)
3062
3121
  @cpu_cfs_quota_period = args[:cpu_cfs_quota_period] if args.key?(:cpu_cfs_quota_period)
3063
3122
  @cpu_manager_policy = args[:cpu_manager_policy] if args.key?(:cpu_manager_policy)
3123
+ @pod_pids_limit = args[:pod_pids_limit] if args.key?(:pod_pids_limit)
3124
+ end
3125
+ end
3126
+
3127
+ # Collection of node-level [Kubernetes labels](https://kubernetes.io/docs/
3128
+ # concepts/overview/working-with-objects/labels).
3129
+ class NodeLabels
3130
+ include Google::Apis::Core::Hashable
3131
+
3132
+ # Map of node label keys and node label values.
3133
+ # Corresponds to the JSON property `labels`
3134
+ # @return [Hash<String,String>]
3135
+ attr_accessor :labels
3136
+
3137
+ def initialize(**args)
3138
+ update!(**args)
3139
+ end
3140
+
3141
+ # Update properties of this object
3142
+ def update!(**args)
3143
+ @labels = args[:labels] if args.key?(:labels)
3064
3144
  end
3065
3145
  end
3066
3146
 
@@ -3119,6 +3199,11 @@ module Google
3119
3199
  attr_accessor :create_pod_range
3120
3200
  alias_method :create_pod_range?, :create_pod_range
3121
3201
 
3202
+ # Configuration of all network bandwidth tiers
3203
+ # Corresponds to the JSON property `networkPerformanceConfig`
3204
+ # @return [Google::Apis::ContainerV1::NetworkPerformanceConfig]
3205
+ attr_accessor :network_performance_config
3206
+
3122
3207
  # The IP address range for pod IPs in this node pool. Only applicable if `
3123
3208
  # create_pod_range` is true. Set to blank to have a range chosen with the
3124
3209
  # default size. Set to /netmask (e.g. `/14`) to have a range chosen with a
@@ -3146,6 +3231,7 @@ module Google
3146
3231
  # Update properties of this object
3147
3232
  def update!(**args)
3148
3233
  @create_pod_range = args[:create_pod_range] if args.key?(:create_pod_range)
3234
+ @network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
3149
3235
  @pod_ipv4_cidr_block = args[:pod_ipv4_cidr_block] if args.key?(:pod_ipv4_cidr_block)
3150
3236
  @pod_range = args[:pod_range] if args.key?(:pod_range)
3151
3237
  end
@@ -3171,7 +3257,9 @@ module Google
3171
3257
  # @return [Array<Google::Apis::ContainerV1::StatusCondition>]
3172
3258
  attr_accessor :conditions
3173
3259
 
3174
- # Parameters that describe the nodes in a cluster.
3260
+ # Parameters that describe the nodes in a cluster. *Note: *GKE Autopilot
3261
+ # clusters do not recognize parameters in `NodeConfig`. Use
3262
+ # AutoprovisioningNodePoolDefaults instead.
3175
3263
  # Corresponds to the JSON property `config`
3176
3264
  # @return [Google::Apis::ContainerV1::NodeConfig]
3177
3265
  attr_accessor :config
@@ -3407,6 +3495,26 @@ module Google
3407
3495
  end
3408
3496
  end
3409
3497
 
3498
+ # Collection of Kubernetes [node taints](https://kubernetes.io/docs/concepts/
3499
+ # configuration/taint-and-toleration).
3500
+ class NodeTaints
3501
+ include Google::Apis::Core::Hashable
3502
+
3503
+ # List of node taints.
3504
+ # Corresponds to the JSON property `taints`
3505
+ # @return [Array<Google::Apis::ContainerV1::NodeTaint>]
3506
+ attr_accessor :taints
3507
+
3508
+ def initialize(**args)
3509
+ update!(**args)
3510
+ end
3511
+
3512
+ # Update properties of this object
3513
+ def update!(**args)
3514
+ @taints = args[:taints] if args.key?(:taints)
3515
+ end
3516
+ end
3517
+
3410
3518
  # NotificationConfig is the configuration of notifications.
3411
3519
  class NotificationConfig
3412
3520
  include Google::Apis::Core::Hashable
@@ -5115,6 +5223,12 @@ module Google
5115
5223
  # @return [Google::Apis::ContainerV1::NodeKubeletConfig]
5116
5224
  attr_accessor :kubelet_config
5117
5225
 
5226
+ # Collection of node-level [Kubernetes labels](https://kubernetes.io/docs/
5227
+ # concepts/overview/working-with-objects/labels).
5228
+ # Corresponds to the JSON property `labels`
5229
+ # @return [Google::Apis::ContainerV1::NodeLabels]
5230
+ attr_accessor :labels
5231
+
5118
5232
  # Parameters that can be configured on Linux nodes.
5119
5233
  # Corresponds to the JSON property `linuxNodeConfig`
5120
5234
  # @return [Google::Apis::ContainerV1::LinuxNodeConfig]
@@ -5159,6 +5273,18 @@ module Google
5159
5273
  # @return [String]
5160
5274
  attr_accessor :project_id
5161
5275
 
5276
+ # Collection of Compute Engine network tags that can be applied to a node's
5277
+ # underlying VM instance.
5278
+ # Corresponds to the JSON property `tags`
5279
+ # @return [Google::Apis::ContainerV1::NetworkTags]
5280
+ attr_accessor :tags
5281
+
5282
+ # Collection of Kubernetes [node taints](https://kubernetes.io/docs/concepts/
5283
+ # configuration/taint-and-toleration).
5284
+ # Corresponds to the JSON property `taints`
5285
+ # @return [Google::Apis::ContainerV1::NodeTaints]
5286
+ attr_accessor :taints
5287
+
5162
5288
  # These upgrade settings control the level of parallelism and the level of
5163
5289
  # disruption caused by an upgrade. maxUnavailable controls the number of nodes
5164
5290
  # that can be simultaneously unavailable. maxSurge controls the number of
@@ -5201,12 +5327,15 @@ module Google
5201
5327
  @gvnic = args[:gvnic] if args.key?(:gvnic)
5202
5328
  @image_type = args[:image_type] if args.key?(:image_type)
5203
5329
  @kubelet_config = args[:kubelet_config] if args.key?(:kubelet_config)
5330
+ @labels = args[:labels] if args.key?(:labels)
5204
5331
  @linux_node_config = args[:linux_node_config] if args.key?(:linux_node_config)
5205
5332
  @locations = args[:locations] if args.key?(:locations)
5206
5333
  @name = args[:name] if args.key?(:name)
5207
5334
  @node_pool_id = args[:node_pool_id] if args.key?(:node_pool_id)
5208
5335
  @node_version = args[:node_version] if args.key?(:node_version)
5209
5336
  @project_id = args[:project_id] if args.key?(:project_id)
5337
+ @tags = args[:tags] if args.key?(:tags)
5338
+ @taints = args[:taints] if args.key?(:taints)
5210
5339
  @upgrade_settings = args[:upgrade_settings] if args.key?(:upgrade_settings)
5211
5340
  @workload_metadata_config = args[:workload_metadata_config] if args.key?(:workload_metadata_config)
5212
5341
  @zone = args[:zone] if args.key?(:zone)
@@ -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.25.0"
19
+ GEM_VERSION = "0.28.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220215"
25
+ REVISION = "20220330"
26
26
  end
27
27
  end
28
28
  end
@@ -346,6 +346,12 @@ module Google
346
346
  include Google::Apis::Core::JsonObjectSupport
347
347
  end
348
348
 
349
+ class ManagedPrometheusConfig
350
+ class Representation < Google::Apis::Core::JsonRepresentation; end
351
+
352
+ include Google::Apis::Core::JsonObjectSupport
353
+ end
354
+
349
355
  class MasterAuth
350
356
  class Representation < Google::Apis::Core::JsonRepresentation; end
351
357
 
@@ -394,6 +400,12 @@ module Google
394
400
  include Google::Apis::Core::JsonObjectSupport
395
401
  end
396
402
 
403
+ class NetworkPerformanceConfig
404
+ class Representation < Google::Apis::Core::JsonRepresentation; end
405
+
406
+ include Google::Apis::Core::JsonObjectSupport
407
+ end
408
+
397
409
  class NetworkPolicy
398
410
  class Representation < Google::Apis::Core::JsonRepresentation; end
399
411
 
@@ -430,6 +442,12 @@ module Google
430
442
  include Google::Apis::Core::JsonObjectSupport
431
443
  end
432
444
 
445
+ class NodeLabels
446
+ class Representation < Google::Apis::Core::JsonRepresentation; end
447
+
448
+ include Google::Apis::Core::JsonObjectSupport
449
+ end
450
+
433
451
  class NodeManagement
434
452
  class Representation < Google::Apis::Core::JsonRepresentation; end
435
453
 
@@ -472,6 +490,12 @@ module Google
472
490
  include Google::Apis::Core::JsonObjectSupport
473
491
  end
474
492
 
493
+ class NodeTaints
494
+ class Representation < Google::Apis::Core::JsonRepresentation; end
495
+
496
+ include Google::Apis::Core::JsonObjectSupport
497
+ end
498
+
475
499
  class NotificationConfig
476
500
  class Representation < Google::Apis::Core::JsonRepresentation; end
477
501
 
@@ -1388,6 +1412,13 @@ module Google
1388
1412
  end
1389
1413
  end
1390
1414
 
1415
+ class ManagedPrometheusConfig
1416
+ # @private
1417
+ class Representation < Google::Apis::Core::JsonRepresentation
1418
+ property :enabled, as: 'enabled'
1419
+ end
1420
+ end
1421
+
1391
1422
  class MasterAuth
1392
1423
  # @private
1393
1424
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1446,6 +1477,8 @@ module Google
1446
1477
  class Representation < Google::Apis::Core::JsonRepresentation
1447
1478
  property :component_config, as: 'componentConfig', class: Google::Apis::ContainerV1::MonitoringComponentConfig, decorator: Google::Apis::ContainerV1::MonitoringComponentConfig::Representation
1448
1479
 
1480
+ property :managed_prometheus_config, as: 'managedPrometheusConfig', class: Google::Apis::ContainerV1::ManagedPrometheusConfig, decorator: Google::Apis::ContainerV1::ManagedPrometheusConfig::Representation
1481
+
1449
1482
  end
1450
1483
  end
1451
1484
 
@@ -1467,6 +1500,13 @@ module Google
1467
1500
  end
1468
1501
  end
1469
1502
 
1503
+ class NetworkPerformanceConfig
1504
+ # @private
1505
+ class Representation < Google::Apis::Core::JsonRepresentation
1506
+ property :total_egress_bandwidth_tier, as: 'totalEgressBandwidthTier'
1507
+ end
1508
+ end
1509
+
1470
1510
  class NetworkPolicy
1471
1511
  # @private
1472
1512
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1546,6 +1586,14 @@ module Google
1546
1586
  property :cpu_cfs_quota, as: 'cpuCfsQuota'
1547
1587
  property :cpu_cfs_quota_period, as: 'cpuCfsQuotaPeriod'
1548
1588
  property :cpu_manager_policy, as: 'cpuManagerPolicy'
1589
+ property :pod_pids_limit, :numeric_string => true, as: 'podPidsLimit'
1590
+ end
1591
+ end
1592
+
1593
+ class NodeLabels
1594
+ # @private
1595
+ class Representation < Google::Apis::Core::JsonRepresentation
1596
+ hash :labels, as: 'labels'
1549
1597
  end
1550
1598
  end
1551
1599
 
@@ -1563,6 +1611,8 @@ module Google
1563
1611
  # @private
1564
1612
  class Representation < Google::Apis::Core::JsonRepresentation
1565
1613
  property :create_pod_range, as: 'createPodRange'
1614
+ property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ContainerV1::NetworkPerformanceConfig, decorator: Google::Apis::ContainerV1::NetworkPerformanceConfig::Representation
1615
+
1566
1616
  property :pod_ipv4_cidr_block, as: 'podIpv4CidrBlock'
1567
1617
  property :pod_range, as: 'podRange'
1568
1618
  end
@@ -1632,6 +1682,14 @@ module Google
1632
1682
  end
1633
1683
  end
1634
1684
 
1685
+ class NodeTaints
1686
+ # @private
1687
+ class Representation < Google::Apis::Core::JsonRepresentation
1688
+ collection :taints, as: 'taints', class: Google::Apis::ContainerV1::NodeTaint, decorator: Google::Apis::ContainerV1::NodeTaint::Representation
1689
+
1690
+ end
1691
+ end
1692
+
1635
1693
  class NotificationConfig
1636
1694
  # @private
1637
1695
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2047,6 +2105,8 @@ module Google
2047
2105
  property :image_type, as: 'imageType'
2048
2106
  property :kubelet_config, as: 'kubeletConfig', class: Google::Apis::ContainerV1::NodeKubeletConfig, decorator: Google::Apis::ContainerV1::NodeKubeletConfig::Representation
2049
2107
 
2108
+ property :labels, as: 'labels', class: Google::Apis::ContainerV1::NodeLabels, decorator: Google::Apis::ContainerV1::NodeLabels::Representation
2109
+
2050
2110
  property :linux_node_config, as: 'linuxNodeConfig', class: Google::Apis::ContainerV1::LinuxNodeConfig, decorator: Google::Apis::ContainerV1::LinuxNodeConfig::Representation
2051
2111
 
2052
2112
  collection :locations, as: 'locations'
@@ -2054,6 +2114,10 @@ module Google
2054
2114
  property :node_pool_id, as: 'nodePoolId'
2055
2115
  property :node_version, as: 'nodeVersion'
2056
2116
  property :project_id, as: 'projectId'
2117
+ property :tags, as: 'tags', class: Google::Apis::ContainerV1::NetworkTags, decorator: Google::Apis::ContainerV1::NetworkTags::Representation
2118
+
2119
+ property :taints, as: 'taints', class: Google::Apis::ContainerV1::NodeTaints, decorator: Google::Apis::ContainerV1::NodeTaints::Representation
2120
+
2057
2121
  property :upgrade_settings, as: 'upgradeSettings', class: Google::Apis::ContainerV1::UpgradeSettings, decorator: Google::Apis::ContainerV1::UpgradeSettings::Representation
2058
2122
 
2059
2123
  property :workload_metadata_config, as: 'workloadMetadataConfig', class: Google::Apis::ContainerV1::WorkloadMetadataConfig, decorator: Google::Apis::ContainerV1::WorkloadMetadataConfig::Representation
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.25.0
4
+ version: 0.28.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: 2022-03-07 00:00:00.000000000 Z
11
+ date: 2022-05-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.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-container_v1/v0.28.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: []