@aws-sdk/client-rds 3.135.0 → 3.136.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/CHANGELOG.md +11 -0
- package/dist-cjs/RDS.js +15 -0
- package/dist-cjs/commands/ModifyActivityStreamCommand.js +36 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_0.js +13 -12
- package/dist-cjs/models/models_1.js +27 -4
- package/dist-cjs/protocols/Aws_query.js +104 -5
- package/dist-es/RDS.js +15 -0
- package/dist-es/commands/ModifyActivityStreamCommand.js +39 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +7 -4
- package/dist-es/models/models_1.js +17 -0
- package/dist-es/protocols/Aws_query.js +112 -0
- package/dist-types/RDS.d.ts +11 -0
- package/dist-types/RDSClient.d.ts +3 -2
- package/dist-types/commands/ModifyActivityStreamCommand.d.ts +39 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +13 -33
- package/dist-types/models/models_1.d.ts +85 -1
- package/dist-types/protocols/Aws_query.d.ts +3 -0
- package/dist-types/ts3.4/RDS.d.ts +5 -0
- package/dist-types/ts3.4/RDSClient.d.ts +3 -2
- package/dist-types/ts3.4/commands/ModifyActivityStreamCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +8 -11
- package/dist-types/ts3.4/models/models_1.d.ts +44 -1
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +3 -0
- package/package.json +1 -1
|
@@ -23,6 +23,12 @@ export declare namespace AccountAttributesMessage {
|
|
|
23
23
|
const filterSensitiveLog: (obj: AccountAttributesMessage) => any;
|
|
24
24
|
}
|
|
25
25
|
export declare type ActivityStreamMode = "async" | "sync";
|
|
26
|
+
export declare enum ActivityStreamPolicyStatus {
|
|
27
|
+
locked = "locked",
|
|
28
|
+
locking_policy = "locking-policy",
|
|
29
|
+
unlocked = "unlocked",
|
|
30
|
+
unlocking_policy = "unlocking-policy"
|
|
31
|
+
}
|
|
26
32
|
export declare type ActivityStreamStatus = "started" | "starting" | "stopped" | "stopping";
|
|
27
33
|
export interface AddRoleToDBClusterMessage {
|
|
28
34
|
|
|
@@ -2120,6 +2126,8 @@ export interface DBInstance {
|
|
|
2120
2126
|
BackupTarget?: string;
|
|
2121
2127
|
|
|
2122
2128
|
NetworkType?: string;
|
|
2129
|
+
|
|
2130
|
+
ActivityStreamPolicyStatus?: ActivityStreamPolicyStatus | string;
|
|
2123
2131
|
}
|
|
2124
2132
|
export declare namespace DBInstance {
|
|
2125
2133
|
|
|
@@ -3991,14 +3999,3 @@ export declare namespace DescribeDBSnapshotAttributesMessage {
|
|
|
3991
3999
|
|
|
3992
4000
|
const filterSensitiveLog: (obj: DescribeDBSnapshotAttributesMessage) => any;
|
|
3993
4001
|
}
|
|
3994
|
-
|
|
3995
|
-
export interface DBSnapshotAttribute {
|
|
3996
|
-
|
|
3997
|
-
AttributeName?: string;
|
|
3998
|
-
|
|
3999
|
-
AttributeValues?: string[];
|
|
4000
|
-
}
|
|
4001
|
-
export declare namespace DBSnapshotAttribute {
|
|
4002
|
-
|
|
4003
|
-
const filterSensitiveLog: (obj: DBSnapshotAttribute) => any;
|
|
4004
|
-
}
|
|
@@ -1,7 +1,18 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
-
import { ActivityStreamMode, ActivityStreamStatus, AutomationMode, AvailabilityZone, Certificate, DBCluster, DBClusterSnapshotAttributesResult, DBInstance, DBInstanceAutomatedBackup, DBProxy, DBProxyEndpoint, DBProxyTarget, DBProxyTargetGroup, DBSecurityGroup, DBSnapshot,
|
|
2
|
+
import { ActivityStreamMode, ActivityStreamPolicyStatus, ActivityStreamStatus, AutomationMode, AvailabilityZone, Certificate, DBCluster, DBClusterSnapshotAttributesResult, DBInstance, DBInstanceAutomatedBackup, DBProxy, DBProxyEndpoint, DBProxyTarget, DBProxyTargetGroup, DBSecurityGroup, DBSnapshot, DBSubnetGroup, EventSubscription, ExportTask, Filter, GlobalCluster, OptionGroup, OptionSetting, Parameter, ProcessorFeature, ReplicaMode, ResourcePendingMaintenanceActions, ScalingConfiguration, ServerlessV2ScalingConfiguration, Tag, UserAuthConfig } from "./models_0";
|
|
3
3
|
import { RDSServiceException as __BaseException } from "./RDSServiceException";
|
|
4
4
|
|
|
5
|
+
export interface DBSnapshotAttribute {
|
|
6
|
+
|
|
7
|
+
AttributeName?: string;
|
|
8
|
+
|
|
9
|
+
AttributeValues?: string[];
|
|
10
|
+
}
|
|
11
|
+
export declare namespace DBSnapshotAttribute {
|
|
12
|
+
|
|
13
|
+
const filterSensitiveLog: (obj: DBSnapshotAttribute) => any;
|
|
14
|
+
}
|
|
15
|
+
|
|
5
16
|
export interface DBSnapshotAttributesResult {
|
|
6
17
|
|
|
7
18
|
DBSnapshotIdentifier?: string;
|
|
@@ -957,6 +968,38 @@ export declare namespace TagListMessage {
|
|
|
957
968
|
|
|
958
969
|
const filterSensitiveLog: (obj: TagListMessage) => any;
|
|
959
970
|
}
|
|
971
|
+
export declare enum AuditPolicyState {
|
|
972
|
+
LOCKED_POLICY = "locked",
|
|
973
|
+
UNLOCKED_POLICY = "unlocked"
|
|
974
|
+
}
|
|
975
|
+
export interface ModifyActivityStreamRequest {
|
|
976
|
+
|
|
977
|
+
ResourceArn?: string;
|
|
978
|
+
|
|
979
|
+
AuditPolicyState?: AuditPolicyState | string;
|
|
980
|
+
}
|
|
981
|
+
export declare namespace ModifyActivityStreamRequest {
|
|
982
|
+
|
|
983
|
+
const filterSensitiveLog: (obj: ModifyActivityStreamRequest) => any;
|
|
984
|
+
}
|
|
985
|
+
export interface ModifyActivityStreamResponse {
|
|
986
|
+
|
|
987
|
+
KmsKeyId?: string;
|
|
988
|
+
|
|
989
|
+
KinesisStreamName?: string;
|
|
990
|
+
|
|
991
|
+
Status?: ActivityStreamStatus | string;
|
|
992
|
+
|
|
993
|
+
Mode?: ActivityStreamMode | string;
|
|
994
|
+
|
|
995
|
+
EngineNativeAuditFieldsIncluded?: boolean;
|
|
996
|
+
|
|
997
|
+
PolicyStatus?: ActivityStreamPolicyStatus | string;
|
|
998
|
+
}
|
|
999
|
+
export declare namespace ModifyActivityStreamResponse {
|
|
1000
|
+
|
|
1001
|
+
const filterSensitiveLog: (obj: ModifyActivityStreamResponse) => any;
|
|
1002
|
+
}
|
|
960
1003
|
export interface ModifyCertificatesMessage {
|
|
961
1004
|
|
|
962
1005
|
CertificateIdentifier?: string;
|
|
@@ -88,6 +88,7 @@ import { DownloadDBLogFilePortionCommandInput, DownloadDBLogFilePortionCommandOu
|
|
|
88
88
|
import { FailoverDBClusterCommandInput, FailoverDBClusterCommandOutput } from "../commands/FailoverDBClusterCommand";
|
|
89
89
|
import { FailoverGlobalClusterCommandInput, FailoverGlobalClusterCommandOutput } from "../commands/FailoverGlobalClusterCommand";
|
|
90
90
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
91
|
+
import { ModifyActivityStreamCommandInput, ModifyActivityStreamCommandOutput } from "../commands/ModifyActivityStreamCommand";
|
|
91
92
|
import { ModifyCertificatesCommandInput, ModifyCertificatesCommandOutput } from "../commands/ModifyCertificatesCommand";
|
|
92
93
|
import { ModifyCurrentDBClusterCapacityCommandInput, ModifyCurrentDBClusterCapacityCommandOutput } from "../commands/ModifyCurrentDBClusterCapacityCommand";
|
|
93
94
|
import { ModifyCustomDBEngineVersionCommandInput, ModifyCustomDBEngineVersionCommandOutput } from "../commands/ModifyCustomDBEngineVersionCommand";
|
|
@@ -223,6 +224,7 @@ export declare const serializeAws_queryDownloadDBLogFilePortionCommand: (input:
|
|
|
223
224
|
export declare const serializeAws_queryFailoverDBClusterCommand: (input: FailoverDBClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
224
225
|
export declare const serializeAws_queryFailoverGlobalClusterCommand: (input: FailoverGlobalClusterCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
225
226
|
export declare const serializeAws_queryListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
227
|
+
export declare const serializeAws_queryModifyActivityStreamCommand: (input: ModifyActivityStreamCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
226
228
|
export declare const serializeAws_queryModifyCertificatesCommand: (input: ModifyCertificatesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
227
229
|
export declare const serializeAws_queryModifyCurrentDBClusterCapacityCommand: (input: ModifyCurrentDBClusterCapacityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
228
230
|
export declare const serializeAws_queryModifyCustomDBEngineVersionCommand: (input: ModifyCustomDBEngineVersionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -358,6 +360,7 @@ export declare const deserializeAws_queryDownloadDBLogFilePortionCommand: (outpu
|
|
|
358
360
|
export declare const deserializeAws_queryFailoverDBClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<FailoverDBClusterCommandOutput>;
|
|
359
361
|
export declare const deserializeAws_queryFailoverGlobalClusterCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<FailoverGlobalClusterCommandOutput>;
|
|
360
362
|
export declare const deserializeAws_queryListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
363
|
+
export declare const deserializeAws_queryModifyActivityStreamCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyActivityStreamCommandOutput>;
|
|
361
364
|
export declare const deserializeAws_queryModifyCertificatesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyCertificatesCommandOutput>;
|
|
362
365
|
export declare const deserializeAws_queryModifyCurrentDBClusterCapacityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyCurrentDBClusterCapacityCommandOutput>;
|
|
363
366
|
export declare const deserializeAws_queryModifyCustomDBEngineVersionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ModifyCustomDBEngineVersionCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rds",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rds Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.136.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|