@scaleway/sdk-s2s-vpn 2.11.0 → 2.13.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.
@@ -0,0 +1,27 @@
1
+ import type { BgpSessionStatus, ConnectionDhGroup, ConnectionEncryption, ConnectionInitiationPolicy, ConnectionIntegrity, ConnectionStatus, CreateConnectionRequestInitiationPolicy, ListConnectionsRequestOrderBy, ListCustomerGatewaysRequestOrderBy, ListRoutingPoliciesRequestOrderBy, ListVpnGatewaysRequestOrderBy, TunnelStatus, VpnGatewayStatus } from './types.gen.js';
2
+ /** Lists all values of the enum {@link BgpSessionStatus}. */
3
+ export declare const BGP_SESSION_STATUSES: BgpSessionStatus[];
4
+ /** Lists all values of the enum {@link ConnectionDhGroup}. */
5
+ export declare const CONNECTION_DH_GROUPS: ConnectionDhGroup[];
6
+ /** Lists all values of the enum {@link ConnectionEncryption}. */
7
+ export declare const CONNECTION_ENCRYPTIONS: ConnectionEncryption[];
8
+ /** Lists all values of the enum {@link ConnectionInitiationPolicy}. */
9
+ export declare const CONNECTION_INITIATION_POLICIES: ConnectionInitiationPolicy[];
10
+ /** Lists all values of the enum {@link ConnectionIntegrity}. */
11
+ export declare const CONNECTION_INTEGRITIES: ConnectionIntegrity[];
12
+ /** Lists all values of the enum {@link ConnectionStatus}. */
13
+ export declare const CONNECTION_STATUSES: ConnectionStatus[];
14
+ /** Lists all values of the enum {@link CreateConnectionRequestInitiationPolicy}. */
15
+ export declare const CREATE_CONNECTION_REQUEST_INITIATION_POLICIES: CreateConnectionRequestInitiationPolicy[];
16
+ /** Lists all values of the enum {@link ListConnectionsRequestOrderBy}. */
17
+ export declare const LIST_CONNECTIONS_REQUEST_ORDER_BIES: ListConnectionsRequestOrderBy[];
18
+ /** Lists all values of the enum {@link ListCustomerGatewaysRequestOrderBy}. */
19
+ export declare const LIST_CUSTOMER_GATEWAYS_REQUEST_ORDER_BIES: ListCustomerGatewaysRequestOrderBy[];
20
+ /** Lists all values of the enum {@link ListRoutingPoliciesRequestOrderBy}. */
21
+ export declare const LIST_ROUTING_POLICIES_REQUEST_ORDER_BIES: ListRoutingPoliciesRequestOrderBy[];
22
+ /** Lists all values of the enum {@link ListVpnGatewaysRequestOrderBy}. */
23
+ export declare const LIST_VPN_GATEWAYS_REQUEST_ORDER_BIES: ListVpnGatewaysRequestOrderBy[];
24
+ /** Lists all values of the enum {@link TunnelStatus}. */
25
+ export declare const TUNNEL_STATUSES: TunnelStatus[];
26
+ /** Lists all values of the enum {@link VpnGatewayStatus}. */
27
+ export declare const VPN_GATEWAY_STATUSES: VpnGatewayStatus[];
@@ -0,0 +1,111 @@
1
+ //#region src/v1alpha1/constants.gen.ts
2
+ /** Lists all values of the enum {@link BgpSessionStatus}. */
3
+ const BGP_SESSION_STATUSES = [
4
+ "unknown_status",
5
+ "up",
6
+ "down",
7
+ "disabled"
8
+ ];
9
+ /** Lists all values of the enum {@link ConnectionDhGroup}. */
10
+ const CONNECTION_DH_GROUPS = [
11
+ "unknown_dhgroup",
12
+ "modp2048",
13
+ "modp3072",
14
+ "modp4096",
15
+ "ecp256",
16
+ "ecp384",
17
+ "ecp521",
18
+ "curve25519"
19
+ ];
20
+ /** Lists all values of the enum {@link ConnectionEncryption}. */
21
+ const CONNECTION_ENCRYPTIONS = [
22
+ "unknown_encryption",
23
+ "aes128",
24
+ "aes192",
25
+ "aes256",
26
+ "aes128gcm",
27
+ "aes192gcm",
28
+ "aes256gcm",
29
+ "aes128ccm",
30
+ "aes256ccm",
31
+ "chacha20poly1305"
32
+ ];
33
+ /** Lists all values of the enum {@link ConnectionInitiationPolicy}. */
34
+ const CONNECTION_INITIATION_POLICIES = [
35
+ "unknown_initiation_policy",
36
+ "vpn_gateway",
37
+ "customer_gateway"
38
+ ];
39
+ /** Lists all values of the enum {@link ConnectionIntegrity}. */
40
+ const CONNECTION_INTEGRITIES = [
41
+ "unknown_integrity",
42
+ "sha256",
43
+ "sha384",
44
+ "sha512"
45
+ ];
46
+ /** Lists all values of the enum {@link ConnectionStatus}. */
47
+ const CONNECTION_STATUSES = [
48
+ "unknown_status",
49
+ "active",
50
+ "limited_connectivity",
51
+ "down",
52
+ "locked"
53
+ ];
54
+ /** Lists all values of the enum {@link CreateConnectionRequestInitiationPolicy}. */
55
+ const CREATE_CONNECTION_REQUEST_INITIATION_POLICIES = [
56
+ "unknown_initiation_policy",
57
+ "vpn_gateway",
58
+ "customer_gateway"
59
+ ];
60
+ /** Lists all values of the enum {@link ListConnectionsRequestOrderBy}. */
61
+ const LIST_CONNECTIONS_REQUEST_ORDER_BIES = [
62
+ "created_at_asc",
63
+ "created_at_desc",
64
+ "name_asc",
65
+ "name_desc",
66
+ "status_asc",
67
+ "status_desc"
68
+ ];
69
+ /** Lists all values of the enum {@link ListCustomerGatewaysRequestOrderBy}. */
70
+ const LIST_CUSTOMER_GATEWAYS_REQUEST_ORDER_BIES = [
71
+ "created_at_asc",
72
+ "created_at_desc",
73
+ "name_asc",
74
+ "name_desc"
75
+ ];
76
+ /** Lists all values of the enum {@link ListRoutingPoliciesRequestOrderBy}. */
77
+ const LIST_ROUTING_POLICIES_REQUEST_ORDER_BIES = [
78
+ "created_at_asc",
79
+ "created_at_desc",
80
+ "name_asc",
81
+ "name_desc"
82
+ ];
83
+ /** Lists all values of the enum {@link ListVpnGatewaysRequestOrderBy}. */
84
+ const LIST_VPN_GATEWAYS_REQUEST_ORDER_BIES = [
85
+ "created_at_asc",
86
+ "created_at_desc",
87
+ "name_asc",
88
+ "name_desc",
89
+ "type_asc",
90
+ "type_desc",
91
+ "status_asc",
92
+ "status_desc"
93
+ ];
94
+ /** Lists all values of the enum {@link TunnelStatus}. */
95
+ const TUNNEL_STATUSES = [
96
+ "unknown_tunnel_status",
97
+ "up",
98
+ "down"
99
+ ];
100
+ /** Lists all values of the enum {@link VpnGatewayStatus}. */
101
+ const VPN_GATEWAY_STATUSES = [
102
+ "unknown_status",
103
+ "configuring",
104
+ "failed",
105
+ "provisioning",
106
+ "active",
107
+ "deprovisioning",
108
+ "locked"
109
+ ];
110
+ //#endregion
111
+ export { BGP_SESSION_STATUSES, CONNECTION_DH_GROUPS, CONNECTION_ENCRYPTIONS, CONNECTION_INITIATION_POLICIES, CONNECTION_INTEGRITIES, CONNECTION_STATUSES, CREATE_CONNECTION_REQUEST_INITIATION_POLICIES, LIST_CONNECTIONS_REQUEST_ORDER_BIES, LIST_CUSTOMER_GATEWAYS_REQUEST_ORDER_BIES, LIST_ROUTING_POLICIES_REQUEST_ORDER_BIES, LIST_VPN_GATEWAYS_REQUEST_ORDER_BIES, TUNNEL_STATUSES, VPN_GATEWAY_STATUSES };
@@ -1,5 +1,6 @@
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 { BgpSession, BgpSessionStatus, ChangeConnectionPskRequest, ChangeConnectionPskRequestSecret, ChangeConnectionPskResponse, Connection, ConnectionCipher, ConnectionDhGroup, ConnectionEncryption, ConnectionInitiationPolicy, ConnectionIntegrity, ConnectionStatus, CreateConnectionRequest, CreateConnectionRequestBgpConfig, CreateConnectionRequestInitiationPolicy, CreateConnectionRequestSecret, CreateConnectionResponse, CreateCustomerGatewayRequest, CreateRoutingPolicyRequest, CreateVpnGatewayRequest, CreateVpnGatewayRequestDualIpTunnel, CreateVpnGatewayRequestPublicConfig, CreateVpnGatewayRequestPublicTunnelConfig, CreateVpnGatewayRequestSingleIpTunnel, CustomerGateway, DeleteConnectionRequest, DeleteCustomerGatewayRequest, DeleteRoutingPolicyRequest, DeleteVpnGatewayRequest, DetachRoutingPolicyRequest, DisableRoutePropagationRequest, EnableRoutePropagationRequest, GatewayType, GetConnectionRequest, GetCustomerGatewayRequest, GetRoutingPolicyRequest, GetVpnGatewayRequest, ListConnectionsRequest, ListConnectionsRequestOrderBy, ListConnectionsResponse, ListCustomerGatewaysRequest, ListCustomerGatewaysRequestOrderBy, ListCustomerGatewaysResponse, ListRoutingPoliciesRequest, ListRoutingPoliciesRequestOrderBy, ListRoutingPoliciesResponse, ListVpnGatewayTypesRequest, ListVpnGatewayTypesResponse, ListVpnGatewaysRequest, ListVpnGatewaysRequestOrderBy, ListVpnGatewaysResponse, RenewConnectionPskRequest, RenewConnectionPskResponse, RoutingPolicy, SetRoutingPolicyRequest, TunnelStatus, UpdateConnectionRequest, UpdateCustomerGatewayRequest, UpdateRoutingPolicyRequest, UpdateVpnGatewayRequest, VpnGateway, VpnGatewayPrivateConfig, VpnGatewayPublicConfig, VpnGatewayStatus, } from './types.gen.js';
5
6
  export * as ValidationRules from './validation-rules.gen.js';
@@ -2,10 +2,24 @@ import { __exportAll } from "../_virtual/_rolldown/runtime.js";
2
2
  import { VPN_GATEWAY_TRANSIENT_STATUSES } from "./content.gen.js";
3
3
  import { marshalChangeConnectionPskRequest, marshalCreateConnectionRequest, marshalCreateCustomerGatewayRequest, marshalCreateRoutingPolicyRequest, marshalCreateVpnGatewayRequest, marshalDetachRoutingPolicyRequest, marshalRenewConnectionPskRequest, marshalSetRoutingPolicyRequest, marshalUpdateConnectionRequest, marshalUpdateCustomerGatewayRequest, marshalUpdateRoutingPolicyRequest, marshalUpdateVpnGatewayRequest, unmarshalChangeConnectionPskResponse, unmarshalConnection, unmarshalCreateConnectionResponse, unmarshalCustomerGateway, unmarshalListConnectionsResponse, unmarshalListCustomerGatewaysResponse, unmarshalListRoutingPoliciesResponse, unmarshalListVpnGatewayTypesResponse, unmarshalListVpnGatewaysResponse, unmarshalRenewConnectionPskResponse, unmarshalRoutingPolicy, unmarshalVpnGateway } from "./marshalling.gen.js";
4
4
  import { API } from "./api.gen.js";
5
+ import { BGP_SESSION_STATUSES, CONNECTION_DH_GROUPS, CONNECTION_ENCRYPTIONS, CONNECTION_INITIATION_POLICIES, CONNECTION_INTEGRITIES, CONNECTION_STATUSES, CREATE_CONNECTION_REQUEST_INITIATION_POLICIES, LIST_CONNECTIONS_REQUEST_ORDER_BIES, LIST_CUSTOMER_GATEWAYS_REQUEST_ORDER_BIES, LIST_ROUTING_POLICIES_REQUEST_ORDER_BIES, LIST_VPN_GATEWAYS_REQUEST_ORDER_BIES, TUNNEL_STATUSES, VPN_GATEWAY_STATUSES } from "./constants.gen.js";
5
6
  import { validation_rules_gen_exports } from "./validation-rules.gen.js";
6
7
  //#region src/v1alpha1/index.gen.ts
7
8
  var index_gen_exports = /* @__PURE__ */ __exportAll({
8
9
  API: () => API,
10
+ BGP_SESSION_STATUSES: () => BGP_SESSION_STATUSES,
11
+ CONNECTION_DH_GROUPS: () => CONNECTION_DH_GROUPS,
12
+ CONNECTION_ENCRYPTIONS: () => CONNECTION_ENCRYPTIONS,
13
+ CONNECTION_INITIATION_POLICIES: () => CONNECTION_INITIATION_POLICIES,
14
+ CONNECTION_INTEGRITIES: () => CONNECTION_INTEGRITIES,
15
+ CONNECTION_STATUSES: () => CONNECTION_STATUSES,
16
+ CREATE_CONNECTION_REQUEST_INITIATION_POLICIES: () => CREATE_CONNECTION_REQUEST_INITIATION_POLICIES,
17
+ LIST_CONNECTIONS_REQUEST_ORDER_BIES: () => LIST_CONNECTIONS_REQUEST_ORDER_BIES,
18
+ LIST_CUSTOMER_GATEWAYS_REQUEST_ORDER_BIES: () => LIST_CUSTOMER_GATEWAYS_REQUEST_ORDER_BIES,
19
+ LIST_ROUTING_POLICIES_REQUEST_ORDER_BIES: () => LIST_ROUTING_POLICIES_REQUEST_ORDER_BIES,
20
+ LIST_VPN_GATEWAYS_REQUEST_ORDER_BIES: () => LIST_VPN_GATEWAYS_REQUEST_ORDER_BIES,
21
+ TUNNEL_STATUSES: () => TUNNEL_STATUSES,
22
+ VPN_GATEWAY_STATUSES: () => VPN_GATEWAY_STATUSES,
9
23
  VPN_GATEWAY_TRANSIENT_STATUSES: () => VPN_GATEWAY_TRANSIENT_STATUSES,
10
24
  ValidationRules: () => validation_rules_gen_exports,
11
25
  marshalChangeConnectionPskRequest: () => marshalChangeConnectionPskRequest,
@@ -34,4 +48,4 @@ var index_gen_exports = /* @__PURE__ */ __exportAll({
34
48
  unmarshalVpnGateway: () => unmarshalVpnGateway
35
49
  });
36
50
  //#endregion
37
- export { API, VPN_GATEWAY_TRANSIENT_STATUSES, validation_rules_gen_exports as ValidationRules, index_gen_exports, marshalChangeConnectionPskRequest, marshalCreateConnectionRequest, marshalCreateCustomerGatewayRequest, marshalCreateRoutingPolicyRequest, marshalCreateVpnGatewayRequest, marshalDetachRoutingPolicyRequest, marshalRenewConnectionPskRequest, marshalSetRoutingPolicyRequest, marshalUpdateConnectionRequest, marshalUpdateCustomerGatewayRequest, marshalUpdateRoutingPolicyRequest, marshalUpdateVpnGatewayRequest, unmarshalChangeConnectionPskResponse, unmarshalConnection, unmarshalCreateConnectionResponse, unmarshalCustomerGateway, unmarshalListConnectionsResponse, unmarshalListCustomerGatewaysResponse, unmarshalListRoutingPoliciesResponse, unmarshalListVpnGatewayTypesResponse, unmarshalListVpnGatewaysResponse, unmarshalRenewConnectionPskResponse, unmarshalRoutingPolicy, unmarshalVpnGateway };
51
+ export { API, BGP_SESSION_STATUSES, CONNECTION_DH_GROUPS, CONNECTION_ENCRYPTIONS, CONNECTION_INITIATION_POLICIES, CONNECTION_INTEGRITIES, CONNECTION_STATUSES, CREATE_CONNECTION_REQUEST_INITIATION_POLICIES, LIST_CONNECTIONS_REQUEST_ORDER_BIES, LIST_CUSTOMER_GATEWAYS_REQUEST_ORDER_BIES, LIST_ROUTING_POLICIES_REQUEST_ORDER_BIES, LIST_VPN_GATEWAYS_REQUEST_ORDER_BIES, TUNNEL_STATUSES, VPN_GATEWAY_STATUSES, VPN_GATEWAY_TRANSIENT_STATUSES, validation_rules_gen_exports as ValidationRules, index_gen_exports, marshalChangeConnectionPskRequest, marshalCreateConnectionRequest, marshalCreateCustomerGatewayRequest, marshalCreateRoutingPolicyRequest, marshalCreateVpnGatewayRequest, marshalDetachRoutingPolicyRequest, marshalRenewConnectionPskRequest, marshalSetRoutingPolicyRequest, marshalUpdateConnectionRequest, marshalUpdateCustomerGatewayRequest, marshalUpdateRoutingPolicyRequest, marshalUpdateVpnGatewayRequest, unmarshalChangeConnectionPskResponse, unmarshalConnection, unmarshalCreateConnectionResponse, unmarshalCustomerGateway, unmarshalListConnectionsResponse, unmarshalListCustomerGatewaysResponse, unmarshalListRoutingPoliciesResponse, unmarshalListVpnGatewayTypesResponse, unmarshalListVpnGatewaysResponse, unmarshalRenewConnectionPskResponse, unmarshalRoutingPolicy, unmarshalVpnGateway };
@@ -9,10 +9,12 @@ export declare const queriesMetadata: {
9
9
  readonly protoName: 'ListVpnGatewayTypes';
10
10
  readonly paramsType: 'ListVpnGatewayTypesRequest';
11
11
  readonly returnType: 'ListVpnGatewayTypesResponse';
12
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-s2s-vpn/v1alpha1';
12
13
  readonly isList: true;
13
14
  readonly paginationType: 'offset';
14
15
  readonly pageParamKey: 'page';
15
16
  readonly listItemType: 'GatewayType';
17
+ readonly listItemTypeNamespace: '@scaleway-internal/sdk-s2s-vpn/v1alpha1';
16
18
  readonly isPrivate: false;
17
19
  readonly description: '"';
18
20
  }, {
@@ -20,10 +22,12 @@ export declare const queriesMetadata: {
20
22
  readonly protoName: 'ListVpnGateways';
21
23
  readonly paramsType: 'ListVpnGatewaysRequest';
22
24
  readonly returnType: 'ListVpnGatewaysResponse';
25
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-s2s-vpn/v1alpha1';
23
26
  readonly isList: true;
24
27
  readonly paginationType: 'offset';
25
28
  readonly pageParamKey: 'page';
26
29
  readonly listItemType: 'VpnGateway';
30
+ readonly listItemTypeNamespace: '@scaleway-internal/sdk-s2s-vpn/v1alpha1';
27
31
  readonly isPrivate: false;
28
32
  readonly description: '"';
29
33
  }, {
@@ -31,6 +35,7 @@ export declare const queriesMetadata: {
31
35
  readonly protoName: 'GetVpnGateway';
32
36
  readonly paramsType: 'GetVpnGatewayRequest';
33
37
  readonly returnType: 'VpnGateway';
38
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-s2s-vpn/v1alpha1';
34
39
  readonly isList: false;
35
40
  readonly paginationType: 'none';
36
41
  readonly isPrivate: false;
@@ -41,10 +46,12 @@ export declare const queriesMetadata: {
41
46
  readonly protoName: 'ListConnections';
42
47
  readonly paramsType: 'ListConnectionsRequest';
43
48
  readonly returnType: 'ListConnectionsResponse';
49
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-s2s-vpn/v1alpha1';
44
50
  readonly isList: true;
45
51
  readonly paginationType: 'offset';
46
52
  readonly pageParamKey: 'page';
47
53
  readonly listItemType: 'Connection';
54
+ readonly listItemTypeNamespace: '@scaleway-internal/sdk-s2s-vpn/v1alpha1';
48
55
  readonly isPrivate: false;
49
56
  readonly description: '"';
50
57
  }, {
@@ -52,6 +59,7 @@ export declare const queriesMetadata: {
52
59
  readonly protoName: 'GetConnection';
53
60
  readonly paramsType: 'GetConnectionRequest';
54
61
  readonly returnType: 'Connection';
62
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-s2s-vpn/v1alpha1';
55
63
  readonly isList: false;
56
64
  readonly paginationType: 'none';
57
65
  readonly isPrivate: false;
@@ -61,10 +69,12 @@ export declare const queriesMetadata: {
61
69
  readonly protoName: 'ListCustomerGateways';
62
70
  readonly paramsType: 'ListCustomerGatewaysRequest';
63
71
  readonly returnType: 'ListCustomerGatewaysResponse';
72
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-s2s-vpn/v1alpha1';
64
73
  readonly isList: true;
65
74
  readonly paginationType: 'offset';
66
75
  readonly pageParamKey: 'page';
67
76
  readonly listItemType: 'CustomerGateway';
77
+ readonly listItemTypeNamespace: '@scaleway-internal/sdk-s2s-vpn/v1alpha1';
68
78
  readonly isPrivate: false;
69
79
  readonly description: '"';
70
80
  }, {
@@ -72,6 +82,7 @@ export declare const queriesMetadata: {
72
82
  readonly protoName: 'GetCustomerGateway';
73
83
  readonly paramsType: 'GetCustomerGatewayRequest';
74
84
  readonly returnType: 'CustomerGateway';
85
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-s2s-vpn/v1alpha1';
75
86
  readonly isList: false;
76
87
  readonly paginationType: 'none';
77
88
  readonly isPrivate: false;
@@ -81,10 +92,12 @@ export declare const queriesMetadata: {
81
92
  readonly protoName: 'ListRoutingPolicies';
82
93
  readonly paramsType: 'ListRoutingPoliciesRequest';
83
94
  readonly returnType: 'ListRoutingPoliciesResponse';
95
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-s2s-vpn/v1alpha1';
84
96
  readonly isList: true;
85
97
  readonly paginationType: 'offset';
86
98
  readonly pageParamKey: 'page';
87
99
  readonly listItemType: 'RoutingPolicy';
100
+ readonly listItemTypeNamespace: '@scaleway-internal/sdk-s2s-vpn/v1alpha1';
88
101
  readonly isPrivate: false;
89
102
  readonly description: '"';
90
103
  }, {
@@ -92,6 +105,7 @@ export declare const queriesMetadata: {
92
105
  readonly protoName: 'GetRoutingPolicy';
93
106
  readonly paramsType: 'GetRoutingPolicyRequest';
94
107
  readonly returnType: 'RoutingPolicy';
108
+ readonly returnTypeNamespace: '@scaleway-internal/sdk-s2s-vpn/v1alpha1';
95
109
  readonly isList: false;
96
110
  readonly paginationType: 'none';
97
111
  readonly isPrivate: false;
@@ -11,10 +11,12 @@ const queriesMetadata = {
11
11
  protoName: "ListVpnGatewayTypes",
12
12
  paramsType: "ListVpnGatewayTypesRequest",
13
13
  returnType: "ListVpnGatewayTypesResponse",
14
+ returnTypeNamespace: "@scaleway-internal/sdk-s2s-vpn/v1alpha1",
14
15
  isList: true,
15
16
  paginationType: "offset",
16
17
  pageParamKey: "page",
17
18
  listItemType: "GatewayType",
19
+ listItemTypeNamespace: "@scaleway-internal/sdk-s2s-vpn/v1alpha1",
18
20
  isPrivate: false,
19
21
  description: "\""
20
22
  },
@@ -23,10 +25,12 @@ const queriesMetadata = {
23
25
  protoName: "ListVpnGateways",
24
26
  paramsType: "ListVpnGatewaysRequest",
25
27
  returnType: "ListVpnGatewaysResponse",
28
+ returnTypeNamespace: "@scaleway-internal/sdk-s2s-vpn/v1alpha1",
26
29
  isList: true,
27
30
  paginationType: "offset",
28
31
  pageParamKey: "page",
29
32
  listItemType: "VpnGateway",
33
+ listItemTypeNamespace: "@scaleway-internal/sdk-s2s-vpn/v1alpha1",
30
34
  isPrivate: false,
31
35
  description: "\""
32
36
  },
@@ -35,6 +39,7 @@ const queriesMetadata = {
35
39
  protoName: "GetVpnGateway",
36
40
  paramsType: "GetVpnGatewayRequest",
37
41
  returnType: "VpnGateway",
42
+ returnTypeNamespace: "@scaleway-internal/sdk-s2s-vpn/v1alpha1",
38
43
  isList: false,
39
44
  paginationType: "none",
40
45
  isPrivate: false,
@@ -46,10 +51,12 @@ const queriesMetadata = {
46
51
  protoName: "ListConnections",
47
52
  paramsType: "ListConnectionsRequest",
48
53
  returnType: "ListConnectionsResponse",
54
+ returnTypeNamespace: "@scaleway-internal/sdk-s2s-vpn/v1alpha1",
49
55
  isList: true,
50
56
  paginationType: "offset",
51
57
  pageParamKey: "page",
52
58
  listItemType: "Connection",
59
+ listItemTypeNamespace: "@scaleway-internal/sdk-s2s-vpn/v1alpha1",
53
60
  isPrivate: false,
54
61
  description: "\""
55
62
  },
@@ -58,6 +65,7 @@ const queriesMetadata = {
58
65
  protoName: "GetConnection",
59
66
  paramsType: "GetConnectionRequest",
60
67
  returnType: "Connection",
68
+ returnTypeNamespace: "@scaleway-internal/sdk-s2s-vpn/v1alpha1",
61
69
  isList: false,
62
70
  paginationType: "none",
63
71
  isPrivate: false,
@@ -68,10 +76,12 @@ const queriesMetadata = {
68
76
  protoName: "ListCustomerGateways",
69
77
  paramsType: "ListCustomerGatewaysRequest",
70
78
  returnType: "ListCustomerGatewaysResponse",
79
+ returnTypeNamespace: "@scaleway-internal/sdk-s2s-vpn/v1alpha1",
71
80
  isList: true,
72
81
  paginationType: "offset",
73
82
  pageParamKey: "page",
74
83
  listItemType: "CustomerGateway",
84
+ listItemTypeNamespace: "@scaleway-internal/sdk-s2s-vpn/v1alpha1",
75
85
  isPrivate: false,
76
86
  description: "\""
77
87
  },
@@ -80,6 +90,7 @@ const queriesMetadata = {
80
90
  protoName: "GetCustomerGateway",
81
91
  paramsType: "GetCustomerGatewayRequest",
82
92
  returnType: "CustomerGateway",
93
+ returnTypeNamespace: "@scaleway-internal/sdk-s2s-vpn/v1alpha1",
83
94
  isList: false,
84
95
  paginationType: "none",
85
96
  isPrivate: false,
@@ -90,10 +101,12 @@ const queriesMetadata = {
90
101
  protoName: "ListRoutingPolicies",
91
102
  paramsType: "ListRoutingPoliciesRequest",
92
103
  returnType: "ListRoutingPoliciesResponse",
104
+ returnTypeNamespace: "@scaleway-internal/sdk-s2s-vpn/v1alpha1",
93
105
  isList: true,
94
106
  paginationType: "offset",
95
107
  pageParamKey: "page",
96
108
  listItemType: "RoutingPolicy",
109
+ listItemTypeNamespace: "@scaleway-internal/sdk-s2s-vpn/v1alpha1",
97
110
  isPrivate: false,
98
111
  description: "\""
99
112
  },
@@ -102,6 +115,7 @@ const queriesMetadata = {
102
115
  protoName: "GetRoutingPolicy",
103
116
  paramsType: "GetRoutingPolicyRequest",
104
117
  returnType: "RoutingPolicy",
118
+ returnTypeNamespace: "@scaleway-internal/sdk-s2s-vpn/v1alpha1",
105
119
  isList: false,
106
120
  paginationType: "none",
107
121
  isPrivate: false,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scaleway/sdk-s2s-vpn",
3
- "version": "2.11.0",
3
+ "version": "2.13.0",
4
4
  "description": "Scaleway SDK s2s-vpn",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -33,11 +33,11 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@scaleway/random-name": "6.0.2",
36
- "@scaleway/sdk-std": "2.6.0"
36
+ "@scaleway/sdk-std": "2.7.0"
37
37
  },
38
38
  "devDependencies": {
39
- "@scaleway/sdk-client": "^2.6.0",
40
- "@repo/configs": "^0.1.1"
39
+ "@repo/configs": "^0.1.1",
40
+ "@scaleway/sdk-client": "^2.6.0"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "@scaleway/sdk-client": "^2.6.0"