@aws-sdk/client-kinesis-analytics 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.
Files changed (33) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist-cjs/protocols/Aws_json1_1.js +26 -20
  3. package/dist-es/KinesisAnalytics.js +82 -89
  4. package/dist-es/KinesisAnalyticsClient.js +22 -28
  5. package/dist-es/commands/AddApplicationCloudWatchLoggingOptionCommand.js +21 -28
  6. package/dist-es/commands/AddApplicationInputCommand.js +21 -28
  7. package/dist-es/commands/AddApplicationInputProcessingConfigurationCommand.js +21 -28
  8. package/dist-es/commands/AddApplicationOutputCommand.js +21 -28
  9. package/dist-es/commands/AddApplicationReferenceDataSourceCommand.js +21 -28
  10. package/dist-es/commands/CreateApplicationCommand.js +21 -28
  11. package/dist-es/commands/DeleteApplicationCloudWatchLoggingOptionCommand.js +21 -28
  12. package/dist-es/commands/DeleteApplicationCommand.js +21 -28
  13. package/dist-es/commands/DeleteApplicationInputProcessingConfigurationCommand.js +21 -28
  14. package/dist-es/commands/DeleteApplicationOutputCommand.js +21 -28
  15. package/dist-es/commands/DeleteApplicationReferenceDataSourceCommand.js +21 -28
  16. package/dist-es/commands/DescribeApplicationCommand.js +21 -28
  17. package/dist-es/commands/DiscoverInputSchemaCommand.js +21 -28
  18. package/dist-es/commands/ListApplicationsCommand.js +21 -28
  19. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  20. package/dist-es/commands/StartApplicationCommand.js +21 -28
  21. package/dist-es/commands/StopApplicationCommand.js +21 -28
  22. package/dist-es/commands/TagResourceCommand.js +21 -28
  23. package/dist-es/commands/UntagResourceCommand.js +21 -28
  24. package/dist-es/commands/UpdateApplicationCommand.js +21 -28
  25. package/dist-es/endpoints.js +8 -8
  26. package/dist-es/models/KinesisAnalyticsServiceException.js +5 -10
  27. package/dist-es/models/models_0.js +413 -228
  28. package/dist-es/protocols/Aws_json1_1.js +1793 -2055
  29. package/dist-es/runtimeConfig.browser.js +26 -12
  30. package/dist-es/runtimeConfig.js +30 -12
  31. package/dist-es/runtimeConfig.native.js +8 -5
  32. package/dist-es/runtimeConfig.shared.js +8 -11
  33. 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-kinesis-analytics
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-kinesis-analytics
@@ -222,7 +222,7 @@ exports.deserializeAws_json1_1AddApplicationCloudWatchLoggingOptionCommand = des
222
222
  const deserializeAws_json1_1AddApplicationCloudWatchLoggingOptionCommandError = async (output, context) => {
223
223
  const parsedOutput = {
224
224
  ...output,
225
- body: await parseBody(output.body, context),
225
+ body: await parseErrorBody(output.body, context),
226
226
  };
227
227
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
228
228
  switch (errorCode) {
@@ -268,7 +268,7 @@ exports.deserializeAws_json1_1AddApplicationInputCommand = deserializeAws_json1_
268
268
  const deserializeAws_json1_1AddApplicationInputCommandError = async (output, context) => {
269
269
  const parsedOutput = {
270
270
  ...output,
271
- body: await parseBody(output.body, context),
271
+ body: await parseErrorBody(output.body, context),
272
272
  };
273
273
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
274
274
  switch (errorCode) {
@@ -317,7 +317,7 @@ exports.deserializeAws_json1_1AddApplicationInputProcessingConfigurationCommand
317
317
  const deserializeAws_json1_1AddApplicationInputProcessingConfigurationCommandError = async (output, context) => {
318
318
  const parsedOutput = {
319
319
  ...output,
320
- body: await parseBody(output.body, context),
320
+ body: await parseErrorBody(output.body, context),
321
321
  };
322
322
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
323
323
  switch (errorCode) {
@@ -363,7 +363,7 @@ exports.deserializeAws_json1_1AddApplicationOutputCommand = deserializeAws_json1
363
363
  const deserializeAws_json1_1AddApplicationOutputCommandError = async (output, context) => {
364
364
  const parsedOutput = {
365
365
  ...output,
366
- body: await parseBody(output.body, context),
366
+ body: await parseErrorBody(output.body, context),
367
367
  };
368
368
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
369
369
  switch (errorCode) {
@@ -409,7 +409,7 @@ exports.deserializeAws_json1_1AddApplicationReferenceDataSourceCommand = deseria
409
409
  const deserializeAws_json1_1AddApplicationReferenceDataSourceCommandError = async (output, context) => {
410
410
  const parsedOutput = {
411
411
  ...output,
412
- body: await parseBody(output.body, context),
412
+ body: await parseErrorBody(output.body, context),
413
413
  };
414
414
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
415
415
  switch (errorCode) {
@@ -455,7 +455,7 @@ exports.deserializeAws_json1_1CreateApplicationCommand = deserializeAws_json1_1C
455
455
  const deserializeAws_json1_1CreateApplicationCommandError = async (output, context) => {
456
456
  const parsedOutput = {
457
457
  ...output,
458
- body: await parseBody(output.body, context),
458
+ body: await parseErrorBody(output.body, context),
459
459
  };
460
460
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
461
461
  switch (errorCode) {
@@ -504,7 +504,7 @@ exports.deserializeAws_json1_1DeleteApplicationCommand = deserializeAws_json1_1D
504
504
  const deserializeAws_json1_1DeleteApplicationCommandError = async (output, context) => {
505
505
  const parsedOutput = {
506
506
  ...output,
507
- body: await parseBody(output.body, context),
507
+ body: await parseErrorBody(output.body, context),
508
508
  };
509
509
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
510
510
  switch (errorCode) {
@@ -547,7 +547,7 @@ exports.deserializeAws_json1_1DeleteApplicationCloudWatchLoggingOptionCommand =
547
547
  const deserializeAws_json1_1DeleteApplicationCloudWatchLoggingOptionCommandError = async (output, context) => {
548
548
  const parsedOutput = {
549
549
  ...output,
550
- body: await parseBody(output.body, context),
550
+ body: await parseErrorBody(output.body, context),
551
551
  };
552
552
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
553
553
  switch (errorCode) {
@@ -593,7 +593,7 @@ exports.deserializeAws_json1_1DeleteApplicationInputProcessingConfigurationComma
593
593
  const deserializeAws_json1_1DeleteApplicationInputProcessingConfigurationCommandError = async (output, context) => {
594
594
  const parsedOutput = {
595
595
  ...output,
596
- body: await parseBody(output.body, context),
596
+ body: await parseErrorBody(output.body, context),
597
597
  };
598
598
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
599
599
  switch (errorCode) {
@@ -639,7 +639,7 @@ exports.deserializeAws_json1_1DeleteApplicationOutputCommand = deserializeAws_js
639
639
  const deserializeAws_json1_1DeleteApplicationOutputCommandError = async (output, context) => {
640
640
  const parsedOutput = {
641
641
  ...output,
642
- body: await parseBody(output.body, context),
642
+ body: await parseErrorBody(output.body, context),
643
643
  };
644
644
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
645
645
  switch (errorCode) {
@@ -685,7 +685,7 @@ exports.deserializeAws_json1_1DeleteApplicationReferenceDataSourceCommand = dese
685
685
  const deserializeAws_json1_1DeleteApplicationReferenceDataSourceCommandError = async (output, context) => {
686
686
  const parsedOutput = {
687
687
  ...output,
688
- body: await parseBody(output.body, context),
688
+ body: await parseErrorBody(output.body, context),
689
689
  };
690
690
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
691
691
  switch (errorCode) {
@@ -731,7 +731,7 @@ exports.deserializeAws_json1_1DescribeApplicationCommand = deserializeAws_json1_
731
731
  const deserializeAws_json1_1DescribeApplicationCommandError = async (output, context) => {
732
732
  const parsedOutput = {
733
733
  ...output,
734
- body: await parseBody(output.body, context),
734
+ body: await parseErrorBody(output.body, context),
735
735
  };
736
736
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
737
737
  switch (errorCode) {
@@ -768,7 +768,7 @@ exports.deserializeAws_json1_1DiscoverInputSchemaCommand = deserializeAws_json1_
768
768
  const deserializeAws_json1_1DiscoverInputSchemaCommandError = async (output, context) => {
769
769
  const parsedOutput = {
770
770
  ...output,
771
- body: await parseBody(output.body, context),
771
+ body: await parseErrorBody(output.body, context),
772
772
  };
773
773
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
774
774
  switch (errorCode) {
@@ -811,7 +811,7 @@ exports.deserializeAws_json1_1ListApplicationsCommand = deserializeAws_json1_1Li
811
811
  const deserializeAws_json1_1ListApplicationsCommandError = async (output, context) => {
812
812
  const parsedOutput = {
813
813
  ...output,
814
- body: await parseBody(output.body, context),
814
+ body: await parseErrorBody(output.body, context),
815
815
  };
816
816
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
817
817
  const parsedBody = parsedOutput.body;
@@ -839,7 +839,7 @@ exports.deserializeAws_json1_1ListTagsForResourceCommand = deserializeAws_json1_
839
839
  const deserializeAws_json1_1ListTagsForResourceCommandError = async (output, context) => {
840
840
  const parsedOutput = {
841
841
  ...output,
842
- body: await parseBody(output.body, context),
842
+ body: await parseErrorBody(output.body, context),
843
843
  };
844
844
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
845
845
  switch (errorCode) {
@@ -879,7 +879,7 @@ exports.deserializeAws_json1_1StartApplicationCommand = deserializeAws_json1_1St
879
879
  const deserializeAws_json1_1StartApplicationCommandError = async (output, context) => {
880
880
  const parsedOutput = {
881
881
  ...output,
882
- body: await parseBody(output.body, context),
882
+ body: await parseErrorBody(output.body, context),
883
883
  };
884
884
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
885
885
  switch (errorCode) {
@@ -925,7 +925,7 @@ exports.deserializeAws_json1_1StopApplicationCommand = deserializeAws_json1_1Sto
925
925
  const deserializeAws_json1_1StopApplicationCommandError = async (output, context) => {
926
926
  const parsedOutput = {
927
927
  ...output,
928
- body: await parseBody(output.body, context),
928
+ body: await parseErrorBody(output.body, context),
929
929
  };
930
930
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
931
931
  switch (errorCode) {
@@ -965,7 +965,7 @@ exports.deserializeAws_json1_1TagResourceCommand = deserializeAws_json1_1TagReso
965
965
  const deserializeAws_json1_1TagResourceCommandError = async (output, context) => {
966
966
  const parsedOutput = {
967
967
  ...output,
968
- body: await parseBody(output.body, context),
968
+ body: await parseErrorBody(output.body, context),
969
969
  };
970
970
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
971
971
  switch (errorCode) {
@@ -1011,7 +1011,7 @@ exports.deserializeAws_json1_1UntagResourceCommand = deserializeAws_json1_1Untag
1011
1011
  const deserializeAws_json1_1UntagResourceCommandError = async (output, context) => {
1012
1012
  const parsedOutput = {
1013
1013
  ...output,
1014
- body: await parseBody(output.body, context),
1014
+ body: await parseErrorBody(output.body, context),
1015
1015
  };
1016
1016
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
1017
1017
  switch (errorCode) {
@@ -1057,7 +1057,7 @@ exports.deserializeAws_json1_1UpdateApplicationCommand = deserializeAws_json1_1U
1057
1057
  const deserializeAws_json1_1UpdateApplicationCommandError = async (output, context) => {
1058
1058
  const parsedOutput = {
1059
1059
  ...output,
1060
- body: await parseBody(output.body, context),
1060
+ body: await parseErrorBody(output.body, context),
1061
1061
  };
1062
1062
  const errorCode = loadRestJsonErrorCode(output, parsedOutput.body);
1063
1063
  switch (errorCode) {
@@ -2303,6 +2303,12 @@ const parseBody = (streamBody, context) => collectBodyString(streamBody, context
2303
2303
  }
2304
2304
  return {};
2305
2305
  });
2306
+ const parseErrorBody = async (errorBody, context) => {
2307
+ var _a;
2308
+ const value = await parseBody(errorBody, context);
2309
+ value.message = (_a = value.message) !== null && _a !== void 0 ? _a : value.Message;
2310
+ return value;
2311
+ };
2306
2312
  const loadRestJsonErrorCode = (output, data) => {
2307
2313
  const findKey = (object, key) => Object.keys(object).find((k) => k.toLowerCase() === key.toLowerCase());
2308
2314
  const sanitizeErrorCode = (rawValue) => {
@@ -1,4 +1,3 @@
1
- import { __extends } from "tslib";
2
1
  import { AddApplicationCloudWatchLoggingOptionCommand, } from "./commands/AddApplicationCloudWatchLoggingOptionCommand";
3
2
  import { AddApplicationInputCommand, } from "./commands/AddApplicationInputCommand";
4
3
  import { AddApplicationInputProcessingConfigurationCommand, } from "./commands/AddApplicationInputProcessingConfigurationCommand";
@@ -20,291 +19,285 @@ import { TagResourceCommand } from "./commands/TagResourceCommand";
20
19
  import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
21
20
  import { UpdateApplicationCommand, } from "./commands/UpdateApplicationCommand";
22
21
  import { KinesisAnalyticsClient } from "./KinesisAnalyticsClient";
23
- var KinesisAnalytics = (function (_super) {
24
- __extends(KinesisAnalytics, _super);
25
- function KinesisAnalytics() {
26
- return _super !== null && _super.apply(this, arguments) || this;
27
- }
28
- KinesisAnalytics.prototype.addApplicationCloudWatchLoggingOption = function (args, optionsOrCb, cb) {
29
- var command = new AddApplicationCloudWatchLoggingOptionCommand(args);
22
+ export class KinesisAnalytics extends KinesisAnalyticsClient {
23
+ addApplicationCloudWatchLoggingOption(args, optionsOrCb, cb) {
24
+ const command = new AddApplicationCloudWatchLoggingOptionCommand(args);
30
25
  if (typeof optionsOrCb === "function") {
31
26
  this.send(command, optionsOrCb);
32
27
  }
33
28
  else if (typeof cb === "function") {
34
29
  if (typeof optionsOrCb !== "object")
35
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
30
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
36
31
  this.send(command, optionsOrCb || {}, cb);
37
32
  }
38
33
  else {
39
34
  return this.send(command, optionsOrCb);
40
35
  }
41
- };
42
- KinesisAnalytics.prototype.addApplicationInput = function (args, optionsOrCb, cb) {
43
- var command = new AddApplicationInputCommand(args);
36
+ }
37
+ addApplicationInput(args, optionsOrCb, cb) {
38
+ const command = new AddApplicationInputCommand(args);
44
39
  if (typeof optionsOrCb === "function") {
45
40
  this.send(command, optionsOrCb);
46
41
  }
47
42
  else if (typeof cb === "function") {
48
43
  if (typeof optionsOrCb !== "object")
49
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
44
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
50
45
  this.send(command, optionsOrCb || {}, cb);
51
46
  }
52
47
  else {
53
48
  return this.send(command, optionsOrCb);
54
49
  }
55
- };
56
- KinesisAnalytics.prototype.addApplicationInputProcessingConfiguration = function (args, optionsOrCb, cb) {
57
- var command = new AddApplicationInputProcessingConfigurationCommand(args);
50
+ }
51
+ addApplicationInputProcessingConfiguration(args, optionsOrCb, cb) {
52
+ const command = new AddApplicationInputProcessingConfigurationCommand(args);
58
53
  if (typeof optionsOrCb === "function") {
59
54
  this.send(command, optionsOrCb);
60
55
  }
61
56
  else if (typeof cb === "function") {
62
57
  if (typeof optionsOrCb !== "object")
63
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
58
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
64
59
  this.send(command, optionsOrCb || {}, cb);
65
60
  }
66
61
  else {
67
62
  return this.send(command, optionsOrCb);
68
63
  }
69
- };
70
- KinesisAnalytics.prototype.addApplicationOutput = function (args, optionsOrCb, cb) {
71
- var command = new AddApplicationOutputCommand(args);
64
+ }
65
+ addApplicationOutput(args, optionsOrCb, cb) {
66
+ const command = new AddApplicationOutputCommand(args);
72
67
  if (typeof optionsOrCb === "function") {
73
68
  this.send(command, optionsOrCb);
74
69
  }
75
70
  else if (typeof cb === "function") {
76
71
  if (typeof optionsOrCb !== "object")
77
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
72
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
78
73
  this.send(command, optionsOrCb || {}, cb);
79
74
  }
80
75
  else {
81
76
  return this.send(command, optionsOrCb);
82
77
  }
83
- };
84
- KinesisAnalytics.prototype.addApplicationReferenceDataSource = function (args, optionsOrCb, cb) {
85
- var command = new AddApplicationReferenceDataSourceCommand(args);
78
+ }
79
+ addApplicationReferenceDataSource(args, optionsOrCb, cb) {
80
+ const command = new AddApplicationReferenceDataSourceCommand(args);
86
81
  if (typeof optionsOrCb === "function") {
87
82
  this.send(command, optionsOrCb);
88
83
  }
89
84
  else if (typeof cb === "function") {
90
85
  if (typeof optionsOrCb !== "object")
91
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
86
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
92
87
  this.send(command, optionsOrCb || {}, cb);
93
88
  }
94
89
  else {
95
90
  return this.send(command, optionsOrCb);
96
91
  }
97
- };
98
- KinesisAnalytics.prototype.createApplication = function (args, optionsOrCb, cb) {
99
- var command = new CreateApplicationCommand(args);
92
+ }
93
+ createApplication(args, optionsOrCb, cb) {
94
+ const command = new CreateApplicationCommand(args);
100
95
  if (typeof optionsOrCb === "function") {
101
96
  this.send(command, optionsOrCb);
102
97
  }
103
98
  else if (typeof cb === "function") {
104
99
  if (typeof optionsOrCb !== "object")
105
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
100
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
106
101
  this.send(command, optionsOrCb || {}, cb);
107
102
  }
108
103
  else {
109
104
  return this.send(command, optionsOrCb);
110
105
  }
111
- };
112
- KinesisAnalytics.prototype.deleteApplication = function (args, optionsOrCb, cb) {
113
- var command = new DeleteApplicationCommand(args);
106
+ }
107
+ deleteApplication(args, optionsOrCb, cb) {
108
+ const command = new DeleteApplicationCommand(args);
114
109
  if (typeof optionsOrCb === "function") {
115
110
  this.send(command, optionsOrCb);
116
111
  }
117
112
  else if (typeof cb === "function") {
118
113
  if (typeof optionsOrCb !== "object")
119
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
114
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
120
115
  this.send(command, optionsOrCb || {}, cb);
121
116
  }
122
117
  else {
123
118
  return this.send(command, optionsOrCb);
124
119
  }
125
- };
126
- KinesisAnalytics.prototype.deleteApplicationCloudWatchLoggingOption = function (args, optionsOrCb, cb) {
127
- var command = new DeleteApplicationCloudWatchLoggingOptionCommand(args);
120
+ }
121
+ deleteApplicationCloudWatchLoggingOption(args, optionsOrCb, cb) {
122
+ const command = new DeleteApplicationCloudWatchLoggingOptionCommand(args);
128
123
  if (typeof optionsOrCb === "function") {
129
124
  this.send(command, optionsOrCb);
130
125
  }
131
126
  else if (typeof cb === "function") {
132
127
  if (typeof optionsOrCb !== "object")
133
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
128
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
134
129
  this.send(command, optionsOrCb || {}, cb);
135
130
  }
136
131
  else {
137
132
  return this.send(command, optionsOrCb);
138
133
  }
139
- };
140
- KinesisAnalytics.prototype.deleteApplicationInputProcessingConfiguration = function (args, optionsOrCb, cb) {
141
- var command = new DeleteApplicationInputProcessingConfigurationCommand(args);
134
+ }
135
+ deleteApplicationInputProcessingConfiguration(args, optionsOrCb, cb) {
136
+ const command = new DeleteApplicationInputProcessingConfigurationCommand(args);
142
137
  if (typeof optionsOrCb === "function") {
143
138
  this.send(command, optionsOrCb);
144
139
  }
145
140
  else if (typeof cb === "function") {
146
141
  if (typeof optionsOrCb !== "object")
147
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
142
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
148
143
  this.send(command, optionsOrCb || {}, cb);
149
144
  }
150
145
  else {
151
146
  return this.send(command, optionsOrCb);
152
147
  }
153
- };
154
- KinesisAnalytics.prototype.deleteApplicationOutput = function (args, optionsOrCb, cb) {
155
- var command = new DeleteApplicationOutputCommand(args);
148
+ }
149
+ deleteApplicationOutput(args, optionsOrCb, cb) {
150
+ const command = new DeleteApplicationOutputCommand(args);
156
151
  if (typeof optionsOrCb === "function") {
157
152
  this.send(command, optionsOrCb);
158
153
  }
159
154
  else if (typeof cb === "function") {
160
155
  if (typeof optionsOrCb !== "object")
161
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
156
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
162
157
  this.send(command, optionsOrCb || {}, cb);
163
158
  }
164
159
  else {
165
160
  return this.send(command, optionsOrCb);
166
161
  }
167
- };
168
- KinesisAnalytics.prototype.deleteApplicationReferenceDataSource = function (args, optionsOrCb, cb) {
169
- var command = new DeleteApplicationReferenceDataSourceCommand(args);
162
+ }
163
+ deleteApplicationReferenceDataSource(args, optionsOrCb, cb) {
164
+ const command = new DeleteApplicationReferenceDataSourceCommand(args);
170
165
  if (typeof optionsOrCb === "function") {
171
166
  this.send(command, optionsOrCb);
172
167
  }
173
168
  else if (typeof cb === "function") {
174
169
  if (typeof optionsOrCb !== "object")
175
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
170
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
176
171
  this.send(command, optionsOrCb || {}, cb);
177
172
  }
178
173
  else {
179
174
  return this.send(command, optionsOrCb);
180
175
  }
181
- };
182
- KinesisAnalytics.prototype.describeApplication = function (args, optionsOrCb, cb) {
183
- var command = new DescribeApplicationCommand(args);
176
+ }
177
+ describeApplication(args, optionsOrCb, cb) {
178
+ const command = new DescribeApplicationCommand(args);
184
179
  if (typeof optionsOrCb === "function") {
185
180
  this.send(command, optionsOrCb);
186
181
  }
187
182
  else if (typeof cb === "function") {
188
183
  if (typeof optionsOrCb !== "object")
189
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
184
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
190
185
  this.send(command, optionsOrCb || {}, cb);
191
186
  }
192
187
  else {
193
188
  return this.send(command, optionsOrCb);
194
189
  }
195
- };
196
- KinesisAnalytics.prototype.discoverInputSchema = function (args, optionsOrCb, cb) {
197
- var command = new DiscoverInputSchemaCommand(args);
190
+ }
191
+ discoverInputSchema(args, optionsOrCb, cb) {
192
+ const command = new DiscoverInputSchemaCommand(args);
198
193
  if (typeof optionsOrCb === "function") {
199
194
  this.send(command, optionsOrCb);
200
195
  }
201
196
  else if (typeof cb === "function") {
202
197
  if (typeof optionsOrCb !== "object")
203
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
198
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
204
199
  this.send(command, optionsOrCb || {}, cb);
205
200
  }
206
201
  else {
207
202
  return this.send(command, optionsOrCb);
208
203
  }
209
- };
210
- KinesisAnalytics.prototype.listApplications = function (args, optionsOrCb, cb) {
211
- var command = new ListApplicationsCommand(args);
204
+ }
205
+ listApplications(args, optionsOrCb, cb) {
206
+ const command = new ListApplicationsCommand(args);
212
207
  if (typeof optionsOrCb === "function") {
213
208
  this.send(command, optionsOrCb);
214
209
  }
215
210
  else if (typeof cb === "function") {
216
211
  if (typeof optionsOrCb !== "object")
217
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
212
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
218
213
  this.send(command, optionsOrCb || {}, cb);
219
214
  }
220
215
  else {
221
216
  return this.send(command, optionsOrCb);
222
217
  }
223
- };
224
- KinesisAnalytics.prototype.listTagsForResource = function (args, optionsOrCb, cb) {
225
- var command = new ListTagsForResourceCommand(args);
218
+ }
219
+ listTagsForResource(args, optionsOrCb, cb) {
220
+ const command = new ListTagsForResourceCommand(args);
226
221
  if (typeof optionsOrCb === "function") {
227
222
  this.send(command, optionsOrCb);
228
223
  }
229
224
  else if (typeof cb === "function") {
230
225
  if (typeof optionsOrCb !== "object")
231
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
226
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
232
227
  this.send(command, optionsOrCb || {}, cb);
233
228
  }
234
229
  else {
235
230
  return this.send(command, optionsOrCb);
236
231
  }
237
- };
238
- KinesisAnalytics.prototype.startApplication = function (args, optionsOrCb, cb) {
239
- var command = new StartApplicationCommand(args);
232
+ }
233
+ startApplication(args, optionsOrCb, cb) {
234
+ const command = new StartApplicationCommand(args);
240
235
  if (typeof optionsOrCb === "function") {
241
236
  this.send(command, optionsOrCb);
242
237
  }
243
238
  else if (typeof cb === "function") {
244
239
  if (typeof optionsOrCb !== "object")
245
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
240
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
246
241
  this.send(command, optionsOrCb || {}, cb);
247
242
  }
248
243
  else {
249
244
  return this.send(command, optionsOrCb);
250
245
  }
251
- };
252
- KinesisAnalytics.prototype.stopApplication = function (args, optionsOrCb, cb) {
253
- var command = new StopApplicationCommand(args);
246
+ }
247
+ stopApplication(args, optionsOrCb, cb) {
248
+ const command = new StopApplicationCommand(args);
254
249
  if (typeof optionsOrCb === "function") {
255
250
  this.send(command, optionsOrCb);
256
251
  }
257
252
  else if (typeof cb === "function") {
258
253
  if (typeof optionsOrCb !== "object")
259
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
254
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
260
255
  this.send(command, optionsOrCb || {}, cb);
261
256
  }
262
257
  else {
263
258
  return this.send(command, optionsOrCb);
264
259
  }
265
- };
266
- KinesisAnalytics.prototype.tagResource = function (args, optionsOrCb, cb) {
267
- var command = new TagResourceCommand(args);
260
+ }
261
+ tagResource(args, optionsOrCb, cb) {
262
+ const command = new TagResourceCommand(args);
268
263
  if (typeof optionsOrCb === "function") {
269
264
  this.send(command, optionsOrCb);
270
265
  }
271
266
  else if (typeof cb === "function") {
272
267
  if (typeof optionsOrCb !== "object")
273
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
268
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
274
269
  this.send(command, optionsOrCb || {}, cb);
275
270
  }
276
271
  else {
277
272
  return this.send(command, optionsOrCb);
278
273
  }
279
- };
280
- KinesisAnalytics.prototype.untagResource = function (args, optionsOrCb, cb) {
281
- var command = new UntagResourceCommand(args);
274
+ }
275
+ untagResource(args, optionsOrCb, cb) {
276
+ const command = new UntagResourceCommand(args);
282
277
  if (typeof optionsOrCb === "function") {
283
278
  this.send(command, optionsOrCb);
284
279
  }
285
280
  else if (typeof cb === "function") {
286
281
  if (typeof optionsOrCb !== "object")
287
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
282
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
288
283
  this.send(command, optionsOrCb || {}, cb);
289
284
  }
290
285
  else {
291
286
  return this.send(command, optionsOrCb);
292
287
  }
293
- };
294
- KinesisAnalytics.prototype.updateApplication = function (args, optionsOrCb, cb) {
295
- var command = new UpdateApplicationCommand(args);
288
+ }
289
+ updateApplication(args, optionsOrCb, cb) {
290
+ const command = new UpdateApplicationCommand(args);
296
291
  if (typeof optionsOrCb === "function") {
297
292
  this.send(command, optionsOrCb);
298
293
  }
299
294
  else if (typeof cb === "function") {
300
295
  if (typeof optionsOrCb !== "object")
301
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
296
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
302
297
  this.send(command, optionsOrCb || {}, cb);
303
298
  }
304
299
  else {
305
300
  return this.send(command, optionsOrCb);
306
301
  }
307
- };
308
- return KinesisAnalytics;
309
- }(KinesisAnalyticsClient));
310
- export { KinesisAnalytics };
302
+ }
303
+ }
@@ -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
- var KinesisAnalyticsClient = (function (_super) {
13
- __extends(KinesisAnalyticsClient, _super);
14
- function KinesisAnalyticsClient(configuration) {
15
- var _this = this;
16
- var _config_0 = __getRuntimeConfig(configuration);
17
- var _config_1 = resolveRegionConfig(_config_0);
18
- var _config_2 = resolveEndpointsConfig(_config_1);
19
- var _config_3 = resolveRetryConfig(_config_2);
20
- var _config_4 = resolveHostHeaderConfig(_config_3);
21
- var _config_5 = resolveAwsAuthConfig(_config_4);
22
- var _config_6 = resolveUserAgentConfig(_config_5);
23
- _this = _super.call(this, _config_6) || this;
24
- _this.config = _config_6;
25
- _this.middlewareStack.use(getRetryPlugin(_this.config));
26
- _this.middlewareStack.use(getContentLengthPlugin(_this.config));
27
- _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
28
- _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
- _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
30
- _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
31
- _this.middlewareStack.use(getUserAgentPlugin(_this.config));
32
- return _this;
11
+ export class KinesisAnalyticsClient 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
- KinesisAnalyticsClient.prototype.destroy = function () {
35
- _super.prototype.destroy.call(this);
36
- };
37
- return KinesisAnalyticsClient;
38
- }(__Client));
39
- export { KinesisAnalyticsClient };
30
+ destroy() {
31
+ super.destroy();
32
+ }
33
+ }