File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
packages/clients/src/api/edge_services/v1alpha1 Expand file tree Collapse file tree 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 {
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 [
Original file line number Diff line number Diff 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
546551export 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
634644export interface ListPipelinesResponse {
You can’t perform that action at this time.
0 commit comments