@aws-sdk/client-database-migration-service 3.709.0 → 3.712.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 +5 -5
@@ -548,6 +548,7 @@ export interface KafkaSettings {
548
548
  SslEndpointIdentificationAlgorithm?:
549
549
  | KafkaSslEndpointIdentificationAlgorithm
550
550
  | undefined;
551
+ UseLargeIntegerValue?: boolean | undefined;
551
552
  }
552
553
  export interface KinesisSettings {
553
554
  StreamArn?: string | undefined;
@@ -560,7 +561,14 @@ export interface KinesisSettings {
560
561
  IncludeControlDetails?: boolean | undefined;
561
562
  IncludeNullAndEmpty?: boolean | undefined;
562
563
  NoHexPrefix?: boolean | undefined;
564
+ UseLargeIntegerValue?: boolean | undefined;
563
565
  }
566
+ export declare const SqlServerAuthenticationMethod: {
567
+ readonly Kerberos: "kerberos";
568
+ readonly Password: "password";
569
+ };
570
+ export type SqlServerAuthenticationMethod =
571
+ (typeof SqlServerAuthenticationMethod)[keyof typeof SqlServerAuthenticationMethod];
564
572
  export declare const SafeguardPolicy: {
565
573
  readonly EXCLUSIVE_AUTOMATIC_TRUNCATION: "exclusive-automatic-truncation";
566
574
  readonly RELY_ON_SQL_SERVER_REPLICATION_AGENT: "rely-on-sql-server-replication-agent";
@@ -594,6 +602,7 @@ export interface MicrosoftSQLServerSettings {
594
602
  TrimSpaceInChar?: boolean | undefined;
595
603
  TlogAccessMode?: TlogAccessMode | undefined;
596
604
  ForceLobLookup?: boolean | undefined;
605
+ AuthenticationMethod?: SqlServerAuthenticationMethod | undefined;
597
606
  }
598
607
  export interface MongoDbSettings {
599
608
  Username?: string | undefined;
@@ -639,6 +648,12 @@ export interface NeptuneSettings {
639
648
  MaxRetryCount?: number | undefined;
640
649
  IamAuthEnabled?: boolean | undefined;
641
650
  }
651
+ export declare const OracleAuthenticationMethod: {
652
+ readonly Kerberos: "kerberos";
653
+ readonly Password: "password";
654
+ };
655
+ export type OracleAuthenticationMethod =
656
+ (typeof OracleAuthenticationMethod)[keyof typeof OracleAuthenticationMethod];
642
657
  export declare const CharLengthSemantics: {
643
658
  readonly BYTE: "byte";
644
659
  readonly CHAR: "char";
@@ -690,6 +705,7 @@ export interface OracleSettings {
690
705
  TrimSpaceInChar?: boolean | undefined;
691
706
  ConvertTimestampWithZoneToUTC?: boolean | undefined;
692
707
  OpenTransactionWindow?: number | undefined;
708
+ AuthenticationMethod?: OracleAuthenticationMethod | undefined;
693
709
  }
694
710
  export declare const DatabaseMode: {
695
711
  readonly BABELFISH: "babelfish";
@@ -735,6 +751,7 @@ export interface PostgreSQLSettings {
735
751
  MapLongVarcharAs?: LongVarcharMappingType | undefined;
736
752
  DatabaseMode?: DatabaseMode | undefined;
737
753
  BabelfishDatabaseName?: string | undefined;
754
+ DisableUnicodeSourceFilter?: boolean | undefined;
738
755
  }
739
756
  export declare const RedisAuthTypeValue: {
740
757
  readonly AUTH_ROLE: "auth-role";
@@ -1208,6 +1225,11 @@ export declare class ReplicationSubnetGroupDoesNotCoverEnoughAZs extends __BaseE
1208
1225
  >
1209
1226
  );
1210
1227
  }
1228
+ export interface KerberosAuthenticationSettings {
1229
+ KeyCacheSecretId?: string | undefined;
1230
+ KeyCacheSecretIamArn?: string | undefined;
1231
+ Krb5FileContents?: string | undefined;
1232
+ }
1211
1233
  export interface CreateReplicationInstanceMessage {
1212
1234
  ReplicationInstanceIdentifier: string | undefined;
1213
1235
  AllocatedStorage?: number | undefined;
@@ -1225,6 +1247,7 @@ export interface CreateReplicationInstanceMessage {
1225
1247
  DnsNameServers?: string | undefined;
1226
1248
  ResourceIdentifier?: string | undefined;
1227
1249
  NetworkType?: string | undefined;
1250
+ KerberosAuthenticationSettings?: KerberosAuthenticationSettings | undefined;
1228
1251
  }
1229
1252
  export interface ReplicationPendingModifiedValues {
1230
1253
  ReplicationInstanceClass?: string | undefined;
@@ -1279,6 +1302,7 @@ export interface ReplicationInstance {
1279
1302
  FreeUntil?: Date | undefined;
1280
1303
  DnsNameServers?: string | undefined;
1281
1304
  NetworkType?: string | undefined;
1305
+ KerberosAuthenticationSettings?: KerberosAuthenticationSettings | undefined;
1282
1306
  }
1283
1307
  export interface CreateReplicationInstanceResponse {
1284
1308
  ReplicationInstance?: ReplicationInstance | undefined;
@@ -2216,21 +2240,6 @@ export interface DescribeReplicationTasksResponse {
2216
2240
  Marker?: string | undefined;
2217
2241
  ReplicationTasks?: ReplicationTask[] | undefined;
2218
2242
  }
2219
- export interface DescribeSchemasMessage {
2220
- EndpointArn: string | undefined;
2221
- MaxRecords?: number | undefined;
2222
- Marker?: string | undefined;
2223
- }
2224
- export interface DescribeSchemasResponse {
2225
- Marker?: string | undefined;
2226
- Schemas?: string[] | undefined;
2227
- }
2228
- export interface DescribeTableStatisticsMessage {
2229
- ReplicationTaskArn: string | undefined;
2230
- MaxRecords?: number | undefined;
2231
- Marker?: string | undefined;
2232
- Filters?: Filter[] | undefined;
2233
- }
2234
2243
  export declare const CreateDataMigrationMessageFilterSensitiveLog: (
2235
2244
  obj: CreateDataMigrationMessage
2236
2245
  ) => any;
@@ -2298,3 +2307,9 @@ export declare const DescribeDataMigrationsResponseFilterSensitiveLog: (
2298
2307
  export declare const DescribeEndpointsResponseFilterSensitiveLog: (
2299
2308
  obj: DescribeEndpointsResponse
2300
2309
  ) => any;
2310
+ export declare const ReplicationTaskAssessmentResultFilterSensitiveLog: (
2311
+ obj: ReplicationTaskAssessmentResult
2312
+ ) => any;
2313
+ export declare const DescribeReplicationTaskAssessmentResultsResponseFilterSensitiveLog: (
2314
+ obj: DescribeReplicationTaskAssessmentResultsResponse
2315
+ ) => any;
@@ -15,10 +15,12 @@ import {
15
15
  ElasticsearchSettings,
16
16
  Endpoint,
17
17
  EventSubscription,
18
+ Filter,
18
19
  GcpMySQLSettings,
19
20
  IBMDb2Settings,
20
21
  InstanceProfile,
21
22
  KafkaSettings,
23
+ KerberosAuthenticationSettings,
22
24
  KinesisSettings,
23
25
  MicrosoftSQLServerSettings,
24
26
  MigrationProject,
@@ -47,6 +49,21 @@ import {
47
49
  Tag,
48
50
  TimestreamSettings,
49
51
  } from "./models_0";
52
+ export interface DescribeSchemasMessage {
53
+ EndpointArn: string | undefined;
54
+ MaxRecords?: number | undefined;
55
+ Marker?: string | undefined;
56
+ }
57
+ export interface DescribeSchemasResponse {
58
+ Marker?: string | undefined;
59
+ Schemas?: string[] | undefined;
60
+ }
61
+ export interface DescribeTableStatisticsMessage {
62
+ ReplicationTaskArn: string | undefined;
63
+ MaxRecords?: number | undefined;
64
+ Marker?: string | undefined;
65
+ Filters?: Filter[] | undefined;
66
+ }
50
67
  export interface DescribeTableStatisticsResponse {
51
68
  ReplicationTaskArn?: string | undefined;
52
69
  TableStatistics?: TableStatistics[] | undefined;
@@ -233,6 +250,7 @@ export interface ModifyReplicationInstanceMessage {
233
250
  AutoMinorVersionUpgrade?: boolean | undefined;
234
251
  ReplicationInstanceIdentifier?: string | undefined;
235
252
  NetworkType?: string | undefined;
253
+ KerberosAuthenticationSettings?: KerberosAuthenticationSettings | undefined;
236
254
  }
237
255
  export interface ModifyReplicationInstanceResponse {
238
256
  ReplicationInstance?: ReplicationInstance | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-database-migration-service",
3
3
  "description": "AWS SDK for JavaScript Database Migration Service Client for Node.js, Browser and React Native",
4
- "version": "3.709.0",
4
+ "version": "3.712.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-database-migration-service",
@@ -20,10 +20,10 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.709.0",
24
- "@aws-sdk/client-sts": "3.709.0",
23
+ "@aws-sdk/client-sso-oidc": "3.712.0",
24
+ "@aws-sdk/client-sts": "3.712.0",
25
25
  "@aws-sdk/core": "3.709.0",
26
- "@aws-sdk/credential-provider-node": "3.709.0",
26
+ "@aws-sdk/credential-provider-node": "3.712.0",
27
27
  "@aws-sdk/middleware-host-header": "3.709.0",
28
28
  "@aws-sdk/middleware-logger": "3.709.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.709.0",
@@ -32,7 +32,7 @@
32
32
  "@aws-sdk/types": "3.709.0",
33
33
  "@aws-sdk/util-endpoints": "3.709.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.709.0",
35
- "@aws-sdk/util-user-agent-node": "3.709.0",
35
+ "@aws-sdk/util-user-agent-node": "3.712.0",
36
36
  "@smithy/config-resolver": "^3.0.13",
37
37
  "@smithy/core": "^2.5.5",
38
38
  "@smithy/fetch-http-handler": "^4.1.2",