We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For @google-cloud/kms path of some resources misses parameters, like keyRingPath it should be
@google-cloud/kms
keyRingPath
keyRingPath(project, location, keyRing) { return this._pathTemplates.keyRingPathTemplate.render({ project: project, location: location, key_ring: keyRing, }); }
but we got
keyRingPath(project: string, location: string) { return this._pathTemplates.keyringPathTemplate.render({ project, location, }); }
and also that's why we don't miss some match function like:
matchKeyRingFromKeyRingName(keyRingName) { return this._pathTemplates.keyRingPathTemplate.match(keyRingName).key_ring; }
Reference PR: googleapis/nodejs-kms#264
The text was updated successfully, but these errors were encountered:
alexander-fenster
Successfully merging a pull request may close this issue.
For
@google-cloud/kms
path of some resources misses parameters, likekeyRingPath
it should bebut we got
and also that's why we don't miss some match function like:
Reference PR: googleapis/nodejs-kms#264
The text was updated successfully, but these errors were encountered: