interface GoogleCloudNaturalLanguageNodeParameters {
content?: string;
gcsContentUri?: string;
operation?: "analyzeSentiment";
options?: {
documentType?: "HTML" | "PLAIN_TEXT";
encodingType?: "NONE" | "UTF8" | "UTF16" | "UTF32";
language?:
| "nl"
| "en"
| "fr"
| "de"
| "id"
| "ja"
| "pt"
| "es"
| "tr"
| "ar"
| "zh"
| "it"
| "ko"
| "th"
| "vi"
| "zh-Hant";
};
resource?: "document";
source?: "content"
| "gcsContentUri";
}
Properties§
Source§readonly gcs Content Uri?: string
readonly gcs Content Uri?: string
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 reference.
The content of the input in string format. Cloud audit logging exempt since it is based on user data.