google-cloud-datastream-v1alpha1 0.3.0 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/datastream/v1alpha1/datastream/client.rb +6 -4
- data/lib/google/cloud/datastream/v1alpha1/datastream/operations.rb +5 -3
- data/lib/google/cloud/datastream/v1alpha1/datastream/rest/client.rb +6 -4
- data/lib/google/cloud/datastream/v1alpha1/datastream/rest/operations.rb +9 -7
- data/lib/google/cloud/datastream/v1alpha1/datastream/rest/service_stub.rb +21 -21
- data/lib/google/cloud/datastream/v1alpha1/datastream_pb.rb +27 -162
- data/lib/google/cloud/datastream/v1alpha1/datastream_resources_pb.rb +26 -251
- data/lib/google/cloud/datastream/v1alpha1/version.rb +1 -1
- data/proto_docs/google/api/client.rb +67 -4
- data/proto_docs/google/protobuf/any.rb +7 -4
- data/proto_docs/google/protobuf/timestamp.rb +1 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d8c8bf8f6fd120afed5f480229871583b39a5010e87339b792a81fdda179c64d
|
4
|
+
data.tar.gz: 6f3079f4d99c1818f3e83cb25f5da358a27d99871945a42f6597a3b14e04bd75
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8ac99d52416b8990c8c262038acdab8456df005a8954d7553a3bf82f91a3daca95b5eee3d5082ab7b2b6b6b762072b74dc48fa3f9237d15f15c39f8f27e346bc
|
7
|
+
data.tar.gz: e7d948bf8dbd5507e21516efb25a82510e449614ddbaea915dd08b0967189b9d156177767eec322e2dc3380ee5114b1072c9d4369ec96aef8b2a871c7032cb86
|
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://
|
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
|
|
@@ -148,7 +148,7 @@ module Google
|
|
148
148
|
credentials = @config.credentials
|
149
149
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
150
150
|
# but only if the default endpoint does not have a region prefix.
|
151
|
-
enable_self_signed_jwt = @config.endpoint ==
|
151
|
+
enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
152
152
|
!@config.endpoint.split(".").first.include?("-")
|
153
153
|
credentials ||= Credentials.default scope: @config.scope,
|
154
154
|
enable_self_signed_jwt: enable_self_signed_jwt
|
@@ -2383,9 +2383,9 @@ module Google
|
|
2383
2383
|
# * (`String`) The path to a service account key file in JSON format
|
2384
2384
|
# * (`Hash`) A service account key as a Hash
|
2385
2385
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
2386
|
-
# (see the [googleauth docs](https://
|
2386
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
2387
2387
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
2388
|
-
# (see the [signet docs](https://
|
2388
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
2389
2389
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
2390
2390
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
2391
2391
|
# * (`nil`) indicating no credentials
|
@@ -2427,7 +2427,9 @@ module Google
|
|
2427
2427
|
class Configuration
|
2428
2428
|
extend ::Gapic::Config
|
2429
2429
|
|
2430
|
-
|
2430
|
+
DEFAULT_ENDPOINT = "datastream.googleapis.com"
|
2431
|
+
|
2432
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
2431
2433
|
config_attr :credentials, nil do |value|
|
2432
2434
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
2433
2435
|
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://
|
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://
|
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
|
-
|
667
|
+
DEFAULT_ENDPOINT = "datastream.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
|
@@ -144,7 +144,7 @@ module Google
|
|
144
144
|
credentials = @config.credentials
|
145
145
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
146
146
|
# but only if the default endpoint does not have a region prefix.
|
147
|
-
enable_self_signed_jwt = @config.endpoint ==
|
147
|
+
enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
148
148
|
!@config.endpoint.split(".").first.include?("-")
|
149
149
|
credentials ||= Credentials.default scope: @config.scope,
|
150
150
|
enable_self_signed_jwt: enable_self_signed_jwt
|
@@ -1795,9 +1795,9 @@ module Google
|
|
1795
1795
|
# * (`String`) The path to a service account key file in JSON format
|
1796
1796
|
# * (`Hash`) A service account key as a Hash
|
1797
1797
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
1798
|
-
# (see the [googleauth docs](https://
|
1798
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
1799
1799
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
1800
|
-
# (see the [signet docs](https://
|
1800
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
1801
1801
|
# * (`nil`) indicating no credentials
|
1802
1802
|
# @return [::Object]
|
1803
1803
|
# @!attribute [rw] scope
|
@@ -1830,7 +1830,9 @@ module Google
|
|
1830
1830
|
class Configuration
|
1831
1831
|
extend ::Gapic::Config
|
1832
1832
|
|
1833
|
-
|
1833
|
+
DEFAULT_ENDPOINT = "datastream.googleapis.com"
|
1834
|
+
|
1835
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
1834
1836
|
config_attr :credentials, nil do |value|
|
1835
1837
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
1836
1838
|
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://
|
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://
|
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
|
-
|
449
|
+
DEFAULT_ENDPOINT = "datastream.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
|
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
|
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
|
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
|
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_list_connection_profiles_request request_pb
|
61
61
|
query_string_params = if query_string_params.any?
|
62
|
-
query_string_params.to_h { |p| p.split
|
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_get_connection_profile_request request_pb
|
99
99
|
query_string_params = if query_string_params.any?
|
100
|
-
query_string_params.to_h { |p| p.split
|
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_create_connection_profile_request request_pb
|
137
137
|
query_string_params = if query_string_params.any?
|
138
|
-
query_string_params.to_h { |p| p.split
|
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_update_connection_profile_request request_pb
|
175
175
|
query_string_params = if query_string_params.any?
|
176
|
-
query_string_params.to_h { |p| p.split
|
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_connection_profile_request request_pb
|
213
213
|
query_string_params = if query_string_params.any?
|
214
|
-
query_string_params.to_h { |p| p.split
|
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_discover_connection_profile_request request_pb
|
251
251
|
query_string_params = if query_string_params.any?
|
252
|
-
query_string_params.to_h { |p| p.split
|
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_list_streams_request request_pb
|
289
289
|
query_string_params = if query_string_params.any?
|
290
|
-
query_string_params.to_h { |p| p.split
|
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_get_stream_request request_pb
|
327
327
|
query_string_params = if query_string_params.any?
|
328
|
-
query_string_params.to_h { |p| p.split
|
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_create_stream_request request_pb
|
365
365
|
query_string_params = if query_string_params.any?
|
366
|
-
query_string_params.to_h { |p| p.split
|
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_update_stream_request request_pb
|
403
403
|
query_string_params = if query_string_params.any?
|
404
|
-
query_string_params.to_h { |p| p.split
|
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_delete_stream_request request_pb
|
441
441
|
query_string_params = if query_string_params.any?
|
442
|
-
query_string_params.to_h { |p| p.split
|
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_fetch_errors_request request_pb
|
479
479
|
query_string_params = if query_string_params.any?
|
480
|
-
query_string_params.to_h { |p| p.split
|
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_fetch_static_ips_request request_pb
|
517
517
|
query_string_params = if query_string_params.any?
|
518
|
-
query_string_params.to_h { |p| p.split
|
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_create_private_connection_request request_pb
|
555
555
|
query_string_params = if query_string_params.any?
|
556
|
-
query_string_params.to_h { |p| p.split
|
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_get_private_connection_request request_pb
|
593
593
|
query_string_params = if query_string_params.any?
|
594
|
-
query_string_params.to_h { |p| p.split
|
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_list_private_connections_request request_pb
|
631
631
|
query_string_params = if query_string_params.any?
|
632
|
-
query_string_params.to_h { |p| p.split
|
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_delete_private_connection_request request_pb
|
669
669
|
query_string_params = if query_string_params.any?
|
670
|
-
query_string_params.to_h { |p| p.split
|
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_create_route_request request_pb
|
707
707
|
query_string_params = if query_string_params.any?
|
708
|
-
query_string_params.to_h { |p| p.split
|
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_get_route_request request_pb
|
745
745
|
query_string_params = if query_string_params.any?
|
746
|
-
query_string_params.to_h { |p| p.split
|
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_list_routes_request request_pb
|
783
783
|
query_string_params = if query_string_params.any?
|
784
|
-
query_string_params.to_h { |p| p.split
|
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_delete_route_request request_pb
|
821
821
|
query_string_params = if query_string_params.any?
|
822
|
-
query_string_params.to_h { |p| p.split
|
822
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
823
823
|
else
|
824
824
|
{}
|
825
825
|
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/datastream/v1alpha1/datastream.proto
|
3
4
|
|
@@ -12,170 +13,34 @@ require 'google/longrunning/operations_pb'
|
|
12
13
|
require 'google/protobuf/field_mask_pb'
|
13
14
|
require 'google/protobuf/timestamp_pb'
|
14
15
|
|
15
|
-
|
16
|
-
add_file("google/cloud/datastream/v1alpha1/datastream.proto", :syntax => :proto3) do
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
optional :name, :string, 1
|
40
|
-
optional :page_size, :int32, 2
|
41
|
-
optional :page_token, :string, 3
|
42
|
-
end
|
43
|
-
add_message "google.cloud.datastream.v1alpha1.FetchStaticIpsResponse" do
|
44
|
-
repeated :static_ips, :string, 1
|
45
|
-
optional :next_page_token, :string, 2
|
46
|
-
end
|
47
|
-
add_message "google.cloud.datastream.v1alpha1.FetchErrorsRequest" do
|
48
|
-
optional :stream, :string, 1
|
49
|
-
end
|
50
|
-
add_message "google.cloud.datastream.v1alpha1.FetchErrorsResponse" do
|
51
|
-
repeated :errors, :message, 1, "google.cloud.datastream.v1alpha1.Error"
|
52
|
-
end
|
53
|
-
add_message "google.cloud.datastream.v1alpha1.ListConnectionProfilesRequest" do
|
54
|
-
optional :parent, :string, 1
|
55
|
-
optional :page_size, :int32, 2
|
56
|
-
optional :page_token, :string, 3
|
57
|
-
optional :filter, :string, 4
|
58
|
-
optional :order_by, :string, 5
|
59
|
-
end
|
60
|
-
add_message "google.cloud.datastream.v1alpha1.ListConnectionProfilesResponse" do
|
61
|
-
repeated :connection_profiles, :message, 1, "google.cloud.datastream.v1alpha1.ConnectionProfile"
|
62
|
-
optional :next_page_token, :string, 2
|
63
|
-
repeated :unreachable, :string, 3
|
64
|
-
end
|
65
|
-
add_message "google.cloud.datastream.v1alpha1.GetConnectionProfileRequest" do
|
66
|
-
optional :name, :string, 1
|
67
|
-
end
|
68
|
-
add_message "google.cloud.datastream.v1alpha1.CreateConnectionProfileRequest" do
|
69
|
-
optional :parent, :string, 1
|
70
|
-
optional :connection_profile_id, :string, 2
|
71
|
-
optional :connection_profile, :message, 3, "google.cloud.datastream.v1alpha1.ConnectionProfile"
|
72
|
-
optional :request_id, :string, 4
|
73
|
-
end
|
74
|
-
add_message "google.cloud.datastream.v1alpha1.UpdateConnectionProfileRequest" do
|
75
|
-
optional :update_mask, :message, 1, "google.protobuf.FieldMask"
|
76
|
-
optional :connection_profile, :message, 2, "google.cloud.datastream.v1alpha1.ConnectionProfile"
|
77
|
-
optional :request_id, :string, 3
|
78
|
-
end
|
79
|
-
add_message "google.cloud.datastream.v1alpha1.DeleteConnectionProfileRequest" do
|
80
|
-
optional :name, :string, 1
|
81
|
-
optional :request_id, :string, 2
|
82
|
-
end
|
83
|
-
add_message "google.cloud.datastream.v1alpha1.ListStreamsRequest" do
|
84
|
-
optional :parent, :string, 1
|
85
|
-
optional :page_size, :int32, 2
|
86
|
-
optional :page_token, :string, 3
|
87
|
-
optional :filter, :string, 4
|
88
|
-
optional :order_by, :string, 5
|
89
|
-
end
|
90
|
-
add_message "google.cloud.datastream.v1alpha1.ListStreamsResponse" do
|
91
|
-
repeated :streams, :message, 1, "google.cloud.datastream.v1alpha1.Stream"
|
92
|
-
optional :next_page_token, :string, 2
|
93
|
-
repeated :unreachable, :string, 3
|
94
|
-
end
|
95
|
-
add_message "google.cloud.datastream.v1alpha1.GetStreamRequest" do
|
96
|
-
optional :name, :string, 1
|
97
|
-
end
|
98
|
-
add_message "google.cloud.datastream.v1alpha1.CreateStreamRequest" do
|
99
|
-
optional :parent, :string, 1
|
100
|
-
optional :stream_id, :string, 2
|
101
|
-
optional :stream, :message, 3, "google.cloud.datastream.v1alpha1.Stream"
|
102
|
-
optional :request_id, :string, 4
|
103
|
-
optional :validate_only, :bool, 5
|
104
|
-
optional :force, :bool, 6
|
105
|
-
end
|
106
|
-
add_message "google.cloud.datastream.v1alpha1.UpdateStreamRequest" do
|
107
|
-
optional :update_mask, :message, 1, "google.protobuf.FieldMask"
|
108
|
-
optional :stream, :message, 2, "google.cloud.datastream.v1alpha1.Stream"
|
109
|
-
optional :request_id, :string, 3
|
110
|
-
optional :validate_only, :bool, 4
|
111
|
-
optional :force, :bool, 5
|
112
|
-
end
|
113
|
-
add_message "google.cloud.datastream.v1alpha1.DeleteStreamRequest" do
|
114
|
-
optional :name, :string, 1
|
115
|
-
optional :request_id, :string, 2
|
116
|
-
end
|
117
|
-
add_message "google.cloud.datastream.v1alpha1.OperationMetadata" do
|
118
|
-
optional :create_time, :message, 1, "google.protobuf.Timestamp"
|
119
|
-
optional :end_time, :message, 2, "google.protobuf.Timestamp"
|
120
|
-
optional :target, :string, 3
|
121
|
-
optional :verb, :string, 4
|
122
|
-
optional :status_message, :string, 5
|
123
|
-
optional :requested_cancellation, :bool, 6
|
124
|
-
optional :api_version, :string, 7
|
125
|
-
optional :validation_result, :message, 8, "google.cloud.datastream.v1alpha1.ValidationResult"
|
126
|
-
end
|
127
|
-
add_message "google.cloud.datastream.v1alpha1.CreatePrivateConnectionRequest" do
|
128
|
-
optional :parent, :string, 1
|
129
|
-
optional :private_connection_id, :string, 2
|
130
|
-
optional :private_connection, :message, 3, "google.cloud.datastream.v1alpha1.PrivateConnection"
|
131
|
-
optional :request_id, :string, 4
|
132
|
-
end
|
133
|
-
add_message "google.cloud.datastream.v1alpha1.ListPrivateConnectionsRequest" do
|
134
|
-
optional :parent, :string, 1
|
135
|
-
optional :page_size, :int32, 2
|
136
|
-
optional :page_token, :string, 3
|
137
|
-
optional :filter, :string, 4
|
138
|
-
optional :order_by, :string, 5
|
139
|
-
end
|
140
|
-
add_message "google.cloud.datastream.v1alpha1.ListPrivateConnectionsResponse" do
|
141
|
-
repeated :private_connections, :message, 1, "google.cloud.datastream.v1alpha1.PrivateConnection"
|
142
|
-
optional :next_page_token, :string, 2
|
143
|
-
repeated :unreachable, :string, 3
|
144
|
-
end
|
145
|
-
add_message "google.cloud.datastream.v1alpha1.DeletePrivateConnectionRequest" do
|
146
|
-
optional :name, :string, 1
|
147
|
-
optional :request_id, :string, 2
|
148
|
-
optional :force, :bool, 3
|
149
|
-
end
|
150
|
-
add_message "google.cloud.datastream.v1alpha1.GetPrivateConnectionRequest" do
|
151
|
-
optional :name, :string, 1
|
152
|
-
end
|
153
|
-
add_message "google.cloud.datastream.v1alpha1.CreateRouteRequest" do
|
154
|
-
optional :parent, :string, 1
|
155
|
-
optional :route_id, :string, 2
|
156
|
-
optional :route, :message, 3, "google.cloud.datastream.v1alpha1.Route"
|
157
|
-
optional :request_id, :string, 4
|
158
|
-
end
|
159
|
-
add_message "google.cloud.datastream.v1alpha1.ListRoutesRequest" do
|
160
|
-
optional :parent, :string, 1
|
161
|
-
optional :page_size, :int32, 2
|
162
|
-
optional :page_token, :string, 3
|
163
|
-
optional :filter, :string, 4
|
164
|
-
optional :order_by, :string, 5
|
165
|
-
end
|
166
|
-
add_message "google.cloud.datastream.v1alpha1.ListRoutesResponse" do
|
167
|
-
repeated :routes, :message, 1, "google.cloud.datastream.v1alpha1.Route"
|
168
|
-
optional :next_page_token, :string, 2
|
169
|
-
repeated :unreachable, :string, 3
|
170
|
-
end
|
171
|
-
add_message "google.cloud.datastream.v1alpha1.DeleteRouteRequest" do
|
172
|
-
optional :name, :string, 1
|
173
|
-
optional :request_id, :string, 2
|
174
|
-
end
|
175
|
-
add_message "google.cloud.datastream.v1alpha1.GetRouteRequest" do
|
176
|
-
optional :name, :string, 1
|
16
|
+
|
17
|
+
descriptor_data = "\n1google/cloud/datastream/v1alpha1/datastream.proto\x12 google.cloud.datastream.v1alpha1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a;google/cloud/datastream/v1alpha1/datastream_resources.proto\x1a#google/longrunning/operations.proto\x1a google/protobuf/field_mask.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xbd\x03\n DiscoverConnectionProfileRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\x12+datastream.googleapis.com/ConnectionProfile\x12R\n\x12\x63onnection_profile\x18\xc8\x01 \x01(\x0b\x32\x33.google.cloud.datastream.v1alpha1.ConnectionProfileH\x00\x12\"\n\x17\x63onnection_profile_name\x18\xc9\x01 \x01(\tH\x00\x12\x13\n\trecursive\x18\x03 \x01(\x08H\x01\x12\x19\n\x0frecursion_depth\x18\x04 \x01(\x05H\x01\x12\x45\n\x0coracle_rdbms\x18\x64 \x01(\x0b\x32-.google.cloud.datastream.v1alpha1.OracleRdbmsH\x02\x12\x43\n\x0bmysql_rdbms\x18\x65 \x01(\x0b\x32,.google.cloud.datastream.v1alpha1.MysqlRdbmsH\x02\x42\x08\n\x06targetB\x07\n\x05\x64\x65pthB\r\n\x0b\x64\x61ta_object\"\xbe\x01\n!DiscoverConnectionProfileResponse\x12\x45\n\x0coracle_rdbms\x18\x64 \x01(\x0b\x32-.google.cloud.datastream.v1alpha1.OracleRdbmsH\x00\x12\x43\n\x0bmysql_rdbms\x18\x65 \x01(\x0b\x32,.google.cloud.datastream.v1alpha1.MysqlRdbmsH\x00\x42\r\n\x0b\x64\x61ta_object\"w\n\x15\x46\x65tchStaticIpsRequest\x12\x37\n\x04name\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\"E\n\x16\x46\x65tchStaticIpsResponse\x12\x12\n\nstatic_ips\x18\x01 \x03(\t\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"K\n\x12\x46\x65tchErrorsRequest\x12\x35\n\x06stream\x18\x01 \x01(\tB%\xfa\x41\"\n datastream.googleapis.com/Stream\"N\n\x13\x46\x65tchErrorsResponse\x12\x37\n\x06\x65rrors\x18\x01 \x03(\x0b\x32\'.google.cloud.datastream.v1alpha1.Error\"\xad\x01\n\x1dListConnectionProfilesRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\x12+datastream.googleapis.com/ConnectionProfile\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\"\xa0\x01\n\x1eListConnectionProfilesResponse\x12P\n\x13\x63onnection_profiles\x18\x01 \x03(\x0b\x32\x33.google.cloud.datastream.v1alpha1.ConnectionProfile\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"`\n\x1bGetConnectionProfileRequest\x12\x41\n\x04name\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+datastream.googleapis.com/ConnectionProfile\"\xf8\x01\n\x1e\x43reateConnectionProfileRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\x12+datastream.googleapis.com/ConnectionProfile\x12\"\n\x15\x63onnection_profile_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12T\n\x12\x63onnection_profile\x18\x03 \x01(\x0b\x32\x33.google.cloud.datastream.v1alpha1.ConnectionProfileB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xc5\x01\n\x1eUpdateConnectionProfileRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12T\n\x12\x63onnection_profile\x18\x02 \x01(\x0b\x32\x33.google.cloud.datastream.v1alpha1.ConnectionProfileB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\"|\n\x1e\x44\x65leteConnectionProfileRequest\x12\x41\n\x04name\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+datastream.googleapis.com/ConnectionProfile\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\x97\x01\n\x12ListStreamsRequest\x12\x38\n\x06parent\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\x12 datastream.googleapis.com/Stream\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\x13ListStreamsResponse\x12\x39\n\x07streams\x18\x01 \x03(\x0b\x32(.google.cloud.datastream.v1alpha1.Stream\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"J\n\x10GetStreamRequest\x12\x36\n\x04name\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n datastream.googleapis.com/Stream\"\xef\x01\n\x13\x43reateStreamRequest\x12\x38\n\x06parent\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\x12 datastream.googleapis.com/Stream\x12\x16\n\tstream_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12=\n\x06stream\x18\x03 \x01(\x0b\x32(.google.cloud.datastream.v1alpha1.StreamB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\x12\x12\n\x05\x66orce\x18\x06 \x01(\x08\x42\x03\xe0\x41\x01\"\xd3\x01\n\x13UpdateStreamRequest\x12\x34\n\x0bupdate_mask\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\x12=\n\x06stream\x18\x02 \x01(\x0b\x32(.google.cloud.datastream.v1alpha1.StreamB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x1a\n\rvalidate_only\x18\x04 \x01(\x08\x42\x03\xe0\x41\x01\x12\x12\n\x05\x66orce\x18\x05 \x01(\x08\x42\x03\xe0\x41\x01\"f\n\x13\x44\x65leteStreamRequest\x12\x36\n\x04name\x18\x01 \x01(\tB(\xe0\x41\x02\xfa\x41\"\n datastream.googleapis.com/Stream\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"\xd4\x02\n\x11OperationMetadata\x12\x34\n\x0b\x63reate_time\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x13\n\x06target\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x11\n\x04verb\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12\x1b\n\x0estatus_message\x18\x05 \x01(\tB\x03\xe0\x41\x03\x12#\n\x16requested_cancellation\x18\x06 \x01(\x08\x42\x03\xe0\x41\x03\x12\x18\n\x0b\x61pi_version\x18\x07 \x01(\tB\x03\xe0\x41\x03\x12R\n\x11validation_result\x18\x08 \x01(\x0b\x32\x32.google.cloud.datastream.v1alpha1.ValidationResultB\x03\xe0\x41\x03\"\xf8\x01\n\x1e\x43reatePrivateConnectionRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\x12+datastream.googleapis.com/PrivateConnection\x12\"\n\x15private_connection_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12T\n\x12private_connection\x18\x03 \x01(\x0b\x32\x33.google.cloud.datastream.v1alpha1.PrivateConnectionB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\xad\x01\n\x1dListPrivateConnectionsRequest\x12\x43\n\x06parent\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\x12+datastream.googleapis.com/PrivateConnection\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\"\xa0\x01\n\x1eListPrivateConnectionsResponse\x12P\n\x13private_connections\x18\x01 \x03(\x0b\x32\x33.google.cloud.datastream.v1alpha1.PrivateConnection\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"\x90\x01\n\x1e\x44\x65letePrivateConnectionRequest\x12\x41\n\x04name\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+datastream.googleapis.com/PrivateConnection\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x12\n\x05\x66orce\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\"`\n\x1bGetPrivateConnectionRequest\x12\x41\n\x04name\x18\x01 \x01(\tB3\xe0\x41\x02\xfa\x41-\n+datastream.googleapis.com/PrivateConnection\"\xba\x01\n\x12\x43reateRouteRequest\x12\x37\n\x06parent\x18\x01 \x01(\tB\'\xe0\x41\x02\xfa\x41!\x12\x1f\x64\x61tastream.googleapis.com/Route\x12\x15\n\x08route_id\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12;\n\x05route\x18\x03 \x01(\x0b\x32\'.google.cloud.datastream.v1alpha1.RouteB\x03\xe0\x41\x02\x12\x17\n\nrequest_id\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\x95\x01\n\x11ListRoutesRequest\x12\x37\n\x06parent\x18\x01 \x01(\tB\'\xe0\x41\x02\xfa\x41!\x12\x1f\x64\x61tastream.googleapis.com/Route\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\x12ListRoutesResponse\x12\x37\n\x06routes\x18\x01 \x03(\x0b\x32\'.google.cloud.datastream.v1alpha1.Route\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x13\n\x0bunreachable\x18\x03 \x03(\t\"d\n\x12\x44\x65leteRouteRequest\x12\x35\n\x04name\x18\x01 \x01(\tB\'\xe0\x41\x02\xfa\x41!\n\x1f\x64\x61tastream.googleapis.com/Route\x12\x17\n\nrequest_id\x18\x02 \x01(\tB\x03\xe0\x41\x01\"H\n\x0fGetRouteRequest\x12\x35\n\x04name\x18\x01 \x01(\tB\'\xe0\x41\x02\xfa\x41!\n\x1f\x64\x61tastream.googleapis.com/Route2\x8a\'\n\nDatastream\x12\xea\x01\n\x16ListConnectionProfiles\x12?.google.cloud.datastream.v1alpha1.ListConnectionProfilesRequest\x1a@.google.cloud.datastream.v1alpha1.ListConnectionProfilesResponse\"M\x82\xd3\xe4\x93\x02>\x12</v1alpha1/{parent=projects/*/locations/*}/connectionProfiles\xda\x41\x06parent\x12\xd7\x01\n\x14GetConnectionProfile\x12=.google.cloud.datastream.v1alpha1.GetConnectionProfileRequest\x1a\x33.google.cloud.datastream.v1alpha1.ConnectionProfile\"K\x82\xd3\xe4\x93\x02>\x12</v1alpha1/{name=projects/*/locations/*/connectionProfiles/*}\xda\x41\x04name\x12\xb0\x02\n\x17\x43reateConnectionProfile\x12@.google.cloud.datastream.v1alpha1.CreateConnectionProfileRequest\x1a\x1d.google.longrunning.Operation\"\xb3\x01\x82\xd3\xe4\x93\x02R\"</v1alpha1/{parent=projects/*/locations/*}/connectionProfiles:\x12\x63onnection_profile\xda\x41/parent,connection_profile,connection_profile_id\xca\x41&\n\x11\x43onnectionProfile\x12\x11OperationMetadata\x12\xb2\x02\n\x17UpdateConnectionProfile\x12@.google.cloud.datastream.v1alpha1.UpdateConnectionProfileRequest\x1a\x1d.google.longrunning.Operation\"\xb5\x01\x82\xd3\xe4\x93\x02\x65\x32O/v1alpha1/{connection_profile.name=projects/*/locations/*/connectionProfiles/*}:\x12\x63onnection_profile\xda\x41\x1e\x63onnection_profile,update_mask\xca\x41&\n\x11\x43onnectionProfile\x12\x11OperationMetadata\x12\xf4\x01\n\x17\x44\x65leteConnectionProfile\x12@.google.cloud.datastream.v1alpha1.DeleteConnectionProfileRequest\x1a\x1d.google.longrunning.Operation\"x\x82\xd3\xe4\x93\x02>*</v1alpha1/{name=projects/*/locations/*/connectionProfiles/*}\xda\x41\x04name\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\x12\xf6\x01\n\x19\x44iscoverConnectionProfile\x12\x42.google.cloud.datastream.v1alpha1.DiscoverConnectionProfileRequest\x1a\x43.google.cloud.datastream.v1alpha1.DiscoverConnectionProfileResponse\"P\x82\xd3\xe4\x93\x02J\"E/v1alpha1/{parent=projects/*/locations/*}/connectionProfiles:discover:\x01*\x12\xbe\x01\n\x0bListStreams\x12\x34.google.cloud.datastream.v1alpha1.ListStreamsRequest\x1a\x35.google.cloud.datastream.v1alpha1.ListStreamsResponse\"B\x82\xd3\xe4\x93\x02\x33\x12\x31/v1alpha1/{parent=projects/*/locations/*}/streams\xda\x41\x06parent\x12\xab\x01\n\tGetStream\x12\x32.google.cloud.datastream.v1alpha1.GetStreamRequest\x1a(.google.cloud.datastream.v1alpha1.Stream\"@\x82\xd3\xe4\x93\x02\x33\x12\x31/v1alpha1/{name=projects/*/locations/*/streams/*}\xda\x41\x04name\x12\xdf\x01\n\x0c\x43reateStream\x12\x35.google.cloud.datastream.v1alpha1.CreateStreamRequest\x1a\x1d.google.longrunning.Operation\"y\x82\xd3\xe4\x93\x02;\"1/v1alpha1/{parent=projects/*/locations/*}/streams:\x06stream\xda\x41\x17parent,stream,stream_id\xca\x41\x1b\n\x06Stream\x12\x11OperationMetadata\x12\xe1\x01\n\x0cUpdateStream\x12\x35.google.cloud.datastream.v1alpha1.UpdateStreamRequest\x1a\x1d.google.longrunning.Operation\"{\x82\xd3\xe4\x93\x02\x42\x32\x38/v1alpha1/{stream.name=projects/*/locations/*/streams/*}:\x06stream\xda\x41\x12stream,update_mask\xca\x41\x1b\n\x06Stream\x12\x11OperationMetadata\x12\xd3\x01\n\x0c\x44\x65leteStream\x12\x35.google.cloud.datastream.v1alpha1.DeleteStreamRequest\x1a\x1d.google.longrunning.Operation\"m\x82\xd3\xe4\x93\x02\x33*1/v1alpha1/{name=projects/*/locations/*/streams/*}\xda\x41\x04name\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\x12\xd9\x01\n\x0b\x46\x65tchErrors\x12\x34.google.cloud.datastream.v1alpha1.FetchErrorsRequest\x1a\x1d.google.longrunning.Operation\"u\x82\xd3\xe4\x93\x02\x44\"?/v1alpha1/{stream=projects/*/locations/*/streams/*}:fetchErrors:\x01*\xca\x41(\n\x13\x46\x65tchErrorsResponse\x12\x11OperationMetadata\x12\xca\x01\n\x0e\x46\x65tchStaticIps\x12\x37.google.cloud.datastream.v1alpha1.FetchStaticIpsRequest\x1a\x38.google.cloud.datastream.v1alpha1.FetchStaticIpsResponse\"E\x82\xd3\xe4\x93\x02\x38\x12\x36/v1alpha1/{name=projects/*/locations/*}:fetchStaticIps\xda\x41\x04name\x12\xb0\x02\n\x17\x43reatePrivateConnection\x12@.google.cloud.datastream.v1alpha1.CreatePrivateConnectionRequest\x1a\x1d.google.longrunning.Operation\"\xb3\x01\x82\xd3\xe4\x93\x02R\"</v1alpha1/{parent=projects/*/locations/*}/privateConnections:\x12private_connection\xda\x41/parent,private_connection,private_connection_id\xca\x41&\n\x11PrivateConnection\x12\x11OperationMetadata\x12\xd7\x01\n\x14GetPrivateConnection\x12=.google.cloud.datastream.v1alpha1.GetPrivateConnectionRequest\x1a\x33.google.cloud.datastream.v1alpha1.PrivateConnection\"K\x82\xd3\xe4\x93\x02>\x12</v1alpha1/{name=projects/*/locations/*/privateConnections/*}\xda\x41\x04name\x12\xea\x01\n\x16ListPrivateConnections\x12?.google.cloud.datastream.v1alpha1.ListPrivateConnectionsRequest\x1a@.google.cloud.datastream.v1alpha1.ListPrivateConnectionsResponse\"M\x82\xd3\xe4\x93\x02>\x12</v1alpha1/{parent=projects/*/locations/*}/privateConnections\xda\x41\x06parent\x12\xf4\x01\n\x17\x44\x65letePrivateConnection\x12@.google.cloud.datastream.v1alpha1.DeletePrivateConnectionRequest\x1a\x1d.google.longrunning.Operation\"x\x82\xd3\xe4\x93\x02>*</v1alpha1/{name=projects/*/locations/*/privateConnections/*}\xda\x41\x04name\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\x12\xee\x01\n\x0b\x43reateRoute\x12\x34.google.cloud.datastream.v1alpha1.CreateRouteRequest\x1a\x1d.google.longrunning.Operation\"\x89\x01\x82\xd3\xe4\x93\x02N\"E/v1alpha1/{parent=projects/*/locations/*/privateConnections/*}/routes:\x05route\xda\x41\x15parent,route,route_id\xca\x41\x1a\n\x05Route\x12\x11OperationMetadata\x12\xbc\x01\n\x08GetRoute\x12\x31.google.cloud.datastream.v1alpha1.GetRouteRequest\x1a\'.google.cloud.datastream.v1alpha1.Route\"T\x82\xd3\xe4\x93\x02G\x12\x45/v1alpha1/{name=projects/*/locations/*/privateConnections/*/routes/*}\xda\x41\x04name\x12\xcf\x01\n\nListRoutes\x12\x33.google.cloud.datastream.v1alpha1.ListRoutesRequest\x1a\x34.google.cloud.datastream.v1alpha1.ListRoutesResponse\"V\x82\xd3\xe4\x93\x02G\x12\x45/v1alpha1/{parent=projects/*/locations/*/privateConnections/*}/routes\xda\x41\x06parent\x12\xe6\x01\n\x0b\x44\x65leteRoute\x12\x34.google.cloud.datastream.v1alpha1.DeleteRouteRequest\x1a\x1d.google.longrunning.Operation\"\x81\x01\x82\xd3\xe4\x93\x02G*E/v1alpha1/{name=projects/*/locations/*/privateConnections/*/routes/*}\xda\x41\x04name\xca\x41*\n\x15google.protobuf.Empty\x12\x11OperationMetadata\x1aM\xca\x41\x19\x64\x61tastream.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xf7\x01\n$com.google.cloud.datastream.v1alpha1B\x1b\x43loudDatastreamServiceProtoP\x01ZDcloud.google.com/go/datastream/apiv1alpha1/datastreampb;datastreampb\xaa\x02 Google.Cloud.Datastream.V1Alpha1\xca\x02 Google\\Cloud\\Datastream\\V1alpha1\xea\x02#Google::Cloud::Datastream::V1alpha1b\x06proto3"
|
18
|
+
|
19
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
20
|
+
|
21
|
+
begin
|
22
|
+
pool.add_serialized_file(descriptor_data)
|
23
|
+
rescue TypeError => e
|
24
|
+
# Compatibility code: will be removed in the next major version.
|
25
|
+
require 'google/protobuf/descriptor_pb'
|
26
|
+
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
27
|
+
parsed.clear_dependency
|
28
|
+
serialized = parsed.class.encode(parsed)
|
29
|
+
file = pool.add_serialized_file(serialized)
|
30
|
+
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
31
|
+
imports = [
|
32
|
+
["google.cloud.datastream.v1alpha1.ConnectionProfile", "google/cloud/datastream/v1alpha1/datastream_resources.proto"],
|
33
|
+
["google.protobuf.FieldMask", "google/protobuf/field_mask.proto"],
|
34
|
+
["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
|
35
|
+
]
|
36
|
+
imports.each do |type_name, expected_filename|
|
37
|
+
import_file = pool.lookup(type_name).file_descriptor
|
38
|
+
if import_file.name != expected_filename
|
39
|
+
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
177
40
|
end
|
178
41
|
end
|
42
|
+
warn "Each proto file must use a consistent fully-qualified name."
|
43
|
+
warn "This will become an error in the next major version."
|
179
44
|
end
|
180
45
|
|
181
46
|
module Google
|
@@ -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/datastream/v1alpha1/datastream_resources.proto
|
3
4
|
|
@@ -8,259 +9,33 @@ require 'google/api/resource_pb'
|
|
8
9
|
require 'google/protobuf/duration_pb'
|
9
10
|
require 'google/protobuf/timestamp_pb'
|
10
11
|
|
11
|
-
|
12
|
-
add_file("google/cloud/datastream/v1alpha1/datastream_resources.proto", :syntax => :proto3) do
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
add_message "google.cloud.datastream.v1alpha1.StaticServiceIpConnectivity" do
|
35
|
-
end
|
36
|
-
add_message "google.cloud.datastream.v1alpha1.ForwardSshTunnelConnectivity" do
|
37
|
-
optional :hostname, :string, 1
|
38
|
-
optional :username, :string, 2
|
39
|
-
optional :port, :int32, 3
|
40
|
-
oneof :authentication_method do
|
41
|
-
optional :password, :string, 100
|
42
|
-
optional :private_key, :string, 101
|
43
|
-
end
|
44
|
-
end
|
45
|
-
add_message "google.cloud.datastream.v1alpha1.VpcPeeringConfig" do
|
46
|
-
optional :vpc_name, :string, 1
|
47
|
-
optional :subnet, :string, 2
|
48
|
-
end
|
49
|
-
add_message "google.cloud.datastream.v1alpha1.PrivateConnection" do
|
50
|
-
optional :name, :string, 1
|
51
|
-
optional :create_time, :message, 2, "google.protobuf.Timestamp"
|
52
|
-
optional :update_time, :message, 3, "google.protobuf.Timestamp"
|
53
|
-
map :labels, :string, :string, 4
|
54
|
-
optional :display_name, :string, 5
|
55
|
-
optional :state, :enum, 6, "google.cloud.datastream.v1alpha1.PrivateConnection.State"
|
56
|
-
optional :error, :message, 7, "google.cloud.datastream.v1alpha1.Error"
|
57
|
-
optional :vpc_peering_config, :message, 100, "google.cloud.datastream.v1alpha1.VpcPeeringConfig"
|
58
|
-
end
|
59
|
-
add_enum "google.cloud.datastream.v1alpha1.PrivateConnection.State" do
|
60
|
-
value :STATE_UNSPECIFIED, 0
|
61
|
-
value :CREATING, 1
|
62
|
-
value :CREATED, 2
|
63
|
-
value :FAILED, 3
|
64
|
-
end
|
65
|
-
add_message "google.cloud.datastream.v1alpha1.PrivateConnectivity" do
|
66
|
-
optional :private_connection_name, :string, 1
|
67
|
-
end
|
68
|
-
add_message "google.cloud.datastream.v1alpha1.Route" do
|
69
|
-
optional :name, :string, 1
|
70
|
-
optional :create_time, :message, 2, "google.protobuf.Timestamp"
|
71
|
-
optional :update_time, :message, 3, "google.protobuf.Timestamp"
|
72
|
-
map :labels, :string, :string, 4
|
73
|
-
optional :display_name, :string, 5
|
74
|
-
optional :destination_address, :string, 6
|
75
|
-
optional :destination_port, :int32, 7
|
76
|
-
end
|
77
|
-
add_message "google.cloud.datastream.v1alpha1.MysqlSslConfig" do
|
78
|
-
optional :client_key, :string, 11
|
79
|
-
optional :client_key_set, :bool, 12
|
80
|
-
optional :client_certificate, :string, 13
|
81
|
-
optional :client_certificate_set, :bool, 14
|
82
|
-
optional :ca_certificate, :string, 15
|
83
|
-
optional :ca_certificate_set, :bool, 16
|
84
|
-
end
|
85
|
-
add_message "google.cloud.datastream.v1alpha1.ConnectionProfile" do
|
86
|
-
optional :name, :string, 1
|
87
|
-
optional :create_time, :message, 2, "google.protobuf.Timestamp"
|
88
|
-
optional :update_time, :message, 3, "google.protobuf.Timestamp"
|
89
|
-
map :labels, :string, :string, 4
|
90
|
-
optional :display_name, :string, 5
|
91
|
-
oneof :profile do
|
92
|
-
optional :oracle_profile, :message, 100, "google.cloud.datastream.v1alpha1.OracleProfile"
|
93
|
-
optional :gcs_profile, :message, 101, "google.cloud.datastream.v1alpha1.GcsProfile"
|
94
|
-
optional :mysql_profile, :message, 102, "google.cloud.datastream.v1alpha1.MysqlProfile"
|
95
|
-
end
|
96
|
-
oneof :connectivity do
|
97
|
-
optional :no_connectivity, :message, 200, "google.cloud.datastream.v1alpha1.NoConnectivitySettings"
|
98
|
-
optional :static_service_ip_connectivity, :message, 201, "google.cloud.datastream.v1alpha1.StaticServiceIpConnectivity"
|
99
|
-
optional :forward_ssh_connectivity, :message, 202, "google.cloud.datastream.v1alpha1.ForwardSshTunnelConnectivity"
|
100
|
-
optional :private_connectivity, :message, 203, "google.cloud.datastream.v1alpha1.PrivateConnectivity"
|
101
|
-
end
|
102
|
-
end
|
103
|
-
add_message "google.cloud.datastream.v1alpha1.OracleColumn" do
|
104
|
-
optional :column_name, :string, 1
|
105
|
-
optional :data_type, :string, 2
|
106
|
-
optional :length, :int32, 3
|
107
|
-
optional :precision, :int32, 4
|
108
|
-
optional :scale, :int32, 5
|
109
|
-
optional :encoding, :string, 6
|
110
|
-
optional :primary_key, :bool, 7
|
111
|
-
optional :nullable, :bool, 8
|
112
|
-
optional :ordinal_position, :int32, 9
|
113
|
-
end
|
114
|
-
add_message "google.cloud.datastream.v1alpha1.OracleTable" do
|
115
|
-
optional :table_name, :string, 1
|
116
|
-
repeated :oracle_columns, :message, 2, "google.cloud.datastream.v1alpha1.OracleColumn"
|
117
|
-
end
|
118
|
-
add_message "google.cloud.datastream.v1alpha1.OracleSchema" do
|
119
|
-
optional :schema_name, :string, 1
|
120
|
-
repeated :oracle_tables, :message, 2, "google.cloud.datastream.v1alpha1.OracleTable"
|
121
|
-
end
|
122
|
-
add_message "google.cloud.datastream.v1alpha1.OracleRdbms" do
|
123
|
-
repeated :oracle_schemas, :message, 1, "google.cloud.datastream.v1alpha1.OracleSchema"
|
124
|
-
end
|
125
|
-
add_message "google.cloud.datastream.v1alpha1.OracleSourceConfig" do
|
126
|
-
optional :allowlist, :message, 1, "google.cloud.datastream.v1alpha1.OracleRdbms"
|
127
|
-
optional :rejectlist, :message, 2, "google.cloud.datastream.v1alpha1.OracleRdbms"
|
128
|
-
end
|
129
|
-
add_message "google.cloud.datastream.v1alpha1.MysqlColumn" do
|
130
|
-
optional :column_name, :string, 1
|
131
|
-
optional :data_type, :string, 2
|
132
|
-
optional :length, :int32, 3
|
133
|
-
optional :collation, :string, 4
|
134
|
-
optional :primary_key, :bool, 5
|
135
|
-
optional :nullable, :bool, 6
|
136
|
-
optional :ordinal_position, :int32, 7
|
137
|
-
end
|
138
|
-
add_message "google.cloud.datastream.v1alpha1.MysqlTable" do
|
139
|
-
optional :table_name, :string, 1
|
140
|
-
repeated :mysql_columns, :message, 2, "google.cloud.datastream.v1alpha1.MysqlColumn"
|
141
|
-
end
|
142
|
-
add_message "google.cloud.datastream.v1alpha1.MysqlDatabase" do
|
143
|
-
optional :database_name, :string, 1
|
144
|
-
repeated :mysql_tables, :message, 2, "google.cloud.datastream.v1alpha1.MysqlTable"
|
145
|
-
end
|
146
|
-
add_message "google.cloud.datastream.v1alpha1.MysqlRdbms" do
|
147
|
-
repeated :mysql_databases, :message, 1, "google.cloud.datastream.v1alpha1.MysqlDatabase"
|
148
|
-
end
|
149
|
-
add_message "google.cloud.datastream.v1alpha1.MysqlSourceConfig" do
|
150
|
-
optional :allowlist, :message, 1, "google.cloud.datastream.v1alpha1.MysqlRdbms"
|
151
|
-
optional :rejectlist, :message, 2, "google.cloud.datastream.v1alpha1.MysqlRdbms"
|
152
|
-
end
|
153
|
-
add_message "google.cloud.datastream.v1alpha1.SourceConfig" do
|
154
|
-
optional :source_connection_profile_name, :string, 1
|
155
|
-
oneof :source_stream_config do
|
156
|
-
optional :oracle_source_config, :message, 100, "google.cloud.datastream.v1alpha1.OracleSourceConfig"
|
157
|
-
optional :mysql_source_config, :message, 101, "google.cloud.datastream.v1alpha1.MysqlSourceConfig"
|
158
|
-
end
|
159
|
-
end
|
160
|
-
add_message "google.cloud.datastream.v1alpha1.AvroFileFormat" do
|
161
|
-
end
|
162
|
-
add_message "google.cloud.datastream.v1alpha1.JsonFileFormat" do
|
163
|
-
optional :schema_file_format, :enum, 1, "google.cloud.datastream.v1alpha1.SchemaFileFormat"
|
164
|
-
optional :compression, :enum, 2, "google.cloud.datastream.v1alpha1.JsonFileFormat.JsonCompression"
|
165
|
-
end
|
166
|
-
add_enum "google.cloud.datastream.v1alpha1.JsonFileFormat.JsonCompression" do
|
167
|
-
value :JSON_COMPRESSION_UNSPECIFIED, 0
|
168
|
-
value :NO_COMPRESSION, 1
|
169
|
-
value :GZIP, 2
|
170
|
-
end
|
171
|
-
add_message "google.cloud.datastream.v1alpha1.GcsDestinationConfig" do
|
172
|
-
optional :path, :string, 1
|
173
|
-
optional :gcs_file_format, :enum, 2, "google.cloud.datastream.v1alpha1.GcsFileFormat"
|
174
|
-
optional :file_rotation_mb, :int32, 3
|
175
|
-
optional :file_rotation_interval, :message, 4, "google.protobuf.Duration"
|
176
|
-
oneof :file_format do
|
177
|
-
optional :avro_file_format, :message, 100, "google.cloud.datastream.v1alpha1.AvroFileFormat"
|
178
|
-
optional :json_file_format, :message, 101, "google.cloud.datastream.v1alpha1.JsonFileFormat"
|
179
|
-
end
|
180
|
-
end
|
181
|
-
add_message "google.cloud.datastream.v1alpha1.DestinationConfig" do
|
182
|
-
optional :destination_connection_profile_name, :string, 1
|
183
|
-
oneof :destination_stream_config do
|
184
|
-
optional :gcs_destination_config, :message, 100, "google.cloud.datastream.v1alpha1.GcsDestinationConfig"
|
185
|
-
end
|
186
|
-
end
|
187
|
-
add_message "google.cloud.datastream.v1alpha1.Stream" do
|
188
|
-
optional :name, :string, 1
|
189
|
-
optional :create_time, :message, 2, "google.protobuf.Timestamp"
|
190
|
-
optional :update_time, :message, 3, "google.protobuf.Timestamp"
|
191
|
-
map :labels, :string, :string, 4
|
192
|
-
optional :display_name, :string, 5
|
193
|
-
optional :source_config, :message, 6, "google.cloud.datastream.v1alpha1.SourceConfig"
|
194
|
-
optional :destination_config, :message, 7, "google.cloud.datastream.v1alpha1.DestinationConfig"
|
195
|
-
optional :state, :enum, 8, "google.cloud.datastream.v1alpha1.Stream.State"
|
196
|
-
repeated :errors, :message, 9, "google.cloud.datastream.v1alpha1.Error"
|
197
|
-
oneof :backfill_strategy do
|
198
|
-
optional :backfill_all, :message, 101, "google.cloud.datastream.v1alpha1.Stream.BackfillAllStrategy"
|
199
|
-
optional :backfill_none, :message, 102, "google.cloud.datastream.v1alpha1.Stream.BackfillNoneStrategy"
|
200
|
-
end
|
201
|
-
end
|
202
|
-
add_message "google.cloud.datastream.v1alpha1.Stream.BackfillAllStrategy" do
|
203
|
-
oneof :excluded_objects do
|
204
|
-
optional :oracle_excluded_objects, :message, 1, "google.cloud.datastream.v1alpha1.OracleRdbms"
|
205
|
-
optional :mysql_excluded_objects, :message, 2, "google.cloud.datastream.v1alpha1.MysqlRdbms"
|
206
|
-
end
|
207
|
-
end
|
208
|
-
add_message "google.cloud.datastream.v1alpha1.Stream.BackfillNoneStrategy" do
|
209
|
-
end
|
210
|
-
add_enum "google.cloud.datastream.v1alpha1.Stream.State" do
|
211
|
-
value :STATE_UNSPECIFIED, 0
|
212
|
-
value :CREATED, 1
|
213
|
-
value :RUNNING, 2
|
214
|
-
value :PAUSED, 3
|
215
|
-
value :MAINTENANCE, 4
|
216
|
-
value :FAILED, 5
|
217
|
-
value :FAILED_PERMANENTLY, 6
|
218
|
-
value :STARTING, 7
|
219
|
-
value :DRAINING, 8
|
220
|
-
end
|
221
|
-
add_message "google.cloud.datastream.v1alpha1.Error" do
|
222
|
-
optional :reason, :string, 1
|
223
|
-
optional :error_uuid, :string, 2
|
224
|
-
optional :message, :string, 3
|
225
|
-
optional :error_time, :message, 4, "google.protobuf.Timestamp"
|
226
|
-
map :details, :string, :string, 5
|
227
|
-
end
|
228
|
-
add_message "google.cloud.datastream.v1alpha1.ValidationResult" do
|
229
|
-
repeated :validations, :message, 1, "google.cloud.datastream.v1alpha1.Validation"
|
230
|
-
end
|
231
|
-
add_message "google.cloud.datastream.v1alpha1.Validation" do
|
232
|
-
optional :description, :string, 1
|
233
|
-
optional :status, :enum, 2, "google.cloud.datastream.v1alpha1.Validation.Status"
|
234
|
-
repeated :message, :message, 3, "google.cloud.datastream.v1alpha1.ValidationMessage"
|
235
|
-
optional :code, :string, 4
|
236
|
-
end
|
237
|
-
add_enum "google.cloud.datastream.v1alpha1.Validation.Status" do
|
238
|
-
value :STATUS_UNSPECIFIED, 0
|
239
|
-
value :NOT_EXECUTED, 1
|
240
|
-
value :FAILED, 2
|
241
|
-
value :PASSED, 3
|
242
|
-
end
|
243
|
-
add_message "google.cloud.datastream.v1alpha1.ValidationMessage" do
|
244
|
-
optional :message, :string, 1
|
245
|
-
optional :level, :enum, 2, "google.cloud.datastream.v1alpha1.ValidationMessage.Level"
|
246
|
-
map :metadata, :string, :string, 3
|
247
|
-
optional :code, :string, 4
|
248
|
-
end
|
249
|
-
add_enum "google.cloud.datastream.v1alpha1.ValidationMessage.Level" do
|
250
|
-
value :LEVEL_UNSPECIFIED, 0
|
251
|
-
value :WARNING, 1
|
252
|
-
value :ERROR, 2
|
253
|
-
end
|
254
|
-
add_enum "google.cloud.datastream.v1alpha1.GcsFileFormat" do
|
255
|
-
value :GCS_FILE_FORMAT_UNSPECIFIED, 0
|
256
|
-
value :AVRO, 1
|
257
|
-
end
|
258
|
-
add_enum "google.cloud.datastream.v1alpha1.SchemaFileFormat" do
|
259
|
-
value :SCHEMA_FILE_FORMAT_UNSPECIFIED, 0
|
260
|
-
value :NO_SCHEMA_FILE, 1
|
261
|
-
value :AVRO_SCHEMA_FILE, 2
|
12
|
+
|
13
|
+
descriptor_data = "\n;google/cloud/datastream/v1alpha1/datastream_resources.proto\x12 google.cloud.datastream.v1alpha1\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x1egoogle/protobuf/duration.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xa8\x02\n\rOracleProfile\x12\x15\n\x08hostname\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x0c\n\x04port\x18\x02 \x01(\x05\x12\x15\n\x08username\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x15\n\x08password\x18\x04 \x01(\tB\x03\xe0\x41\x02\x12\x1d\n\x10\x64\x61tabase_service\x18\x05 \x01(\tB\x03\xe0\x41\x02\x12h\n\x15\x63onnection_attributes\x18\x06 \x03(\x0b\x32I.google.cloud.datastream.v1alpha1.OracleProfile.ConnectionAttributesEntry\x1a;\n\x19\x43onnectionAttributesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xaa\x01\n\x0cMysqlProfile\x12\x15\n\x08hostname\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x0c\n\x04port\x18\x02 \x01(\x05\x12\x15\n\x08username\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12\x18\n\x08password\x18\x04 \x01(\tB\x06\xe0\x41\x02\xe0\x41\x04\x12\x44\n\nssl_config\x18\x05 \x01(\x0b\x32\x30.google.cloud.datastream.v1alpha1.MysqlSslConfig\"9\n\nGcsProfile\x12\x18\n\x0b\x62ucket_name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x11\n\troot_path\x18\x02 \x01(\t\"\x18\n\x16NoConnectivitySettings\"\x1d\n\x1bStaticServiceIpConnectivity\"\xa8\x01\n\x1c\x46orwardSshTunnelConnectivity\x12\x15\n\x08hostname\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x15\n\x08username\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\x0c\n\x04port\x18\x03 \x01(\x05\x12\x17\n\x08password\x18\x64 \x01(\tB\x03\xe0\x41\x04H\x00\x12\x1a\n\x0bprivate_key\x18\x65 \x01(\tB\x03\xe0\x41\x04H\x00\x42\x17\n\x15\x61uthentication_method\">\n\x10VpcPeeringConfig\x12\x15\n\x08vpc_name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x13\n\x06subnet\x18\x02 \x01(\tB\x03\xe0\x41\x02\"\xd4\x05\n\x11PrivateConnection\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x06labels\x18\x04 \x03(\x0b\x32?.google.cloud.datastream.v1alpha1.PrivateConnection.LabelsEntry\x12\x19\n\x0c\x64isplay_name\x18\x05 \x01(\tB\x03\xe0\x41\x02\x12M\n\x05state\x18\x06 \x01(\x0e\x32\x39.google.cloud.datastream.v1alpha1.PrivateConnection.StateB\x03\xe0\x41\x03\x12;\n\x05\x65rror\x18\x07 \x01(\x0b\x32\'.google.cloud.datastream.v1alpha1.ErrorB\x03\xe0\x41\x03\x12N\n\x12vpc_peering_config\x18\x64 \x01(\x0b\x32\x32.google.cloud.datastream.v1alpha1.VpcPeeringConfig\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"E\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0c\n\x08\x43REATING\x10\x01\x12\x0b\n\x07\x43REATED\x10\x02\x12\n\n\x06\x46\x41ILED\x10\x03:\x81\x01\xea\x41~\n+datastream.googleapis.com/PrivateConnection\x12Oprojects/{project}/locations/{location}/privateConnections/{private_connection}\";\n\x13PrivateConnectivity\x12$\n\x17private_connection_name\x18\x01 \x01(\tB\x03\xe0\x41\x02\"\xd9\x03\n\x05Route\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x43\n\x06labels\x18\x04 \x03(\x0b\x32\x33.google.cloud.datastream.v1alpha1.Route.LabelsEntry\x12\x19\n\x0c\x64isplay_name\x18\x05 \x01(\tB\x03\xe0\x41\x02\x12 \n\x13\x64\x65stination_address\x18\x06 \x01(\tB\x03\xe0\x41\x02\x12\x18\n\x10\x64\x65stination_port\x18\x07 \x01(\x05\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:\x85\x01\xea\x41\x81\x01\n\x1f\x64\x61tastream.googleapis.com/Route\x12^projects/{project}/locations/{location}/privateConnections/{private_connection}/routes/{route}\"\xca\x01\n\x0eMysqlSslConfig\x12\x17\n\nclient_key\x18\x0b \x01(\tB\x03\xe0\x41\x04\x12\x1b\n\x0e\x63lient_key_set\x18\x0c \x01(\x08\x42\x03\xe0\x41\x03\x12\x1f\n\x12\x63lient_certificate\x18\r \x01(\tB\x03\xe0\x41\x04\x12#\n\x16\x63lient_certificate_set\x18\x0e \x01(\x08\x42\x03\xe0\x41\x03\x12\x1b\n\x0e\x63\x61_certificate\x18\x0f \x01(\tB\x03\xe0\x41\x04\x12\x1f\n\x12\x63\x61_certificate_set\x18\x10 \x01(\x08\x42\x03\xe0\x41\x03\"\xa2\x08\n\x11\x43onnectionProfile\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12O\n\x06labels\x18\x04 \x03(\x0b\x32?.google.cloud.datastream.v1alpha1.ConnectionProfile.LabelsEntry\x12\x19\n\x0c\x64isplay_name\x18\x05 \x01(\tB\x03\xe0\x41\x02\x12I\n\x0eoracle_profile\x18\x64 \x01(\x0b\x32/.google.cloud.datastream.v1alpha1.OracleProfileH\x00\x12\x43\n\x0bgcs_profile\x18\x65 \x01(\x0b\x32,.google.cloud.datastream.v1alpha1.GcsProfileH\x00\x12G\n\rmysql_profile\x18\x66 \x01(\x0b\x32..google.cloud.datastream.v1alpha1.MysqlProfileH\x00\x12T\n\x0fno_connectivity\x18\xc8\x01 \x01(\x0b\x32\x38.google.cloud.datastream.v1alpha1.NoConnectivitySettingsH\x01\x12h\n\x1estatic_service_ip_connectivity\x18\xc9\x01 \x01(\x0b\x32=.google.cloud.datastream.v1alpha1.StaticServiceIpConnectivityH\x01\x12\x63\n\x18\x66orward_ssh_connectivity\x18\xca\x01 \x01(\x0b\x32>.google.cloud.datastream.v1alpha1.ForwardSshTunnelConnectivityH\x01\x12V\n\x14private_connectivity\x18\xcb\x01 \x01(\x0b\x32\x35.google.cloud.datastream.v1alpha1.PrivateConnectivityH\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01:\x81\x01\xea\x41~\n+datastream.googleapis.com/ConnectionProfile\x12Oprojects/{project}/locations/{location}/connectionProfiles/{connection_profile}B\t\n\x07profileB\x0e\n\x0c\x63onnectivity\"\xbb\x01\n\x0cOracleColumn\x12\x13\n\x0b\x63olumn_name\x18\x01 \x01(\t\x12\x11\n\tdata_type\x18\x02 \x01(\t\x12\x0e\n\x06length\x18\x03 \x01(\x05\x12\x11\n\tprecision\x18\x04 \x01(\x05\x12\r\n\x05scale\x18\x05 \x01(\x05\x12\x10\n\x08\x65ncoding\x18\x06 \x01(\t\x12\x13\n\x0bprimary_key\x18\x07 \x01(\x08\x12\x10\n\x08nullable\x18\x08 \x01(\x08\x12\x18\n\x10ordinal_position\x18\t \x01(\x05\"i\n\x0bOracleTable\x12\x12\n\ntable_name\x18\x01 \x01(\t\x12\x46\n\x0eoracle_columns\x18\x02 \x03(\x0b\x32..google.cloud.datastream.v1alpha1.OracleColumn\"i\n\x0cOracleSchema\x12\x13\n\x0bschema_name\x18\x01 \x01(\t\x12\x44\n\roracle_tables\x18\x02 \x03(\x0b\x32-.google.cloud.datastream.v1alpha1.OracleTable\"U\n\x0bOracleRdbms\x12\x46\n\x0eoracle_schemas\x18\x01 \x03(\x0b\x32..google.cloud.datastream.v1alpha1.OracleSchema\"\x99\x01\n\x12OracleSourceConfig\x12@\n\tallowlist\x18\x01 \x01(\x0b\x32-.google.cloud.datastream.v1alpha1.OracleRdbms\x12\x41\n\nrejectlist\x18\x02 \x01(\x0b\x32-.google.cloud.datastream.v1alpha1.OracleRdbms\"\x99\x01\n\x0bMysqlColumn\x12\x13\n\x0b\x63olumn_name\x18\x01 \x01(\t\x12\x11\n\tdata_type\x18\x02 \x01(\t\x12\x0e\n\x06length\x18\x03 \x01(\x05\x12\x11\n\tcollation\x18\x04 \x01(\t\x12\x13\n\x0bprimary_key\x18\x05 \x01(\x08\x12\x10\n\x08nullable\x18\x06 \x01(\x08\x12\x18\n\x10ordinal_position\x18\x07 \x01(\x05\"f\n\nMysqlTable\x12\x12\n\ntable_name\x18\x01 \x01(\t\x12\x44\n\rmysql_columns\x18\x02 \x03(\x0b\x32-.google.cloud.datastream.v1alpha1.MysqlColumn\"j\n\rMysqlDatabase\x12\x15\n\rdatabase_name\x18\x01 \x01(\t\x12\x42\n\x0cmysql_tables\x18\x02 \x03(\x0b\x32,.google.cloud.datastream.v1alpha1.MysqlTable\"V\n\nMysqlRdbms\x12H\n\x0fmysql_databases\x18\x01 \x03(\x0b\x32/.google.cloud.datastream.v1alpha1.MysqlDatabase\"\x96\x01\n\x11MysqlSourceConfig\x12?\n\tallowlist\x18\x01 \x01(\x0b\x32,.google.cloud.datastream.v1alpha1.MysqlRdbms\x12@\n\nrejectlist\x18\x02 \x01(\x0b\x32,.google.cloud.datastream.v1alpha1.MysqlRdbms\"\xfd\x01\n\x0cSourceConfig\x12+\n\x1esource_connection_profile_name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12T\n\x14oracle_source_config\x18\x64 \x01(\x0b\x32\x34.google.cloud.datastream.v1alpha1.OracleSourceConfigH\x00\x12R\n\x13mysql_source_config\x18\x65 \x01(\x0b\x32\x33.google.cloud.datastream.v1alpha1.MysqlSourceConfigH\x00\x42\x16\n\x14source_stream_config\"\x10\n\x0e\x41vroFileFormat\"\x8a\x02\n\x0eJsonFileFormat\x12N\n\x12schema_file_format\x18\x01 \x01(\x0e\x32\x32.google.cloud.datastream.v1alpha1.SchemaFileFormat\x12U\n\x0b\x63ompression\x18\x02 \x01(\x0e\x32@.google.cloud.datastream.v1alpha1.JsonFileFormat.JsonCompression\"Q\n\x0fJsonCompression\x12 \n\x1cJSON_COMPRESSION_UNSPECIFIED\x10\x00\x12\x12\n\x0eNO_COMPRESSION\x10\x01\x12\x08\n\x04GZIP\x10\x02\"\xf2\x02\n\x14GcsDestinationConfig\x12\x0c\n\x04path\x18\x01 \x01(\t\x12L\n\x0fgcs_file_format\x18\x02 \x01(\x0e\x32/.google.cloud.datastream.v1alpha1.GcsFileFormatB\x02\x18\x01\x12\x18\n\x10\x66ile_rotation_mb\x18\x03 \x01(\x05\x12\x39\n\x16\x66ile_rotation_interval\x18\x04 \x01(\x0b\x32\x19.google.protobuf.Duration\x12L\n\x10\x61vro_file_format\x18\x64 \x01(\x0b\x32\x30.google.cloud.datastream.v1alpha1.AvroFileFormatH\x00\x12L\n\x10json_file_format\x18\x65 \x01(\x0b\x32\x30.google.cloud.datastream.v1alpha1.JsonFileFormatH\x00\x42\r\n\x0b\x66ile_format\"\xbc\x01\n\x11\x44\x65stinationConfig\x12\x30\n#destination_connection_profile_name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12X\n\x16gcs_destination_config\x18\x64 \x01(\x0b\x32\x36.google.cloud.datastream.v1alpha1.GcsDestinationConfigH\x00\x42\x1b\n\x19\x64\x65stination_stream_config\"\xd8\t\n\x06Stream\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x0b\x63reate_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0bupdate_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x44\n\x06labels\x18\x04 \x03(\x0b\x32\x34.google.cloud.datastream.v1alpha1.Stream.LabelsEntry\x12\x19\n\x0c\x64isplay_name\x18\x05 \x01(\tB\x03\xe0\x41\x02\x12J\n\rsource_config\x18\x06 \x01(\x0b\x32..google.cloud.datastream.v1alpha1.SourceConfigB\x03\xe0\x41\x02\x12T\n\x12\x64\x65stination_config\x18\x07 \x01(\x0b\x32\x33.google.cloud.datastream.v1alpha1.DestinationConfigB\x03\xe0\x41\x02\x12=\n\x05state\x18\x08 \x01(\x0e\x32..google.cloud.datastream.v1alpha1.Stream.State\x12T\n\x0c\x62\x61\x63kfill_all\x18\x65 \x01(\x0b\x32<.google.cloud.datastream.v1alpha1.Stream.BackfillAllStrategyH\x00\x12V\n\rbackfill_none\x18\x66 \x01(\x0b\x32=.google.cloud.datastream.v1alpha1.Stream.BackfillNoneStrategyH\x00\x12<\n\x06\x65rrors\x18\t \x03(\x0b\x32\'.google.cloud.datastream.v1alpha1.ErrorB\x03\xe0\x41\x03\x1a\xcb\x01\n\x13\x42\x61\x63kfillAllStrategy\x12P\n\x17oracle_excluded_objects\x18\x01 \x01(\x0b\x32-.google.cloud.datastream.v1alpha1.OracleRdbmsH\x00\x12N\n\x16mysql_excluded_objects\x18\x02 \x01(\x0b\x32,.google.cloud.datastream.v1alpha1.MysqlRdbmsH\x00\x42\x12\n\x10\x65xcluded_objects\x1a\x16\n\x14\x42\x61\x63kfillNoneStrategy\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\x95\x01\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07\x43REATED\x10\x01\x12\x0b\n\x07RUNNING\x10\x02\x12\n\n\x06PAUSED\x10\x03\x12\x0f\n\x0bMAINTENANCE\x10\x04\x12\n\n\x06\x46\x41ILED\x10\x05\x12\x16\n\x12\x46\x41ILED_PERMANENTLY\x10\x06\x12\x0c\n\x08STARTING\x10\x07\x12\x0c\n\x08\x44RAINING\x10\x08:_\xea\x41\\\n datastream.googleapis.com/Stream\x12\x38projects/{project}/locations/{location}/streams/{stream}B\x13\n\x11\x62\x61\x63kfill_strategy\"\xe3\x01\n\x05\x45rror\x12\x0e\n\x06reason\x18\x01 \x01(\t\x12\x12\n\nerror_uuid\x18\x02 \x01(\t\x12\x0f\n\x07message\x18\x03 \x01(\t\x12.\n\nerror_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12\x45\n\x07\x64\x65tails\x18\x05 \x03(\x0b\x32\x34.google.cloud.datastream.v1alpha1.Error.DetailsEntry\x1a.\n\x0c\x44\x65tailsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"U\n\x10ValidationResult\x12\x41\n\x0bvalidations\x18\x01 \x03(\x0b\x32,.google.cloud.datastream.v1alpha1.Validation\"\x86\x02\n\nValidation\x12\x13\n\x0b\x64\x65scription\x18\x01 \x01(\t\x12\x43\n\x06status\x18\x02 \x01(\x0e\x32\x33.google.cloud.datastream.v1alpha1.Validation.Status\x12\x44\n\x07message\x18\x03 \x03(\x0b\x32\x33.google.cloud.datastream.v1alpha1.ValidationMessage\x12\x0c\n\x04\x63ode\x18\x04 \x01(\t\"J\n\x06Status\x12\x16\n\x12STATUS_UNSPECIFIED\x10\x00\x12\x10\n\x0cNOT_EXECUTED\x10\x01\x12\n\n\x06\x46\x41ILED\x10\x02\x12\n\n\x06PASSED\x10\x03\"\xba\x02\n\x11ValidationMessage\x12\x0f\n\x07message\x18\x01 \x01(\t\x12H\n\x05level\x18\x02 \x01(\x0e\x32\x39.google.cloud.datastream.v1alpha1.ValidationMessage.Level\x12S\n\x08metadata\x18\x03 \x03(\x0b\x32\x41.google.cloud.datastream.v1alpha1.ValidationMessage.MetadataEntry\x12\x0c\n\x04\x63ode\x18\x04 \x01(\t\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"6\n\x05Level\x12\x15\n\x11LEVEL_UNSPECIFIED\x10\x00\x12\x0b\n\x07WARNING\x10\x01\x12\t\n\x05\x45RROR\x10\x02*>\n\rGcsFileFormat\x12\x1f\n\x1bGCS_FILE_FORMAT_UNSPECIFIED\x10\x00\x12\x08\n\x04\x41VRO\x10\x01\x1a\x02\x18\x01*`\n\x10SchemaFileFormat\x12\"\n\x1eSCHEMA_FILE_FORMAT_UNSPECIFIED\x10\x00\x12\x12\n\x0eNO_SCHEMA_FILE\x10\x01\x12\x14\n\x10\x41VRO_SCHEMA_FILE\x10\x02\x42\xf9\x01\n$com.google.cloud.datastream.v1alpha1B\x1d\x43loudDatastreamResourcesProtoP\x01ZDcloud.google.com/go/datastream/apiv1alpha1/datastreampb;datastreampb\xaa\x02 Google.Cloud.Datastream.V1Alpha1\xca\x02 Google\\Cloud\\Datastream\\V1alpha1\xea\x02#Google::Cloud::Datastream::V1alpha1b\x06proto3"
|
14
|
+
|
15
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
16
|
+
|
17
|
+
begin
|
18
|
+
pool.add_serialized_file(descriptor_data)
|
19
|
+
rescue TypeError => e
|
20
|
+
# Compatibility code: will be removed in the next major version.
|
21
|
+
require 'google/protobuf/descriptor_pb'
|
22
|
+
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
23
|
+
parsed.clear_dependency
|
24
|
+
serialized = parsed.class.encode(parsed)
|
25
|
+
file = pool.add_serialized_file(serialized)
|
26
|
+
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
27
|
+
imports = [
|
28
|
+
["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
|
29
|
+
["google.protobuf.Duration", "google/protobuf/duration.proto"],
|
30
|
+
]
|
31
|
+
imports.each do |type_name, expected_filename|
|
32
|
+
import_file = pool.lookup(type_name).file_descriptor
|
33
|
+
if import_file.name != expected_filename
|
34
|
+
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
262
35
|
end
|
263
36
|
end
|
37
|
+
warn "Each proto file must use a consistent fully-qualified name."
|
38
|
+
warn "This will become an error in the next major version."
|
264
39
|
end
|
265
40
|
|
266
41
|
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
|
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
|
-
#
|
244
|
-
# - selector:
|
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?
|
@@ -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
|
-
#
|
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
|
-
#
|
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://
|
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-datastream-v1alpha1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.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-
|
11
|
+
date: 2023-06-06 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.
|
19
|
+
version: 0.19.1
|
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.
|
29
|
+
version: 0.19.1
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|