-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
speech-gen.go
3225 lines (3006 loc) · 132 KB
/
speech-gen.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2024 Google LLC.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Code generated file. DO NOT EDIT.
// Package speech provides access to the Cloud Speech-to-Text API.
//
// This package is DEPRECATED. Use package cloud.google.com/go/speech/apiv1 instead.
//
// For product documentation, see: https://cloud.google.com/speech-to-text/docs/quickstart-protocol
//
// # Library status
//
// These client libraries are officially supported by Google. However, this
// library is considered complete and is in maintenance mode. This means
// that we will address critical bugs and security issues but will not add
// any 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/speech/v1"
// ...
// ctx := context.Background()
// speechService, err := speech.NewService(ctx)
//
// In this example, Google Application Default Credentials are used for
// authentication. For information on how to create and obtain Application
// Default Credentials, see https://developers.google.com/identity/protocols/application-default-credentials.
//
// # Other authentication options
//
// To use an API key for authentication (note: some APIs do not support API
// keys), use [google.golang.org/api/option.WithAPIKey]:
//
// speechService, err := speech.NewService(ctx, option.WithAPIKey("AIza..."))
//
// To use an OAuth token (e.g., a user token obtained via a three-legged OAuth
// flow, use [google.golang.org/api/option.WithTokenSource]:
//
// config := &oauth2.Config{...}
// // ...
// token, err := config.Exchange(ctx, ...)
// speechService, err := speech.NewService(ctx, option.WithTokenSource(config.TokenSource(ctx, token)))
//
// See [google.golang.org/api/option.ClientOption] for details on options.
package speech // import "google.golang.org/api/speech/v1"
import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
"io"
"net/http"
"net/url"
"strconv"
"strings"
googleapi "google.golang.org/api/googleapi"
internal "google.golang.org/api/internal"
gensupport "google.golang.org/api/internal/gensupport"
option "google.golang.org/api/option"
internaloption "google.golang.org/api/option/internaloption"
htransport "google.golang.org/api/transport/http"
)
// Always reference these packages, just in case the auto-generated code
// below doesn't.
var _ = bytes.NewBuffer
var _ = strconv.Itoa
var _ = fmt.Sprintf
var _ = json.NewDecoder
var _ = io.Copy
var _ = url.Parse
var _ = gensupport.MarshalJSON
var _ = googleapi.Version
var _ = errors.New
var _ = strings.Replace
var _ = context.Canceled
var _ = internaloption.WithDefaultEndpoint
var _ = internal.Version
const apiId = "speech:v1"
const apiName = "speech"
const apiVersion = "v1"
const basePath = "https://speech.googleapis.com/"
const basePathTemplate = "https://speech.UNIVERSE_DOMAIN/"
const mtlsBasePath = "https://speech.mtls.googleapis.com/"
// OAuth2 scopes used by this API.
const (
// See, edit, configure, and delete your Google Cloud data and see the email
// address for your Google Account.
CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform"
)
// NewService creates a new Service.
func NewService(ctx context.Context, opts ...option.ClientOption) (*Service, error) {
scopesOption := internaloption.WithDefaultScopes(
"https://www.googleapis.com/auth/cloud-platform",
)
// NOTE: prepend, so we don't override user-specified scopes.
opts = append([]option.ClientOption{scopesOption}, opts...)
opts = append(opts, internaloption.WithDefaultEndpoint(basePath))
opts = append(opts, internaloption.WithDefaultEndpointTemplate(basePathTemplate))
opts = append(opts, internaloption.WithDefaultMTLSEndpoint(mtlsBasePath))
opts = append(opts, internaloption.EnableNewAuthLibrary())
client, endpoint, err := htransport.NewClient(ctx, opts...)
if err != nil {
return nil, err
}
s, err := New(client)
if err != nil {
return nil, err
}
if endpoint != "" {
s.BasePath = endpoint
}
return s, nil
}
// 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.
func New(client *http.Client) (*Service, error) {
if client == nil {
return nil, errors.New("client is nil")
}
s := &Service{client: client, BasePath: basePath}
s.Operations = NewOperationsService(s)
s.Projects = NewProjectsService(s)
s.Speech = NewSpeechService(s)
return s, nil
}
type Service struct {
client *http.Client
BasePath string // API endpoint base URL
UserAgent string // optional additional User-Agent fragment
Operations *OperationsService
Projects *ProjectsService
Speech *SpeechService
}
func (s *Service) userAgent() string {
if s.UserAgent == "" {
return googleapi.UserAgent
}
return googleapi.UserAgent + " " + s.UserAgent
}
func NewOperationsService(s *Service) *OperationsService {
rs := &OperationsService{s: s}
return rs
}
type OperationsService struct {
s *Service
}
func NewProjectsService(s *Service) *ProjectsService {
rs := &ProjectsService{s: s}
rs.Locations = NewProjectsLocationsService(s)
return rs
}
type ProjectsService struct {
s *Service
Locations *ProjectsLocationsService
}
func NewProjectsLocationsService(s *Service) *ProjectsLocationsService {
rs := &ProjectsLocationsService{s: s}
rs.CustomClasses = NewProjectsLocationsCustomClassesService(s)
rs.PhraseSets = NewProjectsLocationsPhraseSetsService(s)
return rs
}
type ProjectsLocationsService struct {
s *Service
CustomClasses *ProjectsLocationsCustomClassesService
PhraseSets *ProjectsLocationsPhraseSetsService
}
func NewProjectsLocationsCustomClassesService(s *Service) *ProjectsLocationsCustomClassesService {
rs := &ProjectsLocationsCustomClassesService{s: s}
return rs
}
type ProjectsLocationsCustomClassesService struct {
s *Service
}
func NewProjectsLocationsPhraseSetsService(s *Service) *ProjectsLocationsPhraseSetsService {
rs := &ProjectsLocationsPhraseSetsService{s: s}
return rs
}
type ProjectsLocationsPhraseSetsService struct {
s *Service
}
func NewSpeechService(s *Service) *SpeechService {
rs := &SpeechService{s: s}
return rs
}
type SpeechService struct {
s *Service
}
type ABNFGrammar struct {
// AbnfStrings: All declarations and rules of an ABNF grammar broken up into
// multiple strings that will end up concatenated.
AbnfStrings []string `json:"abnfStrings,omitempty"`
// ForceSendFields is a list of field names (e.g. "AbnfStrings") 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. "AbnfStrings") 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 (s *ABNFGrammar) MarshalJSON() ([]byte, error) {
type NoMethod ABNFGrammar
return gensupport.MarshalJSON(NoMethod(*s), s.ForceSendFields, s.NullFields)
}
// ClassItem: An item of the class.
type ClassItem struct {
// Value: The class item's value.
Value string `json:"value,omitempty"`
// ForceSendFields is a list of field names (e.g. "Value") 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. "Value") 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 (s *ClassItem) MarshalJSON() ([]byte, error) {
type NoMethod ClassItem
return gensupport.MarshalJSON(NoMethod(*s), s.ForceSendFields, s.NullFields)
}
// CreateCustomClassRequest: Message sent by the client for the
// `CreateCustomClass` method.
type CreateCustomClassRequest struct {
// CustomClass: Required. The custom class to create.
CustomClass *CustomClass `json:"customClass,omitempty"`
// CustomClassId: Required. The ID to use for the custom class, which will
// become the final component of the custom class' resource name. This value
// should restrict to letters, numbers, and hyphens, with the first character a
// letter, the last a letter or a number, and be 4-63 characters.
CustomClassId string `json:"customClassId,omitempty"`
// ForceSendFields is a list of field names (e.g. "CustomClass") 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. "CustomClass") 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 (s *CreateCustomClassRequest) MarshalJSON() ([]byte, error) {
type NoMethod CreateCustomClassRequest
return gensupport.MarshalJSON(NoMethod(*s), s.ForceSendFields, s.NullFields)
}
// CreatePhraseSetRequest: Message sent by the client for the `CreatePhraseSet`
// method.
type CreatePhraseSetRequest struct {
// PhraseSet: Required. The phrase set to create.
PhraseSet *PhraseSet `json:"phraseSet,omitempty"`
// PhraseSetId: Required. The ID to use for the phrase set, which will become
// the final component of the phrase set's resource name. This value should
// restrict to letters, numbers, and hyphens, with the first character a
// letter, the last a letter or a number, and be 4-63 characters.
PhraseSetId string `json:"phraseSetId,omitempty"`
// ForceSendFields is a list of field names (e.g. "PhraseSet") 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. "PhraseSet") 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 (s *CreatePhraseSetRequest) MarshalJSON() ([]byte, error) {
type NoMethod CreatePhraseSetRequest
return gensupport.MarshalJSON(NoMethod(*s), s.ForceSendFields, s.NullFields)
}
// CustomClass: A set of words or phrases that represents a common concept
// likely to appear in your audio, for example a list of passenger ship names.
// CustomClass items can be substituted into placeholders that you set in
// PhraseSet phrases.
type CustomClass struct {
// Annotations: Output only. Allows users to store small amounts of arbitrary
// data. Both the key and the value must be 63 characters or less each. At most
// 100 annotations. This field is not used.
Annotations map[string]string `json:"annotations,omitempty"`
// CustomClassId: If this custom class is a resource, the custom_class_id is
// the resource id of the CustomClass. Case sensitive.
CustomClassId string `json:"customClassId,omitempty"`
// DeleteTime: Output only. The time at which this resource was requested for
// deletion. This field is not used.
DeleteTime string `json:"deleteTime,omitempty"`
// DisplayName: Output only. User-settable, human-readable name for the
// CustomClass. Must be 63 characters or less. This field is not used.
DisplayName string `json:"displayName,omitempty"`
// Etag: Output only. This checksum is computed by the server based on the
// value of other fields. This may be sent on update, undelete, and delete
// requests to ensure the client has an up-to-date value before proceeding.
// This field is not used.
Etag string `json:"etag,omitempty"`
// ExpireTime: Output only. The time at which this resource will be purged.
// This field is not used.
ExpireTime string `json:"expireTime,omitempty"`
// Items: A collection of class items.
Items []*ClassItem `json:"items,omitempty"`
// KmsKeyName: Output only. The KMS key name
// (https://cloud.google.com/kms/docs/resource-hierarchy#keys) with which the
// content of the ClassItem is encrypted. The expected format is
// `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{cryp
// to_key}`.
KmsKeyName string `json:"kmsKeyName,omitempty"`
// KmsKeyVersionName: Output only. The KMS key version name
// (https://cloud.google.com/kms/docs/resource-hierarchy#key_versions) with
// which content of the ClassItem is encrypted. The expected format is
// `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{cryp
// to_key}/cryptoKeyVersions/{crypto_key_version}`.
KmsKeyVersionName string `json:"kmsKeyVersionName,omitempty"`
// Name: The resource name of the custom class.
Name string `json:"name,omitempty"`
// Reconciling: Output only. Whether or not this CustomClass is in the process
// of being updated. This field is not used.
Reconciling bool `json:"reconciling,omitempty"`
// State: Output only. The CustomClass lifecycle state. This field is not used.
//
// Possible values:
// "STATE_UNSPECIFIED" - Unspecified state. This is only used/useful for
// distinguishing unset values.
// "ACTIVE" - The normal and active state.
// "DELETED" - This CustomClass has been deleted.
State string `json:"state,omitempty"`
// Uid: Output only. System-assigned unique identifier for the CustomClass.
// This field is not used.
Uid string `json:"uid,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "Annotations") 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. "Annotations") 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 (s *CustomClass) MarshalJSON() ([]byte, error) {
type NoMethod CustomClass
return gensupport.MarshalJSON(NoMethod(*s), s.ForceSendFields, s.NullFields)
}
// Empty: A generic empty message that you can re-use to avoid defining
// duplicated empty messages in your APIs. A typical example is to use it as
// the request or the response type of an API method. For instance: service Foo
// { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }
type Empty struct {
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
}
// Entry: A single replacement configuration.
type Entry struct {
// CaseSensitive: Whether the search is case sensitive.
CaseSensitive bool `json:"caseSensitive,omitempty"`
// Replace: What to replace with. Max length is 100 characters.
Replace string `json:"replace,omitempty"`
// Search: What to replace. Max length is 100 characters.
Search string `json:"search,omitempty"`
// ForceSendFields is a list of field names (e.g. "CaseSensitive") 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. "CaseSensitive") 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 (s *Entry) MarshalJSON() ([]byte, error) {
type NoMethod Entry
return gensupport.MarshalJSON(NoMethod(*s), s.ForceSendFields, s.NullFields)
}
// ListCustomClassesResponse: Message returned to the client by the
// `ListCustomClasses` method.
type ListCustomClassesResponse struct {
// CustomClasses: The custom classes.
CustomClasses []*CustomClass `json:"customClasses,omitempty"`
// NextPageToken: A token, which can be sent as `page_token` to retrieve the
// next page. If this field is omitted, there are no subsequent pages.
NextPageToken string `json:"nextPageToken,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "CustomClasses") 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. "CustomClasses") 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 (s *ListCustomClassesResponse) MarshalJSON() ([]byte, error) {
type NoMethod ListCustomClassesResponse
return gensupport.MarshalJSON(NoMethod(*s), s.ForceSendFields, s.NullFields)
}
// ListOperationsResponse: The response message for Operations.ListOperations.
type ListOperationsResponse struct {
// NextPageToken: The standard List next-page token.
NextPageToken string `json:"nextPageToken,omitempty"`
// Operations: A list of operations that matches the specified filter in the
// request.
Operations []*Operation `json:"operations,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "NextPageToken") 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. "NextPageToken") 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 (s *ListOperationsResponse) MarshalJSON() ([]byte, error) {
type NoMethod ListOperationsResponse
return gensupport.MarshalJSON(NoMethod(*s), s.ForceSendFields, s.NullFields)
}
// ListPhraseSetResponse: Message returned to the client by the `ListPhraseSet`
// method.
type ListPhraseSetResponse struct {
// NextPageToken: A token, which can be sent as `page_token` to retrieve the
// next page. If this field is omitted, there are no subsequent pages.
NextPageToken string `json:"nextPageToken,omitempty"`
// PhraseSets: The phrase set.
PhraseSets []*PhraseSet `json:"phraseSets,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "NextPageToken") 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. "NextPageToken") 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 (s *ListPhraseSetResponse) MarshalJSON() ([]byte, error) {
type NoMethod ListPhraseSetResponse
return gensupport.MarshalJSON(NoMethod(*s), s.ForceSendFields, s.NullFields)
}
// LongRunningRecognizeMetadata: Describes the progress of a long-running
// `LongRunningRecognize` call. It is included in the `metadata` field of the
// `Operation` returned by the `GetOperation` call of the
// `google::longrunning::Operations` service.
type LongRunningRecognizeMetadata struct {
// LastUpdateTime: Time of the most recent processing update.
LastUpdateTime string `json:"lastUpdateTime,omitempty"`
// ProgressPercent: Approximate percentage of audio processed thus far.
// Guaranteed to be 100 when the audio is fully processed and the results are
// available.
ProgressPercent int64 `json:"progressPercent,omitempty"`
// StartTime: Time when the request was received.
StartTime string `json:"startTime,omitempty"`
// Uri: Output only. The URI of the audio file being transcribed. Empty if the
// audio was sent as byte content.
Uri string `json:"uri,omitempty"`
// ForceSendFields is a list of field names (e.g. "LastUpdateTime") 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. "LastUpdateTime") 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 (s *LongRunningRecognizeMetadata) MarshalJSON() ([]byte, error) {
type NoMethod LongRunningRecognizeMetadata
return gensupport.MarshalJSON(NoMethod(*s), s.ForceSendFields, s.NullFields)
}
// LongRunningRecognizeRequest: The top-level message sent by the client for
// the `LongRunningRecognize` method.
type LongRunningRecognizeRequest struct {
// Audio: Required. The audio data to be recognized.
Audio *RecognitionAudio `json:"audio,omitempty"`
// Config: Required. Provides information to the recognizer that specifies how
// to process the request.
Config *RecognitionConfig `json:"config,omitempty"`
// OutputConfig: Optional. Specifies an optional destination for the
// recognition results.
OutputConfig *TranscriptOutputConfig `json:"outputConfig,omitempty"`
// ForceSendFields is a list of field names (e.g. "Audio") 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. "Audio") 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 (s *LongRunningRecognizeRequest) MarshalJSON() ([]byte, error) {
type NoMethod LongRunningRecognizeRequest
return gensupport.MarshalJSON(NoMethod(*s), s.ForceSendFields, s.NullFields)
}
// LongRunningRecognizeResponse: The only message returned to the client by the
// `LongRunningRecognize` method. It contains the result as zero or more
// sequential `SpeechRecognitionResult` messages. It is included in the
// `result.response` field of the `Operation` returned by the `GetOperation`
// call of the `google::longrunning::Operations` service.
type LongRunningRecognizeResponse struct {
// OutputConfig: Original output config if present in the request.
OutputConfig *TranscriptOutputConfig `json:"outputConfig,omitempty"`
// OutputError: If the transcript output fails this field contains the relevant
// error.
OutputError *Status `json:"outputError,omitempty"`
// RequestId: The ID associated with the request. This is a unique ID specific
// only to the given request.
RequestId int64 `json:"requestId,omitempty,string"`
// Results: Sequential list of transcription results corresponding to
// sequential portions of audio.
Results []*SpeechRecognitionResult `json:"results,omitempty"`
// SpeechAdaptationInfo: Provides information on speech adaptation behavior in
// response
SpeechAdaptationInfo *SpeechAdaptationInfo `json:"speechAdaptationInfo,omitempty"`
// TotalBilledTime: When available, billed audio seconds for the corresponding
// request.
TotalBilledTime string `json:"totalBilledTime,omitempty"`
// ForceSendFields is a list of field names (e.g. "OutputConfig") 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. "OutputConfig") 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 (s *LongRunningRecognizeResponse) MarshalJSON() ([]byte, error) {
type NoMethod LongRunningRecognizeResponse
return gensupport.MarshalJSON(NoMethod(*s), s.ForceSendFields, s.NullFields)
}
// Operation: This resource represents a long-running operation that is the
// result of a network API call.
type Operation struct {
// Done: If the value is `false`, it means the operation is still in progress.
// If `true`, the operation is completed, and either `error` or `response` is
// available.
Done bool `json:"done,omitempty"`
// Error: The error result of the operation in case of failure or cancellation.
Error *Status `json:"error,omitempty"`
// Metadata: Service-specific metadata associated with the operation. It
// typically contains progress information and common metadata such as create
// time. Some services might not provide such metadata. Any method that returns
// a long-running operation should document the metadata type, if any.
Metadata googleapi.RawMessage `json:"metadata,omitempty"`
// Name: The server-assigned name, which is only unique within the same service
// that originally returns it. If you use the default HTTP mapping, the `name`
// should be a resource name ending with `operations/{unique_id}`.
Name string `json:"name,omitempty"`
// Response: The normal, successful response of the operation. If the original
// method returns no data on success, such as `Delete`, the response is
// `google.protobuf.Empty`. If the original method is standard
// `Get`/`Create`/`Update`, the response should be the resource. For other
// methods, the response should have the type `XxxResponse`, where `Xxx` is the
// original method name. For example, if the original method name is
// `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
Response googleapi.RawMessage `json:"response,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "Done") 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. "Done") 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 (s *Operation) MarshalJSON() ([]byte, error) {
type NoMethod Operation
return gensupport.MarshalJSON(NoMethod(*s), s.ForceSendFields, s.NullFields)
}
// Phrase: A phrases containing words and phrase "hints" so that the speech
// recognition is more likely to recognize them. This can be used to improve
// the accuracy for specific words and phrases, for example, if specific
// commands are typically spoken by the user. This can also be used to add
// additional words to the vocabulary of the recognizer. See usage limits
// (https://cloud.google.com/speech-to-text/quotas#content). List items can
// also include pre-built or custom classes containing groups of words that
// represent common concepts that occur in natural language. For example,
// rather than providing a phrase hint for every month of the year (e.g. "i was
// born in january", "i was born in febuary", ...), use the pre-built `$MONTH`
// class improves the likelihood of correctly transcribing audio that includes
// months (e.g. "i was born in $month"). To refer to pre-built classes, use the
// class' symbol prepended with `$` e.g. `$MONTH`. To refer to custom classes
// that were defined inline in the request, set the class's `custom_class_id`
// to a string unique to all class resources and inline classes. Then use the
// class' id wrapped in $`{...}` e.g. "${my-months}". To refer to custom
// classes resources, use the class' id wrapped in `${}` (e.g. `${my-months}`).
// Speech-to-Text supports three locations: `global`, `us` (US North America),
// and `eu` (Europe). If you are calling the `speech.googleapis.com` endpoint,
// use the `global` location. To specify a region, use a regional endpoint
// (https://cloud.google.com/speech-to-text/docs/endpoints) with matching `us`
// or `eu` location value.
type Phrase struct {
// Boost: Hint Boost. Overrides the boost set at the phrase set level. Positive
// value will increase the probability that a specific phrase will be
// recognized over other similar sounding phrases. The higher the boost, the
// higher the chance of false positive recognition as well. Negative boost will
// simply be ignored. Though `boost` can accept a wide range of positive
// values, most use cases are best served with values between 0 and 20. We
// recommend using a binary search approach to finding the optimal value for
// your use case as well as adding phrases both with and without boost to your
// requests.
Boost float64 `json:"boost,omitempty"`
// Value: The phrase itself.
Value string `json:"value,omitempty"`
// ForceSendFields is a list of field names (e.g. "Boost") 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. "Boost") 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 (s *Phrase) MarshalJSON() ([]byte, error) {
type NoMethod Phrase
return gensupport.MarshalJSON(NoMethod(*s), s.ForceSendFields, s.NullFields)
}
func (s *Phrase) UnmarshalJSON(data []byte) error {
type NoMethod Phrase
var s1 struct {
Boost gensupport.JSONFloat64 `json:"boost"`
*NoMethod
}
s1.NoMethod = (*NoMethod)(s)
if err := json.Unmarshal(data, &s1); err != nil {
return err
}
s.Boost = float64(s1.Boost)
return nil
}
// PhraseSet: Provides "hints" to the speech recognizer to favor specific words
// and phrases in the results.
type PhraseSet struct {
// Annotations: Output only. Allows users to store small amounts of arbitrary
// data. Both the key and the value must be 63 characters or less each. At most
// 100 annotations. This field is not used.
Annotations map[string]string `json:"annotations,omitempty"`
// Boost: Hint Boost. Positive value will increase the probability that a
// specific phrase will be recognized over other similar sounding phrases. The
// higher the boost, the higher the chance of false positive recognition as
// well. Negative boost values would correspond to anti-biasing. Anti-biasing
// is not enabled, so negative boost will simply be ignored. Though `boost` can
// accept a wide range of positive values, most use cases are best served with
// values between 0 (exclusive) and 20. We recommend using a binary search
// approach to finding the optimal value for your use case as well as adding
// phrases both with and without boost to your requests.
Boost float64 `json:"boost,omitempty"`
// DeleteTime: Output only. The time at which this resource was requested for
// deletion. This field is not used.
DeleteTime string `json:"deleteTime,omitempty"`
// DisplayName: Output only. User-settable, human-readable name for the
// PhraseSet. Must be 63 characters or less. This field is not used.
DisplayName string `json:"displayName,omitempty"`
// Etag: Output only. This checksum is computed by the server based on the
// value of other fields. This may be sent on update, undelete, and delete
// requests to ensure the client has an up-to-date value before proceeding.
// This field is not used.
Etag string `json:"etag,omitempty"`
// ExpireTime: Output only. The time at which this resource will be purged.
// This field is not used.
ExpireTime string `json:"expireTime,omitempty"`
// KmsKeyName: Output only. The KMS key name
// (https://cloud.google.com/kms/docs/resource-hierarchy#keys) with which the
// content of the PhraseSet is encrypted. The expected format is
// `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{cryp
// to_key}`.
KmsKeyName string `json:"kmsKeyName,omitempty"`
// KmsKeyVersionName: Output only. The KMS key version name
// (https://cloud.google.com/kms/docs/resource-hierarchy#key_versions) with
// which content of the PhraseSet is encrypted. The expected format is
// `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{cryp
// to_key}/cryptoKeyVersions/{crypto_key_version}`.
KmsKeyVersionName string `json:"kmsKeyVersionName,omitempty"`
// Name: The resource name of the phrase set.
Name string `json:"name,omitempty"`
// Phrases: A list of word and phrases.
Phrases []*Phrase `json:"phrases,omitempty"`
// Reconciling: Output only. Whether or not this PhraseSet is in the process of
// being updated. This field is not used.
Reconciling bool `json:"reconciling,omitempty"`
// State: Output only. The CustomClass lifecycle state. This field is not used.
//
// Possible values:
// "STATE_UNSPECIFIED" - Unspecified state. This is only used/useful for
// distinguishing unset values.
// "ACTIVE" - The normal and active state.
// "DELETED" - This CustomClass has been deleted.
State string `json:"state,omitempty"`
// Uid: Output only. System-assigned unique identifier for the PhraseSet. This
// field is not used.
Uid string `json:"uid,omitempty"`
// ServerResponse contains the HTTP response code and headers from the server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "Annotations") 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. "Annotations") 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 (s *PhraseSet) MarshalJSON() ([]byte, error) {
type NoMethod PhraseSet
return gensupport.MarshalJSON(NoMethod(*s), s.ForceSendFields, s.NullFields)
}
func (s *PhraseSet) UnmarshalJSON(data []byte) error {
type NoMethod PhraseSet
var s1 struct {
Boost gensupport.JSONFloat64 `json:"boost"`
*NoMethod
}
s1.NoMethod = (*NoMethod)(s)
if err := json.Unmarshal(data, &s1); err != nil {
return err
}
s.Boost = float64(s1.Boost)
return nil
}
// RecognitionAudio: Contains audio data in the encoding specified in the
// `RecognitionConfig`. Either `content` or `uri` must be supplied. Supplying
// both or neither returns google.rpc.Code.INVALID_ARGUMENT. See content limits
// (https://cloud.google.com/speech-to-text/quotas#content).
type RecognitionAudio struct {
// Content: The audio data bytes encoded as specified in `RecognitionConfig`.
// Note: as with all bytes fields, proto buffers use a pure binary
// representation, whereas JSON representations use base64.
Content string `json:"content,omitempty"`
// Uri: URI that points to a file that contains audio data bytes as specified
// in `RecognitionConfig`. The file must not be compressed (for example, gzip).
// Currently, only Google Cloud Storage URIs are supported, which must be
// specified in the following format: `gs://bucket_name/object_name` (other URI
// formats return google.rpc.Code.INVALID_ARGUMENT). For more information, see
// Request URIs (https://cloud.google.com/storage/docs/reference-uris).
Uri string `json:"uri,omitempty"`
// ForceSendFields is a list of field names (e.g. "Content") 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. "Content") 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 (s *RecognitionAudio) MarshalJSON() ([]byte, error) {
type NoMethod RecognitionAudio
return gensupport.MarshalJSON(NoMethod(*s), s.ForceSendFields, s.NullFields)
}
// RecognitionConfig: Provides information to the recognizer that specifies how
// to process the request.
type RecognitionConfig struct {
// Adaptation: Speech adaptation configuration improves the accuracy of speech
// recognition. For more information, see the speech adaptation
// (https://cloud.google.com/speech-to-text/docs/adaptation) documentation.
// When speech adaptation is set it supersedes the `speech_contexts` field.
Adaptation *SpeechAdaptation `json:"adaptation,omitempty"`
// AlternativeLanguageCodes: A list of up to 3 additional BCP-47
// (https://www.rfc-editor.org/rfc/bcp/bcp47.txt) language tags, listing
// possible alternative languages of the supplied audio. See Language Support
// (https://cloud.google.com/speech-to-text/docs/languages) for a list of the
// currently supported language codes. If alternative languages are listed,
// recognition result will contain recognition in the most likely language
// detected including the main language_code. The recognition result will
// include the language tag of the language detected in the audio. Note: This
// feature is only supported for Voice Command and Voice Search use cases and
// performance may vary for other use cases (e.g., phone call transcription).
AlternativeLanguageCodes []string `json:"alternativeLanguageCodes,omitempty"`
// AudioChannelCount: The number of channels in the input audio data. ONLY set
// this for MULTI-CHANNEL recognition. Valid values for LINEAR16, OGG_OPUS and
// FLAC are `1`-`8`. Valid value for MULAW, AMR, AMR_WB and
// SPEEX_WITH_HEADER_BYTE is only `1`. If `0` or omitted, defaults to one
// channel (mono). Note: We only recognize the first channel by default. To
// perform independent recognition on each channel set
// `enable_separate_recognition_per_channel` to 'true'.
AudioChannelCount int64 `json:"audioChannelCount,omitempty"`
// DiarizationConfig: Config to enable speaker diarization and set additional
// parameters to make diarization better suited for your application. Note:
// When this is enabled, we send all the words from the beginning of the audio
// for the top alternative in every consecutive STREAMING responses. This is
// done in order to improve our speaker tags as our models learn to identify
// the speakers in the conversation over time. For non-streaming requests, the
// diarization results will be provided only in the top alternative of the
// FINAL SpeechRecognitionResult.
DiarizationConfig *SpeakerDiarizationConfig `json:"diarizationConfig,omitempty"`
// EnableAutomaticPunctuation: If 'true', adds punctuation to recognition
// result hypotheses. This feature is only available in select languages.
// Setting this for requests in other languages has no effect at all. The
// default 'false' value does not add punctuation to result hypotheses.
EnableAutomaticPunctuation bool `json:"enableAutomaticPunctuation,omitempty"`
// EnableSeparateRecognitionPerChannel: This needs to be set to `true`
// explicitly and `audio_channel_count` > 1 to get each channel recognized
// separately. The recognition result will contain a `channel_tag` field to
// state which channel that result belongs to. If this is not true, we will
// only recognize the first channel. The request is billed cumulatively for all
// channels recognized: `audio_channel_count` multiplied by the length of the
// audio.
EnableSeparateRecognitionPerChannel bool `json:"enableSeparateRecognitionPerChannel,omitempty"`
// EnableSpokenEmojis: The spoken emoji behavior for the call If not set, uses
// default behavior based on model of choice If 'true', adds spoken emoji
// formatting for the request. This will replace spoken emojis with the
// corresponding Unicode symbols in the final transcript. If 'false', spoken
// emojis are not replaced.
EnableSpokenEmojis bool `json:"enableSpokenEmojis,omitempty"`
// EnableSpokenPunctuation: The spoken punctuation behavior for the call If not
// set, uses default behavior based on model of choice e.g. command_and_search
// will enable spoken punctuation by default If 'true', replaces spoken
// punctuation with the corresponding symbols in the request. For example, "how
// are you question mark" becomes "how are you?". See
// https://cloud.google.com/speech-to-text/docs/spoken-punctuation for support.
// If 'false', spoken punctuation is not replaced.
EnableSpokenPunctuation bool `json:"enableSpokenPunctuation,omitempty"`
// EnableWordConfidence: If `true`, the top result includes a list of words and
// the confidence for those words. If `false`, no word-level confidence
// information is returned. The default is `false`.
EnableWordConfidence bool `json:"enableWordConfidence,omitempty"`
// EnableWordTimeOffsets: If `true`, the top result includes a list of words
// and the start and end time offsets (timestamps) for those words. If `false`,
// no word-level time offset information is returned. The default is `false`.
EnableWordTimeOffsets bool `json:"enableWordTimeOffsets,omitempty"`
// Encoding: Encoding of audio data sent in all `RecognitionAudio` messages.
// This field is optional for `FLAC` and `WAV` audio files and required for all
// other audio formats. For details, see AudioEncoding.
//
// Possible values:
// "ENCODING_UNSPECIFIED" - Not specified.
// "LINEAR16" - Uncompressed 16-bit signed little-endian samples (Linear
// PCM).
// "FLAC" - `FLAC` (Free Lossless Audio Codec) is the recommended encoding
// because it is lossless--therefore recognition is not compromised--and
// requires only about half the bandwidth of `LINEAR16`. `FLAC` stream encoding
// supports 16-bit and 24-bit samples, however, not all fields in `STREAMINFO`
// are supported.
// "MULAW" - 8-bit samples that compand 14-bit audio samples using G.711
// PCMU/mu-law.
// "AMR" - Adaptive Multi-Rate Narrowband codec. `sample_rate_hertz` must be
// 8000.
// "AMR_WB" - Adaptive Multi-Rate Wideband codec. `sample_rate_hertz` must be
// 16000.
// "OGG_OPUS" - Opus encoded audio frames in Ogg container
// ([OggOpus](https://wiki.xiph.org/OggOpus)). `sample_rate_hertz` must be one
// of 8000, 12000, 16000, 24000, or 48000.
// "SPEEX_WITH_HEADER_BYTE" - Although the use of lossy encodings is not
// recommended, if a very low bitrate encoding is required, `OGG_OPUS` is
// highly preferred over Speex encoding. The [Speex](https://speex.org/)
// encoding supported by Cloud Speech API has a header byte in each block, as
// in MIME type `audio/x-speex-with-header-byte`. It is a variant of the RTP
// Speex encoding defined in [RFC 5574](https://tools.ietf.org/html/rfc5574).
// The stream is a sequence of blocks, one block per RTP packet. Each block
// starts with a byte containing the length of the block, in bytes, followed by
// one or more frames of Speex data, padded to an integral number of bytes
// (octets) as specified in RFC 5574. In other words, each RTP header is
// replaced with a single byte containing the block length. Only Speex wideband
// is supported. `sample_rate_hertz` must be 16000.
// "MP3" - MP3 audio. MP3 encoding is a Beta feature and only available in
// v1p1beta1. Support all standard MP3 bitrates (which range from 32-320 kbps).
// When using this encoding, `sample_rate_hertz` has to match the sample rate
// of the file being used.
// "WEBM_OPUS" - Opus encoded audio frames in WebM container
// ([WebM](https://www.webmproject.org/docs/container/)). `sample_rate_hertz`
// must be one of 8000, 12000, 16000, 24000, or 48000.
Encoding string `json:"encoding,omitempty"`
// LanguageCode: Required. The language of the supplied audio as a BCP-47
// (https://www.rfc-editor.org/rfc/bcp/bcp47.txt) language tag. Example:
// "en-US". See Language Support
// (https://cloud.google.com/speech-to-text/docs/languages) for a list of the
// currently supported language codes.
LanguageCode string `json:"languageCode,omitempty"`
// MaxAlternatives: Maximum number of recognition hypotheses to be returned.
// Specifically, the maximum number of `SpeechRecognitionAlternative` messages
// within each `SpeechRecognitionResult`. The server may return fewer than
// `max_alternatives`. Valid values are `0`-`30`. A value of `0` or `1` will
// return a maximum of one. If omitted, will return a maximum of one.
MaxAlternatives int64 `json:"maxAlternatives,omitempty"`
// Metadata: Metadata regarding this request.
Metadata *RecognitionMetadata `json:"metadata,omitempty"`