-
Notifications
You must be signed in to change notification settings - Fork 591
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: adds gapic_metadata.json; bug fix to generator
- Loading branch information
1 parent
905bd7d
commit ccc4651
Showing
6 changed files
with
384 additions
and
84 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
{ | ||
"schema": "1.0", | ||
"comment": "This file maps proto services/RPCs to the corresponding library clients/methods", | ||
"language": "typescript", | ||
"protoPackage": "google.cloud.language.v1", | ||
"libraryPackage": "@google-cloud/language", | ||
"services": { | ||
"LanguageService": { | ||
"grpc": { | ||
"libraryClient": "LanguageServiceClient", | ||
"rpcs": { | ||
"AnalyzeSentiment": [ | ||
"analyzeSentiment" | ||
], | ||
"AnalyzeEntities": [ | ||
"analyzeEntities" | ||
], | ||
"AnalyzeEntitySentiment": [ | ||
"analyzeEntitySentiment" | ||
], | ||
"AnalyzeSyntax": [ | ||
"analyzeSyntax" | ||
], | ||
"ClassifyText": [ | ||
"classifyText" | ||
], | ||
"AnnotateText": [ | ||
"annotateText" | ||
] | ||
} | ||
}, | ||
"grpc-fallback": { | ||
"libraryClient": "LanguageServiceClient", | ||
"rpcs": { | ||
"AnalyzeSentiment": [ | ||
"analyzeSentiment" | ||
], | ||
"AnalyzeEntities": [ | ||
"analyzeEntities" | ||
], | ||
"AnalyzeEntitySentiment": [ | ||
"analyzeEntitySentiment" | ||
], | ||
"AnalyzeSyntax": [ | ||
"analyzeSyntax" | ||
], | ||
"ClassifyText": [ | ||
"classifyText" | ||
], | ||
"AnnotateText": [ | ||
"annotateText" | ||
] | ||
} | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.