Skip to content

Commit 365da9e

Browse files
authored
feat(edge_services): add args to List filters (#1366)
1 parent 93339e8 commit 365da9e

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

packages/clients/src/api/edge_services/v1alpha1/api.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ export class API extends ParentAPI {
106106
method: 'GET',
107107
path: `/edge-services/v1alpha1/pipelines`,
108108
urlParams: urlParams(
109+
['has_backend_stage_lb', request.hasBackendStageLb],
109110
['name', request.name],
110111
['order_by', request.orderBy],
111112
['organization_id', request.organizationId],
@@ -550,6 +551,7 @@ export class API extends ParentAPI {
550551
urlParams: urlParams(
551552
['bucket_name', request.bucketName],
552553
['bucket_region', request.bucketRegion],
554+
['lb_id', request.lbId],
553555
['order_by', request.orderBy],
554556
['page', request.page],
555557
[

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -541,6 +541,11 @@ export type ListBackendStagesRequest = {
541541
* region will be returned.
542542
*/
543543
bucketRegion?: string
544+
/**
545+
* Load Balancer ID to filter for, only backend stages with this Load Balancer
546+
* will be returned.
547+
*/
548+
lbId?: string
544549
}
545550

546551
export interface ListBackendStagesResponse {
@@ -629,6 +634,11 @@ export type ListPipelinesRequest = {
629634
* returned.
630635
*/
631636
projectId?: string
637+
/**
638+
* Filter on backend stage, only pipelines with a Load Balancer origin will be
639+
* returned.
640+
*/
641+
hasBackendStageLb?: boolean
632642
}
633643

634644
export interface ListPipelinesResponse {

0 commit comments

Comments
 (0)