Skip to content

Commit 164601c

Browse files
authored
feat(secret_manager): add secret type to browse secret request (#1364)
1 parent 0135b07 commit 164601c

File tree

3 files changed

+4
-0
lines changed

3 files changed

+4
-0
lines changed

packages/clients/src/api/jobs/v1alpha1/types.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ export type CreateJobDefinitionRequest = {
117117
description: string
118118
/** Timeout of the job in seconds. */
119119
jobTimeout?: string
120+
/** Configure a cron for the job. */
120121
cronSchedule?: CreateJobDefinitionRequestCronScheduleConfig
121122
}
122123

packages/clients/src/api/secret/v1beta1/api.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,7 @@ export class API extends ParentAPI {
195195
['prefix', request.prefix],
196196
['project_id', request.projectId],
197197
['tags', request.tags],
198+
['type', request.type],
198199
),
199200
},
200201
unmarshalBrowseSecretsResponse,

packages/clients/src/api/secret/v1beta1/types.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,8 @@ export type BrowseSecretsRequest = {
250250
pageSize?: number
251251
/** Filter secrets by tags. */
252252
tags?: string[]
253+
/** Filter by secret type (optional). */
254+
type?: SecretType
253255
}
254256

255257
export interface BrowseSecretsResponse {

0 commit comments

Comments
 (0)