@aws-sdk/client-bedrock-data-automation-runtime 3.934.0 → 3.936.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 -15
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +15 -0
- package/dist-es/models/errors.js +73 -0
- package/dist-es/models/models_0.js +1 -88
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +39 -0
- package/dist-types/models/errors.d.ts +74 -0
- package/dist-types/models/models_0.d.ts +1 -113
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +21 -0
- package/dist-types/ts3.4/models/errors.d.ts +44 -0
- package/dist-types/ts3.4/models/models_0.d.ts +5 -65
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-cjs/index.js
CHANGED
|
@@ -129,13 +129,6 @@ let AccessDeniedException$1 = class AccessDeniedException extends BedrockDataAut
|
|
|
129
129
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
130
130
|
}
|
|
131
131
|
};
|
|
132
|
-
const AutomationJobStatus = {
|
|
133
|
-
CLIENT_ERROR: "ClientError",
|
|
134
|
-
CREATED: "Created",
|
|
135
|
-
IN_PROGRESS: "InProgress",
|
|
136
|
-
SERVICE_ERROR: "ServiceError",
|
|
137
|
-
SUCCESS: "Success",
|
|
138
|
-
};
|
|
139
132
|
let InternalServerException$1 = class InternalServerException extends BedrockDataAutomationRuntimeServiceException$1 {
|
|
140
133
|
name = "InternalServerException";
|
|
141
134
|
$fault = "server";
|
|
@@ -184,14 +177,6 @@ let ValidationException$1 = class ValidationException extends BedrockDataAutomat
|
|
|
184
177
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
185
178
|
}
|
|
186
179
|
};
|
|
187
|
-
const BlueprintStage = {
|
|
188
|
-
DEVELOPMENT: "DEVELOPMENT",
|
|
189
|
-
LIVE: "LIVE",
|
|
190
|
-
};
|
|
191
|
-
const DataAutomationStage = {
|
|
192
|
-
DEVELOPMENT: "DEVELOPMENT",
|
|
193
|
-
LIVE: "LIVE",
|
|
194
|
-
};
|
|
195
180
|
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends BedrockDataAutomationRuntimeServiceException$1 {
|
|
196
181
|
name = "ServiceQuotaExceededException";
|
|
197
182
|
$fault = "client";
|
|
@@ -534,6 +519,22 @@ class BedrockDataAutomationRuntime extends BedrockDataAutomationRuntimeClient {
|
|
|
534
519
|
}
|
|
535
520
|
smithyClient.createAggregatedClient(commands, BedrockDataAutomationRuntime);
|
|
536
521
|
|
|
522
|
+
const AutomationJobStatus = {
|
|
523
|
+
CLIENT_ERROR: "ClientError",
|
|
524
|
+
CREATED: "Created",
|
|
525
|
+
IN_PROGRESS: "InProgress",
|
|
526
|
+
SERVICE_ERROR: "ServiceError",
|
|
527
|
+
SUCCESS: "Success",
|
|
528
|
+
};
|
|
529
|
+
const BlueprintStage = {
|
|
530
|
+
DEVELOPMENT: "DEVELOPMENT",
|
|
531
|
+
LIVE: "LIVE",
|
|
532
|
+
};
|
|
533
|
+
const DataAutomationStage = {
|
|
534
|
+
DEVELOPMENT: "DEVELOPMENT",
|
|
535
|
+
LIVE: "LIVE",
|
|
536
|
+
};
|
|
537
|
+
|
|
537
538
|
Object.defineProperty(exports, "$Command", {
|
|
538
539
|
enumerable: true,
|
|
539
540
|
get: function () { return smithyClient.Command; }
|
package/dist-es/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export * from "./BedrockDataAutomationRuntimeClient";
|
|
2
2
|
export * from "./BedrockDataAutomationRuntime";
|
|
3
3
|
export * from "./commands";
|
|
4
|
-
export * from "./models";
|
|
4
|
+
export * from "./models/enums";
|
|
5
|
+
export * from "./models/errors";
|
|
5
6
|
export { BedrockDataAutomationRuntimeServiceException } from "./models/BedrockDataAutomationRuntimeServiceException";
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export const AutomationJobStatus = {
|
|
2
|
+
CLIENT_ERROR: "ClientError",
|
|
3
|
+
CREATED: "Created",
|
|
4
|
+
IN_PROGRESS: "InProgress",
|
|
5
|
+
SERVICE_ERROR: "ServiceError",
|
|
6
|
+
SUCCESS: "Success",
|
|
7
|
+
};
|
|
8
|
+
export const BlueprintStage = {
|
|
9
|
+
DEVELOPMENT: "DEVELOPMENT",
|
|
10
|
+
LIVE: "LIVE",
|
|
11
|
+
};
|
|
12
|
+
export const DataAutomationStage = {
|
|
13
|
+
DEVELOPMENT: "DEVELOPMENT",
|
|
14
|
+
LIVE: "LIVE",
|
|
15
|
+
};
|
|
@@ -0,0 +1,73 @@
|
|
|
1
|
+
import { BedrockDataAutomationRuntimeServiceException as __BaseException } from "./BedrockDataAutomationRuntimeServiceException";
|
|
2
|
+
export class AccessDeniedException extends __BaseException {
|
|
3
|
+
name = "AccessDeniedException";
|
|
4
|
+
$fault = "client";
|
|
5
|
+
constructor(opts) {
|
|
6
|
+
super({
|
|
7
|
+
name: "AccessDeniedException",
|
|
8
|
+
$fault: "client",
|
|
9
|
+
...opts,
|
|
10
|
+
});
|
|
11
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
export class InternalServerException extends __BaseException {
|
|
15
|
+
name = "InternalServerException";
|
|
16
|
+
$fault = "server";
|
|
17
|
+
constructor(opts) {
|
|
18
|
+
super({
|
|
19
|
+
name: "InternalServerException",
|
|
20
|
+
$fault: "server",
|
|
21
|
+
...opts,
|
|
22
|
+
});
|
|
23
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
27
|
+
name = "ResourceNotFoundException";
|
|
28
|
+
$fault = "client";
|
|
29
|
+
constructor(opts) {
|
|
30
|
+
super({
|
|
31
|
+
name: "ResourceNotFoundException",
|
|
32
|
+
$fault: "client",
|
|
33
|
+
...opts,
|
|
34
|
+
});
|
|
35
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
export class ThrottlingException extends __BaseException {
|
|
39
|
+
name = "ThrottlingException";
|
|
40
|
+
$fault = "client";
|
|
41
|
+
constructor(opts) {
|
|
42
|
+
super({
|
|
43
|
+
name: "ThrottlingException",
|
|
44
|
+
$fault: "client",
|
|
45
|
+
...opts,
|
|
46
|
+
});
|
|
47
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
export class ValidationException extends __BaseException {
|
|
51
|
+
name = "ValidationException";
|
|
52
|
+
$fault = "client";
|
|
53
|
+
constructor(opts) {
|
|
54
|
+
super({
|
|
55
|
+
name: "ValidationException",
|
|
56
|
+
$fault: "client",
|
|
57
|
+
...opts,
|
|
58
|
+
});
|
|
59
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
63
|
+
name = "ServiceQuotaExceededException";
|
|
64
|
+
$fault = "client";
|
|
65
|
+
constructor(opts) {
|
|
66
|
+
super({
|
|
67
|
+
name: "ServiceQuotaExceededException",
|
|
68
|
+
$fault: "client",
|
|
69
|
+
...opts,
|
|
70
|
+
});
|
|
71
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
@@ -1,88 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
constructor(opts) {
|
|
6
|
-
super({
|
|
7
|
-
name: "AccessDeniedException",
|
|
8
|
-
$fault: "client",
|
|
9
|
-
...opts,
|
|
10
|
-
});
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
export const AutomationJobStatus = {
|
|
15
|
-
CLIENT_ERROR: "ClientError",
|
|
16
|
-
CREATED: "Created",
|
|
17
|
-
IN_PROGRESS: "InProgress",
|
|
18
|
-
SERVICE_ERROR: "ServiceError",
|
|
19
|
-
SUCCESS: "Success",
|
|
20
|
-
};
|
|
21
|
-
export class InternalServerException extends __BaseException {
|
|
22
|
-
name = "InternalServerException";
|
|
23
|
-
$fault = "server";
|
|
24
|
-
constructor(opts) {
|
|
25
|
-
super({
|
|
26
|
-
name: "InternalServerException",
|
|
27
|
-
$fault: "server",
|
|
28
|
-
...opts,
|
|
29
|
-
});
|
|
30
|
-
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
34
|
-
name = "ResourceNotFoundException";
|
|
35
|
-
$fault = "client";
|
|
36
|
-
constructor(opts) {
|
|
37
|
-
super({
|
|
38
|
-
name: "ResourceNotFoundException",
|
|
39
|
-
$fault: "client",
|
|
40
|
-
...opts,
|
|
41
|
-
});
|
|
42
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
export class ThrottlingException extends __BaseException {
|
|
46
|
-
name = "ThrottlingException";
|
|
47
|
-
$fault = "client";
|
|
48
|
-
constructor(opts) {
|
|
49
|
-
super({
|
|
50
|
-
name: "ThrottlingException",
|
|
51
|
-
$fault: "client",
|
|
52
|
-
...opts,
|
|
53
|
-
});
|
|
54
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
export class ValidationException extends __BaseException {
|
|
58
|
-
name = "ValidationException";
|
|
59
|
-
$fault = "client";
|
|
60
|
-
constructor(opts) {
|
|
61
|
-
super({
|
|
62
|
-
name: "ValidationException",
|
|
63
|
-
$fault: "client",
|
|
64
|
-
...opts,
|
|
65
|
-
});
|
|
66
|
-
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
export const BlueprintStage = {
|
|
70
|
-
DEVELOPMENT: "DEVELOPMENT",
|
|
71
|
-
LIVE: "LIVE",
|
|
72
|
-
};
|
|
73
|
-
export const DataAutomationStage = {
|
|
74
|
-
DEVELOPMENT: "DEVELOPMENT",
|
|
75
|
-
LIVE: "LIVE",
|
|
76
|
-
};
|
|
77
|
-
export class ServiceQuotaExceededException extends __BaseException {
|
|
78
|
-
name = "ServiceQuotaExceededException";
|
|
79
|
-
$fault = "client";
|
|
80
|
-
constructor(opts) {
|
|
81
|
-
super({
|
|
82
|
-
name: "ServiceQuotaExceededException",
|
|
83
|
-
$fault: "client",
|
|
84
|
-
...opts,
|
|
85
|
-
});
|
|
86
|
-
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
87
|
-
}
|
|
88
|
-
}
|
|
1
|
+
export {};
|
|
@@ -74,7 +74,7 @@ const _ve = "version";
|
|
|
74
74
|
const n0 = "com.amazonaws.bedrockdataautomationruntime";
|
|
75
75
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
76
76
|
import { BedrockDataAutomationRuntimeServiceException as __BedrockDataAutomationRuntimeServiceException } from "../models/BedrockDataAutomationRuntimeServiceException";
|
|
77
|
-
import { AccessDeniedException as __AccessDeniedException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/
|
|
77
|
+
import { AccessDeniedException as __AccessDeniedException, InternalServerException as __InternalServerException, ResourceNotFoundException as __ResourceNotFoundException, ServiceQuotaExceededException as __ServiceQuotaExceededException, ThrottlingException as __ThrottlingException, ValidationException as __ValidationException, } from "../models/errors";
|
|
78
78
|
export var AccessDeniedException = [
|
|
79
79
|
-3,
|
|
80
80
|
n0,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -9,5 +9,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
9
9
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
10
|
export type { BedrockDataAutomationRuntimeExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
12
|
-
export * from "./models";
|
|
12
|
+
export * from "./models/enums";
|
|
13
|
+
export * from "./models/errors";
|
|
14
|
+
export type * from "./models/models_0";
|
|
13
15
|
export { BedrockDataAutomationRuntimeServiceException } from "./models/BedrockDataAutomationRuntimeServiceException";
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const AutomationJobStatus: {
|
|
6
|
+
readonly CLIENT_ERROR: "ClientError";
|
|
7
|
+
readonly CREATED: "Created";
|
|
8
|
+
readonly IN_PROGRESS: "InProgress";
|
|
9
|
+
readonly SERVICE_ERROR: "ServiceError";
|
|
10
|
+
readonly SUCCESS: "Success";
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
export type AutomationJobStatus = (typeof AutomationJobStatus)[keyof typeof AutomationJobStatus];
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
* @enum
|
|
19
|
+
*/
|
|
20
|
+
export declare const BlueprintStage: {
|
|
21
|
+
readonly DEVELOPMENT: "DEVELOPMENT";
|
|
22
|
+
readonly LIVE: "LIVE";
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
export type BlueprintStage = (typeof BlueprintStage)[keyof typeof BlueprintStage];
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
* @enum
|
|
31
|
+
*/
|
|
32
|
+
export declare const DataAutomationStage: {
|
|
33
|
+
readonly DEVELOPMENT: "DEVELOPMENT";
|
|
34
|
+
readonly LIVE: "LIVE";
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* @public
|
|
38
|
+
*/
|
|
39
|
+
export type DataAutomationStage = (typeof DataAutomationStage)[keyof typeof DataAutomationStage];
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { BedrockDataAutomationRuntimeServiceException as __BaseException } from "./BedrockDataAutomationRuntimeServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* This exception will be thrown when customer does not have access to API.
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* This exception is for any internal un-expected service errors.
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export declare class InternalServerException extends __BaseException {
|
|
20
|
+
readonly name: "InternalServerException";
|
|
21
|
+
readonly $fault: "server";
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* This exception will be thrown when resource provided from customer not found.
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
32
|
+
readonly name: "ResourceNotFoundException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* This exception will be thrown when customer reached API TPS limit.
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export declare class ThrottlingException extends __BaseException {
|
|
44
|
+
readonly name: "ThrottlingException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
/**
|
|
47
|
+
* @internal
|
|
48
|
+
*/
|
|
49
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* This exception will be thrown when customer provided invalid parameters.
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export declare class ValidationException extends __BaseException {
|
|
56
|
+
readonly name: "ValidationException";
|
|
57
|
+
readonly $fault: "client";
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
61
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* This exception will be thrown when service quota is exceeded.
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
68
|
+
readonly name: "ServiceQuotaExceededException";
|
|
69
|
+
readonly $fault: "client";
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
73
|
+
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
74
|
+
}
|
|
@@ -1,17 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { BedrockDataAutomationRuntimeServiceException as __BaseException } from "./BedrockDataAutomationRuntimeServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* This exception will be thrown when customer does not have access to API.
|
|
5
|
-
* @public
|
|
6
|
-
*/
|
|
7
|
-
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
-
readonly name: "AccessDeniedException";
|
|
9
|
-
readonly $fault: "client";
|
|
10
|
-
/**
|
|
11
|
-
* @internal
|
|
12
|
-
*/
|
|
13
|
-
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
-
}
|
|
1
|
+
import { AutomationJobStatus, BlueprintStage, DataAutomationStage } from "./enums";
|
|
15
2
|
/**
|
|
16
3
|
* Structure for request of GetDataAutomationStatus API.
|
|
17
4
|
* @public
|
|
@@ -34,21 +21,6 @@ export interface OutputConfiguration {
|
|
|
34
21
|
*/
|
|
35
22
|
s3Uri: string | undefined;
|
|
36
23
|
}
|
|
37
|
-
/**
|
|
38
|
-
* @public
|
|
39
|
-
* @enum
|
|
40
|
-
*/
|
|
41
|
-
export declare const AutomationJobStatus: {
|
|
42
|
-
readonly CLIENT_ERROR: "ClientError";
|
|
43
|
-
readonly CREATED: "Created";
|
|
44
|
-
readonly IN_PROGRESS: "InProgress";
|
|
45
|
-
readonly SERVICE_ERROR: "ServiceError";
|
|
46
|
-
readonly SUCCESS: "Success";
|
|
47
|
-
};
|
|
48
|
-
/**
|
|
49
|
-
* @public
|
|
50
|
-
*/
|
|
51
|
-
export type AutomationJobStatus = (typeof AutomationJobStatus)[keyof typeof AutomationJobStatus];
|
|
52
24
|
/**
|
|
53
25
|
* Response of GetDataAutomationStatus API.
|
|
54
26
|
* @public
|
|
@@ -75,66 +47,6 @@ export interface GetDataAutomationStatusResponse {
|
|
|
75
47
|
*/
|
|
76
48
|
outputConfiguration?: OutputConfiguration | undefined;
|
|
77
49
|
}
|
|
78
|
-
/**
|
|
79
|
-
* This exception is for any internal un-expected service errors.
|
|
80
|
-
* @public
|
|
81
|
-
*/
|
|
82
|
-
export declare class InternalServerException extends __BaseException {
|
|
83
|
-
readonly name: "InternalServerException";
|
|
84
|
-
readonly $fault: "server";
|
|
85
|
-
/**
|
|
86
|
-
* @internal
|
|
87
|
-
*/
|
|
88
|
-
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
89
|
-
}
|
|
90
|
-
/**
|
|
91
|
-
* This exception will be thrown when resource provided from customer not found.
|
|
92
|
-
* @public
|
|
93
|
-
*/
|
|
94
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
95
|
-
readonly name: "ResourceNotFoundException";
|
|
96
|
-
readonly $fault: "client";
|
|
97
|
-
/**
|
|
98
|
-
* @internal
|
|
99
|
-
*/
|
|
100
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
101
|
-
}
|
|
102
|
-
/**
|
|
103
|
-
* This exception will be thrown when customer reached API TPS limit.
|
|
104
|
-
* @public
|
|
105
|
-
*/
|
|
106
|
-
export declare class ThrottlingException extends __BaseException {
|
|
107
|
-
readonly name: "ThrottlingException";
|
|
108
|
-
readonly $fault: "client";
|
|
109
|
-
/**
|
|
110
|
-
* @internal
|
|
111
|
-
*/
|
|
112
|
-
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
113
|
-
}
|
|
114
|
-
/**
|
|
115
|
-
* This exception will be thrown when customer provided invalid parameters.
|
|
116
|
-
* @public
|
|
117
|
-
*/
|
|
118
|
-
export declare class ValidationException extends __BaseException {
|
|
119
|
-
readonly name: "ValidationException";
|
|
120
|
-
readonly $fault: "client";
|
|
121
|
-
/**
|
|
122
|
-
* @internal
|
|
123
|
-
*/
|
|
124
|
-
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
125
|
-
}
|
|
126
|
-
/**
|
|
127
|
-
* @public
|
|
128
|
-
* @enum
|
|
129
|
-
*/
|
|
130
|
-
export declare const BlueprintStage: {
|
|
131
|
-
readonly DEVELOPMENT: "DEVELOPMENT";
|
|
132
|
-
readonly LIVE: "LIVE";
|
|
133
|
-
};
|
|
134
|
-
/**
|
|
135
|
-
* @public
|
|
136
|
-
*/
|
|
137
|
-
export type BlueprintStage = (typeof BlueprintStage)[keyof typeof BlueprintStage];
|
|
138
50
|
/**
|
|
139
51
|
* Structure for single blueprint entity.
|
|
140
52
|
* @public
|
|
@@ -156,18 +68,6 @@ export interface Blueprint {
|
|
|
156
68
|
*/
|
|
157
69
|
stage?: BlueprintStage | undefined;
|
|
158
70
|
}
|
|
159
|
-
/**
|
|
160
|
-
* @public
|
|
161
|
-
* @enum
|
|
162
|
-
*/
|
|
163
|
-
export declare const DataAutomationStage: {
|
|
164
|
-
readonly DEVELOPMENT: "DEVELOPMENT";
|
|
165
|
-
readonly LIVE: "LIVE";
|
|
166
|
-
};
|
|
167
|
-
/**
|
|
168
|
-
* @public
|
|
169
|
-
*/
|
|
170
|
-
export type DataAutomationStage = (typeof DataAutomationStage)[keyof typeof DataAutomationStage];
|
|
171
71
|
/**
|
|
172
72
|
* Data automation configuration.
|
|
173
73
|
* @public
|
|
@@ -387,18 +287,6 @@ export interface InvokeDataAutomationAsyncResponse {
|
|
|
387
287
|
*/
|
|
388
288
|
invocationArn: string | undefined;
|
|
389
289
|
}
|
|
390
|
-
/**
|
|
391
|
-
* This exception will be thrown when service quota is exceeded.
|
|
392
|
-
* @public
|
|
393
|
-
*/
|
|
394
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
395
|
-
readonly name: "ServiceQuotaExceededException";
|
|
396
|
-
readonly $fault: "client";
|
|
397
|
-
/**
|
|
398
|
-
* @internal
|
|
399
|
-
*/
|
|
400
|
-
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
401
|
-
}
|
|
402
290
|
/**
|
|
403
291
|
* @public
|
|
404
292
|
*/
|
|
@@ -4,5 +4,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
4
4
|
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
5
|
export { BedrockDataAutomationRuntimeExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
|
-
export * from "./models";
|
|
7
|
+
export * from "./models/enums";
|
|
8
|
+
export * from "./models/errors";
|
|
9
|
+
export * from "./models/models_0";
|
|
8
10
|
export { BedrockDataAutomationRuntimeServiceException } from "./models/BedrockDataAutomationRuntimeServiceException";
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
export declare const AutomationJobStatus: {
|
|
2
|
+
readonly CLIENT_ERROR: "ClientError";
|
|
3
|
+
readonly CREATED: "Created";
|
|
4
|
+
readonly IN_PROGRESS: "InProgress";
|
|
5
|
+
readonly SERVICE_ERROR: "ServiceError";
|
|
6
|
+
readonly SUCCESS: "Success";
|
|
7
|
+
};
|
|
8
|
+
export type AutomationJobStatus =
|
|
9
|
+
(typeof AutomationJobStatus)[keyof typeof AutomationJobStatus];
|
|
10
|
+
export declare const BlueprintStage: {
|
|
11
|
+
readonly DEVELOPMENT: "DEVELOPMENT";
|
|
12
|
+
readonly LIVE: "LIVE";
|
|
13
|
+
};
|
|
14
|
+
export type BlueprintStage =
|
|
15
|
+
(typeof BlueprintStage)[keyof typeof BlueprintStage];
|
|
16
|
+
export declare const DataAutomationStage: {
|
|
17
|
+
readonly DEVELOPMENT: "DEVELOPMENT";
|
|
18
|
+
readonly LIVE: "LIVE";
|
|
19
|
+
};
|
|
20
|
+
export type DataAutomationStage =
|
|
21
|
+
(typeof DataAutomationStage)[keyof typeof DataAutomationStage];
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { BedrockDataAutomationRuntimeServiceException as __BaseException } from "./BedrockDataAutomationRuntimeServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
constructor(
|
|
7
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
+
);
|
|
9
|
+
}
|
|
10
|
+
export declare class InternalServerException extends __BaseException {
|
|
11
|
+
readonly name: "InternalServerException";
|
|
12
|
+
readonly $fault: "server";
|
|
13
|
+
constructor(
|
|
14
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
15
|
+
);
|
|
16
|
+
}
|
|
17
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
18
|
+
readonly name: "ResourceNotFoundException";
|
|
19
|
+
readonly $fault: "client";
|
|
20
|
+
constructor(
|
|
21
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
22
|
+
);
|
|
23
|
+
}
|
|
24
|
+
export declare class ThrottlingException extends __BaseException {
|
|
25
|
+
readonly name: "ThrottlingException";
|
|
26
|
+
readonly $fault: "client";
|
|
27
|
+
constructor(
|
|
28
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
29
|
+
);
|
|
30
|
+
}
|
|
31
|
+
export declare class ValidationException extends __BaseException {
|
|
32
|
+
readonly name: "ValidationException";
|
|
33
|
+
readonly $fault: "client";
|
|
34
|
+
constructor(
|
|
35
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
36
|
+
);
|
|
37
|
+
}
|
|
38
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
39
|
+
readonly name: "ServiceQuotaExceededException";
|
|
40
|
+
readonly $fault: "client";
|
|
41
|
+
constructor(
|
|
42
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
43
|
+
);
|
|
44
|
+
}
|
|
@@ -1,78 +1,25 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
constructor(
|
|
7
|
-
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
8
|
-
);
|
|
9
|
-
}
|
|
1
|
+
import {
|
|
2
|
+
AutomationJobStatus,
|
|
3
|
+
BlueprintStage,
|
|
4
|
+
DataAutomationStage,
|
|
5
|
+
} from "./enums";
|
|
10
6
|
export interface GetDataAutomationStatusRequest {
|
|
11
7
|
invocationArn: string | undefined;
|
|
12
8
|
}
|
|
13
9
|
export interface OutputConfiguration {
|
|
14
10
|
s3Uri: string | undefined;
|
|
15
11
|
}
|
|
16
|
-
export declare const AutomationJobStatus: {
|
|
17
|
-
readonly CLIENT_ERROR: "ClientError";
|
|
18
|
-
readonly CREATED: "Created";
|
|
19
|
-
readonly IN_PROGRESS: "InProgress";
|
|
20
|
-
readonly SERVICE_ERROR: "ServiceError";
|
|
21
|
-
readonly SUCCESS: "Success";
|
|
22
|
-
};
|
|
23
|
-
export type AutomationJobStatus =
|
|
24
|
-
(typeof AutomationJobStatus)[keyof typeof AutomationJobStatus];
|
|
25
12
|
export interface GetDataAutomationStatusResponse {
|
|
26
13
|
status?: AutomationJobStatus | undefined;
|
|
27
14
|
errorType?: string | undefined;
|
|
28
15
|
errorMessage?: string | undefined;
|
|
29
16
|
outputConfiguration?: OutputConfiguration | undefined;
|
|
30
17
|
}
|
|
31
|
-
export declare class InternalServerException extends __BaseException {
|
|
32
|
-
readonly name: "InternalServerException";
|
|
33
|
-
readonly $fault: "server";
|
|
34
|
-
constructor(
|
|
35
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
36
|
-
);
|
|
37
|
-
}
|
|
38
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
39
|
-
readonly name: "ResourceNotFoundException";
|
|
40
|
-
readonly $fault: "client";
|
|
41
|
-
constructor(
|
|
42
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
43
|
-
);
|
|
44
|
-
}
|
|
45
|
-
export declare class ThrottlingException extends __BaseException {
|
|
46
|
-
readonly name: "ThrottlingException";
|
|
47
|
-
readonly $fault: "client";
|
|
48
|
-
constructor(
|
|
49
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
50
|
-
);
|
|
51
|
-
}
|
|
52
|
-
export declare class ValidationException extends __BaseException {
|
|
53
|
-
readonly name: "ValidationException";
|
|
54
|
-
readonly $fault: "client";
|
|
55
|
-
constructor(
|
|
56
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
57
|
-
);
|
|
58
|
-
}
|
|
59
|
-
export declare const BlueprintStage: {
|
|
60
|
-
readonly DEVELOPMENT: "DEVELOPMENT";
|
|
61
|
-
readonly LIVE: "LIVE";
|
|
62
|
-
};
|
|
63
|
-
export type BlueprintStage =
|
|
64
|
-
(typeof BlueprintStage)[keyof typeof BlueprintStage];
|
|
65
18
|
export interface Blueprint {
|
|
66
19
|
blueprintArn: string | undefined;
|
|
67
20
|
version?: string | undefined;
|
|
68
21
|
stage?: BlueprintStage | undefined;
|
|
69
22
|
}
|
|
70
|
-
export declare const DataAutomationStage: {
|
|
71
|
-
readonly DEVELOPMENT: "DEVELOPMENT";
|
|
72
|
-
readonly LIVE: "LIVE";
|
|
73
|
-
};
|
|
74
|
-
export type DataAutomationStage =
|
|
75
|
-
(typeof DataAutomationStage)[keyof typeof DataAutomationStage];
|
|
76
23
|
export interface DataAutomationConfiguration {
|
|
77
24
|
dataAutomationProjectArn: string | undefined;
|
|
78
25
|
stage?: DataAutomationStage | undefined;
|
|
@@ -136,13 +83,6 @@ export interface InvokeDataAutomationAsyncRequest {
|
|
|
136
83
|
export interface InvokeDataAutomationAsyncResponse {
|
|
137
84
|
invocationArn: string | undefined;
|
|
138
85
|
}
|
|
139
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
140
|
-
readonly name: "ServiceQuotaExceededException";
|
|
141
|
-
readonly $fault: "client";
|
|
142
|
-
constructor(
|
|
143
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
144
|
-
);
|
|
145
|
-
}
|
|
146
86
|
export interface ListTagsForResourceRequest {
|
|
147
87
|
resourceARN: string | undefined;
|
|
148
88
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-bedrock-data-automation-runtime",
|
|
3
3
|
"description": "AWS SDK for JavaScript Bedrock Data Automation Runtime Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.936.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-bedrock-data-automation-runtime",
|
|
@@ -20,38 +20,38 @@
|
|
|
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-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|