From 412946966cf7f53c51deff1b1cc1a12d62ed0279 Mon Sep 17 00:00:00 2001 From: Cody Oss <6331106+codyoss@users.noreply.github.com> Date: Mon, 1 Feb 2021 08:15:25 -0700 Subject: [PATCH] feat(mediatranslation): start generating apiv1beta1 (#3636) --- internal/.repo-metadata-full.json | 8 + internal/gapicgen/generator/config.go | 8 + mediatranslation/apiv1beta1/doc.go | 114 ++++++++++++++ .../apiv1beta1/speech_translation_client.go | 149 ++++++++++++++++++ .../speech_translation_client_example_test.go | 71 +++++++++ 5 files changed, 350 insertions(+) create mode 100644 mediatranslation/apiv1beta1/doc.go create mode 100644 mediatranslation/apiv1beta1/speech_translation_client.go create mode 100644 mediatranslation/apiv1beta1/speech_translation_client_example_test.go diff --git a/internal/.repo-metadata-full.json b/internal/.repo-metadata-full.json index 283129c3fba..60f05d1add3 100644 --- a/internal/.repo-metadata-full.json +++ b/internal/.repo-metadata-full.json @@ -527,6 +527,14 @@ "docs_url": "https://pkg.go.dev/cloud.google.com/go/managedidentities/apiv1", "release_level": "ga" }, + "cloud.google.com/go/mediatranslation/apiv1beta1": { + "distribution_name": "cloud.google.com/go/mediatranslation/apiv1beta1", + "description": "Media Translation API", + "language": "Go", + "client_library_type": "generated", + "docs_url": "https://pkg.go.dev/cloud.google.com/go/mediatranslation/apiv1beta1", + "release_level": "beta" + }, "cloud.google.com/go/memcache/apiv1": { "distribution_name": "cloud.google.com/go/memcache/apiv1", "description": "Cloud Memorystore for Memcached API", diff --git a/internal/gapicgen/generator/config.go b/internal/gapicgen/generator/config.go index 2106205f5fd..666973ed4e6 100644 --- a/internal/gapicgen/generator/config.go +++ b/internal/gapicgen/generator/config.go @@ -965,6 +965,14 @@ var microgenGapicConfigs = []*microgenConfig{ apiServiceConfigPath: "google/cloud/domains/v1beta1/domains_v1beta1.yaml", releaseLevel: "beta", }, + { + inputDirectoryPath: "google/cloud/mediatranslation/v1beta1", + pkg: "mediatranslation", + importPath: "cloud.google.com/go/mediatranslation/apiv1beta1", + gRPCServiceConfigPath: "google/cloud/mediatranslation/v1beta1/mediatranslation_grpc_service_config.json", + apiServiceConfigPath: "google/cloud/mediatranslation/v1beta1/mediatranslation_v1beta1.yaml", + releaseLevel: "beta", + }, // Non-Cloud APIs { diff --git a/mediatranslation/apiv1beta1/doc.go b/mediatranslation/apiv1beta1/doc.go new file mode 100644 index 00000000000..ad2055ddeb4 --- /dev/null +++ b/mediatranslation/apiv1beta1/doc.go @@ -0,0 +1,114 @@ +// Copyright 2021 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Code generated by protoc-gen-go_gapic. DO NOT EDIT. + +// Package mediatranslation is an auto-generated package for the +// Media Translation API. +// +// Use of Context +// +// The ctx passed to NewClient is used for authentication requests and +// for creating the underlying connection, but is not used for subsequent calls. +// Individual methods on the client use the ctx given to them. +// +// To close the open connection, use the Close() method. +// +// For information about setting deadlines, reusing contexts, and more +// please visit pkg.go.dev/cloud.google.com/go. +package mediatranslation // import "cloud.google.com/go/mediatranslation/apiv1beta1" + +import ( + "context" + "os" + "runtime" + "strconv" + "strings" + "unicode" + + "google.golang.org/api/option" + "google.golang.org/grpc/metadata" +) + +// For more information on implementing a client constructor hook, see +// https://github.com/googleapis/google-cloud-go/wiki/Customizing-constructors. +type clientHookParams struct{} +type clientHook func(context.Context, clientHookParams) ([]option.ClientOption, error) + +const versionClient = "20210129" + +func insertMetadata(ctx context.Context, mds ...metadata.MD) context.Context { + out, _ := metadata.FromOutgoingContext(ctx) + out = out.Copy() + for _, md := range mds { + for k, v := range md { + out[k] = append(out[k], v...) + } + } + return metadata.NewOutgoingContext(ctx, out) +} + +func checkDisableDeadlines() (bool, error) { + raw, ok := os.LookupEnv("GOOGLE_API_GO_EXPERIMENTAL_DISABLE_DEFAULT_DEADLINE") + if !ok { + return false, nil + } + + b, err := strconv.ParseBool(raw) + return b, err +} + +// DefaultAuthScopes reports the default set of authentication scopes to use with this package. +func DefaultAuthScopes() []string { + return []string{ + "https://www.googleapis.com/auth/cloud-platform", + } +} + +// versionGo returns the Go runtime version. The returned string +// has no whitespace, suitable for reporting in header. +func versionGo() string { + const develPrefix = "devel +" + + s := runtime.Version() + if strings.HasPrefix(s, develPrefix) { + s = s[len(develPrefix):] + if p := strings.IndexFunc(s, unicode.IsSpace); p >= 0 { + s = s[:p] + } + return s + } + + notSemverRune := func(r rune) bool { + return !strings.ContainsRune("0123456789.", r) + } + + if strings.HasPrefix(s, "go1") { + s = s[2:] + var prerelease string + if p := strings.IndexFunc(s, notSemverRune); p >= 0 { + s, prerelease = s[:p], s[p:] + } + if strings.HasSuffix(s, ".") { + s += "0" + } else if strings.Count(s, ".") < 2 { + s += ".0" + } + if prerelease != "" { + s += "-" + prerelease + } + return s + } + return "UNKNOWN" +} diff --git a/mediatranslation/apiv1beta1/speech_translation_client.go b/mediatranslation/apiv1beta1/speech_translation_client.go new file mode 100644 index 00000000000..3dae2b11498 --- /dev/null +++ b/mediatranslation/apiv1beta1/speech_translation_client.go @@ -0,0 +1,149 @@ +// Copyright 2021 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Code generated by protoc-gen-go_gapic. DO NOT EDIT. + +package mediatranslation + +import ( + "context" + "math" + + gax "github.com/googleapis/gax-go/v2" + "google.golang.org/api/option" + "google.golang.org/api/option/internaloption" + gtransport "google.golang.org/api/transport/grpc" + mediatranslationpb "google.golang.org/genproto/googleapis/cloud/mediatranslation/v1beta1" + "google.golang.org/grpc" + "google.golang.org/grpc/metadata" +) + +var newSpeechTranslationClientHook clientHook + +// SpeechTranslationCallOptions contains the retry settings for each method of SpeechTranslationClient. +type SpeechTranslationCallOptions struct { + StreamingTranslateSpeech []gax.CallOption +} + +func defaultSpeechTranslationClientOptions() []option.ClientOption { + return []option.ClientOption{ + internaloption.WithDefaultEndpoint("mediatranslation.googleapis.com:443"), + internaloption.WithDefaultMTLSEndpoint("mediatranslation.mtls.googleapis.com:443"), + internaloption.WithDefaultAudience("https://mediatranslation.googleapis.com/"), + internaloption.WithDefaultScopes(DefaultAuthScopes()...), + option.WithGRPCDialOption(grpc.WithDisableServiceConfig()), + option.WithGRPCDialOption(grpc.WithDefaultCallOptions( + grpc.MaxCallRecvMsgSize(math.MaxInt32))), + } +} + +func defaultSpeechTranslationCallOptions() *SpeechTranslationCallOptions { + return &SpeechTranslationCallOptions{ + StreamingTranslateSpeech: []gax.CallOption{}, + } +} + +// SpeechTranslationClient is a client for interacting with Media Translation API. +// +// Methods, except Close, may be called concurrently. However, fields must not be modified concurrently with method calls. +type SpeechTranslationClient struct { + // Connection pool of gRPC connections to the service. + connPool gtransport.ConnPool + + // flag to opt out of default deadlines via GOOGLE_API_GO_EXPERIMENTAL_DISABLE_DEFAULT_DEADLINE + disableDeadlines bool + + // The gRPC API client. + speechTranslationClient mediatranslationpb.SpeechTranslationServiceClient + + // The call options for this service. + CallOptions *SpeechTranslationCallOptions + + // The x-goog-* metadata to be sent with each request. + xGoogMetadata metadata.MD +} + +// NewSpeechTranslationClient creates a new speech translation service client. +// +// Provides translation from/to media types. +func NewSpeechTranslationClient(ctx context.Context, opts ...option.ClientOption) (*SpeechTranslationClient, error) { + clientOpts := defaultSpeechTranslationClientOptions() + + if newSpeechTranslationClientHook != nil { + hookOpts, err := newSpeechTranslationClientHook(ctx, clientHookParams{}) + if err != nil { + return nil, err + } + clientOpts = append(clientOpts, hookOpts...) + } + + disableDeadlines, err := checkDisableDeadlines() + if err != nil { + return nil, err + } + + connPool, err := gtransport.DialPool(ctx, append(clientOpts, opts...)...) + if err != nil { + return nil, err + } + c := &SpeechTranslationClient{ + connPool: connPool, + disableDeadlines: disableDeadlines, + CallOptions: defaultSpeechTranslationCallOptions(), + + speechTranslationClient: mediatranslationpb.NewSpeechTranslationServiceClient(connPool), + } + c.setGoogleClientInfo() + + return c, nil +} + +// Connection returns a connection to the API service. +// +// Deprecated. +func (c *SpeechTranslationClient) Connection() *grpc.ClientConn { + return c.connPool.Conn() +} + +// Close closes the connection to the API service. The user should invoke this when +// the client is no longer required. +func (c *SpeechTranslationClient) Close() error { + return c.connPool.Close() +} + +// setGoogleClientInfo sets the name and version of the application in +// the `x-goog-api-client` header passed on each request. Intended for +// use by Google-written clients. +func (c *SpeechTranslationClient) setGoogleClientInfo(keyval ...string) { + kv := append([]string{"gl-go", versionGo()}, keyval...) + kv = append(kv, "gapic", versionClient, "gax", gax.Version, "grpc", grpc.Version) + c.xGoogMetadata = metadata.Pairs("x-goog-api-client", gax.XGoogHeader(kv...)) +} + +// StreamingTranslateSpeech performs bidirectional streaming speech translation: receive results while +// sending audio. This method is only available via the gRPC API (not REST). +func (c *SpeechTranslationClient) StreamingTranslateSpeech(ctx context.Context, opts ...gax.CallOption) (mediatranslationpb.SpeechTranslationService_StreamingTranslateSpeechClient, error) { + ctx = insertMetadata(ctx, c.xGoogMetadata) + opts = append(c.CallOptions.StreamingTranslateSpeech[0:len(c.CallOptions.StreamingTranslateSpeech):len(c.CallOptions.StreamingTranslateSpeech)], opts...) + var resp mediatranslationpb.SpeechTranslationService_StreamingTranslateSpeechClient + err := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + var err error + resp, err = c.speechTranslationClient.StreamingTranslateSpeech(ctx, settings.GRPC...) + return err + }, opts...) + if err != nil { + return nil, err + } + return resp, nil +} diff --git a/mediatranslation/apiv1beta1/speech_translation_client_example_test.go b/mediatranslation/apiv1beta1/speech_translation_client_example_test.go new file mode 100644 index 00000000000..a463fc395e7 --- /dev/null +++ b/mediatranslation/apiv1beta1/speech_translation_client_example_test.go @@ -0,0 +1,71 @@ +// Copyright 2021 Google LLC +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// https://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +// Code generated by protoc-gen-go_gapic. DO NOT EDIT. + +package mediatranslation_test + +import ( + "context" + "io" + + mediatranslation "cloud.google.com/go/mediatranslation/apiv1beta1" + mediatranslationpb "google.golang.org/genproto/googleapis/cloud/mediatranslation/v1beta1" +) + +func ExampleNewSpeechTranslationClient() { + ctx := context.Background() + c, err := mediatranslation.NewSpeechTranslationClient(ctx) + if err != nil { + // TODO: Handle error. + } + // TODO: Use client. + _ = c +} + +func ExampleSpeechTranslationClient_StreamingTranslateSpeech() { + // import mediatranslationpb "google.golang.org/genproto/googleapis/cloud/mediatranslation/v1beta1" + + ctx := context.Background() + c, err := mediatranslation.NewSpeechTranslationClient(ctx) + if err != nil { + // TODO: Handle error. + } + stream, err := c.StreamingTranslateSpeech(ctx) + if err != nil { + // TODO: Handle error. + } + go func() { + reqs := []*mediatranslationpb.StreamingTranslateSpeechRequest{ + // TODO: Create requests. + } + for _, req := range reqs { + if err := stream.Send(req); err != nil { + // TODO: Handle error. + } + } + stream.CloseSend() + }() + for { + resp, err := stream.Recv() + if err == io.EOF { + break + } + if err != nil { + // TODO: handle error. + } + // TODO: Use resp. + _ = resp + } +}