google-cloud-language-v1 0.7.0 → 0.8.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: abb61f0c742d5cad958648c8dd75ecdef4df43c0c300e04790cfb8d8c4817aa1
4
- data.tar.gz: 1b653cb913255b96aacd5b13238ee3f3cd45db0335d9a10ec06e37cc68aa2b3f
3
+ metadata.gz: 57b3621633efdcf5ed36ae27fa2c760b8d9eef4a80cf5673d987eef5bae262f3
4
+ data.tar.gz: b5a70cc8b6a46cf0d2b4755217fa3132245a4c8316c68f580b39bba423f963ec
5
5
  SHA512:
6
- metadata.gz: 3bef382fad9261f0becff13664607ac7a40d84d4df3468fe5ac7151457a4f2f6773c4d1855a4b477b134caaf934b63ea3608b0fc8edf9ef4defaebd6192c55c7
7
- data.tar.gz: 8acc473da3977fe26bb0ddecc0294355e2fe1b48b486072ee0f0572d35f039457d45fe7693327b89b48d6a4b19edc2dc048d051861bbc6b2e02c02d3923686a3
6
+ metadata.gz: c5cca96d308085f9653821e4293a4e64f8fa502bc5530321a8b801eabb034612e20926faeb5e0d81f5b62fd19546699577898b50e8270048063b9a3ff6091ce5
7
+ data.tar.gz: 1cb0ae3259d58e2eb469a0f25a7887eeef778656a970d8699ad7fd4b5167ff9fce8f72712c0768b0032d7919aa8da3feb1e4541060420dc931997e342dd7bd90
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Ruby Client for the Natural Language V1 API
2
2
 
3
- API Client library for the Natural Language V1 API
3
+ Provides natural language understanding technologies, such as sentiment analysis, entity recognition, entity sentiment analysis, and other text annotations, to developers.
4
4
 
5
5
  Provides natural language understanding technologies, such as sentiment analysis, entity recognition, entity sentiment analysis, and other text annotations.
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://googleapis.dev/ruby/google-cloud-logging/latest)
50
+ or a [`Google::Cloud::Logging::Logger`](https://cloud.google.com/ruby/docs/reference/google-cloud-logging/latest)
51
51
  that will write logs to [Cloud Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
52
52
  and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
53
53
 
@@ -334,8 +334,10 @@ module Google
334
334
  end
335
335
 
336
336
  ##
337
- # Finds entities, similar to {::Google::Cloud::Language::V1::LanguageService::Client#analyze_entities AnalyzeEntities} in the text and analyzes
338
- # sentiment associated with each entity and its mentions.
337
+ # Finds entities, similar to
338
+ # {::Google::Cloud::Language::V1::LanguageService::Client#analyze_entities AnalyzeEntities}
339
+ # in the text and analyzes sentiment associated with each entity and its
340
+ # mentions.
339
341
  #
340
342
  # @overload analyze_entity_sentiment(request, options = nil)
341
343
  # Pass arguments to `analyze_entity_sentiment` via a request object, either of type
@@ -574,6 +576,83 @@ module Google
574
576
  raise ::Google::Cloud::Error.from_error(e)
575
577
  end
576
578
 
579
+ ##
580
+ # Moderates a document for harmful and sensitive categories.
581
+ #
582
+ # @overload moderate_text(request, options = nil)
583
+ # Pass arguments to `moderate_text` via a request object, either of type
584
+ # {::Google::Cloud::Language::V1::ModerateTextRequest} or an equivalent Hash.
585
+ #
586
+ # @param request [::Google::Cloud::Language::V1::ModerateTextRequest, ::Hash]
587
+ # A request object representing the call parameters. Required. To specify no
588
+ # parameters, or to keep all the default parameter values, pass an empty Hash.
589
+ # @param options [::Gapic::CallOptions, ::Hash]
590
+ # Overrides the default settings for this call, e.g, timeout, retries, etc. Optional.
591
+ #
592
+ # @overload moderate_text(document: nil)
593
+ # Pass arguments to `moderate_text` via keyword arguments. Note that at
594
+ # least one keyword argument is required. To specify no parameters, or to keep all
595
+ # the default parameter values, pass an empty Hash as a request object (see above).
596
+ #
597
+ # @param document [::Google::Cloud::Language::V1::Document, ::Hash]
598
+ # Required. Input document.
599
+ #
600
+ # @yield [response, operation] Access the result along with the RPC operation
601
+ # @yieldparam response [::Google::Cloud::Language::V1::ModerateTextResponse]
602
+ # @yieldparam operation [::GRPC::ActiveCall::Operation]
603
+ #
604
+ # @return [::Google::Cloud::Language::V1::ModerateTextResponse]
605
+ #
606
+ # @raise [::Google::Cloud::Error] if the RPC is aborted.
607
+ #
608
+ # @example Basic example
609
+ # require "google/cloud/language/v1"
610
+ #
611
+ # # Create a client object. The client can be reused for multiple calls.
612
+ # client = Google::Cloud::Language::V1::LanguageService::Client.new
613
+ #
614
+ # # Create a request. To set request fields, pass in keyword arguments.
615
+ # request = Google::Cloud::Language::V1::ModerateTextRequest.new
616
+ #
617
+ # # Call the moderate_text method.
618
+ # result = client.moderate_text request
619
+ #
620
+ # # The returned object is of type Google::Cloud::Language::V1::ModerateTextResponse.
621
+ # p result
622
+ #
623
+ def moderate_text request, options = nil
624
+ raise ::ArgumentError, "request must be provided" if request.nil?
625
+
626
+ request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::Language::V1::ModerateTextRequest
627
+
628
+ # Converts hash and nil to an options object
629
+ options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
630
+
631
+ # Customize the options with defaults
632
+ metadata = @config.rpcs.moderate_text.metadata.to_h
633
+
634
+ # Set x-goog-api-client and x-goog-user-project headers
635
+ metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
636
+ lib_name: @config.lib_name, lib_version: @config.lib_version,
637
+ gapic_version: ::Google::Cloud::Language::V1::VERSION
638
+ metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
639
+
640
+ options.apply_defaults timeout: @config.rpcs.moderate_text.timeout,
641
+ metadata: metadata,
642
+ retry_policy: @config.rpcs.moderate_text.retry_policy
643
+
644
+ options.apply_defaults timeout: @config.timeout,
645
+ metadata: @config.metadata,
646
+ retry_policy: @config.retry_policy
647
+
648
+ @language_service_stub.call_rpc :moderate_text, request, options: options do |response, operation|
649
+ yield response, operation if block_given?
650
+ return response
651
+ end
652
+ rescue ::GRPC::BadStatus => e
653
+ raise ::Google::Cloud::Error.from_error(e)
654
+ end
655
+
577
656
  ##
578
657
  # A convenience method that provides all the features that analyzeSentiment,
579
658
  # analyzeEntities, and analyzeSyntax provide in one call.
@@ -694,9 +773,9 @@ module Google
694
773
  # * (`String`) The path to a service account key file in JSON format
695
774
  # * (`Hash`) A service account key as a Hash
696
775
  # * (`Google::Auth::Credentials`) A googleauth credentials object
697
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
776
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
698
777
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
699
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
778
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
700
779
  # * (`GRPC::Core::Channel`) a gRPC channel with included credentials
701
780
  # * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
702
781
  # * (`nil`) indicating no credentials
@@ -817,6 +896,11 @@ module Google
817
896
  #
818
897
  attr_reader :classify_text
819
898
  ##
899
+ # RPC-specific configuration for `moderate_text`
900
+ # @return [::Gapic::Config::Method]
901
+ #
902
+ attr_reader :moderate_text
903
+ ##
820
904
  # RPC-specific configuration for `annotate_text`
821
905
  # @return [::Gapic::Config::Method]
822
906
  #
@@ -834,6 +918,8 @@ module Google
834
918
  @analyze_syntax = ::Gapic::Config::Method.new analyze_syntax_config
835
919
  classify_text_config = parent_rpcs.classify_text if parent_rpcs.respond_to? :classify_text
836
920
  @classify_text = ::Gapic::Config::Method.new classify_text_config
921
+ moderate_text_config = parent_rpcs.moderate_text if parent_rpcs.respond_to? :moderate_text
922
+ @moderate_text = ::Gapic::Config::Method.new moderate_text_config
837
923
  annotate_text_config = parent_rpcs.annotate_text if parent_rpcs.respond_to? :annotate_text
838
924
  @annotate_text = ::Gapic::Config::Method.new annotate_text_config
839
925
 
@@ -295,8 +295,10 @@ module Google
295
295
  end
296
296
 
297
297
  ##
298
- # Finds entities, similar to {::Google::Cloud::Language::V1::LanguageService::Rest::Client#analyze_entities AnalyzeEntities} in the text and analyzes
299
- # sentiment associated with each entity and its mentions.
298
+ # Finds entities, similar to
299
+ # {::Google::Cloud::Language::V1::LanguageService::Rest::Client#analyze_entities AnalyzeEntities}
300
+ # in the text and analyzes sentiment associated with each entity and its
301
+ # mentions.
300
302
  #
301
303
  # @overload analyze_entity_sentiment(request, options = nil)
302
304
  # Pass arguments to `analyze_entity_sentiment` via a request object, either of type
@@ -490,6 +492,68 @@ module Google
490
492
  raise ::Google::Cloud::Error.from_error(e)
491
493
  end
492
494
 
495
+ ##
496
+ # Moderates a document for harmful and sensitive categories.
497
+ #
498
+ # @overload moderate_text(request, options = nil)
499
+ # Pass arguments to `moderate_text` via a request object, either of type
500
+ # {::Google::Cloud::Language::V1::ModerateTextRequest} or an equivalent Hash.
501
+ #
502
+ # @param request [::Google::Cloud::Language::V1::ModerateTextRequest, ::Hash]
503
+ # A request object representing the call parameters. Required. To specify no
504
+ # parameters, or to keep all the default parameter values, pass an empty Hash.
505
+ # @param options [::Gapic::CallOptions, ::Hash]
506
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
507
+ #
508
+ # @overload moderate_text(document: nil)
509
+ # Pass arguments to `moderate_text` via keyword arguments. Note that at
510
+ # least one keyword argument is required. To specify no parameters, or to keep all
511
+ # the default parameter values, pass an empty Hash as a request object (see above).
512
+ #
513
+ # @param document [::Google::Cloud::Language::V1::Document, ::Hash]
514
+ # Required. Input document.
515
+ # @yield [result, operation] Access the result along with the TransportOperation object
516
+ # @yieldparam result [::Google::Cloud::Language::V1::ModerateTextResponse]
517
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
518
+ #
519
+ # @return [::Google::Cloud::Language::V1::ModerateTextResponse]
520
+ #
521
+ # @raise [::Google::Cloud::Error] if the REST call is aborted.
522
+ def moderate_text request, options = nil
523
+ raise ::ArgumentError, "request must be provided" if request.nil?
524
+
525
+ request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::Language::V1::ModerateTextRequest
526
+
527
+ # Converts hash and nil to an options object
528
+ options = ::Gapic::CallOptions.new(**options.to_h) if options.respond_to? :to_h
529
+
530
+ # Customize the options with defaults
531
+ call_metadata = @config.rpcs.moderate_text.metadata.to_h
532
+
533
+ # Set x-goog-api-client and x-goog-user-project headers
534
+ call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
535
+ lib_name: @config.lib_name, lib_version: @config.lib_version,
536
+ gapic_version: ::Google::Cloud::Language::V1::VERSION,
537
+ transports_version_send: [:rest]
538
+
539
+ call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
540
+
541
+ options.apply_defaults timeout: @config.rpcs.moderate_text.timeout,
542
+ metadata: call_metadata,
543
+ retry_policy: @config.rpcs.moderate_text.retry_policy
544
+
545
+ options.apply_defaults timeout: @config.timeout,
546
+ metadata: @config.metadata,
547
+ retry_policy: @config.retry_policy
548
+
549
+ @language_service_stub.moderate_text request, options do |result, operation|
550
+ yield result, operation if block_given?
551
+ return result
552
+ end
553
+ rescue ::Gapic::Rest::Error => e
554
+ raise ::Google::Cloud::Error.from_error(e)
555
+ end
556
+
493
557
  ##
494
558
  # A convenience method that provides all the features that analyzeSentiment,
495
559
  # analyzeEntities, and analyzeSyntax provide in one call.
@@ -595,9 +659,9 @@ module Google
595
659
  # * (`String`) The path to a service account key file in JSON format
596
660
  # * (`Hash`) A service account key as a Hash
597
661
  # * (`Google::Auth::Credentials`) A googleauth credentials object
598
- # (see the [googleauth docs](https://googleapis.dev/ruby/googleauth/latest/index.html))
662
+ # (see the [googleauth docs](https://rubydoc.info/gems/googleauth/Google/Auth/Credentials))
599
663
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
600
- # (see the [signet docs](https://googleapis.dev/ruby/signet/latest/Signet/OAuth2/Client.html))
664
+ # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
601
665
  # * (`nil`) indicating no credentials
602
666
  # @return [::Object]
603
667
  # @!attribute [rw] scope
@@ -706,6 +770,11 @@ module Google
706
770
  #
707
771
  attr_reader :classify_text
708
772
  ##
773
+ # RPC-specific configuration for `moderate_text`
774
+ # @return [::Gapic::Config::Method]
775
+ #
776
+ attr_reader :moderate_text
777
+ ##
709
778
  # RPC-specific configuration for `annotate_text`
710
779
  # @return [::Gapic::Config::Method]
711
780
  #
@@ -723,6 +792,8 @@ module Google
723
792
  @analyze_syntax = ::Gapic::Config::Method.new analyze_syntax_config
724
793
  classify_text_config = parent_rpcs.classify_text if parent_rpcs.respond_to? :classify_text
725
794
  @classify_text = ::Gapic::Config::Method.new classify_text_config
795
+ moderate_text_config = parent_rpcs.moderate_text if parent_rpcs.respond_to? :moderate_text
796
+ @moderate_text = ::Gapic::Config::Method.new moderate_text_config
726
797
  annotate_text_config = parent_rpcs.annotate_text if parent_rpcs.respond_to? :annotate_text
727
798
  @annotate_text = ::Gapic::Config::Method.new annotate_text_config
728
799
 
@@ -230,6 +230,44 @@ module Google
230
230
  result
231
231
  end
232
232
 
233
+ ##
234
+ # Baseline implementation for the moderate_text REST call
235
+ #
236
+ # @param request_pb [::Google::Cloud::Language::V1::ModerateTextRequest]
237
+ # A request object representing the call parameters. Required.
238
+ # @param options [::Gapic::CallOptions]
239
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
240
+ #
241
+ # @yield [result, operation] Access the result along with the TransportOperation object
242
+ # @yieldparam result [::Google::Cloud::Language::V1::ModerateTextResponse]
243
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
244
+ #
245
+ # @return [::Google::Cloud::Language::V1::ModerateTextResponse]
246
+ # A result object deserialized from the server's reply
247
+ def moderate_text request_pb, options = nil
248
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
249
+
250
+ verb, uri, query_string_params, body = ServiceStub.transcode_moderate_text_request request_pb
251
+ query_string_params = if query_string_params.any?
252
+ query_string_params.to_h { |p| p.split("=", 2) }
253
+ else
254
+ {}
255
+ end
256
+
257
+ response = @client_stub.make_http_request(
258
+ verb,
259
+ uri: uri,
260
+ body: body || "",
261
+ params: query_string_params,
262
+ options: options
263
+ )
264
+ operation = ::Gapic::Rest::TransportOperation.new response
265
+ result = ::Google::Cloud::Language::V1::ModerateTextResponse.decode_json response.body, ignore_unknown_fields: true
266
+
267
+ yield result, operation if block_given?
268
+ result
269
+ end
270
+
233
271
  ##
234
272
  # Baseline implementation for the annotate_text REST call
235
273
  #
@@ -368,6 +406,26 @@ module Google
368
406
  transcoder.transcode request_pb
369
407
  end
370
408
 
409
+ ##
410
+ # @private
411
+ #
412
+ # GRPC transcoding helper method for the moderate_text REST call
413
+ #
414
+ # @param request_pb [::Google::Cloud::Language::V1::ModerateTextRequest]
415
+ # A request object representing the call parameters. Required.
416
+ # @return [Array(String, [String, nil], Hash{String => String})]
417
+ # Uri, Body, Query string parameters
418
+ def self.transcode_moderate_text_request request_pb
419
+ transcoder = Gapic::Rest::GrpcTranscoder.new
420
+ .with_bindings(
421
+ uri_method: :post,
422
+ uri_template: "/v1/documents:moderateText",
423
+ body: "*",
424
+ matches: []
425
+ )
426
+ transcoder.transcode request_pb
427
+ end
428
+
371
429
  ##
372
430
  # @private
373
431
  #
@@ -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/language/v1/language_service.proto
3
4
 
@@ -7,370 +8,31 @@ require 'google/api/annotations_pb'
7
8
  require 'google/api/client_pb'
8
9
  require 'google/api/field_behavior_pb'
9
10
 
10
- Google::Protobuf::DescriptorPool.generated_pool.build do
11
- add_file("google/cloud/language/v1/language_service.proto", :syntax => :proto3) do
12
- add_message "google.cloud.language.v1.Document" do
13
- optional :type, :enum, 1, "google.cloud.language.v1.Document.Type"
14
- optional :language, :string, 4
15
- oneof :source do
16
- optional :content, :string, 2
17
- optional :gcs_content_uri, :string, 3
18
- end
19
- end
20
- add_enum "google.cloud.language.v1.Document.Type" do
21
- value :TYPE_UNSPECIFIED, 0
22
- value :PLAIN_TEXT, 1
23
- value :HTML, 2
24
- end
25
- add_message "google.cloud.language.v1.Sentence" do
26
- optional :text, :message, 1, "google.cloud.language.v1.TextSpan"
27
- optional :sentiment, :message, 2, "google.cloud.language.v1.Sentiment"
28
- end
29
- add_message "google.cloud.language.v1.Entity" do
30
- optional :name, :string, 1
31
- optional :type, :enum, 2, "google.cloud.language.v1.Entity.Type"
32
- map :metadata, :string, :string, 3
33
- optional :salience, :float, 4
34
- repeated :mentions, :message, 5, "google.cloud.language.v1.EntityMention"
35
- optional :sentiment, :message, 6, "google.cloud.language.v1.Sentiment"
36
- end
37
- add_enum "google.cloud.language.v1.Entity.Type" do
38
- value :UNKNOWN, 0
39
- value :PERSON, 1
40
- value :LOCATION, 2
41
- value :ORGANIZATION, 3
42
- value :EVENT, 4
43
- value :WORK_OF_ART, 5
44
- value :CONSUMER_GOOD, 6
45
- value :OTHER, 7
46
- value :PHONE_NUMBER, 9
47
- value :ADDRESS, 10
48
- value :DATE, 11
49
- value :NUMBER, 12
50
- value :PRICE, 13
51
- end
52
- add_message "google.cloud.language.v1.Token" do
53
- optional :text, :message, 1, "google.cloud.language.v1.TextSpan"
54
- optional :part_of_speech, :message, 2, "google.cloud.language.v1.PartOfSpeech"
55
- optional :dependency_edge, :message, 3, "google.cloud.language.v1.DependencyEdge"
56
- optional :lemma, :string, 4
57
- end
58
- add_message "google.cloud.language.v1.Sentiment" do
59
- optional :magnitude, :float, 2
60
- optional :score, :float, 3
61
- end
62
- add_message "google.cloud.language.v1.PartOfSpeech" do
63
- optional :tag, :enum, 1, "google.cloud.language.v1.PartOfSpeech.Tag"
64
- optional :aspect, :enum, 2, "google.cloud.language.v1.PartOfSpeech.Aspect"
65
- optional :case, :enum, 3, "google.cloud.language.v1.PartOfSpeech.Case"
66
- optional :form, :enum, 4, "google.cloud.language.v1.PartOfSpeech.Form"
67
- optional :gender, :enum, 5, "google.cloud.language.v1.PartOfSpeech.Gender"
68
- optional :mood, :enum, 6, "google.cloud.language.v1.PartOfSpeech.Mood"
69
- optional :number, :enum, 7, "google.cloud.language.v1.PartOfSpeech.Number"
70
- optional :person, :enum, 8, "google.cloud.language.v1.PartOfSpeech.Person"
71
- optional :proper, :enum, 9, "google.cloud.language.v1.PartOfSpeech.Proper"
72
- optional :reciprocity, :enum, 10, "google.cloud.language.v1.PartOfSpeech.Reciprocity"
73
- optional :tense, :enum, 11, "google.cloud.language.v1.PartOfSpeech.Tense"
74
- optional :voice, :enum, 12, "google.cloud.language.v1.PartOfSpeech.Voice"
75
- end
76
- add_enum "google.cloud.language.v1.PartOfSpeech.Tag" do
77
- value :UNKNOWN, 0
78
- value :ADJ, 1
79
- value :ADP, 2
80
- value :ADV, 3
81
- value :CONJ, 4
82
- value :DET, 5
83
- value :NOUN, 6
84
- value :NUM, 7
85
- value :PRON, 8
86
- value :PRT, 9
87
- value :PUNCT, 10
88
- value :VERB, 11
89
- value :X, 12
90
- value :AFFIX, 13
91
- end
92
- add_enum "google.cloud.language.v1.PartOfSpeech.Aspect" do
93
- value :ASPECT_UNKNOWN, 0
94
- value :PERFECTIVE, 1
95
- value :IMPERFECTIVE, 2
96
- value :PROGRESSIVE, 3
97
- end
98
- add_enum "google.cloud.language.v1.PartOfSpeech.Case" do
99
- value :CASE_UNKNOWN, 0
100
- value :ACCUSATIVE, 1
101
- value :ADVERBIAL, 2
102
- value :COMPLEMENTIVE, 3
103
- value :DATIVE, 4
104
- value :GENITIVE, 5
105
- value :INSTRUMENTAL, 6
106
- value :LOCATIVE, 7
107
- value :NOMINATIVE, 8
108
- value :OBLIQUE, 9
109
- value :PARTITIVE, 10
110
- value :PREPOSITIONAL, 11
111
- value :REFLEXIVE_CASE, 12
112
- value :RELATIVE_CASE, 13
113
- value :VOCATIVE, 14
114
- end
115
- add_enum "google.cloud.language.v1.PartOfSpeech.Form" do
116
- value :FORM_UNKNOWN, 0
117
- value :ADNOMIAL, 1
118
- value :AUXILIARY, 2
119
- value :COMPLEMENTIZER, 3
120
- value :FINAL_ENDING, 4
121
- value :GERUND, 5
122
- value :REALIS, 6
123
- value :IRREALIS, 7
124
- value :SHORT, 8
125
- value :LONG, 9
126
- value :ORDER, 10
127
- value :SPECIFIC, 11
128
- end
129
- add_enum "google.cloud.language.v1.PartOfSpeech.Gender" do
130
- value :GENDER_UNKNOWN, 0
131
- value :FEMININE, 1
132
- value :MASCULINE, 2
133
- value :NEUTER, 3
134
- end
135
- add_enum "google.cloud.language.v1.PartOfSpeech.Mood" do
136
- value :MOOD_UNKNOWN, 0
137
- value :CONDITIONAL_MOOD, 1
138
- value :IMPERATIVE, 2
139
- value :INDICATIVE, 3
140
- value :INTERROGATIVE, 4
141
- value :JUSSIVE, 5
142
- value :SUBJUNCTIVE, 6
143
- end
144
- add_enum "google.cloud.language.v1.PartOfSpeech.Number" do
145
- value :NUMBER_UNKNOWN, 0
146
- value :SINGULAR, 1
147
- value :PLURAL, 2
148
- value :DUAL, 3
149
- end
150
- add_enum "google.cloud.language.v1.PartOfSpeech.Person" do
151
- value :PERSON_UNKNOWN, 0
152
- value :FIRST, 1
153
- value :SECOND, 2
154
- value :THIRD, 3
155
- value :REFLEXIVE_PERSON, 4
156
- end
157
- add_enum "google.cloud.language.v1.PartOfSpeech.Proper" do
158
- value :PROPER_UNKNOWN, 0
159
- value :PROPER, 1
160
- value :NOT_PROPER, 2
161
- end
162
- add_enum "google.cloud.language.v1.PartOfSpeech.Reciprocity" do
163
- value :RECIPROCITY_UNKNOWN, 0
164
- value :RECIPROCAL, 1
165
- value :NON_RECIPROCAL, 2
166
- end
167
- add_enum "google.cloud.language.v1.PartOfSpeech.Tense" do
168
- value :TENSE_UNKNOWN, 0
169
- value :CONDITIONAL_TENSE, 1
170
- value :FUTURE, 2
171
- value :PAST, 3
172
- value :PRESENT, 4
173
- value :IMPERFECT, 5
174
- value :PLUPERFECT, 6
175
- end
176
- add_enum "google.cloud.language.v1.PartOfSpeech.Voice" do
177
- value :VOICE_UNKNOWN, 0
178
- value :ACTIVE, 1
179
- value :CAUSATIVE, 2
180
- value :PASSIVE, 3
181
- end
182
- add_message "google.cloud.language.v1.DependencyEdge" do
183
- optional :head_token_index, :int32, 1
184
- optional :label, :enum, 2, "google.cloud.language.v1.DependencyEdge.Label"
185
- end
186
- add_enum "google.cloud.language.v1.DependencyEdge.Label" do
187
- value :UNKNOWN, 0
188
- value :ABBREV, 1
189
- value :ACOMP, 2
190
- value :ADVCL, 3
191
- value :ADVMOD, 4
192
- value :AMOD, 5
193
- value :APPOS, 6
194
- value :ATTR, 7
195
- value :AUX, 8
196
- value :AUXPASS, 9
197
- value :CC, 10
198
- value :CCOMP, 11
199
- value :CONJ, 12
200
- value :CSUBJ, 13
201
- value :CSUBJPASS, 14
202
- value :DEP, 15
203
- value :DET, 16
204
- value :DISCOURSE, 17
205
- value :DOBJ, 18
206
- value :EXPL, 19
207
- value :GOESWITH, 20
208
- value :IOBJ, 21
209
- value :MARK, 22
210
- value :MWE, 23
211
- value :MWV, 24
212
- value :NEG, 25
213
- value :NN, 26
214
- value :NPADVMOD, 27
215
- value :NSUBJ, 28
216
- value :NSUBJPASS, 29
217
- value :NUM, 30
218
- value :NUMBER, 31
219
- value :P, 32
220
- value :PARATAXIS, 33
221
- value :PARTMOD, 34
222
- value :PCOMP, 35
223
- value :POBJ, 36
224
- value :POSS, 37
225
- value :POSTNEG, 38
226
- value :PRECOMP, 39
227
- value :PRECONJ, 40
228
- value :PREDET, 41
229
- value :PREF, 42
230
- value :PREP, 43
231
- value :PRONL, 44
232
- value :PRT, 45
233
- value :PS, 46
234
- value :QUANTMOD, 47
235
- value :RCMOD, 48
236
- value :RCMODREL, 49
237
- value :RDROP, 50
238
- value :REF, 51
239
- value :REMNANT, 52
240
- value :REPARANDUM, 53
241
- value :ROOT, 54
242
- value :SNUM, 55
243
- value :SUFF, 56
244
- value :TMOD, 57
245
- value :TOPIC, 58
246
- value :VMOD, 59
247
- value :VOCATIVE, 60
248
- value :XCOMP, 61
249
- value :SUFFIX, 62
250
- value :TITLE, 63
251
- value :ADVPHMOD, 64
252
- value :AUXCAUS, 65
253
- value :AUXVV, 66
254
- value :DTMOD, 67
255
- value :FOREIGN, 68
256
- value :KW, 69
257
- value :LIST, 70
258
- value :NOMC, 71
259
- value :NOMCSUBJ, 72
260
- value :NOMCSUBJPASS, 73
261
- value :NUMC, 74
262
- value :COP, 75
263
- value :DISLOCATED, 76
264
- value :ASP, 77
265
- value :GMOD, 78
266
- value :GOBJ, 79
267
- value :INFMOD, 80
268
- value :MES, 81
269
- value :NCOMP, 82
270
- end
271
- add_message "google.cloud.language.v1.EntityMention" do
272
- optional :text, :message, 1, "google.cloud.language.v1.TextSpan"
273
- optional :type, :enum, 2, "google.cloud.language.v1.EntityMention.Type"
274
- optional :sentiment, :message, 3, "google.cloud.language.v1.Sentiment"
275
- end
276
- add_enum "google.cloud.language.v1.EntityMention.Type" do
277
- value :TYPE_UNKNOWN, 0
278
- value :PROPER, 1
279
- value :COMMON, 2
280
- end
281
- add_message "google.cloud.language.v1.TextSpan" do
282
- optional :content, :string, 1
283
- optional :begin_offset, :int32, 2
284
- end
285
- add_message "google.cloud.language.v1.ClassificationCategory" do
286
- optional :name, :string, 1
287
- optional :confidence, :float, 2
288
- end
289
- add_message "google.cloud.language.v1.ClassificationModelOptions" do
290
- oneof :model_type do
291
- optional :v1_model, :message, 1, "google.cloud.language.v1.ClassificationModelOptions.V1Model"
292
- optional :v2_model, :message, 2, "google.cloud.language.v1.ClassificationModelOptions.V2Model"
293
- end
294
- end
295
- add_message "google.cloud.language.v1.ClassificationModelOptions.V1Model" do
296
- end
297
- add_message "google.cloud.language.v1.ClassificationModelOptions.V2Model" do
298
- optional :content_categories_version, :enum, 1, "google.cloud.language.v1.ClassificationModelOptions.V2Model.ContentCategoriesVersion"
299
- end
300
- add_enum "google.cloud.language.v1.ClassificationModelOptions.V2Model.ContentCategoriesVersion" do
301
- value :CONTENT_CATEGORIES_VERSION_UNSPECIFIED, 0
302
- value :V1, 1
303
- value :V2, 2
304
- end
305
- add_message "google.cloud.language.v1.AnalyzeSentimentRequest" do
306
- optional :document, :message, 1, "google.cloud.language.v1.Document"
307
- optional :encoding_type, :enum, 2, "google.cloud.language.v1.EncodingType"
308
- end
309
- add_message "google.cloud.language.v1.AnalyzeSentimentResponse" do
310
- optional :document_sentiment, :message, 1, "google.cloud.language.v1.Sentiment"
311
- optional :language, :string, 2
312
- repeated :sentences, :message, 3, "google.cloud.language.v1.Sentence"
313
- end
314
- add_message "google.cloud.language.v1.AnalyzeEntitySentimentRequest" do
315
- optional :document, :message, 1, "google.cloud.language.v1.Document"
316
- optional :encoding_type, :enum, 2, "google.cloud.language.v1.EncodingType"
317
- end
318
- add_message "google.cloud.language.v1.AnalyzeEntitySentimentResponse" do
319
- repeated :entities, :message, 1, "google.cloud.language.v1.Entity"
320
- optional :language, :string, 2
321
- end
322
- add_message "google.cloud.language.v1.AnalyzeEntitiesRequest" do
323
- optional :document, :message, 1, "google.cloud.language.v1.Document"
324
- optional :encoding_type, :enum, 2, "google.cloud.language.v1.EncodingType"
325
- end
326
- add_message "google.cloud.language.v1.AnalyzeEntitiesResponse" do
327
- repeated :entities, :message, 1, "google.cloud.language.v1.Entity"
328
- optional :language, :string, 2
329
- end
330
- add_message "google.cloud.language.v1.AnalyzeSyntaxRequest" do
331
- optional :document, :message, 1, "google.cloud.language.v1.Document"
332
- optional :encoding_type, :enum, 2, "google.cloud.language.v1.EncodingType"
333
- end
334
- add_message "google.cloud.language.v1.AnalyzeSyntaxResponse" do
335
- repeated :sentences, :message, 1, "google.cloud.language.v1.Sentence"
336
- repeated :tokens, :message, 2, "google.cloud.language.v1.Token"
337
- optional :language, :string, 3
338
- end
339
- add_message "google.cloud.language.v1.ClassifyTextRequest" do
340
- optional :document, :message, 1, "google.cloud.language.v1.Document"
341
- optional :classification_model_options, :message, 3, "google.cloud.language.v1.ClassificationModelOptions"
342
- end
343
- add_message "google.cloud.language.v1.ClassifyTextResponse" do
344
- repeated :categories, :message, 1, "google.cloud.language.v1.ClassificationCategory"
345
- end
346
- add_message "google.cloud.language.v1.AnnotateTextRequest" do
347
- optional :document, :message, 1, "google.cloud.language.v1.Document"
348
- optional :features, :message, 2, "google.cloud.language.v1.AnnotateTextRequest.Features"
349
- optional :encoding_type, :enum, 3, "google.cloud.language.v1.EncodingType"
350
- end
351
- add_message "google.cloud.language.v1.AnnotateTextRequest.Features" do
352
- optional :extract_syntax, :bool, 1
353
- optional :extract_entities, :bool, 2
354
- optional :extract_document_sentiment, :bool, 3
355
- optional :extract_entity_sentiment, :bool, 4
356
- optional :classify_text, :bool, 6
357
- optional :classification_model_options, :message, 10, "google.cloud.language.v1.ClassificationModelOptions"
358
- end
359
- add_message "google.cloud.language.v1.AnnotateTextResponse" do
360
- repeated :sentences, :message, 1, "google.cloud.language.v1.Sentence"
361
- repeated :tokens, :message, 2, "google.cloud.language.v1.Token"
362
- repeated :entities, :message, 3, "google.cloud.language.v1.Entity"
363
- optional :document_sentiment, :message, 4, "google.cloud.language.v1.Sentiment"
364
- optional :language, :string, 5
365
- repeated :categories, :message, 6, "google.cloud.language.v1.ClassificationCategory"
366
- end
367
- add_enum "google.cloud.language.v1.EncodingType" do
368
- value :NONE, 0
369
- value :UTF8, 1
370
- value :UTF16, 2
371
- value :UTF32, 3
11
+
12
+ descriptor_data = "\n/google/cloud/language/v1/language_service.proto\x12\x18google.cloud.language.v1\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\"\xc3\x01\n\x08\x44ocument\x12\x35\n\x04type\x18\x01 \x01(\x0e\x32\'.google.cloud.language.v1.Document.Type\x12\x11\n\x07\x63ontent\x18\x02 \x01(\tH\x00\x12\x19\n\x0fgcs_content_uri\x18\x03 \x01(\tH\x00\x12\x10\n\x08language\x18\x04 \x01(\t\"6\n\x04Type\x12\x14\n\x10TYPE_UNSPECIFIED\x10\x00\x12\x0e\n\nPLAIN_TEXT\x10\x01\x12\x08\n\x04HTML\x10\x02\x42\x08\n\x06source\"t\n\x08Sentence\x12\x30\n\x04text\x18\x01 \x01(\x0b\x32\".google.cloud.language.v1.TextSpan\x12\x36\n\tsentiment\x18\x02 \x01(\x0b\x32#.google.cloud.language.v1.Sentiment\"\xff\x03\n\x06\x45ntity\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x33\n\x04type\x18\x02 \x01(\x0e\x32%.google.cloud.language.v1.Entity.Type\x12@\n\x08metadata\x18\x03 \x03(\x0b\x32..google.cloud.language.v1.Entity.MetadataEntry\x12\x10\n\x08salience\x18\x04 \x01(\x02\x12\x39\n\x08mentions\x18\x05 \x03(\x0b\x32\'.google.cloud.language.v1.EntityMention\x12\x36\n\tsentiment\x18\x06 \x01(\x0b\x32#.google.cloud.language.v1.Sentiment\x1a/\n\rMetadataEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\r\n\x05value\x18\x02 \x01(\t:\x02\x38\x01\"\xb9\x01\n\x04Type\x12\x0b\n\x07UNKNOWN\x10\x00\x12\n\n\x06PERSON\x10\x01\x12\x0c\n\x08LOCATION\x10\x02\x12\x10\n\x0cORGANIZATION\x10\x03\x12\t\n\x05\x45VENT\x10\x04\x12\x0f\n\x0bWORK_OF_ART\x10\x05\x12\x11\n\rCONSUMER_GOOD\x10\x06\x12\t\n\x05OTHER\x10\x07\x12\x10\n\x0cPHONE_NUMBER\x10\t\x12\x0b\n\x07\x41\x44\x44RESS\x10\n\x12\x08\n\x04\x44\x41TE\x10\x0b\x12\n\n\x06NUMBER\x10\x0c\x12\t\n\x05PRICE\x10\r\"\xcb\x01\n\x05Token\x12\x30\n\x04text\x18\x01 \x01(\x0b\x32\".google.cloud.language.v1.TextSpan\x12>\n\x0epart_of_speech\x18\x02 \x01(\x0b\x32&.google.cloud.language.v1.PartOfSpeech\x12\x41\n\x0f\x64\x65pendency_edge\x18\x03 \x01(\x0b\x32(.google.cloud.language.v1.DependencyEdge\x12\r\n\x05lemma\x18\x04 \x01(\t\"-\n\tSentiment\x12\x11\n\tmagnitude\x18\x02 \x01(\x02\x12\r\n\x05score\x18\x03 \x01(\x02\"\xa3\x10\n\x0cPartOfSpeech\x12\x37\n\x03tag\x18\x01 \x01(\x0e\x32*.google.cloud.language.v1.PartOfSpeech.Tag\x12=\n\x06\x61spect\x18\x02 \x01(\x0e\x32-.google.cloud.language.v1.PartOfSpeech.Aspect\x12\x39\n\x04\x63\x61se\x18\x03 \x01(\x0e\x32+.google.cloud.language.v1.PartOfSpeech.Case\x12\x39\n\x04\x66orm\x18\x04 \x01(\x0e\x32+.google.cloud.language.v1.PartOfSpeech.Form\x12=\n\x06gender\x18\x05 \x01(\x0e\x32-.google.cloud.language.v1.PartOfSpeech.Gender\x12\x39\n\x04mood\x18\x06 \x01(\x0e\x32+.google.cloud.language.v1.PartOfSpeech.Mood\x12=\n\x06number\x18\x07 \x01(\x0e\x32-.google.cloud.language.v1.PartOfSpeech.Number\x12=\n\x06person\x18\x08 \x01(\x0e\x32-.google.cloud.language.v1.PartOfSpeech.Person\x12=\n\x06proper\x18\t \x01(\x0e\x32-.google.cloud.language.v1.PartOfSpeech.Proper\x12G\n\x0breciprocity\x18\n \x01(\x0e\x32\x32.google.cloud.language.v1.PartOfSpeech.Reciprocity\x12;\n\x05tense\x18\x0b \x01(\x0e\x32,.google.cloud.language.v1.PartOfSpeech.Tense\x12;\n\x05voice\x18\x0c \x01(\x0e\x32,.google.cloud.language.v1.PartOfSpeech.Voice\"\x8d\x01\n\x03Tag\x12\x0b\n\x07UNKNOWN\x10\x00\x12\x07\n\x03\x41\x44J\x10\x01\x12\x07\n\x03\x41\x44P\x10\x02\x12\x07\n\x03\x41\x44V\x10\x03\x12\x08\n\x04\x43ONJ\x10\x04\x12\x07\n\x03\x44\x45T\x10\x05\x12\x08\n\x04NOUN\x10\x06\x12\x07\n\x03NUM\x10\x07\x12\x08\n\x04PRON\x10\x08\x12\x07\n\x03PRT\x10\t\x12\t\n\x05PUNCT\x10\n\x12\x08\n\x04VERB\x10\x0b\x12\x05\n\x01X\x10\x0c\x12\t\n\x05\x41\x46\x46IX\x10\r\"O\n\x06\x41spect\x12\x12\n\x0e\x41SPECT_UNKNOWN\x10\x00\x12\x0e\n\nPERFECTIVE\x10\x01\x12\x10\n\x0cIMPERFECTIVE\x10\x02\x12\x0f\n\x0bPROGRESSIVE\x10\x03\"\xf8\x01\n\x04\x43\x61se\x12\x10\n\x0c\x43\x41SE_UNKNOWN\x10\x00\x12\x0e\n\nACCUSATIVE\x10\x01\x12\r\n\tADVERBIAL\x10\x02\x12\x11\n\rCOMPLEMENTIVE\x10\x03\x12\n\n\x06\x44\x41TIVE\x10\x04\x12\x0c\n\x08GENITIVE\x10\x05\x12\x10\n\x0cINSTRUMENTAL\x10\x06\x12\x0c\n\x08LOCATIVE\x10\x07\x12\x0e\n\nNOMINATIVE\x10\x08\x12\x0b\n\x07OBLIQUE\x10\t\x12\r\n\tPARTITIVE\x10\n\x12\x11\n\rPREPOSITIONAL\x10\x0b\x12\x12\n\x0eREFLEXIVE_CASE\x10\x0c\x12\x11\n\rRELATIVE_CASE\x10\r\x12\x0c\n\x08VOCATIVE\x10\x0e\"\xaf\x01\n\x04\x46orm\x12\x10\n\x0c\x46ORM_UNKNOWN\x10\x00\x12\x0c\n\x08\x41\x44NOMIAL\x10\x01\x12\r\n\tAUXILIARY\x10\x02\x12\x12\n\x0e\x43OMPLEMENTIZER\x10\x03\x12\x10\n\x0c\x46INAL_ENDING\x10\x04\x12\n\n\x06GERUND\x10\x05\x12\n\n\x06REALIS\x10\x06\x12\x0c\n\x08IRREALIS\x10\x07\x12\t\n\x05SHORT\x10\x08\x12\x08\n\x04LONG\x10\t\x12\t\n\x05ORDER\x10\n\x12\x0c\n\x08SPECIFIC\x10\x0b\"E\n\x06Gender\x12\x12\n\x0eGENDER_UNKNOWN\x10\x00\x12\x0c\n\x08\x46\x45MININE\x10\x01\x12\r\n\tMASCULINE\x10\x02\x12\n\n\x06NEUTER\x10\x03\"\x7f\n\x04Mood\x12\x10\n\x0cMOOD_UNKNOWN\x10\x00\x12\x14\n\x10\x43ONDITIONAL_MOOD\x10\x01\x12\x0e\n\nIMPERATIVE\x10\x02\x12\x0e\n\nINDICATIVE\x10\x03\x12\x11\n\rINTERROGATIVE\x10\x04\x12\x0b\n\x07JUSSIVE\x10\x05\x12\x0f\n\x0bSUBJUNCTIVE\x10\x06\"@\n\x06Number\x12\x12\n\x0eNUMBER_UNKNOWN\x10\x00\x12\x0c\n\x08SINGULAR\x10\x01\x12\n\n\x06PLURAL\x10\x02\x12\x08\n\x04\x44UAL\x10\x03\"T\n\x06Person\x12\x12\n\x0ePERSON_UNKNOWN\x10\x00\x12\t\n\x05\x46IRST\x10\x01\x12\n\n\x06SECOND\x10\x02\x12\t\n\x05THIRD\x10\x03\x12\x14\n\x10REFLEXIVE_PERSON\x10\x04\"8\n\x06Proper\x12\x12\n\x0ePROPER_UNKNOWN\x10\x00\x12\n\n\x06PROPER\x10\x01\x12\x0e\n\nNOT_PROPER\x10\x02\"J\n\x0bReciprocity\x12\x17\n\x13RECIPROCITY_UNKNOWN\x10\x00\x12\x0e\n\nRECIPROCAL\x10\x01\x12\x12\n\x0eNON_RECIPROCAL\x10\x02\"s\n\x05Tense\x12\x11\n\rTENSE_UNKNOWN\x10\x00\x12\x15\n\x11\x43ONDITIONAL_TENSE\x10\x01\x12\n\n\x06\x46UTURE\x10\x02\x12\x08\n\x04PAST\x10\x03\x12\x0b\n\x07PRESENT\x10\x04\x12\r\n\tIMPERFECT\x10\x05\x12\x0e\n\nPLUPERFECT\x10\x06\"B\n\x05Voice\x12\x11\n\rVOICE_UNKNOWN\x10\x00\x12\n\n\x06\x41\x43TIVE\x10\x01\x12\r\n\tCAUSATIVE\x10\x02\x12\x0b\n\x07PASSIVE\x10\x03\"\x95\x08\n\x0e\x44\x65pendencyEdge\x12\x18\n\x10head_token_index\x18\x01 \x01(\x05\x12=\n\x05label\x18\x02 \x01(\x0e\x32..google.cloud.language.v1.DependencyEdge.Label\"\xa9\x07\n\x05Label\x12\x0b\n\x07UNKNOWN\x10\x00\x12\n\n\x06\x41\x42\x42REV\x10\x01\x12\t\n\x05\x41\x43OMP\x10\x02\x12\t\n\x05\x41\x44VCL\x10\x03\x12\n\n\x06\x41\x44VMOD\x10\x04\x12\x08\n\x04\x41MOD\x10\x05\x12\t\n\x05\x41PPOS\x10\x06\x12\x08\n\x04\x41TTR\x10\x07\x12\x07\n\x03\x41UX\x10\x08\x12\x0b\n\x07\x41UXPASS\x10\t\x12\x06\n\x02\x43\x43\x10\n\x12\t\n\x05\x43\x43OMP\x10\x0b\x12\x08\n\x04\x43ONJ\x10\x0c\x12\t\n\x05\x43SUBJ\x10\r\x12\r\n\tCSUBJPASS\x10\x0e\x12\x07\n\x03\x44\x45P\x10\x0f\x12\x07\n\x03\x44\x45T\x10\x10\x12\r\n\tDISCOURSE\x10\x11\x12\x08\n\x04\x44OBJ\x10\x12\x12\x08\n\x04\x45XPL\x10\x13\x12\x0c\n\x08GOESWITH\x10\x14\x12\x08\n\x04IOBJ\x10\x15\x12\x08\n\x04MARK\x10\x16\x12\x07\n\x03MWE\x10\x17\x12\x07\n\x03MWV\x10\x18\x12\x07\n\x03NEG\x10\x19\x12\x06\n\x02NN\x10\x1a\x12\x0c\n\x08NPADVMOD\x10\x1b\x12\t\n\x05NSUBJ\x10\x1c\x12\r\n\tNSUBJPASS\x10\x1d\x12\x07\n\x03NUM\x10\x1e\x12\n\n\x06NUMBER\x10\x1f\x12\x05\n\x01P\x10 \x12\r\n\tPARATAXIS\x10!\x12\x0b\n\x07PARTMOD\x10\"\x12\t\n\x05PCOMP\x10#\x12\x08\n\x04POBJ\x10$\x12\x08\n\x04POSS\x10%\x12\x0b\n\x07POSTNEG\x10&\x12\x0b\n\x07PRECOMP\x10\'\x12\x0b\n\x07PRECONJ\x10(\x12\n\n\x06PREDET\x10)\x12\x08\n\x04PREF\x10*\x12\x08\n\x04PREP\x10+\x12\t\n\x05PRONL\x10,\x12\x07\n\x03PRT\x10-\x12\x06\n\x02PS\x10.\x12\x0c\n\x08QUANTMOD\x10/\x12\t\n\x05RCMOD\x10\x30\x12\x0c\n\x08RCMODREL\x10\x31\x12\t\n\x05RDROP\x10\x32\x12\x07\n\x03REF\x10\x33\x12\x0b\n\x07REMNANT\x10\x34\x12\x0e\n\nREPARANDUM\x10\x35\x12\x08\n\x04ROOT\x10\x36\x12\x08\n\x04SNUM\x10\x37\x12\x08\n\x04SUFF\x10\x38\x12\x08\n\x04TMOD\x10\x39\x12\t\n\x05TOPIC\x10:\x12\x08\n\x04VMOD\x10;\x12\x0c\n\x08VOCATIVE\x10<\x12\t\n\x05XCOMP\x10=\x12\n\n\x06SUFFIX\x10>\x12\t\n\x05TITLE\x10?\x12\x0c\n\x08\x41\x44VPHMOD\x10@\x12\x0b\n\x07\x41UXCAUS\x10\x41\x12\t\n\x05\x41UXVV\x10\x42\x12\t\n\x05\x44TMOD\x10\x43\x12\x0b\n\x07\x46OREIGN\x10\x44\x12\x06\n\x02KW\x10\x45\x12\x08\n\x04LIST\x10\x46\x12\x08\n\x04NOMC\x10G\x12\x0c\n\x08NOMCSUBJ\x10H\x12\x10\n\x0cNOMCSUBJPASS\x10I\x12\x08\n\x04NUMC\x10J\x12\x07\n\x03\x43OP\x10K\x12\x0e\n\nDISLOCATED\x10L\x12\x07\n\x03\x41SP\x10M\x12\x08\n\x04GMOD\x10N\x12\x08\n\x04GOBJ\x10O\x12\n\n\x06INFMOD\x10P\x12\x07\n\x03MES\x10Q\x12\t\n\x05NCOMP\x10R\"\xe7\x01\n\rEntityMention\x12\x30\n\x04text\x18\x01 \x01(\x0b\x32\".google.cloud.language.v1.TextSpan\x12:\n\x04type\x18\x02 \x01(\x0e\x32,.google.cloud.language.v1.EntityMention.Type\x12\x36\n\tsentiment\x18\x03 \x01(\x0b\x32#.google.cloud.language.v1.Sentiment\"0\n\x04Type\x12\x10\n\x0cTYPE_UNKNOWN\x10\x00\x12\n\n\x06PROPER\x10\x01\x12\n\n\x06\x43OMMON\x10\x02\"1\n\x08TextSpan\x12\x0f\n\x07\x63ontent\x18\x01 \x01(\t\x12\x14\n\x0c\x62\x65gin_offset\x18\x02 \x01(\x05\":\n\x16\x43lassificationCategory\x12\x0c\n\x04name\x18\x01 \x01(\t\x12\x12\n\nconfidence\x18\x02 \x01(\x02\"\xb8\x03\n\x1a\x43lassificationModelOptions\x12P\n\x08v1_model\x18\x01 \x01(\x0b\x32<.google.cloud.language.v1.ClassificationModelOptions.V1ModelH\x00\x12P\n\x08v2_model\x18\x02 \x01(\x0b\x32<.google.cloud.language.v1.ClassificationModelOptions.V2ModelH\x00\x1a\t\n\x07V1Model\x1a\xdc\x01\n\x07V2Model\x12y\n\x1a\x63ontent_categories_version\x18\x01 \x01(\x0e\x32U.google.cloud.language.v1.ClassificationModelOptions.V2Model.ContentCategoriesVersion\"V\n\x18\x43ontentCategoriesVersion\x12*\n&CONTENT_CATEGORIES_VERSION_UNSPECIFIED\x10\x00\x12\x06\n\x02V1\x10\x01\x12\x06\n\x02V2\x10\x02\x42\x0c\n\nmodel_type\"\x93\x01\n\x17\x41nalyzeSentimentRequest\x12\x39\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\".google.cloud.language.v1.DocumentB\x03\xe0\x41\x02\x12=\n\rencoding_type\x18\x02 \x01(\x0e\x32&.google.cloud.language.v1.EncodingType\"\xa4\x01\n\x18\x41nalyzeSentimentResponse\x12?\n\x12\x64ocument_sentiment\x18\x01 \x01(\x0b\x32#.google.cloud.language.v1.Sentiment\x12\x10\n\x08language\x18\x02 \x01(\t\x12\x35\n\tsentences\x18\x03 \x03(\x0b\x32\".google.cloud.language.v1.Sentence\"\x99\x01\n\x1d\x41nalyzeEntitySentimentRequest\x12\x39\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\".google.cloud.language.v1.DocumentB\x03\xe0\x41\x02\x12=\n\rencoding_type\x18\x02 \x01(\x0e\x32&.google.cloud.language.v1.EncodingType\"f\n\x1e\x41nalyzeEntitySentimentResponse\x12\x32\n\x08\x65ntities\x18\x01 \x03(\x0b\x32 .google.cloud.language.v1.Entity\x12\x10\n\x08language\x18\x02 \x01(\t\"\x92\x01\n\x16\x41nalyzeEntitiesRequest\x12\x39\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\".google.cloud.language.v1.DocumentB\x03\xe0\x41\x02\x12=\n\rencoding_type\x18\x02 \x01(\x0e\x32&.google.cloud.language.v1.EncodingType\"_\n\x17\x41nalyzeEntitiesResponse\x12\x32\n\x08\x65ntities\x18\x01 \x03(\x0b\x32 .google.cloud.language.v1.Entity\x12\x10\n\x08language\x18\x02 \x01(\t\"\x90\x01\n\x14\x41nalyzeSyntaxRequest\x12\x39\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\".google.cloud.language.v1.DocumentB\x03\xe0\x41\x02\x12=\n\rencoding_type\x18\x02 \x01(\x0e\x32&.google.cloud.language.v1.EncodingType\"\x91\x01\n\x15\x41nalyzeSyntaxResponse\x12\x35\n\tsentences\x18\x01 \x03(\x0b\x32\".google.cloud.language.v1.Sentence\x12/\n\x06tokens\x18\x02 \x03(\x0b\x32\x1f.google.cloud.language.v1.Token\x12\x10\n\x08language\x18\x03 \x01(\t\"\xac\x01\n\x13\x43lassifyTextRequest\x12\x39\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\".google.cloud.language.v1.DocumentB\x03\xe0\x41\x02\x12Z\n\x1c\x63lassification_model_options\x18\x03 \x01(\x0b\x32\x34.google.cloud.language.v1.ClassificationModelOptions\"\\\n\x14\x43lassifyTextResponse\x12\x44\n\ncategories\x18\x01 \x03(\x0b\x32\x30.google.cloud.language.v1.ClassificationCategory\"P\n\x13ModerateTextRequest\x12\x39\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\".google.cloud.language.v1.DocumentB\x03\xe0\x41\x02\"g\n\x14ModerateTextResponse\x12O\n\x15moderation_categories\x18\x01 \x03(\x0b\x32\x30.google.cloud.language.v1.ClassificationCategory\"\xed\x03\n\x13\x41nnotateTextRequest\x12\x39\n\x08\x64ocument\x18\x01 \x01(\x0b\x32\".google.cloud.language.v1.DocumentB\x03\xe0\x41\x02\x12M\n\x08\x66\x65\x61tures\x18\x02 \x01(\x0b\x32\x36.google.cloud.language.v1.AnnotateTextRequest.FeaturesB\x03\xe0\x41\x02\x12=\n\rencoding_type\x18\x03 \x01(\x0e\x32&.google.cloud.language.v1.EncodingType\x1a\x8c\x02\n\x08\x46\x65\x61tures\x12\x16\n\x0e\x65xtract_syntax\x18\x01 \x01(\x08\x12\x18\n\x10\x65xtract_entities\x18\x02 \x01(\x08\x12\"\n\x1a\x65xtract_document_sentiment\x18\x03 \x01(\x08\x12 \n\x18\x65xtract_entity_sentiment\x18\x04 \x01(\x08\x12\x15\n\rclassify_text\x18\x06 \x01(\x08\x12\x15\n\rmoderate_text\x18\x0b \x01(\x08\x12Z\n\x1c\x63lassification_model_options\x18\n \x01(\x0b\x32\x34.google.cloud.language.v1.ClassificationModelOptions\"\x9c\x03\n\x14\x41nnotateTextResponse\x12\x35\n\tsentences\x18\x01 \x03(\x0b\x32\".google.cloud.language.v1.Sentence\x12/\n\x06tokens\x18\x02 \x03(\x0b\x32\x1f.google.cloud.language.v1.Token\x12\x32\n\x08\x65ntities\x18\x03 \x03(\x0b\x32 .google.cloud.language.v1.Entity\x12?\n\x12\x64ocument_sentiment\x18\x04 \x01(\x0b\x32#.google.cloud.language.v1.Sentiment\x12\x10\n\x08language\x18\x05 \x01(\t\x12\x44\n\ncategories\x18\x06 \x03(\x0b\x32\x30.google.cloud.language.v1.ClassificationCategory\x12O\n\x15moderation_categories\x18\x07 \x03(\x0b\x32\x30.google.cloud.language.v1.ClassificationCategory*8\n\x0c\x45ncodingType\x12\x08\n\x04NONE\x10\x00\x12\x08\n\x04UTF8\x10\x01\x12\t\n\x05UTF16\x10\x02\x12\t\n\x05UTF32\x10\x03\x32\xd2\x0b\n\x0fLanguageService\x12\xc8\x01\n\x10\x41nalyzeSentiment\x12\x31.google.cloud.language.v1.AnalyzeSentimentRequest\x1a\x32.google.cloud.language.v1.AnalyzeSentimentResponse\"M\x82\xd3\xe4\x93\x02#\"\x1e/v1/documents:analyzeSentiment:\x01*\xda\x41\x16\x64ocument,encoding_type\xda\x41\x08\x64ocument\x12\xc4\x01\n\x0f\x41nalyzeEntities\x12\x30.google.cloud.language.v1.AnalyzeEntitiesRequest\x1a\x31.google.cloud.language.v1.AnalyzeEntitiesResponse\"L\x82\xd3\xe4\x93\x02\"\"\x1d/v1/documents:analyzeEntities:\x01*\xda\x41\x16\x64ocument,encoding_type\xda\x41\x08\x64ocument\x12\xe0\x01\n\x16\x41nalyzeEntitySentiment\x12\x37.google.cloud.language.v1.AnalyzeEntitySentimentRequest\x1a\x38.google.cloud.language.v1.AnalyzeEntitySentimentResponse\"S\x82\xd3\xe4\x93\x02)\"$/v1/documents:analyzeEntitySentiment:\x01*\xda\x41\x16\x64ocument,encoding_type\xda\x41\x08\x64ocument\x12\xbc\x01\n\rAnalyzeSyntax\x12..google.cloud.language.v1.AnalyzeSyntaxRequest\x1a/.google.cloud.language.v1.AnalyzeSyntaxResponse\"J\x82\xd3\xe4\x93\x02 \"\x1b/v1/documents:analyzeSyntax:\x01*\xda\x41\x16\x64ocument,encoding_type\xda\x41\x08\x64ocument\x12\x9f\x01\n\x0c\x43lassifyText\x12-.google.cloud.language.v1.ClassifyTextRequest\x1a..google.cloud.language.v1.ClassifyTextResponse\"0\x82\xd3\xe4\x93\x02\x1f\"\x1a/v1/documents:classifyText:\x01*\xda\x41\x08\x64ocument\x12\x9f\x01\n\x0cModerateText\x12-.google.cloud.language.v1.ModerateTextRequest\x1a..google.cloud.language.v1.ModerateTextResponse\"0\x82\xd3\xe4\x93\x02\x1f\"\x1a/v1/documents:moderateText:\x01*\xda\x41\x08\x64ocument\x12\xca\x01\n\x0c\x41nnotateText\x12-.google.cloud.language.v1.AnnotateTextRequest\x1a..google.cloud.language.v1.AnnotateTextResponse\"[\x82\xd3\xe4\x93\x02\x1f\"\x1a/v1/documents:annotateText:\x01*\xda\x41\x1f\x64ocument,features,encoding_type\xda\x41\x11\x64ocument,features\x1az\xca\x41\x17language.googleapis.com\xd2\x41]https://www.googleapis.com/auth/cloud-language,https://www.googleapis.com/auth/cloud-platformBp\n\x1c\x63om.google.cloud.language.v1B\x14LanguageServiceProtoP\x01Z8cloud.google.com/go/language/apiv1/languagepb;languagepbb\x06proto3"
13
+
14
+ pool = Google::Protobuf::DescriptorPool.generated_pool
15
+
16
+ begin
17
+ pool.add_serialized_file(descriptor_data)
18
+ rescue TypeError => e
19
+ # Compatibility code: will be removed in the next major version.
20
+ require 'google/protobuf/descriptor_pb'
21
+ parsed = Google::Protobuf::FileDescriptorProto.decode(descriptor_data)
22
+ parsed.clear_dependency
23
+ serialized = parsed.class.encode(parsed)
24
+ file = pool.add_serialized_file(serialized)
25
+ warn "Warning: Protobuf detected an import path issue while loading generated file #{__FILE__}"
26
+ imports = [
27
+ ]
28
+ imports.each do |type_name, expected_filename|
29
+ import_file = pool.lookup(type_name).file_descriptor
30
+ if import_file.name != expected_filename
31
+ warn "- #{file.name} imports #{expected_filename}, but that import was loaded as #{import_file.name}"
372
32
  end
373
33
  end
34
+ warn "Each proto file must use a consistent fully-qualified name."
35
+ warn "This will become an error in the next major version."
374
36
  end
375
37
 
376
38
  module Google
@@ -417,6 +79,8 @@ module Google
417
79
  AnalyzeSyntaxResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.AnalyzeSyntaxResponse").msgclass
418
80
  ClassifyTextRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.ClassifyTextRequest").msgclass
419
81
  ClassifyTextResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.ClassifyTextResponse").msgclass
82
+ ModerateTextRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.ModerateTextRequest").msgclass
83
+ ModerateTextResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.ModerateTextResponse").msgclass
420
84
  AnnotateTextRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.AnnotateTextRequest").msgclass
421
85
  AnnotateTextRequest::Features = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.AnnotateTextRequest.Features").msgclass
422
86
  AnnotateTextResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.language.v1.AnnotateTextResponse").msgclass
@@ -40,8 +40,10 @@ module Google
40
40
  # along with entity types, salience, mentions for each entity, and
41
41
  # other properties.
42
42
  rpc :AnalyzeEntities, ::Google::Cloud::Language::V1::AnalyzeEntitiesRequest, ::Google::Cloud::Language::V1::AnalyzeEntitiesResponse
43
- # Finds entities, similar to [AnalyzeEntities][google.cloud.language.v1.LanguageService.AnalyzeEntities] in the text and analyzes
44
- # sentiment associated with each entity and its mentions.
43
+ # Finds entities, similar to
44
+ # [AnalyzeEntities][google.cloud.language.v1.LanguageService.AnalyzeEntities]
45
+ # in the text and analyzes sentiment associated with each entity and its
46
+ # mentions.
45
47
  rpc :AnalyzeEntitySentiment, ::Google::Cloud::Language::V1::AnalyzeEntitySentimentRequest, ::Google::Cloud::Language::V1::AnalyzeEntitySentimentResponse
46
48
  # Analyzes the syntax of the text and provides sentence boundaries and
47
49
  # tokenization along with part of speech tags, dependency trees, and other
@@ -49,6 +51,8 @@ module Google
49
51
  rpc :AnalyzeSyntax, ::Google::Cloud::Language::V1::AnalyzeSyntaxRequest, ::Google::Cloud::Language::V1::AnalyzeSyntaxResponse
50
52
  # Classifies a document into categories.
51
53
  rpc :ClassifyText, ::Google::Cloud::Language::V1::ClassifyTextRequest, ::Google::Cloud::Language::V1::ClassifyTextResponse
54
+ # Moderates a document for harmful and sensitive categories.
55
+ rpc :ModerateText, ::Google::Cloud::Language::V1::ModerateTextRequest, ::Google::Cloud::Language::V1::ModerateTextResponse
52
56
  # A convenience method that provides all the features that analyzeSentiment,
53
57
  # analyzeEntities, and analyzeSyntax provide in one call.
54
58
  rpc :AnnotateText, ::Google::Cloud::Language::V1::AnnotateTextRequest, ::Google::Cloud::Language::V1::AnnotateTextResponse
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Language
23
23
  module V1
24
- VERSION = "0.7.0"
24
+ VERSION = "0.8.0"
25
25
  end
26
26
  end
27
27
  end
@@ -35,7 +35,9 @@ module Google
35
35
  # Details about how and where to publish client libraries.
36
36
  # @!attribute [rw] version
37
37
  # @return [::String]
38
- # Version of the API to apply these settings to.
38
+ # Version of the API to apply these settings to. This is the full protobuf
39
+ # package for the API, ending in the version element.
40
+ # Examples: "google.cloud.speech.v1" and "google.spanner.admin.database.v1".
39
41
  # @!attribute [rw] launch_stage
40
42
  # @return [::Google::Api::LaunchStage]
41
43
  # Launch stage of this version of the API.
@@ -81,7 +83,7 @@ module Google
81
83
  # long-running operation pattern.
82
84
  # @!attribute [rw] new_issue_uri
83
85
  # @return [::String]
84
- # Link to a place that API users can report issues. Example:
86
+ # Link to a *public* URI where users can report issues. Example:
85
87
  # https://issuetracker.google.com/issues/new?component=190865&template=1161103
86
88
  # @!attribute [rw] documentation_uri
87
89
  # @return [::String]
@@ -111,6 +113,10 @@ module Google
111
113
  # Client library settings. If the same version string appears multiple
112
114
  # times in this list, then the last one wins. Settings from earlier
113
115
  # settings with the same version string are discarded.
116
+ # @!attribute [rw] proto_reference_documentation_uri
117
+ # @return [::String]
118
+ # Optional link to proto reference documentation. Example:
119
+ # https://cloud.google.com/pubsub/lite/docs/reference/rpc
114
120
  class Publishing
115
121
  include ::Google::Protobuf::MessageExts
116
122
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -203,9 +209,57 @@ module Google
203
209
  # @!attribute [rw] common
204
210
  # @return [::Google::Api::CommonLanguageSettings]
205
211
  # Some settings.
212
+ # @!attribute [rw] renamed_services
213
+ # @return [::Google::Protobuf::Map{::String => ::String}]
214
+ # Map from original service names to renamed versions.
215
+ # This is used when the default generated types
216
+ # would cause a naming conflict. (Neither name is
217
+ # fully-qualified.)
218
+ # Example: Subscriber to SubscriberServiceApi.
219
+ # @!attribute [rw] renamed_resources
220
+ # @return [::Google::Protobuf::Map{::String => ::String}]
221
+ # Map from full resource types to the effective short name
222
+ # for the resource. This is used when otherwise resource
223
+ # named from different services would cause naming collisions.
224
+ # Example entry:
225
+ # "datalabeling.googleapis.com/Dataset": "DataLabelingDataset"
226
+ # @!attribute [rw] ignored_resources
227
+ # @return [::Array<::String>]
228
+ # List of full resource types to ignore during generation.
229
+ # This is typically used for API-specific Location resources,
230
+ # which should be handled by the generator as if they were actually
231
+ # the common Location resources.
232
+ # Example entry: "documentai.googleapis.com/Location"
233
+ # @!attribute [rw] forced_namespace_aliases
234
+ # @return [::Array<::String>]
235
+ # Namespaces which must be aliased in snippets due to
236
+ # a known (but non-generator-predictable) naming collision
237
+ # @!attribute [rw] handwritten_signatures
238
+ # @return [::Array<::String>]
239
+ # Method signatures (in the form "service.method(signature)")
240
+ # which are provided separately, so shouldn't be generated.
241
+ # Snippets *calling* these methods are still generated, however.
206
242
  class DotnetSettings
207
243
  include ::Google::Protobuf::MessageExts
208
244
  extend ::Google::Protobuf::MessageExts::ClassMethods
245
+
246
+ # @!attribute [rw] key
247
+ # @return [::String]
248
+ # @!attribute [rw] value
249
+ # @return [::String]
250
+ class RenamedServicesEntry
251
+ include ::Google::Protobuf::MessageExts
252
+ extend ::Google::Protobuf::MessageExts::ClassMethods
253
+ end
254
+
255
+ # @!attribute [rw] key
256
+ # @return [::String]
257
+ # @!attribute [rw] value
258
+ # @return [::String]
259
+ class RenamedResourcesEntry
260
+ include ::Google::Protobuf::MessageExts
261
+ extend ::Google::Protobuf::MessageExts::ClassMethods
262
+ end
209
263
  end
210
264
 
211
265
  # Settings for Ruby client libraries.
@@ -240,8 +294,8 @@ module Google
240
294
  # Example of a YAML configuration::
241
295
  #
242
296
  # publishing:
243
- # method_behavior:
244
- # - selector: CreateAdDomain
297
+ # method_settings:
298
+ # - selector: google.cloud.speech.v2.Speech.BatchRecognize
245
299
  # long_running:
246
300
  # initial_poll_delay:
247
301
  # seconds: 60 # 1 minute
@@ -299,6 +353,15 @@ module Google
299
353
 
300
354
  # Street View Org.
301
355
  STREET_VIEW = 4
356
+
357
+ # Shopping Org.
358
+ SHOPPING = 5
359
+
360
+ # Geo Org.
361
+ GEO = 6
362
+
363
+ # Generative AI - https://developers.generativeai.google
364
+ GENERATIVE_AI = 7
302
365
  end
303
366
 
304
367
  # To where should client libraries be published?
@@ -70,8 +70,8 @@ module Google
70
70
  # @!attribute [rw] sentiment
71
71
  # @return [::Google::Cloud::Language::V1::Sentiment]
72
72
  # For calls to [AnalyzeSentiment][] or if
73
- # {::Google::Cloud::Language::V1::AnnotateTextRequest::Features#extract_document_sentiment AnnotateTextRequest.Features.extract_document_sentiment} is set to
74
- # true, this field will contain the sentiment for the sentence.
73
+ # {::Google::Cloud::Language::V1::AnnotateTextRequest::Features#extract_document_sentiment AnnotateTextRequest.Features.extract_document_sentiment}
74
+ # is set to true, this field will contain the sentiment for the sentence.
75
75
  class Sentence
76
76
  include ::Google::Protobuf::MessageExts
77
77
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -108,9 +108,9 @@ module Google
108
108
  # @!attribute [rw] sentiment
109
109
  # @return [::Google::Cloud::Language::V1::Sentiment]
110
110
  # For calls to [AnalyzeEntitySentiment][] or if
111
- # {::Google::Cloud::Language::V1::AnnotateTextRequest::Features#extract_entity_sentiment AnnotateTextRequest.Features.extract_entity_sentiment} is set to
112
- # true, this field will contain the aggregate sentiment expressed for this
113
- # entity in the provided document.
111
+ # {::Google::Cloud::Language::V1::AnnotateTextRequest::Features#extract_entity_sentiment AnnotateTextRequest.Features.extract_entity_sentiment}
112
+ # is set to true, this field will contain the aggregate sentiment expressed
113
+ # for this entity in the provided document.
114
114
  class Entity
115
115
  include ::Google::Protobuf::MessageExts
116
116
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -852,9 +852,9 @@ module Google
852
852
  # @!attribute [rw] sentiment
853
853
  # @return [::Google::Cloud::Language::V1::Sentiment]
854
854
  # For calls to [AnalyzeEntitySentiment][] or if
855
- # {::Google::Cloud::Language::V1::AnnotateTextRequest::Features#extract_entity_sentiment AnnotateTextRequest.Features.extract_entity_sentiment} is set to
856
- # true, this field will contain the sentiment expressed for this mention of
857
- # the entity in the provided document.
855
+ # {::Google::Cloud::Language::V1::AnnotateTextRequest::Features#extract_entity_sentiment AnnotateTextRequest.Features.extract_entity_sentiment}
856
+ # is set to true, this field will contain the sentiment expressed for this
857
+ # mention of the entity in the provided document.
858
858
  class EntityMention
859
859
  include ::Google::Protobuf::MessageExts
860
860
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -879,7 +879,9 @@ module Google
879
879
  # @!attribute [rw] begin_offset
880
880
  # @return [::Integer]
881
881
  # The API calculates the beginning offset of the content in the original
882
- # document according to the {::Google::Cloud::Language::V1::EncodingType EncodingType} specified in the API request.
882
+ # document according to the
883
+ # {::Google::Cloud::Language::V1::EncodingType EncodingType} specified in the API
884
+ # request.
883
885
  class TextSpan
884
886
  include ::Google::Protobuf::MessageExts
885
887
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -888,8 +890,7 @@ module Google
888
890
  # Represents a category returned from the text classifier.
889
891
  # @!attribute [rw] name
890
892
  # @return [::String]
891
- # The name of the category representing the document, from the [predefined
892
- # taxonomy](https://cloud.google.com/natural-language/docs/categories).
893
+ # The name of the category representing the document.
893
894
  # @!attribute [rw] confidence
894
895
  # @return [::Float]
895
896
  # The classifier's confidence of the category. Number represents how certain
@@ -962,7 +963,8 @@ module Google
962
963
  # @return [::String]
963
964
  # The language of the text, which will be the same as the language specified
964
965
  # in the request or, if not specified, the automatically-detected language.
965
- # See {::Google::Cloud::Language::V1::Document#language Document.language} field for more details.
966
+ # See {::Google::Cloud::Language::V1::Document#language Document.language} field
967
+ # for more details.
966
968
  # @!attribute [rw] sentences
967
969
  # @return [::Array<::Google::Cloud::Language::V1::Sentence>]
968
970
  # The sentiment for all the sentences in the document.
@@ -991,7 +993,8 @@ module Google
991
993
  # @return [::String]
992
994
  # The language of the text, which will be the same as the language specified
993
995
  # in the request or, if not specified, the automatically-detected language.
994
- # See {::Google::Cloud::Language::V1::Document#language Document.language} field for more details.
996
+ # See {::Google::Cloud::Language::V1::Document#language Document.language} field
997
+ # for more details.
995
998
  class AnalyzeEntitySentimentResponse
996
999
  include ::Google::Protobuf::MessageExts
997
1000
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1017,7 +1020,8 @@ module Google
1017
1020
  # @return [::String]
1018
1021
  # The language of the text, which will be the same as the language specified
1019
1022
  # in the request or, if not specified, the automatically-detected language.
1020
- # See {::Google::Cloud::Language::V1::Document#language Document.language} field for more details.
1023
+ # See {::Google::Cloud::Language::V1::Document#language Document.language} field
1024
+ # for more details.
1021
1025
  class AnalyzeEntitiesResponse
1022
1026
  include ::Google::Protobuf::MessageExts
1023
1027
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1046,7 +1050,8 @@ module Google
1046
1050
  # @return [::String]
1047
1051
  # The language of the text, which will be the same as the language specified
1048
1052
  # in the request or, if not specified, the automatically-detected language.
1049
- # See {::Google::Cloud::Language::V1::Document#language Document.language} field for more details.
1053
+ # See {::Google::Cloud::Language::V1::Document#language Document.language} field
1054
+ # for more details.
1050
1055
  class AnalyzeSyntaxResponse
1051
1056
  include ::Google::Protobuf::MessageExts
1052
1057
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -1074,6 +1079,24 @@ module Google
1074
1079
  extend ::Google::Protobuf::MessageExts::ClassMethods
1075
1080
  end
1076
1081
 
1082
+ # The document moderation request message.
1083
+ # @!attribute [rw] document
1084
+ # @return [::Google::Cloud::Language::V1::Document]
1085
+ # Required. Input document.
1086
+ class ModerateTextRequest
1087
+ include ::Google::Protobuf::MessageExts
1088
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1089
+ end
1090
+
1091
+ # The document moderation response message.
1092
+ # @!attribute [rw] moderation_categories
1093
+ # @return [::Array<::Google::Cloud::Language::V1::ClassificationCategory>]
1094
+ # Harmful and sensitive categories representing the input document.
1095
+ class ModerateTextResponse
1096
+ include ::Google::Protobuf::MessageExts
1097
+ extend ::Google::Protobuf::MessageExts::ClassMethods
1098
+ end
1099
+
1077
1100
  # The request message for the text annotation API, which can perform multiple
1078
1101
  # analysis types (sentiment, entities, and syntax) in one call.
1079
1102
  # @!attribute [rw] document
@@ -1106,6 +1129,9 @@ module Google
1106
1129
  # @!attribute [rw] classify_text
1107
1130
  # @return [::Boolean]
1108
1131
  # Classify the full document into categories.
1132
+ # @!attribute [rw] moderate_text
1133
+ # @return [::Boolean]
1134
+ # Moderate the document for harmful and sensitive categories.
1109
1135
  # @!attribute [rw] classification_model_options
1110
1136
  # @return [::Google::Cloud::Language::V1::ClassificationModelOptions]
1111
1137
  # The model options to use for classification. Defaults to v1 options
@@ -1139,10 +1165,14 @@ module Google
1139
1165
  # @return [::String]
1140
1166
  # The language of the text, which will be the same as the language specified
1141
1167
  # in the request or, if not specified, the automatically-detected language.
1142
- # See {::Google::Cloud::Language::V1::Document#language Document.language} field for more details.
1168
+ # See {::Google::Cloud::Language::V1::Document#language Document.language} field
1169
+ # for more details.
1143
1170
  # @!attribute [rw] categories
1144
1171
  # @return [::Array<::Google::Cloud::Language::V1::ClassificationCategory>]
1145
1172
  # Categories identified in the input document.
1173
+ # @!attribute [rw] moderation_categories
1174
+ # @return [::Array<::Google::Cloud::Language::V1::ClassificationCategory>]
1175
+ # Harmful and sensitive categories identified in the input document.
1146
1176
  class AnnotateTextResponse
1147
1177
  include ::Google::Protobuf::MessageExts
1148
1178
  extend ::Google::Protobuf::MessageExts::ClassMethods
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-language-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.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-02-23 00:00:00.000000000 Z
11
+ date: 2023-05-31 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.17.1
19
+ version: 0.19.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.17.1
29
+ version: 0.19.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -211,5 +211,6 @@ requirements: []
211
211
  rubygems_version: 3.4.2
212
212
  signing_key:
213
213
  specification_version: 4
214
- summary: API Client library for the Natural Language V1 API
214
+ summary: Provides natural language understanding technologies, such as sentiment analysis,
215
+ entity recognition, entity sentiment analysis, and other text annotations, to developers.
215
216
  test_files: []