Index: discovery/googleapis/language__v1.json |
diff --git a/discovery/googleapis/language__v1.json b/discovery/googleapis/language__v1.json |
index 8a8758a6148c6a6a4a4b640e17d29bd32cda5065..21e51fe76faa67061f3ede1a8d6b1928f8c0bd77 100644 |
--- a/discovery/googleapis/language__v1.json |
+++ b/discovery/googleapis/language__v1.json |
@@ -25,6 +25,34 @@ |
"ownerDomain": "google.com", |
"ownerName": "Google", |
"parameters": { |
+ "fields": { |
+ "description": "Selector specifying which fields to include in a partial response.", |
+ "location": "query", |
+ "type": "string" |
+ }, |
+ "uploadType": { |
+ "description": "Legacy upload protocol for media (e.g. \"media\", \"multipart\").", |
+ "location": "query", |
+ "type": "string" |
+ }, |
+ "$.xgafv": { |
+ "description": "V1 error format.", |
+ "enum": [ |
+ "1", |
+ "2" |
+ ], |
+ "enumDescriptions": [ |
+ "v1 error format", |
+ "v2 error format" |
+ ], |
+ "location": "query", |
+ "type": "string" |
+ }, |
+ "callback": { |
+ "description": "JSONP", |
+ "location": "query", |
+ "type": "string" |
+ }, |
"alt": { |
"default": "json", |
"description": "Data format for response.", |
@@ -41,13 +69,13 @@ |
"location": "query", |
"type": "string" |
}, |
- "key": { |
- "description": "API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.", |
+ "access_token": { |
+ "description": "OAuth access token.", |
"location": "query", |
"type": "string" |
}, |
- "access_token": { |
- "description": "OAuth access token.", |
+ "key": { |
+ "description": "API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.", |
"location": "query", |
"type": "string" |
}, |
@@ -62,13 +90,13 @@ |
"location": "query", |
"type": "boolean" |
}, |
- "bearer_token": { |
- "description": "OAuth bearer token.", |
+ "oauth_token": { |
+ "description": "OAuth 2.0 token for the current user.", |
"location": "query", |
"type": "string" |
}, |
- "oauth_token": { |
- "description": "OAuth 2.0 token for the current user.", |
+ "bearer_token": { |
+ "description": "OAuth bearer token.", |
"location": "query", |
"type": "string" |
}, |
@@ -82,40 +110,29 @@ |
"description": "Returns response with indentations and line breaks.", |
"location": "query", |
"type": "boolean" |
- }, |
- "uploadType": { |
- "description": "Legacy upload protocol for media (e.g. \"media\", \"multipart\").", |
- "location": "query", |
- "type": "string" |
- }, |
- "fields": { |
- "description": "Selector specifying which fields to include in a partial response.", |
- "location": "query", |
- "type": "string" |
- }, |
- "callback": { |
- "description": "JSONP", |
- "location": "query", |
- "type": "string" |
- }, |
- "$.xgafv": { |
- "description": "V1 error format.", |
- "enum": [ |
- "1", |
- "2" |
- ], |
- "enumDescriptions": [ |
- "v1 error format", |
- "v2 error format" |
- ], |
- "location": "query", |
- "type": "string" |
} |
}, |
"protocol": "rest", |
"resources": { |
"documents": { |
"methods": { |
+ "analyzeSyntax": { |
+ "description": "Analyzes the syntax of the text and provides sentence boundaries and\ntokenization along with part of speech tags, dependency trees, and other\nproperties.", |
+ "httpMethod": "POST", |
+ "id": "language.documents.analyzeSyntax", |
+ "parameterOrder": [], |
+ "parameters": {}, |
+ "path": "v1/documents:analyzeSyntax", |
+ "request": { |
+ "$ref": "AnalyzeSyntaxRequest" |
+ }, |
+ "response": { |
+ "$ref": "AnalyzeSyntaxResponse" |
+ }, |
+ "scopes": [ |
+ "https://www.googleapis.com/auth/cloud-platform" |
+ ] |
+ }, |
"analyzeSentiment": { |
"description": "Analyzes the sentiment of the provided text.", |
"httpMethod": "POST", |
@@ -166,34 +183,21 @@ |
"scopes": [ |
"https://www.googleapis.com/auth/cloud-platform" |
] |
- }, |
- "analyzeSyntax": { |
- "description": "Analyzes the syntax of the text and provides sentence boundaries and\ntokenization along with part of speech tags, dependency trees, and other\nproperties.", |
- "httpMethod": "POST", |
- "id": "language.documents.analyzeSyntax", |
- "parameterOrder": [], |
- "parameters": {}, |
- "path": "v1/documents:analyzeSyntax", |
- "request": { |
- "$ref": "AnalyzeSyntaxRequest" |
- }, |
- "response": { |
- "$ref": "AnalyzeSyntaxResponse" |
- }, |
- "scopes": [ |
- "https://www.googleapis.com/auth/cloud-platform" |
- ] |
} |
} |
} |
}, |
- "revision": "20170601", |
+ "revision": "20170619", |
"rootUrl": "https://language.googleapis.com/", |
"schemas": { |
"Features": { |
"description": "All available features for sentiment, syntax, and semantic analysis.\nSetting each one to true will enable that specific analysis for the input.", |
"id": "Features", |
"properties": { |
+ "extractEntities": { |
+ "description": "Extract entities.", |
+ "type": "boolean" |
+ }, |
"extractSyntax": { |
"description": "Extract syntax information.", |
"type": "boolean" |
@@ -201,10 +205,6 @@ |
"extractDocumentSentiment": { |
"description": "Extract document-level sentiment.", |
"type": "boolean" |
- }, |
- "extractEntities": { |
- "description": "Extract entities.", |
- "type": "boolean" |
} |
}, |
"type": "object" |
@@ -234,14 +234,25 @@ |
}, |
"type": "object" |
}, |
+ "Sentence": { |
+ "description": "Represents a sentence in the input document.", |
+ "id": "Sentence", |
+ "properties": { |
+ "text": { |
+ "$ref": "TextSpan", |
+ "description": "The sentence text." |
+ }, |
+ "sentiment": { |
+ "$ref": "Sentiment", |
+ "description": "For calls to AnalyzeSentiment or if\nAnnotateTextRequest.Features.extract_document_sentiment is set to\ntrue, this field will contain the sentiment for the sentence." |
+ } |
+ }, |
+ "type": "object" |
+ }, |
"Document": { |
"description": "################################################################ #\n\nRepresents the input to API methods.", |
"id": "Document", |
"properties": { |
- "gcsContentUri": { |
- "description": "The Google Cloud Storage URI where the file content is located.\nThis URI must be of the form: gs://bucket_name/object_name. For more\ndetails, see https://cloud.google.com/storage/docs/reference-uris.\nNOTE: Cloud Storage object versioning is not supported.", |
- "type": "string" |
- }, |
"language": { |
"description": "The language of the document (if not specified, the language is\nautomatically detected). Both ISO and BCP-47 language codes are\naccepted.<br>\n[Language Support](/natural-language/docs/languages)\nlists currently supported languages for each API method.\nIf the language (either specified by the caller or automatically detected)\nis not supported by the called API method, an `INVALID_ARGUMENT` error\nis returned.", |
"type": "string" |
@@ -263,21 +274,37 @@ |
"content": { |
"description": "The content of the input in string format.", |
"type": "string" |
+ }, |
+ "gcsContentUri": { |
+ "description": "The Google Cloud Storage URI where the file content is located.\nThis URI must be of the form: gs://bucket_name/object_name. For more\ndetails, see https://cloud.google.com/storage/docs/reference-uris.\nNOTE: Cloud Storage object versioning is not supported.", |
+ "type": "string" |
} |
}, |
"type": "object" |
}, |
- "Sentence": { |
- "description": "Represents a sentence in the input document.", |
- "id": "Sentence", |
+ "AnalyzeEntitiesRequest": { |
+ "description": "The entity analysis request message.", |
+ "id": "AnalyzeEntitiesRequest", |
"properties": { |
- "text": { |
- "$ref": "TextSpan", |
- "description": "The sentence text." |
+ "document": { |
+ "$ref": "Document", |
+ "description": "Input document." |
}, |
- "sentiment": { |
- "$ref": "Sentiment", |
- "description": "For calls to AnalyzeSentiment or if\nAnnotateTextRequest.Features.extract_document_sentiment is set to\ntrue, this field will contain the sentiment for the sentence." |
+ "encodingType": { |
+ "description": "The encoding type used by the API to calculate offsets.", |
+ "enum": [ |
+ "NONE", |
+ "UTF8", |
+ "UTF16", |
+ "UTF32" |
+ ], |
+ "enumDescriptions": [ |
+ "If `EncodingType` is not specified, encoding-dependent information (such as\n`begin_offset`) will be set at `-1`.", |
+ "Encoding-dependent information (such as `begin_offset`) is calculated based\non the UTF-8 encoding of the input. C++ and Go are examples of languages\nthat use this encoding natively.", |
+ "Encoding-dependent information (such as `begin_offset`) is calculated based\non the UTF-16 encoding of the input. Java and Javascript are examples of\nlanguages that use this encoding natively.", |
+ "Encoding-dependent information (such as `begin_offset`) is calculated based\non the UTF-32 encoding of the input. Python is an example of a language\nthat uses this encoding natively." |
+ ], |
+ "type": "string" |
} |
}, |
"type": "object" |
@@ -299,37 +326,24 @@ |
}, |
"type": "object" |
}, |
- "AnalyzeEntitiesRequest": { |
- "description": "The entity analysis request message.", |
- "id": "AnalyzeEntitiesRequest", |
+ "PartOfSpeech": { |
+ "description": "Represents part of speech information for a token. Parts of speech\nare as defined in\nhttp://www.lrec-conf.org/proceedings/lrec2012/pdf/274_Paper.pdf", |
+ "id": "PartOfSpeech", |
"properties": { |
- "encodingType": { |
- "description": "The encoding type used by the API to calculate offsets.", |
+ "reciprocity": { |
+ "description": "The grammatical reciprocity.", |
"enum": [ |
- "NONE", |
- "UTF8", |
- "UTF16", |
- "UTF32" |
+ "RECIPROCITY_UNKNOWN", |
+ "RECIPROCAL", |
+ "NON_RECIPROCAL" |
], |
"enumDescriptions": [ |
- "If `EncodingType` is not specified, encoding-dependent information (such as\n`begin_offset`) will be set at `-1`.", |
- "Encoding-dependent information (such as `begin_offset`) is calculated based\non the UTF-8 encoding of the input. C++ and Go are examples of languages\nthat use this encoding natively.", |
- "Encoding-dependent information (such as `begin_offset`) is calculated based\non the UTF-16 encoding of the input. Java and Javascript are examples of\nlanguages that use this encoding natively.", |
- "Encoding-dependent information (such as `begin_offset`) is calculated based\non the UTF-32 encoding of the input. Python is an example of a language\nthat uses this encoding natively." |
+ "Reciprocity is not applicable in the analyzed language or is not\npredicted.", |
+ "Reciprocal", |
+ "Non-reciprocal" |
], |
"type": "string" |
}, |
- "document": { |
- "$ref": "Document", |
- "description": "Input document." |
- } |
- }, |
- "type": "object" |
- }, |
- "PartOfSpeech": { |
- "description": "Represents part of speech information for a token. Parts of speech\nare as defined in\nhttp://www.lrec-conf.org/proceedings/lrec2012/pdf/274_Paper.pdf", |
- "id": "PartOfSpeech", |
- "properties": { |
"form": { |
"description": "The grammatical form.", |
"enum": [ |
@@ -575,20 +589,6 @@ |
"Pluperfect" |
], |
"type": "string" |
- }, |
- "reciprocity": { |
- "description": "The grammatical reciprocity.", |
- "enum": [ |
- "RECIPROCITY_UNKNOWN", |
- "RECIPROCAL", |
- "NON_RECIPROCAL" |
- ], |
- "enumDescriptions": [ |
- "Reciprocity is not applicable in the analyzed language or is not\npredicted.", |
- "Reciprocal", |
- "Non-reciprocal" |
- ], |
- "type": "string" |
} |
}, |
"type": "object" |
@@ -624,10 +624,6 @@ |
"description": "The sentiment analysis response message.", |
"id": "AnalyzeSentimentResponse", |
"properties": { |
- "language": { |
- "description": "The language of the text, which will be the same as the language specified\nin the request or, if not specified, the automatically-detected language.\nSee Document.language field for more details.", |
- "type": "string" |
- }, |
"sentences": { |
"description": "The sentiment for all the sentences in the document.", |
"items": { |
@@ -638,6 +634,10 @@ |
"documentSentiment": { |
"$ref": "Sentiment", |
"description": "The overall sentiment of the input document." |
+ }, |
+ "language": { |
+ "description": "The language of the text, which will be the same as the language specified\nin the request or, if not specified, the automatically-detected language.\nSee Document.language field for more details.", |
+ "type": "string" |
} |
}, |
"type": "object" |
@@ -660,31 +660,6 @@ |
}, |
"type": "object" |
}, |
- "AnalyzeSyntaxResponse": { |
- "description": "The syntax analysis response message.", |
- "id": "AnalyzeSyntaxResponse", |
- "properties": { |
- "language": { |
- "description": "The language of the text, which will be the same as the language specified\nin the request or, if not specified, the automatically-detected language.\nSee Document.language field for more details.", |
- "type": "string" |
- }, |
- "sentences": { |
- "description": "Sentences in the input document.", |
- "items": { |
- "$ref": "Sentence" |
- }, |
- "type": "array" |
- }, |
- "tokens": { |
- "description": "Tokens, along with their syntactic information, in the input document.", |
- "items": { |
- "$ref": "Token" |
- }, |
- "type": "array" |
- } |
- }, |
- "type": "object" |
- }, |
"Entity": { |
"description": "Represents a phrase in the text that is a known entity, such as\na person, an organization, or location. The API associates information, such\nas salience and mentions, with entities.", |
"id": "Entity", |
@@ -739,6 +714,31 @@ |
}, |
"type": "object" |
}, |
+ "AnalyzeSyntaxResponse": { |
+ "description": "The syntax analysis response message.", |
+ "id": "AnalyzeSyntaxResponse", |
+ "properties": { |
+ "language": { |
+ "description": "The language of the text, which will be the same as the language specified\nin the request or, if not specified, the automatically-detected language.\nSee Document.language field for more details.", |
+ "type": "string" |
+ }, |
+ "sentences": { |
+ "description": "Sentences in the input document.", |
+ "items": { |
+ "$ref": "Sentence" |
+ }, |
+ "type": "array" |
+ }, |
+ "tokens": { |
+ "description": "Tokens, along with their syntactic information, in the input document.", |
+ "items": { |
+ "$ref": "Token" |
+ }, |
+ "type": "array" |
+ } |
+ }, |
+ "type": "object" |
+ }, |
"AnnotateTextRequest": { |
"description": "The request message for the text annotation API, which can perform multiple\nanalysis types (sentiment, entities, and syntax) in one call.", |
"id": "AnnotateTextRequest", |
@@ -770,14 +770,37 @@ |
}, |
"type": "object" |
}, |
+ "AnalyzeSentimentRequest": { |
+ "description": "The sentiment analysis request message.", |
+ "id": "AnalyzeSentimentRequest", |
+ "properties": { |
+ "encodingType": { |
+ "description": "The encoding type used by the API to calculate sentence offsets.", |
+ "enum": [ |
+ "NONE", |
+ "UTF8", |
+ "UTF16", |
+ "UTF32" |
+ ], |
+ "enumDescriptions": [ |
+ "If `EncodingType` is not specified, encoding-dependent information (such as\n`begin_offset`) will be set at `-1`.", |
+ "Encoding-dependent information (such as `begin_offset`) is calculated based\non the UTF-8 encoding of the input. C++ and Go are examples of languages\nthat use this encoding natively.", |
+ "Encoding-dependent information (such as `begin_offset`) is calculated based\non the UTF-16 encoding of the input. Java and Javascript are examples of\nlanguages that use this encoding natively.", |
+ "Encoding-dependent information (such as `begin_offset`) is calculated based\non the UTF-32 encoding of the input. Python is an example of a language\nthat uses this encoding natively." |
+ ], |
+ "type": "string" |
+ }, |
+ "document": { |
+ "$ref": "Document", |
+ "description": "Input document." |
+ } |
+ }, |
+ "type": "object" |
+ }, |
"AnnotateTextResponse": { |
"description": "The text annotations response message.", |
"id": "AnnotateTextResponse", |
"properties": { |
- "language": { |
- "description": "The language of the text, which will be the same as the language specified\nin the request or, if not specified, the automatically-detected language.\nSee Document.language field for more details.", |
- "type": "string" |
- }, |
"sentences": { |
"description": "Sentences in the input document. Populated if the user enables\nAnnotateTextRequest.Features.extract_syntax.", |
"items": { |
@@ -802,33 +825,10 @@ |
"documentSentiment": { |
"$ref": "Sentiment", |
"description": "The overall sentiment for the document. Populated if the user enables\nAnnotateTextRequest.Features.extract_document_sentiment." |
- } |
- }, |
- "type": "object" |
- }, |
- "AnalyzeSentimentRequest": { |
- "description": "The sentiment analysis request message.", |
- "id": "AnalyzeSentimentRequest", |
- "properties": { |
- "encodingType": { |
- "description": "The encoding type used by the API to calculate sentence offsets.", |
- "enum": [ |
- "NONE", |
- "UTF8", |
- "UTF16", |
- "UTF32" |
- ], |
- "enumDescriptions": [ |
- "If `EncodingType` is not specified, encoding-dependent information (such as\n`begin_offset`) will be set at `-1`.", |
- "Encoding-dependent information (such as `begin_offset`) is calculated based\non the UTF-8 encoding of the input. C++ and Go are examples of languages\nthat use this encoding natively.", |
- "Encoding-dependent information (such as `begin_offset`) is calculated based\non the UTF-16 encoding of the input. Java and Javascript are examples of\nlanguages that use this encoding natively.", |
- "Encoding-dependent information (such as `begin_offset`) is calculated based\non the UTF-32 encoding of the input. Python is an example of a language\nthat uses this encoding natively." |
- ], |
- "type": "string" |
}, |
- "document": { |
- "$ref": "Document", |
- "description": "Input document." |
+ "language": { |
+ "description": "The language of the text, which will be the same as the language specified\nin the request or, if not specified, the automatically-detected language.\nSee Document.language field for more details.", |
+ "type": "string" |
} |
}, |
"type": "object" |
@@ -1007,14 +1007,26 @@ |
}, |
"type": "object" |
}, |
+ "TextSpan": { |
+ "description": "Represents an output piece of text.", |
+ "id": "TextSpan", |
+ "properties": { |
+ "beginOffset": { |
+ "description": "The API calculates the beginning offset of the content in the original\ndocument according to the EncodingType specified in the API request.", |
+ "format": "int32", |
+ "type": "integer" |
+ }, |
+ "content": { |
+ "description": "The content of the output text.", |
+ "type": "string" |
+ } |
+ }, |
+ "type": "object" |
+ }, |
"Token": { |
"description": "Represents the smallest syntactic building block of the text.", |
"id": "Token", |
"properties": { |
- "partOfSpeech": { |
- "$ref": "PartOfSpeech", |
- "description": "Parts of speech tag for this token." |
- }, |
"text": { |
"$ref": "TextSpan", |
"description": "The token text." |
@@ -1026,22 +1038,10 @@ |
"lemma": { |
"description": "[Lemma](https://en.wikipedia.org/wiki/Lemma_%28morphology%29) of the token.", |
"type": "string" |
- } |
- }, |
- "type": "object" |
- }, |
- "TextSpan": { |
- "description": "Represents an output piece of text.", |
- "id": "TextSpan", |
- "properties": { |
- "beginOffset": { |
- "description": "The API calculates the beginning offset of the content in the original\ndocument according to the EncodingType specified in the API request.", |
- "format": "int32", |
- "type": "integer" |
}, |
- "content": { |
- "description": "The content of the output text.", |
- "type": "string" |
+ "partOfSpeech": { |
+ "$ref": "PartOfSpeech", |
+ "description": "Parts of speech tag for this token." |
} |
}, |
"type": "object" |
@@ -1050,10 +1050,6 @@ |
"description": "The `Status` type defines a logical error model that is suitable for different\nprogramming environments, including REST APIs and RPC APIs. It is used by\n[gRPC](https://github.com/grpc). The error model is designed to be:\n\n- Simple to use and understand for most users\n- Flexible enough to meet unexpected needs\n\n# Overview\n\nThe `Status` message contains three pieces of data: error code, error message,\nand error details. The error code should be an enum value of\ngoogle.rpc.Code, but it may accept additional error codes if needed. The\nerror message should be a developer-facing English message that helps\ndevelopers *understand* and *resolve* the error. If a localized user-facing\nerror message is needed, put the localized message in the error details or\nlocalize it in the client. The optional error details may contain arbitrary\ninformation about the error. There is a predefined set of error detail types\nin the package `google.rpc` that can be used for common error conditions.\n\n# Language mapping\n\nThe `Status` message is the logical representation of the error model, but it\nis not necessarily the actual wire format. When the `Status` message is\nexposed in different client libraries and different wire protocols, it can be\nmapped differently. For example, it will likely be mapped to some exceptions\nin Java, but more likely mapped to some error codes in C.\n\n# Other uses\n\nThe error model and the `Status` message can be used in a variety of\nenvironments, either with or without APIs, to provide a\nconsistent developer experience across different environments.\n\nExample uses of this error model include:\n\n- Partial errors. If a service needs to return partial errors to the client,\n it may embed the `Status` in the normal response to indicate the partial\n errors.\n\n- Workflow errors. A typical workflow has multiple steps. Each step may\n have a `Status` message for error reporting.\n\n- Batch operations. If a client uses batch request and batch response, the\n `Status` message should be used directly inside batch response, one for\n each error sub-response.\n\n- Asynchronous operations. If an API call embeds asynchronous operation\n results in its response, the status of those operations should be\n represented directly using the `Status` message.\n\n- Logging. If some API errors are stored in logs, the message `Status` could\n be used directly after any stripping needed for security/privacy reasons.", |
"id": "Status", |
"properties": { |
- "message": { |
- "description": "A developer-facing error message, which should be in English. Any\nuser-facing error message should be localized and sent in the\ngoogle.rpc.Status.details field, or localized by the client.", |
- "type": "string" |
- }, |
"details": { |
"description": "A list of messages that carry the error details. There will be a\ncommon set of message types for APIs to use.", |
"items": { |
@@ -1069,6 +1065,10 @@ |
"description": "The status code, which should be an enum value of google.rpc.Code.", |
"format": "int32", |
"type": "integer" |
+ }, |
+ "message": { |
+ "description": "A developer-facing error message, which should be in English. Any\nuser-facing error message should be localized and sent in the\ngoogle.rpc.Status.details field, or localized by the client.", |
+ "type": "string" |
} |
}, |
"type": "object" |