@scaleway/sdk-rdb 2.3.0 → 2.4.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/v1/types.gen.d.ts +5 -5
- package/package.json +4 -4
package/dist/v1/types.gen.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ export type ListPrivilegesRequestOrderBy = 'user_name_asc' | 'user_name_desc' |
|
|
|
15
15
|
export type ListSnapshotsRequestOrderBy = 'created_at_asc' | 'created_at_desc' | 'name_asc' | 'name_desc' | 'expires_at_asc' | 'expires_at_desc';
|
|
16
16
|
export type ListUsersRequestOrderBy = 'name_asc' | 'name_desc' | 'is_admin_asc' | 'is_admin_desc';
|
|
17
17
|
export type MaintenanceStatus = 'unknown' | 'pending' | 'done' | 'canceled' | 'ongoing';
|
|
18
|
-
export type NodeTypeGeneration = 'unknown_generation' | 'generation_v1' | 'generation_v2';
|
|
18
|
+
export type NodeTypeGeneration = 'unknown_generation' | 'generation_v1' | 'generation_v2' | 'generation_v3';
|
|
19
19
|
export type NodeTypeStock = 'unknown' | 'low_stock' | 'out_of_stock' | 'available';
|
|
20
20
|
export type Permission = 'readonly' | 'readwrite' | 'all' | 'custom' | 'none';
|
|
21
21
|
export type ReadReplicaStatus = 'unknown' | 'provisioning' | 'initializing' | 'ready' | 'deleting' | 'error' | 'locked' | 'configuring' | 'promoting';
|
|
@@ -356,14 +356,14 @@ export interface ACLRuleRequest {
|
|
|
356
356
|
}
|
|
357
357
|
export interface ACLRule {
|
|
358
358
|
ip: string;
|
|
359
|
-
/**
|
|
360
|
-
* @deprecated
|
|
361
|
-
*/
|
|
362
|
-
port?: number;
|
|
363
359
|
protocol: ACLRuleProtocol;
|
|
364
360
|
direction: ACLRuleDirection;
|
|
365
361
|
action: ACLRuleAction;
|
|
366
362
|
description: string;
|
|
363
|
+
/**
|
|
364
|
+
* @deprecated
|
|
365
|
+
*/
|
|
366
|
+
port?: number;
|
|
367
367
|
}
|
|
368
368
|
export interface EndpointSpec {
|
|
369
369
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@scaleway/sdk-rdb",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.4.0",
|
|
4
4
|
"description": "Scaleway SDK rdb",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"files": [
|
|
@@ -27,13 +27,13 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@scaleway/random-name": "5.1.2",
|
|
30
|
-
"@scaleway/sdk-std": "2.2.
|
|
30
|
+
"@scaleway/sdk-std": "2.2.1"
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@scaleway/sdk-client": "^2.2.
|
|
33
|
+
"@scaleway/sdk-client": "^2.2.1"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
|
-
"@scaleway/sdk-client": "^2.2.
|
|
36
|
+
"@scaleway/sdk-client": "^2.2.1"
|
|
37
37
|
},
|
|
38
38
|
"scripts": {
|
|
39
39
|
"package:check": "pnpm publint",
|