@scaleway/sdk-lb 2.3.1 → 2.4.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.
@@ -1,24 +1,16 @@
1
- const CERTIFICATE_TRANSIENT_STATUSES = [
2
- "pending"
3
- ];
4
- const INSTANCE_TRANSIENT_STATUSES = [
5
- "pending",
6
- "migrating"
7
- ];
1
+ /** Lists transient statutes of the enum {@link CertificateStatus}. */
2
+ const CERTIFICATE_TRANSIENT_STATUSES = ["pending"];
3
+ /** Lists transient statutes of the enum {@link InstanceStatus}. */
4
+ const INSTANCE_TRANSIENT_STATUSES = ["pending", "migrating"];
5
+ /** Lists transient statutes of the enum {@link LbStatus}. */
8
6
  const LB_TRANSIENT_STATUSES = [
9
- "pending",
10
- "migrating",
11
- "to_create",
12
- "creating",
13
- "to_delete",
14
- "deleting"
15
- ];
16
- const PRIVATE_NETWORK_TRANSIENT_STATUSES = [
17
- "pending"
7
+ "pending",
8
+ "migrating",
9
+ "to_create",
10
+ "creating",
11
+ "to_delete",
12
+ "deleting"
18
13
  ];
19
- export {
20
- CERTIFICATE_TRANSIENT_STATUSES,
21
- INSTANCE_TRANSIENT_STATUSES,
22
- LB_TRANSIENT_STATUSES,
23
- PRIVATE_NETWORK_TRANSIENT_STATUSES
24
- };
14
+ /** Lists transient statutes of the enum {@link PrivateNetworkStatus}. */
15
+ const PRIVATE_NETWORK_TRANSIENT_STATUSES = ["pending"];
16
+ export { CERTIFICATE_TRANSIENT_STATUSES, INSTANCE_TRANSIENT_STATUSES, LB_TRANSIENT_STATUSES, PRIVATE_NETWORK_TRANSIENT_STATUSES };
@@ -1,85 +1,87 @@
1
- import { API, ZonedAPI } from "./api.gen.js";
1
+ import { __exportAll } from "../_virtual/_rolldown/runtime.js";
2
2
  import { CERTIFICATE_TRANSIENT_STATUSES, INSTANCE_TRANSIENT_STATUSES, LB_TRANSIENT_STATUSES, PRIVATE_NETWORK_TRANSIENT_STATUSES } from "./content.gen.js";
3
3
  import { marshalAddBackendServersRequest, marshalAttachPrivateNetworkRequest, marshalCreateAclRequest, marshalCreateBackendRequest, marshalCreateCertificateRequest, marshalCreateFrontendRequest, marshalCreateIpRequest, marshalCreateLbRequest, marshalCreateRouteRequest, marshalCreateSubscriberRequest, marshalMigrateLbRequest, marshalRemoveBackendServersRequest, marshalSetBackendServersRequest, marshalSubscribeToLbRequest, marshalUpdateAclRequest, marshalUpdateBackendRequest, marshalUpdateCertificateRequest, marshalUpdateFrontendRequest, marshalUpdateHealthCheckRequest, marshalUpdateIpRequest, marshalUpdateLbRequest, marshalUpdateRouteRequest, marshalUpdateSubscriberRequest, marshalZonedApiAddBackendServersRequest, marshalZonedApiAttachPrivateNetworkRequest, marshalZonedApiCreateAclRequest, marshalZonedApiCreateBackendRequest, marshalZonedApiCreateCertificateRequest, marshalZonedApiCreateFrontendRequest, marshalZonedApiCreateIpRequest, marshalZonedApiCreateLbRequest, marshalZonedApiCreateRouteRequest, marshalZonedApiCreateSubscriberRequest, marshalZonedApiDetachPrivateNetworkRequest, marshalZonedApiMigrateLbRequest, marshalZonedApiRemoveBackendServersRequest, marshalZonedApiSetAclsRequest, marshalZonedApiSetBackendServersRequest, marshalZonedApiSubscribeToLbRequest, marshalZonedApiUpdateAclRequest, marshalZonedApiUpdateBackendRequest, marshalZonedApiUpdateCertificateRequest, marshalZonedApiUpdateFrontendRequest, marshalZonedApiUpdateHealthCheckRequest, marshalZonedApiUpdateIpRequest, marshalZonedApiUpdateLbRequest, marshalZonedApiUpdateRouteRequest, marshalZonedApiUpdateSubscriberRequest, unmarshalAcl, unmarshalBackend, unmarshalBackendServerStats, unmarshalCertificate, unmarshalFrontend, unmarshalHealthCheck, unmarshalIp, unmarshalLb, unmarshalLbStats, unmarshalListAclResponse, unmarshalListBackendStatsResponse, unmarshalListBackendsResponse, unmarshalListCertificatesResponse, unmarshalListFrontendsResponse, unmarshalListIpsResponse, unmarshalListLbPrivateNetworksResponse, unmarshalListLbTypesResponse, unmarshalListLbsResponse, unmarshalListRoutesResponse, unmarshalListSubscriberResponse, unmarshalPrivateNetwork, unmarshalRoute, unmarshalSetAclsResponse, unmarshalSubscriber } from "./marshalling.gen.js";
4
- import * as validationRules_gen from "./validation-rules.gen.js";
5
- export {
6
- API,
7
- CERTIFICATE_TRANSIENT_STATUSES,
8
- INSTANCE_TRANSIENT_STATUSES,
9
- LB_TRANSIENT_STATUSES,
10
- PRIVATE_NETWORK_TRANSIENT_STATUSES,
11
- validationRules_gen as ValidationRules,
12
- ZonedAPI,
13
- marshalAddBackendServersRequest,
14
- marshalAttachPrivateNetworkRequest,
15
- marshalCreateAclRequest,
16
- marshalCreateBackendRequest,
17
- marshalCreateCertificateRequest,
18
- marshalCreateFrontendRequest,
19
- marshalCreateIpRequest,
20
- marshalCreateLbRequest,
21
- marshalCreateRouteRequest,
22
- marshalCreateSubscriberRequest,
23
- marshalMigrateLbRequest,
24
- marshalRemoveBackendServersRequest,
25
- marshalSetBackendServersRequest,
26
- marshalSubscribeToLbRequest,
27
- marshalUpdateAclRequest,
28
- marshalUpdateBackendRequest,
29
- marshalUpdateCertificateRequest,
30
- marshalUpdateFrontendRequest,
31
- marshalUpdateHealthCheckRequest,
32
- marshalUpdateIpRequest,
33
- marshalUpdateLbRequest,
34
- marshalUpdateRouteRequest,
35
- marshalUpdateSubscriberRequest,
36
- marshalZonedApiAddBackendServersRequest,
37
- marshalZonedApiAttachPrivateNetworkRequest,
38
- marshalZonedApiCreateAclRequest,
39
- marshalZonedApiCreateBackendRequest,
40
- marshalZonedApiCreateCertificateRequest,
41
- marshalZonedApiCreateFrontendRequest,
42
- marshalZonedApiCreateIpRequest,
43
- marshalZonedApiCreateLbRequest,
44
- marshalZonedApiCreateRouteRequest,
45
- marshalZonedApiCreateSubscriberRequest,
46
- marshalZonedApiDetachPrivateNetworkRequest,
47
- marshalZonedApiMigrateLbRequest,
48
- marshalZonedApiRemoveBackendServersRequest,
49
- marshalZonedApiSetAclsRequest,
50
- marshalZonedApiSetBackendServersRequest,
51
- marshalZonedApiSubscribeToLbRequest,
52
- marshalZonedApiUpdateAclRequest,
53
- marshalZonedApiUpdateBackendRequest,
54
- marshalZonedApiUpdateCertificateRequest,
55
- marshalZonedApiUpdateFrontendRequest,
56
- marshalZonedApiUpdateHealthCheckRequest,
57
- marshalZonedApiUpdateIpRequest,
58
- marshalZonedApiUpdateLbRequest,
59
- marshalZonedApiUpdateRouteRequest,
60
- marshalZonedApiUpdateSubscriberRequest,
61
- unmarshalAcl,
62
- unmarshalBackend,
63
- unmarshalBackendServerStats,
64
- unmarshalCertificate,
65
- unmarshalFrontend,
66
- unmarshalHealthCheck,
67
- unmarshalIp,
68
- unmarshalLb,
69
- unmarshalLbStats,
70
- unmarshalListAclResponse,
71
- unmarshalListBackendStatsResponse,
72
- unmarshalListBackendsResponse,
73
- unmarshalListCertificatesResponse,
74
- unmarshalListFrontendsResponse,
75
- unmarshalListIpsResponse,
76
- unmarshalListLbPrivateNetworksResponse,
77
- unmarshalListLbTypesResponse,
78
- unmarshalListLbsResponse,
79
- unmarshalListRoutesResponse,
80
- unmarshalListSubscriberResponse,
81
- unmarshalPrivateNetwork,
82
- unmarshalRoute,
83
- unmarshalSetAclsResponse,
84
- unmarshalSubscriber
85
- };
4
+ import { API, ZonedAPI } 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
+ CERTIFICATE_TRANSIENT_STATUSES: () => CERTIFICATE_TRANSIENT_STATUSES,
9
+ INSTANCE_TRANSIENT_STATUSES: () => INSTANCE_TRANSIENT_STATUSES,
10
+ LB_TRANSIENT_STATUSES: () => LB_TRANSIENT_STATUSES,
11
+ PRIVATE_NETWORK_TRANSIENT_STATUSES: () => PRIVATE_NETWORK_TRANSIENT_STATUSES,
12
+ ValidationRules: () => validation_rules_gen_exports,
13
+ ZonedAPI: () => ZonedAPI,
14
+ marshalAddBackendServersRequest: () => marshalAddBackendServersRequest,
15
+ marshalAttachPrivateNetworkRequest: () => marshalAttachPrivateNetworkRequest,
16
+ marshalCreateAclRequest: () => marshalCreateAclRequest,
17
+ marshalCreateBackendRequest: () => marshalCreateBackendRequest,
18
+ marshalCreateCertificateRequest: () => marshalCreateCertificateRequest,
19
+ marshalCreateFrontendRequest: () => marshalCreateFrontendRequest,
20
+ marshalCreateIpRequest: () => marshalCreateIpRequest,
21
+ marshalCreateLbRequest: () => marshalCreateLbRequest,
22
+ marshalCreateRouteRequest: () => marshalCreateRouteRequest,
23
+ marshalCreateSubscriberRequest: () => marshalCreateSubscriberRequest,
24
+ marshalMigrateLbRequest: () => marshalMigrateLbRequest,
25
+ marshalRemoveBackendServersRequest: () => marshalRemoveBackendServersRequest,
26
+ marshalSetBackendServersRequest: () => marshalSetBackendServersRequest,
27
+ marshalSubscribeToLbRequest: () => marshalSubscribeToLbRequest,
28
+ marshalUpdateAclRequest: () => marshalUpdateAclRequest,
29
+ marshalUpdateBackendRequest: () => marshalUpdateBackendRequest,
30
+ marshalUpdateCertificateRequest: () => marshalUpdateCertificateRequest,
31
+ marshalUpdateFrontendRequest: () => marshalUpdateFrontendRequest,
32
+ marshalUpdateHealthCheckRequest: () => marshalUpdateHealthCheckRequest,
33
+ marshalUpdateIpRequest: () => marshalUpdateIpRequest,
34
+ marshalUpdateLbRequest: () => marshalUpdateLbRequest,
35
+ marshalUpdateRouteRequest: () => marshalUpdateRouteRequest,
36
+ marshalUpdateSubscriberRequest: () => marshalUpdateSubscriberRequest,
37
+ marshalZonedApiAddBackendServersRequest: () => marshalZonedApiAddBackendServersRequest,
38
+ marshalZonedApiAttachPrivateNetworkRequest: () => marshalZonedApiAttachPrivateNetworkRequest,
39
+ marshalZonedApiCreateAclRequest: () => marshalZonedApiCreateAclRequest,
40
+ marshalZonedApiCreateBackendRequest: () => marshalZonedApiCreateBackendRequest,
41
+ marshalZonedApiCreateCertificateRequest: () => marshalZonedApiCreateCertificateRequest,
42
+ marshalZonedApiCreateFrontendRequest: () => marshalZonedApiCreateFrontendRequest,
43
+ marshalZonedApiCreateIpRequest: () => marshalZonedApiCreateIpRequest,
44
+ marshalZonedApiCreateLbRequest: () => marshalZonedApiCreateLbRequest,
45
+ marshalZonedApiCreateRouteRequest: () => marshalZonedApiCreateRouteRequest,
46
+ marshalZonedApiCreateSubscriberRequest: () => marshalZonedApiCreateSubscriberRequest,
47
+ marshalZonedApiDetachPrivateNetworkRequest: () => marshalZonedApiDetachPrivateNetworkRequest,
48
+ marshalZonedApiMigrateLbRequest: () => marshalZonedApiMigrateLbRequest,
49
+ marshalZonedApiRemoveBackendServersRequest: () => marshalZonedApiRemoveBackendServersRequest,
50
+ marshalZonedApiSetAclsRequest: () => marshalZonedApiSetAclsRequest,
51
+ marshalZonedApiSetBackendServersRequest: () => marshalZonedApiSetBackendServersRequest,
52
+ marshalZonedApiSubscribeToLbRequest: () => marshalZonedApiSubscribeToLbRequest,
53
+ marshalZonedApiUpdateAclRequest: () => marshalZonedApiUpdateAclRequest,
54
+ marshalZonedApiUpdateBackendRequest: () => marshalZonedApiUpdateBackendRequest,
55
+ marshalZonedApiUpdateCertificateRequest: () => marshalZonedApiUpdateCertificateRequest,
56
+ marshalZonedApiUpdateFrontendRequest: () => marshalZonedApiUpdateFrontendRequest,
57
+ marshalZonedApiUpdateHealthCheckRequest: () => marshalZonedApiUpdateHealthCheckRequest,
58
+ marshalZonedApiUpdateIpRequest: () => marshalZonedApiUpdateIpRequest,
59
+ marshalZonedApiUpdateLbRequest: () => marshalZonedApiUpdateLbRequest,
60
+ marshalZonedApiUpdateRouteRequest: () => marshalZonedApiUpdateRouteRequest,
61
+ marshalZonedApiUpdateSubscriberRequest: () => marshalZonedApiUpdateSubscriberRequest,
62
+ unmarshalAcl: () => unmarshalAcl,
63
+ unmarshalBackend: () => unmarshalBackend,
64
+ unmarshalBackendServerStats: () => unmarshalBackendServerStats,
65
+ unmarshalCertificate: () => unmarshalCertificate,
66
+ unmarshalFrontend: () => unmarshalFrontend,
67
+ unmarshalHealthCheck: () => unmarshalHealthCheck,
68
+ unmarshalIp: () => unmarshalIp,
69
+ unmarshalLb: () => unmarshalLb,
70
+ unmarshalLbStats: () => unmarshalLbStats,
71
+ unmarshalListAclResponse: () => unmarshalListAclResponse,
72
+ unmarshalListBackendStatsResponse: () => unmarshalListBackendStatsResponse,
73
+ unmarshalListBackendsResponse: () => unmarshalListBackendsResponse,
74
+ unmarshalListCertificatesResponse: () => unmarshalListCertificatesResponse,
75
+ unmarshalListFrontendsResponse: () => unmarshalListFrontendsResponse,
76
+ unmarshalListIpsResponse: () => unmarshalListIpsResponse,
77
+ unmarshalListLbPrivateNetworksResponse: () => unmarshalListLbPrivateNetworksResponse,
78
+ unmarshalListLbTypesResponse: () => unmarshalListLbTypesResponse,
79
+ unmarshalListLbsResponse: () => unmarshalListLbsResponse,
80
+ unmarshalListRoutesResponse: () => unmarshalListRoutesResponse,
81
+ unmarshalListSubscriberResponse: () => unmarshalListSubscriberResponse,
82
+ unmarshalPrivateNetwork: () => unmarshalPrivateNetwork,
83
+ unmarshalRoute: () => unmarshalRoute,
84
+ unmarshalSetAclsResponse: () => unmarshalSetAclsResponse,
85
+ unmarshalSubscriber: () => unmarshalSubscriber
86
+ });
87
+ export { index_gen_exports };