Skip to content

Commit

Permalink
🦉 Updates from OwlBot post-processor
Browse files Browse the repository at this point in the history
  • Loading branch information
gcf-owl-bot[bot] committed Jan 16, 2025
1 parent 3d654cf commit c81d143
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 3 additions & 2 deletions packages/google-cloud-secretmanager/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@
// ** All changes to this file may be overwritten. **

import * as v1 from './v1';
import * as v1beta1 from './v1beta1';
import * as v1beta2 from './v1beta2';

const SecretManagerServiceClient = v1.SecretManagerServiceClient;
type SecretManagerServiceClient = v1.SecretManagerServiceClient;

export {v1, v1beta2, SecretManagerServiceClient};
export default {v1, v1beta2, SecretManagerServiceClient};
export {v1, v1beta1, v1beta2, SecretManagerServiceClient};
export default {v1, v1beta1, v1beta2, SecretManagerServiceClient};
import * as protos from '../protos/protos';
export {protos};
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,6 @@ export class SecretManagerServiceClient {
),
};


// Some of the methods on this service return "paged" results,
// (e.g. 50 results at a time, with tokens to get subsequent
// pages). Denote the keys used for pagination and results.
Expand Down Expand Up @@ -2643,7 +2642,7 @@ export class SecretManagerServiceClient {
* A fully-qualified path representing SecretVersion resource.
* @returns {string} A string representing the secret.
*/
matchSecretFromSecretVersionName(secretVersionName: string) {
matchSecretFromSecretVersionName(secretVersionName: string) {
return this.pathTemplates.secretVersionPathTemplate.match(secretVersionName)
.secret;
}
Expand All @@ -2660,4 +2659,3 @@ export class SecretManagerServiceClient {
.secret_version;
}
}

0 comments on commit c81d143

Please sign in to comment.