Skip to content

Commit

Permalink
fix: separate jsdoc with api version (#127)
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaozhenliu-gg5 committed Nov 12, 2019
1 parent 2e5004a commit 263d168
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ export interface PaginationResponse<

/**
{{- util.printCommentsForService(service) }}
* @class
* @memberof {{ api.naming.version }}
*/
export class {{ service.name }}Client {
private _descriptors: Descriptors = {page: {}, stream: {}, longrunning: {}};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ export interface PaginationResponse<
*
* If you are using manual gRPC libraries, see
* [Using gRPC with Cloud KMS](https://cloud.google.com/kms/docs/grpc).
* @class
* @memberof v1
*/
export class KeyManagementServiceClient {
private _descriptors: Descriptors = {page: {}, stream: {}, longrunning: {}};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ export interface PaginationResponse<
* side streaming, client side streaming, and bidirectional streaming. This
* service also exposes methods that explicitly implement server delay, and
* paginated calls.
* @class
* @memberof v1beta1
*/
export class EchoClient {
private _descriptors: Descriptors = {page: {}, stream: {}, longrunning: {}};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ const version = require('../../../package.json').version;

/**
* Service that implements Google Cloud Text-to-Speech API.
* @class
* @memberof v1
*/
export class TextToSpeechClient {
private _descriptors: Descriptors = {page: {}, stream: {}, longrunning: {}};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ export interface PaginationResponse<

/**
* Provides natural language translation operations.
* @class
* @memberof v3beta1
*/
export class TranslationServiceClient {
private _descriptors: Descriptors = {page: {}, stream: {}, longrunning: {}};
Expand Down

0 comments on commit 263d168

Please sign in to comment.