@aws-sdk/client-rds 3.438.0 → 3.439.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 (58) hide show
  1. package/README.md +24 -0
  2. package/dist-cjs/RDS.js +6 -0
  3. package/dist-cjs/commands/CreateIntegrationCommand.js +51 -0
  4. package/dist-cjs/commands/DeleteIntegrationCommand.js +51 -0
  5. package/dist-cjs/commands/DescribeIntegrationsCommand.js +51 -0
  6. package/dist-cjs/commands/index.js +3 -0
  7. package/dist-cjs/models/models_0.js +77 -3
  8. package/dist-cjs/pagination/DescribeIntegrationsPaginator.js +29 -0
  9. package/dist-cjs/pagination/index.js +1 -0
  10. package/dist-cjs/protocols/Aws_query.js +419 -6
  11. package/dist-es/RDS.js +6 -0
  12. package/dist-es/commands/CreateIntegrationCommand.js +47 -0
  13. package/dist-es/commands/DeleteIntegrationCommand.js +47 -0
  14. package/dist-es/commands/DescribeIntegrationsCommand.js +47 -0
  15. package/dist-es/commands/index.js +3 -0
  16. package/dist-es/models/models_0.js +69 -0
  17. package/dist-es/pagination/DescribeIntegrationsPaginator.js +25 -0
  18. package/dist-es/pagination/index.js +1 -0
  19. package/dist-es/protocols/Aws_query.js +408 -1
  20. package/dist-types/RDS.d.ts +21 -0
  21. package/dist-types/RDSClient.d.ts +5 -2
  22. package/dist-types/commands/AddTagsToResourceCommand.d.ts +3 -0
  23. package/dist-types/commands/CreateCustomDBEngineVersionCommand.d.ts +2 -0
  24. package/dist-types/commands/CreateIntegrationCommand.d.ts +130 -0
  25. package/dist-types/commands/DeleteCustomDBEngineVersionCommand.d.ts +2 -0
  26. package/dist-types/commands/DeleteIntegrationCommand.d.ts +107 -0
  27. package/dist-types/commands/DescribeDBClusterParametersCommand.d.ts +2 -1
  28. package/dist-types/commands/DescribeDBClusterSnapshotAttributesCommand.d.ts +1 -1
  29. package/dist-types/commands/DescribeDBClusterSnapshotsCommand.d.ts +1 -1
  30. package/dist-types/commands/DescribeDBClustersCommand.d.ts +1 -1
  31. package/dist-types/commands/DescribeDBEngineVersionsCommand.d.ts +3 -2
  32. package/dist-types/commands/DescribeIntegrationsCommand.d.ts +115 -0
  33. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  34. package/dist-types/commands/ModifyCustomDBEngineVersionCommand.d.ts +2 -0
  35. package/dist-types/commands/RemoveTagsFromResourceCommand.d.ts +3 -0
  36. package/dist-types/commands/index.d.ts +3 -0
  37. package/dist-types/models/models_0.d.ts +225 -403
  38. package/dist-types/models/models_1.d.ts +451 -1
  39. package/dist-types/pagination/DescribeIntegrationsPaginator.d.ts +7 -0
  40. package/dist-types/pagination/index.d.ts +1 -0
  41. package/dist-types/protocols/Aws_query.d.ts +27 -0
  42. package/dist-types/ts3.4/RDS.d.ts +51 -0
  43. package/dist-types/ts3.4/RDSClient.d.ts +18 -0
  44. package/dist-types/ts3.4/commands/CreateIntegrationCommand.d.ts +36 -0
  45. package/dist-types/ts3.4/commands/DeleteIntegrationCommand.d.ts +36 -0
  46. package/dist-types/ts3.4/commands/DescribeDBClusterParametersCommand.d.ts +2 -4
  47. package/dist-types/ts3.4/commands/DescribeDBClusterSnapshotAttributesCommand.d.ts +1 -1
  48. package/dist-types/ts3.4/commands/DescribeDBClusterSnapshotsCommand.d.ts +1 -1
  49. package/dist-types/ts3.4/commands/DescribeDBClustersCommand.d.ts +1 -1
  50. package/dist-types/ts3.4/commands/DescribeDBEngineVersionsCommand.d.ts +4 -2
  51. package/dist-types/ts3.4/commands/DescribeIntegrationsCommand.d.ts +42 -0
  52. package/dist-types/ts3.4/commands/index.d.ts +3 -0
  53. package/dist-types/ts3.4/models/models_0.d.ts +78 -51
  54. package/dist-types/ts3.4/models/models_1.d.ts +64 -1
  55. package/dist-types/ts3.4/pagination/DescribeIntegrationsPaginator.d.ts +11 -0
  56. package/dist-types/ts3.4/pagination/index.d.ts +1 -0
  57. package/dist-types/ts3.4/protocols/Aws_query.d.ts +36 -0
  58. package/package.json +1 -1
@@ -161,6 +161,10 @@ import {
161
161
  CreateGlobalClusterCommandInput,
162
162
  CreateGlobalClusterCommandOutput,
163
163
  } from "./commands/CreateGlobalClusterCommand";
164
+ import {
165
+ CreateIntegrationCommandInput,
166
+ CreateIntegrationCommandOutput,
167
+ } from "./commands/CreateIntegrationCommand";
164
168
  import {
165
169
  CreateOptionGroupCommandInput,
166
170
  CreateOptionGroupCommandOutput,
@@ -233,6 +237,10 @@ import {
233
237
  DeleteGlobalClusterCommandInput,
234
238
  DeleteGlobalClusterCommandOutput,
235
239
  } from "./commands/DeleteGlobalClusterCommand";
240
+ import {
241
+ DeleteIntegrationCommandInput,
242
+ DeleteIntegrationCommandOutput,
243
+ } from "./commands/DeleteIntegrationCommand";
236
244
  import {
237
245
  DeleteOptionGroupCommandInput,
238
246
  DeleteOptionGroupCommandOutput,
@@ -369,6 +377,10 @@ import {
369
377
  DescribeGlobalClustersCommandInput,
370
378
  DescribeGlobalClustersCommandOutput,
371
379
  } from "./commands/DescribeGlobalClustersCommand";
380
+ import {
381
+ DescribeIntegrationsCommandInput,
382
+ DescribeIntegrationsCommandOutput,
383
+ } from "./commands/DescribeIntegrationsCommand";
372
384
  import {
373
385
  DescribeOptionGroupOptionsCommandInput,
374
386
  DescribeOptionGroupOptionsCommandOutput,
@@ -658,6 +670,7 @@ export type ServiceInputTypes =
658
670
  | CreateDBSubnetGroupCommandInput
659
671
  | CreateEventSubscriptionCommandInput
660
672
  | CreateGlobalClusterCommandInput
673
+ | CreateIntegrationCommandInput
661
674
  | CreateOptionGroupCommandInput
662
675
  | DeleteBlueGreenDeploymentCommandInput
663
676
  | DeleteCustomDBEngineVersionCommandInput
@@ -676,6 +689,7 @@ export type ServiceInputTypes =
676
689
  | DeleteDBSubnetGroupCommandInput
677
690
  | DeleteEventSubscriptionCommandInput
678
691
  | DeleteGlobalClusterCommandInput
692
+ | DeleteIntegrationCommandInput
679
693
  | DeleteOptionGroupCommandInput
680
694
  | DeregisterDBProxyTargetsCommandInput
681
695
  | DescribeAccountAttributesCommandInput
@@ -710,6 +724,7 @@ export type ServiceInputTypes =
710
724
  | DescribeEventsCommandInput
711
725
  | DescribeExportTasksCommandInput
712
726
  | DescribeGlobalClustersCommandInput
727
+ | DescribeIntegrationsCommandInput
713
728
  | DescribeOptionGroupOptionsCommandInput
714
729
  | DescribeOptionGroupsCommandInput
715
730
  | DescribeOrderableDBInstanceOptionsCommandInput
@@ -803,6 +818,7 @@ export type ServiceOutputTypes =
803
818
  | CreateDBSubnetGroupCommandOutput
804
819
  | CreateEventSubscriptionCommandOutput
805
820
  | CreateGlobalClusterCommandOutput
821
+ | CreateIntegrationCommandOutput
806
822
  | CreateOptionGroupCommandOutput
807
823
  | DeleteBlueGreenDeploymentCommandOutput
808
824
  | DeleteCustomDBEngineVersionCommandOutput
@@ -821,6 +837,7 @@ export type ServiceOutputTypes =
821
837
  | DeleteDBSubnetGroupCommandOutput
822
838
  | DeleteEventSubscriptionCommandOutput
823
839
  | DeleteGlobalClusterCommandOutput
840
+ | DeleteIntegrationCommandOutput
824
841
  | DeleteOptionGroupCommandOutput
825
842
  | DeregisterDBProxyTargetsCommandOutput
826
843
  | DescribeAccountAttributesCommandOutput
@@ -855,6 +872,7 @@ export type ServiceOutputTypes =
855
872
  | DescribeEventsCommandOutput
856
873
  | DescribeExportTasksCommandOutput
857
874
  | DescribeGlobalClustersCommandOutput
875
+ | DescribeIntegrationsCommandOutput
858
876
  | DescribeOptionGroupOptionsCommandOutput
859
877
  | DescribeOptionGroupsCommandOutput
860
878
  | DescribeOrderableDBInstanceOptionsCommandOutput
@@ -0,0 +1,36 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import { CreateIntegrationMessage, Integration } from "../models/models_0";
10
+ import {
11
+ RDSClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../RDSClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface CreateIntegrationCommandInput
17
+ extends CreateIntegrationMessage {}
18
+ export interface CreateIntegrationCommandOutput
19
+ extends Integration,
20
+ __MetadataBearer {}
21
+ export declare class CreateIntegrationCommand extends $Command<
22
+ CreateIntegrationCommandInput,
23
+ CreateIntegrationCommandOutput,
24
+ RDSClientResolvedConfig
25
+ > {
26
+ readonly input: CreateIntegrationCommandInput;
27
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
+ constructor(input: CreateIntegrationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: RDSClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<CreateIntegrationCommandInput, CreateIntegrationCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -0,0 +1,36 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import { DeleteIntegrationMessage, Integration } from "../models/models_0";
10
+ import {
11
+ RDSClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../RDSClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface DeleteIntegrationCommandInput
17
+ extends DeleteIntegrationMessage {}
18
+ export interface DeleteIntegrationCommandOutput
19
+ extends Integration,
20
+ __MetadataBearer {}
21
+ export declare class DeleteIntegrationCommand extends $Command<
22
+ DeleteIntegrationCommandInput,
23
+ DeleteIntegrationCommandOutput,
24
+ RDSClientResolvedConfig
25
+ > {
26
+ readonly input: DeleteIntegrationCommandInput;
27
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
28
+ constructor(input: DeleteIntegrationCommandInput);
29
+ resolveMiddleware(
30
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
31
+ configuration: RDSClientResolvedConfig,
32
+ options?: __HttpHandlerOptions
33
+ ): Handler<DeleteIntegrationCommandInput, DeleteIntegrationCommandOutput>;
34
+ private serialize;
35
+ private deserialize;
36
+ }
@@ -6,10 +6,8 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import {
10
- DBClusterParameterGroupDetails,
11
- DescribeDBClusterParametersMessage,
12
- } from "../models/models_0";
9
+ import { DBClusterParameterGroupDetails } from "../models/models_0";
10
+ import { DescribeDBClusterParametersMessage } from "../models/models_1";
13
11
  import {
14
12
  RDSClientResolvedConfig,
15
13
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  DescribeDBClusterSnapshotAttributesMessage,
11
11
  DescribeDBClusterSnapshotAttributesResult,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  RDSClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  DBClusterSnapshotMessage,
11
11
  DescribeDBClusterSnapshotsMessage,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  RDSClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -9,7 +9,7 @@ import {
9
9
  import {
10
10
  DBClusterMessage,
11
11
  DescribeDBClustersMessage,
12
- } from "../models/models_0";
12
+ } from "../models/models_1";
13
13
  import {
14
14
  RDSClientResolvedConfig,
15
15
  ServiceInputTypes,
@@ -6,8 +6,10 @@ import {
6
6
  MetadataBearer as __MetadataBearer,
7
7
  MiddlewareStack,
8
8
  } from "@smithy/types";
9
- import { DBEngineVersionMessage } from "../models/models_0";
10
- import { DescribeDBEngineVersionsMessage } from "../models/models_1";
9
+ import {
10
+ DBEngineVersionMessage,
11
+ DescribeDBEngineVersionsMessage,
12
+ } from "../models/models_1";
11
13
  import {
12
14
  RDSClientResolvedConfig,
13
15
  ServiceInputTypes,
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
+ import { Command as $Command } from "@smithy/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@smithy/types";
9
+ import {
10
+ DescribeIntegrationsMessage,
11
+ DescribeIntegrationsResponse,
12
+ } from "../models/models_1";
13
+ import {
14
+ RDSClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../RDSClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface DescribeIntegrationsCommandInput
20
+ extends DescribeIntegrationsMessage {}
21
+ export interface DescribeIntegrationsCommandOutput
22
+ extends DescribeIntegrationsResponse,
23
+ __MetadataBearer {}
24
+ export declare class DescribeIntegrationsCommand extends $Command<
25
+ DescribeIntegrationsCommandInput,
26
+ DescribeIntegrationsCommandOutput,
27
+ RDSClientResolvedConfig
28
+ > {
29
+ readonly input: DescribeIntegrationsCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: DescribeIntegrationsCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: RDSClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ DescribeIntegrationsCommandInput,
38
+ DescribeIntegrationsCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -27,6 +27,7 @@ export * from "./CreateDBSnapshotCommand";
27
27
  export * from "./CreateDBSubnetGroupCommand";
28
28
  export * from "./CreateEventSubscriptionCommand";
29
29
  export * from "./CreateGlobalClusterCommand";
30
+ export * from "./CreateIntegrationCommand";
30
31
  export * from "./CreateOptionGroupCommand";
31
32
  export * from "./DeleteBlueGreenDeploymentCommand";
32
33
  export * from "./DeleteCustomDBEngineVersionCommand";
@@ -45,6 +46,7 @@ export * from "./DeleteDBSnapshotCommand";
45
46
  export * from "./DeleteDBSubnetGroupCommand";
46
47
  export * from "./DeleteEventSubscriptionCommand";
47
48
  export * from "./DeleteGlobalClusterCommand";
49
+ export * from "./DeleteIntegrationCommand";
48
50
  export * from "./DeleteOptionGroupCommand";
49
51
  export * from "./DeregisterDBProxyTargetsCommand";
50
52
  export * from "./DescribeAccountAttributesCommand";
@@ -79,6 +81,7 @@ export * from "./DescribeEventSubscriptionsCommand";
79
81
  export * from "./DescribeEventsCommand";
80
82
  export * from "./DescribeExportTasksCommand";
81
83
  export * from "./DescribeGlobalClustersCommand";
84
+ export * from "./DescribeIntegrationsCommand";
82
85
  export * from "./DescribeOptionGroupOptionsCommand";
83
86
  export * from "./DescribeOptionGroupsCommand";
84
87
  export * from "./DescribeOrderableDBInstanceOptionsCommand";
@@ -183,6 +183,13 @@ export declare class DBSnapshotNotFoundFault extends __BaseException {
183
183
  opts: __ExceptionOptionType<DBSnapshotNotFoundFault, __BaseException>
184
184
  );
185
185
  }
186
+ export declare class IntegrationNotFoundFault extends __BaseException {
187
+ readonly name: "IntegrationNotFoundFault";
188
+ readonly $fault: "client";
189
+ constructor(
190
+ opts: __ExceptionOptionType<IntegrationNotFoundFault, __BaseException>
191
+ );
192
+ }
186
193
  export interface ApplyPendingMaintenanceActionMessage {
187
194
  ResourceIdentifier: string | undefined;
188
195
  ApplyAction: string | undefined;
@@ -770,6 +777,7 @@ export interface UpgradeTarget {
770
777
  SupportsGlobalDatabases?: boolean;
771
778
  SupportsBabelfish?: boolean;
772
779
  SupportsLocalWriteForwarding?: boolean;
780
+ SupportsIntegrations?: boolean;
773
781
  }
774
782
  export interface DBEngineVersion {
775
783
  Engine?: string;
@@ -804,6 +812,7 @@ export interface DBEngineVersion {
804
812
  SupportsCertificateRotationWithoutRestart?: boolean;
805
813
  SupportedCACertificateIdentifiers?: string[];
806
814
  SupportsLocalWriteForwarding?: boolean;
815
+ SupportsIntegrations?: boolean;
807
816
  }
808
817
  export declare class Ec2ImagePropertiesNotSupportedFault extends __BaseException {
809
818
  readonly name: "Ec2ImagePropertiesNotSupportedFault";
@@ -1920,6 +1929,65 @@ export declare class GlobalClusterQuotaExceededFault extends __BaseException {
1920
1929
  >
1921
1930
  );
1922
1931
  }
1932
+ export interface CreateIntegrationMessage {
1933
+ SourceArn: string | undefined;
1934
+ TargetArn: string | undefined;
1935
+ IntegrationName: string | undefined;
1936
+ KMSKeyId?: string;
1937
+ AdditionalEncryptionContext?: Record<string, string>;
1938
+ Tags?: Tag[];
1939
+ }
1940
+ export interface IntegrationError {
1941
+ ErrorCode: string | undefined;
1942
+ ErrorMessage?: string;
1943
+ }
1944
+ export declare const IntegrationStatus: {
1945
+ readonly ACTIVE: "active";
1946
+ readonly CREATING: "creating";
1947
+ readonly DELETING: "deleting";
1948
+ readonly FAILED: "failed";
1949
+ readonly MODIFYING: "modifying";
1950
+ readonly NEEDS_ATTENTION: "needs_attention";
1951
+ readonly SYNCING: "syncing";
1952
+ };
1953
+ export type IntegrationStatus =
1954
+ (typeof IntegrationStatus)[keyof typeof IntegrationStatus];
1955
+ export interface Integration {
1956
+ SourceArn?: string;
1957
+ TargetArn?: string;
1958
+ IntegrationName?: string;
1959
+ IntegrationArn?: string;
1960
+ KMSKeyId?: string;
1961
+ AdditionalEncryptionContext?: Record<string, string>;
1962
+ Status?: IntegrationStatus;
1963
+ Tags?: Tag[];
1964
+ CreateTime?: Date;
1965
+ Errors?: IntegrationError[];
1966
+ }
1967
+ export declare class IntegrationAlreadyExistsFault extends __BaseException {
1968
+ readonly name: "IntegrationAlreadyExistsFault";
1969
+ readonly $fault: "client";
1970
+ constructor(
1971
+ opts: __ExceptionOptionType<IntegrationAlreadyExistsFault, __BaseException>
1972
+ );
1973
+ }
1974
+ export declare class IntegrationConflictOperationFault extends __BaseException {
1975
+ readonly name: "IntegrationConflictOperationFault";
1976
+ readonly $fault: "client";
1977
+ constructor(
1978
+ opts: __ExceptionOptionType<
1979
+ IntegrationConflictOperationFault,
1980
+ __BaseException
1981
+ >
1982
+ );
1983
+ }
1984
+ export declare class IntegrationQuotaExceededFault extends __BaseException {
1985
+ readonly name: "IntegrationQuotaExceededFault";
1986
+ readonly $fault: "client";
1987
+ constructor(
1988
+ opts: __ExceptionOptionType<IntegrationQuotaExceededFault, __BaseException>
1989
+ );
1990
+ }
1923
1991
  export interface CreateOptionGroupMessage {
1924
1992
  OptionGroupName: string | undefined;
1925
1993
  EngineName: string | undefined;
@@ -2236,6 +2304,16 @@ export interface DeleteGlobalClusterMessage {
2236
2304
  export interface DeleteGlobalClusterResult {
2237
2305
  GlobalCluster?: GlobalCluster;
2238
2306
  }
2307
+ export interface DeleteIntegrationMessage {
2308
+ IntegrationIdentifier: string | undefined;
2309
+ }
2310
+ export declare class InvalidIntegrationStateFault extends __BaseException {
2311
+ readonly name: "InvalidIntegrationStateFault";
2312
+ readonly $fault: "client";
2313
+ constructor(
2314
+ opts: __ExceptionOptionType<InvalidIntegrationStateFault, __BaseException>
2315
+ );
2316
+ }
2239
2317
  export interface DeleteOptionGroupMessage {
2240
2318
  OptionGroupName: string | undefined;
2241
2319
  }
@@ -2371,54 +2449,3 @@ export interface DBClusterParameterGroupDetails {
2371
2449
  Parameters?: Parameter[];
2372
2450
  Marker?: string;
2373
2451
  }
2374
- export interface DescribeDBClusterParametersMessage {
2375
- DBClusterParameterGroupName: string | undefined;
2376
- Source?: string;
2377
- Filters?: Filter[];
2378
- MaxRecords?: number;
2379
- Marker?: string;
2380
- }
2381
- export interface DBClusterMessage {
2382
- Marker?: string;
2383
- DBClusters?: DBCluster[];
2384
- }
2385
- export interface DescribeDBClustersMessage {
2386
- DBClusterIdentifier?: string;
2387
- Filters?: Filter[];
2388
- MaxRecords?: number;
2389
- Marker?: string;
2390
- IncludeShared?: boolean;
2391
- }
2392
- export interface DescribeDBClusterSnapshotAttributesMessage {
2393
- DBClusterSnapshotIdentifier: string | undefined;
2394
- }
2395
- export interface DBClusterSnapshotAttribute {
2396
- AttributeName?: string;
2397
- AttributeValues?: string[];
2398
- }
2399
- export interface DBClusterSnapshotAttributesResult {
2400
- DBClusterSnapshotIdentifier?: string;
2401
- DBClusterSnapshotAttributes?: DBClusterSnapshotAttribute[];
2402
- }
2403
- export interface DescribeDBClusterSnapshotAttributesResult {
2404
- DBClusterSnapshotAttributesResult?: DBClusterSnapshotAttributesResult;
2405
- }
2406
- export interface DBClusterSnapshotMessage {
2407
- Marker?: string;
2408
- DBClusterSnapshots?: DBClusterSnapshot[];
2409
- }
2410
- export interface DescribeDBClusterSnapshotsMessage {
2411
- DBClusterIdentifier?: string;
2412
- DBClusterSnapshotIdentifier?: string;
2413
- SnapshotType?: string;
2414
- Filters?: Filter[];
2415
- MaxRecords?: number;
2416
- Marker?: string;
2417
- IncludeShared?: boolean;
2418
- IncludePublic?: boolean;
2419
- DbClusterResourceId?: string;
2420
- }
2421
- export interface DBEngineVersionMessage {
2422
- Marker?: string;
2423
- DBEngineVersions?: DBEngineVersion[];
2424
- }
@@ -8,7 +8,8 @@ import {
8
8
  BlueGreenDeployment,
9
9
  Certificate,
10
10
  DBCluster,
11
- DBClusterSnapshotAttributesResult,
11
+ DBClusterSnapshot,
12
+ DBEngineVersion,
12
13
  DBInstance,
13
14
  DBInstanceAutomatedBackup,
14
15
  DBParameterGroup,
@@ -22,6 +23,7 @@ import {
22
23
  ExportTask,
23
24
  Filter,
24
25
  GlobalCluster,
26
+ Integration,
25
27
  OptionGroup,
26
28
  OptionSetting,
27
29
  Parameter,
@@ -34,6 +36,57 @@ import {
34
36
  UserAuthConfig,
35
37
  } from "./models_0";
36
38
  import { RDSServiceException as __BaseException } from "./RDSServiceException";
39
+ export interface DescribeDBClusterParametersMessage {
40
+ DBClusterParameterGroupName: string | undefined;
41
+ Source?: string;
42
+ Filters?: Filter[];
43
+ MaxRecords?: number;
44
+ Marker?: string;
45
+ }
46
+ export interface DBClusterMessage {
47
+ Marker?: string;
48
+ DBClusters?: DBCluster[];
49
+ }
50
+ export interface DescribeDBClustersMessage {
51
+ DBClusterIdentifier?: string;
52
+ Filters?: Filter[];
53
+ MaxRecords?: number;
54
+ Marker?: string;
55
+ IncludeShared?: boolean;
56
+ }
57
+ export interface DescribeDBClusterSnapshotAttributesMessage {
58
+ DBClusterSnapshotIdentifier: string | undefined;
59
+ }
60
+ export interface DBClusterSnapshotAttribute {
61
+ AttributeName?: string;
62
+ AttributeValues?: string[];
63
+ }
64
+ export interface DBClusterSnapshotAttributesResult {
65
+ DBClusterSnapshotIdentifier?: string;
66
+ DBClusterSnapshotAttributes?: DBClusterSnapshotAttribute[];
67
+ }
68
+ export interface DescribeDBClusterSnapshotAttributesResult {
69
+ DBClusterSnapshotAttributesResult?: DBClusterSnapshotAttributesResult;
70
+ }
71
+ export interface DBClusterSnapshotMessage {
72
+ Marker?: string;
73
+ DBClusterSnapshots?: DBClusterSnapshot[];
74
+ }
75
+ export interface DescribeDBClusterSnapshotsMessage {
76
+ DBClusterIdentifier?: string;
77
+ DBClusterSnapshotIdentifier?: string;
78
+ SnapshotType?: string;
79
+ Filters?: Filter[];
80
+ MaxRecords?: number;
81
+ Marker?: string;
82
+ IncludeShared?: boolean;
83
+ IncludePublic?: boolean;
84
+ DbClusterResourceId?: string;
85
+ }
86
+ export interface DBEngineVersionMessage {
87
+ Marker?: string;
88
+ DBEngineVersions?: DBEngineVersion[];
89
+ }
37
90
  export interface DescribeDBEngineVersionsMessage {
38
91
  Engine?: string;
39
92
  EngineVersion?: string;
@@ -359,6 +412,16 @@ export interface GlobalClustersMessage {
359
412
  Marker?: string;
360
413
  GlobalClusters?: GlobalCluster[];
361
414
  }
415
+ export interface DescribeIntegrationsMessage {
416
+ IntegrationIdentifier?: string;
417
+ Filters?: Filter[];
418
+ MaxRecords?: number;
419
+ Marker?: string;
420
+ }
421
+ export interface DescribeIntegrationsResponse {
422
+ Marker?: string;
423
+ Integrations?: Integration[];
424
+ }
362
425
  export interface DescribeOptionGroupOptionsMessage {
363
426
  EngineName: string | undefined;
364
427
  MajorEngineVersion?: string;
@@ -0,0 +1,11 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import {
3
+ DescribeIntegrationsCommandInput,
4
+ DescribeIntegrationsCommandOutput,
5
+ } from "../commands/DescribeIntegrationsCommand";
6
+ import { RDSPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateDescribeIntegrations(
8
+ config: RDSPaginationConfiguration,
9
+ input: DescribeIntegrationsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<DescribeIntegrationsCommandOutput>;
@@ -26,6 +26,7 @@ export * from "./DescribeEventSubscriptionsPaginator";
26
26
  export * from "./DescribeEventsPaginator";
27
27
  export * from "./DescribeExportTasksPaginator";
28
28
  export * from "./DescribeGlobalClustersPaginator";
29
+ export * from "./DescribeIntegrationsPaginator";
29
30
  export * from "./DescribeOptionGroupOptionsPaginator";
30
31
  export * from "./DescribeOptionGroupsPaginator";
31
32
  export * from "./DescribeOrderableDBInstanceOptionsPaginator";
@@ -119,6 +119,10 @@ import {
119
119
  CreateGlobalClusterCommandInput,
120
120
  CreateGlobalClusterCommandOutput,
121
121
  } from "../commands/CreateGlobalClusterCommand";
122
+ import {
123
+ CreateIntegrationCommandInput,
124
+ CreateIntegrationCommandOutput,
125
+ } from "../commands/CreateIntegrationCommand";
122
126
  import {
123
127
  CreateOptionGroupCommandInput,
124
128
  CreateOptionGroupCommandOutput,
@@ -191,6 +195,10 @@ import {
191
195
  DeleteGlobalClusterCommandInput,
192
196
  DeleteGlobalClusterCommandOutput,
193
197
  } from "../commands/DeleteGlobalClusterCommand";
198
+ import {
199
+ DeleteIntegrationCommandInput,
200
+ DeleteIntegrationCommandOutput,
201
+ } from "../commands/DeleteIntegrationCommand";
194
202
  import {
195
203
  DeleteOptionGroupCommandInput,
196
204
  DeleteOptionGroupCommandOutput,
@@ -327,6 +335,10 @@ import {
327
335
  DescribeGlobalClustersCommandInput,
328
336
  DescribeGlobalClustersCommandOutput,
329
337
  } from "../commands/DescribeGlobalClustersCommand";
338
+ import {
339
+ DescribeIntegrationsCommandInput,
340
+ DescribeIntegrationsCommandOutput,
341
+ } from "../commands/DescribeIntegrationsCommand";
330
342
  import {
331
343
  DescribeOptionGroupOptionsCommandInput,
332
344
  DescribeOptionGroupOptionsCommandOutput,
@@ -695,6 +707,10 @@ export declare const se_CreateGlobalClusterCommand: (
695
707
  input: CreateGlobalClusterCommandInput,
696
708
  context: __SerdeContext
697
709
  ) => Promise<__HttpRequest>;
710
+ export declare const se_CreateIntegrationCommand: (
711
+ input: CreateIntegrationCommandInput,
712
+ context: __SerdeContext
713
+ ) => Promise<__HttpRequest>;
698
714
  export declare const se_CreateOptionGroupCommand: (
699
715
  input: CreateOptionGroupCommandInput,
700
716
  context: __SerdeContext
@@ -767,6 +783,10 @@ export declare const se_DeleteGlobalClusterCommand: (
767
783
  input: DeleteGlobalClusterCommandInput,
768
784
  context: __SerdeContext
769
785
  ) => Promise<__HttpRequest>;
786
+ export declare const se_DeleteIntegrationCommand: (
787
+ input: DeleteIntegrationCommandInput,
788
+ context: __SerdeContext
789
+ ) => Promise<__HttpRequest>;
770
790
  export declare const se_DeleteOptionGroupCommand: (
771
791
  input: DeleteOptionGroupCommandInput,
772
792
  context: __SerdeContext
@@ -903,6 +923,10 @@ export declare const se_DescribeGlobalClustersCommand: (
903
923
  input: DescribeGlobalClustersCommandInput,
904
924
  context: __SerdeContext
905
925
  ) => Promise<__HttpRequest>;
926
+ export declare const se_DescribeIntegrationsCommand: (
927
+ input: DescribeIntegrationsCommandInput,
928
+ context: __SerdeContext
929
+ ) => Promise<__HttpRequest>;
906
930
  export declare const se_DescribeOptionGroupOptionsCommand: (
907
931
  input: DescribeOptionGroupOptionsCommandInput,
908
932
  context: __SerdeContext
@@ -1271,6 +1295,10 @@ export declare const de_CreateGlobalClusterCommand: (
1271
1295
  output: __HttpResponse,
1272
1296
  context: __SerdeContext
1273
1297
  ) => Promise<CreateGlobalClusterCommandOutput>;
1298
+ export declare const de_CreateIntegrationCommand: (
1299
+ output: __HttpResponse,
1300
+ context: __SerdeContext
1301
+ ) => Promise<CreateIntegrationCommandOutput>;
1274
1302
  export declare const de_CreateOptionGroupCommand: (
1275
1303
  output: __HttpResponse,
1276
1304
  context: __SerdeContext
@@ -1343,6 +1371,10 @@ export declare const de_DeleteGlobalClusterCommand: (
1343
1371
  output: __HttpResponse,
1344
1372
  context: __SerdeContext
1345
1373
  ) => Promise<DeleteGlobalClusterCommandOutput>;
1374
+ export declare const de_DeleteIntegrationCommand: (
1375
+ output: __HttpResponse,
1376
+ context: __SerdeContext
1377
+ ) => Promise<DeleteIntegrationCommandOutput>;
1346
1378
  export declare const de_DeleteOptionGroupCommand: (
1347
1379
  output: __HttpResponse,
1348
1380
  context: __SerdeContext
@@ -1479,6 +1511,10 @@ export declare const de_DescribeGlobalClustersCommand: (
1479
1511
  output: __HttpResponse,
1480
1512
  context: __SerdeContext
1481
1513
  ) => Promise<DescribeGlobalClustersCommandOutput>;
1514
+ export declare const de_DescribeIntegrationsCommand: (
1515
+ output: __HttpResponse,
1516
+ context: __SerdeContext
1517
+ ) => Promise<DescribeIntegrationsCommandOutput>;
1482
1518
  export declare const de_DescribeOptionGroupOptionsCommand: (
1483
1519
  output: __HttpResponse,
1484
1520
  context: __SerdeContext
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.438.0",
4
+ "version": "3.439.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",