google-cloud-security_center-v1p1beta1 0.7.2 → 0.7.3

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: 16f315455013b998105da50a8b6fd6c229078c56394104ef00d4754cb92add20
4
- data.tar.gz: 164eb0f7e90cb66c87cce54acf48a1376f20b4a7382bb58a4667c414e6d0c07a
3
+ metadata.gz: ecc075ed52af61d5baad5aed6fa59853adefea64ba7bebe4d864243a4db039d5
4
+ data.tar.gz: 45dc71a2ec4e6005cba24f17b93ed45270d044f29d73ca27f2264f7d7fa2c3f1
5
5
  SHA512:
6
- metadata.gz: f078ed38729d3281a34a116d489ea3dd2dcd9e557b44496da81a3efa5fbcd13cf257d9e1484488ca28f737f65f1642d32ac4000b4266468b7d170c0576a7fd9d
7
- data.tar.gz: c78dea37420e7f4cfab7071f5db820362b0fc8012a7b083f9fb09ed0d17b4fdb6e43a8e759b5375d67d3153479c65d11d28de621661df8ee0a4c261088d4f7a0
6
+ metadata.gz: aaf20bbe541834acd979ba1d5695d0e89eef4016a4e647e76490e0179ea7f6b76b0ead00b9357ff24185427cfac39f0a324563161efdb75ba09313a047221d9c
7
+ data.tar.gz: 6b400d98051bf0e22add367c257fb75446c7be69d969240ef874d937f47ad2f97706e033abef59cec7463d7cee216b7cc7a6b2d9ce2f86f9ac4caece9fa2591a
@@ -41,13 +41,12 @@ module Google
41
41
  # See {::Google::Cloud::SecurityCenter::V1p1beta1::SecurityCenter::Client::Configuration}
42
42
  # for a description of the configuration fields.
43
43
  #
44
- # ## Example
44
+ # @example
45
45
  #
46
- # To modify the configuration for all SecurityCenter clients:
47
- #
48
- # ::Google::Cloud::SecurityCenter::V1p1beta1::SecurityCenter::Client.configure do |config|
49
- # config.timeout = 10.0
50
- # end
46
+ # # Modify the configuration for all SecurityCenter clients
47
+ # ::Google::Cloud::SecurityCenter::V1p1beta1::SecurityCenter::Client.configure do |config|
48
+ # config.timeout = 10.0
49
+ # end
51
50
  #
52
51
  # @yield [config] Configure the Client client.
53
52
  # @yieldparam config [Client::Configuration]
@@ -173,19 +172,15 @@ module Google
173
172
  ##
174
173
  # Create a new SecurityCenter client object.
175
174
  #
176
- # ## Examples
177
- #
178
- # To create a new SecurityCenter client with the default
179
- # configuration:
175
+ # @example
180
176
  #
181
- # client = ::Google::Cloud::SecurityCenter::V1p1beta1::SecurityCenter::Client.new
177
+ # # Create a client using the default configuration
178
+ # client = ::Google::Cloud::SecurityCenter::V1p1beta1::SecurityCenter::Client.new
182
179
  #
183
- # To create a new SecurityCenter client with a custom
184
- # configuration:
185
- #
186
- # client = ::Google::Cloud::SecurityCenter::V1p1beta1::SecurityCenter::Client.new do |config|
187
- # config.timeout = 10.0
188
- # end
180
+ # # Create a client using a custom configuration
181
+ # client = ::Google::Cloud::SecurityCenter::V1p1beta1::SecurityCenter::Client.new do |config|
182
+ # config.timeout = 10.0
183
+ # end
189
184
  #
190
185
  # @yield [config] Configure the SecurityCenter client.
191
186
  # @yieldparam config [Client::Configuration]
@@ -205,10 +200,9 @@ module Google
205
200
 
206
201
  # Create credentials
207
202
  credentials = @config.credentials
208
- # Use self-signed JWT if the scope and endpoint are unchanged from default,
203
+ # Use self-signed JWT if the endpoint is unchanged from default,
209
204
  # but only if the default endpoint does not have a region prefix.
210
- enable_self_signed_jwt = @config.scope == Client.configure.scope &&
211
- @config.endpoint == Client.configure.endpoint &&
205
+ enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
212
206
  !@config.endpoint.split(".").first.include?("-")
213
207
  credentials ||= Credentials.default scope: @config.scope,
214
208
  enable_self_signed_jwt: enable_self_signed_jwt
@@ -300,7 +294,9 @@ module Google
300
294
  options.apply_defaults timeout: @config.rpcs.create_source.timeout,
301
295
  metadata: metadata,
302
296
  retry_policy: @config.rpcs.create_source.retry_policy
303
- options.apply_defaults metadata: @config.metadata,
297
+
298
+ options.apply_defaults timeout: @config.timeout,
299
+ metadata: @config.metadata,
304
300
  retry_policy: @config.retry_policy
305
301
 
306
302
  @security_center_stub.call_rpc :create_source, request, options: options do |response, operation|
@@ -373,7 +369,9 @@ module Google
373
369
  options.apply_defaults timeout: @config.rpcs.create_finding.timeout,
374
370
  metadata: metadata,
375
371
  retry_policy: @config.rpcs.create_finding.retry_policy
376
- options.apply_defaults metadata: @config.metadata,
372
+
373
+ options.apply_defaults timeout: @config.timeout,
374
+ metadata: @config.metadata,
377
375
  retry_policy: @config.retry_policy
378
376
 
379
377
  @security_center_stub.call_rpc :create_finding, request, options: options do |response, operation|
@@ -447,7 +445,9 @@ module Google
447
445
  options.apply_defaults timeout: @config.rpcs.create_notification_config.timeout,
448
446
  metadata: metadata,
449
447
  retry_policy: @config.rpcs.create_notification_config.retry_policy
450
- options.apply_defaults metadata: @config.metadata,
448
+
449
+ options.apply_defaults timeout: @config.timeout,
450
+ metadata: @config.metadata,
451
451
  retry_policy: @config.retry_policy
452
452
 
453
453
  @security_center_stub.call_rpc :create_notification_config, request, options: options do |response, operation|
@@ -514,7 +514,9 @@ module Google
514
514
  options.apply_defaults timeout: @config.rpcs.delete_notification_config.timeout,
515
515
  metadata: metadata,
516
516
  retry_policy: @config.rpcs.delete_notification_config.retry_policy
517
- options.apply_defaults metadata: @config.metadata,
517
+
518
+ options.apply_defaults timeout: @config.timeout,
519
+ metadata: @config.metadata,
518
520
  retry_policy: @config.retry_policy
519
521
 
520
522
  @security_center_stub.call_rpc :delete_notification_config, request, options: options do |response, operation|
@@ -584,7 +586,9 @@ module Google
584
586
  options.apply_defaults timeout: @config.rpcs.get_iam_policy.timeout,
585
587
  metadata: metadata,
586
588
  retry_policy: @config.rpcs.get_iam_policy.retry_policy
587
- options.apply_defaults metadata: @config.metadata,
589
+
590
+ options.apply_defaults timeout: @config.timeout,
591
+ metadata: @config.metadata,
588
592
  retry_policy: @config.retry_policy
589
593
 
590
594
  @security_center_stub.call_rpc :get_iam_policy, request, options: options do |response, operation|
@@ -651,7 +655,9 @@ module Google
651
655
  options.apply_defaults timeout: @config.rpcs.get_notification_config.timeout,
652
656
  metadata: metadata,
653
657
  retry_policy: @config.rpcs.get_notification_config.retry_policy
654
- options.apply_defaults metadata: @config.metadata,
658
+
659
+ options.apply_defaults timeout: @config.timeout,
660
+ metadata: @config.metadata,
655
661
  retry_policy: @config.retry_policy
656
662
 
657
663
  @security_center_stub.call_rpc :get_notification_config, request, options: options do |response, operation|
@@ -718,7 +724,9 @@ module Google
718
724
  options.apply_defaults timeout: @config.rpcs.get_organization_settings.timeout,
719
725
  metadata: metadata,
720
726
  retry_policy: @config.rpcs.get_organization_settings.retry_policy
721
- options.apply_defaults metadata: @config.metadata,
727
+
728
+ options.apply_defaults timeout: @config.timeout,
729
+ metadata: @config.metadata,
722
730
  retry_policy: @config.retry_policy
723
731
 
724
732
  @security_center_stub.call_rpc :get_organization_settings, request, options: options do |response, operation|
@@ -785,7 +793,9 @@ module Google
785
793
  options.apply_defaults timeout: @config.rpcs.get_source.timeout,
786
794
  metadata: metadata,
787
795
  retry_policy: @config.rpcs.get_source.retry_policy
788
- options.apply_defaults metadata: @config.metadata,
796
+
797
+ options.apply_defaults timeout: @config.timeout,
798
+ metadata: @config.metadata,
789
799
  retry_policy: @config.retry_policy
790
800
 
791
801
  @security_center_stub.call_rpc :get_source, request, options: options do |response, operation|
@@ -976,7 +986,9 @@ module Google
976
986
  options.apply_defaults timeout: @config.rpcs.group_assets.timeout,
977
987
  metadata: metadata,
978
988
  retry_policy: @config.rpcs.group_assets.retry_policy
979
- options.apply_defaults metadata: @config.metadata,
989
+
990
+ options.apply_defaults timeout: @config.timeout,
991
+ metadata: @config.metadata,
980
992
  retry_policy: @config.retry_policy
981
993
 
982
994
  @security_center_stub.call_rpc :group_assets, request, options: options do |response, operation|
@@ -1167,7 +1179,9 @@ module Google
1167
1179
  options.apply_defaults timeout: @config.rpcs.group_findings.timeout,
1168
1180
  metadata: metadata,
1169
1181
  retry_policy: @config.rpcs.group_findings.retry_policy
1170
- options.apply_defaults metadata: @config.metadata,
1182
+
1183
+ options.apply_defaults timeout: @config.timeout,
1184
+ metadata: @config.metadata,
1171
1185
  retry_policy: @config.retry_policy
1172
1186
 
1173
1187
  @security_center_stub.call_rpc :group_findings, request, options: options do |response, operation|
@@ -1362,7 +1376,9 @@ module Google
1362
1376
  options.apply_defaults timeout: @config.rpcs.list_assets.timeout,
1363
1377
  metadata: metadata,
1364
1378
  retry_policy: @config.rpcs.list_assets.retry_policy
1365
- options.apply_defaults metadata: @config.metadata,
1379
+
1380
+ options.apply_defaults timeout: @config.timeout,
1381
+ metadata: @config.metadata,
1366
1382
  retry_policy: @config.retry_policy
1367
1383
 
1368
1384
  @security_center_stub.call_rpc :list_assets, request, options: options do |response, operation|
@@ -1554,7 +1570,9 @@ module Google
1554
1570
  options.apply_defaults timeout: @config.rpcs.list_findings.timeout,
1555
1571
  metadata: metadata,
1556
1572
  retry_policy: @config.rpcs.list_findings.retry_policy
1557
- options.apply_defaults metadata: @config.metadata,
1573
+
1574
+ options.apply_defaults timeout: @config.timeout,
1575
+ metadata: @config.metadata,
1558
1576
  retry_policy: @config.retry_policy
1559
1577
 
1560
1578
  @security_center_stub.call_rpc :list_findings, request, options: options do |response, operation|
@@ -1629,7 +1647,9 @@ module Google
1629
1647
  options.apply_defaults timeout: @config.rpcs.list_notification_configs.timeout,
1630
1648
  metadata: metadata,
1631
1649
  retry_policy: @config.rpcs.list_notification_configs.retry_policy
1632
- options.apply_defaults metadata: @config.metadata,
1650
+
1651
+ options.apply_defaults timeout: @config.timeout,
1652
+ metadata: @config.metadata,
1633
1653
  retry_policy: @config.retry_policy
1634
1654
 
1635
1655
  @security_center_stub.call_rpc :list_notification_configs, request, options: options do |response, operation|
@@ -1705,7 +1725,9 @@ module Google
1705
1725
  options.apply_defaults timeout: @config.rpcs.list_sources.timeout,
1706
1726
  metadata: metadata,
1707
1727
  retry_policy: @config.rpcs.list_sources.retry_policy
1708
- options.apply_defaults metadata: @config.metadata,
1728
+
1729
+ options.apply_defaults timeout: @config.timeout,
1730
+ metadata: @config.metadata,
1709
1731
  retry_policy: @config.retry_policy
1710
1732
 
1711
1733
  @security_center_stub.call_rpc :list_sources, request, options: options do |response, operation|
@@ -1778,7 +1800,9 @@ module Google
1778
1800
  options.apply_defaults timeout: @config.rpcs.run_asset_discovery.timeout,
1779
1801
  metadata: metadata,
1780
1802
  retry_policy: @config.rpcs.run_asset_discovery.retry_policy
1781
- options.apply_defaults metadata: @config.metadata,
1803
+
1804
+ options.apply_defaults timeout: @config.timeout,
1805
+ metadata: @config.metadata,
1782
1806
  retry_policy: @config.retry_policy
1783
1807
 
1784
1808
  @security_center_stub.call_rpc :run_asset_discovery, request, options: options do |response, operation|
@@ -1852,7 +1876,9 @@ module Google
1852
1876
  options.apply_defaults timeout: @config.rpcs.set_finding_state.timeout,
1853
1877
  metadata: metadata,
1854
1878
  retry_policy: @config.rpcs.set_finding_state.retry_policy
1855
- options.apply_defaults metadata: @config.metadata,
1879
+
1880
+ options.apply_defaults timeout: @config.timeout,
1881
+ metadata: @config.metadata,
1856
1882
  retry_policy: @config.retry_policy
1857
1883
 
1858
1884
  @security_center_stub.call_rpc :set_finding_state, request, options: options do |response, operation|
@@ -1924,7 +1950,9 @@ module Google
1924
1950
  options.apply_defaults timeout: @config.rpcs.set_iam_policy.timeout,
1925
1951
  metadata: metadata,
1926
1952
  retry_policy: @config.rpcs.set_iam_policy.retry_policy
1927
- options.apply_defaults metadata: @config.metadata,
1953
+
1954
+ options.apply_defaults timeout: @config.timeout,
1955
+ metadata: @config.metadata,
1928
1956
  retry_policy: @config.retry_policy
1929
1957
 
1930
1958
  @security_center_stub.call_rpc :set_iam_policy, request, options: options do |response, operation|
@@ -1996,7 +2024,9 @@ module Google
1996
2024
  options.apply_defaults timeout: @config.rpcs.test_iam_permissions.timeout,
1997
2025
  metadata: metadata,
1998
2026
  retry_policy: @config.rpcs.test_iam_permissions.retry_policy
1999
- options.apply_defaults metadata: @config.metadata,
2027
+
2028
+ options.apply_defaults timeout: @config.timeout,
2029
+ metadata: @config.metadata,
2000
2030
  retry_policy: @config.retry_policy
2001
2031
 
2002
2032
  @security_center_stub.call_rpc :test_iam_permissions, request, options: options do |response, operation|
@@ -2076,7 +2106,9 @@ module Google
2076
2106
  options.apply_defaults timeout: @config.rpcs.update_finding.timeout,
2077
2107
  metadata: metadata,
2078
2108
  retry_policy: @config.rpcs.update_finding.retry_policy
2079
- options.apply_defaults metadata: @config.metadata,
2109
+
2110
+ options.apply_defaults timeout: @config.timeout,
2111
+ metadata: @config.metadata,
2080
2112
  retry_policy: @config.retry_policy
2081
2113
 
2082
2114
  @security_center_stub.call_rpc :update_finding, request, options: options do |response, operation|
@@ -2147,7 +2179,9 @@ module Google
2147
2179
  options.apply_defaults timeout: @config.rpcs.update_notification_config.timeout,
2148
2180
  metadata: metadata,
2149
2181
  retry_policy: @config.rpcs.update_notification_config.retry_policy
2150
- options.apply_defaults metadata: @config.metadata,
2182
+
2183
+ options.apply_defaults timeout: @config.timeout,
2184
+ metadata: @config.metadata,
2151
2185
  retry_policy: @config.retry_policy
2152
2186
 
2153
2187
  @security_center_stub.call_rpc :update_notification_config, request, options: options do |response, operation|
@@ -2217,7 +2251,9 @@ module Google
2217
2251
  options.apply_defaults timeout: @config.rpcs.update_organization_settings.timeout,
2218
2252
  metadata: metadata,
2219
2253
  retry_policy: @config.rpcs.update_organization_settings.retry_policy
2220
- options.apply_defaults metadata: @config.metadata,
2254
+
2255
+ options.apply_defaults timeout: @config.timeout,
2256
+ metadata: @config.metadata,
2221
2257
  retry_policy: @config.retry_policy
2222
2258
 
2223
2259
  @security_center_stub.call_rpc :update_organization_settings, request, options: options do |response, operation|
@@ -2287,7 +2323,9 @@ module Google
2287
2323
  options.apply_defaults timeout: @config.rpcs.update_source.timeout,
2288
2324
  metadata: metadata,
2289
2325
  retry_policy: @config.rpcs.update_source.retry_policy
2290
- options.apply_defaults metadata: @config.metadata,
2326
+
2327
+ options.apply_defaults timeout: @config.timeout,
2328
+ metadata: @config.metadata,
2291
2329
  retry_policy: @config.retry_policy
2292
2330
 
2293
2331
  @security_center_stub.call_rpc :update_source, request, options: options do |response, operation|
@@ -2363,7 +2401,9 @@ module Google
2363
2401
  options.apply_defaults timeout: @config.rpcs.update_security_marks.timeout,
2364
2402
  metadata: metadata,
2365
2403
  retry_policy: @config.rpcs.update_security_marks.retry_policy
2366
- options.apply_defaults metadata: @config.metadata,
2404
+
2405
+ options.apply_defaults timeout: @config.timeout,
2406
+ metadata: @config.metadata,
2367
2407
  retry_policy: @config.retry_policy
2368
2408
 
2369
2409
  @security_center_stub.call_rpc :update_security_marks, request, options: options do |response, operation|
@@ -2387,22 +2427,21 @@ module Google
2387
2427
  # Configuration can be applied globally to all clients, or to a single client
2388
2428
  # on construction.
2389
2429
  #
2390
- # # Examples
2391
- #
2392
- # To modify the global config, setting the timeout for create_source
2393
- # to 20 seconds, and all remaining timeouts to 10 seconds:
2394
- #
2395
- # ::Google::Cloud::SecurityCenter::V1p1beta1::SecurityCenter::Client.configure do |config|
2396
- # config.timeout = 10.0
2397
- # config.rpcs.create_source.timeout = 20.0
2398
- # end
2399
- #
2400
- # To apply the above configuration only to a new client:
2401
- #
2402
- # client = ::Google::Cloud::SecurityCenter::V1p1beta1::SecurityCenter::Client.new do |config|
2403
- # config.timeout = 10.0
2404
- # config.rpcs.create_source.timeout = 20.0
2405
- # end
2430
+ # @example
2431
+ #
2432
+ # # Modify the global config, setting the timeout for
2433
+ # # create_source to 20 seconds,
2434
+ # # and all remaining timeouts to 10 seconds.
2435
+ # ::Google::Cloud::SecurityCenter::V1p1beta1::SecurityCenter::Client.configure do |config|
2436
+ # config.timeout = 10.0
2437
+ # config.rpcs.create_source.timeout = 20.0
2438
+ # end
2439
+ #
2440
+ # # Apply the above configuration only to a new client.
2441
+ # client = ::Google::Cloud::SecurityCenter::V1p1beta1::SecurityCenter::Client.new do |config|
2442
+ # config.timeout = 10.0
2443
+ # config.rpcs.create_source.timeout = 20.0
2444
+ # end
2406
2445
  #
2407
2446
  # @!attribute [rw] endpoint
2408
2447
  # The hostname or hostname:port of the service endpoint.
@@ -169,7 +169,9 @@ module Google
169
169
  options.apply_defaults timeout: @config.rpcs.list_operations.timeout,
170
170
  metadata: metadata,
171
171
  retry_policy: @config.rpcs.list_operations.retry_policy
172
- options.apply_defaults metadata: @config.metadata,
172
+
173
+ options.apply_defaults timeout: @config.timeout,
174
+ metadata: @config.metadata,
173
175
  retry_policy: @config.retry_policy
174
176
 
175
177
  @operations_stub.call_rpc :list_operations, request, options: options do |response, operation|
@@ -239,7 +241,9 @@ module Google
239
241
  options.apply_defaults timeout: @config.rpcs.get_operation.timeout,
240
242
  metadata: metadata,
241
243
  retry_policy: @config.rpcs.get_operation.retry_policy
242
- options.apply_defaults metadata: @config.metadata,
244
+
245
+ options.apply_defaults timeout: @config.timeout,
246
+ metadata: @config.metadata,
243
247
  retry_policy: @config.retry_policy
244
248
 
245
249
  @operations_stub.call_rpc :get_operation, request, options: options do |response, operation|
@@ -309,7 +313,9 @@ module Google
309
313
  options.apply_defaults timeout: @config.rpcs.delete_operation.timeout,
310
314
  metadata: metadata,
311
315
  retry_policy: @config.rpcs.delete_operation.retry_policy
312
- options.apply_defaults metadata: @config.metadata,
316
+
317
+ options.apply_defaults timeout: @config.timeout,
318
+ metadata: @config.metadata,
313
319
  retry_policy: @config.retry_policy
314
320
 
315
321
  @operations_stub.call_rpc :delete_operation, request, options: options do |response, operation|
@@ -384,7 +390,9 @@ module Google
384
390
  options.apply_defaults timeout: @config.rpcs.cancel_operation.timeout,
385
391
  metadata: metadata,
386
392
  retry_policy: @config.rpcs.cancel_operation.retry_policy
387
- options.apply_defaults metadata: @config.metadata,
393
+
394
+ options.apply_defaults timeout: @config.timeout,
395
+ metadata: @config.metadata,
388
396
  retry_policy: @config.retry_policy
389
397
 
390
398
  @operations_stub.call_rpc :cancel_operation, request, options: options do |response, operation|
@@ -456,7 +464,9 @@ module Google
456
464
  options.apply_defaults timeout: @config.rpcs.wait_operation.timeout,
457
465
  metadata: metadata,
458
466
  retry_policy: @config.rpcs.wait_operation.retry_policy
459
- options.apply_defaults metadata: @config.metadata,
467
+
468
+ options.apply_defaults timeout: @config.timeout,
469
+ metadata: @config.metadata,
460
470
  retry_policy: @config.retry_policy
461
471
 
462
472
  @operations_stub.call_rpc :wait_operation, request, options: options do |response, operation|
@@ -481,22 +491,21 @@ module Google
481
491
  # Configuration can be applied globally to all clients, or to a single client
482
492
  # on construction.
483
493
  #
484
- # # Examples
485
- #
486
- # To modify the global config, setting the timeout for list_operations
487
- # to 20 seconds, and all remaining timeouts to 10 seconds:
488
- #
489
- # ::Google::Longrunning::Operations::Client.configure do |config|
490
- # config.timeout = 10.0
491
- # config.rpcs.list_operations.timeout = 20.0
492
- # end
493
- #
494
- # To apply the above configuration only to a new client:
495
- #
496
- # client = ::Google::Longrunning::Operations::Client.new do |config|
497
- # config.timeout = 10.0
498
- # config.rpcs.list_operations.timeout = 20.0
499
- # end
494
+ # @example
495
+ #
496
+ # # Modify the global config, setting the timeout for
497
+ # # list_operations to 20 seconds,
498
+ # # and all remaining timeouts to 10 seconds.
499
+ # ::Google::Longrunning::Operations::Client.configure do |config|
500
+ # config.timeout = 10.0
501
+ # config.rpcs.list_operations.timeout = 20.0
502
+ # end
503
+ #
504
+ # # Apply the above configuration only to a new client.
505
+ # client = ::Google::Longrunning::Operations::Client.new do |config|
506
+ # config.timeout = 10.0
507
+ # config.rpcs.list_operations.timeout = 20.0
508
+ # end
500
509
  #
501
510
  # @!attribute [rw] endpoint
502
511
  # The hostname or hostname:port of the service endpoint.
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module SecurityCenter
23
23
  module V1p1beta1
24
- VERSION = "0.7.2"
24
+ VERSION = "0.7.3"
25
25
  end
26
26
  end
27
27
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-security_center-v1p1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.2
4
+ version: 0.7.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-12 00:00:00.000000000 Z
11
+ date: 2021-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.5'
19
+ version: '0.7'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.5'
29
+ version: '0.7'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a