@aws-sdk/client-iotdeviceadvisor 3.312.0 → 3.316.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.
@@ -1,6 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.IotDeviceAdvisor = void 0;
4
+ const smithy_client_1 = require("@aws-sdk/smithy-client");
4
5
  const CreateSuiteDefinitionCommand_1 = require("./commands/CreateSuiteDefinitionCommand");
5
6
  const DeleteSuiteDefinitionCommand_1 = require("./commands/DeleteSuiteDefinitionCommand");
6
7
  const GetEndpointCommand_1 = require("./commands/GetEndpointCommand");
@@ -16,202 +17,23 @@ const TagResourceCommand_1 = require("./commands/TagResourceCommand");
16
17
  const UntagResourceCommand_1 = require("./commands/UntagResourceCommand");
17
18
  const UpdateSuiteDefinitionCommand_1 = require("./commands/UpdateSuiteDefinitionCommand");
18
19
  const IotDeviceAdvisorClient_1 = require("./IotDeviceAdvisorClient");
20
+ const commands = {
21
+ CreateSuiteDefinitionCommand: CreateSuiteDefinitionCommand_1.CreateSuiteDefinitionCommand,
22
+ DeleteSuiteDefinitionCommand: DeleteSuiteDefinitionCommand_1.DeleteSuiteDefinitionCommand,
23
+ GetEndpointCommand: GetEndpointCommand_1.GetEndpointCommand,
24
+ GetSuiteDefinitionCommand: GetSuiteDefinitionCommand_1.GetSuiteDefinitionCommand,
25
+ GetSuiteRunCommand: GetSuiteRunCommand_1.GetSuiteRunCommand,
26
+ GetSuiteRunReportCommand: GetSuiteRunReportCommand_1.GetSuiteRunReportCommand,
27
+ ListSuiteDefinitionsCommand: ListSuiteDefinitionsCommand_1.ListSuiteDefinitionsCommand,
28
+ ListSuiteRunsCommand: ListSuiteRunsCommand_1.ListSuiteRunsCommand,
29
+ ListTagsForResourceCommand: ListTagsForResourceCommand_1.ListTagsForResourceCommand,
30
+ StartSuiteRunCommand: StartSuiteRunCommand_1.StartSuiteRunCommand,
31
+ StopSuiteRunCommand: StopSuiteRunCommand_1.StopSuiteRunCommand,
32
+ TagResourceCommand: TagResourceCommand_1.TagResourceCommand,
33
+ UntagResourceCommand: UntagResourceCommand_1.UntagResourceCommand,
34
+ UpdateSuiteDefinitionCommand: UpdateSuiteDefinitionCommand_1.UpdateSuiteDefinitionCommand,
35
+ };
19
36
  class IotDeviceAdvisor extends IotDeviceAdvisorClient_1.IotDeviceAdvisorClient {
20
- createSuiteDefinition(args, optionsOrCb, cb) {
21
- const command = new CreateSuiteDefinitionCommand_1.CreateSuiteDefinitionCommand(args);
22
- if (typeof optionsOrCb === "function") {
23
- this.send(command, optionsOrCb);
24
- }
25
- else if (typeof cb === "function") {
26
- if (typeof optionsOrCb !== "object")
27
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
28
- this.send(command, optionsOrCb || {}, cb);
29
- }
30
- else {
31
- return this.send(command, optionsOrCb);
32
- }
33
- }
34
- deleteSuiteDefinition(args, optionsOrCb, cb) {
35
- const command = new DeleteSuiteDefinitionCommand_1.DeleteSuiteDefinitionCommand(args);
36
- if (typeof optionsOrCb === "function") {
37
- this.send(command, optionsOrCb);
38
- }
39
- else if (typeof cb === "function") {
40
- if (typeof optionsOrCb !== "object")
41
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
42
- this.send(command, optionsOrCb || {}, cb);
43
- }
44
- else {
45
- return this.send(command, optionsOrCb);
46
- }
47
- }
48
- getEndpoint(args, optionsOrCb, cb) {
49
- const command = new GetEndpointCommand_1.GetEndpointCommand(args);
50
- if (typeof optionsOrCb === "function") {
51
- this.send(command, optionsOrCb);
52
- }
53
- else if (typeof cb === "function") {
54
- if (typeof optionsOrCb !== "object")
55
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
56
- this.send(command, optionsOrCb || {}, cb);
57
- }
58
- else {
59
- return this.send(command, optionsOrCb);
60
- }
61
- }
62
- getSuiteDefinition(args, optionsOrCb, cb) {
63
- const command = new GetSuiteDefinitionCommand_1.GetSuiteDefinitionCommand(args);
64
- if (typeof optionsOrCb === "function") {
65
- this.send(command, optionsOrCb);
66
- }
67
- else if (typeof cb === "function") {
68
- if (typeof optionsOrCb !== "object")
69
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
70
- this.send(command, optionsOrCb || {}, cb);
71
- }
72
- else {
73
- return this.send(command, optionsOrCb);
74
- }
75
- }
76
- getSuiteRun(args, optionsOrCb, cb) {
77
- const command = new GetSuiteRunCommand_1.GetSuiteRunCommand(args);
78
- if (typeof optionsOrCb === "function") {
79
- this.send(command, optionsOrCb);
80
- }
81
- else if (typeof cb === "function") {
82
- if (typeof optionsOrCb !== "object")
83
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
84
- this.send(command, optionsOrCb || {}, cb);
85
- }
86
- else {
87
- return this.send(command, optionsOrCb);
88
- }
89
- }
90
- getSuiteRunReport(args, optionsOrCb, cb) {
91
- const command = new GetSuiteRunReportCommand_1.GetSuiteRunReportCommand(args);
92
- if (typeof optionsOrCb === "function") {
93
- this.send(command, optionsOrCb);
94
- }
95
- else if (typeof cb === "function") {
96
- if (typeof optionsOrCb !== "object")
97
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
98
- this.send(command, optionsOrCb || {}, cb);
99
- }
100
- else {
101
- return this.send(command, optionsOrCb);
102
- }
103
- }
104
- listSuiteDefinitions(args, optionsOrCb, cb) {
105
- const command = new ListSuiteDefinitionsCommand_1.ListSuiteDefinitionsCommand(args);
106
- if (typeof optionsOrCb === "function") {
107
- this.send(command, optionsOrCb);
108
- }
109
- else if (typeof cb === "function") {
110
- if (typeof optionsOrCb !== "object")
111
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
112
- this.send(command, optionsOrCb || {}, cb);
113
- }
114
- else {
115
- return this.send(command, optionsOrCb);
116
- }
117
- }
118
- listSuiteRuns(args, optionsOrCb, cb) {
119
- const command = new ListSuiteRunsCommand_1.ListSuiteRunsCommand(args);
120
- if (typeof optionsOrCb === "function") {
121
- this.send(command, optionsOrCb);
122
- }
123
- else if (typeof cb === "function") {
124
- if (typeof optionsOrCb !== "object")
125
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
126
- this.send(command, optionsOrCb || {}, cb);
127
- }
128
- else {
129
- return this.send(command, optionsOrCb);
130
- }
131
- }
132
- listTagsForResource(args, optionsOrCb, cb) {
133
- const command = new ListTagsForResourceCommand_1.ListTagsForResourceCommand(args);
134
- if (typeof optionsOrCb === "function") {
135
- this.send(command, optionsOrCb);
136
- }
137
- else if (typeof cb === "function") {
138
- if (typeof optionsOrCb !== "object")
139
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
140
- this.send(command, optionsOrCb || {}, cb);
141
- }
142
- else {
143
- return this.send(command, optionsOrCb);
144
- }
145
- }
146
- startSuiteRun(args, optionsOrCb, cb) {
147
- const command = new StartSuiteRunCommand_1.StartSuiteRunCommand(args);
148
- if (typeof optionsOrCb === "function") {
149
- this.send(command, optionsOrCb);
150
- }
151
- else if (typeof cb === "function") {
152
- if (typeof optionsOrCb !== "object")
153
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
154
- this.send(command, optionsOrCb || {}, cb);
155
- }
156
- else {
157
- return this.send(command, optionsOrCb);
158
- }
159
- }
160
- stopSuiteRun(args, optionsOrCb, cb) {
161
- const command = new StopSuiteRunCommand_1.StopSuiteRunCommand(args);
162
- if (typeof optionsOrCb === "function") {
163
- this.send(command, optionsOrCb);
164
- }
165
- else if (typeof cb === "function") {
166
- if (typeof optionsOrCb !== "object")
167
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
168
- this.send(command, optionsOrCb || {}, cb);
169
- }
170
- else {
171
- return this.send(command, optionsOrCb);
172
- }
173
- }
174
- tagResource(args, optionsOrCb, cb) {
175
- const command = new TagResourceCommand_1.TagResourceCommand(args);
176
- if (typeof optionsOrCb === "function") {
177
- this.send(command, optionsOrCb);
178
- }
179
- else if (typeof cb === "function") {
180
- if (typeof optionsOrCb !== "object")
181
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
182
- this.send(command, optionsOrCb || {}, cb);
183
- }
184
- else {
185
- return this.send(command, optionsOrCb);
186
- }
187
- }
188
- untagResource(args, optionsOrCb, cb) {
189
- const command = new UntagResourceCommand_1.UntagResourceCommand(args);
190
- if (typeof optionsOrCb === "function") {
191
- this.send(command, optionsOrCb);
192
- }
193
- else if (typeof cb === "function") {
194
- if (typeof optionsOrCb !== "object")
195
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
196
- this.send(command, optionsOrCb || {}, cb);
197
- }
198
- else {
199
- return this.send(command, optionsOrCb);
200
- }
201
- }
202
- updateSuiteDefinition(args, optionsOrCb, cb) {
203
- const command = new UpdateSuiteDefinitionCommand_1.UpdateSuiteDefinitionCommand(args);
204
- if (typeof optionsOrCb === "function") {
205
- this.send(command, optionsOrCb);
206
- }
207
- else if (typeof cb === "function") {
208
- if (typeof optionsOrCb !== "object")
209
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
210
- this.send(command, optionsOrCb || {}, cb);
211
- }
212
- else {
213
- return this.send(command, optionsOrCb);
214
- }
215
- }
216
37
  }
217
38
  exports.IotDeviceAdvisor = IotDeviceAdvisor;
39
+ (0, smithy_client_1.createAggregatedClient)(commands, IotDeviceAdvisor);