Skip to content

Commit 54605fa

Browse files
authored
feat(vpc): filter private_networks by ids (#314)
1 parent fd83d3e commit 54605fa

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/clients/src/api/vpc/v1/api.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ export class VpcV1GenAPI extends API {
6363
'page_size',
6464
request.pageSize ?? this.client.settings.defaultPageSize,
6565
],
66+
['private_network_ids', request.privateNetworkIds],
6667
[
6768
'project_id',
6869
request.projectId ?? this.client.settings.defaultProjectId,

packages/clients/src/api/vpc/v1/types.gen.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,8 @@ export type ListPrivateNetworksRequest = {
5252
organizationId?: string
5353
/** The project ID on which to filter the returned private networks */
5454
projectId?: string
55+
/** The PrivateNetwork IDs on which to filter the returned private networks */
56+
privateNetworkIds?: Array<string>
5557
}
5658

5759
export type CreatePrivateNetworkRequest = {

0 commit comments

Comments
 (0)