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 {
105
105
'page_size',
106
106
request.pageSize ?? this.client.settings.defaultPageSize,
107
107
],
108
+ ['private_network_id', request.privateNetworkId],
108
109
['project_id', request.projectId],
109
110
['status', request.status ?? 'unknown'],
110
111
['type', request.type],
Original file line number Diff line number Diff line change @@ -771,6 +771,11 @@ export type ListClustersRequest = {
771
771
status?: ClusterStatus
772
772
/** Type to filter on, only clusters with this type will be returned. */
773
773
type?: string
774
+ /**
775
+ * Private Network ID to filter on, only clusters within this Private Network
776
+ * will be returned.
777
+ */
778
+ privateNetworkId?: string
774
779
}
775
780
776
781
export type CreateClusterRequest = {
You can’t perform that action at this time.
0 commit comments