@aws-sdk/client-firehose 3.180.0 → 3.183.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/CHANGELOG.md +20 -0
- package/dist-cjs/protocols/Aws_json1_1.js +18 -12
- package/dist-es/Firehose.js +50 -57
- package/dist-es/FirehoseClient.js +22 -28
- package/dist-es/commands/CreateDeliveryStreamCommand.js +21 -28
- package/dist-es/commands/DeleteDeliveryStreamCommand.js +21 -28
- package/dist-es/commands/DescribeDeliveryStreamCommand.js +21 -28
- package/dist-es/commands/ListDeliveryStreamsCommand.js +21 -28
- package/dist-es/commands/ListTagsForDeliveryStreamCommand.js +21 -28
- package/dist-es/commands/PutRecordBatchCommand.js +21 -28
- package/dist-es/commands/PutRecordCommand.js +21 -28
- package/dist-es/commands/StartDeliveryStreamEncryptionCommand.js +21 -28
- package/dist-es/commands/StopDeliveryStreamEncryptionCommand.js +21 -28
- package/dist-es/commands/TagDeliveryStreamCommand.js +21 -28
- package/dist-es/commands/UntagDeliveryStreamCommand.js +21 -28
- package/dist-es/commands/UpdateDestinationCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/FirehoseServiceException.js +5 -10
- package/dist-es/models/models_0.js +403 -199
- package/dist-es/protocols/Aws_json1_1.js +1574 -1509
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,26 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.183.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.182.0...v3.183.0) (2022-10-03)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/client-firehose
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.181.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.180.0...v3.181.0) (2022-09-29)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **clients:** make parseErrorBody async ([#3999](https://github.com/aws/aws-sdk-js-v3/issues/3999)) ([2558c93](https://github.com/aws/aws-sdk-js-v3/commit/2558c93c050357ac6dc47aa0452b15b12ebfd676))
|
|
20
|
+
* **clients:** populate message field when parsing errors ([#3995](https://github.com/aws/aws-sdk-js-v3/issues/3995)) ([02e47f1](https://github.com/aws/aws-sdk-js-v3/commit/02e47f14397ae0a5d2e2883350d038b307fdcdb4))
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
6
26
|
# [3.180.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.179.0...v3.180.0) (2022-09-27)
|
|
7
27
|
|
|
8
28
|
**Note:** Version bump only for package @aws-sdk/client-firehose
|
|
@@ -142,7 +142,7 @@ exports.deserializeAws_json1_1CreateDeliveryStreamCommand = deserializeAws_json1
|
|
|
142
142
|
const deserializeAws_json1_1CreateDeliveryStreamCommandError = async (output, context) => {
|
|
143
143
|
const parsedOutput = {
|
|
144
144
|
...output,
|
|
145
|
-
body: await
|
|
145
|
+
body: await parseErrorBody(output.body, context),
|
|
146
146
|
};
|
|
147
147
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
148
148
|
switch (errorCode) {
|
|
@@ -185,7 +185,7 @@ exports.deserializeAws_json1_1DeleteDeliveryStreamCommand = deserializeAws_json1
|
|
|
185
185
|
const deserializeAws_json1_1DeleteDeliveryStreamCommandError = async (output, context) => {
|
|
186
186
|
const parsedOutput = {
|
|
187
187
|
...output,
|
|
188
|
-
body: await
|
|
188
|
+
body: await parseErrorBody(output.body, context),
|
|
189
189
|
};
|
|
190
190
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
191
191
|
switch (errorCode) {
|
|
@@ -222,7 +222,7 @@ exports.deserializeAws_json1_1DescribeDeliveryStreamCommand = deserializeAws_jso
|
|
|
222
222
|
const deserializeAws_json1_1DescribeDeliveryStreamCommandError = async (output, context) => {
|
|
223
223
|
const parsedOutput = {
|
|
224
224
|
...output,
|
|
225
|
-
body: await
|
|
225
|
+
body: await parseErrorBody(output.body, context),
|
|
226
226
|
};
|
|
227
227
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
228
228
|
switch (errorCode) {
|
|
@@ -256,7 +256,7 @@ exports.deserializeAws_json1_1ListDeliveryStreamsCommand = deserializeAws_json1_
|
|
|
256
256
|
const deserializeAws_json1_1ListDeliveryStreamsCommandError = async (output, context) => {
|
|
257
257
|
const parsedOutput = {
|
|
258
258
|
...output,
|
|
259
|
-
body: await
|
|
259
|
+
body: await parseErrorBody(output.body, context),
|
|
260
260
|
};
|
|
261
261
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
262
262
|
const parsedBody = parsedOutput.body;
|
|
@@ -284,7 +284,7 @@ exports.deserializeAws_json1_1ListTagsForDeliveryStreamCommand = deserializeAws_
|
|
|
284
284
|
const deserializeAws_json1_1ListTagsForDeliveryStreamCommandError = async (output, context) => {
|
|
285
285
|
const parsedOutput = {
|
|
286
286
|
...output,
|
|
287
|
-
body: await
|
|
287
|
+
body: await parseErrorBody(output.body, context),
|
|
288
288
|
};
|
|
289
289
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
290
290
|
switch (errorCode) {
|
|
@@ -324,7 +324,7 @@ exports.deserializeAws_json1_1PutRecordCommand = deserializeAws_json1_1PutRecord
|
|
|
324
324
|
const deserializeAws_json1_1PutRecordCommandError = async (output, context) => {
|
|
325
325
|
const parsedOutput = {
|
|
326
326
|
...output,
|
|
327
|
-
body: await
|
|
327
|
+
body: await parseErrorBody(output.body, context),
|
|
328
328
|
};
|
|
329
329
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
330
330
|
switch (errorCode) {
|
|
@@ -367,7 +367,7 @@ exports.deserializeAws_json1_1PutRecordBatchCommand = deserializeAws_json1_1PutR
|
|
|
367
367
|
const deserializeAws_json1_1PutRecordBatchCommandError = async (output, context) => {
|
|
368
368
|
const parsedOutput = {
|
|
369
369
|
...output,
|
|
370
|
-
body: await
|
|
370
|
+
body: await parseErrorBody(output.body, context),
|
|
371
371
|
};
|
|
372
372
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
373
373
|
switch (errorCode) {
|
|
@@ -410,7 +410,7 @@ exports.deserializeAws_json1_1StartDeliveryStreamEncryptionCommand = deserialize
|
|
|
410
410
|
const deserializeAws_json1_1StartDeliveryStreamEncryptionCommandError = async (output, context) => {
|
|
411
411
|
const parsedOutput = {
|
|
412
412
|
...output,
|
|
413
|
-
body: await
|
|
413
|
+
body: await parseErrorBody(output.body, context),
|
|
414
414
|
};
|
|
415
415
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
416
416
|
switch (errorCode) {
|
|
@@ -456,7 +456,7 @@ exports.deserializeAws_json1_1StopDeliveryStreamEncryptionCommand = deserializeA
|
|
|
456
456
|
const deserializeAws_json1_1StopDeliveryStreamEncryptionCommandError = async (output, context) => {
|
|
457
457
|
const parsedOutput = {
|
|
458
458
|
...output,
|
|
459
|
-
body: await
|
|
459
|
+
body: await parseErrorBody(output.body, context),
|
|
460
460
|
};
|
|
461
461
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
462
462
|
switch (errorCode) {
|
|
@@ -499,7 +499,7 @@ exports.deserializeAws_json1_1TagDeliveryStreamCommand = deserializeAws_json1_1T
|
|
|
499
499
|
const deserializeAws_json1_1TagDeliveryStreamCommandError = async (output, context) => {
|
|
500
500
|
const parsedOutput = {
|
|
501
501
|
...output,
|
|
502
|
-
body: await
|
|
502
|
+
body: await parseErrorBody(output.body, context),
|
|
503
503
|
};
|
|
504
504
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
505
505
|
switch (errorCode) {
|
|
@@ -542,7 +542,7 @@ exports.deserializeAws_json1_1UntagDeliveryStreamCommand = deserializeAws_json1_
|
|
|
542
542
|
const deserializeAws_json1_1UntagDeliveryStreamCommandError = async (output, context) => {
|
|
543
543
|
const parsedOutput = {
|
|
544
544
|
...output,
|
|
545
|
-
body: await
|
|
545
|
+
body: await parseErrorBody(output.body, context),
|
|
546
546
|
};
|
|
547
547
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
548
548
|
switch (errorCode) {
|
|
@@ -585,7 +585,7 @@ exports.deserializeAws_json1_1UpdateDestinationCommand = deserializeAws_json1_1U
|
|
|
585
585
|
const deserializeAws_json1_1UpdateDestinationCommandError = async (output, context) => {
|
|
586
586
|
const parsedOutput = {
|
|
587
587
|
...output,
|
|
588
|
-
body: await
|
|
588
|
+
body: await parseErrorBody(output.body, context),
|
|
589
589
|
};
|
|
590
590
|
const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
|
|
591
591
|
switch (errorCode) {
|
|
@@ -2257,6 +2257,12 @@ const parseBody = (streamBody, context) => collectBodyString(streamBody, context
|
|
|
2257
2257
|
}
|
|
2258
2258
|
return {};
|
|
2259
2259
|
});
|
|
2260
|
+
const parseErrorBody = async (errorBody, context) => {
|
|
2261
|
+
var _a;
|
|
2262
|
+
const value = await parseBody(errorBody, context);
|
|
2263
|
+
value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;
|
|
2264
|
+
return value;
|
|
2265
|
+
};
|
|
2260
2266
|
const loadRestJsonErrorCode = (output, data) => {
|
|
2261
2267
|
const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
|
|
2262
2268
|
const sanitizeErrorCode = (rawValue) => {
|
package/dist-es/Firehose.js
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { __extends } from "tslib";
|
|
2
1
|
import { CreateDeliveryStreamCommand, } from "./commands/CreateDeliveryStreamCommand";
|
|
3
2
|
import { DeleteDeliveryStreamCommand, } from "./commands/DeleteDeliveryStreamCommand";
|
|
4
3
|
import { DescribeDeliveryStreamCommand, } from "./commands/DescribeDeliveryStreamCommand";
|
|
@@ -12,179 +11,173 @@ import { TagDeliveryStreamCommand, } from "./commands/TagDeliveryStreamCommand";
|
|
|
12
11
|
import { UntagDeliveryStreamCommand, } from "./commands/UntagDeliveryStreamCommand";
|
|
13
12
|
import { UpdateDestinationCommand, } from "./commands/UpdateDestinationCommand";
|
|
14
13
|
import { FirehoseClient } from "./FirehoseClient";
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
return _super !== null && _super.apply(this, arguments) || this;
|
|
19
|
-
}
|
|
20
|
-
Firehose.prototype.createDeliveryStream = function (args, optionsOrCb, cb) {
|
|
21
|
-
var command = new CreateDeliveryStreamCommand(args);
|
|
14
|
+
export class Firehose extends FirehoseClient {
|
|
15
|
+
createDeliveryStream(args, optionsOrCb, cb) {
|
|
16
|
+
const command = new CreateDeliveryStreamCommand(args);
|
|
22
17
|
if (typeof optionsOrCb === "function") {
|
|
23
18
|
this.send(command, optionsOrCb);
|
|
24
19
|
}
|
|
25
20
|
else if (typeof cb === "function") {
|
|
26
21
|
if (typeof optionsOrCb !== "object")
|
|
27
|
-
throw new Error(
|
|
22
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
28
23
|
this.send(command, optionsOrCb || {}, cb);
|
|
29
24
|
}
|
|
30
25
|
else {
|
|
31
26
|
return this.send(command, optionsOrCb);
|
|
32
27
|
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
|
|
28
|
+
}
|
|
29
|
+
deleteDeliveryStream(args, optionsOrCb, cb) {
|
|
30
|
+
const command = new DeleteDeliveryStreamCommand(args);
|
|
36
31
|
if (typeof optionsOrCb === "function") {
|
|
37
32
|
this.send(command, optionsOrCb);
|
|
38
33
|
}
|
|
39
34
|
else if (typeof cb === "function") {
|
|
40
35
|
if (typeof optionsOrCb !== "object")
|
|
41
|
-
throw new Error(
|
|
36
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
42
37
|
this.send(command, optionsOrCb || {}, cb);
|
|
43
38
|
}
|
|
44
39
|
else {
|
|
45
40
|
return this.send(command, optionsOrCb);
|
|
46
41
|
}
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
|
|
42
|
+
}
|
|
43
|
+
describeDeliveryStream(args, optionsOrCb, cb) {
|
|
44
|
+
const command = new DescribeDeliveryStreamCommand(args);
|
|
50
45
|
if (typeof optionsOrCb === "function") {
|
|
51
46
|
this.send(command, optionsOrCb);
|
|
52
47
|
}
|
|
53
48
|
else if (typeof cb === "function") {
|
|
54
49
|
if (typeof optionsOrCb !== "object")
|
|
55
|
-
throw new Error(
|
|
50
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
56
51
|
this.send(command, optionsOrCb || {}, cb);
|
|
57
52
|
}
|
|
58
53
|
else {
|
|
59
54
|
return this.send(command, optionsOrCb);
|
|
60
55
|
}
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
|
|
56
|
+
}
|
|
57
|
+
listDeliveryStreams(args, optionsOrCb, cb) {
|
|
58
|
+
const command = new ListDeliveryStreamsCommand(args);
|
|
64
59
|
if (typeof optionsOrCb === "function") {
|
|
65
60
|
this.send(command, optionsOrCb);
|
|
66
61
|
}
|
|
67
62
|
else if (typeof cb === "function") {
|
|
68
63
|
if (typeof optionsOrCb !== "object")
|
|
69
|
-
throw new Error(
|
|
64
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
70
65
|
this.send(command, optionsOrCb || {}, cb);
|
|
71
66
|
}
|
|
72
67
|
else {
|
|
73
68
|
return this.send(command, optionsOrCb);
|
|
74
69
|
}
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
|
|
70
|
+
}
|
|
71
|
+
listTagsForDeliveryStream(args, optionsOrCb, cb) {
|
|
72
|
+
const command = new ListTagsForDeliveryStreamCommand(args);
|
|
78
73
|
if (typeof optionsOrCb === "function") {
|
|
79
74
|
this.send(command, optionsOrCb);
|
|
80
75
|
}
|
|
81
76
|
else if (typeof cb === "function") {
|
|
82
77
|
if (typeof optionsOrCb !== "object")
|
|
83
|
-
throw new Error(
|
|
78
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
84
79
|
this.send(command, optionsOrCb || {}, cb);
|
|
85
80
|
}
|
|
86
81
|
else {
|
|
87
82
|
return this.send(command, optionsOrCb);
|
|
88
83
|
}
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
|
|
84
|
+
}
|
|
85
|
+
putRecord(args, optionsOrCb, cb) {
|
|
86
|
+
const command = new PutRecordCommand(args);
|
|
92
87
|
if (typeof optionsOrCb === "function") {
|
|
93
88
|
this.send(command, optionsOrCb);
|
|
94
89
|
}
|
|
95
90
|
else if (typeof cb === "function") {
|
|
96
91
|
if (typeof optionsOrCb !== "object")
|
|
97
|
-
throw new Error(
|
|
92
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
98
93
|
this.send(command, optionsOrCb || {}, cb);
|
|
99
94
|
}
|
|
100
95
|
else {
|
|
101
96
|
return this.send(command, optionsOrCb);
|
|
102
97
|
}
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
|
|
98
|
+
}
|
|
99
|
+
putRecordBatch(args, optionsOrCb, cb) {
|
|
100
|
+
const command = new PutRecordBatchCommand(args);
|
|
106
101
|
if (typeof optionsOrCb === "function") {
|
|
107
102
|
this.send(command, optionsOrCb);
|
|
108
103
|
}
|
|
109
104
|
else if (typeof cb === "function") {
|
|
110
105
|
if (typeof optionsOrCb !== "object")
|
|
111
|
-
throw new Error(
|
|
106
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
112
107
|
this.send(command, optionsOrCb || {}, cb);
|
|
113
108
|
}
|
|
114
109
|
else {
|
|
115
110
|
return this.send(command, optionsOrCb);
|
|
116
111
|
}
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
|
|
112
|
+
}
|
|
113
|
+
startDeliveryStreamEncryption(args, optionsOrCb, cb) {
|
|
114
|
+
const command = new StartDeliveryStreamEncryptionCommand(args);
|
|
120
115
|
if (typeof optionsOrCb === "function") {
|
|
121
116
|
this.send(command, optionsOrCb);
|
|
122
117
|
}
|
|
123
118
|
else if (typeof cb === "function") {
|
|
124
119
|
if (typeof optionsOrCb !== "object")
|
|
125
|
-
throw new Error(
|
|
120
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
126
121
|
this.send(command, optionsOrCb || {}, cb);
|
|
127
122
|
}
|
|
128
123
|
else {
|
|
129
124
|
return this.send(command, optionsOrCb);
|
|
130
125
|
}
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
|
|
126
|
+
}
|
|
127
|
+
stopDeliveryStreamEncryption(args, optionsOrCb, cb) {
|
|
128
|
+
const command = new StopDeliveryStreamEncryptionCommand(args);
|
|
134
129
|
if (typeof optionsOrCb === "function") {
|
|
135
130
|
this.send(command, optionsOrCb);
|
|
136
131
|
}
|
|
137
132
|
else if (typeof cb === "function") {
|
|
138
133
|
if (typeof optionsOrCb !== "object")
|
|
139
|
-
throw new Error(
|
|
134
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
140
135
|
this.send(command, optionsOrCb || {}, cb);
|
|
141
136
|
}
|
|
142
137
|
else {
|
|
143
138
|
return this.send(command, optionsOrCb);
|
|
144
139
|
}
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
|
|
140
|
+
}
|
|
141
|
+
tagDeliveryStream(args, optionsOrCb, cb) {
|
|
142
|
+
const command = new TagDeliveryStreamCommand(args);
|
|
148
143
|
if (typeof optionsOrCb === "function") {
|
|
149
144
|
this.send(command, optionsOrCb);
|
|
150
145
|
}
|
|
151
146
|
else if (typeof cb === "function") {
|
|
152
147
|
if (typeof optionsOrCb !== "object")
|
|
153
|
-
throw new Error(
|
|
148
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
154
149
|
this.send(command, optionsOrCb || {}, cb);
|
|
155
150
|
}
|
|
156
151
|
else {
|
|
157
152
|
return this.send(command, optionsOrCb);
|
|
158
153
|
}
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
|
|
154
|
+
}
|
|
155
|
+
untagDeliveryStream(args, optionsOrCb, cb) {
|
|
156
|
+
const command = new UntagDeliveryStreamCommand(args);
|
|
162
157
|
if (typeof optionsOrCb === "function") {
|
|
163
158
|
this.send(command, optionsOrCb);
|
|
164
159
|
}
|
|
165
160
|
else if (typeof cb === "function") {
|
|
166
161
|
if (typeof optionsOrCb !== "object")
|
|
167
|
-
throw new Error(
|
|
162
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
168
163
|
this.send(command, optionsOrCb || {}, cb);
|
|
169
164
|
}
|
|
170
165
|
else {
|
|
171
166
|
return this.send(command, optionsOrCb);
|
|
172
167
|
}
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
|
|
168
|
+
}
|
|
169
|
+
updateDestination(args, optionsOrCb, cb) {
|
|
170
|
+
const command = new UpdateDestinationCommand(args);
|
|
176
171
|
if (typeof optionsOrCb === "function") {
|
|
177
172
|
this.send(command, optionsOrCb);
|
|
178
173
|
}
|
|
179
174
|
else if (typeof cb === "function") {
|
|
180
175
|
if (typeof optionsOrCb !== "object")
|
|
181
|
-
throw new Error(
|
|
176
|
+
throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
|
|
182
177
|
this.send(command, optionsOrCb || {}, cb);
|
|
183
178
|
}
|
|
184
179
|
else {
|
|
185
180
|
return this.send(command, optionsOrCb);
|
|
186
181
|
}
|
|
187
|
-
}
|
|
188
|
-
|
|
189
|
-
}(FirehoseClient));
|
|
190
|
-
export { Firehose };
|
|
182
|
+
}
|
|
183
|
+
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { __extends } from "tslib";
|
|
2
1
|
import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-resolver";
|
|
3
2
|
import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
|
|
4
3
|
import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
|
|
@@ -9,31 +8,26 @@ import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-sig
|
|
|
9
8
|
import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
|
|
10
9
|
import { Client as __Client, } from "@aws-sdk/smithy-client";
|
|
11
10
|
import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
_this.middlewareStack.use(getAwsAuthPlugin(_this.config));
|
|
31
|
-
_this.middlewareStack.use(getUserAgentPlugin(_this.config));
|
|
32
|
-
return _this;
|
|
11
|
+
export class FirehoseClient extends __Client {
|
|
12
|
+
constructor(configuration) {
|
|
13
|
+
const _config_0 = __getRuntimeConfig(configuration);
|
|
14
|
+
const _config_1 = resolveRegionConfig(_config_0);
|
|
15
|
+
const _config_2 = resolveEndpointsConfig(_config_1);
|
|
16
|
+
const _config_3 = resolveRetryConfig(_config_2);
|
|
17
|
+
const _config_4 = resolveHostHeaderConfig(_config_3);
|
|
18
|
+
const _config_5 = resolveAwsAuthConfig(_config_4);
|
|
19
|
+
const _config_6 = resolveUserAgentConfig(_config_5);
|
|
20
|
+
super(_config_6);
|
|
21
|
+
this.config = _config_6;
|
|
22
|
+
this.middlewareStack.use(getRetryPlugin(this.config));
|
|
23
|
+
this.middlewareStack.use(getContentLengthPlugin(this.config));
|
|
24
|
+
this.middlewareStack.use(getHostHeaderPlugin(this.config));
|
|
25
|
+
this.middlewareStack.use(getLoggerPlugin(this.config));
|
|
26
|
+
this.middlewareStack.use(getRecursionDetectionPlugin(this.config));
|
|
27
|
+
this.middlewareStack.use(getAwsAuthPlugin(this.config));
|
|
28
|
+
this.middlewareStack.use(getUserAgentPlugin(this.config));
|
|
33
29
|
}
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
}(__Client));
|
|
39
|
-
export { FirehoseClient };
|
|
30
|
+
destroy() {
|
|
31
|
+
super.destroy();
|
|
32
|
+
}
|
|
33
|
+
}
|
|
@@ -1,39 +1,32 @@
|
|
|
1
|
-
import { __extends } from "tslib";
|
|
2
1
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
3
|
import { CreateDeliveryStreamInputFilterSensitiveLog, CreateDeliveryStreamOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_json1_1CreateDeliveryStreamCommand, serializeAws_json1_1CreateDeliveryStreamCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
_this.input = input;
|
|
11
|
-
return _this;
|
|
5
|
+
export class CreateDeliveryStreamCommand extends $Command {
|
|
6
|
+
constructor(input) {
|
|
7
|
+
super();
|
|
8
|
+
this.input = input;
|
|
12
9
|
}
|
|
13
|
-
|
|
10
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
11
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
logger
|
|
21
|
-
clientName
|
|
22
|
-
commandName
|
|
12
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
13
|
+
const { logger } = configuration;
|
|
14
|
+
const clientName = "FirehoseClient";
|
|
15
|
+
const commandName = "CreateDeliveryStreamCommand";
|
|
16
|
+
const handlerExecutionContext = {
|
|
17
|
+
logger,
|
|
18
|
+
clientName,
|
|
19
|
+
commandName,
|
|
23
20
|
inputFilterSensitiveLog: CreateDeliveryStreamInputFilterSensitiveLog,
|
|
24
21
|
outputFilterSensitiveLog: CreateDeliveryStreamOutputFilterSensitiveLog,
|
|
25
22
|
};
|
|
26
|
-
|
|
27
|
-
return stack.resolve(
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
};
|
|
31
|
-
CreateDeliveryStreamCommand.prototype.serialize = function (input, context) {
|
|
23
|
+
const { requestHandler } = configuration;
|
|
24
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
25
|
+
}
|
|
26
|
+
serialize(input, context) {
|
|
32
27
|
return serializeAws_json1_1CreateDeliveryStreamCommand(input, context);
|
|
33
|
-
}
|
|
34
|
-
|
|
28
|
+
}
|
|
29
|
+
deserialize(output, context) {
|
|
35
30
|
return deserializeAws_json1_1CreateDeliveryStreamCommand(output, context);
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
}($Command));
|
|
39
|
-
export { CreateDeliveryStreamCommand };
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -1,39 +1,32 @@
|
|
|
1
|
-
import { __extends } from "tslib";
|
|
2
1
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
3
|
import { DeleteDeliveryStreamInputFilterSensitiveLog, DeleteDeliveryStreamOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_json1_1DeleteDeliveryStreamCommand, serializeAws_json1_1DeleteDeliveryStreamCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
_this.input = input;
|
|
11
|
-
return _this;
|
|
5
|
+
export class DeleteDeliveryStreamCommand extends $Command {
|
|
6
|
+
constructor(input) {
|
|
7
|
+
super();
|
|
8
|
+
this.input = input;
|
|
12
9
|
}
|
|
13
|
-
|
|
10
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
11
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
logger
|
|
21
|
-
clientName
|
|
22
|
-
commandName
|
|
12
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
13
|
+
const { logger } = configuration;
|
|
14
|
+
const clientName = "FirehoseClient";
|
|
15
|
+
const commandName = "DeleteDeliveryStreamCommand";
|
|
16
|
+
const handlerExecutionContext = {
|
|
17
|
+
logger,
|
|
18
|
+
clientName,
|
|
19
|
+
commandName,
|
|
23
20
|
inputFilterSensitiveLog: DeleteDeliveryStreamInputFilterSensitiveLog,
|
|
24
21
|
outputFilterSensitiveLog: DeleteDeliveryStreamOutputFilterSensitiveLog,
|
|
25
22
|
};
|
|
26
|
-
|
|
27
|
-
return stack.resolve(
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
};
|
|
31
|
-
DeleteDeliveryStreamCommand.prototype.serialize = function (input, context) {
|
|
23
|
+
const { requestHandler } = configuration;
|
|
24
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
25
|
+
}
|
|
26
|
+
serialize(input, context) {
|
|
32
27
|
return serializeAws_json1_1DeleteDeliveryStreamCommand(input, context);
|
|
33
|
-
}
|
|
34
|
-
|
|
28
|
+
}
|
|
29
|
+
deserialize(output, context) {
|
|
35
30
|
return deserializeAws_json1_1DeleteDeliveryStreamCommand(output, context);
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
}($Command));
|
|
39
|
-
export { DeleteDeliveryStreamCommand };
|
|
31
|
+
}
|
|
32
|
+
}
|
|
@@ -1,39 +1,32 @@
|
|
|
1
|
-
import { __extends } from "tslib";
|
|
2
1
|
import { getSerdePlugin } from "@aws-sdk/middleware-serde";
|
|
3
2
|
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
4
3
|
import { DescribeDeliveryStreamInputFilterSensitiveLog, DescribeDeliveryStreamOutputFilterSensitiveLog, } from "../models/models_0";
|
|
5
4
|
import { deserializeAws_json1_1DescribeDeliveryStreamCommand, serializeAws_json1_1DescribeDeliveryStreamCommand, } from "../protocols/Aws_json1_1";
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
_this.input = input;
|
|
11
|
-
return _this;
|
|
5
|
+
export class DescribeDeliveryStreamCommand extends $Command {
|
|
6
|
+
constructor(input) {
|
|
7
|
+
super();
|
|
8
|
+
this.input = input;
|
|
12
9
|
}
|
|
13
|
-
|
|
10
|
+
resolveMiddleware(clientStack, configuration, options) {
|
|
14
11
|
this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
logger
|
|
21
|
-
clientName
|
|
22
|
-
commandName
|
|
12
|
+
const stack = clientStack.concat(this.middlewareStack);
|
|
13
|
+
const { logger } = configuration;
|
|
14
|
+
const clientName = "FirehoseClient";
|
|
15
|
+
const commandName = "DescribeDeliveryStreamCommand";
|
|
16
|
+
const handlerExecutionContext = {
|
|
17
|
+
logger,
|
|
18
|
+
clientName,
|
|
19
|
+
commandName,
|
|
23
20
|
inputFilterSensitiveLog: DescribeDeliveryStreamInputFilterSensitiveLog,
|
|
24
21
|
outputFilterSensitiveLog: DescribeDeliveryStreamOutputFilterSensitiveLog,
|
|
25
22
|
};
|
|
26
|
-
|
|
27
|
-
return stack.resolve(
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
};
|
|
31
|
-
DescribeDeliveryStreamCommand.prototype.serialize = function (input, context) {
|
|
23
|
+
const { requestHandler } = configuration;
|
|
24
|
+
return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
|
|
25
|
+
}
|
|
26
|
+
serialize(input, context) {
|
|
32
27
|
return serializeAws_json1_1DescribeDeliveryStreamCommand(input, context);
|
|
33
|
-
}
|
|
34
|
-
|
|
28
|
+
}
|
|
29
|
+
deserialize(output, context) {
|
|
35
30
|
return deserializeAws_json1_1DescribeDeliveryStreamCommand(output, context);
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
}($Command));
|
|
39
|
-
export { DescribeDeliveryStreamCommand };
|
|
31
|
+
}
|
|
32
|
+
}
|