@aws-sdk/client-support 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,3 +1,4 @@
1
+ import { createAggregatedClient } from "@aws-sdk/smithy-client";
1
2
  import { AddAttachmentsToSetCommand, } from "./commands/AddAttachmentsToSetCommand";
2
3
  import { AddCommunicationToCaseCommand, } from "./commands/AddCommunicationToCaseCommand";
3
4
  import { CreateCaseCommand } from "./commands/CreateCaseCommand";
@@ -13,201 +14,22 @@ import { DescribeTrustedAdvisorCheckSummariesCommand, } from "./commands/Describ
13
14
  import { RefreshTrustedAdvisorCheckCommand, } from "./commands/RefreshTrustedAdvisorCheckCommand";
14
15
  import { ResolveCaseCommand } from "./commands/ResolveCaseCommand";
15
16
  import { SupportClient } from "./SupportClient";
17
+ const commands = {
18
+ AddAttachmentsToSetCommand,
19
+ AddCommunicationToCaseCommand,
20
+ CreateCaseCommand,
21
+ DescribeAttachmentCommand,
22
+ DescribeCasesCommand,
23
+ DescribeCommunicationsCommand,
24
+ DescribeServicesCommand,
25
+ DescribeSeverityLevelsCommand,
26
+ DescribeTrustedAdvisorCheckRefreshStatusesCommand,
27
+ DescribeTrustedAdvisorCheckResultCommand,
28
+ DescribeTrustedAdvisorChecksCommand,
29
+ DescribeTrustedAdvisorCheckSummariesCommand,
30
+ RefreshTrustedAdvisorCheckCommand,
31
+ ResolveCaseCommand,
32
+ };
16
33
  export class Support extends SupportClient {
17
- addAttachmentsToSet(args, optionsOrCb, cb) {
18
- const command = new AddAttachmentsToSetCommand(args);
19
- if (typeof optionsOrCb === "function") {
20
- this.send(command, optionsOrCb);
21
- }
22
- else if (typeof cb === "function") {
23
- if (typeof optionsOrCb !== "object")
24
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
25
- this.send(command, optionsOrCb || {}, cb);
26
- }
27
- else {
28
- return this.send(command, optionsOrCb);
29
- }
30
- }
31
- addCommunicationToCase(args, optionsOrCb, cb) {
32
- const command = new AddCommunicationToCaseCommand(args);
33
- if (typeof optionsOrCb === "function") {
34
- this.send(command, optionsOrCb);
35
- }
36
- else if (typeof cb === "function") {
37
- if (typeof optionsOrCb !== "object")
38
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
39
- this.send(command, optionsOrCb || {}, cb);
40
- }
41
- else {
42
- return this.send(command, optionsOrCb);
43
- }
44
- }
45
- createCase(args, optionsOrCb, cb) {
46
- const command = new CreateCaseCommand(args);
47
- if (typeof optionsOrCb === "function") {
48
- this.send(command, optionsOrCb);
49
- }
50
- else if (typeof cb === "function") {
51
- if (typeof optionsOrCb !== "object")
52
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
53
- this.send(command, optionsOrCb || {}, cb);
54
- }
55
- else {
56
- return this.send(command, optionsOrCb);
57
- }
58
- }
59
- describeAttachment(args, optionsOrCb, cb) {
60
- const command = new DescribeAttachmentCommand(args);
61
- if (typeof optionsOrCb === "function") {
62
- this.send(command, optionsOrCb);
63
- }
64
- else if (typeof cb === "function") {
65
- if (typeof optionsOrCb !== "object")
66
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
67
- this.send(command, optionsOrCb || {}, cb);
68
- }
69
- else {
70
- return this.send(command, optionsOrCb);
71
- }
72
- }
73
- describeCases(args, optionsOrCb, cb) {
74
- const command = new DescribeCasesCommand(args);
75
- if (typeof optionsOrCb === "function") {
76
- this.send(command, optionsOrCb);
77
- }
78
- else if (typeof cb === "function") {
79
- if (typeof optionsOrCb !== "object")
80
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
81
- this.send(command, optionsOrCb || {}, cb);
82
- }
83
- else {
84
- return this.send(command, optionsOrCb);
85
- }
86
- }
87
- describeCommunications(args, optionsOrCb, cb) {
88
- const command = new DescribeCommunicationsCommand(args);
89
- if (typeof optionsOrCb === "function") {
90
- this.send(command, optionsOrCb);
91
- }
92
- else if (typeof cb === "function") {
93
- if (typeof optionsOrCb !== "object")
94
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
95
- this.send(command, optionsOrCb || {}, cb);
96
- }
97
- else {
98
- return this.send(command, optionsOrCb);
99
- }
100
- }
101
- describeServices(args, optionsOrCb, cb) {
102
- const command = new DescribeServicesCommand(args);
103
- if (typeof optionsOrCb === "function") {
104
- this.send(command, optionsOrCb);
105
- }
106
- else if (typeof cb === "function") {
107
- if (typeof optionsOrCb !== "object")
108
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
109
- this.send(command, optionsOrCb || {}, cb);
110
- }
111
- else {
112
- return this.send(command, optionsOrCb);
113
- }
114
- }
115
- describeSeverityLevels(args, optionsOrCb, cb) {
116
- const command = new DescribeSeverityLevelsCommand(args);
117
- if (typeof optionsOrCb === "function") {
118
- this.send(command, optionsOrCb);
119
- }
120
- else if (typeof cb === "function") {
121
- if (typeof optionsOrCb !== "object")
122
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
123
- this.send(command, optionsOrCb || {}, cb);
124
- }
125
- else {
126
- return this.send(command, optionsOrCb);
127
- }
128
- }
129
- describeTrustedAdvisorCheckRefreshStatuses(args, optionsOrCb, cb) {
130
- const command = new DescribeTrustedAdvisorCheckRefreshStatusesCommand(args);
131
- if (typeof optionsOrCb === "function") {
132
- this.send(command, optionsOrCb);
133
- }
134
- else if (typeof cb === "function") {
135
- if (typeof optionsOrCb !== "object")
136
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
137
- this.send(command, optionsOrCb || {}, cb);
138
- }
139
- else {
140
- return this.send(command, optionsOrCb);
141
- }
142
- }
143
- describeTrustedAdvisorCheckResult(args, optionsOrCb, cb) {
144
- const command = new DescribeTrustedAdvisorCheckResultCommand(args);
145
- if (typeof optionsOrCb === "function") {
146
- this.send(command, optionsOrCb);
147
- }
148
- else if (typeof cb === "function") {
149
- if (typeof optionsOrCb !== "object")
150
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
151
- this.send(command, optionsOrCb || {}, cb);
152
- }
153
- else {
154
- return this.send(command, optionsOrCb);
155
- }
156
- }
157
- describeTrustedAdvisorChecks(args, optionsOrCb, cb) {
158
- const command = new DescribeTrustedAdvisorChecksCommand(args);
159
- if (typeof optionsOrCb === "function") {
160
- this.send(command, optionsOrCb);
161
- }
162
- else if (typeof cb === "function") {
163
- if (typeof optionsOrCb !== "object")
164
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
165
- this.send(command, optionsOrCb || {}, cb);
166
- }
167
- else {
168
- return this.send(command, optionsOrCb);
169
- }
170
- }
171
- describeTrustedAdvisorCheckSummaries(args, optionsOrCb, cb) {
172
- const command = new DescribeTrustedAdvisorCheckSummariesCommand(args);
173
- if (typeof optionsOrCb === "function") {
174
- this.send(command, optionsOrCb);
175
- }
176
- else if (typeof cb === "function") {
177
- if (typeof optionsOrCb !== "object")
178
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
179
- this.send(command, optionsOrCb || {}, cb);
180
- }
181
- else {
182
- return this.send(command, optionsOrCb);
183
- }
184
- }
185
- refreshTrustedAdvisorCheck(args, optionsOrCb, cb) {
186
- const command = new RefreshTrustedAdvisorCheckCommand(args);
187
- if (typeof optionsOrCb === "function") {
188
- this.send(command, optionsOrCb);
189
- }
190
- else if (typeof cb === "function") {
191
- if (typeof optionsOrCb !== "object")
192
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
193
- this.send(command, optionsOrCb || {}, cb);
194
- }
195
- else {
196
- return this.send(command, optionsOrCb);
197
- }
198
- }
199
- resolveCase(args, optionsOrCb, cb) {
200
- const command = new ResolveCaseCommand(args);
201
- if (typeof optionsOrCb === "function") {
202
- this.send(command, optionsOrCb);
203
- }
204
- else if (typeof cb === "function") {
205
- if (typeof optionsOrCb !== "object")
206
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
207
- this.send(command, optionsOrCb || {}, cb);
208
- }
209
- else {
210
- return this.send(command, optionsOrCb);
211
- }
212
- }
213
34
  }
35
+ createAggregatedClient(commands, Support);