google-cloud-asset-v1 0.24.0 → 0.26.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: 8169f8b40f0f0a7250e0f37e18f6a9c48de6d992e196ade0b676291f979cb8b7
4
- data.tar.gz: eddd28d1f71c57cf79f2635df07087f6931e1156c0cbda62b58b68212d5e97d8
3
+ metadata.gz: 85b40207f1ac183624644ec8b78eab9950322a0c5e43f39f6cf2ff236381f45c
4
+ data.tar.gz: 2d1e82dc8a21a0043ebdc9974b0a16e11e0ff317c9384f09cfdd874c3f1482b0
5
5
  SHA512:
6
- metadata.gz: 33a9ed14e263097a9854f4cfd4480105b31c7a4d8ab5bcffaa4940a999b778dc6d3d21387bf02cbd45bb0bf7944bc5f8f6ef01dcf945391d6c6595d1d93763c3
7
- data.tar.gz: bfd8d52a468c93ba36e9e24ff5699a815941a43ebd8a1511c90c0e19ddae58548d09624670df11a0c0f5246f9b63a4cdc6189eed1c0d1eda4069cd0b238c8282
6
+ metadata.gz: b28dc9c926d819e43ee4c7981d7ccaeca4cfeffdaf3361ced66cb791baf9c3192bafa18ffb4b655535e26b8aed2f8c9b9332f860c342a3275c3b233c6320c62f
7
+ data.tar.gz: 7c29ae6e58d9f454b79336b17fdea850aa69327b8850dfc136e626dcbba92aa4c06b969d857fa7e50f5670e977537464e7d655534f0b25fb1b13a15caaabc59d
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
 
@@ -141,6 +141,21 @@ module Google
141
141
  initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
142
142
  }
143
143
 
144
+ default_config.rpcs.analyze_org_policies.timeout = 60.0
145
+ default_config.rpcs.analyze_org_policies.retry_policy = {
146
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
147
+ }
148
+
149
+ default_config.rpcs.analyze_org_policy_governed_containers.timeout = 60.0
150
+ default_config.rpcs.analyze_org_policy_governed_containers.retry_policy = {
151
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
152
+ }
153
+
154
+ default_config.rpcs.analyze_org_policy_governed_assets.timeout = 60.0
155
+ default_config.rpcs.analyze_org_policy_governed_assets.retry_policy = {
156
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
157
+ }
158
+
144
159
  default_config
145
160
  end
146
161
  yield @configure if block_given?
@@ -200,7 +215,7 @@ module Google
200
215
  credentials = @config.credentials
201
216
  # Use self-signed JWT if the endpoint is unchanged from default,
202
217
  # but only if the default endpoint does not have a region prefix.
203
- enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
218
+ enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
204
219
  !@config.endpoint.split(".").first.include?("-")
205
220
  credentials ||= Credentials.default scope: @config.scope,
206
221
  enable_self_signed_jwt: enable_self_signed_jwt
@@ -684,7 +699,7 @@ module Google
684
699
  # Required. The name of the project/folder/organization where this feed
685
700
  # should be created in. It can only be an organization number (such as
686
701
  # "organizations/123"), a folder number (such as "folders/123"), a project ID
687
- # (such as "projects/my-project-id")", or a project number (such as
702
+ # (such as "projects/my-project-id"), or a project number (such as
688
703
  # "projects/12345").
689
704
  # @param feed_id [::String]
690
705
  # Required. This is the client-assigned asset feed identifier and it needs to
@@ -2053,8 +2068,8 @@ module Google
2053
2068
  # Required. The name of the project/folder/organization where this
2054
2069
  # saved_query should be created in. It can only be an organization number
2055
2070
  # (such as "organizations/123"), a folder number (such as "folders/123"), a
2056
- # project ID (such as "projects/my-project-id")", or a project number (such
2057
- # as "projects/12345").
2071
+ # project ID (such as "projects/my-project-id"), or a project number (such as
2072
+ # "projects/12345").
2058
2073
  # @param saved_query [::Google::Cloud::Asset::V1::SavedQuery, ::Hash]
2059
2074
  # Required. The saved_query details. The `name` field must be empty as it
2060
2075
  # will be generated based on the parent and saved_query_id.
@@ -2255,8 +2270,8 @@ module Google
2255
2270
  # @param page_size [::Integer]
2256
2271
  # Optional. The maximum number of saved queries to return per page. The
2257
2272
  # service may return fewer than this value. If unspecified, at most 50 will
2258
- # be returned.
2259
- # The maximum value is 1000; values above 1000 will be coerced to 1000.
2273
+ # be returned. The maximum value is 1000; values above 1000 will be coerced
2274
+ # to 1000.
2260
2275
  # @param page_token [::String]
2261
2276
  # Optional. A page token, received from a previous `ListSavedQueries` call.
2262
2277
  # Provide this to retrieve the subsequent page.
@@ -3018,9 +3033,9 @@ module Google
3018
3033
  # * (`String`) The path to a service account key file in JSON format
3019
3034
  # * (`Hash`) A service account key as a Hash
3020
3035
  # * (`Google::Auth::Credentials`) A googleauth credentials object
3021
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
3036
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
3022
3037
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
3023
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
3038
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
3024
3039
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
3025
3040
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
3026
3041
  # * (`nil`) indicating no credentials
@@ -3062,7 +3077,9 @@ module Google
3062
3077
  class Configuration
3063
3078
  extend ::Gapic::Config
3064
3079
 
3065
- config_attr :endpoint, "cloudasset.googleapis.com", ::String
3080
+ DEFAULT_ENDPOINT = "cloudasset.googleapis.com"
3081
+
3082
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
3066
3083
  config_attr :credentials, nil do |value|
3067
3084
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
3068
3085
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
@@ -620,9 +620,9 @@ module Google
620
620
  # * (`String`) The path to a service account key file in JSON format
621
621
  # * (`Hash`) A service account key as a Hash
622
622
  # * (`Google::Auth::Credentials`) A googleauth credentials object
623
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
623
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
624
624
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
625
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
625
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
626
626
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
627
627
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
628
628
  # * (`nil`) indicating no credentials
@@ -664,7 +664,9 @@ module Google
664
664
  class Configuration
665
665
  extend ::Gapic::Config
666
666
 
667
- config_attr :endpoint, "cloudasset.googleapis.com", ::String
667
+ DEFAULT_ENDPOINT = "cloudasset.googleapis.com"
668
+
669
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
668
670
  config_attr :credentials, nil do |value|
669
671
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
670
672
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
@@ -143,6 +143,21 @@ module Google
143
143
  initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [14]
144
144
  }
145
145
 
146
+ default_config.rpcs.analyze_org_policies.timeout = 60.0
147
+ default_config.rpcs.analyze_org_policies.retry_policy = {
148
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
149
+ }
150
+
151
+ default_config.rpcs.analyze_org_policy_governed_containers.timeout = 60.0
152
+ default_config.rpcs.analyze_org_policy_governed_containers.retry_policy = {
153
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
154
+ }
155
+
156
+ default_config.rpcs.analyze_org_policy_governed_assets.timeout = 60.0
157
+ default_config.rpcs.analyze_org_policy_governed_assets.retry_policy = {
158
+ initial_delay: 0.1, max_delay: 60.0, multiplier: 1.3, retry_codes: [4, 14]
159
+ }
160
+
146
161
  default_config
147
162
  end
148
163
  yield @configure if block_given?
@@ -196,7 +211,7 @@ module Google
196
211
  credentials = @config.credentials
197
212
  # Use self-signed JWT if the endpoint is unchanged from default,
198
213
  # but only if the default endpoint does not have a region prefix.
199
- enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
214
+ enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
200
215
  !@config.endpoint.split(".").first.include?("-")
201
216
  credentials ||= Credentials.default scope: @config.scope,
202
217
  enable_self_signed_jwt: enable_self_signed_jwt
@@ -595,7 +610,7 @@ module Google
595
610
  # Required. The name of the project/folder/organization where this feed
596
611
  # should be created in. It can only be an organization number (such as
597
612
  # "organizations/123"), a folder number (such as "folders/123"), a project ID
598
- # (such as "projects/my-project-id")", or a project number (such as
613
+ # (such as "projects/my-project-id"), or a project number (such as
599
614
  # "projects/12345").
600
615
  # @param feed_id [::String]
601
616
  # Required. This is the client-assigned asset feed identifier and it needs to
@@ -1696,8 +1711,8 @@ module Google
1696
1711
  # Required. The name of the project/folder/organization where this
1697
1712
  # saved_query should be created in. It can only be an organization number
1698
1713
  # (such as "organizations/123"), a folder number (such as "folders/123"), a
1699
- # project ID (such as "projects/my-project-id")", or a project number (such
1700
- # as "projects/12345").
1714
+ # project ID (such as "projects/my-project-id"), or a project number (such as
1715
+ # "projects/12345").
1701
1716
  # @param saved_query [::Google::Cloud::Asset::V1::SavedQuery, ::Hash]
1702
1717
  # Required. The saved_query details. The `name` field must be empty as it
1703
1718
  # will be generated based on the parent and saved_query_id.
@@ -1852,8 +1867,8 @@ module Google
1852
1867
  # @param page_size [::Integer]
1853
1868
  # Optional. The maximum number of saved queries to return per page. The
1854
1869
  # service may return fewer than this value. If unspecified, at most 50 will
1855
- # be returned.
1856
- # The maximum value is 1000; values above 1000 will be coerced to 1000.
1870
+ # be returned. The maximum value is 1000; values above 1000 will be coerced
1871
+ # to 1000.
1857
1872
  # @param page_token [::String]
1858
1873
  # Optional. A page token, received from a previous `ListSavedQueries` call.
1859
1874
  # Provide this to retrieve the subsequent page.
@@ -2438,9 +2453,9 @@ module Google
2438
2453
  # * (`String`) The path to a service account key file in JSON format
2439
2454
  # * (`Hash`) A service account key as a Hash
2440
2455
  # * (`Google::Auth::Credentials`) A googleauth credentials object
2441
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
2456
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
2442
2457
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
2443
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
2458
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
2444
2459
  # * (`nil`) indicating no credentials
2445
2460
  # @return [::Object]
2446
2461
  # @!attribute [rw] scope
@@ -2473,7 +2488,9 @@ module Google
2473
2488
  class Configuration
2474
2489
  extend ::Gapic::Config
2475
2490
 
2476
- config_attr :endpoint, "cloudasset.googleapis.com", ::String
2491
+ DEFAULT_ENDPOINT = "cloudasset.googleapis.com"
2492
+
2493
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
2477
2494
  config_attr :credentials, nil do |value|
2478
2495
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
2479
2496
  allowed.any? { |klass| klass === value }
@@ -411,9 +411,9 @@ module Google
411
411
  # * (`String`) The path to a service account key file in JSON format
412
412
  # * (`Hash`) A service account key as a Hash
413
413
  # * (`Google::Auth::Credentials`) A googleauth credentials object
414
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
414
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
415
415
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
416
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
416
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
417
417
  # * (`nil`) indicating no credentials
418
418
  # @return [::Object]
419
419
  # @!attribute [rw] scope
@@ -446,7 +446,9 @@ module Google
446
446
  class Configuration
447
447
  extend ::Gapic::Config
448
448
 
449
- config_attr :endpoint, "cloudasset.googleapis.com", ::String
449
+ DEFAULT_ENDPOINT = "cloudasset.googleapis.com"
450
+
451
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
450
452
  config_attr :credentials, nil do |value|
451
453
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
452
454
  allowed.any? { |klass| klass === value }
@@ -567,7 +569,7 @@ module Google
567
569
 
568
570
  verb, uri, query_string_params, body = OperationsServiceStub.transcode_list_operations_request request_pb
569
571
  query_string_params = if query_string_params.any?
570
- query_string_params.to_h { |p| p.split("=", 2) }
572
+ query_string_params.to_h { |p| p.split "=", 2 }
571
573
  else
572
574
  {}
573
575
  end
@@ -605,7 +607,7 @@ module Google
605
607
 
606
608
  verb, uri, query_string_params, body = OperationsServiceStub.transcode_get_operation_request request_pb
607
609
  query_string_params = if query_string_params.any?
608
- query_string_params.to_h { |p| p.split("=", 2) }
610
+ query_string_params.to_h { |p| p.split "=", 2 }
609
611
  else
610
612
  {}
611
613
  end
@@ -643,7 +645,7 @@ module Google
643
645
 
644
646
  verb, uri, query_string_params, body = OperationsServiceStub.transcode_delete_operation_request request_pb
645
647
  query_string_params = if query_string_params.any?
646
- query_string_params.to_h { |p| p.split("=", 2) }
648
+ query_string_params.to_h { |p| p.split "=", 2 }
647
649
  else
648
650
  {}
649
651
  end
@@ -681,7 +683,7 @@ module Google
681
683
 
682
684
  verb, uri, query_string_params, body = OperationsServiceStub.transcode_cancel_operation_request request_pb
683
685
  query_string_params = if query_string_params.any?
684
- query_string_params.to_h { |p| p.split("=", 2) }
686
+ query_string_params.to_h { |p| p.split "=", 2 }
685
687
  else
686
688
  {}
687
689
  end
@@ -59,7 +59,7 @@ module Google
59
59
 
60
60
  verb, uri, query_string_params, body = ServiceStub.transcode_export_assets_request request_pb
61
61
  query_string_params = if query_string_params.any?
62
- query_string_params.to_h { |p| p.split("=", 2) }
62
+ query_string_params.to_h { |p| p.split "=", 2 }
63
63
  else
64
64
  {}
65
65
  end
@@ -97,7 +97,7 @@ module Google
97
97
 
98
98
  verb, uri, query_string_params, body = ServiceStub.transcode_list_assets_request request_pb
99
99
  query_string_params = if query_string_params.any?
100
- query_string_params.to_h { |p| p.split("=", 2) }
100
+ query_string_params.to_h { |p| p.split "=", 2 }
101
101
  else
102
102
  {}
103
103
  end
@@ -135,7 +135,7 @@ module Google
135
135
 
136
136
  verb, uri, query_string_params, body = ServiceStub.transcode_batch_get_assets_history_request request_pb
137
137
  query_string_params = if query_string_params.any?
138
- query_string_params.to_h { |p| p.split("=", 2) }
138
+ query_string_params.to_h { |p| p.split "=", 2 }
139
139
  else
140
140
  {}
141
141
  end
@@ -173,7 +173,7 @@ module Google
173
173
 
174
174
  verb, uri, query_string_params, body = ServiceStub.transcode_create_feed_request request_pb
175
175
  query_string_params = if query_string_params.any?
176
- query_string_params.to_h { |p| p.split("=", 2) }
176
+ query_string_params.to_h { |p| p.split "=", 2 }
177
177
  else
178
178
  {}
179
179
  end
@@ -211,7 +211,7 @@ module Google
211
211
 
212
212
  verb, uri, query_string_params, body = ServiceStub.transcode_get_feed_request request_pb
213
213
  query_string_params = if query_string_params.any?
214
- query_string_params.to_h { |p| p.split("=", 2) }
214
+ query_string_params.to_h { |p| p.split "=", 2 }
215
215
  else
216
216
  {}
217
217
  end
@@ -249,7 +249,7 @@ module Google
249
249
 
250
250
  verb, uri, query_string_params, body = ServiceStub.transcode_list_feeds_request request_pb
251
251
  query_string_params = if query_string_params.any?
252
- query_string_params.to_h { |p| p.split("=", 2) }
252
+ query_string_params.to_h { |p| p.split "=", 2 }
253
253
  else
254
254
  {}
255
255
  end
@@ -287,7 +287,7 @@ module Google
287
287
 
288
288
  verb, uri, query_string_params, body = ServiceStub.transcode_update_feed_request request_pb
289
289
  query_string_params = if query_string_params.any?
290
- query_string_params.to_h { |p| p.split("=", 2) }
290
+ query_string_params.to_h { |p| p.split "=", 2 }
291
291
  else
292
292
  {}
293
293
  end
@@ -325,7 +325,7 @@ module Google
325
325
 
326
326
  verb, uri, query_string_params, body = ServiceStub.transcode_delete_feed_request request_pb
327
327
  query_string_params = if query_string_params.any?
328
- query_string_params.to_h { |p| p.split("=", 2) }
328
+ query_string_params.to_h { |p| p.split "=", 2 }
329
329
  else
330
330
  {}
331
331
  end
@@ -363,7 +363,7 @@ module Google
363
363
 
364
364
  verb, uri, query_string_params, body = ServiceStub.transcode_search_all_resources_request request_pb
365
365
  query_string_params = if query_string_params.any?
366
- query_string_params.to_h { |p| p.split("=", 2) }
366
+ query_string_params.to_h { |p| p.split "=", 2 }
367
367
  else
368
368
  {}
369
369
  end
@@ -401,7 +401,7 @@ module Google
401
401
 
402
402
  verb, uri, query_string_params, body = ServiceStub.transcode_search_all_iam_policies_request request_pb
403
403
  query_string_params = if query_string_params.any?
404
- query_string_params.to_h { |p| p.split("=", 2) }
404
+ query_string_params.to_h { |p| p.split "=", 2 }
405
405
  else
406
406
  {}
407
407
  end
@@ -439,7 +439,7 @@ module Google
439
439
 
440
440
  verb, uri, query_string_params, body = ServiceStub.transcode_analyze_iam_policy_request request_pb
441
441
  query_string_params = if query_string_params.any?
442
- query_string_params.to_h { |p| p.split("=", 2) }
442
+ query_string_params.to_h { |p| p.split "=", 2 }
443
443
  else
444
444
  {}
445
445
  end
@@ -477,7 +477,7 @@ module Google
477
477
 
478
478
  verb, uri, query_string_params, body = ServiceStub.transcode_analyze_iam_policy_longrunning_request request_pb
479
479
  query_string_params = if query_string_params.any?
480
- query_string_params.to_h { |p| p.split("=", 2) }
480
+ query_string_params.to_h { |p| p.split "=", 2 }
481
481
  else
482
482
  {}
483
483
  end
@@ -515,7 +515,7 @@ module Google
515
515
 
516
516
  verb, uri, query_string_params, body = ServiceStub.transcode_analyze_move_request request_pb
517
517
  query_string_params = if query_string_params.any?
518
- query_string_params.to_h { |p| p.split("=", 2) }
518
+ query_string_params.to_h { |p| p.split "=", 2 }
519
519
  else
520
520
  {}
521
521
  end
@@ -553,7 +553,7 @@ module Google
553
553
 
554
554
  verb, uri, query_string_params, body = ServiceStub.transcode_query_assets_request request_pb
555
555
  query_string_params = if query_string_params.any?
556
- query_string_params.to_h { |p| p.split("=", 2) }
556
+ query_string_params.to_h { |p| p.split "=", 2 }
557
557
  else
558
558
  {}
559
559
  end
@@ -591,7 +591,7 @@ module Google
591
591
 
592
592
  verb, uri, query_string_params, body = ServiceStub.transcode_create_saved_query_request request_pb
593
593
  query_string_params = if query_string_params.any?
594
- query_string_params.to_h { |p| p.split("=", 2) }
594
+ query_string_params.to_h { |p| p.split "=", 2 }
595
595
  else
596
596
  {}
597
597
  end
@@ -629,7 +629,7 @@ module Google
629
629
 
630
630
  verb, uri, query_string_params, body = ServiceStub.transcode_get_saved_query_request request_pb
631
631
  query_string_params = if query_string_params.any?
632
- query_string_params.to_h { |p| p.split("=", 2) }
632
+ query_string_params.to_h { |p| p.split "=", 2 }
633
633
  else
634
634
  {}
635
635
  end
@@ -667,7 +667,7 @@ module Google
667
667
 
668
668
  verb, uri, query_string_params, body = ServiceStub.transcode_list_saved_queries_request request_pb
669
669
  query_string_params = if query_string_params.any?
670
- query_string_params.to_h { |p| p.split("=", 2) }
670
+ query_string_params.to_h { |p| p.split "=", 2 }
671
671
  else
672
672
  {}
673
673
  end
@@ -705,7 +705,7 @@ module Google
705
705
 
706
706
  verb, uri, query_string_params, body = ServiceStub.transcode_update_saved_query_request request_pb
707
707
  query_string_params = if query_string_params.any?
708
- query_string_params.to_h { |p| p.split("=", 2) }
708
+ query_string_params.to_h { |p| p.split "=", 2 }
709
709
  else
710
710
  {}
711
711
  end
@@ -743,7 +743,7 @@ module Google
743
743
 
744
744
  verb, uri, query_string_params, body = ServiceStub.transcode_delete_saved_query_request request_pb
745
745
  query_string_params = if query_string_params.any?
746
- query_string_params.to_h { |p| p.split("=", 2) }
746
+ query_string_params.to_h { |p| p.split "=", 2 }
747
747
  else
748
748
  {}
749
749
  end
@@ -781,7 +781,7 @@ module Google
781
781
 
782
782
  verb, uri, query_string_params, body = ServiceStub.transcode_batch_get_effective_iam_policies_request request_pb
783
783
  query_string_params = if query_string_params.any?
784
- query_string_params.to_h { |p| p.split("=", 2) }
784
+ query_string_params.to_h { |p| p.split "=", 2 }
785
785
  else
786
786
  {}
787
787
  end
@@ -819,7 +819,7 @@ module Google
819
819
 
820
820
  verb, uri, query_string_params, body = ServiceStub.transcode_analyze_org_policies_request request_pb
821
821
  query_string_params = if query_string_params.any?
822
- query_string_params.to_h { |p| p.split("=", 2) }
822
+ query_string_params.to_h { |p| p.split "=", 2 }
823
823
  else
824
824
  {}
825
825
  end
@@ -857,7 +857,7 @@ module Google
857
857
 
858
858
  verb, uri, query_string_params, body = ServiceStub.transcode_analyze_org_policy_governed_containers_request request_pb
859
859
  query_string_params = if query_string_params.any?
860
- query_string_params.to_h { |p| p.split("=", 2) }
860
+ query_string_params.to_h { |p| p.split "=", 2 }
861
861
  else
862
862
  {}
863
863
  end
@@ -895,7 +895,7 @@ module Google
895
895
 
896
896
  verb, uri, query_string_params, body = ServiceStub.transcode_analyze_org_policy_governed_assets_request request_pb
897
897
  query_string_params = if query_string_params.any?
898
- query_string_params.to_h { |p| p.split("=", 2) }
898
+ query_string_params.to_h { |p| p.split "=", 2 }
899
899
  else
900
900
  {}
901
901
  end