We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
privateNetworkCount
1 parent 3cfa8de commit 648507dCopy full SHA for 648507d
packages/clients/src/api/vpc/v2/marshalling.gen.ts
@@ -76,6 +76,7 @@ export const unmarshalVPC = (data: unknown) => {
76
isDefault: data.is_default,
77
name: data.name,
78
organizationId: data.organization_id,
79
+ privateNetworkCount: data.private_network_count,
80
projectId: data.project_id,
81
region: data.region,
82
tags: data.tags,
packages/clients/src/api/vpc/v2/types.gen.ts
@@ -92,6 +92,8 @@ export interface VPC {
92
createdAt?: Date
93
/** Date the VPC was last modified. */
94
updatedAt?: Date
95
+ /** Number of Private Networks within this VPC. */
96
+ privateNetworkCount: number
97
}
98
99
export type ListVPCsRequest = {
0 commit comments