@scaleway/sdk-s2s-vpn 2.4.1 → 2.5.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/README.md +1 -1
- package/dist/_virtual/_rolldown/runtime.js +11 -0
- package/dist/index.gen.js +2 -4
- package/dist/v1alpha1/api.gen.js +320 -466
- package/dist/v1alpha1/content.gen.js +5 -6
- package/dist/v1alpha1/index.gen.js +30 -28
- package/dist/v1alpha1/marshalling.gen.js +245 -348
- package/dist/v1alpha1/validation-rules.gen.js +99 -131
- package/package.json +4 -4
|
@@ -1,8 +1,7 @@
|
|
|
1
|
+
/** Lists transient statutes of the enum {@link VpnGatewayStatus}. */
|
|
1
2
|
const VPN_GATEWAY_TRANSIENT_STATUSES = [
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
"configuring",
|
|
4
|
+
"provisioning",
|
|
5
|
+
"deprovisioning"
|
|
5
6
|
];
|
|
6
|
-
export {
|
|
7
|
-
VPN_GATEWAY_TRANSIENT_STATUSES
|
|
8
|
-
};
|
|
7
|
+
export { VPN_GATEWAY_TRANSIENT_STATUSES };
|
|
@@ -1,30 +1,32 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { __exportAll } from "../_virtual/_rolldown/runtime.js";
|
|
2
2
|
import { VPN_GATEWAY_TRANSIENT_STATUSES } from "./content.gen.js";
|
|
3
3
|
import { marshalCreateConnectionRequest, marshalCreateCustomerGatewayRequest, marshalCreateRoutingPolicyRequest, marshalCreateVpnGatewayRequest, marshalDetachRoutingPolicyRequest, marshalSetRoutingPolicyRequest, marshalUpdateConnectionRequest, marshalUpdateCustomerGatewayRequest, marshalUpdateRoutingPolicyRequest, marshalUpdateVpnGatewayRequest, unmarshalConnection, unmarshalCreateConnectionResponse, unmarshalCustomerGateway, unmarshalListConnectionsResponse, unmarshalListCustomerGatewaysResponse, unmarshalListRoutingPoliciesResponse, unmarshalListVpnGatewayTypesResponse, unmarshalListVpnGatewaysResponse, unmarshalRenewConnectionPskResponse, unmarshalRoutingPolicy, unmarshalVpnGateway } from "./marshalling.gen.js";
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
4
|
+
import { API } from "./api.gen.js";
|
|
5
|
+
import { validation_rules_gen_exports } from "./validation-rules.gen.js";
|
|
6
|
+
var index_gen_exports = /* @__PURE__ */ __exportAll({
|
|
7
|
+
API: () => API,
|
|
8
|
+
VPN_GATEWAY_TRANSIENT_STATUSES: () => VPN_GATEWAY_TRANSIENT_STATUSES,
|
|
9
|
+
ValidationRules: () => validation_rules_gen_exports,
|
|
10
|
+
marshalCreateConnectionRequest: () => marshalCreateConnectionRequest,
|
|
11
|
+
marshalCreateCustomerGatewayRequest: () => marshalCreateCustomerGatewayRequest,
|
|
12
|
+
marshalCreateRoutingPolicyRequest: () => marshalCreateRoutingPolicyRequest,
|
|
13
|
+
marshalCreateVpnGatewayRequest: () => marshalCreateVpnGatewayRequest,
|
|
14
|
+
marshalDetachRoutingPolicyRequest: () => marshalDetachRoutingPolicyRequest,
|
|
15
|
+
marshalSetRoutingPolicyRequest: () => marshalSetRoutingPolicyRequest,
|
|
16
|
+
marshalUpdateConnectionRequest: () => marshalUpdateConnectionRequest,
|
|
17
|
+
marshalUpdateCustomerGatewayRequest: () => marshalUpdateCustomerGatewayRequest,
|
|
18
|
+
marshalUpdateRoutingPolicyRequest: () => marshalUpdateRoutingPolicyRequest,
|
|
19
|
+
marshalUpdateVpnGatewayRequest: () => marshalUpdateVpnGatewayRequest,
|
|
20
|
+
unmarshalConnection: () => unmarshalConnection,
|
|
21
|
+
unmarshalCreateConnectionResponse: () => unmarshalCreateConnectionResponse,
|
|
22
|
+
unmarshalCustomerGateway: () => unmarshalCustomerGateway,
|
|
23
|
+
unmarshalListConnectionsResponse: () => unmarshalListConnectionsResponse,
|
|
24
|
+
unmarshalListCustomerGatewaysResponse: () => unmarshalListCustomerGatewaysResponse,
|
|
25
|
+
unmarshalListRoutingPoliciesResponse: () => unmarshalListRoutingPoliciesResponse,
|
|
26
|
+
unmarshalListVpnGatewayTypesResponse: () => unmarshalListVpnGatewayTypesResponse,
|
|
27
|
+
unmarshalListVpnGatewaysResponse: () => unmarshalListVpnGatewaysResponse,
|
|
28
|
+
unmarshalRenewConnectionPskResponse: () => unmarshalRenewConnectionPskResponse,
|
|
29
|
+
unmarshalRoutingPolicy: () => unmarshalRoutingPolicy,
|
|
30
|
+
unmarshalVpnGateway: () => unmarshalVpnGateway
|
|
31
|
+
});
|
|
32
|
+
export { index_gen_exports };
|