File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
packages/clients/src/api/jobs/v1alpha1 Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,7 @@ export class API extends ParentAPI {
8686 path : `/serverless-jobs/v1alpha1/regions/${ validatePathParam ( 'region' , request . region ?? this . client . settings . defaultRegion ) } /job-definitions` ,
8787 urlParams : urlParams (
8888 [ 'order_by' , request . orderBy ] ,
89+ [ 'organization_id' , request . organizationId ] ,
8990 [ 'page' , request . page ] ,
9091 [
9192 'page_size' ,
@@ -201,6 +202,7 @@ export class API extends ParentAPI {
201202 urlParams : urlParams (
202203 [ 'job_definition_id' , request . jobDefinitionId ] ,
203204 [ 'order_by' , request . orderBy ] ,
205+ [ 'organization_id' , request . organizationId ] ,
204206 [ 'page' , request . page ] ,
205207 [
206208 'page_size' ,
Original file line number Diff line number Diff line change @@ -155,6 +155,7 @@ export type ListJobDefinitionsRequest = {
155155 pageSize ?: number
156156 orderBy ?: ListJobDefinitionsRequestOrderBy
157157 projectId ?: string
158+ organizationId ?: string
158159}
159160
160161export interface ListJobDefinitionsResponse {
@@ -173,6 +174,7 @@ export type ListJobRunsRequest = {
173174 orderBy ?: ListJobRunsRequestOrderBy
174175 jobDefinitionId ?: string
175176 projectId ?: string
177+ organizationId ?: string
176178}
177179
178180export interface ListJobRunsResponse {
You can’t perform that action at this time.
0 commit comments