@scaleway/sdk-lb 2.5.0 → 2.7.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/.vite/license.md +3 -0
- package/dist/metadata.gen.d.ts +12 -0
- package/dist/metadata.gen.js +13 -0
- package/dist/v1/api.gen.d.ts +4 -4
- package/dist/v1/api.gen.js +604 -1256
- package/dist/v1/content.gen.js +4 -4
- package/dist/v1/marshalling.gen.js +110 -110
- package/dist/v1/metadata.gen.js +1 -1
- package/dist/v1/validation-rules.gen.js +2 -2
- package/package.json +16 -6
- package/LICENSE +0 -191
package/dist/v1/content.gen.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
//#region src/v1/content.gen.ts
|
|
2
2
|
/** Lists transient statutes of the enum {@link CertificateStatus}. */
|
|
3
|
-
|
|
3
|
+
const CERTIFICATE_TRANSIENT_STATUSES = ["pending"];
|
|
4
4
|
/** Lists transient statutes of the enum {@link InstanceStatus}. */
|
|
5
|
-
|
|
5
|
+
const INSTANCE_TRANSIENT_STATUSES = ["pending", "migrating"];
|
|
6
6
|
/** Lists transient statutes of the enum {@link LbStatus}. */
|
|
7
|
-
|
|
7
|
+
const LB_TRANSIENT_STATUSES = [
|
|
8
8
|
"pending",
|
|
9
9
|
"migrating",
|
|
10
10
|
"to_create",
|
|
@@ -13,6 +13,6 @@ var LB_TRANSIENT_STATUSES = [
|
|
|
13
13
|
"deleting"
|
|
14
14
|
];
|
|
15
15
|
/** Lists transient statutes of the enum {@link PrivateNetworkStatus}. */
|
|
16
|
-
|
|
16
|
+
const PRIVATE_NETWORK_TRANSIENT_STATUSES = ["pending"];
|
|
17
17
|
//#endregion
|
|
18
18
|
export { CERTIFICATE_TRANSIENT_STATUSES, INSTANCE_TRANSIENT_STATUSES, LB_TRANSIENT_STATUSES, PRIVATE_NETWORK_TRANSIENT_STATUSES };
|