File tree Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Expand file tree Collapse file tree 3 files changed +4
-0
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ,
Original file line number Diff line number Diff 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
255257export interface BrowseSecretsResponse {
You can’t perform that action at this time.
0 commit comments