google-cloud-translate-v3 0.6.0 → 0.7.1
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 +2 -2
- data/lib/google/cloud/translate/v3/translation_service/client.rb +6 -4
- data/lib/google/cloud/translate/v3/translation_service/operations.rb +5 -3
- data/lib/google/cloud/translate/v3/translation_service/rest/client.rb +6 -4
- data/lib/google/cloud/translate/v3/translation_service/rest/operations.rb +10 -8
- data/lib/google/cloud/translate/v3/translation_service/rest/service_stub.rb +10 -10
- data/lib/google/cloud/translate/v3/translation_service_pb.rb +25 -269
- data/lib/google/cloud/translate/v3/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 +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d47053469852b6cbbe661af63a7b8346fa61c507fc0d1e5ef5cac2456ce03cea
|
|
4
|
+
data.tar.gz: af6c18bdf85f6e87069eaea5a37dc38fb29fe47e0ccd56ee634621b6b30bf6a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 835b8697b80ef9b19a986337616999acfed0c334444bbc4535950d9f750ebd3112faa1f940c1c0df0346a0c3c07d85de8456c9d19e9d0bd0cde559bae134e48b
|
|
7
|
+
data.tar.gz: d45feba5215cac928354d73e5f241fac50b1b7fa02ebd6788db21daf00e4d90e376e8863a9a641f946a8af061003d5f1c6fa66a68179d316f67d0a05229ad699
|
data/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Ruby Client for the Cloud Translation V3 API
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Integrates text translation into your website or application.
|
|
4
4
|
|
|
5
5
|
Cloud Translation can dynamically translate text between thousands of language pairs. Translation lets websites and programs programmatically integrate with the translation service.
|
|
6
6
|
|
|
@@ -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
|
|
|
@@ -155,7 +155,7 @@ module Google
|
|
|
155
155
|
credentials = @config.credentials
|
|
156
156
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
|
157
157
|
# but only if the default endpoint does not have a region prefix.
|
|
158
|
-
enable_self_signed_jwt = @config.endpoint ==
|
|
158
|
+
enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
|
159
159
|
!@config.endpoint.split(".").first.include?("-")
|
|
160
160
|
credentials ||= Credentials.default scope: @config.scope,
|
|
161
161
|
enable_self_signed_jwt: enable_self_signed_jwt
|
|
@@ -1461,9 +1461,9 @@ module Google
|
|
|
1461
1461
|
# * (`String`) The path to a service account key file in JSON format
|
|
1462
1462
|
# * (`Hash`) A service account key as a Hash
|
|
1463
1463
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
|
1464
|
-
# (see the [googleauth docs](https://
|
|
1464
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
|
1465
1465
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
|
1466
|
-
# (see the [signet docs](https://
|
|
1466
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
|
1467
1467
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
|
1468
1468
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
|
1469
1469
|
# * (`nil`) indicating no credentials
|
|
@@ -1505,7 +1505,9 @@ module Google
|
|
|
1505
1505
|
class Configuration
|
|
1506
1506
|
extend ::Gapic::Config
|
|
1507
1507
|
|
|
1508
|
-
|
|
1508
|
+
DEFAULT_ENDPOINT = "translate.googleapis.com"
|
|
1509
|
+
|
|
1510
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
|
1509
1511
|
config_attr :credentials, nil do |value|
|
|
1510
1512
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
|
1511
1513
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
|
@@ -628,9 +628,9 @@ module Google
|
|
|
628
628
|
# * (`String`) The path to a service account key file in JSON format
|
|
629
629
|
# * (`Hash`) A service account key as a Hash
|
|
630
630
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
|
631
|
-
# (see the [googleauth docs](https://
|
|
631
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
|
632
632
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
|
633
|
-
# (see the [signet docs](https://
|
|
633
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
|
634
634
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
|
635
635
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
|
636
636
|
# * (`nil`) indicating no credentials
|
|
@@ -672,7 +672,9 @@ module Google
|
|
|
672
672
|
class Configuration
|
|
673
673
|
extend ::Gapic::Config
|
|
674
674
|
|
|
675
|
-
|
|
675
|
+
DEFAULT_ENDPOINT = "translate.googleapis.com"
|
|
676
|
+
|
|
677
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
|
676
678
|
config_attr :credentials, nil do |value|
|
|
677
679
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
|
678
680
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
|
@@ -151,7 +151,7 @@ module Google
|
|
|
151
151
|
credentials = @config.credentials
|
|
152
152
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
|
153
153
|
# but only if the default endpoint does not have a region prefix.
|
|
154
|
-
enable_self_signed_jwt = @config.endpoint ==
|
|
154
|
+
enable_self_signed_jwt = @config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
|
155
155
|
!@config.endpoint.split(".").first.include?("-")
|
|
156
156
|
credentials ||= Credentials.default scope: @config.scope,
|
|
157
157
|
enable_self_signed_jwt: enable_self_signed_jwt
|
|
@@ -1190,9 +1190,9 @@ module Google
|
|
|
1190
1190
|
# * (`String`) The path to a service account key file in JSON format
|
|
1191
1191
|
# * (`Hash`) A service account key as a Hash
|
|
1192
1192
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
|
1193
|
-
# (see the [googleauth docs](https://
|
|
1193
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
|
1194
1194
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
|
1195
|
-
# (see the [signet docs](https://
|
|
1195
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
|
1196
1196
|
# * (`nil`) indicating no credentials
|
|
1197
1197
|
# @return [::Object]
|
|
1198
1198
|
# @!attribute [rw] scope
|
|
@@ -1225,7 +1225,9 @@ module Google
|
|
|
1225
1225
|
class Configuration
|
|
1226
1226
|
extend ::Gapic::Config
|
|
1227
1227
|
|
|
1228
|
-
|
|
1228
|
+
DEFAULT_ENDPOINT = "translate.googleapis.com"
|
|
1229
|
+
|
|
1230
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
|
1229
1231
|
config_attr :credentials, nil do |value|
|
|
1230
1232
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
|
1231
1233
|
allowed.any? { |klass| klass === value }
|
|
@@ -486,9 +486,9 @@ module Google
|
|
|
486
486
|
# * (`String`) The path to a service account key file in JSON format
|
|
487
487
|
# * (`Hash`) A service account key as a Hash
|
|
488
488
|
# * (`Google::Auth::Credentials`) A googleauth credentials object
|
|
489
|
-
# (see the [googleauth docs](https://
|
|
489
|
+
# (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
|
|
490
490
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
|
491
|
-
# (see the [signet docs](https://
|
|
491
|
+
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
|
492
492
|
# * (`nil`) indicating no credentials
|
|
493
493
|
# @return [::Object]
|
|
494
494
|
# @!attribute [rw] scope
|
|
@@ -521,7 +521,9 @@ module Google
|
|
|
521
521
|
class Configuration
|
|
522
522
|
extend ::Gapic::Config
|
|
523
523
|
|
|
524
|
-
|
|
524
|
+
DEFAULT_ENDPOINT = "translate.googleapis.com"
|
|
525
|
+
|
|
526
|
+
config_attr :endpoint, DEFAULT_ENDPOINT, ::String
|
|
525
527
|
config_attr :credentials, nil do |value|
|
|
526
528
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
|
527
529
|
allowed.any? { |klass| klass === value }
|
|
@@ -649,7 +651,7 @@ module Google
|
|
|
649
651
|
|
|
650
652
|
verb, uri, query_string_params, body = OperationsServiceStub.transcode_list_operations_request request_pb
|
|
651
653
|
query_string_params = if query_string_params.any?
|
|
652
|
-
query_string_params.to_h { |p| p.split
|
|
654
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
653
655
|
else
|
|
654
656
|
{}
|
|
655
657
|
end
|
|
@@ -687,7 +689,7 @@ module Google
|
|
|
687
689
|
|
|
688
690
|
verb, uri, query_string_params, body = OperationsServiceStub.transcode_get_operation_request request_pb
|
|
689
691
|
query_string_params = if query_string_params.any?
|
|
690
|
-
query_string_params.to_h { |p| p.split
|
|
692
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
691
693
|
else
|
|
692
694
|
{}
|
|
693
695
|
end
|
|
@@ -725,7 +727,7 @@ module Google
|
|
|
725
727
|
|
|
726
728
|
verb, uri, query_string_params, body = OperationsServiceStub.transcode_delete_operation_request request_pb
|
|
727
729
|
query_string_params = if query_string_params.any?
|
|
728
|
-
query_string_params.to_h { |p| p.split
|
|
730
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
729
731
|
else
|
|
730
732
|
{}
|
|
731
733
|
end
|
|
@@ -763,7 +765,7 @@ module Google
|
|
|
763
765
|
|
|
764
766
|
verb, uri, query_string_params, body = OperationsServiceStub.transcode_cancel_operation_request request_pb
|
|
765
767
|
query_string_params = if query_string_params.any?
|
|
766
|
-
query_string_params.to_h { |p| p.split
|
|
768
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
767
769
|
else
|
|
768
770
|
{}
|
|
769
771
|
end
|
|
@@ -801,7 +803,7 @@ module Google
|
|
|
801
803
|
|
|
802
804
|
verb, uri, query_string_params, body = OperationsServiceStub.transcode_wait_operation_request request_pb
|
|
803
805
|
query_string_params = if query_string_params.any?
|
|
804
|
-
query_string_params.to_h { |p| p.split
|
|
806
|
+
query_string_params.to_h { |p| p.split "=", 2 }
|
|
805
807
|
else
|
|
806
808
|
{}
|
|
807
809
|
end
|
|
@@ -59,7 +59,7 @@ module Google
|
|
|
59
59
|
|
|
60
60
|
verb, uri, query_string_params, body = ServiceStub.transcode_translate_text_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_detect_language_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_get_supported_languages_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_translate_document_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_batch_translate_text_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_batch_translate_document_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_create_glossary_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_list_glossaries_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_get_glossary_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_delete_glossary_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
|
|
@@ -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/translate/v3/translation_service.proto
|
|
3
4
|
|
|
@@ -10,277 +11,32 @@ require 'google/api/resource_pb'
|
|
|
10
11
|
require 'google/longrunning/operations_pb'
|
|
11
12
|
require 'google/protobuf/timestamp_pb'
|
|
12
13
|
|
|
13
|
-
|
|
14
|
-
add_file("google/cloud/translate/v3/translation_service.proto", :syntax => :proto3) do
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
optional :model, :string, 2
|
|
36
|
-
optional :detected_language_code, :string, 4
|
|
37
|
-
optional :glossary_config, :message, 3, "google.cloud.translation.v3.TranslateTextGlossaryConfig"
|
|
38
|
-
end
|
|
39
|
-
add_message "google.cloud.translation.v3.DetectLanguageRequest" do
|
|
40
|
-
optional :parent, :string, 5
|
|
41
|
-
optional :model, :string, 4
|
|
42
|
-
optional :mime_type, :string, 3
|
|
43
|
-
map :labels, :string, :string, 6
|
|
44
|
-
oneof :source do
|
|
45
|
-
optional :content, :string, 1
|
|
46
|
-
end
|
|
47
|
-
end
|
|
48
|
-
add_message "google.cloud.translation.v3.DetectedLanguage" do
|
|
49
|
-
optional :language_code, :string, 1
|
|
50
|
-
optional :confidence, :float, 2
|
|
51
|
-
end
|
|
52
|
-
add_message "google.cloud.translation.v3.DetectLanguageResponse" do
|
|
53
|
-
repeated :languages, :message, 1, "google.cloud.translation.v3.DetectedLanguage"
|
|
54
|
-
end
|
|
55
|
-
add_message "google.cloud.translation.v3.GetSupportedLanguagesRequest" do
|
|
56
|
-
optional :parent, :string, 3
|
|
57
|
-
optional :display_language_code, :string, 1
|
|
58
|
-
optional :model, :string, 2
|
|
59
|
-
end
|
|
60
|
-
add_message "google.cloud.translation.v3.SupportedLanguages" do
|
|
61
|
-
repeated :languages, :message, 1, "google.cloud.translation.v3.SupportedLanguage"
|
|
62
|
-
end
|
|
63
|
-
add_message "google.cloud.translation.v3.SupportedLanguage" do
|
|
64
|
-
optional :language_code, :string, 1
|
|
65
|
-
optional :display_name, :string, 2
|
|
66
|
-
optional :support_source, :bool, 3
|
|
67
|
-
optional :support_target, :bool, 4
|
|
68
|
-
end
|
|
69
|
-
add_message "google.cloud.translation.v3.GcsSource" do
|
|
70
|
-
optional :input_uri, :string, 1
|
|
71
|
-
end
|
|
72
|
-
add_message "google.cloud.translation.v3.InputConfig" do
|
|
73
|
-
optional :mime_type, :string, 1
|
|
74
|
-
oneof :source do
|
|
75
|
-
optional :gcs_source, :message, 2, "google.cloud.translation.v3.GcsSource"
|
|
76
|
-
end
|
|
77
|
-
end
|
|
78
|
-
add_message "google.cloud.translation.v3.GcsDestination" do
|
|
79
|
-
optional :output_uri_prefix, :string, 1
|
|
80
|
-
end
|
|
81
|
-
add_message "google.cloud.translation.v3.OutputConfig" do
|
|
82
|
-
oneof :destination do
|
|
83
|
-
optional :gcs_destination, :message, 1, "google.cloud.translation.v3.GcsDestination"
|
|
84
|
-
end
|
|
85
|
-
end
|
|
86
|
-
add_message "google.cloud.translation.v3.DocumentInputConfig" do
|
|
87
|
-
optional :mime_type, :string, 4
|
|
88
|
-
oneof :source do
|
|
89
|
-
optional :content, :bytes, 1
|
|
90
|
-
optional :gcs_source, :message, 2, "google.cloud.translation.v3.GcsSource"
|
|
91
|
-
end
|
|
92
|
-
end
|
|
93
|
-
add_message "google.cloud.translation.v3.DocumentOutputConfig" do
|
|
94
|
-
optional :mime_type, :string, 3
|
|
95
|
-
oneof :destination do
|
|
96
|
-
optional :gcs_destination, :message, 1, "google.cloud.translation.v3.GcsDestination"
|
|
97
|
-
end
|
|
98
|
-
end
|
|
99
|
-
add_message "google.cloud.translation.v3.TranslateDocumentRequest" do
|
|
100
|
-
optional :parent, :string, 1
|
|
101
|
-
optional :source_language_code, :string, 2
|
|
102
|
-
optional :target_language_code, :string, 3
|
|
103
|
-
optional :document_input_config, :message, 4, "google.cloud.translation.v3.DocumentInputConfig"
|
|
104
|
-
optional :document_output_config, :message, 5, "google.cloud.translation.v3.DocumentOutputConfig"
|
|
105
|
-
optional :model, :string, 6
|
|
106
|
-
optional :glossary_config, :message, 7, "google.cloud.translation.v3.TranslateTextGlossaryConfig"
|
|
107
|
-
map :labels, :string, :string, 8
|
|
108
|
-
optional :customized_attribution, :string, 10
|
|
109
|
-
optional :is_translate_native_pdf_only, :bool, 11
|
|
110
|
-
optional :enable_shadow_removal_native_pdf, :bool, 12
|
|
111
|
-
end
|
|
112
|
-
add_message "google.cloud.translation.v3.DocumentTranslation" do
|
|
113
|
-
repeated :byte_stream_outputs, :bytes, 1
|
|
114
|
-
optional :mime_type, :string, 2
|
|
115
|
-
optional :detected_language_code, :string, 3
|
|
116
|
-
end
|
|
117
|
-
add_message "google.cloud.translation.v3.TranslateDocumentResponse" do
|
|
118
|
-
optional :document_translation, :message, 1, "google.cloud.translation.v3.DocumentTranslation"
|
|
119
|
-
optional :glossary_document_translation, :message, 2, "google.cloud.translation.v3.DocumentTranslation"
|
|
120
|
-
optional :model, :string, 3
|
|
121
|
-
optional :glossary_config, :message, 4, "google.cloud.translation.v3.TranslateTextGlossaryConfig"
|
|
122
|
-
end
|
|
123
|
-
add_message "google.cloud.translation.v3.BatchTranslateTextRequest" do
|
|
124
|
-
optional :parent, :string, 1
|
|
125
|
-
optional :source_language_code, :string, 2
|
|
126
|
-
repeated :target_language_codes, :string, 3
|
|
127
|
-
map :models, :string, :string, 4
|
|
128
|
-
repeated :input_configs, :message, 5, "google.cloud.translation.v3.InputConfig"
|
|
129
|
-
optional :output_config, :message, 6, "google.cloud.translation.v3.OutputConfig"
|
|
130
|
-
map :glossaries, :string, :message, 7, "google.cloud.translation.v3.TranslateTextGlossaryConfig"
|
|
131
|
-
map :labels, :string, :string, 9
|
|
132
|
-
end
|
|
133
|
-
add_message "google.cloud.translation.v3.BatchTranslateMetadata" do
|
|
134
|
-
optional :state, :enum, 1, "google.cloud.translation.v3.BatchTranslateMetadata.State"
|
|
135
|
-
optional :translated_characters, :int64, 2
|
|
136
|
-
optional :failed_characters, :int64, 3
|
|
137
|
-
optional :total_characters, :int64, 4
|
|
138
|
-
optional :submit_time, :message, 5, "google.protobuf.Timestamp"
|
|
139
|
-
end
|
|
140
|
-
add_enum "google.cloud.translation.v3.BatchTranslateMetadata.State" do
|
|
141
|
-
value :STATE_UNSPECIFIED, 0
|
|
142
|
-
value :RUNNING, 1
|
|
143
|
-
value :SUCCEEDED, 2
|
|
144
|
-
value :FAILED, 3
|
|
145
|
-
value :CANCELLING, 4
|
|
146
|
-
value :CANCELLED, 5
|
|
147
|
-
end
|
|
148
|
-
add_message "google.cloud.translation.v3.BatchTranslateResponse" do
|
|
149
|
-
optional :total_characters, :int64, 1
|
|
150
|
-
optional :translated_characters, :int64, 2
|
|
151
|
-
optional :failed_characters, :int64, 3
|
|
152
|
-
optional :submit_time, :message, 4, "google.protobuf.Timestamp"
|
|
153
|
-
optional :end_time, :message, 5, "google.protobuf.Timestamp"
|
|
154
|
-
end
|
|
155
|
-
add_message "google.cloud.translation.v3.GlossaryInputConfig" do
|
|
156
|
-
oneof :source do
|
|
157
|
-
optional :gcs_source, :message, 1, "google.cloud.translation.v3.GcsSource"
|
|
158
|
-
end
|
|
159
|
-
end
|
|
160
|
-
add_message "google.cloud.translation.v3.Glossary" do
|
|
161
|
-
optional :name, :string, 1
|
|
162
|
-
optional :input_config, :message, 5, "google.cloud.translation.v3.GlossaryInputConfig"
|
|
163
|
-
optional :entry_count, :int32, 6
|
|
164
|
-
optional :submit_time, :message, 7, "google.protobuf.Timestamp"
|
|
165
|
-
optional :end_time, :message, 8, "google.protobuf.Timestamp"
|
|
166
|
-
optional :display_name, :string, 9
|
|
167
|
-
oneof :languages do
|
|
168
|
-
optional :language_pair, :message, 3, "google.cloud.translation.v3.Glossary.LanguageCodePair"
|
|
169
|
-
optional :language_codes_set, :message, 4, "google.cloud.translation.v3.Glossary.LanguageCodesSet"
|
|
170
|
-
end
|
|
171
|
-
end
|
|
172
|
-
add_message "google.cloud.translation.v3.Glossary.LanguageCodePair" do
|
|
173
|
-
optional :source_language_code, :string, 1
|
|
174
|
-
optional :target_language_code, :string, 2
|
|
175
|
-
end
|
|
176
|
-
add_message "google.cloud.translation.v3.Glossary.LanguageCodesSet" do
|
|
177
|
-
repeated :language_codes, :string, 1
|
|
178
|
-
end
|
|
179
|
-
add_message "google.cloud.translation.v3.CreateGlossaryRequest" do
|
|
180
|
-
optional :parent, :string, 1
|
|
181
|
-
optional :glossary, :message, 2, "google.cloud.translation.v3.Glossary"
|
|
182
|
-
end
|
|
183
|
-
add_message "google.cloud.translation.v3.GetGlossaryRequest" do
|
|
184
|
-
optional :name, :string, 1
|
|
185
|
-
end
|
|
186
|
-
add_message "google.cloud.translation.v3.DeleteGlossaryRequest" do
|
|
187
|
-
optional :name, :string, 1
|
|
188
|
-
end
|
|
189
|
-
add_message "google.cloud.translation.v3.ListGlossariesRequest" do
|
|
190
|
-
optional :parent, :string, 1
|
|
191
|
-
optional :page_size, :int32, 2
|
|
192
|
-
optional :page_token, :string, 3
|
|
193
|
-
optional :filter, :string, 4
|
|
194
|
-
end
|
|
195
|
-
add_message "google.cloud.translation.v3.ListGlossariesResponse" do
|
|
196
|
-
repeated :glossaries, :message, 1, "google.cloud.translation.v3.Glossary"
|
|
197
|
-
optional :next_page_token, :string, 2
|
|
198
|
-
end
|
|
199
|
-
add_message "google.cloud.translation.v3.CreateGlossaryMetadata" do
|
|
200
|
-
optional :name, :string, 1
|
|
201
|
-
optional :state, :enum, 2, "google.cloud.translation.v3.CreateGlossaryMetadata.State"
|
|
202
|
-
optional :submit_time, :message, 3, "google.protobuf.Timestamp"
|
|
203
|
-
end
|
|
204
|
-
add_enum "google.cloud.translation.v3.CreateGlossaryMetadata.State" do
|
|
205
|
-
value :STATE_UNSPECIFIED, 0
|
|
206
|
-
value :RUNNING, 1
|
|
207
|
-
value :SUCCEEDED, 2
|
|
208
|
-
value :FAILED, 3
|
|
209
|
-
value :CANCELLING, 4
|
|
210
|
-
value :CANCELLED, 5
|
|
211
|
-
end
|
|
212
|
-
add_message "google.cloud.translation.v3.DeleteGlossaryMetadata" do
|
|
213
|
-
optional :name, :string, 1
|
|
214
|
-
optional :state, :enum, 2, "google.cloud.translation.v3.DeleteGlossaryMetadata.State"
|
|
215
|
-
optional :submit_time, :message, 3, "google.protobuf.Timestamp"
|
|
216
|
-
end
|
|
217
|
-
add_enum "google.cloud.translation.v3.DeleteGlossaryMetadata.State" do
|
|
218
|
-
value :STATE_UNSPECIFIED, 0
|
|
219
|
-
value :RUNNING, 1
|
|
220
|
-
value :SUCCEEDED, 2
|
|
221
|
-
value :FAILED, 3
|
|
222
|
-
value :CANCELLING, 4
|
|
223
|
-
value :CANCELLED, 5
|
|
224
|
-
end
|
|
225
|
-
add_message "google.cloud.translation.v3.DeleteGlossaryResponse" do
|
|
226
|
-
optional :name, :string, 1
|
|
227
|
-
optional :submit_time, :message, 2, "google.protobuf.Timestamp"
|
|
228
|
-
optional :end_time, :message, 3, "google.protobuf.Timestamp"
|
|
229
|
-
end
|
|
230
|
-
add_message "google.cloud.translation.v3.BatchTranslateDocumentRequest" do
|
|
231
|
-
optional :parent, :string, 1
|
|
232
|
-
optional :source_language_code, :string, 2
|
|
233
|
-
repeated :target_language_codes, :string, 3
|
|
234
|
-
repeated :input_configs, :message, 4, "google.cloud.translation.v3.BatchDocumentInputConfig"
|
|
235
|
-
optional :output_config, :message, 5, "google.cloud.translation.v3.BatchDocumentOutputConfig"
|
|
236
|
-
map :models, :string, :string, 6
|
|
237
|
-
map :glossaries, :string, :message, 7, "google.cloud.translation.v3.TranslateTextGlossaryConfig"
|
|
238
|
-
map :format_conversions, :string, :string, 8
|
|
239
|
-
optional :customized_attribution, :string, 10
|
|
240
|
-
end
|
|
241
|
-
add_message "google.cloud.translation.v3.BatchDocumentInputConfig" do
|
|
242
|
-
oneof :source do
|
|
243
|
-
optional :gcs_source, :message, 1, "google.cloud.translation.v3.GcsSource"
|
|
244
|
-
end
|
|
245
|
-
end
|
|
246
|
-
add_message "google.cloud.translation.v3.BatchDocumentOutputConfig" do
|
|
247
|
-
oneof :destination do
|
|
248
|
-
optional :gcs_destination, :message, 1, "google.cloud.translation.v3.GcsDestination"
|
|
249
|
-
end
|
|
250
|
-
end
|
|
251
|
-
add_message "google.cloud.translation.v3.BatchTranslateDocumentResponse" do
|
|
252
|
-
optional :total_pages, :int64, 1
|
|
253
|
-
optional :translated_pages, :int64, 2
|
|
254
|
-
optional :failed_pages, :int64, 3
|
|
255
|
-
optional :total_billable_pages, :int64, 4
|
|
256
|
-
optional :total_characters, :int64, 5
|
|
257
|
-
optional :translated_characters, :int64, 6
|
|
258
|
-
optional :failed_characters, :int64, 7
|
|
259
|
-
optional :total_billable_characters, :int64, 8
|
|
260
|
-
optional :submit_time, :message, 9, "google.protobuf.Timestamp"
|
|
261
|
-
optional :end_time, :message, 10, "google.protobuf.Timestamp"
|
|
262
|
-
end
|
|
263
|
-
add_message "google.cloud.translation.v3.BatchTranslateDocumentMetadata" do
|
|
264
|
-
optional :state, :enum, 1, "google.cloud.translation.v3.BatchTranslateDocumentMetadata.State"
|
|
265
|
-
optional :total_pages, :int64, 2
|
|
266
|
-
optional :translated_pages, :int64, 3
|
|
267
|
-
optional :failed_pages, :int64, 4
|
|
268
|
-
optional :total_billable_pages, :int64, 5
|
|
269
|
-
optional :total_characters, :int64, 6
|
|
270
|
-
optional :translated_characters, :int64, 7
|
|
271
|
-
optional :failed_characters, :int64, 8
|
|
272
|
-
optional :total_billable_characters, :int64, 9
|
|
273
|
-
optional :submit_time, :message, 10, "google.protobuf.Timestamp"
|
|
274
|
-
end
|
|
275
|
-
add_enum "google.cloud.translation.v3.BatchTranslateDocumentMetadata.State" do
|
|
276
|
-
value :STATE_UNSPECIFIED, 0
|
|
277
|
-
value :RUNNING, 1
|
|
278
|
-
value :SUCCEEDED, 2
|
|
279
|
-
value :FAILED, 3
|
|
280
|
-
value :CANCELLING, 4
|
|
281
|
-
value :CANCELLED, 5
|
|
14
|
+
|
|
15
|
+
descriptor_data = "\n3google/cloud/translate/v3/translation_service.proto\x12\x1bgoogle.cloud.translation.v3\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\x1fgoogle/protobuf/timestamp.proto\"N\n\x1bTranslateTextGlossaryConfig\x12\x15\n\x08glossary\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12\x18\n\x0bignore_case\x18\x02 \x01(\x08\x42\x03\xe0\x41\x01\"\xb5\x03\n\x14TranslateTextRequest\x12\x15\n\x08\x63ontents\x18\x01 \x03(\tB\x03\xe0\x41\x02\x12\x16\n\tmime_type\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12!\n\x14source_language_code\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12!\n\x14target_language_code\x18\x05 \x01(\tB\x03\xe0\x41\x02\x12\x39\n\x06parent\x18\x08 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x12\n\x05model\x18\x06 \x01(\tB\x03\xe0\x41\x01\x12V\n\x0fglossary_config\x18\x07 \x01(\x0b\x32\x38.google.cloud.translation.v3.TranslateTextGlossaryConfigB\x03\xe0\x41\x01\x12R\n\x06labels\x18\n \x03(\x0b\x32=.google.cloud.translation.v3.TranslateTextRequest.LabelsEntryB\x03\xe0\x41\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xa0\x01\n\x15TranslateTextResponse\x12>\n\x0ctranslations\x18\x01 \x03(\x0b\x32(.google.cloud.translation.v3.Translation\x12G\n\x15glossary_translations\x18\x03 \x03(\x0b\x32(.google.cloud.translation.v3.Translation\"\xa8\x01\n\x0bTranslation\x12\x17\n\x0ftranslated_text\x18\x01 \x01(\t\x12\r\n\x05model\x18\x02 \x01(\t\x12\x1e\n\x16\x64\x65tected_language_code\x18\x04 \x01(\t\x12Q\n\x0fglossary_config\x18\x03 \x01(\x0b\x32\x38.google.cloud.translation.v3.TranslateTextGlossaryConfig\"\x9f\x02\n\x15\x44\x65tectLanguageRequest\x12\x39\n\x06parent\x18\x05 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x12\n\x05model\x18\x04 \x01(\tB\x03\xe0\x41\x01\x12\x11\n\x07\x63ontent\x18\x01 \x01(\tH\x00\x12\x16\n\tmime_type\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12S\n\x06labels\x18\x06 \x03(\x0b\x32>.google.cloud.translation.v3.DetectLanguageRequest.LabelsEntryB\x03\xe0\x41\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x42\x08\n\x06source\"=\n\x10\x44\x65tectedLanguage\x12\x15\n\rlanguage_code\x18\x01 \x01(\t\x12\x12\n\nconfidence\x18\x02 \x01(\x02\"Z\n\x16\x44\x65tectLanguageResponse\x12@\n\tlanguages\x18\x01 \x03(\x0b\x32-.google.cloud.translation.v3.DetectedLanguage\"\x91\x01\n\x1cGetSupportedLanguagesRequest\x12\x39\n\x06parent\x18\x03 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\"\n\x15\x64isplay_language_code\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12\x12\n\x05model\x18\x02 \x01(\tB\x03\xe0\x41\x01\"W\n\x12SupportedLanguages\x12\x41\n\tlanguages\x18\x01 \x03(\x0b\x32..google.cloud.translation.v3.SupportedLanguage\"p\n\x11SupportedLanguage\x12\x15\n\rlanguage_code\x18\x01 \x01(\t\x12\x14\n\x0c\x64isplay_name\x18\x02 \x01(\t\x12\x16\n\x0esupport_source\x18\x03 \x01(\x08\x12\x16\n\x0esupport_target\x18\x04 \x01(\x08\"#\n\tGcsSource\x12\x16\n\tinput_uri\x18\x01 \x01(\tB\x03\xe0\x41\x02\"m\n\x0bInputConfig\x12\x16\n\tmime_type\x18\x01 \x01(\tB\x03\xe0\x41\x01\x12<\n\ngcs_source\x18\x02 \x01(\x0b\x32&.google.cloud.translation.v3.GcsSourceH\x00\x42\x08\n\x06source\"0\n\x0eGcsDestination\x12\x1e\n\x11output_uri_prefix\x18\x01 \x01(\tB\x03\xe0\x41\x02\"e\n\x0cOutputConfig\x12\x46\n\x0fgcs_destination\x18\x01 \x01(\x0b\x32+.google.cloud.translation.v3.GcsDestinationH\x00\x42\r\n\x0b\x64\x65stination\"\x83\x01\n\x13\x44ocumentInputConfig\x12\x11\n\x07\x63ontent\x18\x01 \x01(\x0cH\x00\x12<\n\ngcs_source\x18\x02 \x01(\x0b\x32&.google.cloud.translation.v3.GcsSourceH\x00\x12\x11\n\tmime_type\x18\x04 \x01(\tB\x08\n\x06source\"\x8a\x01\n\x14\x44ocumentOutputConfig\x12K\n\x0fgcs_destination\x18\x01 \x01(\x0b\x32+.google.cloud.translation.v3.GcsDestinationB\x03\xe0\x41\x01H\x00\x12\x16\n\tmime_type\x18\x03 \x01(\tB\x03\xe0\x41\x01\x42\r\n\x0b\x64\x65stination\"\x95\x05\n\x18TranslateDocumentRequest\x12\x13\n\x06parent\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12!\n\x14source_language_code\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12!\n\x14target_language_code\x18\x03 \x01(\tB\x03\xe0\x41\x02\x12T\n\x15\x64ocument_input_config\x18\x04 \x01(\x0b\x32\x30.google.cloud.translation.v3.DocumentInputConfigB\x03\xe0\x41\x02\x12V\n\x16\x64ocument_output_config\x18\x05 \x01(\x0b\x32\x31.google.cloud.translation.v3.DocumentOutputConfigB\x03\xe0\x41\x01\x12\x12\n\x05model\x18\x06 \x01(\tB\x03\xe0\x41\x01\x12V\n\x0fglossary_config\x18\x07 \x01(\x0b\x32\x38.google.cloud.translation.v3.TranslateTextGlossaryConfigB\x03\xe0\x41\x01\x12V\n\x06labels\x18\x08 \x03(\x0b\x32\x41.google.cloud.translation.v3.TranslateDocumentRequest.LabelsEntryB\x03\xe0\x41\x01\x12#\n\x16\x63ustomized_attribution\x18\n \x01(\tB\x03\xe0\x41\x01\x12)\n\x1cis_translate_native_pdf_only\x18\x0b \x01(\x08\x42\x03\xe0\x41\x01\x12-\n enable_shadow_removal_native_pdf\x18\x0c \x01(\x08\x42\x03\xe0\x41\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"e\n\x13\x44ocumentTranslation\x12\x1b\n\x13\x62yte_stream_outputs\x18\x01 \x03(\x0c\x12\x11\n\tmime_type\x18\x02 \x01(\t\x12\x1e\n\x16\x64\x65tected_language_code\x18\x03 \x01(\t\"\xa6\x02\n\x19TranslateDocumentResponse\x12N\n\x14\x64ocument_translation\x18\x01 \x01(\x0b\x32\x30.google.cloud.translation.v3.DocumentTranslation\x12W\n\x1dglossary_document_translation\x18\x02 \x01(\x0b\x32\x30.google.cloud.translation.v3.DocumentTranslation\x12\r\n\x05model\x18\x03 \x01(\t\x12Q\n\x0fglossary_config\x18\x04 \x01(\x0b\x32\x38.google.cloud.translation.v3.TranslateTextGlossaryConfig\"\x88\x06\n\x19\x42\x61tchTranslateTextRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12!\n\x14source_language_code\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\"\n\x15target_language_codes\x18\x03 \x03(\tB\x03\xe0\x41\x02\x12W\n\x06models\x18\x04 \x03(\x0b\x32\x42.google.cloud.translation.v3.BatchTranslateTextRequest.ModelsEntryB\x03\xe0\x41\x01\x12\x44\n\rinput_configs\x18\x05 \x03(\x0b\x32(.google.cloud.translation.v3.InputConfigB\x03\xe0\x41\x02\x12\x45\n\routput_config\x18\x06 \x01(\x0b\x32).google.cloud.translation.v3.OutputConfigB\x03\xe0\x41\x02\x12_\n\nglossaries\x18\x07 \x03(\x0b\x32\x46.google.cloud.translation.v3.BatchTranslateTextRequest.GlossariesEntryB\x03\xe0\x41\x01\x12W\n\x06labels\x18\t \x03(\x0b\x32\x42.google.cloud.translation.v3.BatchTranslateTextRequest.LabelsEntryB\x03\xe0\x41\x01\x1a-\n\x0bModelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1ak\n\x0fGlossariesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12G\n\x05value\x18\x02 \x01(\x0b\x32\x38.google.cloud.translation.v3.TranslateTextGlossaryConfig:\x02\x38\x01\x1a-\n\x0bLabelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xce\x02\n\x16\x42\x61tchTranslateMetadata\x12H\n\x05state\x18\x01 \x01(\x0e\x32\x39.google.cloud.translation.v3.BatchTranslateMetadata.State\x12\x1d\n\x15translated_characters\x18\x02 \x01(\x03\x12\x19\n\x11\x66\x61iled_characters\x18\x03 \x01(\x03\x12\x18\n\x10total_characters\x18\x04 \x01(\x03\x12/\n\x0bsubmit_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"e\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07RUNNING\x10\x01\x12\r\n\tSUCCEEDED\x10\x02\x12\n\n\x06\x46\x41ILED\x10\x03\x12\x0e\n\nCANCELLING\x10\x04\x12\r\n\tCANCELLED\x10\x05\"\xcb\x01\n\x16\x42\x61tchTranslateResponse\x12\x18\n\x10total_characters\x18\x01 \x01(\x03\x12\x1d\n\x15translated_characters\x18\x02 \x01(\x03\x12\x19\n\x11\x66\x61iled_characters\x18\x03 \x01(\x03\x12/\n\x0bsubmit_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"]\n\x13GlossaryInputConfig\x12<\n\ngcs_source\x18\x01 \x01(\x0b\x32&.google.cloud.translation.v3.GcsSourceH\x00\x42\x08\n\x06source\"\x9a\x05\n\x08Glossary\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x02\x12O\n\rlanguage_pair\x18\x03 \x01(\x0b\x32\x36.google.cloud.translation.v3.Glossary.LanguageCodePairH\x00\x12T\n\x12language_codes_set\x18\x04 \x01(\x0b\x32\x36.google.cloud.translation.v3.Glossary.LanguageCodesSetH\x00\x12\x46\n\x0cinput_config\x18\x05 \x01(\x0b\x32\x30.google.cloud.translation.v3.GlossaryInputConfig\x12\x18\n\x0b\x65ntry_count\x18\x06 \x01(\x05\x42\x03\xe0\x41\x03\x12\x34\n\x0bsubmit_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x19\n\x0c\x64isplay_name\x18\t \x01(\tB\x03\xe0\x41\x01\x1aN\n\x10LanguageCodePair\x12\x1c\n\x14source_language_code\x18\x01 \x01(\t\x12\x1c\n\x14target_language_code\x18\x02 \x01(\t\x1a*\n\x10LanguageCodesSet\x12\x16\n\x0elanguage_codes\x18\x01 \x03(\t:e\xea\x41\x62\n!translate.googleapis.com/Glossary\x12=projects/{project}/locations/{location}/glossaries/{glossary}B\x0b\n\tlanguages\"\x90\x01\n\x15\x43reateGlossaryRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12<\n\x08glossary\x18\x02 \x01(\x0b\x32%.google.cloud.translation.v3.GlossaryB\x03\xe0\x41\x02\"M\n\x12GetGlossaryRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!translate.googleapis.com/Glossary\"P\n\x15\x44\x65leteGlossaryRequest\x12\x37\n\x04name\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!translate.googleapis.com/Glossary\"\x98\x01\n\x15ListGlossariesRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"l\n\x16ListGlossariesResponse\x12\x39\n\nglossaries\x18\x01 \x03(\x0b\x32%.google.cloud.translation.v3.Glossary\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\x88\x02\n\x16\x43reateGlossaryMetadata\x12\x0c\n\x04name\x18\x01 \x01(\t\x12H\n\x05state\x18\x02 \x01(\x0e\x32\x39.google.cloud.translation.v3.CreateGlossaryMetadata.State\x12/\n\x0bsubmit_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"e\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07RUNNING\x10\x01\x12\r\n\tSUCCEEDED\x10\x02\x12\n\n\x06\x46\x41ILED\x10\x03\x12\x0e\n\nCANCELLING\x10\x04\x12\r\n\tCANCELLED\x10\x05\"\x88\x02\n\x16\x44\x65leteGlossaryMetadata\x12\x0c\n\x04name\x18\x01 \x01(\t\x12H\n\x05state\x18\x02 \x01(\x0e\x32\x39.google.cloud.translation.v3.DeleteGlossaryMetadata.State\x12/\n\x0bsubmit_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"e\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07RUNNING\x10\x01\x12\r\n\tSUCCEEDED\x10\x02\x12\n\n\x06\x46\x41ILED\x10\x03\x12\x0e\n\nCANCELLING\x10\x04\x12\r\n\tCANCELLED\x10\x05\"\x85\x01\n\x16\x44\x65leteGlossaryResponse\x12\x0c\n\x04name\x18\x01 \x01(\t\x12/\n\x0bsubmit_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xf9\x06\n\x1d\x42\x61tchTranslateDocumentRequest\x12\x39\n\x06parent\x18\x01 \x01(\tB)\xe0\x41\x02\xfa\x41#\n!locations.googleapis.com/Location\x12!\n\x14source_language_code\x18\x02 \x01(\tB\x03\xe0\x41\x02\x12\"\n\x15target_language_codes\x18\x03 \x03(\tB\x03\xe0\x41\x02\x12Q\n\rinput_configs\x18\x04 \x03(\x0b\x32\x35.google.cloud.translation.v3.BatchDocumentInputConfigB\x03\xe0\x41\x02\x12R\n\routput_config\x18\x05 \x01(\x0b\x32\x36.google.cloud.translation.v3.BatchDocumentOutputConfigB\x03\xe0\x41\x02\x12[\n\x06models\x18\x06 \x03(\x0b\x32\x46.google.cloud.translation.v3.BatchTranslateDocumentRequest.ModelsEntryB\x03\xe0\x41\x01\x12\x63\n\nglossaries\x18\x07 \x03(\x0b\x32J.google.cloud.translation.v3.BatchTranslateDocumentRequest.GlossariesEntryB\x03\xe0\x41\x01\x12r\n\x12\x66ormat_conversions\x18\x08 \x03(\x0b\x32Q.google.cloud.translation.v3.BatchTranslateDocumentRequest.FormatConversionsEntryB\x03\xe0\x41\x01\x12#\n\x16\x63ustomized_attribution\x18\n \x01(\tB\x03\xe0\x41\x01\x1a-\n\x0bModelsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\x1ak\n\x0fGlossariesEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12G\n\x05value\x18\x02 \x01(\x0b\x32\x38.google.cloud.translation.v3.TranslateTextGlossaryConfig:\x02\x38\x01\x1a\x38\n\x16\x46ormatConversionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"b\n\x18\x42\x61tchDocumentInputConfig\x12<\n\ngcs_source\x18\x01 \x01(\x0b\x32&.google.cloud.translation.v3.GcsSourceH\x00\x42\x08\n\x06source\"r\n\x19\x42\x61tchDocumentOutputConfig\x12\x46\n\x0fgcs_destination\x18\x01 \x01(\x0b\x32+.google.cloud.translation.v3.GcsDestinationH\x00\x42\r\n\x0b\x64\x65stination\"\xd9\x02\n\x1e\x42\x61tchTranslateDocumentResponse\x12\x13\n\x0btotal_pages\x18\x01 \x01(\x03\x12\x18\n\x10translated_pages\x18\x02 \x01(\x03\x12\x14\n\x0c\x66\x61iled_pages\x18\x03 \x01(\x03\x12\x1c\n\x14total_billable_pages\x18\x04 \x01(\x03\x12\x18\n\x10total_characters\x18\x05 \x01(\x03\x12\x1d\n\x15translated_characters\x18\x06 \x01(\x03\x12\x19\n\x11\x66\x61iled_characters\x18\x07 \x01(\x03\x12!\n\x19total_billable_characters\x18\x08 \x01(\x03\x12/\n\x0bsubmit_time\x18\t \x01(\x0b\x32\x1a.google.protobuf.Timestamp\x12,\n\x08\x65nd_time\x18\n \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"\xe4\x03\n\x1e\x42\x61tchTranslateDocumentMetadata\x12P\n\x05state\x18\x01 \x01(\x0e\x32\x41.google.cloud.translation.v3.BatchTranslateDocumentMetadata.State\x12\x13\n\x0btotal_pages\x18\x02 \x01(\x03\x12\x18\n\x10translated_pages\x18\x03 \x01(\x03\x12\x14\n\x0c\x66\x61iled_pages\x18\x04 \x01(\x03\x12\x1c\n\x14total_billable_pages\x18\x05 \x01(\x03\x12\x18\n\x10total_characters\x18\x06 \x01(\x03\x12\x1d\n\x15translated_characters\x18\x07 \x01(\x03\x12\x19\n\x11\x66\x61iled_characters\x18\x08 \x01(\x03\x12!\n\x19total_billable_characters\x18\t \x01(\x03\x12/\n\x0bsubmit_time\x18\n \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"e\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07RUNNING\x10\x01\x12\r\n\tSUCCEEDED\x10\x02\x12\n\n\x06\x46\x41ILED\x10\x03\x12\x0e\n\nCANCELLING\x10\x04\x12\r\n\tCANCELLED\x10\x05\x32\xa6\x14\n\x12TranslationService\x12\xd4\x02\n\rTranslateText\x12\x31.google.cloud.translation.v3.TranslateTextRequest\x1a\x32.google.cloud.translation.v3.TranslateTextResponse\"\xdb\x01\x82\xd3\xe4\x93\x02\x62\"1/v3/{parent=projects/*/locations/*}:translateText:\x01*Z*\"%/v3/{parent=projects/*}:translateText:\x01*\xda\x41$parent,target_language_code,contents\xda\x41Iparent,model,mime_type,source_language_code,target_language_code,contents\x12\x87\x02\n\x0e\x44\x65tectLanguage\x12\x32.google.cloud.translation.v3.DetectLanguageRequest\x1a\x33.google.cloud.translation.v3.DetectLanguageResponse\"\x8b\x01\x82\xd3\xe4\x93\x02\x64\"2/v3/{parent=projects/*/locations/*}:detectLanguage:\x01*Z+\"&/v3/{parent=projects/*}:detectLanguage:\x01*\xda\x41\x1eparent,model,mime_type,content\x12\x97\x02\n\x15GetSupportedLanguages\x12\x39.google.cloud.translation.v3.GetSupportedLanguagesRequest\x1a/.google.cloud.translation.v3.SupportedLanguages\"\x91\x01\x82\xd3\xe4\x93\x02\x66\x12\x36/v3/{parent=projects/*/locations/*}/supportedLanguagesZ,\x12*/v3/{parent=projects/*}/supportedLanguages\xda\x41\"parent,model,display_language_code\x12\xc4\x01\n\x11TranslateDocument\x12\x35.google.cloud.translation.v3.TranslateDocumentRequest\x1a\x36.google.cloud.translation.v3.TranslateDocumentResponse\"@\x82\xd3\xe4\x93\x02:\"5/v3/{parent=projects/*/locations/*}:translateDocument:\x01*\x12\xe1\x01\n\x12\x42\x61tchTranslateText\x12\x36.google.cloud.translation.v3.BatchTranslateTextRequest\x1a\x1d.google.longrunning.Operation\"t\x82\xd3\xe4\x93\x02;\"6/v3/{parent=projects/*/locations/*}:batchTranslateText:\x01*\xca\x41\x30\n\x16\x42\x61tchTranslateResponse\x12\x16\x42\x61tchTranslateMetadata\x12\xce\x02\n\x16\x42\x61tchTranslateDocument\x12:.google.cloud.translation.v3.BatchTranslateDocumentRequest\x1a\x1d.google.longrunning.Operation\"\xd8\x01\x82\xd3\xe4\x93\x02?\":/v3/{parent=projects/*/locations/*}:batchTranslateDocument:\x01*\xda\x41Mparent,source_language_code,target_language_codes,input_configs,output_config\xca\x41@\n\x1e\x42\x61tchTranslateDocumentResponse\x12\x1e\x42\x61tchTranslateDocumentMetadata\x12\xdc\x01\n\x0e\x43reateGlossary\x12\x32.google.cloud.translation.v3.CreateGlossaryRequest\x1a\x1d.google.longrunning.Operation\"w\x82\xd3\xe4\x93\x02:\"./v3/{parent=projects/*/locations/*}/glossaries:\x08glossary\xda\x41\x0fparent,glossary\xca\x41\"\n\x08Glossary\x12\x16\x43reateGlossaryMetadata\x12\xba\x01\n\x0eListGlossaries\x12\x32.google.cloud.translation.v3.ListGlossariesRequest\x1a\x33.google.cloud.translation.v3.ListGlossariesResponse\"?\x82\xd3\xe4\x93\x02\x30\x12./v3/{parent=projects/*/locations/*}/glossaries\xda\x41\x06parent\x12\xa4\x01\n\x0bGetGlossary\x12/.google.cloud.translation.v3.GetGlossaryRequest\x1a%.google.cloud.translation.v3.Glossary\"=\x82\xd3\xe4\x93\x02\x30\x12./v3/{name=projects/*/locations/*/glossaries/*}\xda\x41\x04name\x12\xd5\x01\n\x0e\x44\x65leteGlossary\x12\x32.google.cloud.translation.v3.DeleteGlossaryRequest\x1a\x1d.google.longrunning.Operation\"p\x82\xd3\xe4\x93\x02\x30*./v3/{name=projects/*/locations/*/glossaries/*}\xda\x41\x04name\xca\x41\x30\n\x16\x44\x65leteGlossaryResponse\x12\x16\x44\x65leteGlossaryMetadata\x1a~\xca\x41\x18translate.googleapis.com\xd2\x41`https://www.googleapis.com/auth/cloud-platform,https://www.googleapis.com/auth/cloud-translationB\xd1\x01\n\x1d\x63om.google.cloud.translate.v3B\x17TranslationServiceProtoP\x01Z;cloud.google.com/go/translate/apiv3/translatepb;translatepb\xf8\x01\x01\xaa\x02\x19Google.Cloud.Translate.V3\xca\x02\x19Google\\Cloud\\Translate\\V3\xea\x02\x1cGoogle::Cloud::Translate::V3b\x06proto3"
|
|
16
|
+
|
|
17
|
+
pool = Google::Protobuf::DescriptorPool.generated_pool
|
|
18
|
+
|
|
19
|
+
begin
|
|
20
|
+
pool.add_serialized_file(descriptor_data)
|
|
21
|
+
rescue TypeError => e
|
|
22
|
+
# Compatibility code: will be removed in the next major version.
|
|
23
|
+
require 'google/protobuf/descriptor_pb'
|
|
24
|
+
parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
|
|
25
|
+
parsed.clear_dependency
|
|
26
|
+
serialized = parsed.class.encode(parsed)
|
|
27
|
+
file = pool.add_serialized_file(serialized)
|
|
28
|
+
warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
|
|
29
|
+
imports = [
|
|
30
|
+
["google.protobuf.Timestamp", "google/protobuf/timestamp.proto"],
|
|
31
|
+
]
|
|
32
|
+
imports.each do |type_name, expected_filename|
|
|
33
|
+
import_file = pool.lookup(type_name).file_descriptor
|
|
34
|
+
if import_file.name != expected_filename
|
|
35
|
+
warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
|
|
282
36
|
end
|
|
283
37
|
end
|
|
38
|
+
warn "Each proto file must use a consistent fully-qualified name."
|
|
39
|
+
warn "This will become an error in the next major version."
|
|
284
40
|
end
|
|
285
41
|
|
|
286
42
|
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-translate-v3
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 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
|
|
@@ -219,5 +219,5 @@ requirements: []
|
|
|
219
219
|
rubygems_version: 3.4.2
|
|
220
220
|
signing_key:
|
|
221
221
|
specification_version: 4
|
|
222
|
-
summary:
|
|
222
|
+
summary: Integrates text translation into your website or application.
|
|
223
223
|
test_files: []
|