@aws-sdk/client-rds-data 3.477.0 → 3.479.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.
@@ -23,11 +23,42 @@ export declare const TypeHint: {
23
23
  readonly UUID: "UUID";
24
24
  };
25
25
  export type TypeHint = (typeof TypeHint)[keyof typeof TypeHint];
26
+ export declare class DatabaseErrorException extends __BaseException {
27
+ readonly name: "DatabaseErrorException";
28
+ readonly $fault: "client";
29
+ constructor(
30
+ opts: __ExceptionOptionType<DatabaseErrorException, __BaseException>
31
+ );
32
+ }
33
+ export declare class DatabaseNotFoundException extends __BaseException {
34
+ readonly name: "DatabaseNotFoundException";
35
+ readonly $fault: "client";
36
+ constructor(
37
+ opts: __ExceptionOptionType<DatabaseNotFoundException, __BaseException>
38
+ );
39
+ }
40
+ export declare class DatabaseUnavailableException extends __BaseException {
41
+ readonly name: "DatabaseUnavailableException";
42
+ readonly $fault: "server";
43
+ constructor(
44
+ opts: __ExceptionOptionType<DatabaseUnavailableException, __BaseException>
45
+ );
46
+ }
26
47
  export declare class ForbiddenException extends __BaseException {
27
48
  readonly name: "ForbiddenException";
28
49
  readonly $fault: "client";
29
50
  constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
30
51
  }
52
+ export declare class HttpEndpointNotEnabledException extends __BaseException {
53
+ readonly name: "HttpEndpointNotEnabledException";
54
+ readonly $fault: "client";
55
+ constructor(
56
+ opts: __ExceptionOptionType<
57
+ HttpEndpointNotEnabledException,
58
+ __BaseException
59
+ >
60
+ );
61
+ }
31
62
  export declare class InternalServerErrorException extends __BaseException {
32
63
  readonly name: "InternalServerErrorException";
33
64
  readonly $fault: "server";
@@ -35,6 +66,20 @@ export declare class InternalServerErrorException extends __BaseException {
35
66
  opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
36
67
  );
37
68
  }
69
+ export declare class InvalidSecretException extends __BaseException {
70
+ readonly name: "InvalidSecretException";
71
+ readonly $fault: "client";
72
+ constructor(
73
+ opts: __ExceptionOptionType<InvalidSecretException, __BaseException>
74
+ );
75
+ }
76
+ export declare class SecretsErrorException extends __BaseException {
77
+ readonly name: "SecretsErrorException";
78
+ readonly $fault: "client";
79
+ constructor(
80
+ opts: __ExceptionOptionType<SecretsErrorException, __BaseException>
81
+ );
82
+ }
38
83
  export declare class ServiceUnavailableError extends __BaseException {
39
84
  readonly name: "ServiceUnavailableError";
40
85
  readonly $fault: "server";
@@ -50,6 +95,13 @@ export declare class StatementTimeoutException extends __BaseException {
50
95
  opts: __ExceptionOptionType<StatementTimeoutException, __BaseException>
51
96
  );
52
97
  }
98
+ export declare class TransactionNotFoundException extends __BaseException {
99
+ readonly name: "TransactionNotFoundException";
100
+ readonly $fault: "client";
101
+ constructor(
102
+ opts: __ExceptionOptionType<TransactionNotFoundException, __BaseException>
103
+ );
104
+ }
53
105
  export interface BeginTransactionRequest {
54
106
  resourceArn: string | undefined;
55
107
  secretArn: string | undefined;
@@ -121,6 +173,13 @@ export interface ResultSetOptions {
121
173
  decimalReturnType?: DecimalReturnType;
122
174
  longReturnType?: LongReturnType;
123
175
  }
176
+ export declare class UnsupportedResultException extends __BaseException {
177
+ readonly name: "UnsupportedResultException";
178
+ readonly $fault: "client";
179
+ constructor(
180
+ opts: __ExceptionOptionType<UnsupportedResultException, __BaseException>
181
+ );
182
+ }
124
183
  export interface RollbackTransactionRequest {
125
184
  resourceArn: string | undefined;
126
185
  secretArn: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-rds-data",
3
3
  "description": "AWS SDK for JavaScript Rds Data Client for Node.js, Browser and React Native",
4
- "version": "3.477.0",
4
+ "version": "3.479.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",
@@ -20,17 +20,17 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.477.0",
23
+ "@aws-sdk/client-sts": "3.478.0",
24
24
  "@aws-sdk/core": "3.477.0",
25
- "@aws-sdk/credential-provider-node": "3.477.0",
25
+ "@aws-sdk/credential-provider-node": "3.478.0",
26
26
  "@aws-sdk/middleware-host-header": "3.468.0",
27
27
  "@aws-sdk/middleware-logger": "3.468.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.468.0",
29
29
  "@aws-sdk/middleware-signing": "3.468.0",
30
- "@aws-sdk/middleware-user-agent": "3.470.0",
30
+ "@aws-sdk/middleware-user-agent": "3.478.0",
31
31
  "@aws-sdk/region-config-resolver": "3.470.0",
32
32
  "@aws-sdk/types": "3.468.0",
33
- "@aws-sdk/util-endpoints": "3.470.0",
33
+ "@aws-sdk/util-endpoints": "3.478.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.468.0",
35
35
  "@aws-sdk/util-user-agent-node": "3.470.0",
36
36
  "@smithy/config-resolver": "^2.0.21",