google-cloud-container-v1 0.16.3 → 0.18.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: 869c7a7b7e5c858bf0a4a5052bca9b070dbde598968116b94d19599f9430f26f
4
- data.tar.gz: 451284b60a7bc1f61d4acd37dfc71df1f206ee3b1ef098518fcef07c8f24e807
3
+ metadata.gz: 8785038f511121dfeb49d4687faef04b1e318b5602ec9fa980f2b9f7c72c4690
4
+ data.tar.gz: ffbaac021f77b98034f939bc296ef9eef9e03361fbb2927d6027a3fdf0f59384
5
5
  SHA512:
6
- metadata.gz: 9b5d78f741d72087bcbecb7e6735d20df91cdbb8d280c04cad81ffcc2bc53695eab82420eff56d12f8648b31370bbc503883e96efd1061bb6abbd64e2e470d81
7
- data.tar.gz: e0f6106930190b6af444805c8a9ba5f1596a7aa84c2a76941fc2591196f12e09afe4f97f3aa689b02bd1dc241a026a101f2d3d242268b5655d37529adf2d6ade
6
+ metadata.gz: 7c55c3467234e4449bcc8cf069512e749b63ca57a43a467103aa38046aba5f9bcb32d13f6c4ba287b7739b925cf0f92e84c58713ba45556dc9d935ea96748103
7
+ data.tar.gz: cdb18f638669c10eb8c2ad7c604ce2a8e0b89fc9d6e1451ebbd8fc44ec0776abc92ecb0dd6d99b5d20e610ec1ff9dcd34185eb30c38d71ab8298dd837235bc12
data/README.md CHANGED
@@ -47,7 +47,7 @@ for general usage information.
47
47
 
48
48
  To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
49
49
  The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/current/stdlibs/logger/Logger.html) as shown below,
50
- or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
50
+ or a [`Google::Cloud::Logging::Logger`](https://cloud.google.com/ruby/docs/reference/google-cloud-logging/latest)
51
51
  that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
52
52
  and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
53
53
 
@@ -3687,9 +3687,9 @@ module Google
3687
3687
  # * (`String`) The path to a service account key file in JSON format
3688
3688
  # * (`Hash`) A service account key as a Hash
3689
3689
  # * (`Google::Auth::Credentials`) A googleauth credentials object
3690
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
3690
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
3691
3691
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
3692
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
3692
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
3693
3693
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
3694
3694
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
3695
3695
  # * (`nil`) indicating no credentials
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Container
23
23
  module V1
24
- VERSION = "0.16.3"
24
+ VERSION = "0.18.0"
25
25
  end
26
26
  end
27
27
  end
@@ -83,6 +83,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
83
83
  optional :pod_ipv4_cidr_block, :string, 6
84
84
  proto3_optional :enable_private_nodes, :bool, 9
85
85
  proto3_optional :network_performance_config, :message, 11, "google.container.v1.NodeNetworkConfig.NetworkPerformanceConfig"
86
+ optional :pod_cidr_overprovision_config, :message, 13, "google.container.v1.PodCIDROverprovisionConfig"
86
87
  end
87
88
  add_message "google.container.v1.NodeNetworkConfig.NetworkPerformanceConfig" do
88
89
  proto3_optional :total_egress_bandwidth_tier, :enum, 1, "google.container.v1.NodeNetworkConfig.NetworkPerformanceConfig.Tier"
@@ -244,6 +245,9 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
244
245
  value :DISABLED, 1
245
246
  value :PROJECT_SINGLETON_POLICY_ENFORCE, 2
246
247
  end
248
+ add_message "google.container.v1.PodCIDROverprovisionConfig" do
249
+ optional :disable, :bool, 1
250
+ end
247
251
  add_message "google.container.v1.IPAllocationPolicy" do
248
252
  optional :use_ip_aliases, :bool, 1
249
253
  optional :create_subnetwork, :bool, 2
@@ -260,8 +264,10 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
260
264
  optional :use_routes, :bool, 15
261
265
  optional :stack_type, :enum, 16, "google.container.v1.StackType"
262
266
  optional :ipv6_access_type, :enum, 17, "google.container.v1.IPv6AccessType"
267
+ optional :pod_cidr_overprovision_config, :message, 21, "google.container.v1.PodCIDROverprovisionConfig"
263
268
  optional :subnet_ipv6_cidr_block, :string, 22
264
269
  optional :services_ipv6_cidr_block, :string, 23
270
+ optional :additional_pod_ranges_config, :message, 24, "google.container.v1.AdditionalPodRangesConfig"
265
271
  end
266
272
  add_message "google.container.v1.Cluster" do
267
273
  optional :name, :string, 1
@@ -327,6 +333,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
327
333
  optional :monitoring_config, :message, 133, "google.container.v1.MonitoringConfig"
328
334
  optional :node_pool_auto_config, :message, 136, "google.container.v1.NodePoolAutoConfig"
329
335
  optional :etag, :string, 139
336
+ optional :fleet, :message, 140, "google.container.v1.Fleet"
330
337
  end
331
338
  add_enum "google.container.v1.Cluster.Status" do
332
339
  value :STATUS_UNSPECIFIED, 0
@@ -388,6 +395,10 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
388
395
  optional :etag, :string, 115
389
396
  optional :desired_node_pool_logging_config, :message, 116, "google.container.v1.NodePoolLoggingConfig"
390
397
  optional :desired_stack_type, :enum, 119, "google.container.v1.StackType"
398
+ optional :additional_pod_ranges_config, :message, 120, "google.container.v1.AdditionalPodRangesConfig"
399
+ optional :removed_additional_pod_ranges_config, :message, 121, "google.container.v1.AdditionalPodRangesConfig"
400
+ end
401
+ add_message "google.container.v1.AdditionalPodRangesConfig" do
391
402
  end
392
403
  add_message "google.container.v1.Operation" do
393
404
  optional :name, :string, 1
@@ -1152,6 +1163,11 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
1152
1163
  add_message "google.container.v1.ManagedPrometheusConfig" do
1153
1164
  optional :enabled, :bool, 1
1154
1165
  end
1166
+ add_message "google.container.v1.Fleet" do
1167
+ optional :project, :string, 1
1168
+ optional :membership, :string, 2
1169
+ optional :pre_registered, :bool, 3
1170
+ end
1155
1171
  add_message "google.container.v1.LocalNvmeSsdBlockConfig" do
1156
1172
  optional :local_ssd_count, :int32, 1
1157
1173
  end
@@ -1242,6 +1258,7 @@ module Google
1242
1258
  NetworkPolicy::Provider = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NetworkPolicy.Provider").enummodule
1243
1259
  BinaryAuthorization = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.BinaryAuthorization").msgclass
1244
1260
  BinaryAuthorization::EvaluationMode = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.BinaryAuthorization.EvaluationMode").enummodule
1261
+ PodCIDROverprovisionConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.PodCIDROverprovisionConfig").msgclass
1245
1262
  IPAllocationPolicy = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.IPAllocationPolicy").msgclass
1246
1263
  Cluster = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.Cluster").msgclass
1247
1264
  Cluster::Status = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.Cluster.Status").enummodule
@@ -1249,6 +1266,7 @@ module Google
1249
1266
  NodePoolDefaults = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NodePoolDefaults").msgclass
1250
1267
  NodeConfigDefaults = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.NodeConfigDefaults").msgclass
1251
1268
  ClusterUpdate = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ClusterUpdate").msgclass
1269
+ AdditionalPodRangesConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.AdditionalPodRangesConfig").msgclass
1252
1270
  Operation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.Operation").msgclass
1253
1271
  Operation::Status = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.Operation.Status").enummodule
1254
1272
  Operation::Type = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.Operation.Type").enummodule
@@ -1378,6 +1396,7 @@ module Google
1378
1396
  MonitoringComponentConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.MonitoringComponentConfig").msgclass
1379
1397
  MonitoringComponentConfig::Component = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.MonitoringComponentConfig.Component").enummodule
1380
1398
  ManagedPrometheusConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.ManagedPrometheusConfig").msgclass
1399
+ Fleet = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.Fleet").msgclass
1381
1400
  LocalNvmeSsdBlockConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.LocalNvmeSsdBlockConfig").msgclass
1382
1401
  EphemeralStorageLocalSsdConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.EphemeralStorageLocalSsdConfig").msgclass
1383
1402
  PrivateIPv6GoogleAccess = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.container.v1.PrivateIPv6GoogleAccess").enummodule
@@ -35,7 +35,9 @@ module Google
35
35
  # Details about how and where to publish client libraries.
36
36
  # @!attribute [rw] version
37
37
  # @return [::String]
38
- # Version of the API to apply these settings to.
38
+ # Version of the API to apply these settings to. This is the full protobuf
39
+ # package for the API, ending in the version element.
40
+ # Examples: "google.cloud.speech.v1" and "google.spanner.admin.database.v1".
39
41
  # @!attribute [rw] launch_stage
40
42
  # @return [::Google::Api::LaunchStage]
41
43
  # Launch stage of this version of the API.
@@ -111,6 +113,10 @@ module Google
111
113
  # Client library settings. If the same version string appears multiple
112
114
  # times in this list, then the last one wins. Settings from earlier
113
115
  # settings with the same version string are discarded.
116
+ # @!attribute [rw] proto_reference_documentation_uri
117
+ # @return [::String]
118
+ # Optional link to proto reference documentation. Example:
119
+ # https://cloud.google.com/pubsub/lite/docs/reference/rpc
114
120
  class Publishing
115
121
  include ::Google::Protobuf::MessageExts
116
122
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -203,9 +209,57 @@ module Google
203
209
  # @!attribute [rw] common
204
210
  # @return [::Google::Api::CommonLanguageSettings]
205
211
  # Some settings.
212
+ # @!attribute [rw] renamed_services
213
+ # @return [::Google::Protobuf::Map{::String => ::String}]
214
+ # Map from original service names to renamed versions.
215
+ # This is used when the default generated types
216
+ # would cause a naming conflict. (Neither name is
217
+ # fully-qualified.)
218
+ # Example: Subscriber to SubscriberServiceApi.
219
+ # @!attribute [rw] renamed_resources
220
+ # @return [::Google::Protobuf::Map{::String => ::String}]
221
+ # Map from full resource types to the effective short name
222
+ # for the resource. This is used when otherwise resource
223
+ # named from different services would cause naming collisions.
224
+ # Example entry:
225
+ # "datalabeling.googleapis.com/Dataset": "DataLabelingDataset"
226
+ # @!attribute [rw] ignored_resources
227
+ # @return [::Array<::String>]
228
+ # List of full resource types to ignore during generation.
229
+ # This is typically used for API-specific Location resources,
230
+ # which should be handled by the generator as if they were actually
231
+ # the common Location resources.
232
+ # Example entry: "documentai.googleapis.com/Location"
233
+ # @!attribute [rw] forced_namespace_aliases
234
+ # @return [::Array<::String>]
235
+ # Namespaces which must be aliased in snippets due to
236
+ # a known (but non-generator-predictable) naming collision
237
+ # @!attribute [rw] handwritten_signatures
238
+ # @return [::Array<::String>]
239
+ # Method signatures (in the form "service.method(signature)")
240
+ # which are provided separately, so shouldn't be generated.
241
+ # Snippets *calling* these methods are still generated, however.
206
242
  class DotnetSettings
207
243
  include ::Google::Protobuf::MessageExts
208
244
  extend ::Google::Protobuf::MessageExts::ClassMethods
245
+
246
+ # @!attribute [rw] key
247
+ # @return [::String]
248
+ # @!attribute [rw] value
249
+ # @return [::String]
250
+ class RenamedServicesEntry
251
+ include ::Google::Protobuf::MessageExts
252
+ extend ::Google::Protobuf::MessageExts::ClassMethods
253
+ end
254
+
255
+ # @!attribute [rw] key
256
+ # @return [::String]
257
+ # @!attribute [rw] value
258
+ # @return [::String]
259
+ class RenamedResourcesEntry
260
+ include ::Google::Protobuf::MessageExts
261
+ extend ::Google::Protobuf::MessageExts::ClassMethods
262
+ end
209
263
  end
210
264
 
211
265
  # Settings for Ruby client libraries.
@@ -240,8 +294,8 @@ module Google
240
294
  # Example of a YAML configuration::
241
295
  #
242
296
  # publishing:
243
- # method_behavior:
244
- # - selector: CreateAdDomain
297
+ # method_settings:
298
+ # - selector: google.cloud.speech.v2.Speech.BatchRecognize
245
299
  # long_running:
246
300
  # initial_poll_delay:
247
301
  # seconds: 60 # 1 minute
@@ -440,6 +440,20 @@ module Google
440
440
  # @!attribute [rw] network_performance_config
441
441
  # @return [::Google::Cloud::Container::V1::NodeNetworkConfig::NetworkPerformanceConfig]
442
442
  # Network bandwidth tier configuration.
443
+ # @!attribute [rw] pod_cidr_overprovision_config
444
+ # @return [::Google::Cloud::Container::V1::PodCIDROverprovisionConfig]
445
+ # [PRIVATE FIELD]
446
+ # Pod CIDR size overprovisioning config for the nodepool.
447
+ #
448
+ # Pod CIDR size per node depends on max_pods_per_node. By default, the value
449
+ # of max_pods_per_node is rounded off to next power of 2 and we then double
450
+ # that to get the size of pod CIDR block per node.
451
+ # Example: max_pods_per_node of 30 would result in 64 IPs (/26).
452
+ #
453
+ # This config can disable the doubling of IPs (we still round off to next
454
+ # power of 2)
455
+ # Example: max_pods_per_node of 30 will result in 32 IPs (/27) when
456
+ # overprovisioning is disabled.
443
457
  class NodeNetworkConfig
444
458
  include ::Google::Protobuf::MessageExts
445
459
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1012,6 +1026,17 @@ module Google
1012
1026
  end
1013
1027
  end
1014
1028
 
1029
+ # [PRIVATE FIELD]
1030
+ # Config for pod CIDR size overprovisioning.
1031
+ # @!attribute [rw] disable
1032
+ # @return [::Boolean]
1033
+ # Whether Pod CIDR overprovisioning is disabled.
1034
+ # Note: Pod CIDR overprovisioning is enabled by default.
1035
+ class PodCIDROverprovisionConfig
1036
+ include ::Google::Protobuf::MessageExts
1037
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1038
+ end
1039
+
1015
1040
  # Configuration for controlling how IPs are allocated in the cluster.
1016
1041
  # @!attribute [rw] use_ip_aliases
1017
1042
  # @return [::Boolean]
@@ -1135,6 +1160,20 @@ module Google
1135
1160
  # @!attribute [rw] ipv6_access_type
1136
1161
  # @return [::Google::Cloud::Container::V1::IPv6AccessType]
1137
1162
  # The ipv6 access type (internal or external) when create_subnetwork is true
1163
+ # @!attribute [rw] pod_cidr_overprovision_config
1164
+ # @return [::Google::Cloud::Container::V1::PodCIDROverprovisionConfig]
1165
+ # [PRIVATE FIELD]
1166
+ # Pod CIDR size overprovisioning config for the cluster.
1167
+ #
1168
+ # Pod CIDR size per node depends on max_pods_per_node. By default, the value
1169
+ # of max_pods_per_node is doubled and then rounded off to next power of 2 to
1170
+ # get the size of pod CIDR block per node.
1171
+ # Example: max_pods_per_node of 30 would result in 64 IPs (/26).
1172
+ #
1173
+ # This config can disable the doubling of IPs (we still round off to next
1174
+ # power of 2)
1175
+ # Example: max_pods_per_node of 30 will result in 32 IPs (/27) when
1176
+ # overprovisioning is disabled.
1138
1177
  # @!attribute [r] subnet_ipv6_cidr_block
1139
1178
  # @return [::String]
1140
1179
  # Output only. [Output only] The subnet's IPv6 CIDR block used by nodes and
@@ -1142,6 +1181,12 @@ module Google
1142
1181
  # @!attribute [r] services_ipv6_cidr_block
1143
1182
  # @return [::String]
1144
1183
  # Output only. [Output only] The services IPv6 CIDR block for the cluster.
1184
+ # @!attribute [r] additional_pod_ranges_config
1185
+ # @return [::Google::Cloud::Container::V1::AdditionalPodRangesConfig]
1186
+ # Output only. [Output only] The additional pod ranges that are added to the
1187
+ # cluster. These pod ranges can be used by new node pools to allocate pod IPs
1188
+ # automatically. Once the range is removed it will not show up in
1189
+ # IPAllocationPolicy.
1145
1190
  class IPAllocationPolicy
1146
1191
  include ::Google::Protobuf::MessageExts
1147
1192
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1463,6 +1508,9 @@ module Google
1463
1508
  # This checksum is computed by the server based on the value of cluster
1464
1509
  # fields, and may be sent on update requests to ensure the client has an
1465
1510
  # up-to-date value before proceeding.
1511
+ # @!attribute [rw] fleet
1512
+ # @return [::Google::Cloud::Container::V1::Fleet]
1513
+ # Fleet information for the cluster.
1466
1514
  class Cluster
1467
1515
  include ::Google::Protobuf::MessageExts
1468
1516
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1723,11 +1771,27 @@ module Google
1723
1771
  # The desired stack type of the cluster.
1724
1772
  # If a stack type is provided and does not match the current stack type of
1725
1773
  # the cluster, update will attempt to change the stack type to the new type.
1774
+ # @!attribute [rw] additional_pod_ranges_config
1775
+ # @return [::Google::Cloud::Container::V1::AdditionalPodRangesConfig]
1776
+ # The additional pod ranges to be added to the cluster. These pod ranges
1777
+ # can be used by node pools to allocate pod IPs.
1778
+ # @!attribute [rw] removed_additional_pod_ranges_config
1779
+ # @return [::Google::Cloud::Container::V1::AdditionalPodRangesConfig]
1780
+ # The additional pod ranges that are to be removed from the cluster.
1781
+ # The pod ranges specified here must have been specified earlier in the
1782
+ # 'additional_pod_ranges_config' argument.
1726
1783
  class ClusterUpdate
1727
1784
  include ::Google::Protobuf::MessageExts
1728
1785
  extend ::Google::Protobuf::MessageExts::ClassMethods
1729
1786
  end
1730
1787
 
1788
+ # AdditionalPodRangesConfig is the configuration for additional pod secondary
1789
+ # ranges supporting the ClusterUpdate message.
1790
+ class AdditionalPodRangesConfig
1791
+ include ::Google::Protobuf::MessageExts
1792
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1793
+ end
1794
+
1731
1795
  # This operation resource represents operations that may have happened or are
1732
1796
  # happening on the cluster. All fields are output only.
1733
1797
  # @!attribute [rw] name
@@ -4175,8 +4239,9 @@ module Google
4175
4239
  # UNUSED denotes that this range is unclaimed by any cluster.
4176
4240
  UNUSED = 1
4177
4241
 
4178
- # IN_USE_SERVICE denotes that this range is claimed by a cluster for
4179
- # services. It cannot be used for other clusters.
4242
+ # IN_USE_SERVICE denotes that this range is claimed by cluster(s) for
4243
+ # services. User-managed services range can be shared between clusters
4244
+ # within the same subnetwork.
4180
4245
  IN_USE_SERVICE = 2
4181
4246
 
4182
4247
  # IN_USE_SHAREABLE_POD denotes this range was created by the network admin
@@ -4587,6 +4652,26 @@ module Google
4587
4652
  extend ::Google::Protobuf::MessageExts::ClassMethods
4588
4653
  end
4589
4654
 
4655
+ # Fleet is the fleet configuration for the cluster.
4656
+ # @!attribute [rw] project
4657
+ # @return [::String]
4658
+ # The Fleet host project(project ID or project number) where this cluster
4659
+ # will be registered to. This field cannot be changed after the cluster has
4660
+ # been registered.
4661
+ # @!attribute [rw] membership
4662
+ # @return [::String]
4663
+ # [Output only] The full resource name of the registered fleet membership of
4664
+ # the cluster, in the format
4665
+ # `//gkehub.googleapis.com/projects/*/locations/*/memberships/*`.
4666
+ # @!attribute [rw] pre_registered
4667
+ # @return [::Boolean]
4668
+ # [Output only] Whether the cluster has been registered through the fleet
4669
+ # API.
4670
+ class Fleet
4671
+ include ::Google::Protobuf::MessageExts
4672
+ extend ::Google::Protobuf::MessageExts::ClassMethods
4673
+ end
4674
+
4590
4675
  # LocalNvmeSsdBlockConfig contains configuration for using raw-block local
4591
4676
  # NVMe SSD.
4592
4677
  # @!attribute [rw] local_ssd_count
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-container-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.16.3
4
+ version: 0.18.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-03-08 00:00:00.000000000 Z
11
+ date: 2023-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common