@aws-sdk/client-bedrock-data-automation-runtime 3.1067.0 → 3.1069.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/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +58 -78
- package/dist-cjs/models/BedrockDataAutomationRuntimeServiceException.js +4 -8
- package/dist-cjs/models/errors.js +15 -25
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +99 -68
- package/package.json +8 -8
|
@@ -1,17 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.
|
|
4
|
-
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
|
-
const client_1 = require("@smithy/core/client");
|
|
6
|
-
const defaultBedrockDataAutomationRuntimeHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
1
|
+
const { resolveAwsSdkSigV4Config } = require("@aws-sdk/core/httpAuthSchemes");
|
|
2
|
+
const { getSmithyContext, normalizeProvider } = require("@smithy/core/client");
|
|
3
|
+
exports.defaultBedrockDataAutomationRuntimeHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
7
4
|
return {
|
|
8
|
-
operation:
|
|
9
|
-
region: await
|
|
5
|
+
operation: getSmithyContext(context).operation,
|
|
6
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
10
7
|
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
11
8
|
})(),
|
|
12
9
|
};
|
|
13
10
|
};
|
|
14
|
-
exports.defaultBedrockDataAutomationRuntimeHttpAuthSchemeParametersProvider = defaultBedrockDataAutomationRuntimeHttpAuthSchemeParametersProvider;
|
|
15
11
|
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
16
12
|
return {
|
|
17
13
|
schemeId: "aws.auth#sigv4",
|
|
@@ -27,7 +23,7 @@ function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
|
27
23
|
}),
|
|
28
24
|
};
|
|
29
25
|
}
|
|
30
|
-
|
|
26
|
+
exports.defaultBedrockDataAutomationRuntimeHttpAuthSchemeProvider = (authParameters) => {
|
|
31
27
|
const options = [];
|
|
32
28
|
switch (authParameters.operation) {
|
|
33
29
|
default: {
|
|
@@ -36,11 +32,9 @@ const defaultBedrockDataAutomationRuntimeHttpAuthSchemeProvider = (authParameter
|
|
|
36
32
|
}
|
|
37
33
|
return options;
|
|
38
34
|
};
|
|
39
|
-
exports.
|
|
40
|
-
const
|
|
41
|
-
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
35
|
+
exports.resolveHttpAuthSchemeConfig = (config) => {
|
|
36
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
42
37
|
return Object.assign(config_0, {
|
|
43
|
-
authSchemePreference:
|
|
38
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
44
39
|
});
|
|
45
40
|
};
|
|
46
|
-
exports.resolveHttpAuthSchemeConfig = resolveHttpAuthSchemeConfig;
|
package/dist-cjs/endpoint/bdd.js
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.bdd = void 0;
|
|
4
|
-
const endpoints_1 = require("@smithy/core/endpoints");
|
|
1
|
+
const { BinaryDecisionDiagram } = require("@smithy/core/endpoints");
|
|
5
2
|
const k = "ref";
|
|
6
3
|
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
7
4
|
const _data = {
|
|
@@ -46,4 +43,4 @@ const nodes = new Int32Array([
|
|
|
46
43
|
3, r + 1, 13,
|
|
47
44
|
4, r + 2, r + 3,
|
|
48
45
|
]);
|
|
49
|
-
exports.bdd =
|
|
46
|
+
exports.bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
@@ -1,18 +1,14 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const endpoints_1 = require("@smithy/core/endpoints");
|
|
6
|
-
const bdd_1 = require("./bdd");
|
|
7
|
-
const cache = new endpoints_1.EndpointCache({
|
|
1
|
+
const { awsEndpointFunctions } = require("@aws-sdk/core/client");
|
|
2
|
+
const { customEndpointFunctions, decideEndpoint, EndpointCache } = require("@smithy/core/endpoints");
|
|
3
|
+
const { bdd } = require("./bdd");
|
|
4
|
+
const cache = new EndpointCache({
|
|
8
5
|
size: 50,
|
|
9
6
|
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
10
7
|
});
|
|
11
|
-
|
|
12
|
-
return cache.get(endpointParams, () =>
|
|
8
|
+
exports.defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
9
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
13
10
|
endpointParams: endpointParams,
|
|
14
11
|
logger: context.logger,
|
|
15
12
|
}));
|
|
16
13
|
};
|
|
17
|
-
|
|
18
|
-
endpoints_1.customEndpointFunctions.aws = client_1.awsEndpointFunctions;
|
|
14
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
package/dist-cjs/index.js
CHANGED
|
@@ -1,18 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
1
|
+
var __exportStar = (m, e) => { Object.assign(e, m); };
|
|
2
|
+
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
|
+
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin } = require("@smithy/core");
|
|
4
|
+
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
|
+
exports.$Command = Command;
|
|
6
|
+
exports.__Client = Client;
|
|
7
|
+
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
+
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
+
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
+
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
+
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
+
const { resolveHttpAuthSchemeConfig, defaultBedrockDataAutomationRuntimeHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
|
|
13
|
+
const { getRuntimeConfig } = require("./runtimeConfig");
|
|
14
|
+
const { GetDataAutomationStatus$, InvokeDataAutomationAsync$, InvokeDataAutomation$, ListTagsForResource$, TagResource$, UntagResource$ } = require("./schemas/schemas_0");
|
|
15
|
+
__exportStar(require("./schemas/schemas_0"), exports);
|
|
16
|
+
__exportStar(require("./models/errors"), exports);
|
|
17
|
+
const { BedrockDataAutomationRuntimeServiceException } = require("./models/BedrockDataAutomationRuntimeServiceException");
|
|
18
|
+
exports.BedrockDataAutomationRuntimeServiceException = BedrockDataAutomationRuntimeServiceException;
|
|
16
19
|
|
|
17
20
|
const resolveClientEndpointParameters = (options) => {
|
|
18
21
|
return Object.assign(options, {
|
|
@@ -68,115 +71,115 @@ const resolveHttpAuthRuntimeConfig = (config) => {
|
|
|
68
71
|
};
|
|
69
72
|
|
|
70
73
|
const resolveRuntimeExtensions = (runtimeConfig, extensions) => {
|
|
71
|
-
const extensionConfiguration = Object.assign(
|
|
74
|
+
const extensionConfiguration = Object.assign(getAwsRegionExtensionConfiguration(runtimeConfig), getDefaultExtensionConfiguration(runtimeConfig), getHttpHandlerExtensionConfiguration(runtimeConfig), getHttpAuthExtensionConfiguration(runtimeConfig));
|
|
72
75
|
extensions.forEach((extension) => extension.configure(extensionConfiguration));
|
|
73
|
-
return Object.assign(runtimeConfig,
|
|
76
|
+
return Object.assign(runtimeConfig, resolveAwsRegionExtensionConfiguration(extensionConfiguration), resolveDefaultRuntimeConfig(extensionConfiguration), resolveHttpHandlerRuntimeConfig(extensionConfiguration), resolveHttpAuthRuntimeConfig(extensionConfiguration));
|
|
74
77
|
};
|
|
75
78
|
|
|
76
|
-
class BedrockDataAutomationRuntimeClient extends
|
|
79
|
+
class BedrockDataAutomationRuntimeClient extends Client {
|
|
77
80
|
config;
|
|
78
81
|
constructor(...[configuration]) {
|
|
79
|
-
const _config_0 =
|
|
82
|
+
const _config_0 = getRuntimeConfig(configuration || {});
|
|
80
83
|
super(_config_0);
|
|
81
84
|
this.initConfig = _config_0;
|
|
82
85
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
83
|
-
const _config_2 =
|
|
84
|
-
const _config_3 =
|
|
85
|
-
const _config_4 =
|
|
86
|
-
const _config_5 =
|
|
87
|
-
const _config_6 =
|
|
88
|
-
const _config_7 =
|
|
86
|
+
const _config_2 = resolveUserAgentConfig(_config_1);
|
|
87
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
88
|
+
const _config_4 = resolveRegionConfig(_config_3);
|
|
89
|
+
const _config_5 = resolveHostHeaderConfig(_config_4);
|
|
90
|
+
const _config_6 = resolveEndpointConfig(_config_5);
|
|
91
|
+
const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
|
|
89
92
|
const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
|
|
90
93
|
this.config = _config_8;
|
|
91
|
-
this.middlewareStack.use(
|
|
92
|
-
this.middlewareStack.use(
|
|
93
|
-
this.middlewareStack.use(
|
|
94
|
-
this.middlewareStack.use(
|
|
95
|
-
this.middlewareStack.use(
|
|
96
|
-
this.middlewareStack.use(
|
|
97
|
-
this.middlewareStack.use(
|
|
98
|
-
this.middlewareStack.use(
|
|
99
|
-
httpAuthSchemeParametersProvider:
|
|
100
|
-
identityProviderConfigProvider: async (config) => new
|
|
94
|
+
this.middlewareStack.use(getSchemaSerdePlugin(this.config));
|
|
95
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
96
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
97
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
98
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
99
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
100
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
101
|
+
this.middlewareStack.use(getHttpAuthSchemeEndpointRuleSetPlugin(this.config, {
|
|
102
|
+
httpAuthSchemeParametersProvider: defaultBedrockDataAutomationRuntimeHttpAuthSchemeParametersProvider,
|
|
103
|
+
identityProviderConfigProvider: async (config) => new DefaultIdentityProviderConfig({
|
|
101
104
|
"aws.auth#sigv4": config.credentials,
|
|
102
105
|
}),
|
|
103
106
|
}));
|
|
104
|
-
this.middlewareStack.use(
|
|
107
|
+
this.middlewareStack.use(getHttpSigningPlugin(this.config));
|
|
105
108
|
}
|
|
106
109
|
destroy() {
|
|
107
110
|
super.destroy();
|
|
108
111
|
}
|
|
109
112
|
}
|
|
110
113
|
|
|
111
|
-
class GetDataAutomationStatusCommand extends
|
|
114
|
+
class GetDataAutomationStatusCommand extends Command
|
|
112
115
|
.classBuilder()
|
|
113
116
|
.ep(commonParams)
|
|
114
117
|
.m(function (Command, cs, config, o) {
|
|
115
|
-
return [
|
|
118
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
116
119
|
})
|
|
117
120
|
.s("AmazonBedrockKeystoneRuntimeService", "GetDataAutomationStatus", {})
|
|
118
121
|
.n("BedrockDataAutomationRuntimeClient", "GetDataAutomationStatusCommand")
|
|
119
|
-
.sc(
|
|
122
|
+
.sc(GetDataAutomationStatus$)
|
|
120
123
|
.build() {
|
|
121
124
|
}
|
|
122
125
|
|
|
123
|
-
class InvokeDataAutomationAsyncCommand extends
|
|
126
|
+
class InvokeDataAutomationAsyncCommand extends Command
|
|
124
127
|
.classBuilder()
|
|
125
128
|
.ep(commonParams)
|
|
126
129
|
.m(function (Command, cs, config, o) {
|
|
127
|
-
return [
|
|
130
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
128
131
|
})
|
|
129
132
|
.s("AmazonBedrockKeystoneRuntimeService", "InvokeDataAutomationAsync", {})
|
|
130
133
|
.n("BedrockDataAutomationRuntimeClient", "InvokeDataAutomationAsyncCommand")
|
|
131
|
-
.sc(
|
|
134
|
+
.sc(InvokeDataAutomationAsync$)
|
|
132
135
|
.build() {
|
|
133
136
|
}
|
|
134
137
|
|
|
135
|
-
class InvokeDataAutomationCommand extends
|
|
138
|
+
class InvokeDataAutomationCommand extends Command
|
|
136
139
|
.classBuilder()
|
|
137
140
|
.ep(commonParams)
|
|
138
141
|
.m(function (Command, cs, config, o) {
|
|
139
|
-
return [
|
|
142
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
140
143
|
})
|
|
141
144
|
.s("AmazonBedrockKeystoneRuntimeService", "InvokeDataAutomation", {})
|
|
142
145
|
.n("BedrockDataAutomationRuntimeClient", "InvokeDataAutomationCommand")
|
|
143
|
-
.sc(
|
|
146
|
+
.sc(InvokeDataAutomation$)
|
|
144
147
|
.build() {
|
|
145
148
|
}
|
|
146
149
|
|
|
147
|
-
class ListTagsForResourceCommand extends
|
|
150
|
+
class ListTagsForResourceCommand extends Command
|
|
148
151
|
.classBuilder()
|
|
149
152
|
.ep(commonParams)
|
|
150
153
|
.m(function (Command, cs, config, o) {
|
|
151
|
-
return [
|
|
154
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
152
155
|
})
|
|
153
156
|
.s("AmazonBedrockKeystoneRuntimeService", "ListTagsForResource", {})
|
|
154
157
|
.n("BedrockDataAutomationRuntimeClient", "ListTagsForResourceCommand")
|
|
155
|
-
.sc(
|
|
158
|
+
.sc(ListTagsForResource$)
|
|
156
159
|
.build() {
|
|
157
160
|
}
|
|
158
161
|
|
|
159
|
-
class TagResourceCommand extends
|
|
162
|
+
class TagResourceCommand extends Command
|
|
160
163
|
.classBuilder()
|
|
161
164
|
.ep(commonParams)
|
|
162
165
|
.m(function (Command, cs, config, o) {
|
|
163
|
-
return [
|
|
166
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
164
167
|
})
|
|
165
168
|
.s("AmazonBedrockKeystoneRuntimeService", "TagResource", {})
|
|
166
169
|
.n("BedrockDataAutomationRuntimeClient", "TagResourceCommand")
|
|
167
|
-
.sc(
|
|
170
|
+
.sc(TagResource$)
|
|
168
171
|
.build() {
|
|
169
172
|
}
|
|
170
173
|
|
|
171
|
-
class UntagResourceCommand extends
|
|
174
|
+
class UntagResourceCommand extends Command
|
|
172
175
|
.classBuilder()
|
|
173
176
|
.ep(commonParams)
|
|
174
177
|
.m(function (Command, cs, config, o) {
|
|
175
|
-
return [
|
|
178
|
+
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
176
179
|
})
|
|
177
180
|
.s("AmazonBedrockKeystoneRuntimeService", "UntagResource", {})
|
|
178
181
|
.n("BedrockDataAutomationRuntimeClient", "UntagResourceCommand")
|
|
179
|
-
.sc(
|
|
182
|
+
.sc(UntagResource$)
|
|
180
183
|
.build() {
|
|
181
184
|
}
|
|
182
185
|
|
|
@@ -190,7 +193,7 @@ const commands = {
|
|
|
190
193
|
};
|
|
191
194
|
class BedrockDataAutomationRuntime extends BedrockDataAutomationRuntimeClient {
|
|
192
195
|
}
|
|
193
|
-
|
|
196
|
+
createAggregatedClient(commands, BedrockDataAutomationRuntime);
|
|
194
197
|
|
|
195
198
|
const AutomationJobStatus = {
|
|
196
199
|
CLIENT_ERROR: "ClientError",
|
|
@@ -218,9 +221,6 @@ const SemanticModality = {
|
|
|
218
221
|
VIDEO: "VIDEO",
|
|
219
222
|
};
|
|
220
223
|
|
|
221
|
-
exports.$Command = client.Command;
|
|
222
|
-
exports.__Client = client.Client;
|
|
223
|
-
exports.BedrockDataAutomationRuntimeServiceException = BedrockDataAutomationRuntimeServiceException.BedrockDataAutomationRuntimeServiceException;
|
|
224
224
|
exports.AutomationJobStatus = AutomationJobStatus;
|
|
225
225
|
exports.BedrockDataAutomationRuntime = BedrockDataAutomationRuntime;
|
|
226
226
|
exports.BedrockDataAutomationRuntimeClient = BedrockDataAutomationRuntimeClient;
|
|
@@ -234,23 +234,3 @@ exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
|
234
234
|
exports.SemanticModality = SemanticModality;
|
|
235
235
|
exports.TagResourceCommand = TagResourceCommand;
|
|
236
236
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
237
|
-
Object.prototype.hasOwnProperty.call(schemas_0, '__proto__') &&
|
|
238
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
239
|
-
Object.defineProperty(exports, '__proto__', {
|
|
240
|
-
enumerable: true,
|
|
241
|
-
value: schemas_0['__proto__']
|
|
242
|
-
});
|
|
243
|
-
|
|
244
|
-
Object.keys(schemas_0).forEach(function (k) {
|
|
245
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = schemas_0[k];
|
|
246
|
-
});
|
|
247
|
-
Object.prototype.hasOwnProperty.call(errors, '__proto__') &&
|
|
248
|
-
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
249
|
-
Object.defineProperty(exports, '__proto__', {
|
|
250
|
-
enumerable: true,
|
|
251
|
-
value: errors['__proto__']
|
|
252
|
-
});
|
|
253
|
-
|
|
254
|
-
Object.keys(errors).forEach(function (k) {
|
|
255
|
-
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = errors[k];
|
|
256
|
-
});
|
|
@@ -1,12 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.BedrockDataAutomationRuntimeServiceException =
|
|
4
|
-
const client_1 = require("@smithy/core/client");
|
|
5
|
-
Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return client_1.ServiceException; } });
|
|
6
|
-
class BedrockDataAutomationRuntimeServiceException extends client_1.ServiceException {
|
|
1
|
+
const { ServiceException: __ServiceException } = require("@smithy/core/client");
|
|
2
|
+
exports.__ServiceException = __ServiceException;
|
|
3
|
+
exports.BedrockDataAutomationRuntimeServiceException = class BedrockDataAutomationRuntimeServiceException extends __ServiceException {
|
|
7
4
|
constructor(options) {
|
|
8
5
|
super(options);
|
|
9
6
|
Object.setPrototypeOf(this, BedrockDataAutomationRuntimeServiceException.prototype);
|
|
10
7
|
}
|
|
11
|
-
}
|
|
12
|
-
exports.BedrockDataAutomationRuntimeServiceException = BedrockDataAutomationRuntimeServiceException;
|
|
8
|
+
};
|
|
@@ -1,8 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.ServiceUnavailableException = exports.ServiceQuotaExceededException = exports.ValidationException = exports.ThrottlingException = exports.ResourceNotFoundException = exports.InternalServerException = exports.AccessDeniedException = void 0;
|
|
4
|
-
const BedrockDataAutomationRuntimeServiceException_1 = require("./BedrockDataAutomationRuntimeServiceException");
|
|
5
|
-
class AccessDeniedException extends BedrockDataAutomationRuntimeServiceException_1.BedrockDataAutomationRuntimeServiceException {
|
|
1
|
+
const { BedrockDataAutomationRuntimeServiceException: __BaseException } = require("./BedrockDataAutomationRuntimeServiceException");
|
|
2
|
+
exports.AccessDeniedException = class AccessDeniedException extends __BaseException {
|
|
6
3
|
name = "AccessDeniedException";
|
|
7
4
|
$fault = "client";
|
|
8
5
|
constructor(opts) {
|
|
@@ -13,9 +10,8 @@ class AccessDeniedException extends BedrockDataAutomationRuntimeServiceException
|
|
|
13
10
|
});
|
|
14
11
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
15
12
|
}
|
|
16
|
-
}
|
|
17
|
-
exports.
|
|
18
|
-
class InternalServerException extends BedrockDataAutomationRuntimeServiceException_1.BedrockDataAutomationRuntimeServiceException {
|
|
13
|
+
};
|
|
14
|
+
exports.InternalServerException = class InternalServerException extends __BaseException {
|
|
19
15
|
name = "InternalServerException";
|
|
20
16
|
$fault = "server";
|
|
21
17
|
constructor(opts) {
|
|
@@ -26,9 +22,8 @@ class InternalServerException extends BedrockDataAutomationRuntimeServiceExcepti
|
|
|
26
22
|
});
|
|
27
23
|
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
28
24
|
}
|
|
29
|
-
}
|
|
30
|
-
exports.
|
|
31
|
-
class ResourceNotFoundException extends BedrockDataAutomationRuntimeServiceException_1.BedrockDataAutomationRuntimeServiceException {
|
|
25
|
+
};
|
|
26
|
+
exports.ResourceNotFoundException = class ResourceNotFoundException extends __BaseException {
|
|
32
27
|
name = "ResourceNotFoundException";
|
|
33
28
|
$fault = "client";
|
|
34
29
|
constructor(opts) {
|
|
@@ -39,9 +34,8 @@ class ResourceNotFoundException extends BedrockDataAutomationRuntimeServiceExcep
|
|
|
39
34
|
});
|
|
40
35
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
41
36
|
}
|
|
42
|
-
}
|
|
43
|
-
exports.
|
|
44
|
-
class ThrottlingException extends BedrockDataAutomationRuntimeServiceException_1.BedrockDataAutomationRuntimeServiceException {
|
|
37
|
+
};
|
|
38
|
+
exports.ThrottlingException = class ThrottlingException extends __BaseException {
|
|
45
39
|
name = "ThrottlingException";
|
|
46
40
|
$fault = "client";
|
|
47
41
|
constructor(opts) {
|
|
@@ -52,9 +46,8 @@ class ThrottlingException extends BedrockDataAutomationRuntimeServiceException_1
|
|
|
52
46
|
});
|
|
53
47
|
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
54
48
|
}
|
|
55
|
-
}
|
|
56
|
-
exports.
|
|
57
|
-
class ValidationException extends BedrockDataAutomationRuntimeServiceException_1.BedrockDataAutomationRuntimeServiceException {
|
|
49
|
+
};
|
|
50
|
+
exports.ValidationException = class ValidationException extends __BaseException {
|
|
58
51
|
name = "ValidationException";
|
|
59
52
|
$fault = "client";
|
|
60
53
|
constructor(opts) {
|
|
@@ -65,9 +58,8 @@ class ValidationException extends BedrockDataAutomationRuntimeServiceException_1
|
|
|
65
58
|
});
|
|
66
59
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
67
60
|
}
|
|
68
|
-
}
|
|
69
|
-
exports.
|
|
70
|
-
class ServiceQuotaExceededException extends BedrockDataAutomationRuntimeServiceException_1.BedrockDataAutomationRuntimeServiceException {
|
|
61
|
+
};
|
|
62
|
+
exports.ServiceQuotaExceededException = class ServiceQuotaExceededException extends __BaseException {
|
|
71
63
|
name = "ServiceQuotaExceededException";
|
|
72
64
|
$fault = "client";
|
|
73
65
|
constructor(opts) {
|
|
@@ -78,9 +70,8 @@ class ServiceQuotaExceededException extends BedrockDataAutomationRuntimeServiceE
|
|
|
78
70
|
});
|
|
79
71
|
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
80
72
|
}
|
|
81
|
-
}
|
|
82
|
-
exports.
|
|
83
|
-
class ServiceUnavailableException extends BedrockDataAutomationRuntimeServiceException_1.BedrockDataAutomationRuntimeServiceException {
|
|
73
|
+
};
|
|
74
|
+
exports.ServiceUnavailableException = class ServiceUnavailableException extends __BaseException {
|
|
84
75
|
name = "ServiceUnavailableException";
|
|
85
76
|
$fault = "server";
|
|
86
77
|
constructor(opts) {
|
|
@@ -91,5 +82,4 @@ class ServiceUnavailableException extends BedrockDataAutomationRuntimeServiceExc
|
|
|
91
82
|
});
|
|
92
83
|
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
93
84
|
}
|
|
94
|
-
}
|
|
95
|
-
exports.ServiceUnavailableException = ServiceUnavailableException;
|
|
85
|
+
};
|
|
@@ -1,36 +1,32 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const retry_1 = require("@smithy/core/retry");
|
|
11
|
-
const serde_1 = require("@smithy/core/serde");
|
|
12
|
-
const fetch_http_handler_1 = require("@smithy/fetch-http-handler");
|
|
13
|
-
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
1
|
+
const packageInfo = require("../package.json");
|
|
2
|
+
const { Sha256 } = require("@aws-crypto/sha256-browser");
|
|
3
|
+
const { createDefaultUserAgentProvider } = require("@aws-sdk/core/client");
|
|
4
|
+
const { invalidProvider, loadConfigsForDefaultMode } = require("@smithy/core/client");
|
|
5
|
+
const { DEFAULT_USE_DUALSTACK_ENDPOINT, DEFAULT_USE_FIPS_ENDPOINT, resolveDefaultsModeConfig } = require("@smithy/core/config");
|
|
6
|
+
const { DEFAULT_MAX_ATTEMPTS, DEFAULT_RETRY_MODE } = require("@smithy/core/retry");
|
|
7
|
+
const { calculateBodyLength } = require("@smithy/core/serde");
|
|
8
|
+
const { FetchHttpHandler: RequestHandler, streamCollector } = require("@smithy/fetch-http-handler");
|
|
9
|
+
const { getRuntimeConfig: getSharedRuntimeConfig } = require("./runtimeConfig.shared");
|
|
14
10
|
const getRuntimeConfig = (config) => {
|
|
15
|
-
const defaultsMode =
|
|
16
|
-
const defaultConfigProvider = () => defaultsMode().then(
|
|
17
|
-
const clientSharedValues = (
|
|
11
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
12
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
13
|
+
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
18
14
|
return {
|
|
19
15
|
...clientSharedValues,
|
|
20
16
|
...config,
|
|
21
17
|
runtime: "browser",
|
|
22
18
|
defaultsMode,
|
|
23
|
-
bodyLengthChecker: config?.bodyLengthChecker ??
|
|
19
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
24
20
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? ((_) => () => Promise.reject(new Error("Credential is missing"))),
|
|
25
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
26
|
-
maxAttempts: config?.maxAttempts ??
|
|
27
|
-
region: config?.region ??
|
|
28
|
-
requestHandler:
|
|
29
|
-
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode ||
|
|
30
|
-
sha256: config?.sha256 ??
|
|
31
|
-
streamCollector: config?.streamCollector ??
|
|
32
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(
|
|
33
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(
|
|
21
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
22
|
+
maxAttempts: config?.maxAttempts ?? DEFAULT_MAX_ATTEMPTS,
|
|
23
|
+
region: config?.region ?? invalidProvider("Region is missing"),
|
|
24
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
25
|
+
retryMode: config?.retryMode ?? (async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE),
|
|
26
|
+
sha256: config?.sha256 ?? Sha256,
|
|
27
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
28
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? (() => Promise.resolve(DEFAULT_USE_DUALSTACK_ENDPOINT)),
|
|
29
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? (() => Promise.resolve(DEFAULT_USE_FIPS_ENDPOINT)),
|
|
34
30
|
};
|
|
35
31
|
};
|
|
36
32
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,23 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
const
|
|
10
|
-
const
|
|
11
|
-
const retry_1 = require("@smithy/core/retry");
|
|
12
|
-
const serde_1 = require("@smithy/core/serde");
|
|
13
|
-
const node_http_handler_1 = require("@smithy/node-http-handler");
|
|
14
|
-
const runtimeConfig_shared_1 = require("./runtimeConfig.shared");
|
|
1
|
+
const packageInfo = require("../package.json");
|
|
2
|
+
const { createDefaultUserAgentProvider, emitWarningIfUnsupportedVersion: awsCheckVersion, NODE_APP_ID_CONFIG_OPTIONS } = require("@aws-sdk/core/client");
|
|
3
|
+
const { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
4
|
+
const { defaultProvider: credentialDefaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
5
|
+
const { emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode } = require("@smithy/core/client");
|
|
6
|
+
const { loadConfig: loadNodeConfig, NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, resolveDefaultsModeConfig } = require("@smithy/core/config");
|
|
7
|
+
const { DEFAULT_RETRY_MODE, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, NODE_RETRY_MODE_CONFIG_OPTIONS } = require("@smithy/core/retry");
|
|
8
|
+
const { calculateBodyLength, Hash } = require("@smithy/core/serde");
|
|
9
|
+
const { NodeHttpHandler: RequestHandler, streamCollector } = require("@smithy/node-http-handler");
|
|
10
|
+
const { getRuntimeConfig: getSharedRuntimeConfig } = require("./runtimeConfig.shared");
|
|
15
11
|
const getRuntimeConfig = (config) => {
|
|
16
|
-
|
|
17
|
-
const defaultsMode =
|
|
18
|
-
const defaultConfigProvider = () => defaultsMode().then(
|
|
19
|
-
const clientSharedValues = (
|
|
20
|
-
(
|
|
12
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
13
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
14
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
15
|
+
const clientSharedValues = getSharedRuntimeConfig(config);
|
|
16
|
+
awsCheckVersion(process.version);
|
|
21
17
|
const loaderConfig = {
|
|
22
18
|
profile: config?.profile,
|
|
23
19
|
logger: clientSharedValues.logger,
|
|
@@ -28,23 +24,23 @@ const getRuntimeConfig = (config) => {
|
|
|
28
24
|
...config,
|
|
29
25
|
runtime: "node",
|
|
30
26
|
defaultsMode,
|
|
31
|
-
authSchemePreference: config?.authSchemePreference ?? (
|
|
32
|
-
bodyLengthChecker: config?.bodyLengthChecker ??
|
|
33
|
-
credentialDefaultProvider: config?.credentialDefaultProvider ??
|
|
34
|
-
defaultUserAgentProvider: config?.defaultUserAgentProvider ??
|
|
35
|
-
maxAttempts: config?.maxAttempts ?? (
|
|
36
|
-
region: config?.region ?? (
|
|
37
|
-
requestHandler:
|
|
27
|
+
authSchemePreference: config?.authSchemePreference ?? loadNodeConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
28
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
29
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? credentialDefaultProvider,
|
|
30
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
31
|
+
maxAttempts: config?.maxAttempts ?? loadNodeConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
32
|
+
region: config?.region ?? loadNodeConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
33
|
+
requestHandler: RequestHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
38
34
|
retryMode: config?.retryMode ??
|
|
39
|
-
(
|
|
40
|
-
...
|
|
41
|
-
default: async () => (await defaultConfigProvider()).retryMode ||
|
|
35
|
+
loadNodeConfig({
|
|
36
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
37
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
42
38
|
}, config),
|
|
43
|
-
sha256: config?.sha256 ??
|
|
44
|
-
streamCollector: config?.streamCollector ??
|
|
45
|
-
useDualstackEndpoint: config?.useDualstackEndpoint ?? (
|
|
46
|
-
useFipsEndpoint: config?.useFipsEndpoint ?? (
|
|
47
|
-
userAgentAppId: config?.userAgentAppId ?? (
|
|
39
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
40
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
41
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadNodeConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
42
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadNodeConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
43
|
+
userAgentAppId: config?.userAgentAppId ?? loadNodeConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
48
44
|
};
|
|
49
45
|
};
|
|
50
46
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,15 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.getRuntimeConfig = void 0;
|
|
4
|
-
const sha256_js_1 = require("@aws-crypto/sha256-js");
|
|
5
|
-
const runtimeConfig_browser_1 = require("./runtimeConfig.browser");
|
|
1
|
+
const { Sha256 } = require("@aws-crypto/sha256-js");
|
|
2
|
+
const { getRuntimeConfig: getBrowserRuntimeConfig } = require("./runtimeConfig.browser");
|
|
6
3
|
const getRuntimeConfig = (config) => {
|
|
7
|
-
const browserDefaults = (
|
|
4
|
+
const browserDefaults = getBrowserRuntimeConfig(config);
|
|
8
5
|
return {
|
|
9
6
|
...browserDefaults,
|
|
10
7
|
...config,
|
|
11
8
|
runtime: "react-native",
|
|
12
|
-
sha256: config?.sha256 ??
|
|
9
|
+
sha256: config?.sha256 ?? Sha256,
|
|
13
10
|
};
|
|
14
11
|
};
|
|
15
12
|
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,42 +1,38 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
const
|
|
5
|
-
const
|
|
6
|
-
const
|
|
7
|
-
const
|
|
8
|
-
const
|
|
9
|
-
|
|
10
|
-
const endpointResolver_1 = require("./endpoint/endpointResolver");
|
|
11
|
-
const schemas_0_1 = require("./schemas/schemas_0");
|
|
12
|
-
const getRuntimeConfig = (config) => {
|
|
1
|
+
const { AwsSdkSigV4Signer } = require("@aws-sdk/core/httpAuthSchemes");
|
|
2
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
3
|
+
const { NoOpLogger } = require("@smithy/core/client");
|
|
4
|
+
const { parseUrl } = require("@smithy/core/protocols");
|
|
5
|
+
const { fromBase64, fromUtf8, toBase64, toUtf8 } = require("@smithy/core/serde");
|
|
6
|
+
const { defaultBedrockDataAutomationRuntimeHttpAuthSchemeProvider } = require("./auth/httpAuthSchemeProvider");
|
|
7
|
+
const { defaultEndpointResolver } = require("./endpoint/endpointResolver");
|
|
8
|
+
const { errorTypeRegistries } = require("./schemas/schemas_0");
|
|
9
|
+
exports.getRuntimeConfig = (config) => {
|
|
13
10
|
return {
|
|
14
11
|
apiVersion: "2024-06-13",
|
|
15
|
-
base64Decoder: config?.base64Decoder ??
|
|
16
|
-
base64Encoder: config?.base64Encoder ??
|
|
12
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
13
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
17
14
|
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
18
|
-
endpointProvider: config?.endpointProvider ??
|
|
15
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
19
16
|
extensions: config?.extensions ?? [],
|
|
20
|
-
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ??
|
|
17
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultBedrockDataAutomationRuntimeHttpAuthSchemeProvider,
|
|
21
18
|
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
22
19
|
{
|
|
23
20
|
schemeId: "aws.auth#sigv4",
|
|
24
21
|
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
25
|
-
signer: new
|
|
22
|
+
signer: new AwsSdkSigV4Signer(),
|
|
26
23
|
},
|
|
27
24
|
],
|
|
28
|
-
logger: config?.logger ?? new
|
|
29
|
-
protocol: config?.protocol ??
|
|
25
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
26
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
30
27
|
protocolSettings: config?.protocolSettings ?? {
|
|
31
28
|
defaultNamespace: "com.amazonaws.bedrockdataautomationruntime",
|
|
32
|
-
errorTypeRegistries
|
|
29
|
+
errorTypeRegistries,
|
|
33
30
|
version: "2024-06-13",
|
|
34
31
|
serviceTarget: "AmazonBedrockKeystoneRuntimeService",
|
|
35
32
|
},
|
|
36
33
|
serviceId: config?.serviceId ?? "Bedrock Data Automation Runtime",
|
|
37
|
-
urlParser: config?.urlParser ??
|
|
38
|
-
utf8Decoder: config?.utf8Decoder ??
|
|
39
|
-
utf8Encoder: config?.utf8Encoder ??
|
|
34
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
35
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
36
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
40
37
|
};
|
|
41
38
|
};
|
|
42
|
-
exports.getRuntimeConfig = getRuntimeConfig;
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.UntagResource$ = exports.TagResource$ = exports.ListTagsForResource$ = exports.InvokeDataAutomationAsync$ = exports.InvokeDataAutomation$ = exports.GetDataAutomationStatus$ = exports.VideoSegmentConfiguration$ = exports.VideoAssetProcessingConfiguration$ = exports.UntagResourceResponse$ = exports.UntagResourceRequest$ = exports.TimestampSegment$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.Tag$ = exports.SyncInputConfiguration$ = exports.OutputSegment$ = exports.OutputConfiguration$ = exports.NotificationConfiguration$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.InvokeDataAutomationResponse$ = exports.InvokeDataAutomationRequest$ = exports.InvokeDataAutomationAsyncResponse$ = exports.InvokeDataAutomationAsyncRequest$ = exports.InputConfiguration$ = exports.GetDataAutomationStatusResponse$ = exports.GetDataAutomationStatusRequest$ = exports.EventBridgeConfiguration$ = exports.EncryptionConfiguration$ = exports.DataAutomationConfiguration$ = exports.Blueprint$ = exports.AssetProcessingConfiguration$ = exports.errorTypeRegistries = exports.ValidationException$ = exports.ThrottlingException$ = exports.ServiceUnavailableException$ = exports.ServiceQuotaExceededException$ = exports.ResourceNotFoundException$ = exports.InternalServerException$ = exports.AccessDeniedException$ = exports.BedrockDataAutomationRuntimeServiceException$ = void 0;
|
|
4
1
|
const _ADE = "AccessDeniedException";
|
|
5
2
|
const _APC = "AssetProcessingConfiguration";
|
|
6
3
|
const _B = "Blueprint";
|
|
@@ -91,215 +88,249 @@ const _v = "video";
|
|
|
91
88
|
const _va = "value";
|
|
92
89
|
const _ve = "version";
|
|
93
90
|
const n0 = "com.amazonaws.bedrockdataautomationruntime";
|
|
94
|
-
const
|
|
95
|
-
const
|
|
96
|
-
const
|
|
97
|
-
const _s_registry =
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
91
|
+
const { TypeRegistry } = require("@smithy/core/schema");
|
|
92
|
+
const { BedrockDataAutomationRuntimeServiceException } = require("../models/BedrockDataAutomationRuntimeServiceException");
|
|
93
|
+
const { AccessDeniedException, InternalServerException, ResourceNotFoundException, ServiceQuotaExceededException, ServiceUnavailableException, ThrottlingException, ValidationException } = require("../models/errors");
|
|
94
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
95
|
+
const BedrockDataAutomationRuntimeServiceException$ = [-3, _s, "BedrockDataAutomationRuntimeServiceException", 0, [], []];
|
|
96
|
+
exports.BedrockDataAutomationRuntimeServiceException$ = BedrockDataAutomationRuntimeServiceException$;
|
|
97
|
+
_s_registry.registerError(BedrockDataAutomationRuntimeServiceException$, BedrockDataAutomationRuntimeServiceException);
|
|
98
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
99
|
+
const AccessDeniedException$ = [-3, n0, _ADE,
|
|
102
100
|
{ [_e]: _c, [_hE]: 403 },
|
|
103
101
|
[_m],
|
|
104
102
|
[0]
|
|
105
103
|
];
|
|
106
|
-
|
|
107
|
-
|
|
104
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
105
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
106
|
+
const InternalServerException$ = [-3, n0, _ISE,
|
|
108
107
|
{ [_e]: _se, [_hE]: 500 },
|
|
109
108
|
[_m],
|
|
110
109
|
[0]
|
|
111
110
|
];
|
|
112
|
-
|
|
113
|
-
|
|
111
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
112
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
113
|
+
const ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
114
114
|
{ [_e]: _c, [_hE]: 404 },
|
|
115
115
|
[_m],
|
|
116
116
|
[0]
|
|
117
117
|
];
|
|
118
|
-
|
|
119
|
-
|
|
118
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
119
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
120
|
+
const ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
120
121
|
{ [_e]: _c, [_hE]: 402 },
|
|
121
122
|
[_m],
|
|
122
123
|
[0]
|
|
123
124
|
];
|
|
124
|
-
|
|
125
|
-
|
|
125
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
126
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
127
|
+
const ServiceUnavailableException$ = [-3, n0, _SUE,
|
|
126
128
|
{ [_e]: _se, [_hE]: 503 },
|
|
127
129
|
[_m],
|
|
128
130
|
[0]
|
|
129
131
|
];
|
|
130
|
-
|
|
131
|
-
|
|
132
|
+
exports.ServiceUnavailableException$ = ServiceUnavailableException$;
|
|
133
|
+
n0_registry.registerError(ServiceUnavailableException$, ServiceUnavailableException);
|
|
134
|
+
const ThrottlingException$ = [-3, n0, _TE,
|
|
132
135
|
{ [_e]: _c, [_hE]: 429 },
|
|
133
136
|
[_m],
|
|
134
137
|
[0]
|
|
135
138
|
];
|
|
136
|
-
|
|
137
|
-
|
|
139
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
140
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
141
|
+
const ValidationException$ = [-3, n0, _VE,
|
|
138
142
|
{ [_e]: _c, [_hE]: 400 },
|
|
139
143
|
[_m],
|
|
140
144
|
[0]
|
|
141
145
|
];
|
|
142
|
-
|
|
146
|
+
exports.ValidationException$ = ValidationException$;
|
|
147
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
143
148
|
exports.errorTypeRegistries = [
|
|
144
149
|
_s_registry,
|
|
145
150
|
n0_registry,
|
|
146
151
|
];
|
|
147
|
-
|
|
152
|
+
const AssetProcessingConfiguration$ = [3, n0, _APC,
|
|
148
153
|
0,
|
|
149
154
|
[_v],
|
|
150
|
-
[() =>
|
|
155
|
+
[() => VideoAssetProcessingConfiguration$]
|
|
151
156
|
];
|
|
152
|
-
exports.
|
|
157
|
+
exports.AssetProcessingConfiguration$ = AssetProcessingConfiguration$;
|
|
158
|
+
const Blueprint$ = [3, n0, _B,
|
|
153
159
|
0,
|
|
154
160
|
[_bA, _ve, _st],
|
|
155
161
|
[0, 0, 0], 1
|
|
156
162
|
];
|
|
157
|
-
exports.
|
|
163
|
+
exports.Blueprint$ = Blueprint$;
|
|
164
|
+
const DataAutomationConfiguration$ = [3, n0, _DAC,
|
|
158
165
|
0,
|
|
159
166
|
[_dAPA, _st],
|
|
160
167
|
[0, 0], 1
|
|
161
168
|
];
|
|
162
|
-
exports.
|
|
169
|
+
exports.DataAutomationConfiguration$ = DataAutomationConfiguration$;
|
|
170
|
+
const EncryptionConfiguration$ = [3, n0, _EC,
|
|
163
171
|
0,
|
|
164
172
|
[_kKI, _kEC],
|
|
165
173
|
[0, 128 | 0], 1
|
|
166
174
|
];
|
|
167
|
-
exports.
|
|
175
|
+
exports.EncryptionConfiguration$ = EncryptionConfiguration$;
|
|
176
|
+
const EventBridgeConfiguration$ = [3, n0, _EBC,
|
|
168
177
|
0,
|
|
169
178
|
[_eBE],
|
|
170
179
|
[2], 1
|
|
171
180
|
];
|
|
172
|
-
exports.
|
|
181
|
+
exports.EventBridgeConfiguration$ = EventBridgeConfiguration$;
|
|
182
|
+
const GetDataAutomationStatusRequest$ = [3, n0, _GDASR,
|
|
173
183
|
0,
|
|
174
184
|
[_iA],
|
|
175
185
|
[[0, 1]], 1
|
|
176
186
|
];
|
|
177
|
-
exports.
|
|
187
|
+
exports.GetDataAutomationStatusRequest$ = GetDataAutomationStatusRequest$;
|
|
188
|
+
const GetDataAutomationStatusResponse$ = [3, n0, _GDASRe,
|
|
178
189
|
0,
|
|
179
190
|
[_sta, _eT, _eM, _oC, _jST, _jCT, _jDIS],
|
|
180
|
-
[0, 0, 0, () =>
|
|
191
|
+
[0, 0, 0, () => OutputConfiguration$, 5, 5, 1]
|
|
181
192
|
];
|
|
182
|
-
exports.
|
|
193
|
+
exports.GetDataAutomationStatusResponse$ = GetDataAutomationStatusResponse$;
|
|
194
|
+
const InputConfiguration$ = [3, n0, _IC,
|
|
183
195
|
0,
|
|
184
196
|
[_sU, _aPC],
|
|
185
|
-
[0, () =>
|
|
197
|
+
[0, () => AssetProcessingConfiguration$], 1
|
|
186
198
|
];
|
|
187
|
-
exports.
|
|
199
|
+
exports.InputConfiguration$ = InputConfiguration$;
|
|
200
|
+
const InvokeDataAutomationAsyncRequest$ = [3, n0, _IDAAR,
|
|
188
201
|
0,
|
|
189
202
|
[_iC, _oC, _dAPAa, _cT, _dAC, _eC, _nC, _b, _t],
|
|
190
|
-
[() =>
|
|
203
|
+
[() => InputConfiguration$, () => OutputConfiguration$, 0, [0, 4], () => DataAutomationConfiguration$, () => EncryptionConfiguration$, () => NotificationConfiguration$, () => BlueprintList, () => TagList], 3
|
|
191
204
|
];
|
|
192
|
-
exports.
|
|
205
|
+
exports.InvokeDataAutomationAsyncRequest$ = InvokeDataAutomationAsyncRequest$;
|
|
206
|
+
const InvokeDataAutomationAsyncResponse$ = [3, n0, _IDAARn,
|
|
193
207
|
0,
|
|
194
208
|
[_iA],
|
|
195
209
|
[0], 1
|
|
196
210
|
];
|
|
197
|
-
exports.
|
|
211
|
+
exports.InvokeDataAutomationAsyncResponse$ = InvokeDataAutomationAsyncResponse$;
|
|
212
|
+
const InvokeDataAutomationRequest$ = [3, n0, _IDAR,
|
|
198
213
|
0,
|
|
199
214
|
[_iC, _dAPAa, _dAC, _b, _eC, _oC],
|
|
200
|
-
[() =>
|
|
215
|
+
[() => SyncInputConfiguration$, 0, () => DataAutomationConfiguration$, () => BlueprintList, () => EncryptionConfiguration$, () => OutputConfiguration$], 2
|
|
201
216
|
];
|
|
202
|
-
exports.
|
|
217
|
+
exports.InvokeDataAutomationRequest$ = InvokeDataAutomationRequest$;
|
|
218
|
+
const InvokeDataAutomationResponse$ = [3, n0, _IDARn,
|
|
203
219
|
0,
|
|
204
220
|
[_sM, _oC, _oS],
|
|
205
|
-
[0, () =>
|
|
221
|
+
[0, () => OutputConfiguration$, () => OutputSegmentList], 1
|
|
206
222
|
];
|
|
207
|
-
exports.
|
|
223
|
+
exports.InvokeDataAutomationResponse$ = InvokeDataAutomationResponse$;
|
|
224
|
+
const ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
208
225
|
0,
|
|
209
226
|
[_rARN],
|
|
210
227
|
[0], 1
|
|
211
228
|
];
|
|
212
|
-
exports.
|
|
229
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
230
|
+
const ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
213
231
|
0,
|
|
214
232
|
[_t],
|
|
215
233
|
[() => TagList]
|
|
216
234
|
];
|
|
217
|
-
exports.
|
|
235
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
236
|
+
const NotificationConfiguration$ = [3, n0, _NC,
|
|
218
237
|
0,
|
|
219
238
|
[_eBC],
|
|
220
|
-
[() =>
|
|
239
|
+
[() => EventBridgeConfiguration$], 1
|
|
221
240
|
];
|
|
222
|
-
exports.
|
|
241
|
+
exports.NotificationConfiguration$ = NotificationConfiguration$;
|
|
242
|
+
const OutputConfiguration$ = [3, n0, _OC,
|
|
223
243
|
0,
|
|
224
244
|
[_sU],
|
|
225
245
|
[0], 1
|
|
226
246
|
];
|
|
227
|
-
exports.
|
|
247
|
+
exports.OutputConfiguration$ = OutputConfiguration$;
|
|
248
|
+
const OutputSegment$ = [3, n0, _OS,
|
|
228
249
|
0,
|
|
229
250
|
[_cOS, _cO, _sO],
|
|
230
251
|
[0, 0, 0]
|
|
231
252
|
];
|
|
232
|
-
exports.
|
|
253
|
+
exports.OutputSegment$ = OutputSegment$;
|
|
254
|
+
const SyncInputConfiguration$ = [3, n0, _SIC,
|
|
233
255
|
0,
|
|
234
256
|
[_by, _sU],
|
|
235
257
|
[21, 0]
|
|
236
258
|
];
|
|
237
|
-
exports.
|
|
259
|
+
exports.SyncInputConfiguration$ = SyncInputConfiguration$;
|
|
260
|
+
const Tag$ = [3, n0, _T,
|
|
238
261
|
0,
|
|
239
262
|
[_k, _va],
|
|
240
263
|
[0, 0], 2
|
|
241
264
|
];
|
|
242
|
-
exports.
|
|
265
|
+
exports.Tag$ = Tag$;
|
|
266
|
+
const TagResourceRequest$ = [3, n0, _TRR,
|
|
243
267
|
0,
|
|
244
268
|
[_rARN, _t],
|
|
245
269
|
[0, () => TagList], 2
|
|
246
270
|
];
|
|
247
|
-
exports.
|
|
271
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
272
|
+
const TagResourceResponse$ = [3, n0, _TRRa,
|
|
248
273
|
0,
|
|
249
274
|
[],
|
|
250
275
|
[]
|
|
251
276
|
];
|
|
252
|
-
exports.
|
|
277
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
278
|
+
const TimestampSegment$ = [3, n0, _TS,
|
|
253
279
|
0,
|
|
254
280
|
[_sTM, _eTM],
|
|
255
281
|
[1, 1], 2
|
|
256
282
|
];
|
|
257
|
-
exports.
|
|
283
|
+
exports.TimestampSegment$ = TimestampSegment$;
|
|
284
|
+
const UntagResourceRequest$ = [3, n0, _URR,
|
|
258
285
|
0,
|
|
259
286
|
[_rARN, _tK],
|
|
260
287
|
[0, 64 | 0], 2
|
|
261
288
|
];
|
|
262
|
-
exports.
|
|
289
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
290
|
+
const UntagResourceResponse$ = [3, n0, _URRn,
|
|
263
291
|
0,
|
|
264
292
|
[],
|
|
265
293
|
[]
|
|
266
294
|
];
|
|
267
|
-
exports.
|
|
295
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
296
|
+
const VideoAssetProcessingConfiguration$ = [3, n0, _VAPC,
|
|
268
297
|
0,
|
|
269
298
|
[_sC],
|
|
270
|
-
[() =>
|
|
299
|
+
[() => VideoSegmentConfiguration$]
|
|
271
300
|
];
|
|
301
|
+
exports.VideoAssetProcessingConfiguration$ = VideoAssetProcessingConfiguration$;
|
|
272
302
|
var BlueprintList = [1, n0, _BL,
|
|
273
|
-
0, () =>
|
|
303
|
+
0, () => Blueprint$
|
|
274
304
|
];
|
|
275
305
|
var OutputSegmentList = [1, n0, _OSL,
|
|
276
|
-
0, () =>
|
|
306
|
+
0, () => OutputSegment$
|
|
277
307
|
];
|
|
278
308
|
var TagKeyList = 64 | 0;
|
|
279
309
|
var TagList = [1, n0, _TL,
|
|
280
|
-
0, () =>
|
|
310
|
+
0, () => Tag$
|
|
281
311
|
];
|
|
282
312
|
var EncryptionContextMap = 128 | 0;
|
|
283
|
-
|
|
313
|
+
const VideoSegmentConfiguration$ = [4, n0, _VSC,
|
|
284
314
|
0,
|
|
285
315
|
[_tS],
|
|
286
|
-
[() =>
|
|
316
|
+
[() => TimestampSegment$]
|
|
287
317
|
];
|
|
318
|
+
exports.VideoSegmentConfiguration$ = VideoSegmentConfiguration$;
|
|
288
319
|
exports.GetDataAutomationStatus$ = [9, n0, _GDAS,
|
|
289
|
-
0, () =>
|
|
320
|
+
0, () => GetDataAutomationStatusRequest$, () => GetDataAutomationStatusResponse$
|
|
290
321
|
];
|
|
291
322
|
exports.InvokeDataAutomation$ = [9, n0, _IDA,
|
|
292
|
-
0, () =>
|
|
323
|
+
0, () => InvokeDataAutomationRequest$, () => InvokeDataAutomationResponse$
|
|
293
324
|
];
|
|
294
325
|
exports.InvokeDataAutomationAsync$ = [9, n0, _IDAA,
|
|
295
|
-
2, () =>
|
|
326
|
+
2, () => InvokeDataAutomationAsyncRequest$, () => InvokeDataAutomationAsyncResponse$
|
|
296
327
|
];
|
|
297
328
|
exports.ListTagsForResource$ = [9, n0, _LTFR,
|
|
298
|
-
0, () =>
|
|
329
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
299
330
|
];
|
|
300
331
|
exports.TagResource$ = [9, n0, _TR,
|
|
301
|
-
0, () =>
|
|
332
|
+
0, () => TagResourceRequest$, () => TagResourceResponse$
|
|
302
333
|
];
|
|
303
334
|
exports.UntagResource$ = [9, n0, _UR,
|
|
304
|
-
0, () =>
|
|
335
|
+
0, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
305
336
|
];
|
package/package.json
CHANGED
|
@@ -1,17 +1,17 @@
|
|
|
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.1069.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
8
|
-
"build:es": "tsc -p tsconfig.es.json",
|
|
8
|
+
"build:es": "premove dist-es && tsc -p tsconfig.es.json",
|
|
9
9
|
"build:include:deps": "yarn g:turbo run build -F=\"$npm_package_name\"",
|
|
10
|
-
"build:types": "tsc -p tsconfig.types.json",
|
|
10
|
+
"build:types": "premove dist-types && tsc -p tsconfig.types.json",
|
|
11
11
|
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
12
|
-
"clean": "premove dist-cjs dist-es dist-types
|
|
12
|
+
"clean": "premove dist-cjs dist-es dist-types",
|
|
13
13
|
"extract:docs": "api-extractor run --local",
|
|
14
|
-
"generate:client": "node ../../scripts/generate-clients/single-service
|
|
14
|
+
"generate:client": "node ../../scripts/generate-clients/single-service",
|
|
15
15
|
"test:index": "tsc --noEmit ./test/index-types.ts && node ./test/index-objects.spec.mjs"
|
|
16
16
|
},
|
|
17
17
|
"main": "./dist-cjs/index.js",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.974.21",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.56",
|
|
26
|
+
"@aws-sdk/types": "^3.973.13",
|
|
27
27
|
"@smithy/core": "^3.24.6",
|
|
28
28
|
"@smithy/fetch-http-handler": "^5.4.6",
|
|
29
29
|
"@smithy/node-http-handler": "^4.7.6",
|