Class: Google::Cloud::Language::V1::Document
- Inherits:
-
Object
- Object
- Google::Cloud::Language::V1::Document
- Defined in:
- lib/google/cloud/language/v1/doc/google/cloud/language/v1/language_service.rb
Overview
================================================================ #
Represents the input to API methods.
Defined Under Namespace
Modules: Type
Instance Attribute Summary collapse
-
#content ⇒ String
The content of the input in string format.
-
#gcs_content_uri ⇒ String
The Google Cloud Storage URI where the file content is located.
-
#language ⇒ String
The language of the document (if not specified, the language is automatically detected).
-
#type ⇒ Google::Cloud::Language::V1::Document::Type
Required.
Instance Attribute Details
#content ⇒ String
Returns The content of the input in string format.
56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/google/cloud/language/v1/doc/google/cloud/language/v1/language_service.rb', line 56 class Document # The document types enum. module Type # The content type is not specified. TYPE_UNSPECIFIED = 0 # Plain text PLAIN_TEXT = 1 # HTML HTML = 2 end end |
#gcs_content_uri ⇒ String
Returns The Google Cloud Storage URI where the file content is located. This URI must be of the form: gs://bucket_name/object_name. For more details, see https://cloud.google.com/storage/docs/reference-uris. NOTE: Cloud Storage object versioning is not supported.
56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/google/cloud/language/v1/doc/google/cloud/language/v1/language_service.rb', line 56 class Document # The document types enum. module Type # The content type is not specified. TYPE_UNSPECIFIED = 0 # Plain text PLAIN_TEXT = 1 # HTML HTML = 2 end end |
#language ⇒ String
Returns The language of the document (if not specified, the language is
automatically detected). Both ISO and BCP-47 language codes are
accepted.
Language Support
lists currently supported languages for each API method.
If the language (either specified by the caller or automatically detected)
is not supported by the called API method, an +INVALID_ARGUMENT+ error
is returned.
56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/google/cloud/language/v1/doc/google/cloud/language/v1/language_service.rb', line 56 class Document # The document types enum. module Type # The content type is not specified. TYPE_UNSPECIFIED = 0 # Plain text PLAIN_TEXT = 1 # HTML HTML = 2 end end |
#type ⇒ Google::Cloud::Language::V1::Document::Type
Required. If the type is not set or is +TYPE_UNSPECIFIED+, returns an +INVALID_ARGUMENT+ error.
56 57 58 59 60 61 62 63 64 65 66 67 68 |
# File 'lib/google/cloud/language/v1/doc/google/cloud/language/v1/language_service.rb', line 56 class Document # The document types enum. module Type # The content type is not specified. TYPE_UNSPECIFIED = 0 # Plain text PLAIN_TEXT = 1 # HTML HTML = 2 end end |