File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed
packages/clients/src/api/vpc/v1 Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -63,6 +63,7 @@ export class VpcV1GenAPI extends API {
63
63
'page_size' ,
64
64
request . pageSize ?? this . client . settings . defaultPageSize ,
65
65
] ,
66
+ [ 'private_network_ids' , request . privateNetworkIds ] ,
66
67
[
67
68
'project_id' ,
68
69
request . projectId ?? this . client . settings . defaultProjectId ,
Original file line number Diff line number Diff line change @@ -52,6 +52,8 @@ export type ListPrivateNetworksRequest = {
52
52
organizationId ?: string
53
53
/** The project ID on which to filter the returned private networks */
54
54
projectId ?: string
55
+ /** The PrivateNetwork IDs on which to filter the returned private networks */
56
+ privateNetworkIds ?: Array < string >
55
57
}
56
58
57
59
export type CreatePrivateNetworkRequest = {
You can’t perform that action at this time.
0 commit comments