google-cloud-security_center-v1 0.8.0 → 0.8.1

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: d6cf0e3ef3cc8a50ab83356e628e5bdd41587b6f3b8f411716491013dcff25ab
4
- data.tar.gz: feab623d462bf650c55eb957ff01dcf5b85c07cbb7539e1f688e2f9409f85e1a
3
+ metadata.gz: 1b657e12d5e2a6bfbd159e01b4b1eecdf8bf3b0cfeb568132dd0e7243e60dfa2
4
+ data.tar.gz: b56ea7e9107c6e97921855134e4b80fd6b6293dddfa96fe53ba067a055d2ad28
5
5
  SHA512:
6
- metadata.gz: 3bbcbddb45342e566e0452fcc46dbccc8088eb1e9000d08928c21361ac5b655a564cbdff812286d2b651156f49a574ed6f77116c1da80f46aa665d4ddebd5865
7
- data.tar.gz: 74b50f37bed033ce7c7dbc0c01e83541855f3ddfcdfde0c202e50c0214a357153896dda8bfbd142cd04c76f821ea66b9b6d72c90033486f3cc49b72e7bbc6d8b
6
+ metadata.gz: 2b30d63db862f8a776031257236e97491ba717e687f7db64809b6e0c6afbd18b636b1f0dd5b8c999aa17e089c4ac935d709140927855dea9fdbc779e08343cc0
7
+ data.tar.gz: a0ad157f2d483d34c2bb85b827d24e1327804e9de3732467928da3f5d50ca8fb283a5db12735c67dae3360e770e6c7bfc40def598225c4de3d4683de8892d3d0
@@ -41,13 +41,12 @@ module Google
41
41
  # See {::Google::Cloud::SecurityCenter::V1::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::V1::SecurityCenter::Client.configure do |config|
49
- # config.timeout = 10.0
50
- # end
46
+ # # Modify the configuration for all SecurityCenter clients
47
+ # ::Google::Cloud::SecurityCenter::V1::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::V1::SecurityCenter::Client.new
177
+ # # Create a client using the default configuration
178
+ # client = ::Google::Cloud::SecurityCenter::V1::SecurityCenter::Client.new
182
179
  #
183
- # To create a new SecurityCenter client with a custom
184
- # configuration:
185
- #
186
- # client = ::Google::Cloud::SecurityCenter::V1::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::V1::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|
@@ -375,7 +371,9 @@ module Google
375
371
  options.apply_defaults timeout: @config.rpcs.create_finding.timeout,
376
372
  metadata: metadata,
377
373
  retry_policy: @config.rpcs.create_finding.retry_policy
378
- options.apply_defaults metadata: @config.metadata,
374
+
375
+ options.apply_defaults timeout: @config.timeout,
376
+ metadata: @config.metadata,
379
377
  retry_policy: @config.retry_policy
380
378
 
381
379
  @security_center_stub.call_rpc :create_finding, request, options: options do |response, operation|
@@ -450,7 +448,9 @@ module Google
450
448
  options.apply_defaults timeout: @config.rpcs.create_notification_config.timeout,
451
449
  metadata: metadata,
452
450
  retry_policy: @config.rpcs.create_notification_config.retry_policy
453
- options.apply_defaults metadata: @config.metadata,
451
+
452
+ options.apply_defaults timeout: @config.timeout,
453
+ metadata: @config.metadata,
454
454
  retry_policy: @config.retry_policy
455
455
 
456
456
  @security_center_stub.call_rpc :create_notification_config, request, options: options do |response, operation|
@@ -517,7 +517,9 @@ module Google
517
517
  options.apply_defaults timeout: @config.rpcs.delete_notification_config.timeout,
518
518
  metadata: metadata,
519
519
  retry_policy: @config.rpcs.delete_notification_config.retry_policy
520
- options.apply_defaults metadata: @config.metadata,
520
+
521
+ options.apply_defaults timeout: @config.timeout,
522
+ metadata: @config.metadata,
521
523
  retry_policy: @config.retry_policy
522
524
 
523
525
  @security_center_stub.call_rpc :delete_notification_config, request, options: options do |response, operation|
@@ -587,7 +589,9 @@ module Google
587
589
  options.apply_defaults timeout: @config.rpcs.get_iam_policy.timeout,
588
590
  metadata: metadata,
589
591
  retry_policy: @config.rpcs.get_iam_policy.retry_policy
590
- options.apply_defaults metadata: @config.metadata,
592
+
593
+ options.apply_defaults timeout: @config.timeout,
594
+ metadata: @config.metadata,
591
595
  retry_policy: @config.retry_policy
592
596
 
593
597
  @security_center_stub.call_rpc :get_iam_policy, request, options: options do |response, operation|
@@ -654,7 +658,9 @@ module Google
654
658
  options.apply_defaults timeout: @config.rpcs.get_notification_config.timeout,
655
659
  metadata: metadata,
656
660
  retry_policy: @config.rpcs.get_notification_config.retry_policy
657
- options.apply_defaults metadata: @config.metadata,
661
+
662
+ options.apply_defaults timeout: @config.timeout,
663
+ metadata: @config.metadata,
658
664
  retry_policy: @config.retry_policy
659
665
 
660
666
  @security_center_stub.call_rpc :get_notification_config, request, options: options do |response, operation|
@@ -721,7 +727,9 @@ module Google
721
727
  options.apply_defaults timeout: @config.rpcs.get_organization_settings.timeout,
722
728
  metadata: metadata,
723
729
  retry_policy: @config.rpcs.get_organization_settings.retry_policy
724
- options.apply_defaults metadata: @config.metadata,
730
+
731
+ options.apply_defaults timeout: @config.timeout,
732
+ metadata: @config.metadata,
725
733
  retry_policy: @config.retry_policy
726
734
 
727
735
  @security_center_stub.call_rpc :get_organization_settings, request, options: options do |response, operation|
@@ -788,7 +796,9 @@ module Google
788
796
  options.apply_defaults timeout: @config.rpcs.get_source.timeout,
789
797
  metadata: metadata,
790
798
  retry_policy: @config.rpcs.get_source.retry_policy
791
- options.apply_defaults metadata: @config.metadata,
799
+
800
+ options.apply_defaults timeout: @config.timeout,
801
+ metadata: @config.metadata,
792
802
  retry_policy: @config.retry_policy
793
803
 
794
804
  @security_center_stub.call_rpc :get_source, request, options: options do |response, operation|
@@ -979,7 +989,9 @@ module Google
979
989
  options.apply_defaults timeout: @config.rpcs.group_assets.timeout,
980
990
  metadata: metadata,
981
991
  retry_policy: @config.rpcs.group_assets.retry_policy
982
- options.apply_defaults metadata: @config.metadata,
992
+
993
+ options.apply_defaults timeout: @config.timeout,
994
+ metadata: @config.metadata,
983
995
  retry_policy: @config.retry_policy
984
996
 
985
997
  @security_center_stub.call_rpc :group_assets, request, options: options do |response, operation|
@@ -1179,7 +1191,9 @@ module Google
1179
1191
  options.apply_defaults timeout: @config.rpcs.group_findings.timeout,
1180
1192
  metadata: metadata,
1181
1193
  retry_policy: @config.rpcs.group_findings.retry_policy
1182
- options.apply_defaults metadata: @config.metadata,
1194
+
1195
+ options.apply_defaults timeout: @config.timeout,
1196
+ metadata: @config.metadata,
1183
1197
  retry_policy: @config.retry_policy
1184
1198
 
1185
1199
  @security_center_stub.call_rpc :group_findings, request, options: options do |response, operation|
@@ -1374,7 +1388,9 @@ module Google
1374
1388
  options.apply_defaults timeout: @config.rpcs.list_assets.timeout,
1375
1389
  metadata: metadata,
1376
1390
  retry_policy: @config.rpcs.list_assets.retry_policy
1377
- options.apply_defaults metadata: @config.metadata,
1391
+
1392
+ options.apply_defaults timeout: @config.timeout,
1393
+ metadata: @config.metadata,
1378
1394
  retry_policy: @config.retry_policy
1379
1395
 
1380
1396
  @security_center_stub.call_rpc :list_assets, request, options: options do |response, operation|
@@ -1576,7 +1592,9 @@ module Google
1576
1592
  options.apply_defaults timeout: @config.rpcs.list_findings.timeout,
1577
1593
  metadata: metadata,
1578
1594
  retry_policy: @config.rpcs.list_findings.retry_policy
1579
- options.apply_defaults metadata: @config.metadata,
1595
+
1596
+ options.apply_defaults timeout: @config.timeout,
1597
+ metadata: @config.metadata,
1580
1598
  retry_policy: @config.retry_policy
1581
1599
 
1582
1600
  @security_center_stub.call_rpc :list_findings, request, options: options do |response, operation|
@@ -1651,7 +1669,9 @@ module Google
1651
1669
  options.apply_defaults timeout: @config.rpcs.list_notification_configs.timeout,
1652
1670
  metadata: metadata,
1653
1671
  retry_policy: @config.rpcs.list_notification_configs.retry_policy
1654
- options.apply_defaults metadata: @config.metadata,
1672
+
1673
+ options.apply_defaults timeout: @config.timeout,
1674
+ metadata: @config.metadata,
1655
1675
  retry_policy: @config.retry_policy
1656
1676
 
1657
1677
  @security_center_stub.call_rpc :list_notification_configs, request, options: options do |response, operation|
@@ -1727,7 +1747,9 @@ module Google
1727
1747
  options.apply_defaults timeout: @config.rpcs.list_sources.timeout,
1728
1748
  metadata: metadata,
1729
1749
  retry_policy: @config.rpcs.list_sources.retry_policy
1730
- options.apply_defaults metadata: @config.metadata,
1750
+
1751
+ options.apply_defaults timeout: @config.timeout,
1752
+ metadata: @config.metadata,
1731
1753
  retry_policy: @config.retry_policy
1732
1754
 
1733
1755
  @security_center_stub.call_rpc :list_sources, request, options: options do |response, operation|
@@ -1800,7 +1822,9 @@ module Google
1800
1822
  options.apply_defaults timeout: @config.rpcs.run_asset_discovery.timeout,
1801
1823
  metadata: metadata,
1802
1824
  retry_policy: @config.rpcs.run_asset_discovery.retry_policy
1803
- options.apply_defaults metadata: @config.metadata,
1825
+
1826
+ options.apply_defaults timeout: @config.timeout,
1827
+ metadata: @config.metadata,
1804
1828
  retry_policy: @config.retry_policy
1805
1829
 
1806
1830
  @security_center_stub.call_rpc :run_asset_discovery, request, options: options do |response, operation|
@@ -1874,7 +1898,9 @@ module Google
1874
1898
  options.apply_defaults timeout: @config.rpcs.set_finding_state.timeout,
1875
1899
  metadata: metadata,
1876
1900
  retry_policy: @config.rpcs.set_finding_state.retry_policy
1877
- options.apply_defaults metadata: @config.metadata,
1901
+
1902
+ options.apply_defaults timeout: @config.timeout,
1903
+ metadata: @config.metadata,
1878
1904
  retry_policy: @config.retry_policy
1879
1905
 
1880
1906
  @security_center_stub.call_rpc :set_finding_state, request, options: options do |response, operation|
@@ -1946,7 +1972,9 @@ module Google
1946
1972
  options.apply_defaults timeout: @config.rpcs.set_iam_policy.timeout,
1947
1973
  metadata: metadata,
1948
1974
  retry_policy: @config.rpcs.set_iam_policy.retry_policy
1949
- options.apply_defaults metadata: @config.metadata,
1975
+
1976
+ options.apply_defaults timeout: @config.timeout,
1977
+ metadata: @config.metadata,
1950
1978
  retry_policy: @config.retry_policy
1951
1979
 
1952
1980
  @security_center_stub.call_rpc :set_iam_policy, request, options: options do |response, operation|
@@ -2018,7 +2046,9 @@ module Google
2018
2046
  options.apply_defaults timeout: @config.rpcs.test_iam_permissions.timeout,
2019
2047
  metadata: metadata,
2020
2048
  retry_policy: @config.rpcs.test_iam_permissions.retry_policy
2021
- options.apply_defaults metadata: @config.metadata,
2049
+
2050
+ options.apply_defaults timeout: @config.timeout,
2051
+ metadata: @config.metadata,
2022
2052
  retry_policy: @config.retry_policy
2023
2053
 
2024
2054
  @security_center_stub.call_rpc :test_iam_permissions, request, options: options do |response, operation|
@@ -2098,7 +2128,9 @@ module Google
2098
2128
  options.apply_defaults timeout: @config.rpcs.update_finding.timeout,
2099
2129
  metadata: metadata,
2100
2130
  retry_policy: @config.rpcs.update_finding.retry_policy
2101
- options.apply_defaults metadata: @config.metadata,
2131
+
2132
+ options.apply_defaults timeout: @config.timeout,
2133
+ metadata: @config.metadata,
2102
2134
  retry_policy: @config.retry_policy
2103
2135
 
2104
2136
  @security_center_stub.call_rpc :update_finding, request, options: options do |response, operation|
@@ -2169,7 +2201,9 @@ module Google
2169
2201
  options.apply_defaults timeout: @config.rpcs.update_notification_config.timeout,
2170
2202
  metadata: metadata,
2171
2203
  retry_policy: @config.rpcs.update_notification_config.retry_policy
2172
- options.apply_defaults metadata: @config.metadata,
2204
+
2205
+ options.apply_defaults timeout: @config.timeout,
2206
+ metadata: @config.metadata,
2173
2207
  retry_policy: @config.retry_policy
2174
2208
 
2175
2209
  @security_center_stub.call_rpc :update_notification_config, request, options: options do |response, operation|
@@ -2239,7 +2273,9 @@ module Google
2239
2273
  options.apply_defaults timeout: @config.rpcs.update_organization_settings.timeout,
2240
2274
  metadata: metadata,
2241
2275
  retry_policy: @config.rpcs.update_organization_settings.retry_policy
2242
- options.apply_defaults metadata: @config.metadata,
2276
+
2277
+ options.apply_defaults timeout: @config.timeout,
2278
+ metadata: @config.metadata,
2243
2279
  retry_policy: @config.retry_policy
2244
2280
 
2245
2281
  @security_center_stub.call_rpc :update_organization_settings, request, options: options do |response, operation|
@@ -2309,7 +2345,9 @@ module Google
2309
2345
  options.apply_defaults timeout: @config.rpcs.update_source.timeout,
2310
2346
  metadata: metadata,
2311
2347
  retry_policy: @config.rpcs.update_source.retry_policy
2312
- options.apply_defaults metadata: @config.metadata,
2348
+
2349
+ options.apply_defaults timeout: @config.timeout,
2350
+ metadata: @config.metadata,
2313
2351
  retry_policy: @config.retry_policy
2314
2352
 
2315
2353
  @security_center_stub.call_rpc :update_source, request, options: options do |response, operation|
@@ -2385,7 +2423,9 @@ module Google
2385
2423
  options.apply_defaults timeout: @config.rpcs.update_security_marks.timeout,
2386
2424
  metadata: metadata,
2387
2425
  retry_policy: @config.rpcs.update_security_marks.retry_policy
2388
- options.apply_defaults metadata: @config.metadata,
2426
+
2427
+ options.apply_defaults timeout: @config.timeout,
2428
+ metadata: @config.metadata,
2389
2429
  retry_policy: @config.retry_policy
2390
2430
 
2391
2431
  @security_center_stub.call_rpc :update_security_marks, request, options: options do |response, operation|
@@ -2409,22 +2449,21 @@ module Google
2409
2449
  # Configuration can be applied globally to all clients, or to a single client
2410
2450
  # on construction.
2411
2451
  #
2412
- # # Examples
2413
- #
2414
- # To modify the global config, setting the timeout for create_source
2415
- # to 20 seconds, and all remaining timeouts to 10 seconds:
2416
- #
2417
- # ::Google::Cloud::SecurityCenter::V1::SecurityCenter::Client.configure do |config|
2418
- # config.timeout = 10.0
2419
- # config.rpcs.create_source.timeout = 20.0
2420
- # end
2421
- #
2422
- # To apply the above configuration only to a new client:
2423
- #
2424
- # client = ::Google::Cloud::SecurityCenter::V1::SecurityCenter::Client.new do |config|
2425
- # config.timeout = 10.0
2426
- # config.rpcs.create_source.timeout = 20.0
2427
- # end
2452
+ # @example
2453
+ #
2454
+ # # Modify the global config, setting the timeout for
2455
+ # # create_source to 20 seconds,
2456
+ # # and all remaining timeouts to 10 seconds.
2457
+ # ::Google::Cloud::SecurityCenter::V1::SecurityCenter::Client.configure do |config|
2458
+ # config.timeout = 10.0
2459
+ # config.rpcs.create_source.timeout = 20.0
2460
+ # end
2461
+ #
2462
+ # # Apply the above configuration only to a new client.
2463
+ # client = ::Google::Cloud::SecurityCenter::V1::SecurityCenter::Client.new do |config|
2464
+ # config.timeout = 10.0
2465
+ # config.rpcs.create_source.timeout = 20.0
2466
+ # end
2428
2467
  #
2429
2468
  # @!attribute [rw] endpoint
2430
2469
  # 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 V1
24
- VERSION = "0.8.0"
24
+ VERSION = "0.8.1"
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-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
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-29 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