File tree 2 files changed +12
-0
lines changed
packages/clients/src/api/edge_services/v1alpha1 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -106,6 +106,7 @@ export class API extends ParentAPI {
106
106
method : 'GET' ,
107
107
path : `/edge-services/v1alpha1/pipelines` ,
108
108
urlParams : urlParams (
109
+ [ 'has_backend_stage_lb' , request . hasBackendStageLb ] ,
109
110
[ 'name' , request . name ] ,
110
111
[ 'order_by' , request . orderBy ] ,
111
112
[ 'organization_id' , request . organizationId ] ,
@@ -550,6 +551,7 @@ export class API extends ParentAPI {
550
551
urlParams : urlParams (
551
552
[ 'bucket_name' , request . bucketName ] ,
552
553
[ 'bucket_region' , request . bucketRegion ] ,
554
+ [ 'lb_id' , request . lbId ] ,
553
555
[ 'order_by' , request . orderBy ] ,
554
556
[ 'page' , request . page ] ,
555
557
[
Original file line number Diff line number Diff line change @@ -541,6 +541,11 @@ export type ListBackendStagesRequest = {
541
541
* region will be returned.
542
542
*/
543
543
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
544
549
}
545
550
546
551
export interface ListBackendStagesResponse {
@@ -629,6 +634,11 @@ export type ListPipelinesRequest = {
629
634
* returned.
630
635
*/
631
636
projectId ?: string
637
+ /**
638
+ * Filter on backend stage, only pipelines with a Load Balancer origin will be
639
+ * returned.
640
+ */
641
+ hasBackendStageLb ?: boolean
632
642
}
633
643
634
644
export interface ListPipelinesResponse {
You can’t perform that action at this time.
0 commit comments