@aws-sdk/client-kinesis-analytics 3.489.0 → 3.495.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 (32) hide show
  1. package/dist-cjs/KinesisAnalytics.js +1 -51
  2. package/dist-cjs/KinesisAnalyticsClient.js +1 -43
  3. package/dist-cjs/commands/AddApplicationCloudWatchLoggingOptionCommand.js +1 -28
  4. package/dist-cjs/commands/AddApplicationInputCommand.js +1 -28
  5. package/dist-cjs/commands/AddApplicationInputProcessingConfigurationCommand.js +1 -28
  6. package/dist-cjs/commands/AddApplicationOutputCommand.js +1 -28
  7. package/dist-cjs/commands/AddApplicationReferenceDataSourceCommand.js +1 -28
  8. package/dist-cjs/commands/CreateApplicationCommand.js +1 -28
  9. package/dist-cjs/commands/DeleteApplicationCloudWatchLoggingOptionCommand.js +1 -28
  10. package/dist-cjs/commands/DeleteApplicationCommand.js +1 -28
  11. package/dist-cjs/commands/DeleteApplicationInputProcessingConfigurationCommand.js +1 -28
  12. package/dist-cjs/commands/DeleteApplicationOutputCommand.js +1 -28
  13. package/dist-cjs/commands/DeleteApplicationReferenceDataSourceCommand.js +1 -28
  14. package/dist-cjs/commands/DescribeApplicationCommand.js +1 -28
  15. package/dist-cjs/commands/DiscoverInputSchemaCommand.js +1 -28
  16. package/dist-cjs/commands/ListApplicationsCommand.js +1 -28
  17. package/dist-cjs/commands/ListTagsForResourceCommand.js +1 -28
  18. package/dist-cjs/commands/StartApplicationCommand.js +1 -28
  19. package/dist-cjs/commands/StopApplicationCommand.js +1 -28
  20. package/dist-cjs/commands/TagResourceCommand.js +1 -28
  21. package/dist-cjs/commands/UntagResourceCommand.js +1 -28
  22. package/dist-cjs/commands/UpdateApplicationCommand.js +1 -28
  23. package/dist-cjs/commands/index.js +1 -23
  24. package/dist-cjs/endpoint/EndpointParameters.js +1 -18
  25. package/dist-cjs/extensionConfiguration.js +1 -2
  26. package/dist-cjs/index.js +1984 -10
  27. package/dist-cjs/models/KinesisAnalyticsServiceException.js +1 -12
  28. package/dist-cjs/models/index.js +1 -4
  29. package/dist-cjs/models/models_0.js +1 -179
  30. package/dist-cjs/protocols/Aws_json1_1.js +1 -1218
  31. package/dist-cjs/runtimeExtensions.js +1 -22
  32. package/package.json +39 -39
@@ -1,12 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.KinesisAnalyticsServiceException = exports.__ServiceException = void 0;
4
- const smithy_client_1 = require("@smithy/smithy-client");
5
- Object.defineProperty(exports, "__ServiceException", { enumerable: true, get: function () { return smithy_client_1.ServiceException; } });
6
- class KinesisAnalyticsServiceException extends smithy_client_1.ServiceException {
7
- constructor(options) {
8
- super(options);
9
- Object.setPrototypeOf(this, KinesisAnalyticsServiceException.prototype);
10
- }
11
- }
12
- exports.KinesisAnalyticsServiceException = KinesisAnalyticsServiceException;
1
+ module.exports = require("../index.js");
@@ -1,4 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- const tslib_1 = require("tslib");
4
- tslib_1.__exportStar(require("./models_0"), exports);
1
+ module.exports = require("../index.js");
@@ -1,179 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.InvalidApplicationConfigurationException = exports.UnableToDetectSchemaException = exports.ServiceUnavailableException = exports.ResourceProvisionedThroughputExceededException = exports.TooManyTagsException = exports.LimitExceededException = exports.InputStartingPosition = exports.ApplicationStatus = exports.CodeValidationException = exports.RecordFormatType = exports.UnsupportedOperationException = exports.ResourceNotFoundException = exports.ResourceInUseException = exports.InvalidArgumentException = exports.ConcurrentModificationException = void 0;
4
- const KinesisAnalyticsServiceException_1 = require("./KinesisAnalyticsServiceException");
5
- class ConcurrentModificationException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
6
- constructor(opts) {
7
- super({
8
- name: "ConcurrentModificationException",
9
- $fault: "client",
10
- ...opts,
11
- });
12
- this.name = "ConcurrentModificationException";
13
- this.$fault = "client";
14
- Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
15
- }
16
- }
17
- exports.ConcurrentModificationException = ConcurrentModificationException;
18
- class InvalidArgumentException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
19
- constructor(opts) {
20
- super({
21
- name: "InvalidArgumentException",
22
- $fault: "client",
23
- ...opts,
24
- });
25
- this.name = "InvalidArgumentException";
26
- this.$fault = "client";
27
- Object.setPrototypeOf(this, InvalidArgumentException.prototype);
28
- }
29
- }
30
- exports.InvalidArgumentException = InvalidArgumentException;
31
- class ResourceInUseException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
32
- constructor(opts) {
33
- super({
34
- name: "ResourceInUseException",
35
- $fault: "client",
36
- ...opts,
37
- });
38
- this.name = "ResourceInUseException";
39
- this.$fault = "client";
40
- Object.setPrototypeOf(this, ResourceInUseException.prototype);
41
- }
42
- }
43
- exports.ResourceInUseException = ResourceInUseException;
44
- class ResourceNotFoundException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
45
- constructor(opts) {
46
- super({
47
- name: "ResourceNotFoundException",
48
- $fault: "client",
49
- ...opts,
50
- });
51
- this.name = "ResourceNotFoundException";
52
- this.$fault = "client";
53
- Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
54
- }
55
- }
56
- exports.ResourceNotFoundException = ResourceNotFoundException;
57
- class UnsupportedOperationException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
58
- constructor(opts) {
59
- super({
60
- name: "UnsupportedOperationException",
61
- $fault: "client",
62
- ...opts,
63
- });
64
- this.name = "UnsupportedOperationException";
65
- this.$fault = "client";
66
- Object.setPrototypeOf(this, UnsupportedOperationException.prototype);
67
- }
68
- }
69
- exports.UnsupportedOperationException = UnsupportedOperationException;
70
- exports.RecordFormatType = {
71
- CSV: "CSV",
72
- JSON: "JSON",
73
- };
74
- class CodeValidationException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
75
- constructor(opts) {
76
- super({
77
- name: "CodeValidationException",
78
- $fault: "client",
79
- ...opts,
80
- });
81
- this.name = "CodeValidationException";
82
- this.$fault = "client";
83
- Object.setPrototypeOf(this, CodeValidationException.prototype);
84
- }
85
- }
86
- exports.CodeValidationException = CodeValidationException;
87
- exports.ApplicationStatus = {
88
- DELETING: "DELETING",
89
- READY: "READY",
90
- RUNNING: "RUNNING",
91
- STARTING: "STARTING",
92
- STOPPING: "STOPPING",
93
- UPDATING: "UPDATING",
94
- };
95
- exports.InputStartingPosition = {
96
- LAST_STOPPED_POINT: "LAST_STOPPED_POINT",
97
- NOW: "NOW",
98
- TRIM_HORIZON: "TRIM_HORIZON",
99
- };
100
- class LimitExceededException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
101
- constructor(opts) {
102
- super({
103
- name: "LimitExceededException",
104
- $fault: "client",
105
- ...opts,
106
- });
107
- this.name = "LimitExceededException";
108
- this.$fault = "client";
109
- Object.setPrototypeOf(this, LimitExceededException.prototype);
110
- }
111
- }
112
- exports.LimitExceededException = LimitExceededException;
113
- class TooManyTagsException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
114
- constructor(opts) {
115
- super({
116
- name: "TooManyTagsException",
117
- $fault: "client",
118
- ...opts,
119
- });
120
- this.name = "TooManyTagsException";
121
- this.$fault = "client";
122
- Object.setPrototypeOf(this, TooManyTagsException.prototype);
123
- }
124
- }
125
- exports.TooManyTagsException = TooManyTagsException;
126
- class ResourceProvisionedThroughputExceededException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
127
- constructor(opts) {
128
- super({
129
- name: "ResourceProvisionedThroughputExceededException",
130
- $fault: "client",
131
- ...opts,
132
- });
133
- this.name = "ResourceProvisionedThroughputExceededException";
134
- this.$fault = "client";
135
- Object.setPrototypeOf(this, ResourceProvisionedThroughputExceededException.prototype);
136
- }
137
- }
138
- exports.ResourceProvisionedThroughputExceededException = ResourceProvisionedThroughputExceededException;
139
- class ServiceUnavailableException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
140
- constructor(opts) {
141
- super({
142
- name: "ServiceUnavailableException",
143
- $fault: "server",
144
- ...opts,
145
- });
146
- this.name = "ServiceUnavailableException";
147
- this.$fault = "server";
148
- Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
149
- }
150
- }
151
- exports.ServiceUnavailableException = ServiceUnavailableException;
152
- class UnableToDetectSchemaException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
153
- constructor(opts) {
154
- super({
155
- name: "UnableToDetectSchemaException",
156
- $fault: "client",
157
- ...opts,
158
- });
159
- this.name = "UnableToDetectSchemaException";
160
- this.$fault = "client";
161
- Object.setPrototypeOf(this, UnableToDetectSchemaException.prototype);
162
- this.RawInputRecords = opts.RawInputRecords;
163
- this.ProcessedInputRecords = opts.ProcessedInputRecords;
164
- }
165
- }
166
- exports.UnableToDetectSchemaException = UnableToDetectSchemaException;
167
- class InvalidApplicationConfigurationException extends KinesisAnalyticsServiceException_1.KinesisAnalyticsServiceException {
168
- constructor(opts) {
169
- super({
170
- name: "InvalidApplicationConfigurationException",
171
- $fault: "client",
172
- ...opts,
173
- });
174
- this.name = "InvalidApplicationConfigurationException";
175
- this.$fault = "client";
176
- Object.setPrototypeOf(this, InvalidApplicationConfigurationException.prototype);
177
- }
178
- }
179
- exports.InvalidApplicationConfigurationException = InvalidApplicationConfigurationException;
1
+ module.exports = require("../index.js");