Skip to content

Commit 648507d

Browse files
authored
feat(vpc): add privateNetworkCount field to VPC (#683)
1 parent 3cfa8de commit 648507d

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

packages/clients/src/api/vpc/v2/marshalling.gen.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ export const unmarshalVPC = (data: unknown) => {
7676
isDefault: data.is_default,
7777
name: data.name,
7878
organizationId: data.organization_id,
79+
privateNetworkCount: data.private_network_count,
7980
projectId: data.project_id,
8081
region: data.region,
8182
tags: data.tags,

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ export interface VPC {
9292
createdAt?: Date
9393
/** Date the VPC was last modified. */
9494
updatedAt?: Date
95+
/** Number of Private Networks within this VPC. */
96+
privateNetworkCount: number
9597
}
9698

9799
export type ListVPCsRequest = {

0 commit comments

Comments
 (0)