@scaleway/sdk-lb 2.3.0 → 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.
- package/README.md +1 -1
- package/dist/_virtual/_rolldown/runtime.js +11 -0
- package/dist/index.gen.js +2 -4
- package/dist/v1/api.gen.js +1272 -1878
- package/dist/v1/content.gen.js +13 -19
- package/dist/v1/index.gen.js +85 -83
- package/dist/v1/marshalling.gen.js +857 -1201
- package/dist/v1/validation-rules.gen.js +8 -14
- package/package.json +4 -4
package/dist/v1/content.gen.js
CHANGED
|
@@ -1,22 +1,16 @@
|
|
|
1
|
+
/** Lists transient statutes of the enum {@link CertificateStatus}. */
|
|
1
2
|
const CERTIFICATE_TRANSIENT_STATUSES = ["pending"];
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
];
|
|
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}. */
|
|
6
6
|
const LB_TRANSIENT_STATUSES = [
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
];
|
|
14
|
-
const PRIVATE_NETWORK_TRANSIENT_STATUSES = [
|
|
15
|
-
"pending"
|
|
7
|
+
"pending",
|
|
8
|
+
"migrating",
|
|
9
|
+
"to_create",
|
|
10
|
+
"creating",
|
|
11
|
+
"to_delete",
|
|
12
|
+
"deleting"
|
|
16
13
|
];
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
LB_TRANSIENT_STATUSES,
|
|
21
|
-
PRIVATE_NETWORK_TRANSIENT_STATUSES
|
|
22
|
-
};
|
|
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 };
|
package/dist/v1/index.gen.js
CHANGED
|
@@ -1,85 +1,87 @@
|
|
|
1
|
-
import {
|
|
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
|
|
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
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
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 };
|