@scaleway/sdk-vpcgw 2.10.0 → 2.12.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/constants.gen.d.ts +15 -0
- package/dist/v2/constants.gen.js +65 -0
- package/dist/v2/index.gen.d.ts +1 -0
- package/dist/v2/index.gen.js +9 -1
- package/dist/v2/metadata.gen.d.ts +13 -0
- package/dist/v2/metadata.gen.js +13 -0
- package/package.json +2 -2
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { GatewayNetworkStatus, GatewayStatus, ListGatewayNetworksRequestOrderBy, ListGatewaysRequestOrderBy, ListIPsRequestOrderBy, ListPatRulesRequestOrderBy, PatRuleProtocol } from './types.gen.js';
|
|
2
|
+
/** Lists all values of the enum {@link GatewayNetworkStatus}. */
|
|
3
|
+
export declare const GATEWAY_NETWORK_STATUSES: GatewayNetworkStatus[];
|
|
4
|
+
/** Lists all values of the enum {@link GatewayStatus}. */
|
|
5
|
+
export declare const GATEWAY_STATUSES: GatewayStatus[];
|
|
6
|
+
/** Lists all values of the enum {@link ListGatewayNetworksRequestOrderBy}. */
|
|
7
|
+
export declare const LIST_GATEWAY_NETWORKS_REQUEST_ORDER_BIES: ListGatewayNetworksRequestOrderBy[];
|
|
8
|
+
/** Lists all values of the enum {@link ListGatewaysRequestOrderBy}. */
|
|
9
|
+
export declare const LIST_GATEWAYS_REQUEST_ORDER_BIES: ListGatewaysRequestOrderBy[];
|
|
10
|
+
/** Lists all values of the enum {@link ListIPsRequestOrderBy}. */
|
|
11
|
+
export declare const LIST_I_PS_REQUEST_ORDER_BIES: ListIPsRequestOrderBy[];
|
|
12
|
+
/** Lists all values of the enum {@link ListPatRulesRequestOrderBy}. */
|
|
13
|
+
export declare const LIST_PAT_RULES_REQUEST_ORDER_BIES: ListPatRulesRequestOrderBy[];
|
|
14
|
+
/** Lists all values of the enum {@link PatRuleProtocol}. */
|
|
15
|
+
export declare const PAT_RULE_PROTOCOLS: PatRuleProtocol[];
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
//#region src/v2/constants.gen.ts
|
|
2
|
+
/** Lists all values of the enum {@link GatewayNetworkStatus}. */
|
|
3
|
+
const GATEWAY_NETWORK_STATUSES = [
|
|
4
|
+
"unknown_status",
|
|
5
|
+
"created",
|
|
6
|
+
"attaching",
|
|
7
|
+
"configuring",
|
|
8
|
+
"ready",
|
|
9
|
+
"detaching"
|
|
10
|
+
];
|
|
11
|
+
/** Lists all values of the enum {@link GatewayStatus}. */
|
|
12
|
+
const GATEWAY_STATUSES = [
|
|
13
|
+
"unknown_status",
|
|
14
|
+
"stopped",
|
|
15
|
+
"allocating",
|
|
16
|
+
"configuring",
|
|
17
|
+
"running",
|
|
18
|
+
"stopping",
|
|
19
|
+
"failed",
|
|
20
|
+
"deleting",
|
|
21
|
+
"locked"
|
|
22
|
+
];
|
|
23
|
+
/** Lists all values of the enum {@link ListGatewayNetworksRequestOrderBy}. */
|
|
24
|
+
const LIST_GATEWAY_NETWORKS_REQUEST_ORDER_BIES = [
|
|
25
|
+
"created_at_asc",
|
|
26
|
+
"created_at_desc",
|
|
27
|
+
"status_asc",
|
|
28
|
+
"status_desc"
|
|
29
|
+
];
|
|
30
|
+
/** Lists all values of the enum {@link ListGatewaysRequestOrderBy}. */
|
|
31
|
+
const LIST_GATEWAYS_REQUEST_ORDER_BIES = [
|
|
32
|
+
"created_at_asc",
|
|
33
|
+
"created_at_desc",
|
|
34
|
+
"name_asc",
|
|
35
|
+
"name_desc",
|
|
36
|
+
"type_asc",
|
|
37
|
+
"type_desc",
|
|
38
|
+
"status_asc",
|
|
39
|
+
"status_desc"
|
|
40
|
+
];
|
|
41
|
+
/** Lists all values of the enum {@link ListIPsRequestOrderBy}. */
|
|
42
|
+
const LIST_I_PS_REQUEST_ORDER_BIES = [
|
|
43
|
+
"created_at_asc",
|
|
44
|
+
"created_at_desc",
|
|
45
|
+
"address_asc",
|
|
46
|
+
"address_desc",
|
|
47
|
+
"reverse_asc",
|
|
48
|
+
"reverse_desc"
|
|
49
|
+
];
|
|
50
|
+
/** Lists all values of the enum {@link ListPatRulesRequestOrderBy}. */
|
|
51
|
+
const LIST_PAT_RULES_REQUEST_ORDER_BIES = [
|
|
52
|
+
"created_at_asc",
|
|
53
|
+
"created_at_desc",
|
|
54
|
+
"public_port_asc",
|
|
55
|
+
"public_port_desc"
|
|
56
|
+
];
|
|
57
|
+
/** Lists all values of the enum {@link PatRuleProtocol}. */
|
|
58
|
+
const PAT_RULE_PROTOCOLS = [
|
|
59
|
+
"unknown_protocol",
|
|
60
|
+
"both",
|
|
61
|
+
"tcp",
|
|
62
|
+
"udp"
|
|
63
|
+
];
|
|
64
|
+
//#endregion
|
|
65
|
+
export { GATEWAY_NETWORK_STATUSES, GATEWAY_STATUSES, LIST_GATEWAYS_REQUEST_ORDER_BIES, LIST_GATEWAY_NETWORKS_REQUEST_ORDER_BIES, LIST_I_PS_REQUEST_ORDER_BIES, LIST_PAT_RULES_REQUEST_ORDER_BIES, PAT_RULE_PROTOCOLS };
|
package/dist/v2/index.gen.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { API, } from './api.gen.js';
|
|
2
2
|
export * from './content.gen.js';
|
|
3
|
+
export * from './constants.gen.js';
|
|
3
4
|
export * from './marshalling.gen.js';
|
|
4
5
|
export type { AddBastionAllowedIPsRequest, AddBastionAllowedIPsResponse, CreateGatewayNetworkRequest, CreateGatewayRequest, CreateIPRequest, CreatePatRuleRequest, DeleteBastionAllowedIPsRequest, DeleteGatewayNetworkRequest, DeleteGatewayRequest, DeleteIPRequest, DeletePatRuleRequest, Gateway, GatewayNetwork, GatewayNetworkStatus, GatewayStatus, GatewayType, GetGatewayNetworkRequest, GetGatewayRequest, GetIPRequest, GetPatRuleRequest, IP, ListGatewayNetworksRequest, ListGatewayNetworksRequestOrderBy, ListGatewayNetworksResponse, ListGatewayTypesRequest, ListGatewayTypesResponse, ListGatewaysRequest, ListGatewaysRequestOrderBy, ListGatewaysResponse, ListIPsRequest, ListIPsRequestOrderBy, ListIPsResponse, ListPatRulesRequest, ListPatRulesRequestOrderBy, ListPatRulesResponse, PatRule, PatRuleProtocol, RefreshSSHKeysRequest, SetBastionAllowedIPsRequest, SetBastionAllowedIPsResponse, SetPatRulesRequest, SetPatRulesRequestRule, SetPatRulesResponse, UpdateGatewayNetworkRequest, UpdateGatewayRequest, UpdateIPRequest, UpdatePatRuleRequest, UpgradeGatewayRequest, } from './types.gen.js';
|
package/dist/v2/index.gen.js
CHANGED
|
@@ -2,11 +2,19 @@ import { __exportAll } from "../_virtual/_rolldown/runtime.js";
|
|
|
2
2
|
import { GATEWAY_NETWORK_TRANSIENT_STATUSES, GATEWAY_TRANSIENT_STATUSES } from "./content.gen.js";
|
|
3
3
|
import { marshalAddBastionAllowedIPsRequest, marshalCreateGatewayNetworkRequest, marshalCreateGatewayRequest, marshalCreateIPRequest, marshalCreatePatRuleRequest, marshalSetBastionAllowedIPsRequest, marshalSetPatRulesRequest, marshalUpdateGatewayNetworkRequest, marshalUpdateGatewayRequest, marshalUpdateIPRequest, marshalUpdatePatRuleRequest, marshalUpgradeGatewayRequest, unmarshalAddBastionAllowedIPsResponse, unmarshalGateway, unmarshalGatewayNetwork, unmarshalIP, unmarshalListGatewayNetworksResponse, unmarshalListGatewayTypesResponse, unmarshalListGatewaysResponse, unmarshalListIPsResponse, unmarshalListPatRulesResponse, unmarshalPatRule, unmarshalSetBastionAllowedIPsResponse, unmarshalSetPatRulesResponse } from "./marshalling.gen.js";
|
|
4
4
|
import { API } from "./api.gen.js";
|
|
5
|
+
import { GATEWAY_NETWORK_STATUSES, GATEWAY_STATUSES, LIST_GATEWAYS_REQUEST_ORDER_BIES, LIST_GATEWAY_NETWORKS_REQUEST_ORDER_BIES, LIST_I_PS_REQUEST_ORDER_BIES, LIST_PAT_RULES_REQUEST_ORDER_BIES, PAT_RULE_PROTOCOLS } from "./constants.gen.js";
|
|
5
6
|
//#region src/v2/index.gen.ts
|
|
6
7
|
var index_gen_exports = /* @__PURE__ */ __exportAll({
|
|
7
8
|
API: () => API,
|
|
9
|
+
GATEWAY_NETWORK_STATUSES: () => GATEWAY_NETWORK_STATUSES,
|
|
8
10
|
GATEWAY_NETWORK_TRANSIENT_STATUSES: () => GATEWAY_NETWORK_TRANSIENT_STATUSES,
|
|
11
|
+
GATEWAY_STATUSES: () => GATEWAY_STATUSES,
|
|
9
12
|
GATEWAY_TRANSIENT_STATUSES: () => GATEWAY_TRANSIENT_STATUSES,
|
|
13
|
+
LIST_GATEWAYS_REQUEST_ORDER_BIES: () => LIST_GATEWAYS_REQUEST_ORDER_BIES,
|
|
14
|
+
LIST_GATEWAY_NETWORKS_REQUEST_ORDER_BIES: () => LIST_GATEWAY_NETWORKS_REQUEST_ORDER_BIES,
|
|
15
|
+
LIST_I_PS_REQUEST_ORDER_BIES: () => LIST_I_PS_REQUEST_ORDER_BIES,
|
|
16
|
+
LIST_PAT_RULES_REQUEST_ORDER_BIES: () => LIST_PAT_RULES_REQUEST_ORDER_BIES,
|
|
17
|
+
PAT_RULE_PROTOCOLS: () => PAT_RULE_PROTOCOLS,
|
|
10
18
|
marshalAddBastionAllowedIPsRequest: () => marshalAddBastionAllowedIPsRequest,
|
|
11
19
|
marshalCreateGatewayNetworkRequest: () => marshalCreateGatewayNetworkRequest,
|
|
12
20
|
marshalCreateGatewayRequest: () => marshalCreateGatewayRequest,
|
|
@@ -33,4 +41,4 @@ var index_gen_exports = /* @__PURE__ */ __exportAll({
|
|
|
33
41
|
unmarshalSetPatRulesResponse: () => unmarshalSetPatRulesResponse
|
|
34
42
|
});
|
|
35
43
|
//#endregion
|
|
36
|
-
export { API, GATEWAY_NETWORK_TRANSIENT_STATUSES, GATEWAY_TRANSIENT_STATUSES, index_gen_exports, marshalAddBastionAllowedIPsRequest, marshalCreateGatewayNetworkRequest, marshalCreateGatewayRequest, marshalCreateIPRequest, marshalCreatePatRuleRequest, marshalSetBastionAllowedIPsRequest, marshalSetPatRulesRequest, marshalUpdateGatewayNetworkRequest, marshalUpdateGatewayRequest, marshalUpdateIPRequest, marshalUpdatePatRuleRequest, marshalUpgradeGatewayRequest, unmarshalAddBastionAllowedIPsResponse, unmarshalGateway, unmarshalGatewayNetwork, unmarshalIP, unmarshalListGatewayNetworksResponse, unmarshalListGatewayTypesResponse, unmarshalListGatewaysResponse, unmarshalListIPsResponse, unmarshalListPatRulesResponse, unmarshalPatRule, unmarshalSetBastionAllowedIPsResponse, unmarshalSetPatRulesResponse };
|
|
44
|
+
export { API, GATEWAY_NETWORK_STATUSES, GATEWAY_NETWORK_TRANSIENT_STATUSES, GATEWAY_STATUSES, GATEWAY_TRANSIENT_STATUSES, LIST_GATEWAYS_REQUEST_ORDER_BIES, LIST_GATEWAY_NETWORKS_REQUEST_ORDER_BIES, LIST_I_PS_REQUEST_ORDER_BIES, LIST_PAT_RULES_REQUEST_ORDER_BIES, PAT_RULE_PROTOCOLS, index_gen_exports, marshalAddBastionAllowedIPsRequest, marshalCreateGatewayNetworkRequest, marshalCreateGatewayRequest, marshalCreateIPRequest, marshalCreatePatRuleRequest, marshalSetBastionAllowedIPsRequest, marshalSetPatRulesRequest, marshalUpdateGatewayNetworkRequest, marshalUpdateGatewayRequest, marshalUpdateIPRequest, marshalUpdatePatRuleRequest, marshalUpgradeGatewayRequest, unmarshalAddBastionAllowedIPsResponse, unmarshalGateway, unmarshalGatewayNetwork, unmarshalIP, unmarshalListGatewayNetworksResponse, unmarshalListGatewayTypesResponse, unmarshalListGatewaysResponse, unmarshalListIPsResponse, unmarshalListPatRulesResponse, unmarshalPatRule, unmarshalSetBastionAllowedIPsResponse, unmarshalSetPatRulesResponse };
|
|
@@ -9,10 +9,12 @@ export declare const queriesMetadata: {
|
|
|
9
9
|
readonly protoName: 'ListGateways';
|
|
10
10
|
readonly paramsType: 'ListGatewaysRequest';
|
|
11
11
|
readonly returnType: 'ListGatewaysResponse';
|
|
12
|
+
readonly returnTypeNamespace: '@scaleway-internal/sdk-vpcgw/v2';
|
|
12
13
|
readonly isList: true;
|
|
13
14
|
readonly paginationType: 'offset';
|
|
14
15
|
readonly pageParamKey: 'page';
|
|
15
16
|
readonly listItemType: 'Gateway';
|
|
17
|
+
readonly listItemTypeNamespace: '@scaleway-internal/sdk-vpcgw/v2';
|
|
16
18
|
readonly isPrivate: false;
|
|
17
19
|
readonly description: '"';
|
|
18
20
|
}, {
|
|
@@ -20,6 +22,7 @@ export declare const queriesMetadata: {
|
|
|
20
22
|
readonly protoName: 'GetGateway';
|
|
21
23
|
readonly paramsType: 'GetGatewayRequest';
|
|
22
24
|
readonly returnType: 'Gateway';
|
|
25
|
+
readonly returnTypeNamespace: '@scaleway-internal/sdk-vpcgw/v2';
|
|
23
26
|
readonly isList: false;
|
|
24
27
|
readonly paginationType: 'none';
|
|
25
28
|
readonly isPrivate: false;
|
|
@@ -30,10 +33,12 @@ export declare const queriesMetadata: {
|
|
|
30
33
|
readonly protoName: 'ListGatewayNetworks';
|
|
31
34
|
readonly paramsType: 'ListGatewayNetworksRequest';
|
|
32
35
|
readonly returnType: 'ListGatewayNetworksResponse';
|
|
36
|
+
readonly returnTypeNamespace: '@scaleway-internal/sdk-vpcgw/v2';
|
|
33
37
|
readonly isList: true;
|
|
34
38
|
readonly paginationType: 'offset';
|
|
35
39
|
readonly pageParamKey: 'page';
|
|
36
40
|
readonly listItemType: 'GatewayNetwork';
|
|
41
|
+
readonly listItemTypeNamespace: '@scaleway-internal/sdk-vpcgw/v2';
|
|
37
42
|
readonly isPrivate: false;
|
|
38
43
|
readonly description: '"';
|
|
39
44
|
}, {
|
|
@@ -41,6 +46,7 @@ export declare const queriesMetadata: {
|
|
|
41
46
|
readonly protoName: 'GetGatewayNetwork';
|
|
42
47
|
readonly paramsType: 'GetGatewayNetworkRequest';
|
|
43
48
|
readonly returnType: 'GatewayNetwork';
|
|
49
|
+
readonly returnTypeNamespace: '@scaleway-internal/sdk-vpcgw/v2';
|
|
44
50
|
readonly isList: false;
|
|
45
51
|
readonly paginationType: 'none';
|
|
46
52
|
readonly isPrivate: false;
|
|
@@ -51,10 +57,12 @@ export declare const queriesMetadata: {
|
|
|
51
57
|
readonly protoName: 'ListPatRules';
|
|
52
58
|
readonly paramsType: 'ListPatRulesRequest';
|
|
53
59
|
readonly returnType: 'ListPatRulesResponse';
|
|
60
|
+
readonly returnTypeNamespace: '@scaleway-internal/sdk-vpcgw/v2';
|
|
54
61
|
readonly isList: true;
|
|
55
62
|
readonly paginationType: 'offset';
|
|
56
63
|
readonly pageParamKey: 'page';
|
|
57
64
|
readonly listItemType: 'PatRule';
|
|
65
|
+
readonly listItemTypeNamespace: '@scaleway-internal/sdk-vpcgw/v2';
|
|
58
66
|
readonly isPrivate: false;
|
|
59
67
|
readonly description: '"';
|
|
60
68
|
}, {
|
|
@@ -62,6 +70,7 @@ export declare const queriesMetadata: {
|
|
|
62
70
|
readonly protoName: 'GetPatRule';
|
|
63
71
|
readonly paramsType: 'GetPatRuleRequest';
|
|
64
72
|
readonly returnType: 'PatRule';
|
|
73
|
+
readonly returnTypeNamespace: '@scaleway-internal/sdk-vpcgw/v2';
|
|
65
74
|
readonly isList: false;
|
|
66
75
|
readonly paginationType: 'none';
|
|
67
76
|
readonly isPrivate: false;
|
|
@@ -71,6 +80,7 @@ export declare const queriesMetadata: {
|
|
|
71
80
|
readonly protoName: 'ListGatewayTypes';
|
|
72
81
|
readonly paramsType: 'ListGatewayTypesRequest';
|
|
73
82
|
readonly returnType: 'ListGatewayTypesResponse';
|
|
83
|
+
readonly returnTypeNamespace: '@scaleway-internal/sdk-vpcgw/v2';
|
|
74
84
|
readonly isList: false;
|
|
75
85
|
readonly paginationType: 'none';
|
|
76
86
|
readonly isPrivate: false;
|
|
@@ -80,10 +90,12 @@ export declare const queriesMetadata: {
|
|
|
80
90
|
readonly protoName: 'ListIPs';
|
|
81
91
|
readonly paramsType: 'ListIPsRequest';
|
|
82
92
|
readonly returnType: 'ListIPsResponse';
|
|
93
|
+
readonly returnTypeNamespace: '@scaleway-internal/sdk-vpcgw/v2';
|
|
83
94
|
readonly isList: true;
|
|
84
95
|
readonly paginationType: 'offset';
|
|
85
96
|
readonly pageParamKey: 'page';
|
|
86
97
|
readonly listItemType: 'IP';
|
|
98
|
+
readonly listItemTypeNamespace: '@scaleway-internal/sdk-vpcgw/v2';
|
|
87
99
|
readonly isPrivate: false;
|
|
88
100
|
readonly description: '"';
|
|
89
101
|
}, {
|
|
@@ -91,6 +103,7 @@ export declare const queriesMetadata: {
|
|
|
91
103
|
readonly protoName: 'GetIP';
|
|
92
104
|
readonly paramsType: 'GetIPRequest';
|
|
93
105
|
readonly returnType: 'IP';
|
|
106
|
+
readonly returnTypeNamespace: '@scaleway-internal/sdk-vpcgw/v2';
|
|
94
107
|
readonly isList: false;
|
|
95
108
|
readonly paginationType: 'none';
|
|
96
109
|
readonly isPrivate: false;
|
package/dist/v2/metadata.gen.js
CHANGED
|
@@ -11,10 +11,12 @@ const queriesMetadata = {
|
|
|
11
11
|
protoName: "ListGateways",
|
|
12
12
|
paramsType: "ListGatewaysRequest",
|
|
13
13
|
returnType: "ListGatewaysResponse",
|
|
14
|
+
returnTypeNamespace: "@scaleway-internal/sdk-vpcgw/v2",
|
|
14
15
|
isList: true,
|
|
15
16
|
paginationType: "offset",
|
|
16
17
|
pageParamKey: "page",
|
|
17
18
|
listItemType: "Gateway",
|
|
19
|
+
listItemTypeNamespace: "@scaleway-internal/sdk-vpcgw/v2",
|
|
18
20
|
isPrivate: false,
|
|
19
21
|
description: "\""
|
|
20
22
|
},
|
|
@@ -23,6 +25,7 @@ const queriesMetadata = {
|
|
|
23
25
|
protoName: "GetGateway",
|
|
24
26
|
paramsType: "GetGatewayRequest",
|
|
25
27
|
returnType: "Gateway",
|
|
28
|
+
returnTypeNamespace: "@scaleway-internal/sdk-vpcgw/v2",
|
|
26
29
|
isList: false,
|
|
27
30
|
paginationType: "none",
|
|
28
31
|
isPrivate: false,
|
|
@@ -34,10 +37,12 @@ const queriesMetadata = {
|
|
|
34
37
|
protoName: "ListGatewayNetworks",
|
|
35
38
|
paramsType: "ListGatewayNetworksRequest",
|
|
36
39
|
returnType: "ListGatewayNetworksResponse",
|
|
40
|
+
returnTypeNamespace: "@scaleway-internal/sdk-vpcgw/v2",
|
|
37
41
|
isList: true,
|
|
38
42
|
paginationType: "offset",
|
|
39
43
|
pageParamKey: "page",
|
|
40
44
|
listItemType: "GatewayNetwork",
|
|
45
|
+
listItemTypeNamespace: "@scaleway-internal/sdk-vpcgw/v2",
|
|
41
46
|
isPrivate: false,
|
|
42
47
|
description: "\""
|
|
43
48
|
},
|
|
@@ -46,6 +51,7 @@ const queriesMetadata = {
|
|
|
46
51
|
protoName: "GetGatewayNetwork",
|
|
47
52
|
paramsType: "GetGatewayNetworkRequest",
|
|
48
53
|
returnType: "GatewayNetwork",
|
|
54
|
+
returnTypeNamespace: "@scaleway-internal/sdk-vpcgw/v2",
|
|
49
55
|
isList: false,
|
|
50
56
|
paginationType: "none",
|
|
51
57
|
isPrivate: false,
|
|
@@ -57,10 +63,12 @@ const queriesMetadata = {
|
|
|
57
63
|
protoName: "ListPatRules",
|
|
58
64
|
paramsType: "ListPatRulesRequest",
|
|
59
65
|
returnType: "ListPatRulesResponse",
|
|
66
|
+
returnTypeNamespace: "@scaleway-internal/sdk-vpcgw/v2",
|
|
60
67
|
isList: true,
|
|
61
68
|
paginationType: "offset",
|
|
62
69
|
pageParamKey: "page",
|
|
63
70
|
listItemType: "PatRule",
|
|
71
|
+
listItemTypeNamespace: "@scaleway-internal/sdk-vpcgw/v2",
|
|
64
72
|
isPrivate: false,
|
|
65
73
|
description: "\""
|
|
66
74
|
},
|
|
@@ -69,6 +77,7 @@ const queriesMetadata = {
|
|
|
69
77
|
protoName: "GetPatRule",
|
|
70
78
|
paramsType: "GetPatRuleRequest",
|
|
71
79
|
returnType: "PatRule",
|
|
80
|
+
returnTypeNamespace: "@scaleway-internal/sdk-vpcgw/v2",
|
|
72
81
|
isList: false,
|
|
73
82
|
paginationType: "none",
|
|
74
83
|
isPrivate: false,
|
|
@@ -79,6 +88,7 @@ const queriesMetadata = {
|
|
|
79
88
|
protoName: "ListGatewayTypes",
|
|
80
89
|
paramsType: "ListGatewayTypesRequest",
|
|
81
90
|
returnType: "ListGatewayTypesResponse",
|
|
91
|
+
returnTypeNamespace: "@scaleway-internal/sdk-vpcgw/v2",
|
|
82
92
|
isList: false,
|
|
83
93
|
paginationType: "none",
|
|
84
94
|
isPrivate: false,
|
|
@@ -89,10 +99,12 @@ const queriesMetadata = {
|
|
|
89
99
|
protoName: "ListIPs",
|
|
90
100
|
paramsType: "ListIPsRequest",
|
|
91
101
|
returnType: "ListIPsResponse",
|
|
102
|
+
returnTypeNamespace: "@scaleway-internal/sdk-vpcgw/v2",
|
|
92
103
|
isList: true,
|
|
93
104
|
paginationType: "offset",
|
|
94
105
|
pageParamKey: "page",
|
|
95
106
|
listItemType: "IP",
|
|
107
|
+
listItemTypeNamespace: "@scaleway-internal/sdk-vpcgw/v2",
|
|
96
108
|
isPrivate: false,
|
|
97
109
|
description: "\""
|
|
98
110
|
},
|
|
@@ -101,6 +113,7 @@ const queriesMetadata = {
|
|
|
101
113
|
protoName: "GetIP",
|
|
102
114
|
paramsType: "GetIPRequest",
|
|
103
115
|
returnType: "IP",
|
|
116
|
+
returnTypeNamespace: "@scaleway-internal/sdk-vpcgw/v2",
|
|
104
117
|
isList: false,
|
|
105
118
|
paginationType: "none",
|
|
106
119
|
isPrivate: false,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleway/sdk-vpcgw",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.12.0",
|
|
4
4
|
"description": "Scaleway SDK vpcgw",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@scaleway/random-name": "6.0.2",
|
|
36
|
-
"@scaleway/sdk-std": "2.
|
|
36
|
+
"@scaleway/sdk-std": "2.7.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@repo/configs": "^0.1.1",
|