@aws-sdk/client-database-migration-service 3.699.0 → 3.711.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.
Files changed (25) hide show
  1. package/dist-cjs/index.js +30 -1
  2. package/dist-es/commands/DescribeReplicationTaskAssessmentResultsCommand.js +2 -1
  3. package/dist-es/models/models_0.js +18 -0
  4. package/dist-es/protocols/Aws_json1_1.js +1 -0
  5. package/dist-types/commands/CreateEndpointCommand.d.ts +10 -0
  6. package/dist-types/commands/CreateReplicationInstanceCommand.d.ts +10 -0
  7. package/dist-types/commands/DeleteEndpointCommand.d.ts +5 -0
  8. package/dist-types/commands/DeleteEventSubscriptionCommand.d.ts +4 -0
  9. package/dist-types/commands/DeleteReplicationInstanceCommand.d.ts +5 -0
  10. package/dist-types/commands/DeleteReplicationSubnetGroupCommand.d.ts +4 -0
  11. package/dist-types/commands/DescribeEndpointsCommand.d.ts +5 -0
  12. package/dist-types/commands/DescribeReplicationInstancesCommand.d.ts +5 -0
  13. package/dist-types/commands/DescribeSchemasCommand.d.ts +1 -1
  14. package/dist-types/commands/DescribeTableStatisticsCommand.d.ts +5 -2
  15. package/dist-types/commands/ModifyEndpointCommand.d.ts +10 -0
  16. package/dist-types/commands/ModifyEventSubscriptionCommand.d.ts +4 -0
  17. package/dist-types/commands/ModifyReplicationInstanceCommand.d.ts +10 -0
  18. package/dist-types/commands/RebootReplicationInstanceCommand.d.ts +5 -0
  19. package/dist-types/models/models_0.d.ts +132 -96
  20. package/dist-types/models/models_1.d.ts +96 -1
  21. package/dist-types/ts3.4/commands/DescribeSchemasCommand.d.ts +1 -1
  22. package/dist-types/ts3.4/commands/DescribeTableStatisticsCommand.d.ts +4 -2
  23. package/dist-types/ts3.4/models/models_0.d.ts +30 -15
  24. package/dist-types/ts3.4/models/models_1.d.ts +18 -0
  25. package/package.json +36 -36
package/dist-cjs/index.js CHANGED
@@ -116,6 +116,7 @@ __export(src_exports, {
116
116
  DescribeReplicationSubnetGroupsCommand: () => DescribeReplicationSubnetGroupsCommand,
117
117
  DescribeReplicationTableStatisticsCommand: () => DescribeReplicationTableStatisticsCommand,
118
118
  DescribeReplicationTaskAssessmentResultsCommand: () => DescribeReplicationTaskAssessmentResultsCommand,
119
+ DescribeReplicationTaskAssessmentResultsResponseFilterSensitiveLog: () => DescribeReplicationTaskAssessmentResultsResponseFilterSensitiveLog,
119
120
  DescribeReplicationTaskAssessmentRunsCommand: () => DescribeReplicationTaskAssessmentRunsCommand,
120
121
  DescribeReplicationTaskIndividualAssessmentsCommand: () => DescribeReplicationTaskIndividualAssessmentsCommand,
121
122
  DescribeReplicationTasksCommand: () => DescribeReplicationTasksCommand,
@@ -175,6 +176,7 @@ __export(src_exports, {
175
176
  MoveReplicationTaskCommand: () => MoveReplicationTaskCommand,
176
177
  MySQLSettingsFilterSensitiveLog: () => MySQLSettingsFilterSensitiveLog,
177
178
  NestingLevelValue: () => NestingLevelValue,
179
+ OracleAuthenticationMethod: () => OracleAuthenticationMethod,
178
180
  OracleSettingsFilterSensitiveLog: () => OracleSettingsFilterSensitiveLog,
179
181
  OriginTypeValue: () => OriginTypeValue,
180
182
  ParquetVersionValue: () => ParquetVersionValue,
@@ -193,6 +195,7 @@ __export(src_exports, {
193
195
  RemoveTagsFromResourceCommand: () => RemoveTagsFromResourceCommand,
194
196
  ReplicationEndpointTypeValue: () => ReplicationEndpointTypeValue,
195
197
  ReplicationSubnetGroupDoesNotCoverEnoughAZs: () => ReplicationSubnetGroupDoesNotCoverEnoughAZs,
198
+ ReplicationTaskAssessmentResultFilterSensitiveLog: () => ReplicationTaskAssessmentResultFilterSensitiveLog,
196
199
  ResourceAlreadyExistsFault: () => ResourceAlreadyExistsFault,
197
200
  ResourceNotFoundFault: () => ResourceNotFoundFault,
198
201
  ResourceQuotaExceededFault: () => ResourceQuotaExceededFault,
@@ -203,6 +206,7 @@ __export(src_exports, {
203
206
  SNSNoAuthorizationFault: () => SNSNoAuthorizationFault,
204
207
  SafeguardPolicy: () => SafeguardPolicy,
205
208
  SourceType: () => SourceType,
209
+ SqlServerAuthenticationMethod: () => SqlServerAuthenticationMethod,
206
210
  SslSecurityProtocolValue: () => SslSecurityProtocolValue,
207
211
  StartDataMigrationCommand: () => StartDataMigrationCommand,
208
212
  StartDataMigrationResponseFilterSensitiveLog: () => StartDataMigrationResponseFilterSensitiveLog,
@@ -650,6 +654,10 @@ var KafkaSslEndpointIdentificationAlgorithm = {
650
654
  HTTPS: "https",
651
655
  NONE: "none"
652
656
  };
657
+ var SqlServerAuthenticationMethod = {
658
+ Kerberos: "kerberos",
659
+ Password: "password"
660
+ };
653
661
  var SafeguardPolicy = {
654
662
  EXCLUSIVE_AUTOMATIC_TRUNCATION: "exclusive-automatic-truncation",
655
663
  RELY_ON_SQL_SERVER_REPLICATION_AGENT: "rely-on-sql-server-replication-agent",
@@ -661,6 +669,10 @@ var TlogAccessMode = {
661
669
  PreferTlog: "PreferTlog",
662
670
  TlogOnly: "TlogOnly"
663
671
  };
672
+ var OracleAuthenticationMethod = {
673
+ Kerberos: "kerberos",
674
+ Password: "password"
675
+ };
664
676
  var CharLengthSemantics = {
665
677
  BYTE: "byte",
666
678
  CHAR: "char",
@@ -1150,6 +1162,18 @@ var DescribeEndpointsResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) =
1150
1162
  ...obj,
1151
1163
  ...obj.Endpoints && { Endpoints: obj.Endpoints.map((item) => EndpointFilterSensitiveLog(item)) }
1152
1164
  }), "DescribeEndpointsResponseFilterSensitiveLog");
1165
+ var ReplicationTaskAssessmentResultFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
1166
+ ...obj,
1167
+ ...obj.S3ObjectUrl && { S3ObjectUrl: import_smithy_client.SENSITIVE_STRING }
1168
+ }), "ReplicationTaskAssessmentResultFilterSensitiveLog");
1169
+ var DescribeReplicationTaskAssessmentResultsResponseFilterSensitiveLog = /* @__PURE__ */ __name((obj) => ({
1170
+ ...obj,
1171
+ ...obj.ReplicationTaskAssessmentResults && {
1172
+ ReplicationTaskAssessmentResults: obj.ReplicationTaskAssessmentResults.map(
1173
+ (item) => ReplicationTaskAssessmentResultFilterSensitiveLog(item)
1174
+ )
1175
+ }
1176
+ }), "DescribeReplicationTaskAssessmentResultsResponseFilterSensitiveLog");
1153
1177
 
1154
1178
  // src/models/models_1.ts
1155
1179
 
@@ -4410,6 +4434,7 @@ var de_ReplicationInstance = /* @__PURE__ */ __name((output, context) => {
4410
4434
  EngineVersion: import_smithy_client.expectString,
4411
4435
  FreeUntil: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
4412
4436
  InstanceCreateTime: (_) => (0, import_smithy_client.expectNonNull)((0, import_smithy_client.parseEpochTimestamp)((0, import_smithy_client.expectNumber)(_))),
4437
+ KerberosAuthenticationSettings: import_smithy_client._json,
4413
4438
  KmsKeyId: import_smithy_client.expectString,
4414
4439
  MultiAZ: import_smithy_client.expectBoolean,
4415
4440
  NetworkType: import_smithy_client.expectString,
@@ -5660,7 +5685,7 @@ var _DescribeReplicationTaskAssessmentResultsCommand = class _DescribeReplicatio
5660
5685
  (0, import_middleware_serde.getSerdePlugin)(config, this.serialize, this.deserialize),
5661
5686
  (0, import_middleware_endpoint.getEndpointPlugin)(config, Command.getEndpointParameterInstructions())
5662
5687
  ];
5663
- }).s("AmazonDMSv20160101", "DescribeReplicationTaskAssessmentResults", {}).n("DatabaseMigrationServiceClient", "DescribeReplicationTaskAssessmentResultsCommand").f(void 0, void 0).ser(se_DescribeReplicationTaskAssessmentResultsCommand).de(de_DescribeReplicationTaskAssessmentResultsCommand).build() {
5688
+ }).s("AmazonDMSv20160101", "DescribeReplicationTaskAssessmentResults", {}).n("DatabaseMigrationServiceClient", "DescribeReplicationTaskAssessmentResultsCommand").f(void 0, DescribeReplicationTaskAssessmentResultsResponseFilterSensitiveLog).ser(se_DescribeReplicationTaskAssessmentResultsCommand).de(de_DescribeReplicationTaskAssessmentResultsCommand).build() {
5664
5689
  };
5665
5690
  __name(_DescribeReplicationTaskAssessmentResultsCommand, "DescribeReplicationTaskAssessmentResultsCommand");
5666
5691
  var DescribeReplicationTaskAssessmentResultsCommand = _DescribeReplicationTaskAssessmentResultsCommand;
@@ -7564,8 +7589,10 @@ var waitUntilTestConnectionSucceeds = /* @__PURE__ */ __name(async (params, inpu
7564
7589
  KafkaSaslMechanism,
7565
7590
  KafkaSecurityProtocol,
7566
7591
  KafkaSslEndpointIdentificationAlgorithm,
7592
+ SqlServerAuthenticationMethod,
7567
7593
  SafeguardPolicy,
7568
7594
  TlogAccessMode,
7595
+ OracleAuthenticationMethod,
7569
7596
  CharLengthSemantics,
7570
7597
  DatabaseMode,
7571
7598
  LongVarcharMappingType,
@@ -7625,6 +7652,8 @@ var waitUntilTestConnectionSucceeds = /* @__PURE__ */ __name(async (params, inpu
7625
7652
  DeleteEndpointResponseFilterSensitiveLog,
7626
7653
  DescribeDataMigrationsResponseFilterSensitiveLog,
7627
7654
  DescribeEndpointsResponseFilterSensitiveLog,
7655
+ ReplicationTaskAssessmentResultFilterSensitiveLog,
7656
+ DescribeReplicationTaskAssessmentResultsResponseFilterSensitiveLog,
7628
7657
  AssessmentReportType,
7629
7658
  InvalidCertificateFault,
7630
7659
  UpgradeDependencyFailureFault,
@@ -2,6 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
4
  import { commonParams } from "../endpoint/EndpointParameters";
5
+ import { DescribeReplicationTaskAssessmentResultsResponseFilterSensitiveLog, } from "../models/models_0";
5
6
  import { de_DescribeReplicationTaskAssessmentResultsCommand, se_DescribeReplicationTaskAssessmentResultsCommand, } from "../protocols/Aws_json1_1";
6
7
  export { $Command };
7
8
  export class DescribeReplicationTaskAssessmentResultsCommand extends $Command
@@ -15,7 +16,7 @@ export class DescribeReplicationTaskAssessmentResultsCommand extends $Command
15
16
  })
16
17
  .s("AmazonDMSv20160101", "DescribeReplicationTaskAssessmentResults", {})
17
18
  .n("DatabaseMigrationServiceClient", "DescribeReplicationTaskAssessmentResultsCommand")
18
- .f(void 0, void 0)
19
+ .f(void 0, DescribeReplicationTaskAssessmentResultsResponseFilterSensitiveLog)
19
20
  .ser(se_DescribeReplicationTaskAssessmentResultsCommand)
20
21
  .de(de_DescribeReplicationTaskAssessmentResultsCommand)
21
22
  .build() {
@@ -157,6 +157,10 @@ export const KafkaSslEndpointIdentificationAlgorithm = {
157
157
  HTTPS: "https",
158
158
  NONE: "none",
159
159
  };
160
+ export const SqlServerAuthenticationMethod = {
161
+ Kerberos: "kerberos",
162
+ Password: "password",
163
+ };
160
164
  export const SafeguardPolicy = {
161
165
  EXCLUSIVE_AUTOMATIC_TRUNCATION: "exclusive-automatic-truncation",
162
166
  RELY_ON_SQL_SERVER_REPLICATION_AGENT: "rely-on-sql-server-replication-agent",
@@ -168,6 +172,10 @@ export const TlogAccessMode = {
168
172
  PreferTlog: "PreferTlog",
169
173
  TlogOnly: "TlogOnly",
170
174
  };
175
+ export const OracleAuthenticationMethod = {
176
+ Kerberos: "kerberos",
177
+ Password: "password",
178
+ };
171
179
  export const CharLengthSemantics = {
172
180
  BYTE: "byte",
173
181
  CHAR: "char",
@@ -582,3 +590,13 @@ export const DescribeEndpointsResponseFilterSensitiveLog = (obj) => ({
582
590
  ...obj,
583
591
  ...(obj.Endpoints && { Endpoints: obj.Endpoints.map((item) => EndpointFilterSensitiveLog(item)) }),
584
592
  });
593
+ export const ReplicationTaskAssessmentResultFilterSensitiveLog = (obj) => ({
594
+ ...obj,
595
+ ...(obj.S3ObjectUrl && { S3ObjectUrl: SENSITIVE_STRING }),
596
+ });
597
+ export const DescribeReplicationTaskAssessmentResultsResponseFilterSensitiveLog = (obj) => ({
598
+ ...obj,
599
+ ...(obj.ReplicationTaskAssessmentResults && {
600
+ ReplicationTaskAssessmentResults: obj.ReplicationTaskAssessmentResults.map((item) => ReplicationTaskAssessmentResultFilterSensitiveLog(item)),
601
+ }),
602
+ });
@@ -3153,6 +3153,7 @@ const de_ReplicationInstance = (output, context) => {
3153
3153
  EngineVersion: __expectString,
3154
3154
  FreeUntil: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
3155
3155
  InstanceCreateTime: (_) => __expectNonNull(__parseEpochTimestamp(__expectNumber(_))),
3156
+ KerberosAuthenticationSettings: _json,
3156
3157
  KmsKeyId: __expectString,
3157
3158
  MultiAZ: __expectBoolean,
3158
3159
  NetworkType: __expectString,
@@ -142,6 +142,7 @@ declare const CreateEndpointCommand_base: {
142
142
  * IncludeControlDetails: true || false,
143
143
  * IncludeNullAndEmpty: true || false,
144
144
  * NoHexPrefix: true || false,
145
+ * UseLargeIntegerValue: true || false,
145
146
  * },
146
147
  * KafkaSettings: { // KafkaSettings
147
148
  * Broker: "STRING_VALUE",
@@ -164,6 +165,7 @@ declare const CreateEndpointCommand_base: {
164
165
  * NoHexPrefix: true || false,
165
166
  * SaslMechanism: "scram-sha-512" || "plain",
166
167
  * SslEndpointIdentificationAlgorithm: "none" || "https",
168
+ * UseLargeIntegerValue: true || false,
167
169
  * },
168
170
  * ElasticsearchSettings: { // ElasticsearchSettings
169
171
  * ServiceAccessRoleArn: "STRING_VALUE", // required
@@ -239,6 +241,7 @@ declare const CreateEndpointCommand_base: {
239
241
  * MapLongVarcharAs: "wstring" || "clob" || "nclob",
240
242
  * DatabaseMode: "default" || "babelfish",
241
243
  * BabelfishDatabaseName: "STRING_VALUE",
244
+ * DisableUnicodeSourceFilter: true || false,
242
245
  * },
243
246
  * MySQLSettings: { // MySQLSettings
244
247
  * AfterConnectScript: "STRING_VALUE",
@@ -303,6 +306,7 @@ declare const CreateEndpointCommand_base: {
303
306
  * TrimSpaceInChar: true || false,
304
307
  * ConvertTimestampWithZoneToUTC: true || false,
305
308
  * OpenTransactionWindow: Number("int"),
309
+ * AuthenticationMethod: "password" || "kerberos",
306
310
  * },
307
311
  * SybaseSettings: { // SybaseSettings
308
312
  * DatabaseName: "STRING_VALUE",
@@ -331,6 +335,7 @@ declare const CreateEndpointCommand_base: {
331
335
  * TrimSpaceInChar: true || false,
332
336
  * TlogAccessMode: "BackupOnly" || "PreferBackup" || "PreferTlog" || "TlogOnly",
333
337
  * ForceLobLookup: true || false,
338
+ * AuthenticationMethod: "password" || "kerberos",
334
339
  * },
335
340
  * IBMDb2Settings: { // IBMDb2Settings
336
341
  * DatabaseName: "STRING_VALUE",
@@ -497,6 +502,7 @@ declare const CreateEndpointCommand_base: {
497
502
  * // IncludeControlDetails: true || false,
498
503
  * // IncludeNullAndEmpty: true || false,
499
504
  * // NoHexPrefix: true || false,
505
+ * // UseLargeIntegerValue: true || false,
500
506
  * // },
501
507
  * // KafkaSettings: { // KafkaSettings
502
508
  * // Broker: "STRING_VALUE",
@@ -519,6 +525,7 @@ declare const CreateEndpointCommand_base: {
519
525
  * // NoHexPrefix: true || false,
520
526
  * // SaslMechanism: "scram-sha-512" || "plain",
521
527
  * // SslEndpointIdentificationAlgorithm: "none" || "https",
528
+ * // UseLargeIntegerValue: true || false,
522
529
  * // },
523
530
  * // ElasticsearchSettings: { // ElasticsearchSettings
524
531
  * // ServiceAccessRoleArn: "STRING_VALUE", // required
@@ -594,6 +601,7 @@ declare const CreateEndpointCommand_base: {
594
601
  * // MapLongVarcharAs: "wstring" || "clob" || "nclob",
595
602
  * // DatabaseMode: "default" || "babelfish",
596
603
  * // BabelfishDatabaseName: "STRING_VALUE",
604
+ * // DisableUnicodeSourceFilter: true || false,
597
605
  * // },
598
606
  * // MySQLSettings: { // MySQLSettings
599
607
  * // AfterConnectScript: "STRING_VALUE",
@@ -658,6 +666,7 @@ declare const CreateEndpointCommand_base: {
658
666
  * // TrimSpaceInChar: true || false,
659
667
  * // ConvertTimestampWithZoneToUTC: true || false,
660
668
  * // OpenTransactionWindow: Number("int"),
669
+ * // AuthenticationMethod: "password" || "kerberos",
661
670
  * // },
662
671
  * // SybaseSettings: { // SybaseSettings
663
672
  * // DatabaseName: "STRING_VALUE",
@@ -686,6 +695,7 @@ declare const CreateEndpointCommand_base: {
686
695
  * // TrimSpaceInChar: true || false,
687
696
  * // TlogAccessMode: "BackupOnly" || "PreferBackup" || "PreferTlog" || "TlogOnly",
688
697
  * // ForceLobLookup: true || false,
698
+ * // AuthenticationMethod: "password" || "kerberos",
689
699
  * // },
690
700
  * // IBMDb2Settings: { // IBMDb2Settings
691
701
  * // DatabaseName: "STRING_VALUE",
@@ -69,6 +69,11 @@ declare const CreateReplicationInstanceCommand_base: {
69
69
  * DnsNameServers: "STRING_VALUE",
70
70
  * ResourceIdentifier: "STRING_VALUE",
71
71
  * NetworkType: "STRING_VALUE",
72
+ * KerberosAuthenticationSettings: { // KerberosAuthenticationSettings
73
+ * KeyCacheSecretId: "STRING_VALUE",
74
+ * KeyCacheSecretIamArn: "STRING_VALUE",
75
+ * Krb5FileContents: "STRING_VALUE",
76
+ * },
72
77
  * };
73
78
  * const command = new CreateReplicationInstanceCommand(input);
74
79
  * const response = await client.send(command);
@@ -133,6 +138,11 @@ declare const CreateReplicationInstanceCommand_base: {
133
138
  * // FreeUntil: new Date("TIMESTAMP"),
134
139
  * // DnsNameServers: "STRING_VALUE",
135
140
  * // NetworkType: "STRING_VALUE",
141
+ * // KerberosAuthenticationSettings: { // KerberosAuthenticationSettings
142
+ * // KeyCacheSecretId: "STRING_VALUE",
143
+ * // KeyCacheSecretIamArn: "STRING_VALUE",
144
+ * // Krb5FileContents: "STRING_VALUE",
145
+ * // },
136
146
  * // },
137
147
  * // };
138
148
  *
@@ -142,6 +142,7 @@ declare const DeleteEndpointCommand_base: {
142
142
  * // IncludeControlDetails: true || false,
143
143
  * // IncludeNullAndEmpty: true || false,
144
144
  * // NoHexPrefix: true || false,
145
+ * // UseLargeIntegerValue: true || false,
145
146
  * // },
146
147
  * // KafkaSettings: { // KafkaSettings
147
148
  * // Broker: "STRING_VALUE",
@@ -164,6 +165,7 @@ declare const DeleteEndpointCommand_base: {
164
165
  * // NoHexPrefix: true || false,
165
166
  * // SaslMechanism: "scram-sha-512" || "plain",
166
167
  * // SslEndpointIdentificationAlgorithm: "none" || "https",
168
+ * // UseLargeIntegerValue: true || false,
167
169
  * // },
168
170
  * // ElasticsearchSettings: { // ElasticsearchSettings
169
171
  * // ServiceAccessRoleArn: "STRING_VALUE", // required
@@ -239,6 +241,7 @@ declare const DeleteEndpointCommand_base: {
239
241
  * // MapLongVarcharAs: "wstring" || "clob" || "nclob",
240
242
  * // DatabaseMode: "default" || "babelfish",
241
243
  * // BabelfishDatabaseName: "STRING_VALUE",
244
+ * // DisableUnicodeSourceFilter: true || false,
242
245
  * // },
243
246
  * // MySQLSettings: { // MySQLSettings
244
247
  * // AfterConnectScript: "STRING_VALUE",
@@ -303,6 +306,7 @@ declare const DeleteEndpointCommand_base: {
303
306
  * // TrimSpaceInChar: true || false,
304
307
  * // ConvertTimestampWithZoneToUTC: true || false,
305
308
  * // OpenTransactionWindow: Number("int"),
309
+ * // AuthenticationMethod: "password" || "kerberos",
306
310
  * // },
307
311
  * // SybaseSettings: { // SybaseSettings
308
312
  * // DatabaseName: "STRING_VALUE",
@@ -331,6 +335,7 @@ declare const DeleteEndpointCommand_base: {
331
335
  * // TrimSpaceInChar: true || false,
332
336
  * // TlogAccessMode: "BackupOnly" || "PreferBackup" || "PreferTlog" || "TlogOnly",
333
337
  * // ForceLobLookup: true || false,
338
+ * // AuthenticationMethod: "password" || "kerberos",
334
339
  * // },
335
340
  * // IBMDb2Settings: { // IBMDb2Settings
336
341
  * // DatabaseName: "STRING_VALUE",
@@ -65,6 +65,10 @@ declare const DeleteEventSubscriptionCommand_base: {
65
65
  * @see {@link DeleteEventSubscriptionCommandOutput} for command's `response` shape.
66
66
  * @see {@link DatabaseMigrationServiceClientResolvedConfig | config} for DatabaseMigrationServiceClient's `config` shape.
67
67
  *
68
+ * @throws {@link AccessDeniedFault} (client fault)
69
+ * <p>DMS was denied access to the endpoint. Check that the
70
+ * role is correctly configured.</p>
71
+ *
68
72
  * @throws {@link InvalidResourceStateFault} (client fault)
69
73
  * <p>The resource is in a state that prevents it from being used for database migration.</p>
70
74
  *
@@ -105,6 +105,11 @@ declare const DeleteReplicationInstanceCommand_base: {
105
105
  * // FreeUntil: new Date("TIMESTAMP"),
106
106
  * // DnsNameServers: "STRING_VALUE",
107
107
  * // NetworkType: "STRING_VALUE",
108
+ * // KerberosAuthenticationSettings: { // KerberosAuthenticationSettings
109
+ * // KeyCacheSecretId: "STRING_VALUE",
110
+ * // KeyCacheSecretIamArn: "STRING_VALUE",
111
+ * // Krb5FileContents: "STRING_VALUE",
112
+ * // },
108
113
  * // },
109
114
  * // };
110
115
  *
@@ -49,6 +49,10 @@ declare const DeleteReplicationSubnetGroupCommand_base: {
49
49
  * @see {@link DeleteReplicationSubnetGroupCommandOutput} for command's `response` shape.
50
50
  * @see {@link DatabaseMigrationServiceClientResolvedConfig | config} for DatabaseMigrationServiceClient's `config` shape.
51
51
  *
52
+ * @throws {@link AccessDeniedFault} (client fault)
53
+ * <p>DMS was denied access to the endpoint. Check that the
54
+ * role is correctly configured.</p>
55
+ *
52
56
  * @throws {@link InvalidResourceStateFault} (client fault)
53
57
  * <p>The resource is in a state that prevents it from being used for database migration.</p>
54
58
  *
@@ -148,6 +148,7 @@ declare const DescribeEndpointsCommand_base: {
148
148
  * // IncludeControlDetails: true || false,
149
149
  * // IncludeNullAndEmpty: true || false,
150
150
  * // NoHexPrefix: true || false,
151
+ * // UseLargeIntegerValue: true || false,
151
152
  * // },
152
153
  * // KafkaSettings: { // KafkaSettings
153
154
  * // Broker: "STRING_VALUE",
@@ -170,6 +171,7 @@ declare const DescribeEndpointsCommand_base: {
170
171
  * // NoHexPrefix: true || false,
171
172
  * // SaslMechanism: "scram-sha-512" || "plain",
172
173
  * // SslEndpointIdentificationAlgorithm: "none" || "https",
174
+ * // UseLargeIntegerValue: true || false,
173
175
  * // },
174
176
  * // ElasticsearchSettings: { // ElasticsearchSettings
175
177
  * // ServiceAccessRoleArn: "STRING_VALUE", // required
@@ -245,6 +247,7 @@ declare const DescribeEndpointsCommand_base: {
245
247
  * // MapLongVarcharAs: "wstring" || "clob" || "nclob",
246
248
  * // DatabaseMode: "default" || "babelfish",
247
249
  * // BabelfishDatabaseName: "STRING_VALUE",
250
+ * // DisableUnicodeSourceFilter: true || false,
248
251
  * // },
249
252
  * // MySQLSettings: { // MySQLSettings
250
253
  * // AfterConnectScript: "STRING_VALUE",
@@ -309,6 +312,7 @@ declare const DescribeEndpointsCommand_base: {
309
312
  * // TrimSpaceInChar: true || false,
310
313
  * // ConvertTimestampWithZoneToUTC: true || false,
311
314
  * // OpenTransactionWindow: Number("int"),
315
+ * // AuthenticationMethod: "password" || "kerberos",
312
316
  * // },
313
317
  * // SybaseSettings: { // SybaseSettings
314
318
  * // DatabaseName: "STRING_VALUE",
@@ -337,6 +341,7 @@ declare const DescribeEndpointsCommand_base: {
337
341
  * // TrimSpaceInChar: true || false,
338
342
  * // TlogAccessMode: "BackupOnly" || "PreferBackup" || "PreferTlog" || "TlogOnly",
339
343
  * // ForceLobLookup: true || false,
344
+ * // AuthenticationMethod: "password" || "kerberos",
340
345
  * // },
341
346
  * // IBMDb2Settings: { // IBMDb2Settings
342
347
  * // DatabaseName: "STRING_VALUE",
@@ -112,6 +112,11 @@ declare const DescribeReplicationInstancesCommand_base: {
112
112
  * // FreeUntil: new Date("TIMESTAMP"),
113
113
  * // DnsNameServers: "STRING_VALUE",
114
114
  * // NetworkType: "STRING_VALUE",
115
+ * // KerberosAuthenticationSettings: { // KerberosAuthenticationSettings
116
+ * // KeyCacheSecretId: "STRING_VALUE",
117
+ * // KeyCacheSecretIamArn: "STRING_VALUE",
118
+ * // Krb5FileContents: "STRING_VALUE",
119
+ * // },
115
120
  * // },
116
121
  * // ],
117
122
  * // };
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DatabaseMigrationServiceClient";
4
- import { DescribeSchemasMessage, DescribeSchemasResponse } from "../models/models_0";
4
+ import { DescribeSchemasMessage, DescribeSchemasResponse } from "../models/models_1";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,8 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
2
  import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
3
  import { DatabaseMigrationServiceClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../DatabaseMigrationServiceClient";
4
- import { DescribeTableStatisticsMessage } from "../models/models_0";
5
- import { DescribeTableStatisticsResponse } from "../models/models_1";
4
+ import { DescribeTableStatisticsMessage, DescribeTableStatisticsResponse } from "../models/models_1";
6
5
  /**
7
6
  * @public
8
7
  */
@@ -94,6 +93,10 @@ declare const DescribeTableStatisticsCommand_base: {
94
93
  * @see {@link DescribeTableStatisticsCommandOutput} for command's `response` shape.
95
94
  * @see {@link DatabaseMigrationServiceClientResolvedConfig | config} for DatabaseMigrationServiceClient's `config` shape.
96
95
  *
96
+ * @throws {@link AccessDeniedFault} (client fault)
97
+ * <p>DMS was denied access to the endpoint. Check that the
98
+ * role is correctly configured.</p>
99
+ *
97
100
  * @throws {@link InvalidResourceStateFault} (client fault)
98
101
  * <p>The resource is in a state that prevents it from being used for database migration.</p>
99
102
  *
@@ -135,6 +135,7 @@ declare const ModifyEndpointCommand_base: {
135
135
  * IncludeControlDetails: true || false,
136
136
  * IncludeNullAndEmpty: true || false,
137
137
  * NoHexPrefix: true || false,
138
+ * UseLargeIntegerValue: true || false,
138
139
  * },
139
140
  * KafkaSettings: { // KafkaSettings
140
141
  * Broker: "STRING_VALUE",
@@ -157,6 +158,7 @@ declare const ModifyEndpointCommand_base: {
157
158
  * NoHexPrefix: true || false,
158
159
  * SaslMechanism: "scram-sha-512" || "plain",
159
160
  * SslEndpointIdentificationAlgorithm: "none" || "https",
161
+ * UseLargeIntegerValue: true || false,
160
162
  * },
161
163
  * ElasticsearchSettings: { // ElasticsearchSettings
162
164
  * ServiceAccessRoleArn: "STRING_VALUE", // required
@@ -232,6 +234,7 @@ declare const ModifyEndpointCommand_base: {
232
234
  * MapLongVarcharAs: "wstring" || "clob" || "nclob",
233
235
  * DatabaseMode: "default" || "babelfish",
234
236
  * BabelfishDatabaseName: "STRING_VALUE",
237
+ * DisableUnicodeSourceFilter: true || false,
235
238
  * },
236
239
  * MySQLSettings: { // MySQLSettings
237
240
  * AfterConnectScript: "STRING_VALUE",
@@ -296,6 +299,7 @@ declare const ModifyEndpointCommand_base: {
296
299
  * TrimSpaceInChar: true || false,
297
300
  * ConvertTimestampWithZoneToUTC: true || false,
298
301
  * OpenTransactionWindow: Number("int"),
302
+ * AuthenticationMethod: "password" || "kerberos",
299
303
  * },
300
304
  * SybaseSettings: { // SybaseSettings
301
305
  * DatabaseName: "STRING_VALUE",
@@ -324,6 +328,7 @@ declare const ModifyEndpointCommand_base: {
324
328
  * TrimSpaceInChar: true || false,
325
329
  * TlogAccessMode: "BackupOnly" || "PreferBackup" || "PreferTlog" || "TlogOnly",
326
330
  * ForceLobLookup: true || false,
331
+ * AuthenticationMethod: "password" || "kerberos",
327
332
  * },
328
333
  * IBMDb2Settings: { // IBMDb2Settings
329
334
  * DatabaseName: "STRING_VALUE",
@@ -490,6 +495,7 @@ declare const ModifyEndpointCommand_base: {
490
495
  * // IncludeControlDetails: true || false,
491
496
  * // IncludeNullAndEmpty: true || false,
492
497
  * // NoHexPrefix: true || false,
498
+ * // UseLargeIntegerValue: true || false,
493
499
  * // },
494
500
  * // KafkaSettings: { // KafkaSettings
495
501
  * // Broker: "STRING_VALUE",
@@ -512,6 +518,7 @@ declare const ModifyEndpointCommand_base: {
512
518
  * // NoHexPrefix: true || false,
513
519
  * // SaslMechanism: "scram-sha-512" || "plain",
514
520
  * // SslEndpointIdentificationAlgorithm: "none" || "https",
521
+ * // UseLargeIntegerValue: true || false,
515
522
  * // },
516
523
  * // ElasticsearchSettings: { // ElasticsearchSettings
517
524
  * // ServiceAccessRoleArn: "STRING_VALUE", // required
@@ -587,6 +594,7 @@ declare const ModifyEndpointCommand_base: {
587
594
  * // MapLongVarcharAs: "wstring" || "clob" || "nclob",
588
595
  * // DatabaseMode: "default" || "babelfish",
589
596
  * // BabelfishDatabaseName: "STRING_VALUE",
597
+ * // DisableUnicodeSourceFilter: true || false,
590
598
  * // },
591
599
  * // MySQLSettings: { // MySQLSettings
592
600
  * // AfterConnectScript: "STRING_VALUE",
@@ -651,6 +659,7 @@ declare const ModifyEndpointCommand_base: {
651
659
  * // TrimSpaceInChar: true || false,
652
660
  * // ConvertTimestampWithZoneToUTC: true || false,
653
661
  * // OpenTransactionWindow: Number("int"),
662
+ * // AuthenticationMethod: "password" || "kerberos",
654
663
  * // },
655
664
  * // SybaseSettings: { // SybaseSettings
656
665
  * // DatabaseName: "STRING_VALUE",
@@ -679,6 +688,7 @@ declare const ModifyEndpointCommand_base: {
679
688
  * // TrimSpaceInChar: true || false,
680
689
  * // TlogAccessMode: "BackupOnly" || "PreferBackup" || "PreferTlog" || "TlogOnly",
681
690
  * // ForceLobLookup: true || false,
691
+ * // AuthenticationMethod: "password" || "kerberos",
682
692
  * // },
683
693
  * // IBMDb2Settings: { // IBMDb2Settings
684
694
  * // DatabaseName: "STRING_VALUE",
@@ -71,6 +71,10 @@ declare const ModifyEventSubscriptionCommand_base: {
71
71
  * @see {@link ModifyEventSubscriptionCommandOutput} for command's `response` shape.
72
72
  * @see {@link DatabaseMigrationServiceClientResolvedConfig | config} for DatabaseMigrationServiceClient's `config` shape.
73
73
  *
74
+ * @throws {@link AccessDeniedFault} (client fault)
75
+ * <p>DMS was denied access to the endpoint. Check that the
76
+ * role is correctly configured.</p>
77
+ *
74
78
  * @throws {@link KMSAccessDeniedFault} (client fault)
75
79
  * <p>The ciphertext references a key that doesn't exist or that the DMS account doesn't have access to.</p>
76
80
  *
@@ -52,6 +52,11 @@ declare const ModifyReplicationInstanceCommand_base: {
52
52
  * AutoMinorVersionUpgrade: true || false,
53
53
  * ReplicationInstanceIdentifier: "STRING_VALUE",
54
54
  * NetworkType: "STRING_VALUE",
55
+ * KerberosAuthenticationSettings: { // KerberosAuthenticationSettings
56
+ * KeyCacheSecretId: "STRING_VALUE",
57
+ * KeyCacheSecretIamArn: "STRING_VALUE",
58
+ * Krb5FileContents: "STRING_VALUE",
59
+ * },
55
60
  * };
56
61
  * const command = new ModifyReplicationInstanceCommand(input);
57
62
  * const response = await client.send(command);
@@ -116,6 +121,11 @@ declare const ModifyReplicationInstanceCommand_base: {
116
121
  * // FreeUntil: new Date("TIMESTAMP"),
117
122
  * // DnsNameServers: "STRING_VALUE",
118
123
  * // NetworkType: "STRING_VALUE",
124
+ * // KerberosAuthenticationSettings: { // KerberosAuthenticationSettings
125
+ * // KeyCacheSecretId: "STRING_VALUE",
126
+ * // KeyCacheSecretIamArn: "STRING_VALUE",
127
+ * // Krb5FileContents: "STRING_VALUE",
128
+ * // },
119
129
  * // },
120
130
  * // };
121
131
  *
@@ -103,6 +103,11 @@ declare const RebootReplicationInstanceCommand_base: {
103
103
  * // FreeUntil: new Date("TIMESTAMP"),
104
104
  * // DnsNameServers: "STRING_VALUE",
105
105
  * // NetworkType: "STRING_VALUE",
106
+ * // KerberosAuthenticationSettings: { // KerberosAuthenticationSettings
107
+ * // KeyCacheSecretId: "STRING_VALUE",
108
+ * // KeyCacheSecretIamArn: "STRING_VALUE",
109
+ * // Krb5FileContents: "STRING_VALUE",
110
+ * // },
106
111
  * // },
107
112
  * // };
108
113
  *