google-cloud-data_fusion-v1 0.3.0 → 0.5.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: a83a64166a0a714a877b8fd86ecf695e7ed777e37debbefac989f5dd4ccc931a
4
- data.tar.gz: 463dd840632a7b75bb1cc6d23b989341a0f3952855a83e0da7794768fd5f0487
3
+ metadata.gz: 7e81a7d0e6fb06188bf912718456353bb2c3d0f0b134f1bfd562e1ae9aac8582
4
+ data.tar.gz: 989a951ee94ca5494fca7a522d4f42ce54fef5fb1bab8ec6ebe9a73b994ea7e2
5
5
  SHA512:
6
- metadata.gz: 299ca7bcb588769d3933d467a85b62d700e82e9fc1feb921d794be0865ba969aeeea29859fb4040980d9a5e9fab8e79390573134bf56328ed5df3336718c8fdc
7
- data.tar.gz: 5681652bf73684875b4ad2f468e4aa623cc8245664f2a2f6f5673795492485261defcf3ff4f9dc7054670e4018b161b7cba738088a786c8796cc5e729bdcf38a
6
+ metadata.gz: aef8bd01ac245d89c5a92cd5ac0dd1b0ae4b4843a637776370d5954f81e75d8634b10f31bfc2639cf72dc752fa08ad5f08fc5c80e8c489a71ec6ca3d896805df
7
+ data.tar.gz: a5984cff1a4a0ceea8d326806506bd2fb2085beee45fda7f9f8eb8bfb12141202e7e36ffd5b8a18a46f890a62ddfa841dc0bead3413bbb41f82077e1637cb3bc
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
 
@@ -127,7 +127,7 @@ module Google
127
127
  credentials = @config.credentials
128
128
  # Use self-signed JWT if the endpoint is unchanged from default,
129
129
  # but only if the default endpoint does not have a region prefix.
130
- enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
130
+ enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
131
131
  !@config.endpoint.split(".").first.include?("-")
132
132
  credentials ||= Credentials.default scope: @config.scope,
133
133
  enable_self_signed_jwt: enable_self_signed_jwt
@@ -148,7 +148,8 @@ module Google
148
148
  credentials: credentials,
149
149
  endpoint: @config.endpoint,
150
150
  channel_args: @config.channel_args,
151
- interceptors: @config.interceptors
151
+ interceptors: @config.interceptors,
152
+ channel_pool_config: @config.channel_pool
152
153
  )
153
154
  end
154
155
 
@@ -877,9 +878,9 @@ module Google
877
878
  # * (`String`) The path to a service account key file in JSON format
878
879
  # * (`Hash`) A service account key as a Hash
879
880
  # * (`Google::Auth::Credentials`) A googleauth credentials object
880
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
881
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
881
882
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
882
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
883
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
883
884
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
884
885
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
885
886
  # * (`nil`) indicating no credentials
@@ -921,7 +922,9 @@ module Google
921
922
  class Configuration
922
923
  extend ::Gapic::Config
923
924
 
924
- config_attr :endpoint, "datafusion.googleapis.com", ::String
925
+ DEFAULT_ENDPOINT = "datafusion.googleapis.com"
926
+
927
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
925
928
  config_attr :credentials, nil do |value|
926
929
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
927
930
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
@@ -956,6 +959,14 @@ module Google
956
959
  end
957
960
  end
958
961
 
962
+ ##
963
+ # Configuration for the channel pool
964
+ # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
965
+ #
966
+ def channel_pool
967
+ @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
968
+ end
969
+
959
970
  ##
960
971
  # Configuration RPC class for the DataFusion API.
961
972
  #
@@ -93,7 +93,8 @@ module Google
93
93
  credentials: credentials,
94
94
  endpoint: @config.endpoint,
95
95
  channel_args: @config.channel_args,
96
- interceptors: @config.interceptors
96
+ interceptors: @config.interceptors,
97
+ channel_pool_config: @config.channel_pool
97
98
  )
98
99
 
99
100
  # Used by an LRO wrapper for some methods of this service
@@ -620,9 +621,9 @@ module Google
620
621
  # * (`String`) The path to a service account key file in JSON format
621
622
  # * (`Hash`) A service account key as a Hash
622
623
  # * (`Google::Auth::Credentials`) A googleauth credentials object
623
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
624
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
624
625
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
625
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
626
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
626
627
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
627
628
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
628
629
  # * (`nil`) indicating no credentials
@@ -664,7 +665,9 @@ module Google
664
665
  class Configuration
665
666
  extend ::Gapic::Config
666
667
 
667
- config_attr :endpoint, "datafusion.googleapis.com", ::String
668
+ DEFAULT_ENDPOINT = "datafusion.googleapis.com"
669
+
670
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
668
671
  config_attr :credentials, nil do |value|
669
672
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
670
673
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
@@ -699,6 +702,14 @@ module Google
699
702
  end
700
703
  end
701
704
 
705
+ ##
706
+ # Configuration for the channel pool
707
+ # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
708
+ #
709
+ def channel_pool
710
+ @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
711
+ end
712
+
702
713
  ##
703
714
  # Configuration RPC class for the Operations API.
704
715
  #
@@ -123,7 +123,7 @@ module Google
123
123
  credentials = @config.credentials
124
124
  # Use self-signed JWT if the endpoint is unchanged from default,
125
125
  # but only if the default endpoint does not have a region prefix.
126
- enable_self_signed_jwt = @config.endpoint == Client.configure.endpoint &&
126
+ enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
127
127
  !@config.endpoint.split(".").first.include?("-")
128
128
  credentials ||= Credentials.default scope: @config.scope,
129
129
  enable_self_signed_jwt: enable_self_signed_jwt
@@ -190,6 +190,26 @@ module Google
190
190
  # @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::DataFusion::V1::Version>]
191
191
  #
192
192
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
193
+ #
194
+ # @example Basic example
195
+ # require "google/cloud/data_fusion/v1"
196
+ #
197
+ # # Create a client object. The client can be reused for multiple calls.
198
+ # client = Google::Cloud::DataFusion::V1::DataFusion::Rest::Client.new
199
+ #
200
+ # # Create a request. To set request fields, pass in keyword arguments.
201
+ # request = Google::Cloud::DataFusion::V1::ListAvailableVersionsRequest.new
202
+ #
203
+ # # Call the list_available_versions method.
204
+ # result = client.list_available_versions request
205
+ #
206
+ # # The returned object is of type Gapic::PagedEnumerable. You can iterate
207
+ # # over elements, and API calls will be issued to fetch pages as needed.
208
+ # result.each do |item|
209
+ # # Each element is of type ::Google::Cloud::DataFusion::V1::Version.
210
+ # p item
211
+ # end
212
+ #
193
213
  def list_available_versions request, options = nil
194
214
  raise ::ArgumentError, "request must be provided" if request.nil?
195
215
 
@@ -265,6 +285,26 @@ module Google
265
285
  # @return [::Google::Cloud::DataFusion::V1::ListInstancesResponse]
266
286
  #
267
287
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
288
+ #
289
+ # @example Basic example
290
+ # require "google/cloud/data_fusion/v1"
291
+ #
292
+ # # Create a client object. The client can be reused for multiple calls.
293
+ # client = Google::Cloud::DataFusion::V1::DataFusion::Rest::Client.new
294
+ #
295
+ # # Create a request. To set request fields, pass in keyword arguments.
296
+ # request = Google::Cloud::DataFusion::V1::ListInstancesRequest.new
297
+ #
298
+ # # Call the list_instances method.
299
+ # result = client.list_instances request
300
+ #
301
+ # # The returned object is of type Gapic::PagedEnumerable. You can iterate
302
+ # # over elements, and API calls will be issued to fetch pages as needed.
303
+ # result.each do |item|
304
+ # # Each element is of type ::Google::Cloud::DataFusion::V1::Instance.
305
+ # p item
306
+ # end
307
+ #
268
308
  def list_instances request, options = nil
269
309
  raise ::ArgumentError, "request must be provided" if request.nil?
270
310
 
@@ -328,6 +368,22 @@ module Google
328
368
  # @return [::Google::Cloud::DataFusion::V1::Instance]
329
369
  #
330
370
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
371
+ #
372
+ # @example Basic example
373
+ # require "google/cloud/data_fusion/v1"
374
+ #
375
+ # # Create a client object. The client can be reused for multiple calls.
376
+ # client = Google::Cloud::DataFusion::V1::DataFusion::Rest::Client.new
377
+ #
378
+ # # Create a request. To set request fields, pass in keyword arguments.
379
+ # request = Google::Cloud::DataFusion::V1::GetInstanceRequest.new
380
+ #
381
+ # # Call the get_instance method.
382
+ # result = client.get_instance request
383
+ #
384
+ # # The returned object is of type Google::Cloud::DataFusion::V1::Instance.
385
+ # p result
386
+ #
331
387
  def get_instance request, options = nil
332
388
  raise ::ArgumentError, "request must be provided" if request.nil?
333
389
 
@@ -395,6 +451,29 @@ module Google
395
451
  # @return [::Gapic::Operation]
396
452
  #
397
453
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
454
+ #
455
+ # @example Basic example
456
+ # require "google/cloud/data_fusion/v1"
457
+ #
458
+ # # Create a client object. The client can be reused for multiple calls.
459
+ # client = Google::Cloud::DataFusion::V1::DataFusion::Rest::Client.new
460
+ #
461
+ # # Create a request. To set request fields, pass in keyword arguments.
462
+ # request = Google::Cloud::DataFusion::V1::CreateInstanceRequest.new
463
+ #
464
+ # # Call the create_instance method.
465
+ # result = client.create_instance request
466
+ #
467
+ # # The returned object is of type Gapic::Operation. You can use it to
468
+ # # check the status of an operation, cancel it, or wait for results.
469
+ # # Here is how to wait for a response.
470
+ # result.wait_until_done! timeout: 60
471
+ # if result.response?
472
+ # p result.response
473
+ # else
474
+ # puts "No response received."
475
+ # end
476
+ #
398
477
  def create_instance request, options = nil
399
478
  raise ::ArgumentError, "request must be provided" if request.nil?
400
479
 
@@ -459,6 +538,29 @@ module Google
459
538
  # @return [::Gapic::Operation]
460
539
  #
461
540
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
541
+ #
542
+ # @example Basic example
543
+ # require "google/cloud/data_fusion/v1"
544
+ #
545
+ # # Create a client object. The client can be reused for multiple calls.
546
+ # client = Google::Cloud::DataFusion::V1::DataFusion::Rest::Client.new
547
+ #
548
+ # # Create a request. To set request fields, pass in keyword arguments.
549
+ # request = Google::Cloud::DataFusion::V1::DeleteInstanceRequest.new
550
+ #
551
+ # # Call the delete_instance method.
552
+ # result = client.delete_instance request
553
+ #
554
+ # # The returned object is of type Gapic::Operation. You can use it to
555
+ # # check the status of an operation, cancel it, or wait for results.
556
+ # # Here is how to wait for a response.
557
+ # result.wait_until_done! timeout: 60
558
+ # if result.response?
559
+ # p result.response
560
+ # else
561
+ # puts "No response received."
562
+ # end
563
+ #
462
564
  def delete_instance request, options = nil
463
565
  raise ::ArgumentError, "request must be provided" if request.nil?
464
566
 
@@ -531,6 +633,29 @@ module Google
531
633
  # @return [::Gapic::Operation]
532
634
  #
533
635
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
636
+ #
637
+ # @example Basic example
638
+ # require "google/cloud/data_fusion/v1"
639
+ #
640
+ # # Create a client object. The client can be reused for multiple calls.
641
+ # client = Google::Cloud::DataFusion::V1::DataFusion::Rest::Client.new
642
+ #
643
+ # # Create a request. To set request fields, pass in keyword arguments.
644
+ # request = Google::Cloud::DataFusion::V1::UpdateInstanceRequest.new
645
+ #
646
+ # # Call the update_instance method.
647
+ # result = client.update_instance request
648
+ #
649
+ # # The returned object is of type Gapic::Operation. You can use it to
650
+ # # check the status of an operation, cancel it, or wait for results.
651
+ # # Here is how to wait for a response.
652
+ # result.wait_until_done! timeout: 60
653
+ # if result.response?
654
+ # p result.response
655
+ # else
656
+ # puts "No response received."
657
+ # end
658
+ #
534
659
  def update_instance request, options = nil
535
660
  raise ::ArgumentError, "request must be provided" if request.nil?
536
661
 
@@ -596,6 +721,29 @@ module Google
596
721
  # @return [::Gapic::Operation]
597
722
  #
598
723
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
724
+ #
725
+ # @example Basic example
726
+ # require "google/cloud/data_fusion/v1"
727
+ #
728
+ # # Create a client object. The client can be reused for multiple calls.
729
+ # client = Google::Cloud::DataFusion::V1::DataFusion::Rest::Client.new
730
+ #
731
+ # # Create a request. To set request fields, pass in keyword arguments.
732
+ # request = Google::Cloud::DataFusion::V1::RestartInstanceRequest.new
733
+ #
734
+ # # Call the restart_instance method.
735
+ # result = client.restart_instance request
736
+ #
737
+ # # The returned object is of type Gapic::Operation. You can use it to
738
+ # # check the status of an operation, cancel it, or wait for results.
739
+ # # Here is how to wait for a response.
740
+ # result.wait_until_done! timeout: 60
741
+ # if result.response?
742
+ # p result.response
743
+ # else
744
+ # puts "No response received."
745
+ # end
746
+ #
599
747
  def restart_instance request, options = nil
600
748
  raise ::ArgumentError, "request must be provided" if request.nil?
601
749
 
@@ -670,9 +818,9 @@ module Google
670
818
  # * (`String`) The path to a service account key file in JSON format
671
819
  # * (`Hash`) A service account key as a Hash
672
820
  # * (`Google::Auth::Credentials`) A googleauth credentials object
673
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
821
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
674
822
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
675
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
823
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
676
824
  # * (`nil`) indicating no credentials
677
825
  # @return [::Object]
678
826
  # @!attribute [rw] scope
@@ -705,7 +853,9 @@ module Google
705
853
  class Configuration
706
854
  extend ::Gapic::Config
707
855
 
708
- config_attr :endpoint, "datafusion.googleapis.com", ::String
856
+ DEFAULT_ENDPOINT = "datafusion.googleapis.com"
857
+
858
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
709
859
  config_attr :credentials, nil do |value|
710
860
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
711
861
  allowed.any? { |klass| klass === value }
@@ -136,6 +136,26 @@ module Google
136
136
  # @return [::Gapic::Operation]
137
137
  #
138
138
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
139
+ #
140
+ # @example Basic example
141
+ # require "google/longrunning"
142
+ #
143
+ # # Create a client object. The client can be reused for multiple calls.
144
+ # client = Google::Longrunning::Operations::Rest::Client.new
145
+ #
146
+ # # Create a request. To set request fields, pass in keyword arguments.
147
+ # request = Google::Longrunning::ListOperationsRequest.new
148
+ #
149
+ # # Call the list_operations method.
150
+ # result = client.list_operations request
151
+ #
152
+ # # The returned object is of type Gapic::PagedEnumerable. You can iterate
153
+ # # over elements, and API calls will be issued to fetch pages as needed.
154
+ # result.each do |item|
155
+ # # Each element is of type ::Google::Longrunning::Operation.
156
+ # p item
157
+ # end
158
+ #
139
159
  def list_operations request, options = nil
140
160
  raise ::ArgumentError, "request must be provided" if request.nil?
141
161
 
@@ -201,6 +221,29 @@ module Google
201
221
  # @return [::Gapic::Operation]
202
222
  #
203
223
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
224
+ #
225
+ # @example Basic example
226
+ # require "google/longrunning"
227
+ #
228
+ # # Create a client object. The client can be reused for multiple calls.
229
+ # client = Google::Longrunning::Operations::Rest::Client.new
230
+ #
231
+ # # Create a request. To set request fields, pass in keyword arguments.
232
+ # request = Google::Longrunning::GetOperationRequest.new
233
+ #
234
+ # # Call the get_operation method.
235
+ # result = client.get_operation request
236
+ #
237
+ # # The returned object is of type Gapic::Operation. You can use it to
238
+ # # check the status of an operation, cancel it, or wait for results.
239
+ # # Here is how to wait for a response.
240
+ # result.wait_until_done! timeout: 60
241
+ # if result.response?
242
+ # p result.response
243
+ # else
244
+ # puts "No response received."
245
+ # end
246
+ #
204
247
  def get_operation request, options = nil
205
248
  raise ::ArgumentError, "request must be provided" if request.nil?
206
249
 
@@ -267,6 +310,22 @@ module Google
267
310
  # @return [::Google::Protobuf::Empty]
268
311
  #
269
312
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
313
+ #
314
+ # @example Basic example
315
+ # require "google/longrunning"
316
+ #
317
+ # # Create a client object. The client can be reused for multiple calls.
318
+ # client = Google::Longrunning::Operations::Rest::Client.new
319
+ #
320
+ # # Create a request. To set request fields, pass in keyword arguments.
321
+ # request = Google::Longrunning::DeleteOperationRequest.new
322
+ #
323
+ # # Call the delete_operation method.
324
+ # result = client.delete_operation request
325
+ #
326
+ # # The returned object is of type Google::Protobuf::Empty.
327
+ # p result
328
+ #
270
329
  def delete_operation request, options = nil
271
330
  raise ::ArgumentError, "request must be provided" if request.nil?
272
331
 
@@ -338,6 +397,22 @@ module Google
338
397
  # @return [::Google::Protobuf::Empty]
339
398
  #
340
399
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
400
+ #
401
+ # @example Basic example
402
+ # require "google/longrunning"
403
+ #
404
+ # # Create a client object. The client can be reused for multiple calls.
405
+ # client = Google::Longrunning::Operations::Rest::Client.new
406
+ #
407
+ # # Create a request. To set request fields, pass in keyword arguments.
408
+ # request = Google::Longrunning::CancelOperationRequest.new
409
+ #
410
+ # # Call the cancel_operation method.
411
+ # result = client.cancel_operation request
412
+ #
413
+ # # The returned object is of type Google::Protobuf::Empty.
414
+ # p result
415
+ #
341
416
  def cancel_operation request, options = nil
342
417
  raise ::ArgumentError, "request must be provided" if request.nil?
343
418
 
@@ -411,9 +486,9 @@ module Google
411
486
  # * (`String`) The path to a service account key file in JSON format
412
487
  # * (`Hash`) A service account key as a Hash
413
488
  # * (`Google::Auth::Credentials`) A googleauth credentials object
414
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
489
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
415
490
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
416
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
491
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
417
492
  # * (`nil`) indicating no credentials
418
493
  # @return [::Object]
419
494
  # @!attribute [rw] scope
@@ -446,7 +521,9 @@ module Google
446
521
  class Configuration
447
522
  extend ::Gapic::Config
448
523
 
449
- config_attr :endpoint, "datafusion.googleapis.com", ::String
524
+ DEFAULT_ENDPOINT = "datafusion.googleapis.com"
525
+
526
+ config_attr :endpoint, DEFAULT_ENDPOINT, ::String
450
527
  config_attr :credentials, nil do |value|
451
528
  allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
452
529
  allowed.any? { |klass| klass === value }
@@ -567,7 +644,7 @@ module Google
567
644
 
568
645
  verb, uri, query_string_params, body = OperationsServiceStub.transcode_list_operations_request request_pb
569
646
  query_string_params = if query_string_params.any?
570
- query_string_params.to_h { |p| p.split("=", 2) }
647
+ query_string_params.to_h { |p| p.split "=", 2 }
571
648
  else
572
649
  {}
573
650
  end
@@ -605,7 +682,7 @@ module Google
605
682
 
606
683
  verb, uri, query_string_params, body = OperationsServiceStub.transcode_get_operation_request request_pb
607
684
  query_string_params = if query_string_params.any?
608
- query_string_params.to_h { |p| p.split("=", 2) }
685
+ query_string_params.to_h { |p| p.split "=", 2 }
609
686
  else
610
687
  {}
611
688
  end
@@ -643,7 +720,7 @@ module Google
643
720
 
644
721
  verb, uri, query_string_params, body = OperationsServiceStub.transcode_delete_operation_request request_pb
645
722
  query_string_params = if query_string_params.any?
646
- query_string_params.to_h { |p| p.split("=", 2) }
723
+ query_string_params.to_h { |p| p.split "=", 2 }
647
724
  else
648
725
  {}
649
726
  end
@@ -681,7 +758,7 @@ module Google
681
758
 
682
759
  verb, uri, query_string_params, body = OperationsServiceStub.transcode_cancel_operation_request request_pb
683
760
  query_string_params = if query_string_params.any?
684
- query_string_params.to_h { |p| p.split("=", 2) }
761
+ query_string_params.to_h { |p| p.split "=", 2 }
685
762
  else
686
763
  {}
687
764
  end
@@ -59,7 +59,7 @@ module Google
59
59
 
60
60
  verb, uri, query_string_params, body = ServiceStub.transcode_list_available_versions_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_instances_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_get_instance_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_instance_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_delete_instance_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_update_instance_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_restart_instance_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
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module DataFusion
23
23
  module V1
24
- VERSION = "0.3.0"
24
+ VERSION = "0.5.0"
25
25
  end
26
26
  end
27
27
  end
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # Generated by the protocol buffer compiler. DO NOT EDIT!
2
3
  # source: google/cloud/datafusion/v1/datafusion.proto
3
4
 
@@ -11,146 +12,33 @@ require 'google/longrunning/operations_pb'
11
12
  require 'google/protobuf/field_mask_pb'
12
13
  require 'google/protobuf/timestamp_pb'
13
14
 
14
- Google::Protobuf::DescriptorPool.generated_pool.build do
15
- add_file("google/cloud/datafusion/v1/datafusion.proto", :syntax => :proto3) do
16
- add_message "google.cloud.datafusion.v1.NetworkConfig" do
17
- optional :network, :string, 1
18
- optional :ip_allocation, :string, 2
19
- end
20
- add_message "google.cloud.datafusion.v1.Version" do
21
- optional :version_number, :string, 1
22
- optional :default_version, :bool, 2
23
- repeated :available_features, :string, 3
24
- optional :type, :enum, 4, "google.cloud.datafusion.v1.Version.Type"
25
- end
26
- add_enum "google.cloud.datafusion.v1.Version.Type" do
27
- value :TYPE_UNSPECIFIED, 0
28
- value :TYPE_PREVIEW, 1
29
- value :TYPE_GENERAL_AVAILABILITY, 2
30
- end
31
- add_message "google.cloud.datafusion.v1.Accelerator" do
32
- optional :accelerator_type, :enum, 1, "google.cloud.datafusion.v1.Accelerator.AcceleratorType"
33
- optional :state, :enum, 2, "google.cloud.datafusion.v1.Accelerator.State"
34
- end
35
- add_enum "google.cloud.datafusion.v1.Accelerator.AcceleratorType" do
36
- value :ACCELERATOR_TYPE_UNSPECIFIED, 0
37
- value :CDC, 1
38
- value :HEALTHCARE, 2
39
- value :CCAI_INSIGHTS, 3
40
- end
41
- add_enum "google.cloud.datafusion.v1.Accelerator.State" do
42
- value :STATE_UNSPECIFIED, 0
43
- value :ENABLED, 1
44
- value :DISABLED, 2
45
- value :UNKNOWN, 3
46
- end
47
- add_message "google.cloud.datafusion.v1.CryptoKeyConfig" do
48
- optional :key_reference, :string, 1
49
- end
50
- add_message "google.cloud.datafusion.v1.Instance" do
51
- optional :name, :string, 1
52
- optional :description, :string, 2
53
- optional :type, :enum, 3, "google.cloud.datafusion.v1.Instance.Type"
54
- optional :enable_stackdriver_logging, :bool, 4
55
- optional :enable_stackdriver_monitoring, :bool, 5
56
- optional :private_instance, :bool, 6
57
- optional :network_config, :message, 7, "google.cloud.datafusion.v1.NetworkConfig"
58
- map :labels, :string, :string, 8
59
- map :options, :string, :string, 9
60
- optional :create_time, :message, 10, "google.protobuf.Timestamp"
61
- optional :update_time, :message, 11, "google.protobuf.Timestamp"
62
- optional :state, :enum, 12, "google.cloud.datafusion.v1.Instance.State"
63
- optional :state_message, :string, 13
64
- optional :service_endpoint, :string, 14
65
- optional :zone, :string, 15
66
- optional :version, :string, 16
67
- optional :service_account, :string, 17
68
- optional :display_name, :string, 18
69
- repeated :available_version, :message, 19, "google.cloud.datafusion.v1.Version"
70
- optional :api_endpoint, :string, 20
71
- optional :gcs_bucket, :string, 21
72
- repeated :accelerators, :message, 22, "google.cloud.datafusion.v1.Accelerator"
73
- optional :p4_service_account, :string, 23
74
- optional :tenant_project_id, :string, 24
75
- optional :dataproc_service_account, :string, 25
76
- optional :enable_rbac, :bool, 27
77
- optional :crypto_key_config, :message, 28, "google.cloud.datafusion.v1.CryptoKeyConfig"
78
- repeated :disabled_reason, :enum, 29, "google.cloud.datafusion.v1.Instance.DisabledReason"
79
- end
80
- add_enum "google.cloud.datafusion.v1.Instance.Type" do
81
- value :TYPE_UNSPECIFIED, 0
82
- value :BASIC, 1
83
- value :ENTERPRISE, 2
84
- value :DEVELOPER, 3
85
- end
86
- add_enum "google.cloud.datafusion.v1.Instance.State" do
87
- value :STATE_UNSPECIFIED, 0
88
- value :CREATING, 1
89
- value :ACTIVE, 2
90
- value :FAILED, 3
91
- value :DELETING, 4
92
- value :UPGRADING, 5
93
- value :RESTARTING, 6
94
- value :UPDATING, 7
95
- value :AUTO_UPDATING, 8
96
- value :AUTO_UPGRADING, 9
97
- value :DISABLED, 10
98
- end
99
- add_enum "google.cloud.datafusion.v1.Instance.DisabledReason" do
100
- value :DISABLED_REASON_UNSPECIFIED, 0
101
- value :KMS_KEY_ISSUE, 1
102
- end
103
- add_message "google.cloud.datafusion.v1.ListInstancesRequest" do
104
- optional :parent, :string, 1
105
- optional :page_size, :int32, 2
106
- optional :page_token, :string, 3
107
- optional :filter, :string, 4
108
- optional :order_by, :string, 5
109
- end
110
- add_message "google.cloud.datafusion.v1.ListInstancesResponse" do
111
- repeated :instances, :message, 1, "google.cloud.datafusion.v1.Instance"
112
- optional :next_page_token, :string, 2
113
- repeated :unreachable, :string, 3
114
- end
115
- add_message "google.cloud.datafusion.v1.ListAvailableVersionsRequest" do
116
- optional :parent, :string, 1
117
- optional :page_size, :int32, 2
118
- optional :page_token, :string, 3
119
- optional :latest_patch_only, :bool, 4
120
- end
121
- add_message "google.cloud.datafusion.v1.ListAvailableVersionsResponse" do
122
- repeated :available_versions, :message, 1, "google.cloud.datafusion.v1.Version"
123
- optional :next_page_token, :string, 2
124
- end
125
- add_message "google.cloud.datafusion.v1.GetInstanceRequest" do
126
- optional :name, :string, 1
127
- end
128
- add_message "google.cloud.datafusion.v1.CreateInstanceRequest" do
129
- optional :parent, :string, 1
130
- optional :instance_id, :string, 2
131
- optional :instance, :message, 3, "google.cloud.datafusion.v1.Instance"
132
- end
133
- add_message "google.cloud.datafusion.v1.DeleteInstanceRequest" do
134
- optional :name, :string, 1
135
- end
136
- add_message "google.cloud.datafusion.v1.UpdateInstanceRequest" do
137
- optional :instance, :message, 1, "google.cloud.datafusion.v1.Instance"
138
- optional :update_mask, :message, 2, "google.protobuf.FieldMask"
139
- end
140
- add_message "google.cloud.datafusion.v1.RestartInstanceRequest" do
141
- optional :name, :string, 1
142
- end
143
- add_message "google.cloud.datafusion.v1.OperationMetadata" do
144
- optional :create_time, :message, 1, "google.protobuf.Timestamp"
145
- optional :end_time, :message, 2, "google.protobuf.Timestamp"
146
- optional :target, :string, 3
147
- optional :verb, :string, 4
148
- optional :status_detail, :string, 5
149
- optional :requested_cancellation, :bool, 6
150
- optional :api_version, :string, 7
151
- map :additional_status, :string, :string, 8
15
+
16
+ descriptor_data = "\n+google/cloud/datafusion/v1/datafusion.proto\x12\x1agoogle.cloud.datafusion.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a#google/longrunning/operations.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"7\n\rNetworkConfig\x12\x0f\n\x07network\x18\x01 \x01(\t\x12\x15\n\rip_allocation\x18\x02 \x01(\t\"\xdd\x01\n\x07Version\x12\x16\n\x0eversion_number\x18\x01 \x01(\t\x12\x17\n\x0f\x64\x65\x66\x61ult_version\x18\x02 \x01(\x08\x12\x1a\n\x12\x61vailable_features\x18\x03 \x03(\t\x12\x36\n\x04type\x18\x04 \x01(\x0e\x32(.google.cloud.datafusion.v1.Version.Type\"M\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x10\n\x0cTYPE_PREVIEW\x10\x01\x12\x1d\n\x19TYPE_GENERAL_AVAILABILITY\x10\x02\"\xc7\x02\n\x0b\x41\x63\x63\x65lerator\x12Q\n\x10\x61\x63\x63\x65lerator_type\x18\x01 \x01(\x0e\x32\x37.google.cloud.datafusion.v1.Accelerator.AcceleratorType\x12<\n\x05state\x18\x02 \x01(\x0e\x32-.google.cloud.datafusion.v1.Accelerator.State\"_\n\x0f\x41\x63\x63\x65leratorType\x12 \n\x1c\x41\x43\x43\x45LERATOR_TYPE_UNSPECIFIED\x10\x00\x12\x07\n\x03\x43\x44\x43\x10\x01\x12\x0e\n\nHEALTHCARE\x10\x02\x12\x11\n\rCCAI_INSIGHTS\x10\x03\"F\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07\x45NABLED\x10\x01\x12\x0c\n\x08\x44ISABLED\x10\x02\x12\x0b\n\x07UNKNOWN\x10\x03\"P\n\x0f\x43ryptoKeyConfig\x12=\n\rkey_reference\x18\x01 \x01(\tB&\xfa\x41#\n!cloudkms.googleapis.com/CryptoKey\"\xd2\r\n\x08Instance\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x03\xfa\x41$\n\"datafusion.googleapis.com/Instance\x12\x13\n\x0b\x64\x65scription\x18\x02 \x01(\t\x12<\n\x04type\x18\x03 \x01(\x0e\x32).google.cloud.datafusion.v1.Instance.TypeB\x03\xe0\x41\x02\x12\"\n\x1a\x65nable_stackdriver_logging\x18\x04 \x01(\x08\x12%\n\x1d\x65nable_stackdriver_monitoring\x18\x05 \x01(\x08\x12\x18\n\x10private_instance\x18\x06 \x01(\x08\x12\x41\n\x0enetwork_config\x18\x07 \x01(\x0b\x32).google.cloud.datafusion.v1.NetworkConfig\x12@\n\x06labels\x18\x08 \x03(\x0b\x32\x30.google.cloud.datafusion.v1.Instance.LabelsEntry\x12\x42\n\x07options\x18\t \x03(\x0b\x32\x31.google.cloud.datafusion.v1.Instance.OptionsEntry\x12\x34\n\x0b\x63reate_time\x18\n \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12>\n\x05state\x18\x0c \x01(\x0e\x32*.google.cloud.datafusion.v1.Instance.StateB\x03\xe0\x41\x03\x12\x1a\n\rstate_message\x18\r \x01(\tB\x03\xe0\x41\x03\x12\x1d\n\x10service_endpoint\x18\x0e \x01(\tB\x03\xe0\x41\x03\x12\x0c\n\x04zone\x18\x0f \x01(\t\x12\x0f\n\x07version\x18\x10 \x01(\t\x12\x1e\n\x0fservice_account\x18\x11 \x01(\tB\x05\x18\x01\xe0\x41\x03\x12\x14\n\x0c\x64isplay_name\x18\x12 \x01(\t\x12>\n\x11\x61vailable_version\x18\x13 \x03(\x0b\x32#.google.cloud.datafusion.v1.Version\x12\x19\n\x0c\x61pi_endpoint\x18\x14 \x01(\tB\x03\xe0\x41\x03\x12\x17\n\ngcs_bucket\x18\x15 \x01(\tB\x03\xe0\x41\x03\x12=\n\x0c\x61\x63\x63\x65lerators\x18\x16 \x03(\x0b\x32\'.google.cloud.datafusion.v1.Accelerator\x12\x1f\n\x12p4_service_account\x18\x17 \x01(\tB\x03\xe0\x41\x03\x12\x1e\n\x11tenant_project_id\x18\x18 \x01(\tB\x03\xe0\x41\x03\x12 \n\x18\x64\x61taproc_service_account\x18\x19 \x01(\t\x12\x13\n\x0b\x65nable_rbac\x18\x1b \x01(\x08\x12\x46\n\x11\x63rypto_key_config\x18\x1c \x01(\x0b\x32+.google.cloud.datafusion.v1.CryptoKeyConfig\x12Q\n\x0f\x64isabled_reason\x18\x1d \x03(\x0e\x32\x33.google.cloud.datafusion.v1.Instance.DisabledReasonB\x03\xe0\x41\x03\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1a.\n\x0cOptionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"F\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\t\n\x05\x42\x41SIC\x10\x01\x12\x0e\n\nENTERPRISE\x10\x02\x12\r\n\tDEVELOPER\x10\x03\"\xb4\x01\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x43REATING\x10\x01\x12\n\n\x06\x41\x43TIVE\x10\x02\x12\n\n\x06\x46\x41ILED\x10\x03\x12\x0c\n\x08\x44\x45LETING\x10\x04\x12\r\n\tUPGRADING\x10\x05\x12\x0e\n\nRESTARTING\x10\x06\x12\x0c\n\x08UPDATING\x10\x07\x12\x11\n\rAUTO_UPDATING\x10\x08\x12\x12\n\x0e\x41UTO_UPGRADING\x10\t\x12\x0c\n\x08\x44ISABLED\x10\n\"D\n\x0e\x44isabledReason\x12\x1f\n\x1b\x44ISABLED_REASON_UNSPECIFIED\x10\x00\x12\x11\n\rKMS_KEY_ISSUE\x10\x01:e\xea\x41\x62\n\"datafusion.googleapis.com/Instance\x12<projects/{project}/locations/{location}/instances/{instance}\"\x9a\x01\n\x14ListInstancesRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x0e\n\x06\x66ilter\x18\x04 \x01(\t\x12\x10\n\x08order_by\x18\x05 \x01(\t\"~\n\x15ListInstancesResponse\x12\x37\n\tinstances\x18\x01 \x03(\x0b\x32$.google.cloud.datafusion.v1.Instance\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\x9b\x01\n\x1cListAvailableVersionsRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x19\n\x11latest_patch_only\x18\x04 \x01(\x08\"y\n\x1dListAvailableVersionsResponse\x12?\n\x12\x61vailable_versions\x18\x01 \x03(\x0b\x32#.google.cloud.datafusion.v1.Version\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"N\n\x12GetInstanceRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"datafusion.googleapis.com/Instance\"\xa4\x01\n\x15\x43reateInstanceRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x18\n\x0binstance_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x36\n\x08instance\x18\x03 \x01(\x0b\x32$.google.cloud.datafusion.v1.Instance\"Q\n\x15\x44\x65leteInstanceRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"datafusion.googleapis.com/Instance\"\x85\x01\n\x15UpdateInstanceRequest\x12;\n\x08instance\x18\x01 \x01(\x0b\x32$.google.cloud.datafusion.v1.InstanceB\x03\xe0\x41\x02\x12/\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMask\"R\n\x16RestartInstanceRequest\x12\x38\n\x04name\x18\x01 \x01(\tB*\xe0\x41\x02\xfa\x41$\n\"datafusion.googleapis.com/Instance\"\xf5\x02\n\x11OperationMetadata\x12/\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x0e\n\x06target\x18\x03 \x01(\t\x12\x0c\n\x04verb\x18\x04 \x01(\t\x12\x15\n\rstatus_detail\x18\x05 \x01(\t\x12\x1e\n\x16requested_cancellation\x18\x06 \x01(\x08\x12\x13\n\x0b\x61pi_version\x18\x07 \x01(\t\x12^\n\x11\x61\x64\x64itional_status\x18\x08 \x03(\x0b\x32\x43.google.cloud.datafusion.v1.OperationMetadata.AdditionalStatusEntry\x1a\x37\n\x15\x41\x64\x64itionalStatusEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x32\xd7\x0b\n\nDataFusion\x12\xcb\x01\n\x15ListAvailableVersions\x12\x38.google.cloud.datafusion.v1.ListAvailableVersionsRequest\x1a\x39.google.cloud.datafusion.v1.ListAvailableVersionsResponse\"=\x82\xd3\xe4\x93\x02.\x12,/v1/{parent=projects/*/locations/*}/versions\xda\x41\x06parent\x12\xab\x01\n\rListInstances\x12\x30.google.cloud.datafusion.v1.ListInstancesRequest\x1a\x31.google.cloud.datafusion.v1.ListInstancesResponse\"5\x82\xd3\xe4\x93\x02/\x12-/v1/{parent=projects/*/locations/*}/instances\x12\x9a\x01\n\x0bGetInstance\x12..google.cloud.datafusion.v1.GetInstanceRequest\x1a$.google.cloud.datafusion.v1.Instance\"5\x82\xd3\xe4\x93\x02/\x12-/v1/{name=projects/*/locations/*/instances/*}\x12\xe1\x01\n\x0e\x43reateInstance\x12\x31.google.cloud.datafusion.v1.CreateInstanceRequest\x1a\x1d.google.longrunning.Operation\"}\x82\xd3\xe4\x93\x02\x39\"-/v1/{parent=projects/*/locations/*}/instances:\x08instance\xda\x41\x1bparent,instance,instance_id\xca\x41\x1d\n\x08Instance\x12\x11OperationMetadata\x12\xcd\x01\n\x0e\x44\x65leteInstance\x12\x31.google.cloud.datafusion.v1.DeleteInstanceRequest\x1a\x1d.google.longrunning.Operation\"i\x82\xd3\xe4\x93\x02/*-/v1/{name=projects/*/locations/*/instances/*}\xda\x41\x04name\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\x12\xe3\x01\n\x0eUpdateInstance\x12\x31.google.cloud.datafusion.v1.UpdateInstanceRequest\x1a\x1d.google.longrunning.Operation\"\x7f\x82\xd3\xe4\x93\x02\x42\x32\x36/v1/{instance.name=projects/*/locations/*/instances/*}:\x08instance\xda\x41\x14instance,update_mask\xca\x41\x1d\n\x08Instance\x12\x11OperationMetadata\x12\xc6\x01\n\x0fRestartInstance\x12\x32.google.cloud.datafusion.v1.RestartInstanceRequest\x1a\x1d.google.longrunning.Operation\"`\x82\xd3\xe4\x93\x02:\"5/v1/{name=projects/*/locations/*/instances/*}:restart:\x01*\xca\x41\x1d\n\x08Instance\x12\x11OperationMetadata\x1aM\xca\x41\x19\x64\x61tafusion.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xb7\x02\n\x1e\x63om.google.cloud.datafusion.v1P\x01Z>cloud.google.com/go/datafusion/apiv1/datafusionpb;datafusionpb\xaa\x02\x1aGoogle.Cloud.DataFusion.V1\xca\x02\x1aGoogle\\Cloud\\DataFusion\\V1\xea\x02\x1dGoogle::Cloud::DataFusion::V1\xea\x41x\n!cloudkms.googleapis.com/CryptoKey\x12Sprojects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}b\x06proto3"
17
+
18
+ pool = Google::Protobuf::DescriptorPool.generated_pool
19
+
20
+ begin
21
+ pool.add_serialized_file(descriptor_data)
22
+ rescue TypeError => e
23
+ # Compatibility code: will be removed in the next major version.
24
+ require 'google/protobuf/descriptor_pb'
25
+ parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
26
+ parsed.clear_dependency
27
+ serialized = parsed.class.encode(parsed)
28
+ file = pool.add_serialized_file(serialized)
29
+ warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
30
+ imports = [
31
+ ["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
32
+ ["google.protobuf.FieldMask", "google/protobuf/field_mask.proto"],
33
+ ]
34
+ imports.each do |type_name, expected_filename|
35
+ import_file = pool.lookup(type_name).file_descriptor
36
+ if import_file.name != expected_filename
37
+ warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
152
38
  end
153
39
  end
40
+ warn "Each proto file must use a consistent fully-qualified name."
41
+ warn "This will become an error in the next major version."
154
42
  end
155
43
 
156
44
  module Google
@@ -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.
@@ -81,7 +83,7 @@ module Google
81
83
  # long-running operation pattern.
82
84
  # @!attribute [rw] new_issue_uri
83
85
  # @return [::String]
84
- # Link to a place that API users can report issues. Example:
86
+ # Link to a *public* URI where users can report issues. Example:
85
87
  # https://issuetracker.google.com/issues/new?component=190865&template=1161103
86
88
  # @!attribute [rw] documentation_uri
87
89
  # @return [::String]
@@ -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
@@ -299,6 +353,15 @@ module Google
299
353
 
300
354
  # Street View Org.
301
355
  STREET_VIEW = 4
356
+
357
+ # Shopping Org.
358
+ SHOPPING = 5
359
+
360
+ # Geo Org.
361
+ GEO = 6
362
+
363
+ # Generative AI - https://developers.generativeai.google
364
+ GENERATIVE_AI = 7
302
365
  end
303
366
 
304
367
  # To where should client libraries be published?
@@ -66,6 +66,20 @@ module Google
66
66
  # a non-empty value will be returned. The user will not be aware of what
67
67
  # non-empty value to expect.
68
68
  NON_EMPTY_DEFAULT = 7
69
+
70
+ # Denotes that the field in a resource (a message annotated with
71
+ # google.api.resource) is used in the resource name to uniquely identify the
72
+ # resource. For AIP-compliant APIs, this should only be applied to the
73
+ # `name` field on the resource.
74
+ #
75
+ # This behavior should not be applied to references to other resources within
76
+ # the message.
77
+ #
78
+ # The identifier field of resources often have different field behavior
79
+ # depending on the request it is embedded in (e.g. for Create methods name
80
+ # is optional and unused, while for Update methods it is required). Instead
81
+ # of method-specific annotations, only `IDENTIFIER` is required.
82
+ IDENTIFIER = 8
69
83
  end
70
84
  end
71
85
  end
@@ -43,8 +43,12 @@ module Google
43
43
  # if (any.is(Foo.class)) {
44
44
  # foo = any.unpack(Foo.class);
45
45
  # }
46
+ # // or ...
47
+ # if (any.isSameTypeAs(Foo.getDefaultInstance())) {
48
+ # foo = any.unpack(Foo.getDefaultInstance());
49
+ # }
46
50
  #
47
- # Example 3: Pack and unpack a message in Python.
51
+ # Example 3: Pack and unpack a message in Python.
48
52
  #
49
53
  # foo = Foo(...)
50
54
  # any = Any()
@@ -54,7 +58,7 @@ module Google
54
58
  # any.Unpack(foo)
55
59
  # ...
56
60
  #
57
- # Example 4: Pack and unpack a message in Go
61
+ # Example 4: Pack and unpack a message in Go
58
62
  #
59
63
  # foo := &pb.Foo{...}
60
64
  # any, err := anypb.New(foo)
@@ -73,9 +77,8 @@ module Google
73
77
  # in the type URL, for example "foo.bar.com/x/y.z" will yield type
74
78
  # name "y.z".
75
79
  #
76
- #
77
80
  # JSON
78
- #
81
+ # ====
79
82
  # The JSON representation of an `Any` value uses the regular
80
83
  # representation of the deserialized, embedded message, with an
81
84
  # additional field `@type` which contains the type URL. Example:
@@ -69,7 +69,6 @@ module Google
69
69
  # Timestamp timestamp = Timestamp.newBuilder().setSeconds(millis / 1000)
70
70
  # .setNanos((int) ((millis % 1000) * 1000000)).build();
71
71
  #
72
- #
73
72
  # Example 5: Compute Timestamp from Java `Instant.now()`.
74
73
  #
75
74
  # Instant now = Instant.now();
@@ -78,7 +77,6 @@ module Google
78
77
  # Timestamp.newBuilder().setSeconds(now.getEpochSecond())
79
78
  # .setNanos(now.getNano()).build();
80
79
  #
81
- #
82
80
  # Example 6: Compute Timestamp from current time in Python.
83
81
  #
84
82
  # timestamp = Timestamp()
@@ -108,7 +106,7 @@ module Google
108
106
  # [`strftime`](https://docs.python.org/2/library/time.html#time.strftime) with
109
107
  # the time format spec '%Y-%m-%dT%H:%M:%S.%fZ'. Likewise, in Java, one can use
110
108
  # the Joda Time's [`ISODateTimeFormat.dateTime()`](
111
- # http://www.joda.org/joda-time/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime%2D%2D
109
+ # http://joda-time.sourceforge.net/apidocs/org/joda/time/format/ISODateTimeFormat.html#dateTime()
112
110
  # ) to obtain a formatter capable of generating timestamps in this format.
113
111
  # @!attribute [rw] seconds
114
112
  # @return [::Integer]
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-data_fusion-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.5.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-09-12 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.18.0
19
+ version: 0.20.0
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.18.0
29
+ version: 0.20.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -216,7 +216,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
216
216
  - !ruby/object:Gem::Version
217
217
  version: '0'
218
218
  requirements: []
219
- rubygems_version: 3.4.2
219
+ rubygems_version: 3.4.19
220
220
  signing_key:
221
221
  specification_version: 4
222
222
  summary: Cloud Data Fusion is a fully-managed, cloud native, enterprise data integration