@scaleway/sdk-rdb 2.6.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 +6 -6
- package/dist/metadata.gen.js +6 -2
- package/dist/v1/api.gen.d.ts +5 -5
- package/dist/v1/api.gen.js +334 -713
- package/dist/v1/content.gen.js +6 -6
- package/dist/v1/marshalling.gen.js +86 -86
- package/dist/v1/metadata.gen.js +1 -1
- package/dist/v1/validation-rules.gen.js +1 -1
- package/package.json +8 -6
- package/LICENSE +0 -191
- package/dist/metadata.gen.json +0 -6
- package/dist/metadata2.gen.js +0 -8
package/dist/metadata.gen.d.ts
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
* This file is automatically generated
|
|
3
3
|
* PLEASE DO NOT EDIT HERE
|
|
4
4
|
*/
|
|
5
|
-
export
|
|
6
|
-
name:
|
|
7
|
-
namespace:
|
|
8
|
-
displayName:
|
|
9
|
-
versions:
|
|
5
|
+
export declare const pkgMetadata: {
|
|
6
|
+
readonly name: "@scaleway/sdk-rdb";
|
|
7
|
+
readonly namespace: "rdb";
|
|
8
|
+
readonly displayName: "Rdb";
|
|
9
|
+
readonly versions: readonly ["v1"];
|
|
10
10
|
};
|
|
11
|
-
export
|
|
11
|
+
export type Metadata = typeof pkgMetadata;
|
|
12
12
|
export default pkgMetadata;
|
package/dist/metadata.gen.js
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
|
-
import metadata_gen_default from "./metadata2.gen.js";
|
|
2
1
|
//#region src/metadata.gen.ts
|
|
3
2
|
/**
|
|
4
3
|
* This file is automatically generated
|
|
5
4
|
* PLEASE DO NOT EDIT HERE
|
|
6
5
|
*/
|
|
7
|
-
|
|
6
|
+
const pkgMetadata = {
|
|
7
|
+
name: "@scaleway/sdk-rdb",
|
|
8
|
+
namespace: "rdb",
|
|
9
|
+
displayName: "Rdb",
|
|
10
|
+
versions: ["v1"]
|
|
11
|
+
};
|
|
8
12
|
//#endregion
|
|
9
13
|
export { pkgMetadata as default, pkgMetadata };
|
package/dist/v1/api.gen.d.ts
CHANGED
|
@@ -66,7 +66,7 @@ export declare class API extends ParentAPI {
|
|
|
66
66
|
* @param options - The waiting options
|
|
67
67
|
* @returns A Promise of DatabaseBackup
|
|
68
68
|
*/
|
|
69
|
-
waitForDatabaseBackup: (request: Readonly<GetDatabaseBackupRequest>, options?: Readonly<WaitForOptions<DatabaseBackup>>) => Promise<DatabaseBackup>;
|
|
69
|
+
waitForDatabaseBackup: (request: Readonly<GetDatabaseBackupRequest>, options?: Readonly<WaitForOptions<DatabaseBackup>> | undefined) => Promise<DatabaseBackup>;
|
|
70
70
|
/**
|
|
71
71
|
* Update a database backup. Update the parameters of a backup, including name and expiration date.
|
|
72
72
|
*
|
|
@@ -127,7 +127,7 @@ export declare class API extends ParentAPI {
|
|
|
127
127
|
* @param options - The waiting options
|
|
128
128
|
* @returns A Promise of Instance
|
|
129
129
|
*/
|
|
130
|
-
waitForInstance: (request: Readonly<GetInstanceRequest>, options?: Readonly<WaitForOptions<Instance>>) => Promise<Instance>;
|
|
130
|
+
waitForInstance: (request: Readonly<GetInstanceRequest>, options?: Readonly<WaitForOptions<Instance>> | undefined) => Promise<Instance>;
|
|
131
131
|
/**
|
|
132
132
|
* Create a Database Instance. Create a new Database Instance. You must set the `engine`, `user_name`, `password` and `node_type` parameters. Optionally, you can specify the volume type and size.
|
|
133
133
|
*
|
|
@@ -205,7 +205,7 @@ export declare class API extends ParentAPI {
|
|
|
205
205
|
* @param options - The waiting options
|
|
206
206
|
* @returns A Promise of ReadReplica
|
|
207
207
|
*/
|
|
208
|
-
waitForReadReplica: (request: Readonly<GetReadReplicaRequest>, options?: Readonly<WaitForOptions<ReadReplica>>) => Promise<ReadReplica>;
|
|
208
|
+
waitForReadReplica: (request: Readonly<GetReadReplicaRequest>, options?: Readonly<WaitForOptions<ReadReplica>> | undefined) => Promise<ReadReplica>;
|
|
209
209
|
/**
|
|
210
210
|
* Delete a Read Replica. Delete a Read Replica of a Database Instance. You must specify the `region` and `read_replica_id` parameters of the Read Replica you want to delete.
|
|
211
211
|
*
|
|
@@ -263,7 +263,7 @@ export declare class API extends ParentAPI {
|
|
|
263
263
|
* @param options - The waiting options
|
|
264
264
|
* @returns A Promise of InstanceLog
|
|
265
265
|
*/
|
|
266
|
-
waitForInstanceLog: (request: Readonly<GetInstanceLogRequest>, options?: Readonly<WaitForOptions<InstanceLog>>) => Promise<InstanceLog>;
|
|
266
|
+
waitForInstanceLog: (request: Readonly<GetInstanceLogRequest>, options?: Readonly<WaitForOptions<InstanceLog>> | undefined) => Promise<InstanceLog>;
|
|
267
267
|
/**
|
|
268
268
|
* Purge remote Database Instance logs. Purge a given remote log from a Database Instance. You can specify the `log_name` of the log you wish to clean from your Database Instance.
|
|
269
269
|
*
|
|
@@ -428,7 +428,7 @@ export declare class API extends ParentAPI {
|
|
|
428
428
|
* @param options - The waiting options
|
|
429
429
|
* @returns A Promise of Snapshot
|
|
430
430
|
*/
|
|
431
|
-
waitForSnapshot: (request: Readonly<GetSnapshotRequest>, options?: Readonly<WaitForOptions<Snapshot>>) => Promise<Snapshot>;
|
|
431
|
+
waitForSnapshot: (request: Readonly<GetSnapshotRequest>, options?: Readonly<WaitForOptions<Snapshot>> | undefined) => Promise<Snapshot>;
|
|
432
432
|
/**
|
|
433
433
|
* Create a Database Instance snapshot. Create a new snapshot of a Database Instance. You must define the `name` parameter in the request.
|
|
434
434
|
*
|