@scaleway/sdk-rdb 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 +4 -0
- package/dist/index.gen.d.ts +5 -0
- package/dist/index.gen.js +4 -0
- package/dist/v1/api.gen.cjs +1057 -0
- package/dist/v1/api.gen.d.ts +490 -0
- package/dist/v1/api.gen.js +1057 -0
- package/dist/v1/content.gen.cjs +38 -0
- package/dist/v1/content.gen.d.ts +13 -0
- package/dist/v1/content.gen.js +38 -0
- package/dist/v1/index.gen.cjs +71 -0
- package/dist/v1/index.gen.d.ts +5 -0
- package/dist/v1/index.gen.js +71 -0
- package/dist/v1/marshalling.gen.cjs +922 -0
- package/dist/v1/marshalling.gen.d.ts +59 -0
- package/dist/v1/marshalling.gen.js +922 -0
- package/dist/v1/types.gen.d.ts +1913 -0
- package/dist/v1/validation-rules.gen.cjs +8 -0
- package/dist/v1/validation-rules.gen.d.ts +5 -0
- package/dist/v1/validation-rules.gen.js +8 -0
- package/package.json +51 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const DATABASE_BACKUP_TRANSIENT_STATUSES = [
|
|
4
|
+
"creating",
|
|
5
|
+
"restoring",
|
|
6
|
+
"deleting",
|
|
7
|
+
"exporting"
|
|
8
|
+
];
|
|
9
|
+
const INSTANCE_LOG_TRANSIENT_STATUSES = ["creating"];
|
|
10
|
+
const INSTANCE_TRANSIENT_STATUSES = [
|
|
11
|
+
"provisioning",
|
|
12
|
+
"configuring",
|
|
13
|
+
"deleting",
|
|
14
|
+
"autohealing",
|
|
15
|
+
"initializing",
|
|
16
|
+
"backuping",
|
|
17
|
+
"snapshotting",
|
|
18
|
+
"restarting"
|
|
19
|
+
];
|
|
20
|
+
const MAINTENANCE_TRANSIENT_STATUSES = ["ongoing"];
|
|
21
|
+
const READ_REPLICA_TRANSIENT_STATUSES = [
|
|
22
|
+
"provisioning",
|
|
23
|
+
"initializing",
|
|
24
|
+
"deleting",
|
|
25
|
+
"configuring",
|
|
26
|
+
"promoting"
|
|
27
|
+
];
|
|
28
|
+
const SNAPSHOT_TRANSIENT_STATUSES = [
|
|
29
|
+
"creating",
|
|
30
|
+
"restoring",
|
|
31
|
+
"deleting"
|
|
32
|
+
];
|
|
33
|
+
exports.DATABASE_BACKUP_TRANSIENT_STATUSES = DATABASE_BACKUP_TRANSIENT_STATUSES;
|
|
34
|
+
exports.INSTANCE_LOG_TRANSIENT_STATUSES = INSTANCE_LOG_TRANSIENT_STATUSES;
|
|
35
|
+
exports.INSTANCE_TRANSIENT_STATUSES = INSTANCE_TRANSIENT_STATUSES;
|
|
36
|
+
exports.MAINTENANCE_TRANSIENT_STATUSES = MAINTENANCE_TRANSIENT_STATUSES;
|
|
37
|
+
exports.READ_REPLICA_TRANSIENT_STATUSES = READ_REPLICA_TRANSIENT_STATUSES;
|
|
38
|
+
exports.SNAPSHOT_TRANSIENT_STATUSES = SNAPSHOT_TRANSIENT_STATUSES;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import type { DatabaseBackupStatus, InstanceLogStatus, InstanceStatus, MaintenanceStatus, ReadReplicaStatus, SnapshotStatus } from './types.gen';
|
|
2
|
+
/** Lists transient statutes of the enum {@link DatabaseBackupStatus}. */
|
|
3
|
+
export declare const DATABASE_BACKUP_TRANSIENT_STATUSES: DatabaseBackupStatus[];
|
|
4
|
+
/** Lists transient statutes of the enum {@link InstanceLogStatus}. */
|
|
5
|
+
export declare const INSTANCE_LOG_TRANSIENT_STATUSES: InstanceLogStatus[];
|
|
6
|
+
/** Lists transient statutes of the enum {@link InstanceStatus}. */
|
|
7
|
+
export declare const INSTANCE_TRANSIENT_STATUSES: InstanceStatus[];
|
|
8
|
+
/** Lists transient statutes of the enum {@link MaintenanceStatus}. */
|
|
9
|
+
export declare const MAINTENANCE_TRANSIENT_STATUSES: MaintenanceStatus[];
|
|
10
|
+
/** Lists transient statutes of the enum {@link ReadReplicaStatus}. */
|
|
11
|
+
export declare const READ_REPLICA_TRANSIENT_STATUSES: ReadReplicaStatus[];
|
|
12
|
+
/** Lists transient statutes of the enum {@link SnapshotStatus}. */
|
|
13
|
+
export declare const SNAPSHOT_TRANSIENT_STATUSES: SnapshotStatus[];
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
const DATABASE_BACKUP_TRANSIENT_STATUSES = [
|
|
2
|
+
"creating",
|
|
3
|
+
"restoring",
|
|
4
|
+
"deleting",
|
|
5
|
+
"exporting"
|
|
6
|
+
];
|
|
7
|
+
const INSTANCE_LOG_TRANSIENT_STATUSES = ["creating"];
|
|
8
|
+
const INSTANCE_TRANSIENT_STATUSES = [
|
|
9
|
+
"provisioning",
|
|
10
|
+
"configuring",
|
|
11
|
+
"deleting",
|
|
12
|
+
"autohealing",
|
|
13
|
+
"initializing",
|
|
14
|
+
"backuping",
|
|
15
|
+
"snapshotting",
|
|
16
|
+
"restarting"
|
|
17
|
+
];
|
|
18
|
+
const MAINTENANCE_TRANSIENT_STATUSES = ["ongoing"];
|
|
19
|
+
const READ_REPLICA_TRANSIENT_STATUSES = [
|
|
20
|
+
"provisioning",
|
|
21
|
+
"initializing",
|
|
22
|
+
"deleting",
|
|
23
|
+
"configuring",
|
|
24
|
+
"promoting"
|
|
25
|
+
];
|
|
26
|
+
const SNAPSHOT_TRANSIENT_STATUSES = [
|
|
27
|
+
"creating",
|
|
28
|
+
"restoring",
|
|
29
|
+
"deleting"
|
|
30
|
+
];
|
|
31
|
+
export {
|
|
32
|
+
DATABASE_BACKUP_TRANSIENT_STATUSES,
|
|
33
|
+
INSTANCE_LOG_TRANSIENT_STATUSES,
|
|
34
|
+
INSTANCE_TRANSIENT_STATUSES,
|
|
35
|
+
MAINTENANCE_TRANSIENT_STATUSES,
|
|
36
|
+
READ_REPLICA_TRANSIENT_STATUSES,
|
|
37
|
+
SNAPSHOT_TRANSIENT_STATUSES
|
|
38
|
+
};
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
+
const api_gen = require("./api.gen.cjs");
|
|
4
|
+
const content_gen = require("./content.gen.cjs");
|
|
5
|
+
const marshalling_gen = require("./marshalling.gen.cjs");
|
|
6
|
+
const validationRules_gen = require("./validation-rules.gen.cjs");
|
|
7
|
+
exports.API = api_gen.API;
|
|
8
|
+
exports.DATABASE_BACKUP_TRANSIENT_STATUSES = content_gen.DATABASE_BACKUP_TRANSIENT_STATUSES;
|
|
9
|
+
exports.INSTANCE_LOG_TRANSIENT_STATUSES = content_gen.INSTANCE_LOG_TRANSIENT_STATUSES;
|
|
10
|
+
exports.INSTANCE_TRANSIENT_STATUSES = content_gen.INSTANCE_TRANSIENT_STATUSES;
|
|
11
|
+
exports.MAINTENANCE_TRANSIENT_STATUSES = content_gen.MAINTENANCE_TRANSIENT_STATUSES;
|
|
12
|
+
exports.READ_REPLICA_TRANSIENT_STATUSES = content_gen.READ_REPLICA_TRANSIENT_STATUSES;
|
|
13
|
+
exports.SNAPSHOT_TRANSIENT_STATUSES = content_gen.SNAPSHOT_TRANSIENT_STATUSES;
|
|
14
|
+
exports.marshalAddInstanceACLRulesRequest = marshalling_gen.marshalAddInstanceACLRulesRequest;
|
|
15
|
+
exports.marshalAddInstanceSettingsRequest = marshalling_gen.marshalAddInstanceSettingsRequest;
|
|
16
|
+
exports.marshalCloneInstanceRequest = marshalling_gen.marshalCloneInstanceRequest;
|
|
17
|
+
exports.marshalCreateDatabaseBackupRequest = marshalling_gen.marshalCreateDatabaseBackupRequest;
|
|
18
|
+
exports.marshalCreateDatabaseRequest = marshalling_gen.marshalCreateDatabaseRequest;
|
|
19
|
+
exports.marshalCreateEndpointRequest = marshalling_gen.marshalCreateEndpointRequest;
|
|
20
|
+
exports.marshalCreateInstanceFromSnapshotRequest = marshalling_gen.marshalCreateInstanceFromSnapshotRequest;
|
|
21
|
+
exports.marshalCreateInstanceRequest = marshalling_gen.marshalCreateInstanceRequest;
|
|
22
|
+
exports.marshalCreateReadReplicaEndpointRequest = marshalling_gen.marshalCreateReadReplicaEndpointRequest;
|
|
23
|
+
exports.marshalCreateReadReplicaRequest = marshalling_gen.marshalCreateReadReplicaRequest;
|
|
24
|
+
exports.marshalCreateSnapshotRequest = marshalling_gen.marshalCreateSnapshotRequest;
|
|
25
|
+
exports.marshalCreateUserRequest = marshalling_gen.marshalCreateUserRequest;
|
|
26
|
+
exports.marshalDeleteInstanceACLRulesRequest = marshalling_gen.marshalDeleteInstanceACLRulesRequest;
|
|
27
|
+
exports.marshalDeleteInstanceSettingsRequest = marshalling_gen.marshalDeleteInstanceSettingsRequest;
|
|
28
|
+
exports.marshalMigrateEndpointRequest = marshalling_gen.marshalMigrateEndpointRequest;
|
|
29
|
+
exports.marshalPrepareInstanceLogsRequest = marshalling_gen.marshalPrepareInstanceLogsRequest;
|
|
30
|
+
exports.marshalPurgeInstanceLogsRequest = marshalling_gen.marshalPurgeInstanceLogsRequest;
|
|
31
|
+
exports.marshalRestoreDatabaseBackupRequest = marshalling_gen.marshalRestoreDatabaseBackupRequest;
|
|
32
|
+
exports.marshalSetInstanceACLRulesRequest = marshalling_gen.marshalSetInstanceACLRulesRequest;
|
|
33
|
+
exports.marshalSetInstanceSettingsRequest = marshalling_gen.marshalSetInstanceSettingsRequest;
|
|
34
|
+
exports.marshalSetPrivilegeRequest = marshalling_gen.marshalSetPrivilegeRequest;
|
|
35
|
+
exports.marshalUpdateDatabaseBackupRequest = marshalling_gen.marshalUpdateDatabaseBackupRequest;
|
|
36
|
+
exports.marshalUpdateInstanceRequest = marshalling_gen.marshalUpdateInstanceRequest;
|
|
37
|
+
exports.marshalUpdateSnapshotRequest = marshalling_gen.marshalUpdateSnapshotRequest;
|
|
38
|
+
exports.marshalUpdateUserRequest = marshalling_gen.marshalUpdateUserRequest;
|
|
39
|
+
exports.marshalUpgradeInstanceRequest = marshalling_gen.marshalUpgradeInstanceRequest;
|
|
40
|
+
exports.unmarshalACLRule = marshalling_gen.unmarshalACLRule;
|
|
41
|
+
exports.unmarshalAddInstanceACLRulesResponse = marshalling_gen.unmarshalAddInstanceACLRulesResponse;
|
|
42
|
+
exports.unmarshalAddInstanceSettingsResponse = marshalling_gen.unmarshalAddInstanceSettingsResponse;
|
|
43
|
+
exports.unmarshalBackupSchedule = marshalling_gen.unmarshalBackupSchedule;
|
|
44
|
+
exports.unmarshalDatabase = marshalling_gen.unmarshalDatabase;
|
|
45
|
+
exports.unmarshalDatabaseBackup = marshalling_gen.unmarshalDatabaseBackup;
|
|
46
|
+
exports.unmarshalDeleteInstanceACLRulesResponse = marshalling_gen.unmarshalDeleteInstanceACLRulesResponse;
|
|
47
|
+
exports.unmarshalDeleteInstanceSettingsResponse = marshalling_gen.unmarshalDeleteInstanceSettingsResponse;
|
|
48
|
+
exports.unmarshalEndpoint = marshalling_gen.unmarshalEndpoint;
|
|
49
|
+
exports.unmarshalInstance = marshalling_gen.unmarshalInstance;
|
|
50
|
+
exports.unmarshalInstanceLog = marshalling_gen.unmarshalInstanceLog;
|
|
51
|
+
exports.unmarshalInstanceMetrics = marshalling_gen.unmarshalInstanceMetrics;
|
|
52
|
+
exports.unmarshalListDatabaseBackupsResponse = marshalling_gen.unmarshalListDatabaseBackupsResponse;
|
|
53
|
+
exports.unmarshalListDatabaseEnginesResponse = marshalling_gen.unmarshalListDatabaseEnginesResponse;
|
|
54
|
+
exports.unmarshalListDatabasesResponse = marshalling_gen.unmarshalListDatabasesResponse;
|
|
55
|
+
exports.unmarshalListInstanceACLRulesResponse = marshalling_gen.unmarshalListInstanceACLRulesResponse;
|
|
56
|
+
exports.unmarshalListInstanceLogsDetailsResponse = marshalling_gen.unmarshalListInstanceLogsDetailsResponse;
|
|
57
|
+
exports.unmarshalListInstanceLogsResponse = marshalling_gen.unmarshalListInstanceLogsResponse;
|
|
58
|
+
exports.unmarshalListInstancesResponse = marshalling_gen.unmarshalListInstancesResponse;
|
|
59
|
+
exports.unmarshalListNodeTypesResponse = marshalling_gen.unmarshalListNodeTypesResponse;
|
|
60
|
+
exports.unmarshalListPrivilegesResponse = marshalling_gen.unmarshalListPrivilegesResponse;
|
|
61
|
+
exports.unmarshalListSnapshotsResponse = marshalling_gen.unmarshalListSnapshotsResponse;
|
|
62
|
+
exports.unmarshalListUsersResponse = marshalling_gen.unmarshalListUsersResponse;
|
|
63
|
+
exports.unmarshalMaintenance = marshalling_gen.unmarshalMaintenance;
|
|
64
|
+
exports.unmarshalPrepareInstanceLogsResponse = marshalling_gen.unmarshalPrepareInstanceLogsResponse;
|
|
65
|
+
exports.unmarshalPrivilege = marshalling_gen.unmarshalPrivilege;
|
|
66
|
+
exports.unmarshalReadReplica = marshalling_gen.unmarshalReadReplica;
|
|
67
|
+
exports.unmarshalSetInstanceACLRulesResponse = marshalling_gen.unmarshalSetInstanceACLRulesResponse;
|
|
68
|
+
exports.unmarshalSetInstanceSettingsResponse = marshalling_gen.unmarshalSetInstanceSettingsResponse;
|
|
69
|
+
exports.unmarshalSnapshot = marshalling_gen.unmarshalSnapshot;
|
|
70
|
+
exports.unmarshalUser = marshalling_gen.unmarshalUser;
|
|
71
|
+
exports.ValidationRules = validationRules_gen;
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { API } from './api.gen';
|
|
2
|
+
export * from './content.gen';
|
|
3
|
+
export * from './marshalling.gen';
|
|
4
|
+
export type { ACLRule, ACLRuleAction, ACLRuleDirection, ACLRuleProtocol, ACLRuleRequest, AddInstanceACLRulesRequest, AddInstanceACLRulesResponse, AddInstanceSettingsRequest, AddInstanceSettingsResponse, ApplyInstanceMaintenanceRequest, BackupSchedule, CloneInstanceRequest, CreateDatabaseBackupRequest, CreateDatabaseRequest, CreateEndpointRequest, CreateInstanceFromSnapshotRequest, CreateInstanceRequest, CreateReadReplicaEndpointRequest, CreateReadReplicaRequest, CreateSnapshotRequest, CreateUserRequest, Database, DatabaseBackup, DatabaseBackupStatus, DatabaseEngine, DeleteDatabaseBackupRequest, DeleteDatabaseRequest, DeleteEndpointRequest, DeleteInstanceACLRulesRequest, DeleteInstanceACLRulesResponse, DeleteInstanceRequest, DeleteInstanceSettingsRequest, DeleteInstanceSettingsResponse, DeleteReadReplicaRequest, DeleteSnapshotRequest, DeleteUserRequest, EncryptionAtRest, Endpoint, EndpointDirectAccessDetails, EndpointLoadBalancerDetails, EndpointPrivateNetworkDetails, EndpointPrivateNetworkDetailsProvisioningMode, EndpointSpec, EndpointSpecLoadBalancer, EndpointSpecPrivateNetwork, EndpointSpecPrivateNetworkIpamConfig, EngineSetting, EngineSettingPropertyType, EngineVersion, ExportDatabaseBackupRequest, GetDatabaseBackupRequest, GetEndpointRequest, GetInstanceCertificateRequest, GetInstanceLogRequest, GetInstanceMetricsRequest, GetInstanceRequest, GetReadReplicaRequest, GetSnapshotRequest, Instance, InstanceLog, InstanceLogStatus, InstanceMetrics, InstanceSetting, InstanceStatus, ListDatabaseBackupsRequest, ListDatabaseBackupsRequestOrderBy, ListDatabaseBackupsResponse, ListDatabaseEnginesRequest, ListDatabaseEnginesResponse, ListDatabasesRequest, ListDatabasesRequestOrderBy, ListDatabasesResponse, ListInstanceACLRulesRequest, ListInstanceACLRulesResponse, ListInstanceLogsDetailsRequest, ListInstanceLogsDetailsResponse, ListInstanceLogsDetailsResponseInstanceLogDetail, ListInstanceLogsRequest, ListInstanceLogsRequestOrderBy, ListInstanceLogsResponse, ListInstancesRequest, ListInstancesRequestOrderBy, ListInstancesResponse, ListNodeTypesRequest, ListNodeTypesResponse, ListPrivilegesRequest, ListPrivilegesRequestOrderBy, ListPrivilegesResponse, ListSnapshotsRequest, ListSnapshotsRequestOrderBy, ListSnapshotsResponse, ListUsersRequest, ListUsersRequestOrderBy, ListUsersResponse, LogsPolicy, Maintenance, MaintenanceStatus, MigrateEndpointRequest, NodeType, NodeTypeGeneration, NodeTypeStock, NodeTypeVolumeConstraintSizes, NodeTypeVolumeType, Permission, PrepareInstanceLogsRequest, PrepareInstanceLogsResponse, Privilege, PromoteReadReplicaRequest, PurgeInstanceLogsRequest, ReadReplica, ReadReplicaEndpointSpec, ReadReplicaEndpointSpecDirectAccess, ReadReplicaEndpointSpecPrivateNetwork, ReadReplicaEndpointSpecPrivateNetworkIpamConfig, ReadReplicaStatus, RenewInstanceCertificateRequest, ResetReadReplicaRequest, RestartInstanceRequest, RestoreDatabaseBackupRequest, SetInstanceACLRulesRequest, SetInstanceACLRulesResponse, SetInstanceSettingsRequest, SetInstanceSettingsResponse, SetPrivilegeRequest, Snapshot, SnapshotStatus, SnapshotVolumeType, StorageClass, UpdateDatabaseBackupRequest, UpdateInstanceRequest, UpdateSnapshotRequest, UpdateUserRequest, UpgradableVersion, UpgradeInstanceRequest, UpgradeInstanceRequestMajorUpgradeWorkflow, User, Volume, VolumeType, } from './types.gen';
|
|
5
|
+
export * as ValidationRules from './validation-rules.gen';
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { API } from "./api.gen.js";
|
|
2
|
+
import { DATABASE_BACKUP_TRANSIENT_STATUSES, INSTANCE_LOG_TRANSIENT_STATUSES, INSTANCE_TRANSIENT_STATUSES, MAINTENANCE_TRANSIENT_STATUSES, READ_REPLICA_TRANSIENT_STATUSES, SNAPSHOT_TRANSIENT_STATUSES } from "./content.gen.js";
|
|
3
|
+
import { marshalAddInstanceACLRulesRequest, marshalAddInstanceSettingsRequest, marshalCloneInstanceRequest, marshalCreateDatabaseBackupRequest, marshalCreateDatabaseRequest, marshalCreateEndpointRequest, marshalCreateInstanceFromSnapshotRequest, marshalCreateInstanceRequest, marshalCreateReadReplicaEndpointRequest, marshalCreateReadReplicaRequest, marshalCreateSnapshotRequest, marshalCreateUserRequest, marshalDeleteInstanceACLRulesRequest, marshalDeleteInstanceSettingsRequest, marshalMigrateEndpointRequest, marshalPrepareInstanceLogsRequest, marshalPurgeInstanceLogsRequest, marshalRestoreDatabaseBackupRequest, marshalSetInstanceACLRulesRequest, marshalSetInstanceSettingsRequest, marshalSetPrivilegeRequest, marshalUpdateDatabaseBackupRequest, marshalUpdateInstanceRequest, marshalUpdateSnapshotRequest, marshalUpdateUserRequest, marshalUpgradeInstanceRequest, unmarshalACLRule, unmarshalAddInstanceACLRulesResponse, unmarshalAddInstanceSettingsResponse, unmarshalBackupSchedule, unmarshalDatabase, unmarshalDatabaseBackup, unmarshalDeleteInstanceACLRulesResponse, unmarshalDeleteInstanceSettingsResponse, unmarshalEndpoint, unmarshalInstance, unmarshalInstanceLog, unmarshalInstanceMetrics, unmarshalListDatabaseBackupsResponse, unmarshalListDatabaseEnginesResponse, unmarshalListDatabasesResponse, unmarshalListInstanceACLRulesResponse, unmarshalListInstanceLogsDetailsResponse, unmarshalListInstanceLogsResponse, unmarshalListInstancesResponse, unmarshalListNodeTypesResponse, unmarshalListPrivilegesResponse, unmarshalListSnapshotsResponse, unmarshalListUsersResponse, unmarshalMaintenance, unmarshalPrepareInstanceLogsResponse, unmarshalPrivilege, unmarshalReadReplica, unmarshalSetInstanceACLRulesResponse, unmarshalSetInstanceSettingsResponse, unmarshalSnapshot, unmarshalUser } from "./marshalling.gen.js";
|
|
4
|
+
import * as validationRules_gen from "./validation-rules.gen.js";
|
|
5
|
+
export {
|
|
6
|
+
API,
|
|
7
|
+
DATABASE_BACKUP_TRANSIENT_STATUSES,
|
|
8
|
+
INSTANCE_LOG_TRANSIENT_STATUSES,
|
|
9
|
+
INSTANCE_TRANSIENT_STATUSES,
|
|
10
|
+
MAINTENANCE_TRANSIENT_STATUSES,
|
|
11
|
+
READ_REPLICA_TRANSIENT_STATUSES,
|
|
12
|
+
SNAPSHOT_TRANSIENT_STATUSES,
|
|
13
|
+
validationRules_gen as ValidationRules,
|
|
14
|
+
marshalAddInstanceACLRulesRequest,
|
|
15
|
+
marshalAddInstanceSettingsRequest,
|
|
16
|
+
marshalCloneInstanceRequest,
|
|
17
|
+
marshalCreateDatabaseBackupRequest,
|
|
18
|
+
marshalCreateDatabaseRequest,
|
|
19
|
+
marshalCreateEndpointRequest,
|
|
20
|
+
marshalCreateInstanceFromSnapshotRequest,
|
|
21
|
+
marshalCreateInstanceRequest,
|
|
22
|
+
marshalCreateReadReplicaEndpointRequest,
|
|
23
|
+
marshalCreateReadReplicaRequest,
|
|
24
|
+
marshalCreateSnapshotRequest,
|
|
25
|
+
marshalCreateUserRequest,
|
|
26
|
+
marshalDeleteInstanceACLRulesRequest,
|
|
27
|
+
marshalDeleteInstanceSettingsRequest,
|
|
28
|
+
marshalMigrateEndpointRequest,
|
|
29
|
+
marshalPrepareInstanceLogsRequest,
|
|
30
|
+
marshalPurgeInstanceLogsRequest,
|
|
31
|
+
marshalRestoreDatabaseBackupRequest,
|
|
32
|
+
marshalSetInstanceACLRulesRequest,
|
|
33
|
+
marshalSetInstanceSettingsRequest,
|
|
34
|
+
marshalSetPrivilegeRequest,
|
|
35
|
+
marshalUpdateDatabaseBackupRequest,
|
|
36
|
+
marshalUpdateInstanceRequest,
|
|
37
|
+
marshalUpdateSnapshotRequest,
|
|
38
|
+
marshalUpdateUserRequest,
|
|
39
|
+
marshalUpgradeInstanceRequest,
|
|
40
|
+
unmarshalACLRule,
|
|
41
|
+
unmarshalAddInstanceACLRulesResponse,
|
|
42
|
+
unmarshalAddInstanceSettingsResponse,
|
|
43
|
+
unmarshalBackupSchedule,
|
|
44
|
+
unmarshalDatabase,
|
|
45
|
+
unmarshalDatabaseBackup,
|
|
46
|
+
unmarshalDeleteInstanceACLRulesResponse,
|
|
47
|
+
unmarshalDeleteInstanceSettingsResponse,
|
|
48
|
+
unmarshalEndpoint,
|
|
49
|
+
unmarshalInstance,
|
|
50
|
+
unmarshalInstanceLog,
|
|
51
|
+
unmarshalInstanceMetrics,
|
|
52
|
+
unmarshalListDatabaseBackupsResponse,
|
|
53
|
+
unmarshalListDatabaseEnginesResponse,
|
|
54
|
+
unmarshalListDatabasesResponse,
|
|
55
|
+
unmarshalListInstanceACLRulesResponse,
|
|
56
|
+
unmarshalListInstanceLogsDetailsResponse,
|
|
57
|
+
unmarshalListInstanceLogsResponse,
|
|
58
|
+
unmarshalListInstancesResponse,
|
|
59
|
+
unmarshalListNodeTypesResponse,
|
|
60
|
+
unmarshalListPrivilegesResponse,
|
|
61
|
+
unmarshalListSnapshotsResponse,
|
|
62
|
+
unmarshalListUsersResponse,
|
|
63
|
+
unmarshalMaintenance,
|
|
64
|
+
unmarshalPrepareInstanceLogsResponse,
|
|
65
|
+
unmarshalPrivilege,
|
|
66
|
+
unmarshalReadReplica,
|
|
67
|
+
unmarshalSetInstanceACLRulesResponse,
|
|
68
|
+
unmarshalSetInstanceSettingsResponse,
|
|
69
|
+
unmarshalSnapshot,
|
|
70
|
+
unmarshalUser
|
|
71
|
+
};
|