@scaleway/sdk-baremetal 2.2.1 → 2.3.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 +3 -6
- package/dist/v1/api.gen.js +400 -569
- package/dist/v1/content.gen.js +13 -20
- package/dist/v1/index.gen.js +43 -41
- package/dist/v1/marshalling.gen.js +428 -653
- package/dist/v1/validation-rules.gen.js +58 -96
- package/dist/v3/api.gen.js +65 -92
- package/dist/v3/content.gen.js +3 -7
- package/dist/v3/index.gen.js +12 -10
- package/dist/v3/marshalling.gen.js +24 -46
- package/package.json +4 -4
package/dist/v1/content.gen.js
CHANGED
|
@@ -1,22 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
];
|
|
5
|
-
|
|
6
|
-
"attaching",
|
|
7
|
-
"detaching"
|
|
8
|
-
];
|
|
1
|
+
/** Lists transient statutes of the enum {@link ServerInstallStatus}. */
|
|
2
|
+
const SERVER_INSTALL_TRANSIENT_STATUSES = ["to_install", "installing"];
|
|
3
|
+
/** Lists transient statutes of the enum {@link ServerPrivateNetworkStatus}. */
|
|
4
|
+
const SERVER_PRIVATE_NETWORK_TRANSIENT_STATUSES = ["attaching", "detaching"];
|
|
5
|
+
/** Lists transient statutes of the enum {@link ServerStatus}. */
|
|
9
6
|
const SERVER_TRANSIENT_STATUSES = [
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
7
|
+
"delivering",
|
|
8
|
+
"stopping",
|
|
9
|
+
"starting",
|
|
10
|
+
"deleting",
|
|
11
|
+
"ordered",
|
|
12
|
+
"resetting",
|
|
13
|
+
"migrating"
|
|
17
14
|
];
|
|
18
|
-
export {
|
|
19
|
-
SERVER_INSTALL_TRANSIENT_STATUSES,
|
|
20
|
-
SERVER_PRIVATE_NETWORK_TRANSIENT_STATUSES,
|
|
21
|
-
SERVER_TRANSIENT_STATUSES
|
|
22
|
-
};
|
|
15
|
+
export { SERVER_INSTALL_TRANSIENT_STATUSES, SERVER_PRIVATE_NETWORK_TRANSIENT_STATUSES, SERVER_TRANSIENT_STATUSES };
|
package/dist/v1/index.gen.js
CHANGED
|
@@ -1,43 +1,45 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { __exportAll } from "../_virtual/_rolldown/runtime.js";
|
|
2
2
|
import { SERVER_INSTALL_TRANSIENT_STATUSES, SERVER_PRIVATE_NETWORK_TRANSIENT_STATUSES, SERVER_TRANSIENT_STATUSES } from "./content.gen.js";
|
|
3
3
|
import { marshalAddOptionServerRequest, marshalCreateServerRequest, marshalInstallServerRequest, marshalPrivateNetworkApiAddServerPrivateNetworkRequest, marshalPrivateNetworkApiSetServerPrivateNetworksRequest, marshalRebootServerRequest, marshalSchema, marshalStartBMCAccessRequest, marshalStartServerRequest, marshalUpdateIPRequest, marshalUpdateServerRequest, marshalUpdateSettingRequest, marshalValidatePartitioningSchemaRequest, unmarshalBMCAccess, unmarshalGetServerMetricsResponse, unmarshalIP, unmarshalListOSResponse, unmarshalListOffersResponse, unmarshalListOptionsResponse, unmarshalListServerEventsResponse, unmarshalListServerPrivateNetworksResponse, unmarshalListServersResponse, unmarshalListSettingsResponse, unmarshalOS, unmarshalOffer, unmarshalOption, unmarshalSchema, unmarshalServer, unmarshalServerPrivateNetwork, unmarshalSetServerPrivateNetworksResponse, unmarshalSetting } 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
|
-
|
|
4
|
+
import { API, PrivateNetworkAPI } 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
|
+
PrivateNetworkAPI: () => PrivateNetworkAPI,
|
|
9
|
+
SERVER_INSTALL_TRANSIENT_STATUSES: () => SERVER_INSTALL_TRANSIENT_STATUSES,
|
|
10
|
+
SERVER_PRIVATE_NETWORK_TRANSIENT_STATUSES: () => SERVER_PRIVATE_NETWORK_TRANSIENT_STATUSES,
|
|
11
|
+
SERVER_TRANSIENT_STATUSES: () => SERVER_TRANSIENT_STATUSES,
|
|
12
|
+
ValidationRules: () => validation_rules_gen_exports,
|
|
13
|
+
marshalAddOptionServerRequest: () => marshalAddOptionServerRequest,
|
|
14
|
+
marshalCreateServerRequest: () => marshalCreateServerRequest,
|
|
15
|
+
marshalInstallServerRequest: () => marshalInstallServerRequest,
|
|
16
|
+
marshalPrivateNetworkApiAddServerPrivateNetworkRequest: () => marshalPrivateNetworkApiAddServerPrivateNetworkRequest,
|
|
17
|
+
marshalPrivateNetworkApiSetServerPrivateNetworksRequest: () => marshalPrivateNetworkApiSetServerPrivateNetworksRequest,
|
|
18
|
+
marshalRebootServerRequest: () => marshalRebootServerRequest,
|
|
19
|
+
marshalSchema: () => marshalSchema,
|
|
20
|
+
marshalStartBMCAccessRequest: () => marshalStartBMCAccessRequest,
|
|
21
|
+
marshalStartServerRequest: () => marshalStartServerRequest,
|
|
22
|
+
marshalUpdateIPRequest: () => marshalUpdateIPRequest,
|
|
23
|
+
marshalUpdateServerRequest: () => marshalUpdateServerRequest,
|
|
24
|
+
marshalUpdateSettingRequest: () => marshalUpdateSettingRequest,
|
|
25
|
+
marshalValidatePartitioningSchemaRequest: () => marshalValidatePartitioningSchemaRequest,
|
|
26
|
+
unmarshalBMCAccess: () => unmarshalBMCAccess,
|
|
27
|
+
unmarshalGetServerMetricsResponse: () => unmarshalGetServerMetricsResponse,
|
|
28
|
+
unmarshalIP: () => unmarshalIP,
|
|
29
|
+
unmarshalListOSResponse: () => unmarshalListOSResponse,
|
|
30
|
+
unmarshalListOffersResponse: () => unmarshalListOffersResponse,
|
|
31
|
+
unmarshalListOptionsResponse: () => unmarshalListOptionsResponse,
|
|
32
|
+
unmarshalListServerEventsResponse: () => unmarshalListServerEventsResponse,
|
|
33
|
+
unmarshalListServerPrivateNetworksResponse: () => unmarshalListServerPrivateNetworksResponse,
|
|
34
|
+
unmarshalListServersResponse: () => unmarshalListServersResponse,
|
|
35
|
+
unmarshalListSettingsResponse: () => unmarshalListSettingsResponse,
|
|
36
|
+
unmarshalOS: () => unmarshalOS,
|
|
37
|
+
unmarshalOffer: () => unmarshalOffer,
|
|
38
|
+
unmarshalOption: () => unmarshalOption,
|
|
39
|
+
unmarshalSchema: () => unmarshalSchema,
|
|
40
|
+
unmarshalServer: () => unmarshalServer,
|
|
41
|
+
unmarshalServerPrivateNetwork: () => unmarshalServerPrivateNetwork,
|
|
42
|
+
unmarshalSetServerPrivateNetworksResponse: () => unmarshalSetServerPrivateNetworksResponse,
|
|
43
|
+
unmarshalSetting: () => unmarshalSetting
|
|
44
|
+
});
|
|
45
|
+
export { index_gen_exports };
|