@aws-sdk/client-rds 3.886.0 → 3.888.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-cjs/index.js +16 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_query.js +10 -0
- package/dist-types/commands/CreateDBProxyCommand.d.ts +3 -1
- package/dist-types/commands/DeleteDBProxyCommand.d.ts +1 -0
- package/dist-types/commands/DeleteGlobalClusterCommand.d.ts +2 -1
- package/dist-types/commands/DescribeDBProxiesCommand.d.ts +1 -0
- package/dist-types/commands/ModifyDBProxyCommand.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +30 -11
- package/dist-types/models/models_1.d.ts +18 -1
- package/dist-types/ts3.4/commands/DeleteGlobalClusterCommand.d.ts +2 -4
- package/dist-types/ts3.4/models/models_0.d.ts +9 -4
- package/dist-types/ts3.4/models/models_1.d.ts +5 -0
- package/package.json +39 -39
package/dist-cjs/index.js
CHANGED
|
@@ -134,6 +134,7 @@ __export(index_exports, {
|
|
|
134
134
|
DBSubnetQuotaExceededFault: () => DBSubnetQuotaExceededFault,
|
|
135
135
|
DBUpgradeDependencyFailureFault: () => DBUpgradeDependencyFailureFault,
|
|
136
136
|
DatabaseInsightsMode: () => DatabaseInsightsMode,
|
|
137
|
+
DefaultAuthScheme: () => DefaultAuthScheme,
|
|
137
138
|
DeleteBlueGreenDeploymentCommand: () => DeleteBlueGreenDeploymentCommand,
|
|
138
139
|
DeleteCustomDBEngineVersionCommand: () => DeleteCustomDBEngineVersionCommand,
|
|
139
140
|
DeleteDBClusterAutomatedBackupCommand: () => DeleteDBClusterAutomatedBackupCommand,
|
|
@@ -1985,6 +1986,10 @@ var IAMAuthMode = {
|
|
|
1985
1986
|
ENABLED: "ENABLED",
|
|
1986
1987
|
REQUIRED: "REQUIRED"
|
|
1987
1988
|
};
|
|
1989
|
+
var DefaultAuthScheme = {
|
|
1990
|
+
IAM_AUTH: "IAM_AUTH",
|
|
1991
|
+
NONE: "NONE"
|
|
1992
|
+
};
|
|
1988
1993
|
var EndpointNetworkType = {
|
|
1989
1994
|
DUAL: "DUAL",
|
|
1990
1995
|
IPV4: "IPV4",
|
|
@@ -10143,6 +10148,9 @@ var se_CreateDBProxyRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
10143
10148
|
if (input[_EF] != null) {
|
|
10144
10149
|
entries[_EF] = input[_EF];
|
|
10145
10150
|
}
|
|
10151
|
+
if (input[_DAS] != null) {
|
|
10152
|
+
entries[_DAS] = input[_DAS];
|
|
10153
|
+
}
|
|
10146
10154
|
if (input[_Au] != null) {
|
|
10147
10155
|
const memberEntries = se_UserAuthConfigList(input[_Au], context);
|
|
10148
10156
|
if (input[_Au]?.length === 0) {
|
|
@@ -12626,6 +12634,9 @@ var se_ModifyDBProxyRequest = /* @__PURE__ */ __name((input, context) => {
|
|
|
12626
12634
|
if (input[_NDBPN] != null) {
|
|
12627
12635
|
entries[_NDBPN] = input[_NDBPN];
|
|
12628
12636
|
}
|
|
12637
|
+
if (input[_DAS] != null) {
|
|
12638
|
+
entries[_DAS] = input[_DAS];
|
|
12639
|
+
}
|
|
12629
12640
|
if (input[_Au] != null) {
|
|
12630
12641
|
const memberEntries = se_UserAuthConfigList(input[_Au], context);
|
|
12631
12642
|
if (input[_Au]?.length === 0) {
|
|
@@ -16871,6 +16882,9 @@ var de_DBProxy = /* @__PURE__ */ __name((output, context) => {
|
|
|
16871
16882
|
} else if (output[_VSI] != null && output[_VSI][_me] != null) {
|
|
16872
16883
|
contents[_VSI] = de_StringList((0, import_smithy_client.getArrayIfSingleItem)(output[_VSI][_me]), context);
|
|
16873
16884
|
}
|
|
16885
|
+
if (output[_DAS] != null) {
|
|
16886
|
+
contents[_DAS] = (0, import_smithy_client.expectString)(output[_DAS]);
|
|
16887
|
+
}
|
|
16874
16888
|
if (output.Auth === "") {
|
|
16875
16889
|
contents[_Au] = [];
|
|
16876
16890
|
} else if (output[_Au] != null && output[_Au][_me] != null) {
|
|
@@ -21017,6 +21031,7 @@ var _Cer = "Certificate";
|
|
|
21017
21031
|
var _D = "Description";
|
|
21018
21032
|
var _DAA = "DescribeAccountAttributes";
|
|
21019
21033
|
var _DAB = "DeleteAutomatedBackups";
|
|
21034
|
+
var _DAS = "DefaultAuthScheme";
|
|
21020
21035
|
var _DASA = "DomainAuthSecretArn";
|
|
21021
21036
|
var _DBC = "DBCluster";
|
|
21022
21037
|
var _DBCA = "DBClusterArn";
|
|
@@ -25877,6 +25892,7 @@ var waitUntilTenantDatabaseDeleted = /* @__PURE__ */ __name(async (params, input
|
|
|
25877
25892
|
AuthScheme,
|
|
25878
25893
|
ClientPasswordAuthType,
|
|
25879
25894
|
IAMAuthMode,
|
|
25895
|
+
DefaultAuthScheme,
|
|
25880
25896
|
EndpointNetworkType,
|
|
25881
25897
|
EngineFamily,
|
|
25882
25898
|
TargetConnectionNetworkType,
|
|
@@ -943,6 +943,10 @@ export const IAMAuthMode = {
|
|
|
943
943
|
ENABLED: "ENABLED",
|
|
944
944
|
REQUIRED: "REQUIRED",
|
|
945
945
|
};
|
|
946
|
+
export const DefaultAuthScheme = {
|
|
947
|
+
IAM_AUTH: "IAM_AUTH",
|
|
948
|
+
NONE: "NONE",
|
|
949
|
+
};
|
|
946
950
|
export const EndpointNetworkType = {
|
|
947
951
|
DUAL: "DUAL",
|
|
948
952
|
IPV4: "IPV4",
|
|
@@ -6690,6 +6690,9 @@ const se_CreateDBProxyRequest = (input, context) => {
|
|
|
6690
6690
|
if (input[_EF] != null) {
|
|
6691
6691
|
entries[_EF] = input[_EF];
|
|
6692
6692
|
}
|
|
6693
|
+
if (input[_DAS] != null) {
|
|
6694
|
+
entries[_DAS] = input[_DAS];
|
|
6695
|
+
}
|
|
6693
6696
|
if (input[_Au] != null) {
|
|
6694
6697
|
const memberEntries = se_UserAuthConfigList(input[_Au], context);
|
|
6695
6698
|
if (input[_Au]?.length === 0) {
|
|
@@ -9175,6 +9178,9 @@ const se_ModifyDBProxyRequest = (input, context) => {
|
|
|
9175
9178
|
if (input[_NDBPN] != null) {
|
|
9176
9179
|
entries[_NDBPN] = input[_NDBPN];
|
|
9177
9180
|
}
|
|
9181
|
+
if (input[_DAS] != null) {
|
|
9182
|
+
entries[_DAS] = input[_DAS];
|
|
9183
|
+
}
|
|
9178
9184
|
if (input[_Au] != null) {
|
|
9179
9185
|
const memberEntries = se_UserAuthConfigList(input[_Au], context);
|
|
9180
9186
|
if (input[_Au]?.length === 0) {
|
|
@@ -13532,6 +13538,9 @@ const de_DBProxy = (output, context) => {
|
|
|
13532
13538
|
else if (output[_VSI] != null && output[_VSI][_me] != null) {
|
|
13533
13539
|
contents[_VSI] = de_StringList(__getArrayIfSingleItem(output[_VSI][_me]), context);
|
|
13534
13540
|
}
|
|
13541
|
+
if (output[_DAS] != null) {
|
|
13542
|
+
contents[_DAS] = __expectString(output[_DAS]);
|
|
13543
|
+
}
|
|
13535
13544
|
if (output.Auth === "") {
|
|
13536
13545
|
contents[_Au] = [];
|
|
13537
13546
|
}
|
|
@@ -17911,6 +17920,7 @@ const _Cer = "Certificate";
|
|
|
17911
17920
|
const _D = "Description";
|
|
17912
17921
|
const _DAA = "DescribeAccountAttributes";
|
|
17913
17922
|
const _DAB = "DeleteAutomatedBackups";
|
|
17923
|
+
const _DAS = "DefaultAuthScheme";
|
|
17914
17924
|
const _DASA = "DomainAuthSecretArn";
|
|
17915
17925
|
const _DBC = "DBCluster";
|
|
17916
17926
|
const _DBCA = "DBClusterArn";
|
|
@@ -37,7 +37,8 @@ declare const CreateDBProxyCommand_base: {
|
|
|
37
37
|
* const input = { // CreateDBProxyRequest
|
|
38
38
|
* DBProxyName: "STRING_VALUE", // required
|
|
39
39
|
* EngineFamily: "MYSQL" || "POSTGRESQL" || "SQLSERVER", // required
|
|
40
|
-
*
|
|
40
|
+
* DefaultAuthScheme: "IAM_AUTH" || "NONE",
|
|
41
|
+
* Auth: [ // UserAuthConfigList
|
|
41
42
|
* { // UserAuthConfig
|
|
42
43
|
* Description: "STRING_VALUE",
|
|
43
44
|
* UserName: "STRING_VALUE",
|
|
@@ -81,6 +82,7 @@ declare const CreateDBProxyCommand_base: {
|
|
|
81
82
|
* // VpcSubnetIds: [
|
|
82
83
|
* // "STRING_VALUE",
|
|
83
84
|
* // ],
|
|
85
|
+
* // DefaultAuthScheme: "STRING_VALUE",
|
|
84
86
|
* // Auth: [ // UserAuthConfigInfoList
|
|
85
87
|
* // { // UserAuthConfigInfo
|
|
86
88
|
* // Description: "STRING_VALUE",
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import { DeleteGlobalClusterMessage
|
|
3
|
+
import { DeleteGlobalClusterMessage } from "../models/models_0";
|
|
4
|
+
import { DeleteGlobalClusterResult } from "../models/models_1";
|
|
4
5
|
import { RDSClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../RDSClient";
|
|
5
6
|
/**
|
|
6
7
|
* @public
|
|
@@ -37,6 +37,7 @@ declare const ModifyDBProxyCommand_base: {
|
|
|
37
37
|
* const input = { // ModifyDBProxyRequest
|
|
38
38
|
* DBProxyName: "STRING_VALUE", // required
|
|
39
39
|
* NewDBProxyName: "STRING_VALUE",
|
|
40
|
+
* DefaultAuthScheme: "IAM_AUTH" || "NONE",
|
|
40
41
|
* Auth: [ // UserAuthConfigList
|
|
41
42
|
* { // UserAuthConfig
|
|
42
43
|
* Description: "STRING_VALUE",
|
|
@@ -70,6 +71,7 @@ declare const ModifyDBProxyCommand_base: {
|
|
|
70
71
|
* // VpcSubnetIds: [
|
|
71
72
|
* // "STRING_VALUE",
|
|
72
73
|
* // ],
|
|
74
|
+
* // DefaultAuthScheme: "STRING_VALUE",
|
|
73
75
|
* // Auth: [ // UserAuthConfigInfoList
|
|
74
76
|
* // { // UserAuthConfigInfo
|
|
75
77
|
* // Description: "STRING_VALUE",
|
|
@@ -9758,6 +9758,18 @@ export interface UserAuthConfig {
|
|
|
9758
9758
|
*/
|
|
9759
9759
|
ClientPasswordAuthType?: ClientPasswordAuthType | undefined;
|
|
9760
9760
|
}
|
|
9761
|
+
/**
|
|
9762
|
+
* @public
|
|
9763
|
+
* @enum
|
|
9764
|
+
*/
|
|
9765
|
+
export declare const DefaultAuthScheme: {
|
|
9766
|
+
readonly IAM_AUTH: "IAM_AUTH";
|
|
9767
|
+
readonly NONE: "NONE";
|
|
9768
|
+
};
|
|
9769
|
+
/**
|
|
9770
|
+
* @public
|
|
9771
|
+
*/
|
|
9772
|
+
export type DefaultAuthScheme = (typeof DefaultAuthScheme)[keyof typeof DefaultAuthScheme];
|
|
9761
9773
|
/**
|
|
9762
9774
|
* @public
|
|
9763
9775
|
* @enum
|
|
@@ -9814,11 +9826,20 @@ export interface CreateDBProxyRequest {
|
|
|
9814
9826
|
* @public
|
|
9815
9827
|
*/
|
|
9816
9828
|
EngineFamily: EngineFamily | undefined;
|
|
9829
|
+
/**
|
|
9830
|
+
* <p>The default authentication scheme that the proxy uses for client connections to the proxy and connections from the proxy to the underlying database.
|
|
9831
|
+
* Valid values are <code>NONE</code> and <code>IAM_AUTH</code>.
|
|
9832
|
+
* When set to <code>IAM_AUTH</code>, the proxy uses end-to-end IAM authentication to connect to the database.
|
|
9833
|
+
* If you don't specify <code>DefaultAuthScheme</code> or specify this parameter
|
|
9834
|
+
* as <code>NONE</code>, you must specify the <code>Auth</code> option.</p>
|
|
9835
|
+
* @public
|
|
9836
|
+
*/
|
|
9837
|
+
DefaultAuthScheme?: DefaultAuthScheme | undefined;
|
|
9817
9838
|
/**
|
|
9818
9839
|
* <p>The authorization mechanism that the proxy uses.</p>
|
|
9819
9840
|
* @public
|
|
9820
9841
|
*/
|
|
9821
|
-
Auth
|
|
9842
|
+
Auth?: UserAuthConfig[] | undefined;
|
|
9822
9843
|
/**
|
|
9823
9844
|
* <p>The Amazon Resource Name (ARN) of the IAM role that the proxy uses to access secrets in Amazon Web Services Secrets Manager.</p>
|
|
9824
9845
|
* @public
|
|
@@ -10021,6 +10042,14 @@ export interface DBProxy {
|
|
|
10021
10042
|
* @public
|
|
10022
10043
|
*/
|
|
10023
10044
|
VpcSubnetIds?: string[] | undefined;
|
|
10045
|
+
/**
|
|
10046
|
+
* <p>The default authentication scheme that the proxy uses for client connections to the proxy and connections from the proxy to the underlying database.
|
|
10047
|
+
* Valid values are <code>NONE</code> and <code>IAM_AUTH</code>.
|
|
10048
|
+
* When set to <code>IAM_AUTH</code>, the proxy uses end-to-end IAM authentication to connect to the database.
|
|
10049
|
+
* </p>
|
|
10050
|
+
* @public
|
|
10051
|
+
*/
|
|
10052
|
+
DefaultAuthScheme?: string | undefined;
|
|
10024
10053
|
/**
|
|
10025
10054
|
* <p>One or more data structures specifying the authorization mechanism to connect to the associated RDS DB instance
|
|
10026
10055
|
* or Aurora DB cluster.</p>
|
|
@@ -13012,16 +13041,6 @@ export interface DeleteGlobalClusterMessage {
|
|
|
13012
13041
|
*/
|
|
13013
13042
|
GlobalClusterIdentifier: string | undefined;
|
|
13014
13043
|
}
|
|
13015
|
-
/**
|
|
13016
|
-
* @public
|
|
13017
|
-
*/
|
|
13018
|
-
export interface DeleteGlobalClusterResult {
|
|
13019
|
-
/**
|
|
13020
|
-
* <p>A data type representing an Aurora global database.</p>
|
|
13021
|
-
* @public
|
|
13022
|
-
*/
|
|
13023
|
-
GlobalCluster?: GlobalCluster | undefined;
|
|
13024
|
-
}
|
|
13025
13044
|
/**
|
|
13026
13045
|
* @internal
|
|
13027
13046
|
*/
|
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
-
import { ActivityStreamMode, ActivityStreamPolicyStatus, ActivityStreamStatus, AutomationMode, AvailabilityZone, BlueGreenDeployment, DatabaseInsightsMode, DBCluster, DBClusterAutomatedBackup, DBClusterBacktrack, DBClusterEndpoint, DBClusterParameterGroup, DBClusterSnapshot, DBEngineVersion, DBInstance, DBInstanceAutomatedBackup, DBParameterGroup, DBProxy, DBProxyEndpoint, DBSecurityGroup, DBShardGroup, DBSnapshot, DBSubnetGroup, EventSubscription, ExportSourceType, ExportTask, GlobalCluster, Integration, MasterUserAuthenticationType, OptionGroup, OptionSetting, ProcessorFeature, RdsCustomClusterConfiguration, ReplicaMode, ResourcePendingMaintenanceActions, ScalingConfiguration, ServerlessV2ScalingConfiguration, Tag, TenantDatabase, UserAuthConfig } from "./models_0";
|
|
2
|
+
import { ActivityStreamMode, ActivityStreamPolicyStatus, ActivityStreamStatus, AutomationMode, AvailabilityZone, BlueGreenDeployment, DatabaseInsightsMode, DBCluster, DBClusterAutomatedBackup, DBClusterBacktrack, DBClusterEndpoint, DBClusterParameterGroup, DBClusterSnapshot, DBEngineVersion, DBInstance, DBInstanceAutomatedBackup, DBParameterGroup, DBProxy, DBProxyEndpoint, DBSecurityGroup, DBShardGroup, DBSnapshot, DBSubnetGroup, DefaultAuthScheme, EventSubscription, ExportSourceType, ExportTask, GlobalCluster, Integration, MasterUserAuthenticationType, OptionGroup, OptionSetting, ProcessorFeature, RdsCustomClusterConfiguration, ReplicaMode, ResourcePendingMaintenanceActions, ScalingConfiguration, ServerlessV2ScalingConfiguration, Tag, TenantDatabase, UserAuthConfig } from "./models_0";
|
|
3
3
|
import { RDSServiceException as __BaseException } from "./RDSServiceException";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface DeleteGlobalClusterResult {
|
|
8
|
+
/**
|
|
9
|
+
* <p>A data type representing an Aurora global database.</p>
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
GlobalCluster?: GlobalCluster | undefined;
|
|
13
|
+
}
|
|
4
14
|
/**
|
|
5
15
|
* @public
|
|
6
16
|
*/
|
|
@@ -9018,6 +9028,13 @@ export interface ModifyDBProxyRequest {
|
|
|
9018
9028
|
* @public
|
|
9019
9029
|
*/
|
|
9020
9030
|
NewDBProxyName?: string | undefined;
|
|
9031
|
+
/**
|
|
9032
|
+
* <p>The default authentication scheme that the proxy uses for client connections to the proxy and connections from the proxy to the underlying database.
|
|
9033
|
+
* Valid values are <code>NONE</code> and <code>IAM_AUTH</code>.
|
|
9034
|
+
* When set to <code>IAM_AUTH</code>, the proxy uses end-to-end IAM authentication to connect to the database.</p>
|
|
9035
|
+
* @public
|
|
9036
|
+
*/
|
|
9037
|
+
DefaultAuthScheme?: DefaultAuthScheme | undefined;
|
|
9021
9038
|
/**
|
|
9022
9039
|
* <p>The new authentication settings for the <code>DBProxy</code>.</p>
|
|
9023
9040
|
* @public
|
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
2
|
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
-
import {
|
|
4
|
-
|
|
5
|
-
DeleteGlobalClusterResult,
|
|
6
|
-
} from "../models/models_0";
|
|
3
|
+
import { DeleteGlobalClusterMessage } from "../models/models_0";
|
|
4
|
+
import { DeleteGlobalClusterResult } from "../models/models_1";
|
|
7
5
|
import {
|
|
8
6
|
RDSClientResolvedConfig,
|
|
9
7
|
ServiceInputTypes,
|
|
@@ -1706,6 +1706,12 @@ export interface UserAuthConfig {
|
|
|
1706
1706
|
IAMAuth?: IAMAuthMode | undefined;
|
|
1707
1707
|
ClientPasswordAuthType?: ClientPasswordAuthType | undefined;
|
|
1708
1708
|
}
|
|
1709
|
+
export declare const DefaultAuthScheme: {
|
|
1710
|
+
readonly IAM_AUTH: "IAM_AUTH";
|
|
1711
|
+
readonly NONE: "NONE";
|
|
1712
|
+
};
|
|
1713
|
+
export type DefaultAuthScheme =
|
|
1714
|
+
(typeof DefaultAuthScheme)[keyof typeof DefaultAuthScheme];
|
|
1709
1715
|
export declare const EndpointNetworkType: {
|
|
1710
1716
|
readonly DUAL: "DUAL";
|
|
1711
1717
|
readonly IPV4: "IPV4";
|
|
@@ -1728,7 +1734,8 @@ export type TargetConnectionNetworkType =
|
|
|
1728
1734
|
export interface CreateDBProxyRequest {
|
|
1729
1735
|
DBProxyName: string | undefined;
|
|
1730
1736
|
EngineFamily: EngineFamily | undefined;
|
|
1731
|
-
|
|
1737
|
+
DefaultAuthScheme?: DefaultAuthScheme | undefined;
|
|
1738
|
+
Auth?: UserAuthConfig[] | undefined;
|
|
1732
1739
|
RoleArn: string | undefined;
|
|
1733
1740
|
VpcSubnetIds: string[] | undefined;
|
|
1734
1741
|
VpcSecurityGroupIds?: string[] | undefined;
|
|
@@ -1767,6 +1774,7 @@ export interface DBProxy {
|
|
|
1767
1774
|
VpcId?: string | undefined;
|
|
1768
1775
|
VpcSecurityGroupIds?: string[] | undefined;
|
|
1769
1776
|
VpcSubnetIds?: string[] | undefined;
|
|
1777
|
+
DefaultAuthScheme?: string | undefined;
|
|
1770
1778
|
Auth?: UserAuthConfigInfo[] | undefined;
|
|
1771
1779
|
RoleArn?: string | undefined;
|
|
1772
1780
|
Endpoint?: string | undefined;
|
|
@@ -2569,9 +2577,6 @@ export declare class InvalidEventSubscriptionStateFault extends __BaseException
|
|
|
2569
2577
|
export interface DeleteGlobalClusterMessage {
|
|
2570
2578
|
GlobalClusterIdentifier: string | undefined;
|
|
2571
2579
|
}
|
|
2572
|
-
export interface DeleteGlobalClusterResult {
|
|
2573
|
-
GlobalCluster?: GlobalCluster | undefined;
|
|
2574
|
-
}
|
|
2575
2580
|
export declare const CreateTenantDatabaseMessageFilterSensitiveLog: (
|
|
2576
2581
|
obj: CreateTenantDatabaseMessage
|
|
2577
2582
|
) => any;
|
|
@@ -23,6 +23,7 @@ import {
|
|
|
23
23
|
DBShardGroup,
|
|
24
24
|
DBSnapshot,
|
|
25
25
|
DBSubnetGroup,
|
|
26
|
+
DefaultAuthScheme,
|
|
26
27
|
EventSubscription,
|
|
27
28
|
ExportSourceType,
|
|
28
29
|
ExportTask,
|
|
@@ -42,6 +43,9 @@ import {
|
|
|
42
43
|
UserAuthConfig,
|
|
43
44
|
} from "./models_0";
|
|
44
45
|
import { RDSServiceException as __BaseException } from "./RDSServiceException";
|
|
46
|
+
export interface DeleteGlobalClusterResult {
|
|
47
|
+
GlobalCluster?: GlobalCluster | undefined;
|
|
48
|
+
}
|
|
45
49
|
export interface DeleteIntegrationMessage {
|
|
46
50
|
IntegrationIdentifier: string | undefined;
|
|
47
51
|
}
|
|
@@ -1334,6 +1338,7 @@ export interface ModifyDBParameterGroupMessage {
|
|
|
1334
1338
|
export interface ModifyDBProxyRequest {
|
|
1335
1339
|
DBProxyName: string | undefined;
|
|
1336
1340
|
NewDBProxyName?: string | undefined;
|
|
1341
|
+
DefaultAuthScheme?: DefaultAuthScheme | undefined;
|
|
1337
1342
|
Auth?: UserAuthConfig[] | undefined;
|
|
1338
1343
|
RequireTLS?: boolean | undefined;
|
|
1339
1344
|
IdleClientTimeout?: number | undefined;
|
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.888.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-rds",
|
|
@@ -20,44 +20,44 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-sdk-rds": "3.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
31
|
-
"@aws-sdk/types": "3.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
-
"@smithy/config-resolver": "^4.1
|
|
36
|
-
"@smithy/core": "^3.
|
|
37
|
-
"@smithy/fetch-http-handler": "^5.
|
|
38
|
-
"@smithy/hash-node": "^4.
|
|
39
|
-
"@smithy/invalid-dependency": "^4.
|
|
40
|
-
"@smithy/middleware-content-length": "^4.
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.1
|
|
42
|
-
"@smithy/middleware-retry": "^4.1
|
|
43
|
-
"@smithy/middleware-serde": "^4.
|
|
44
|
-
"@smithy/middleware-stack": "^4.
|
|
45
|
-
"@smithy/node-config-provider": "^4.1
|
|
46
|
-
"@smithy/node-http-handler": "^4.
|
|
47
|
-
"@smithy/protocol-http": "^5.1
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
49
|
-
"@smithy/types": "^4.
|
|
50
|
-
"@smithy/url-parser": "^4.
|
|
51
|
-
"@smithy/util-base64": "^4.
|
|
52
|
-
"@smithy/util-body-length-browser": "^4.
|
|
53
|
-
"@smithy/util-body-length-node": "^4.
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.
|
|
56
|
-
"@smithy/util-endpoints": "^3.
|
|
57
|
-
"@smithy/util-middleware": "^4.
|
|
58
|
-
"@smithy/util-retry": "^4.
|
|
59
|
-
"@smithy/util-utf8": "^4.
|
|
60
|
-
"@smithy/util-waiter": "^4.
|
|
23
|
+
"@aws-sdk/core": "3.888.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.888.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.887.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.887.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.887.0",
|
|
28
|
+
"@aws-sdk/middleware-sdk-rds": "3.887.0",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "3.888.0",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "3.887.0",
|
|
31
|
+
"@aws-sdk/types": "3.887.0",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.887.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "3.887.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "3.888.0",
|
|
35
|
+
"@smithy/config-resolver": "^4.2.1",
|
|
36
|
+
"@smithy/core": "^3.11.0",
|
|
37
|
+
"@smithy/fetch-http-handler": "^5.2.1",
|
|
38
|
+
"@smithy/hash-node": "^4.1.1",
|
|
39
|
+
"@smithy/invalid-dependency": "^4.1.1",
|
|
40
|
+
"@smithy/middleware-content-length": "^4.1.1",
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.2.1",
|
|
42
|
+
"@smithy/middleware-retry": "^4.2.1",
|
|
43
|
+
"@smithy/middleware-serde": "^4.1.1",
|
|
44
|
+
"@smithy/middleware-stack": "^4.1.1",
|
|
45
|
+
"@smithy/node-config-provider": "^4.2.1",
|
|
46
|
+
"@smithy/node-http-handler": "^4.2.1",
|
|
47
|
+
"@smithy/protocol-http": "^5.2.1",
|
|
48
|
+
"@smithy/smithy-client": "^4.6.1",
|
|
49
|
+
"@smithy/types": "^4.5.0",
|
|
50
|
+
"@smithy/url-parser": "^4.1.1",
|
|
51
|
+
"@smithy/util-base64": "^4.1.0",
|
|
52
|
+
"@smithy/util-body-length-browser": "^4.1.0",
|
|
53
|
+
"@smithy/util-body-length-node": "^4.1.0",
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.1.1",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.1.1",
|
|
56
|
+
"@smithy/util-endpoints": "^3.1.1",
|
|
57
|
+
"@smithy/util-middleware": "^4.1.1",
|
|
58
|
+
"@smithy/util-retry": "^4.1.1",
|
|
59
|
+
"@smithy/util-utf8": "^4.1.0",
|
|
60
|
+
"@smithy/util-waiter": "^4.1.1",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|