File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
packages/clients/src/api/k8s/v1 Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -105,6 +105,7 @@ export class API extends ParentAPI {
105105 'page_size' ,
106106 request . pageSize ?? this . client . settings . defaultPageSize ,
107107 ] ,
108+ [ 'private_network_id' , request . privateNetworkId ] ,
108109 [ 'project_id' , request . projectId ] ,
109110 [ 'status' , request . status ?? 'unknown' ] ,
110111 [ 'type' , request . type ] ,
Original file line number Diff line number Diff line change @@ -771,6 +771,11 @@ export type ListClustersRequest = {
771771 status ?: ClusterStatus
772772 /** Type to filter on, only clusters with this type will be returned. */
773773 type ?: string
774+ /**
775+ * Private Network ID to filter on, only clusters within this Private Network
776+ * will be returned.
777+ */
778+ privateNetworkId ?: string
774779}
775780
776781export type CreateClusterRequest = {
You can’t perform that action at this time.
0 commit comments