-
Notifications
You must be signed in to change notification settings - Fork 592
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: generated GAPIC code for v1p1beta1 (#21)
* feat: generated GAPIC code for v1p1beta1 * change version to 1.1.0
- Loading branch information
1 parent
195c863
commit 1f43a27
Showing
12 changed files
with
2,194 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
455 changes: 455 additions & 0 deletions
455
packages/google-cloud-speech/protos/google/cloud/speech/v1p1beta1/cloud_speech.proto
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
604 changes: 604 additions & 0 deletions
604
...s/google-cloud-speech/src/v1p1beta1/doc/google/cloud/speech/v1p1beta1/doc_cloud_speech.js
Large diffs are not rendered by default.
Oops, something went wrong.
131 changes: 131 additions & 0 deletions
131
packages/google-cloud-speech/src/v1p1beta1/doc/google/protobuf/doc_any.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,131 @@ | ||
// Copyright 2018 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. | ||
|
||
// Note: this file is purely for documentation. Any contents are not expected | ||
// to be loaded as the JS file. | ||
|
||
/** | ||
* `Any` contains an arbitrary serialized protocol buffer message along with a | ||
* URL that describes the type of the serialized message. | ||
* | ||
* Protobuf library provides support to pack/unpack Any values in the form | ||
* of utility functions or additional generated methods of the Any type. | ||
* | ||
* Example 1: Pack and unpack a message in C++. | ||
* | ||
* Foo foo = ...; | ||
* Any any; | ||
* any.PackFrom(foo); | ||
* ... | ||
* if (any.UnpackTo(&foo)) { | ||
* ... | ||
* } | ||
* | ||
* Example 2: Pack and unpack a message in Java. | ||
* | ||
* Foo foo = ...; | ||
* Any any = Any.pack(foo); | ||
* ... | ||
* if (any.is(Foo.class)) { | ||
* foo = any.unpack(Foo.class); | ||
* } | ||
* | ||
* Example 3: Pack and unpack a message in Python. | ||
* | ||
* foo = Foo(...) | ||
* any = Any() | ||
* any.Pack(foo) | ||
* ... | ||
* if any.Is(Foo.DESCRIPTOR): | ||
* any.Unpack(foo) | ||
* ... | ||
* | ||
* Example 4: Pack and unpack a message in Go | ||
* | ||
* foo := &pb.Foo{...} | ||
* any, err := ptypes.MarshalAny(foo) | ||
* ... | ||
* foo := &pb.Foo{} | ||
* if err := ptypes.UnmarshalAny(any, foo); err != nil { | ||
* ... | ||
* } | ||
* | ||
* The pack methods provided by protobuf library will by default use | ||
* 'type.googleapis.com/full.type.name' as the type URL and the unpack | ||
* methods only use the fully qualified type name after the last '/' | ||
* in the type URL, for example "foo.bar.com/x/y.z" will yield type | ||
* name "y.z". | ||
* | ||
* | ||
* # JSON | ||
* | ||
* The JSON representation of an `Any` value uses the regular | ||
* representation of the deserialized, embedded message, with an | ||
* additional field `@type` which contains the type URL. Example: | ||
* | ||
* package google.profile; | ||
* message Person { | ||
* string first_name = 1; | ||
* string last_name = 2; | ||
* } | ||
* | ||
* { | ||
* "@type": "type.googleapis.com/google.profile.Person", | ||
* "firstName": <string>, | ||
* "lastName": <string> | ||
* } | ||
* | ||
* If the embedded message type is well-known and has a custom JSON | ||
* representation, that representation will be embedded adding a field | ||
* `value` which holds the custom JSON in addition to the `@type` | ||
* field. Example (for message google.protobuf.Duration): | ||
* | ||
* { | ||
* "@type": "type.googleapis.com/google.protobuf.Duration", | ||
* "value": "1.212s" | ||
* } | ||
* | ||
* @property {string} typeUrl | ||
* A URL/resource name whose content describes the type of the | ||
* serialized protocol buffer message. | ||
* | ||
* For URLs which use the scheme `http`, `https`, or no scheme, the | ||
* following restrictions and interpretations apply: | ||
* | ||
* * If no scheme is provided, `https` is assumed. | ||
* * The last segment of the URL's path must represent the fully | ||
* qualified name of the type (as in `path/google.protobuf.Duration`). | ||
* The name should be in a canonical form (e.g., leading "." is | ||
* not accepted). | ||
* * An HTTP GET on the URL must yield a google.protobuf.Type | ||
* value in binary format, or produce an error. | ||
* * Applications are allowed to cache lookup results based on the | ||
* URL, or have them precompiled into a binary to avoid any | ||
* lookup. Therefore, binary compatibility needs to be preserved | ||
* on changes to types. (Use versioned type names to manage | ||
* breaking changes.) | ||
* | ||
* Schemes other than `http`, `https` (or the empty scheme) might be | ||
* used with implementation specific semantics. | ||
* | ||
* @property {string} value | ||
* Must be a valid serialized protocol buffer of the above specified type. | ||
* | ||
* @typedef Any | ||
* @memberof google.protobuf | ||
* @see [google.protobuf.Any definition in proto format]{@link https://github.com/google/protobuf/blob/master/src/google/protobuf/any.proto} | ||
*/ | ||
var Any = { | ||
// This is for documentation. Actual contents will be loaded by gRPC. | ||
}; |
97 changes: 97 additions & 0 deletions
97
packages/google-cloud-speech/src/v1p1beta1/doc/google/protobuf/doc_duration.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
// Copyright 2018 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. | ||
|
||
// Note: this file is purely for documentation. Any contents are not expected | ||
// to be loaded as the JS file. | ||
|
||
/** | ||
* A Duration represents a signed, fixed-length span of time represented | ||
* as a count of seconds and fractions of seconds at nanosecond | ||
* resolution. It is independent of any calendar and concepts like "day" | ||
* or "month". It is related to Timestamp in that the difference between | ||
* two Timestamp values is a Duration and it can be added or subtracted | ||
* from a Timestamp. Range is approximately +-10,000 years. | ||
* | ||
* # Examples | ||
* | ||
* Example 1: Compute Duration from two Timestamps in pseudo code. | ||
* | ||
* Timestamp start = ...; | ||
* Timestamp end = ...; | ||
* Duration duration = ...; | ||
* | ||
* duration.seconds = end.seconds - start.seconds; | ||
* duration.nanos = end.nanos - start.nanos; | ||
* | ||
* if (duration.seconds < 0 && duration.nanos > 0) { | ||
* duration.seconds += 1; | ||
* duration.nanos -= 1000000000; | ||
* } else if (durations.seconds > 0 && duration.nanos < 0) { | ||
* duration.seconds -= 1; | ||
* duration.nanos += 1000000000; | ||
* } | ||
* | ||
* Example 2: Compute Timestamp from Timestamp + Duration in pseudo code. | ||
* | ||
* Timestamp start = ...; | ||
* Duration duration = ...; | ||
* Timestamp end = ...; | ||
* | ||
* end.seconds = start.seconds + duration.seconds; | ||
* end.nanos = start.nanos + duration.nanos; | ||
* | ||
* if (end.nanos < 0) { | ||
* end.seconds -= 1; | ||
* end.nanos += 1000000000; | ||
* } else if (end.nanos >= 1000000000) { | ||
* end.seconds += 1; | ||
* end.nanos -= 1000000000; | ||
* } | ||
* | ||
* Example 3: Compute Duration from datetime.timedelta in Python. | ||
* | ||
* td = datetime.timedelta(days=3, minutes=10) | ||
* duration = Duration() | ||
* duration.FromTimedelta(td) | ||
* | ||
* # JSON Mapping | ||
* | ||
* In JSON format, the Duration type is encoded as a string rather than an | ||
* object, where the string ends in the suffix "s" (indicating seconds) and | ||
* is preceded by the number of seconds, with nanoseconds expressed as | ||
* fractional seconds. For example, 3 seconds with 0 nanoseconds should be | ||
* encoded in JSON format as "3s", while 3 seconds and 1 nanosecond should | ||
* be expressed in JSON format as "3.000000001s", and 3 seconds and 1 | ||
* microsecond should be expressed in JSON format as "3.000001s". | ||
* | ||
* @property {number} seconds | ||
* Signed seconds of the span of time. Must be from -315,576,000,000 | ||
* to +315,576,000,000 inclusive. Note: these bounds are computed from: | ||
* 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years | ||
* | ||
* @property {number} nanos | ||
* Signed fractions of a second at nanosecond resolution of the span | ||
* of time. Durations less than one second are represented with a 0 | ||
* `seconds` field and a positive or negative `nanos` field. For durations | ||
* of one second or more, a non-zero value for the `nanos` field must be | ||
* of the same sign as the `seconds` field. Must be from -999,999,999 | ||
* to +999,999,999 inclusive. | ||
* | ||
* @typedef Duration | ||
* @memberof google.protobuf | ||
* @see [google.protobuf.Duration definition in proto format]{@link https://github.com/google/protobuf/blob/master/src/google/protobuf/duration.proto} | ||
*/ | ||
var Duration = { | ||
// This is for documentation. Actual contents will be loaded by gRPC. | ||
}; |
92 changes: 92 additions & 0 deletions
92
packages/google-cloud-speech/src/v1p1beta1/doc/google/rpc/doc_status.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,92 @@ | ||
// Copyright 2018 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. | ||
|
||
// Note: this file is purely for documentation. Any contents are not expected | ||
// to be loaded as the JS file. | ||
|
||
/** | ||
* The `Status` type defines a logical error model that is suitable for different | ||
* programming environments, including REST APIs and RPC APIs. It is used by | ||
* [gRPC](https://github.com/grpc). The error model is designed to be: | ||
* | ||
* - Simple to use and understand for most users | ||
* - Flexible enough to meet unexpected needs | ||
* | ||
* # Overview | ||
* | ||
* The `Status` message contains three pieces of data: error code, error message, | ||
* and error details. The error code should be an enum value of | ||
* google.rpc.Code, but it may accept additional error codes if needed. The | ||
* error message should be a developer-facing English message that helps | ||
* developers *understand* and *resolve* the error. If a localized user-facing | ||
* error message is needed, put the localized message in the error details or | ||
* localize it in the client. The optional error details may contain arbitrary | ||
* information about the error. There is a predefined set of error detail types | ||
* in the package `google.rpc` that can be used for common error conditions. | ||
* | ||
* # Language mapping | ||
* | ||
* The `Status` message is the logical representation of the error model, but it | ||
* is not necessarily the actual wire format. When the `Status` message is | ||
* exposed in different client libraries and different wire protocols, it can be | ||
* mapped differently. For example, it will likely be mapped to some exceptions | ||
* in Java, but more likely mapped to some error codes in C. | ||
* | ||
* # Other uses | ||
* | ||
* The error model and the `Status` message can be used in a variety of | ||
* environments, either with or without APIs, to provide a | ||
* consistent developer experience across different environments. | ||
* | ||
* Example uses of this error model include: | ||
* | ||
* - Partial errors. If a service needs to return partial errors to the client, | ||
* it may embed the `Status` in the normal response to indicate the partial | ||
* errors. | ||
* | ||
* - Workflow errors. A typical workflow has multiple steps. Each step may | ||
* have a `Status` message for error reporting. | ||
* | ||
* - Batch operations. If a client uses batch request and batch response, the | ||
* `Status` message should be used directly inside batch response, one for | ||
* each error sub-response. | ||
* | ||
* - Asynchronous operations. If an API call embeds asynchronous operation | ||
* results in its response, the status of those operations should be | ||
* represented directly using the `Status` message. | ||
* | ||
* - Logging. If some API errors are stored in logs, the message `Status` could | ||
* be used directly after any stripping needed for security/privacy reasons. | ||
* | ||
* @property {number} code | ||
* The status code, which should be an enum value of google.rpc.Code. | ||
* | ||
* @property {string} message | ||
* A developer-facing error message, which should be in English. Any | ||
* user-facing error message should be localized and sent in the | ||
* google.rpc.Status.details field, or localized by the client. | ||
* | ||
* @property {Object[]} details | ||
* A list of messages that carry the error details. There is a common set of | ||
* message types for APIs to use. | ||
* | ||
* This object should have the same structure as [Any]{@link google.protobuf.Any} | ||
* | ||
* @typedef Status | ||
* @memberof google.rpc | ||
* @see [google.rpc.Status definition in proto format]{@link https://github.com/googleapis/googleapis/blob/master/google/rpc/status.proto} | ||
*/ | ||
var Status = { | ||
// This is for documentation. Actual contents will be loaded by gRPC. | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Copyright 2018 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. | ||
|
||
'use strict'; | ||
|
||
const SpeechClient = require('./speech_client'); | ||
|
||
module.exports.SpeechClient = SpeechClient; |
Oops, something went wrong.