@scaleway/sdk-baremetal 1.0.1
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/LICENSE +191 -0
- package/dist/index.gen.cjs +6 -0
- package/dist/index.gen.d.ts +6 -0
- package/dist/index.gen.js +6 -0
- package/dist/v1/api.gen.cjs +590 -0
- package/dist/v1/api.gen.d.ts +279 -0
- package/dist/v1/api.gen.js +590 -0
- package/dist/v1/content.gen.cjs +19 -0
- package/dist/v1/content.gen.d.ts +7 -0
- package/dist/v1/content.gen.js +19 -0
- package/dist/v1/index.gen.cjs +43 -0
- package/dist/v1/index.gen.d.ts +5 -0
- package/dist/v1/index.gen.js +43 -0
- package/dist/v1/marshalling.gen.cjs +718 -0
- package/dist/v1/marshalling.gen.d.ts +33 -0
- package/dist/v1/marshalling.gen.js +718 -0
- package/dist/v1/types.gen.d.ts +1376 -0
- package/dist/v1/validation-rules.gen.cjs +116 -0
- package/dist/v1/validation-rules.gen.d.ts +104 -0
- package/dist/v1/validation-rules.gen.js +116 -0
- package/dist/v3/api.gen.cjs +99 -0
- package/dist/v3/api.gen.d.ts +41 -0
- package/dist/v3/api.gen.js +99 -0
- package/dist/v3/content.gen.cjs +4 -0
- package/dist/v3/content.gen.d.ts +3 -0
- package/dist/v3/content.gen.js +4 -0
- package/dist/v3/index.gen.cjs +12 -0
- package/dist/v3/index.gen.d.ts +4 -0
- package/dist/v3/index.gen.js +12 -0
- package/dist/v3/marshalling.gen.cjs +60 -0
- package/dist/v3/marshalling.gen.d.ts +7 -0
- package/dist/v3/marshalling.gen.js +60 -0
- package/dist/v3/types.gen.d.ts +132 -0
- package/package.json +51 -0
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { API, PrivateNetworkAPI, } from './api.gen';
|
|
2
|
+
export * from './content.gen';
|
|
3
|
+
export * from './marshalling.gen';
|
|
4
|
+
export type { AddOptionServerRequest, BMCAccess, CPU, CertificationOption, CreateServerRequest, CreateServerRequestInstall, DeleteOptionServerRequest, DeleteServerRequest, Disk, GPU, GetBMCAccessRequest, GetDefaultPartitioningSchemaRequest, GetOSRequest, GetOfferRequest, GetOptionRequest, GetServerMetricsRequest, GetServerMetricsResponse, GetServerRequest, IP, IPReverseStatus, IPVersion, InstallServerRequest, LicenseOption, ListOSRequest, ListOSResponse, ListOffersRequest, ListOffersResponse, ListOptionsRequest, ListOptionsResponse, ListServerEventsRequest, ListServerEventsRequestOrderBy, ListServerEventsResponse, ListServerPrivateNetworksRequestOrderBy, ListServerPrivateNetworksResponse, ListServersRequest, ListServersRequestOrderBy, ListServersResponse, ListSettingsRequest, ListSettingsRequestOrderBy, ListSettingsResponse, Memory, MigrateServerToMonthlyOfferRequest, OS, OSOSField, Offer, OfferOptionOffer, OfferStock, OfferSubscriptionPeriod, Option, PersistentMemory, PrivateNetworkApiAddServerPrivateNetworkRequest, PrivateNetworkApiDeleteServerPrivateNetworkRequest, PrivateNetworkApiListServerPrivateNetworksRequest, PrivateNetworkApiSetServerPrivateNetworksRequest, PrivateNetworkOption, PublicBandwidthOption, RaidController, RebootServerRequest, RemoteAccessOption, Schema, SchemaDisk, SchemaFilesystem, SchemaFilesystemFormat, SchemaPartition, SchemaPartitionLabel, SchemaPool, SchemaPoolType, SchemaRAID, SchemaRAIDLevel, SchemaZFS, Server, ServerBootType, ServerEvent, ServerInstall, ServerInstallStatus, ServerOption, ServerOptionOptionStatus, ServerPingStatus, ServerPrivateNetwork, ServerPrivateNetworkStatus, ServerRescueServer, ServerStatus, SetServerPrivateNetworksResponse, Setting, SettingType, StartBMCAccessRequest, StartServerRequest, StopBMCAccessRequest, StopServerRequest, UpdateIPRequest, UpdateServerRequest, UpdateSettingRequest, ValidatePartitioningSchemaRequest, } from './types.gen';
|
|
5
|
+
export * as ValidationRules from './validation-rules.gen';
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { API, PrivateNetworkAPI } from "./api.gen.js";
|
|
2
|
+
import { SERVER_INSTALL_TRANSIENT_STATUSES, SERVER_PRIVATE_NETWORK_TRANSIENT_STATUSES, SERVER_TRANSIENT_STATUSES } from "./content.gen.js";
|
|
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 * as validationRules_gen from "./validation-rules.gen.js";
|
|
5
|
+
export {
|
|
6
|
+
API,
|
|
7
|
+
PrivateNetworkAPI,
|
|
8
|
+
SERVER_INSTALL_TRANSIENT_STATUSES,
|
|
9
|
+
SERVER_PRIVATE_NETWORK_TRANSIENT_STATUSES,
|
|
10
|
+
SERVER_TRANSIENT_STATUSES,
|
|
11
|
+
validationRules_gen as ValidationRules,
|
|
12
|
+
marshalAddOptionServerRequest,
|
|
13
|
+
marshalCreateServerRequest,
|
|
14
|
+
marshalInstallServerRequest,
|
|
15
|
+
marshalPrivateNetworkApiAddServerPrivateNetworkRequest,
|
|
16
|
+
marshalPrivateNetworkApiSetServerPrivateNetworksRequest,
|
|
17
|
+
marshalRebootServerRequest,
|
|
18
|
+
marshalSchema,
|
|
19
|
+
marshalStartBMCAccessRequest,
|
|
20
|
+
marshalStartServerRequest,
|
|
21
|
+
marshalUpdateIPRequest,
|
|
22
|
+
marshalUpdateServerRequest,
|
|
23
|
+
marshalUpdateSettingRequest,
|
|
24
|
+
marshalValidatePartitioningSchemaRequest,
|
|
25
|
+
unmarshalBMCAccess,
|
|
26
|
+
unmarshalGetServerMetricsResponse,
|
|
27
|
+
unmarshalIP,
|
|
28
|
+
unmarshalListOSResponse,
|
|
29
|
+
unmarshalListOffersResponse,
|
|
30
|
+
unmarshalListOptionsResponse,
|
|
31
|
+
unmarshalListServerEventsResponse,
|
|
32
|
+
unmarshalListServerPrivateNetworksResponse,
|
|
33
|
+
unmarshalListServersResponse,
|
|
34
|
+
unmarshalListSettingsResponse,
|
|
35
|
+
unmarshalOS,
|
|
36
|
+
unmarshalOffer,
|
|
37
|
+
unmarshalOption,
|
|
38
|
+
unmarshalSchema,
|
|
39
|
+
unmarshalServer,
|
|
40
|
+
unmarshalServerPrivateNetwork,
|
|
41
|
+
unmarshalSetServerPrivateNetworksResponse,
|
|
42
|
+
unmarshalSetting
|
|
43
|
+
};
|