@scaleway/sdk-dedibox 2.4.0 → 2.6.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 +5 -5
- package/dist/v1/api.gen.js +564 -874
- package/dist/v1/content.gen.js +9 -9
- package/dist/v1/marshalling.gen.js +123 -123
- package/dist/v1/metadata.gen.js +1 -1
- package/dist/v1/validation-rules.gen.js +85 -85
- package/package.json +16 -6
- package/LICENSE +0 -191
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* This file is automatically generated
|
|
3
|
+
* PLEASE DO NOT EDIT HERE
|
|
4
|
+
*/
|
|
5
|
+
export declare const pkgMetadata: {
|
|
6
|
+
readonly name: "@scaleway/sdk-dedibox";
|
|
7
|
+
readonly namespace: "dedibox";
|
|
8
|
+
readonly displayName: "Dedibox";
|
|
9
|
+
readonly versions: readonly ["v1"];
|
|
10
|
+
};
|
|
11
|
+
export type Metadata = typeof pkgMetadata;
|
|
12
|
+
export default pkgMetadata;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
//#region src/metadata.gen.ts
|
|
2
|
+
/**
|
|
3
|
+
* This file is automatically generated
|
|
4
|
+
* PLEASE DO NOT EDIT HERE
|
|
5
|
+
*/
|
|
6
|
+
const pkgMetadata = {
|
|
7
|
+
name: "@scaleway/sdk-dedibox",
|
|
8
|
+
namespace: "dedibox",
|
|
9
|
+
displayName: "Dedibox",
|
|
10
|
+
versions: ["v1"]
|
|
11
|
+
};
|
|
12
|
+
//#endregion
|
|
13
|
+
export { pkgMetadata as default, pkgMetadata };
|
package/dist/v1/api.gen.d.ts
CHANGED
|
@@ -35,7 +35,7 @@ export declare class API extends ParentAPI {
|
|
|
35
35
|
* @param options - The waiting options
|
|
36
36
|
* @returns A Promise of Server
|
|
37
37
|
*/
|
|
38
|
-
waitForServer: (request: Readonly<GetServerRequest>, options?: Readonly<WaitForOptions<Server>>) => Promise<Server>;
|
|
38
|
+
waitForServer: (request: Readonly<GetServerRequest>, options?: Readonly<WaitForOptions<Server>> | undefined) => Promise<Server>;
|
|
39
39
|
getServerBackup: (request: Readonly<GetServerBackupRequest>) => Promise<Backup>;
|
|
40
40
|
updateServerBackup: (request: Readonly<UpdateServerBackupRequest>) => Promise<Backup>;
|
|
41
41
|
protected pageOfListSubscribableServerOptions: (request: Readonly<ListSubscribableServerOptionsRequest>) => Promise<ListSubscribableServerOptionsResponse>;
|
|
@@ -171,7 +171,7 @@ export declare class API extends ParentAPI {
|
|
|
171
171
|
* @param options - The waiting options
|
|
172
172
|
* @returns A Promise of ServerInstall
|
|
173
173
|
*/
|
|
174
|
-
waitForServerInstall: (request: Readonly<GetServerInstallRequest>, options?: Readonly<WaitForOptions<ServerInstall>>) => Promise<ServerInstall>;
|
|
174
|
+
waitForServerInstall: (request: Readonly<GetServerInstallRequest>, options?: Readonly<WaitForOptions<ServerInstall>> | undefined) => Promise<ServerInstall>;
|
|
175
175
|
/**
|
|
176
176
|
* Cancels the current (running) server installation. Cancels the current server installation associated with the given server ID.
|
|
177
177
|
*
|
|
@@ -206,7 +206,7 @@ export declare class API extends ParentAPI {
|
|
|
206
206
|
* @param options - The waiting options
|
|
207
207
|
* @returns A Promise of BMCAccess
|
|
208
208
|
*/
|
|
209
|
-
waitForBMCAccess: (request: Readonly<GetBMCAccessRequest>, options?: Readonly<WaitForOptions<BMCAccess>>) => Promise<BMCAccess>;
|
|
209
|
+
waitForBMCAccess: (request: Readonly<GetBMCAccessRequest>, options?: Readonly<WaitForOptions<BMCAccess>> | undefined) => Promise<BMCAccess>;
|
|
210
210
|
/**
|
|
211
211
|
* Stop BMC (Baseboard Management Controller) access for a given baremetal server. Stop BMC (Baseboard Management Controller) access associated with the given ID.
|
|
212
212
|
*
|
|
@@ -468,7 +468,7 @@ export declare class RpnSanAPI extends ParentAPI {
|
|
|
468
468
|
* @param options - The waiting options
|
|
469
469
|
* @returns A Promise of RpnSan
|
|
470
470
|
*/
|
|
471
|
-
waitForRpnSan: (request: Readonly<RpnSanApiGetRpnSanRequest>, options?: Readonly<WaitForOptions<RpnSan>>) => Promise<RpnSan>;
|
|
471
|
+
waitForRpnSan: (request: Readonly<RpnSanApiGetRpnSanRequest>, options?: Readonly<WaitForOptions<RpnSan>> | undefined) => Promise<RpnSan>;
|
|
472
472
|
deleteRpnSan: (request: Readonly<RpnSanApiDeleteRpnSanRequest>) => Promise<void>;
|
|
473
473
|
createRpnSan: (request: Readonly<RpnSanApiCreateRpnSanRequest>) => Promise<Service>;
|
|
474
474
|
listIps: (request: Readonly<RpnSanApiListIpsRequest>) => Promise<ListIpsResponse>;
|
|
@@ -538,7 +538,7 @@ export declare class RpnV2API extends ParentAPI {
|
|
|
538
538
|
* @param options - The waiting options
|
|
539
539
|
* @returns A Promise of RpnV2Group
|
|
540
540
|
*/
|
|
541
|
-
waitForRpnV2Group: (request: Readonly<RpnV2ApiGetRpnV2GroupRequest>, options?: Readonly<WaitForOptions<RpnV2Group>>) => Promise<RpnV2Group>;
|
|
541
|
+
waitForRpnV2Group: (request: Readonly<RpnV2ApiGetRpnV2GroupRequest>, options?: Readonly<WaitForOptions<RpnV2Group>> | undefined) => Promise<RpnV2Group>;
|
|
542
542
|
createRpnV2Group: (request: Readonly<RpnV2ApiCreateRpnV2GroupRequest>) => Promise<RpnV2Group>;
|
|
543
543
|
deleteRpnV2Group: (request: Readonly<RpnV2ApiDeleteRpnV2GroupRequest>) => Promise<void>;
|
|
544
544
|
updateRpnV2GroupName: (request: Readonly<RpnV2ApiUpdateRpnV2GroupNameRequest>) => Promise<RpnV2Group>;
|