Movatterモバイル変換


[0]ホーム

URL:


translate

package
v0.257.0Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 2, 2025 License:BSD-3-ClauseImports:18Imported by:7

Details

Repository

github.com/googleapis/google-api-go-client

Links

Documentation

Overview

Package translate provides access to the Google Cloud Translation API.

This package is DEPRECATED. Use package cloud.google.com/go/translate instead.

For product documentation, see:https://code.google.com/apis/language/translate/v2/getting_started.html

Library status

These client libraries are officially supported by Google. However, thislibrary is considered complete and is in maintenance mode. This meansthat we will address critical bugs and security issues but will not addany new features.

When possible, we recommend using our newer[Cloud Client Libraries for Go](https://pkg.go.dev/cloud.google.com/go)that are still actively being worked and iterated on.

Creating a client

Usage example:

import "google.golang.org/api/translate/v2"...ctx := context.Background()translateService, err := translate.NewService(ctx)

In this example, Google Application Default Credentials are used forauthentication. For information on how to create and obtain ApplicationDefault Credentials, seehttps://developers.google.com/identity/protocols/application-default-credentials.

Other authentication options

By default, all available scopes (see "Constants") are used to authenticate.To restrict scopes, usegoogle.golang.org/api/option.WithScopes:

translateService, err := translate.NewService(ctx, option.WithScopes(translate.CloudTranslationScope))

To use an API key for authentication (note: some APIs do not support APIkeys), usegoogle.golang.org/api/option.WithAPIKey:

translateService, err := translate.NewService(ctx, option.WithAPIKey("AIza..."))

To use an OAuth token (e.g., a user token obtained via a three-legged OAuthflow, usegoogle.golang.org/api/option.WithTokenSource:

config := &oauth2.Config{...}// ...token, err := config.Exchange(ctx, ...)translateService, err := translate.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))

Seegoogle.golang.org/api/option.ClientOption for details on options.

Index

Constants

View Source
const (// View and manage your data across Google Cloud Platform servicesCloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform"// Translate text from one language to another using Google TranslateCloudTranslationScope = "https://www.googleapis.com/auth/cloud-translation")

OAuth2 scopes used by this API.

Variables

This section is empty.

Functions

This section is empty.

Types

typeDetectLanguageRequest

type DetectLanguageRequest struct {// Q: The input text upon which to perform language detection. Repeat// this// parameter to perform language detection on multiple text inputs.Q []string `json:"q,omitempty"`// ForceSendFields is a list of field names (e.g. "Q") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Q") to include in API requests// with the JSON null value. By default, fields with empty values are omitted// from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

DetectLanguageRequest: The request message for language detection.

func (DetectLanguageRequest)MarshalJSON

func (sDetectLanguageRequest) MarshalJSON() ([]byte,error)

typeDetectionsDetectCall

type DetectionsDetectCall struct {// contains filtered or unexported fields}

func (*DetectionsDetectCall)Context

Context sets the context to be used in this call's Do method.

func (*DetectionsDetectCall)Do

Do executes the "language.detections.detect" call.Any non-2xx status code is an error. Response headers are in either*DetectionsListResponse.ServerResponse.Header or (if a response was returnedat all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*DetectionsDetectCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*DetectionsDetectCall)Header

func (c *DetectionsDetectCall) Header()http.Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

typeDetectionsListCall

type DetectionsListCall struct {// contains filtered or unexported fields}

func (*DetectionsListCall)Context

Context sets the context to be used in this call's Do method.

func (*DetectionsListCall)Do

Do executes the "language.detections.list" call.Any non-2xx status code is an error. Response headers are in either*DetectionsListResponse.ServerResponse.Header or (if a response was returnedat all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*DetectionsListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*DetectionsListCall)Header

func (c *DetectionsListCall) Header()http.Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*DetectionsListCall)IfNoneMatch

func (c *DetectionsListCall) IfNoneMatch(entityTagstring) *DetectionsListCall

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

typeDetectionsListResponse

type DetectionsListResponse struct {// Detections: A detections contains detection results of several textDetections [][]*DetectionsResourceItem `json:"detections,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Detections") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Detections") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

func (DetectionsListResponse)MarshalJSON

func (sDetectionsListResponse) MarshalJSON() ([]byte,error)

typeDetectionsResourceItem

type DetectionsResourceItem struct {// Confidence: The confidence of the detection result of this language.Confidencefloat64 `json:"confidence,omitempty"`// IsReliable: A boolean to indicate is the language detection result reliable.IsReliablebool `json:"isReliable,omitempty"`// Language: The language we detected.Languagestring `json:"language,omitempty"`// ForceSendFields is a list of field names (e.g. "Confidence") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Confidence") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

func (DetectionsResourceItem)MarshalJSON

func (sDetectionsResourceItem) MarshalJSON() ([]byte,error)

func (*DetectionsResourceItem)UnmarshalJSON

func (s *DetectionsResourceItem) UnmarshalJSON(data []byte)error

typeDetectionsService

type DetectionsService struct {// contains filtered or unexported fields}

funcNewDetectionsService

func NewDetectionsService(s *Service) *DetectionsService

func (*DetectionsService)Detect

func (r *DetectionsService) Detect(detectlanguagerequest *DetectLanguageRequest) *DetectionsDetectCall

Detect: Detects the language of text within a request.

func (*DetectionsService)List

List: Detects the language of text within a request.

  • q: The input text upon which to perform language detection. Repeatthis

parameter to perform language detection on multiple text inputs.

typeGetSupportedLanguagesRequest

type GetSupportedLanguagesRequest struct {// Target: The language to use to return localized, human readable names of// supported// languages.Targetstring `json:"target,omitempty"`// ForceSendFields is a list of field names (e.g. "Target") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Target") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

GetSupportedLanguagesRequest: The request message for discovering supportedlanguages.

func (GetSupportedLanguagesRequest)MarshalJSON

func (sGetSupportedLanguagesRequest) MarshalJSON() ([]byte,error)

typeLanguagesListCall

type LanguagesListCall struct {// contains filtered or unexported fields}

func (*LanguagesListCall)Context

Context sets the context to be used in this call's Do method.

func (*LanguagesListCall)Do

Do executes the "language.languages.list" call.Any non-2xx status code is an error. Response headers are in either*LanguagesListResponse.ServerResponse.Header or (if a response was returnedat all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified tocheck whether the returned error was because http.StatusNotModified wasreturned.

func (*LanguagesListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*LanguagesListCall)Header

func (c *LanguagesListCall) Header()http.Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*LanguagesListCall)IfNoneMatch

func (c *LanguagesListCall) IfNoneMatch(entityTagstring) *LanguagesListCall

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*LanguagesListCall)Model

Model sets the optional parameter "model": The model type for whichsupported languages should be returned.

func (*LanguagesListCall)Target

func (c *LanguagesListCall) Target(targetstring) *LanguagesListCall

Target sets the optional parameter "target": The language to use to returnlocalized, human readable names of supportedlanguages.

typeLanguagesListResponse

type LanguagesListResponse struct {// Languages: List of source/target languages supported by the translation API.// If target parameter is unspecified, the list is sorted by the ASCII code// point order of the language code. If target parameter is specified, the list// is sorted by the collation order of the language name in the target// language.Languages []*LanguagesResource `json:"languages,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Languages") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Languages") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

func (LanguagesListResponse)MarshalJSON

func (sLanguagesListResponse) MarshalJSON() ([]byte,error)

typeLanguagesResource

type LanguagesResource struct {// Language: Supported language code, generally consisting of its ISO// 639-1// identifier. (E.g. 'en', 'ja'). In certain cases, BCP-47 codes// including// language + region identifiers are returned (e.g. 'zh-TW' and 'zh-CH')Languagestring `json:"language,omitempty"`// Name: Human readable name of the language localized to the target language.Namestring `json:"name,omitempty"`// ForceSendFields is a list of field names (e.g. "Language") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Language") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

func (LanguagesResource)MarshalJSON

func (sLanguagesResource) MarshalJSON() ([]byte,error)

typeLanguagesService

type LanguagesService struct {// contains filtered or unexported fields}

funcNewLanguagesService

func NewLanguagesService(s *Service) *LanguagesService

func (*LanguagesService)List

List: Returns a list of supported languages for translation.

typeService

type Service struct {BasePathstring// API endpoint base URLUserAgentstring// optional additional User-Agent fragmentDetections *DetectionsServiceLanguages *LanguagesServiceTranslations *TranslationsService// contains filtered or unexported fields}

funcNewdeprecated

func New(client *http.Client) (*Service,error)

New creates a new Service. It uses the provided http.Client for requests.

Deprecated: please use NewService instead.To provide a custom HTTP client, use option.WithHTTPClient.If you are using google.golang.org/api/googleapis/transport.APIKey, use option.WithAPIKey with NewService instead.

funcNewServiceadded inv0.3.0

func NewService(ctxcontext.Context, opts ...option.ClientOption) (*Service,error)

NewService creates a new Service.

typeTranslateTextRequest

type TranslateTextRequest struct {// Format: The format of the source text, in either HTML (default) or// plain-text. A// value of "html" indicates HTML and a value of "text" indicates plain-text.Formatstring `json:"format,omitempty"`// Model: The `model` type requested for this translation. Valid values// are// listed in public documentation.Modelstring `json:"model,omitempty"`// Q: The input text to translate. Repeat this parameter to perform// translation// operations on multiple text inputs.Q []string `json:"q,omitempty"`// Source: The language of the source text, set to one of the language codes// listed in// Language Support. If the source language is not specified, the API// will// attempt to identify the source language automatically and return it// within// the response.Sourcestring `json:"source,omitempty"`// Target: The language to use for translation of the input text, set to one of// the// language codes listed in Language Support.Targetstring `json:"target,omitempty"`// ForceSendFields is a list of field names (e.g. "Format") to unconditionally// include in API requests. By default, fields with empty or default values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Format") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

TranslateTextRequest: The main translation request message for the CloudTranslation API.

func (TranslateTextRequest)MarshalJSON

func (sTranslateTextRequest) MarshalJSON() ([]byte,error)

typeTranslationsListCall

type TranslationsListCall struct {// contains filtered or unexported fields}

func (*TranslationsListCall)Cid

Cid sets the optional parameter "cid": The customization id for translate

func (*TranslationsListCall)Context

Context sets the context to be used in this call's Do method.

func (*TranslationsListCall)Do

Do executes the "language.translations.list" call.Any non-2xx status code is an error. Response headers are in either*TranslationsListResponse.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*TranslationsListCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*TranslationsListCall)Format

Format sets the optional parameter "format": The format of the source text,in either HTML (default) or plain-text. Avalue of "html" indicates HTML and a value of "text" indicates plain-text.

Possible values:

"html" - Specifies the input is in HTML"text" - Specifies the input is in plain textual format

func (*TranslationsListCall)Header

func (c *TranslationsListCall) Header()http.Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

func (*TranslationsListCall)IfNoneMatch

func (c *TranslationsListCall) IfNoneMatch(entityTagstring) *TranslationsListCall

IfNoneMatch sets an optional parameter which makes the operation fail if theobject's ETag matches the given value. This is useful for getting updatesonly after the object has changed since the last request.

func (*TranslationsListCall)Model

Model sets the optional parameter "model": The `model` type requested forthis translation. Valid values arelisted in public documentation.

func (*TranslationsListCall)Source

Source sets the optional parameter "source": The language of the sourcetext, set to one of the language codes listed inLanguage Support. If the source language is not specified, the APIwillattempt to identify the source language automatically and return itwithinthe response.

typeTranslationsListResponse

type TranslationsListResponse struct {// Translations: Translations contains list of translation results of given// textTranslations []*TranslationsResource `json:"translations,omitempty"`// ServerResponse contains the HTTP response code and headers from the server.googleapi.ServerResponse `json:"-"`// ForceSendFields is a list of field names (e.g. "Translations") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "Translations") to include in API// requests with the JSON null value. By default, fields with empty values are// omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

TranslationsListResponse: The main language translation response message.

func (TranslationsListResponse)MarshalJSON

func (sTranslationsListResponse) MarshalJSON() ([]byte,error)

typeTranslationsResource

type TranslationsResource struct {// DetectedSourceLanguage: The source language of the initial request, detected// automatically, if// no source language was passed within the initial request. If the// source language was passed, auto-detection of the language will not// occur and this field will be empty.DetectedSourceLanguagestring `json:"detectedSourceLanguage,omitempty"`// Model: The `model` type used for this translation. Valid values are// listed in public documentation. Can be different from requested// `model`.// Present only if specific model type was explicitly requested.Modelstring `json:"model,omitempty"`// TranslatedText: Text translated into the target language.TranslatedTextstring `json:"translatedText,omitempty"`// ForceSendFields is a list of field names (e.g. "DetectedSourceLanguage") to// unconditionally include in API requests. By default, fields with empty or// default values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-ForceSendFields for more// details.ForceSendFields []string `json:"-"`// NullFields is a list of field names (e.g. "DetectedSourceLanguage") to// include in API requests with the JSON null value. By default, fields with// empty values are omitted from API requests. See//https://pkg.go.dev/google.golang.org/api#hdr-NullFields for more details.NullFields []string `json:"-"`}

func (TranslationsResource)MarshalJSON

func (sTranslationsResource) MarshalJSON() ([]byte,error)

typeTranslationsService

type TranslationsService struct {// contains filtered or unexported fields}

funcNewTranslationsService

func NewTranslationsService(s *Service) *TranslationsService

func (*TranslationsService)List

List: Translates input text, returning translated text.

  • q: The input text to translate. Repeat this parameter to performtranslation

operations on multiple text inputs.

  • target: The language to use for translation of the input text, set to oneof the

language codes listed in Language Support.

func (*TranslationsService)Translate

func (r *TranslationsService) Translate(translatetextrequest *TranslateTextRequest) *TranslationsTranslateCall

Translate: Translates input text, returning translated text.

typeTranslationsTranslateCall

type TranslationsTranslateCall struct {// contains filtered or unexported fields}

func (*TranslationsTranslateCall)Context

Context sets the context to be used in this call's Do method.

func (*TranslationsTranslateCall)Do

Do executes the "language.translations.translate" call.Any non-2xx status code is an error. Response headers are in either*TranslationsListResponse.ServerResponse.Header or (if a response wasreturned at all) in error.(*googleapi.Error).Header. Usegoogleapi.IsNotModified to check whether the returned error was becausehttp.StatusNotModified was returned.

func (*TranslationsTranslateCall)Fields

Fields allows partial responses to be retrieved. Seehttps://developers.google.com/gdata/docs/2.0/basics#PartialResponse for moredetails.

func (*TranslationsTranslateCall)Header

Header returns a http.Header that can be modified by the caller to addheaders to the request.

Source Files

View all Source files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f orF : Jump to
y orY : Canonical URL
go.dev uses cookies from Google to deliver and enhance the quality of its services and to analyze traffic.Learn more.

[8]ページ先頭

©2009-2025 Movatter.jp