@scaleway/sdk-vpc 2.15.1 → 2.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/v2/marshalling.gen.js +6 -0
- package/dist/v2/metadata.gen.d.ts +18 -18
- package/dist/v2/metadata.gen.js +18 -18
- package/dist/v2/types.gen.d.ts +24 -0
- package/package.json +4 -7
|
@@ -9,6 +9,7 @@ const unmarshalSubnet = (data) => {
|
|
|
9
9
|
privateNetworkId: data.private_network_id,
|
|
10
10
|
projectId: data.project_id,
|
|
11
11
|
region: data.region,
|
|
12
|
+
srn: data.srn,
|
|
12
13
|
subnet: data.subnet,
|
|
13
14
|
updatedAt: unmarshalDate(data.updated_at),
|
|
14
15
|
vpcId: data.vpc_id
|
|
@@ -26,6 +27,7 @@ const unmarshalPrivateNetwork = (data) => {
|
|
|
26
27
|
organizationId: data.organization_id,
|
|
27
28
|
projectId: data.project_id,
|
|
28
29
|
region: data.region,
|
|
30
|
+
srn: data.srn,
|
|
29
31
|
subnets: unmarshalArrayOfObject(data.subnets, unmarshalSubnet),
|
|
30
32
|
tags: data.tags,
|
|
31
33
|
updatedAt: unmarshalDate(data.updated_at),
|
|
@@ -44,6 +46,7 @@ const unmarshalRoute = (data) => {
|
|
|
44
46
|
nexthopResourceId: data.nexthop_resource_id,
|
|
45
47
|
nexthopVpcConnectorId: data.nexthop_vpc_connector_id,
|
|
46
48
|
region: data.region,
|
|
49
|
+
srn: data.srn,
|
|
47
50
|
tags: data.tags,
|
|
48
51
|
type: data.type ? data.type : void 0,
|
|
49
52
|
updatedAt: unmarshalDate(data.updated_at),
|
|
@@ -63,6 +66,7 @@ const unmarshalIngressRule = (data) => {
|
|
|
63
66
|
projectId: data.project_id,
|
|
64
67
|
region: data.region,
|
|
65
68
|
source: data.source,
|
|
69
|
+
srn: data.srn,
|
|
66
70
|
tags: data.tags,
|
|
67
71
|
updatedAt: unmarshalDate(data.updated_at),
|
|
68
72
|
vpcId: data.vpc_id
|
|
@@ -86,6 +90,7 @@ const unmarshalVPCConnector = (data) => {
|
|
|
86
90
|
peerInfo: data.peer_info ? unmarshalVPCConnectorPeerInfo(data.peer_info) : void 0,
|
|
87
91
|
projectId: data.project_id,
|
|
88
92
|
region: data.region,
|
|
93
|
+
srn: data.srn,
|
|
89
94
|
status: data.status,
|
|
90
95
|
tags: data.tags,
|
|
91
96
|
targetVpcId: data.target_vpc_id,
|
|
@@ -107,6 +112,7 @@ const unmarshalVPC = (data) => {
|
|
|
107
112
|
projectId: data.project_id,
|
|
108
113
|
region: data.region,
|
|
109
114
|
routingEnabled: data.routing_enabled,
|
|
115
|
+
srn: data.srn,
|
|
110
116
|
tags: data.tags,
|
|
111
117
|
transitivityEnabled: data.transitivity_enabled,
|
|
112
118
|
updatedAt: unmarshalDate(data.updated_at)
|
|
@@ -9,12 +9,12 @@ export declare const queriesMetadata: {
|
|
|
9
9
|
readonly protoName: 'ListVPCs';
|
|
10
10
|
readonly paramsType: 'ListVPCsRequest';
|
|
11
11
|
readonly returnType: 'ListVPCsResponse';
|
|
12
|
-
readonly returnTypeNamespace: '@scaleway
|
|
12
|
+
readonly returnTypeNamespace: '@scaleway/sdk-vpc/v2';
|
|
13
13
|
readonly isList: true;
|
|
14
14
|
readonly paginationType: 'offset';
|
|
15
15
|
readonly pageParamKey: 'page';
|
|
16
16
|
readonly listItemType: 'VPC';
|
|
17
|
-
readonly listItemTypeNamespace: '@scaleway
|
|
17
|
+
readonly listItemTypeNamespace: '@scaleway/sdk-vpc/v2';
|
|
18
18
|
readonly isPrivate: false;
|
|
19
19
|
readonly description: '"';
|
|
20
20
|
}, {
|
|
@@ -22,7 +22,7 @@ export declare const queriesMetadata: {
|
|
|
22
22
|
readonly protoName: 'GetVPC';
|
|
23
23
|
readonly paramsType: 'GetVPCRequest';
|
|
24
24
|
readonly returnType: 'VPC';
|
|
25
|
-
readonly returnTypeNamespace: '@scaleway
|
|
25
|
+
readonly returnTypeNamespace: '@scaleway/sdk-vpc/v2';
|
|
26
26
|
readonly isList: false;
|
|
27
27
|
readonly paginationType: 'none';
|
|
28
28
|
readonly isPrivate: false;
|
|
@@ -32,12 +32,12 @@ export declare const queriesMetadata: {
|
|
|
32
32
|
readonly protoName: 'ListPrivateNetworks';
|
|
33
33
|
readonly paramsType: 'ListPrivateNetworksRequest';
|
|
34
34
|
readonly returnType: 'ListPrivateNetworksResponse';
|
|
35
|
-
readonly returnTypeNamespace: '@scaleway
|
|
35
|
+
readonly returnTypeNamespace: '@scaleway/sdk-vpc/v2';
|
|
36
36
|
readonly isList: true;
|
|
37
37
|
readonly paginationType: 'offset';
|
|
38
38
|
readonly pageParamKey: 'page';
|
|
39
39
|
readonly listItemType: 'PrivateNetwork';
|
|
40
|
-
readonly listItemTypeNamespace: '@scaleway
|
|
40
|
+
readonly listItemTypeNamespace: '@scaleway/sdk-vpc/v2';
|
|
41
41
|
readonly isPrivate: false;
|
|
42
42
|
readonly description: '"';
|
|
43
43
|
}, {
|
|
@@ -45,7 +45,7 @@ export declare const queriesMetadata: {
|
|
|
45
45
|
readonly protoName: 'GetPrivateNetwork';
|
|
46
46
|
readonly paramsType: 'GetPrivateNetworkRequest';
|
|
47
47
|
readonly returnType: 'PrivateNetwork';
|
|
48
|
-
readonly returnTypeNamespace: '@scaleway
|
|
48
|
+
readonly returnTypeNamespace: '@scaleway/sdk-vpc/v2';
|
|
49
49
|
readonly isList: false;
|
|
50
50
|
readonly paginationType: 'none';
|
|
51
51
|
readonly isPrivate: false;
|
|
@@ -55,12 +55,12 @@ export declare const queriesMetadata: {
|
|
|
55
55
|
readonly protoName: 'ListSubnets';
|
|
56
56
|
readonly paramsType: 'ListSubnetsRequest';
|
|
57
57
|
readonly returnType: 'ListSubnetsResponse';
|
|
58
|
-
readonly returnTypeNamespace: '@scaleway
|
|
58
|
+
readonly returnTypeNamespace: '@scaleway/sdk-vpc/v2';
|
|
59
59
|
readonly isList: true;
|
|
60
60
|
readonly paginationType: 'offset';
|
|
61
61
|
readonly pageParamKey: 'page';
|
|
62
62
|
readonly listItemType: 'Subnet';
|
|
63
|
-
readonly listItemTypeNamespace: '@scaleway
|
|
63
|
+
readonly listItemTypeNamespace: '@scaleway/sdk-vpc/v2';
|
|
64
64
|
readonly isPrivate: false;
|
|
65
65
|
readonly description: '"';
|
|
66
66
|
}, {
|
|
@@ -68,7 +68,7 @@ export declare const queriesMetadata: {
|
|
|
68
68
|
readonly protoName: 'GetRoute';
|
|
69
69
|
readonly paramsType: 'GetRouteRequest';
|
|
70
70
|
readonly returnType: 'Route';
|
|
71
|
-
readonly returnTypeNamespace: '@scaleway
|
|
71
|
+
readonly returnTypeNamespace: '@scaleway/sdk-vpc/v2';
|
|
72
72
|
readonly isList: false;
|
|
73
73
|
readonly paginationType: 'none';
|
|
74
74
|
readonly isPrivate: false;
|
|
@@ -78,7 +78,7 @@ export declare const queriesMetadata: {
|
|
|
78
78
|
readonly protoName: 'GetAcl';
|
|
79
79
|
readonly paramsType: 'GetAclRequest';
|
|
80
80
|
readonly returnType: 'GetAclResponse';
|
|
81
|
-
readonly returnTypeNamespace: '@scaleway
|
|
81
|
+
readonly returnTypeNamespace: '@scaleway/sdk-vpc/v2';
|
|
82
82
|
readonly isList: false;
|
|
83
83
|
readonly paginationType: 'none';
|
|
84
84
|
readonly isPrivate: false;
|
|
@@ -88,12 +88,12 @@ export declare const queriesMetadata: {
|
|
|
88
88
|
readonly protoName: 'ListVPCConnectors';
|
|
89
89
|
readonly paramsType: 'ListVPCConnectorsRequest';
|
|
90
90
|
readonly returnType: 'ListVPCConnectorsResponse';
|
|
91
|
-
readonly returnTypeNamespace: '@scaleway
|
|
91
|
+
readonly returnTypeNamespace: '@scaleway/sdk-vpc/v2';
|
|
92
92
|
readonly isList: true;
|
|
93
93
|
readonly paginationType: 'offset';
|
|
94
94
|
readonly pageParamKey: 'page';
|
|
95
95
|
readonly listItemType: 'VPCConnector';
|
|
96
|
-
readonly listItemTypeNamespace: '@scaleway
|
|
96
|
+
readonly listItemTypeNamespace: '@scaleway/sdk-vpc/v2';
|
|
97
97
|
readonly isPrivate: false;
|
|
98
98
|
readonly description: '"';
|
|
99
99
|
}, {
|
|
@@ -101,7 +101,7 @@ export declare const queriesMetadata: {
|
|
|
101
101
|
readonly protoName: 'GetVPCConnector';
|
|
102
102
|
readonly paramsType: 'GetVPCConnectorRequest';
|
|
103
103
|
readonly returnType: 'VPCConnector';
|
|
104
|
-
readonly returnTypeNamespace: '@scaleway
|
|
104
|
+
readonly returnTypeNamespace: '@scaleway/sdk-vpc/v2';
|
|
105
105
|
readonly isList: false;
|
|
106
106
|
readonly paginationType: 'none';
|
|
107
107
|
readonly isPrivate: false;
|
|
@@ -111,12 +111,12 @@ export declare const queriesMetadata: {
|
|
|
111
111
|
readonly protoName: 'ListSubnetOverlaps';
|
|
112
112
|
readonly paramsType: 'ListSubnetOverlapsRequest';
|
|
113
113
|
readonly returnType: 'ListSubnetOverlapsResponse';
|
|
114
|
-
readonly returnTypeNamespace: '@scaleway
|
|
114
|
+
readonly returnTypeNamespace: '@scaleway/sdk-vpc/v2';
|
|
115
115
|
readonly isList: true;
|
|
116
116
|
readonly paginationType: 'offset';
|
|
117
117
|
readonly pageParamKey: 'page';
|
|
118
118
|
readonly listItemType: 'ListSubnetOverlapsResponseSubnetOverlap';
|
|
119
|
-
readonly listItemTypeNamespace: '@scaleway
|
|
119
|
+
readonly listItemTypeNamespace: '@scaleway/sdk-vpc/v2';
|
|
120
120
|
readonly isPrivate: false;
|
|
121
121
|
readonly description: '"';
|
|
122
122
|
}, {
|
|
@@ -124,12 +124,12 @@ export declare const queriesMetadata: {
|
|
|
124
124
|
readonly protoName: 'ListIngressRules';
|
|
125
125
|
readonly paramsType: 'ListIngressRulesRequest';
|
|
126
126
|
readonly returnType: 'ListIngressRulesResponse';
|
|
127
|
-
readonly returnTypeNamespace: '@scaleway
|
|
127
|
+
readonly returnTypeNamespace: '@scaleway/sdk-vpc/v2';
|
|
128
128
|
readonly isList: true;
|
|
129
129
|
readonly paginationType: 'offset';
|
|
130
130
|
readonly pageParamKey: 'page';
|
|
131
131
|
readonly listItemType: 'IngressRule';
|
|
132
|
-
readonly listItemTypeNamespace: '@scaleway
|
|
132
|
+
readonly listItemTypeNamespace: '@scaleway/sdk-vpc/v2';
|
|
133
133
|
readonly isPrivate: false;
|
|
134
134
|
readonly description: '"';
|
|
135
135
|
}, {
|
|
@@ -137,7 +137,7 @@ export declare const queriesMetadata: {
|
|
|
137
137
|
readonly protoName: 'GetIngressRule';
|
|
138
138
|
readonly paramsType: 'GetIngressRuleRequest';
|
|
139
139
|
readonly returnType: 'IngressRule';
|
|
140
|
-
readonly returnTypeNamespace: '@scaleway
|
|
140
|
+
readonly returnTypeNamespace: '@scaleway/sdk-vpc/v2';
|
|
141
141
|
readonly isList: false;
|
|
142
142
|
readonly paginationType: 'none';
|
|
143
143
|
readonly isPrivate: false;
|
package/dist/v2/metadata.gen.js
CHANGED
|
@@ -11,12 +11,12 @@ const queriesMetadata = {
|
|
|
11
11
|
protoName: "ListVPCs",
|
|
12
12
|
paramsType: "ListVPCsRequest",
|
|
13
13
|
returnType: "ListVPCsResponse",
|
|
14
|
-
returnTypeNamespace: "@scaleway
|
|
14
|
+
returnTypeNamespace: "@scaleway/sdk-vpc/v2",
|
|
15
15
|
isList: true,
|
|
16
16
|
paginationType: "offset",
|
|
17
17
|
pageParamKey: "page",
|
|
18
18
|
listItemType: "VPC",
|
|
19
|
-
listItemTypeNamespace: "@scaleway
|
|
19
|
+
listItemTypeNamespace: "@scaleway/sdk-vpc/v2",
|
|
20
20
|
isPrivate: false,
|
|
21
21
|
description: "\""
|
|
22
22
|
},
|
|
@@ -25,7 +25,7 @@ const queriesMetadata = {
|
|
|
25
25
|
protoName: "GetVPC",
|
|
26
26
|
paramsType: "GetVPCRequest",
|
|
27
27
|
returnType: "VPC",
|
|
28
|
-
returnTypeNamespace: "@scaleway
|
|
28
|
+
returnTypeNamespace: "@scaleway/sdk-vpc/v2",
|
|
29
29
|
isList: false,
|
|
30
30
|
paginationType: "none",
|
|
31
31
|
isPrivate: false,
|
|
@@ -36,12 +36,12 @@ const queriesMetadata = {
|
|
|
36
36
|
protoName: "ListPrivateNetworks",
|
|
37
37
|
paramsType: "ListPrivateNetworksRequest",
|
|
38
38
|
returnType: "ListPrivateNetworksResponse",
|
|
39
|
-
returnTypeNamespace: "@scaleway
|
|
39
|
+
returnTypeNamespace: "@scaleway/sdk-vpc/v2",
|
|
40
40
|
isList: true,
|
|
41
41
|
paginationType: "offset",
|
|
42
42
|
pageParamKey: "page",
|
|
43
43
|
listItemType: "PrivateNetwork",
|
|
44
|
-
listItemTypeNamespace: "@scaleway
|
|
44
|
+
listItemTypeNamespace: "@scaleway/sdk-vpc/v2",
|
|
45
45
|
isPrivate: false,
|
|
46
46
|
description: "\""
|
|
47
47
|
},
|
|
@@ -50,7 +50,7 @@ const queriesMetadata = {
|
|
|
50
50
|
protoName: "GetPrivateNetwork",
|
|
51
51
|
paramsType: "GetPrivateNetworkRequest",
|
|
52
52
|
returnType: "PrivateNetwork",
|
|
53
|
-
returnTypeNamespace: "@scaleway
|
|
53
|
+
returnTypeNamespace: "@scaleway/sdk-vpc/v2",
|
|
54
54
|
isList: false,
|
|
55
55
|
paginationType: "none",
|
|
56
56
|
isPrivate: false,
|
|
@@ -61,12 +61,12 @@ const queriesMetadata = {
|
|
|
61
61
|
protoName: "ListSubnets",
|
|
62
62
|
paramsType: "ListSubnetsRequest",
|
|
63
63
|
returnType: "ListSubnetsResponse",
|
|
64
|
-
returnTypeNamespace: "@scaleway
|
|
64
|
+
returnTypeNamespace: "@scaleway/sdk-vpc/v2",
|
|
65
65
|
isList: true,
|
|
66
66
|
paginationType: "offset",
|
|
67
67
|
pageParamKey: "page",
|
|
68
68
|
listItemType: "Subnet",
|
|
69
|
-
listItemTypeNamespace: "@scaleway
|
|
69
|
+
listItemTypeNamespace: "@scaleway/sdk-vpc/v2",
|
|
70
70
|
isPrivate: false,
|
|
71
71
|
description: "\""
|
|
72
72
|
},
|
|
@@ -75,7 +75,7 @@ const queriesMetadata = {
|
|
|
75
75
|
protoName: "GetRoute",
|
|
76
76
|
paramsType: "GetRouteRequest",
|
|
77
77
|
returnType: "Route",
|
|
78
|
-
returnTypeNamespace: "@scaleway
|
|
78
|
+
returnTypeNamespace: "@scaleway/sdk-vpc/v2",
|
|
79
79
|
isList: false,
|
|
80
80
|
paginationType: "none",
|
|
81
81
|
isPrivate: false,
|
|
@@ -86,7 +86,7 @@ const queriesMetadata = {
|
|
|
86
86
|
protoName: "GetAcl",
|
|
87
87
|
paramsType: "GetAclRequest",
|
|
88
88
|
returnType: "GetAclResponse",
|
|
89
|
-
returnTypeNamespace: "@scaleway
|
|
89
|
+
returnTypeNamespace: "@scaleway/sdk-vpc/v2",
|
|
90
90
|
isList: false,
|
|
91
91
|
paginationType: "none",
|
|
92
92
|
isPrivate: false,
|
|
@@ -97,12 +97,12 @@ const queriesMetadata = {
|
|
|
97
97
|
protoName: "ListVPCConnectors",
|
|
98
98
|
paramsType: "ListVPCConnectorsRequest",
|
|
99
99
|
returnType: "ListVPCConnectorsResponse",
|
|
100
|
-
returnTypeNamespace: "@scaleway
|
|
100
|
+
returnTypeNamespace: "@scaleway/sdk-vpc/v2",
|
|
101
101
|
isList: true,
|
|
102
102
|
paginationType: "offset",
|
|
103
103
|
pageParamKey: "page",
|
|
104
104
|
listItemType: "VPCConnector",
|
|
105
|
-
listItemTypeNamespace: "@scaleway
|
|
105
|
+
listItemTypeNamespace: "@scaleway/sdk-vpc/v2",
|
|
106
106
|
isPrivate: false,
|
|
107
107
|
description: "\""
|
|
108
108
|
},
|
|
@@ -111,7 +111,7 @@ const queriesMetadata = {
|
|
|
111
111
|
protoName: "GetVPCConnector",
|
|
112
112
|
paramsType: "GetVPCConnectorRequest",
|
|
113
113
|
returnType: "VPCConnector",
|
|
114
|
-
returnTypeNamespace: "@scaleway
|
|
114
|
+
returnTypeNamespace: "@scaleway/sdk-vpc/v2",
|
|
115
115
|
isList: false,
|
|
116
116
|
paginationType: "none",
|
|
117
117
|
isPrivate: false,
|
|
@@ -122,12 +122,12 @@ const queriesMetadata = {
|
|
|
122
122
|
protoName: "ListSubnetOverlaps",
|
|
123
123
|
paramsType: "ListSubnetOverlapsRequest",
|
|
124
124
|
returnType: "ListSubnetOverlapsResponse",
|
|
125
|
-
returnTypeNamespace: "@scaleway
|
|
125
|
+
returnTypeNamespace: "@scaleway/sdk-vpc/v2",
|
|
126
126
|
isList: true,
|
|
127
127
|
paginationType: "offset",
|
|
128
128
|
pageParamKey: "page",
|
|
129
129
|
listItemType: "ListSubnetOverlapsResponseSubnetOverlap",
|
|
130
|
-
listItemTypeNamespace: "@scaleway
|
|
130
|
+
listItemTypeNamespace: "@scaleway/sdk-vpc/v2",
|
|
131
131
|
isPrivate: false,
|
|
132
132
|
description: "\""
|
|
133
133
|
},
|
|
@@ -136,12 +136,12 @@ const queriesMetadata = {
|
|
|
136
136
|
protoName: "ListIngressRules",
|
|
137
137
|
paramsType: "ListIngressRulesRequest",
|
|
138
138
|
returnType: "ListIngressRulesResponse",
|
|
139
|
-
returnTypeNamespace: "@scaleway
|
|
139
|
+
returnTypeNamespace: "@scaleway/sdk-vpc/v2",
|
|
140
140
|
isList: true,
|
|
141
141
|
paginationType: "offset",
|
|
142
142
|
pageParamKey: "page",
|
|
143
143
|
listItemType: "IngressRule",
|
|
144
|
-
listItemTypeNamespace: "@scaleway
|
|
144
|
+
listItemTypeNamespace: "@scaleway/sdk-vpc/v2",
|
|
145
145
|
isPrivate: false,
|
|
146
146
|
description: "\""
|
|
147
147
|
},
|
|
@@ -150,7 +150,7 @@ const queriesMetadata = {
|
|
|
150
150
|
protoName: "GetIngressRule",
|
|
151
151
|
paramsType: "GetIngressRuleRequest",
|
|
152
152
|
returnType: "IngressRule",
|
|
153
|
-
returnTypeNamespace: "@scaleway
|
|
153
|
+
returnTypeNamespace: "@scaleway/sdk-vpc/v2",
|
|
154
154
|
isList: false,
|
|
155
155
|
paginationType: "none",
|
|
156
156
|
isPrivate: false,
|
package/dist/v2/types.gen.d.ts
CHANGED
|
@@ -14,6 +14,10 @@ export interface Subnet {
|
|
|
14
14
|
* ID of the subnet.
|
|
15
15
|
*/
|
|
16
16
|
id: string;
|
|
17
|
+
/**
|
|
18
|
+
* The SRN of the subnet.
|
|
19
|
+
*/
|
|
20
|
+
srn: string;
|
|
17
21
|
/**
|
|
18
22
|
* Subnet creation date.
|
|
19
23
|
*/
|
|
@@ -48,6 +52,10 @@ export interface PrivateNetwork {
|
|
|
48
52
|
* Private Network ID.
|
|
49
53
|
*/
|
|
50
54
|
id: string;
|
|
55
|
+
/**
|
|
56
|
+
* The SRN of the private network.
|
|
57
|
+
*/
|
|
58
|
+
srn: string;
|
|
51
59
|
/**
|
|
52
60
|
* Private Network name.
|
|
53
61
|
*/
|
|
@@ -102,6 +110,10 @@ export interface Route {
|
|
|
102
110
|
* Route ID.
|
|
103
111
|
*/
|
|
104
112
|
id: string;
|
|
113
|
+
/**
|
|
114
|
+
* The SRN of the route.
|
|
115
|
+
*/
|
|
116
|
+
srn: string;
|
|
105
117
|
/**
|
|
106
118
|
* Route description.
|
|
107
119
|
*/
|
|
@@ -199,6 +211,10 @@ export interface IngressRule {
|
|
|
199
211
|
* ID of the ingress rule.
|
|
200
212
|
*/
|
|
201
213
|
id: string;
|
|
214
|
+
/**
|
|
215
|
+
* The SRN of the ingress rule.
|
|
216
|
+
*/
|
|
217
|
+
srn: string;
|
|
202
218
|
/**
|
|
203
219
|
* ID of the VPC this rule belongs to.
|
|
204
220
|
*/
|
|
@@ -259,6 +275,10 @@ export interface VPCConnector {
|
|
|
259
275
|
* VPC connector ID.
|
|
260
276
|
*/
|
|
261
277
|
id: string;
|
|
278
|
+
/**
|
|
279
|
+
* The SRN of the VPC connector.
|
|
280
|
+
*/
|
|
281
|
+
srn: string;
|
|
262
282
|
/**
|
|
263
283
|
* VPC connector name.
|
|
264
284
|
*/
|
|
@@ -309,6 +329,10 @@ export interface VPC {
|
|
|
309
329
|
* VPC ID.
|
|
310
330
|
*/
|
|
311
331
|
id: string;
|
|
332
|
+
/**
|
|
333
|
+
* The SRN of the VPC.
|
|
334
|
+
*/
|
|
335
|
+
srn: string;
|
|
312
336
|
/**
|
|
313
337
|
* VPC name.
|
|
314
338
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleway/sdk-vpc",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.17.0",
|
|
4
4
|
"description": "Scaleway SDK vpc",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -33,17 +33,14 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@scaleway/random-name": "6.0.2",
|
|
36
|
-
"@scaleway/sdk-std": "2.
|
|
36
|
+
"@scaleway/sdk-std": "2.8.1"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@repo/configs": "^0.1.1",
|
|
40
|
-
"@scaleway/sdk-client": "^2.
|
|
40
|
+
"@scaleway/sdk-client": "^2.9.0"
|
|
41
41
|
},
|
|
42
42
|
"peerDependencies": {
|
|
43
|
-
"@scaleway/sdk-client": "^2.
|
|
44
|
-
},
|
|
45
|
-
"engines": {
|
|
46
|
-
"node": ">=20.20.2"
|
|
43
|
+
"@scaleway/sdk-client": "^2.9.0"
|
|
47
44
|
},
|
|
48
45
|
"scripts": {
|
|
49
46
|
"package:check": "pnpm publint",
|