@aws-sdk/client-acm 3.186.0 → 3.188.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 (29) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-es/ACM.js +62 -69
  3. package/dist-es/ACMClient.js +22 -28
  4. package/dist-es/commands/AddTagsToCertificateCommand.js +22 -29
  5. package/dist-es/commands/DeleteCertificateCommand.js +22 -29
  6. package/dist-es/commands/DescribeCertificateCommand.js +21 -28
  7. package/dist-es/commands/ExportCertificateCommand.js +21 -28
  8. package/dist-es/commands/GetAccountConfigurationCommand.js +22 -29
  9. package/dist-es/commands/GetCertificateCommand.js +21 -28
  10. package/dist-es/commands/ImportCertificateCommand.js +21 -28
  11. package/dist-es/commands/ListCertificatesCommand.js +21 -28
  12. package/dist-es/commands/ListTagsForCertificateCommand.js +21 -28
  13. package/dist-es/commands/PutAccountConfigurationCommand.js +22 -29
  14. package/dist-es/commands/RemoveTagsFromCertificateCommand.js +22 -29
  15. package/dist-es/commands/RenewCertificateCommand.js +22 -29
  16. package/dist-es/commands/RequestCertificateCommand.js +21 -28
  17. package/dist-es/commands/ResendValidationEmailCommand.js +22 -29
  18. package/dist-es/commands/UpdateCertificateOptionsCommand.js +22 -29
  19. package/dist-es/endpoints.js +8 -8
  20. package/dist-es/models/ACMServiceException.js +5 -10
  21. package/dist-es/models/models_0.js +282 -212
  22. package/dist-es/pagination/ListCertificatesPaginator.js +25 -68
  23. package/dist-es/protocols/Aws_json1_1.js +1129 -1452
  24. package/dist-es/runtimeConfig.browser.js +26 -12
  25. package/dist-es/runtimeConfig.js +30 -12
  26. package/dist-es/runtimeConfig.native.js +8 -5
  27. package/dist-es/runtimeConfig.shared.js +8 -11
  28. package/dist-es/waiters/waitForCertificateValidated.js +61 -102
  29. package/package.json +34 -34
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
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.188.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.187.0...v3.188.0) (2022-10-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-acm
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.186.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.185.0...v3.186.0) (2022-10-06)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/client-acm
package/dist-es/ACM.js CHANGED
@@ -1,4 +1,3 @@
1
- import { __extends } from "tslib";
2
1
  import { ACMClient } from "./ACMClient";
3
2
  import { AddTagsToCertificateCommand, } from "./commands/AddTagsToCertificateCommand";
4
3
  import { DeleteCertificateCommand, } from "./commands/DeleteCertificateCommand";
@@ -15,221 +14,215 @@ import { RenewCertificateCommand, } from "./commands/RenewCertificateCommand";
15
14
  import { RequestCertificateCommand, } from "./commands/RequestCertificateCommand";
16
15
  import { ResendValidationEmailCommand, } from "./commands/ResendValidationEmailCommand";
17
16
  import { UpdateCertificateOptionsCommand, } from "./commands/UpdateCertificateOptionsCommand";
18
- var ACM = (function (_super) {
19
- __extends(ACM, _super);
20
- function ACM() {
21
- return _super !== null && _super.apply(this, arguments) || this;
22
- }
23
- ACM.prototype.addTagsToCertificate = function (args, optionsOrCb, cb) {
24
- var command = new AddTagsToCertificateCommand(args);
17
+ export class ACM extends ACMClient {
18
+ addTagsToCertificate(args, optionsOrCb, cb) {
19
+ const command = new AddTagsToCertificateCommand(args);
25
20
  if (typeof optionsOrCb === "function") {
26
21
  this.send(command, optionsOrCb);
27
22
  }
28
23
  else if (typeof cb === "function") {
29
24
  if (typeof optionsOrCb !== "object")
30
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
25
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
31
26
  this.send(command, optionsOrCb || {}, cb);
32
27
  }
33
28
  else {
34
29
  return this.send(command, optionsOrCb);
35
30
  }
36
- };
37
- ACM.prototype.deleteCertificate = function (args, optionsOrCb, cb) {
38
- var command = new DeleteCertificateCommand(args);
31
+ }
32
+ deleteCertificate(args, optionsOrCb, cb) {
33
+ const command = new DeleteCertificateCommand(args);
39
34
  if (typeof optionsOrCb === "function") {
40
35
  this.send(command, optionsOrCb);
41
36
  }
42
37
  else if (typeof cb === "function") {
43
38
  if (typeof optionsOrCb !== "object")
44
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
39
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
45
40
  this.send(command, optionsOrCb || {}, cb);
46
41
  }
47
42
  else {
48
43
  return this.send(command, optionsOrCb);
49
44
  }
50
- };
51
- ACM.prototype.describeCertificate = function (args, optionsOrCb, cb) {
52
- var command = new DescribeCertificateCommand(args);
45
+ }
46
+ describeCertificate(args, optionsOrCb, cb) {
47
+ const command = new DescribeCertificateCommand(args);
53
48
  if (typeof optionsOrCb === "function") {
54
49
  this.send(command, optionsOrCb);
55
50
  }
56
51
  else if (typeof cb === "function") {
57
52
  if (typeof optionsOrCb !== "object")
58
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
53
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
59
54
  this.send(command, optionsOrCb || {}, cb);
60
55
  }
61
56
  else {
62
57
  return this.send(command, optionsOrCb);
63
58
  }
64
- };
65
- ACM.prototype.exportCertificate = function (args, optionsOrCb, cb) {
66
- var command = new ExportCertificateCommand(args);
59
+ }
60
+ exportCertificate(args, optionsOrCb, cb) {
61
+ const command = new ExportCertificateCommand(args);
67
62
  if (typeof optionsOrCb === "function") {
68
63
  this.send(command, optionsOrCb);
69
64
  }
70
65
  else if (typeof cb === "function") {
71
66
  if (typeof optionsOrCb !== "object")
72
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
67
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
73
68
  this.send(command, optionsOrCb || {}, cb);
74
69
  }
75
70
  else {
76
71
  return this.send(command, optionsOrCb);
77
72
  }
78
- };
79
- ACM.prototype.getAccountConfiguration = function (args, optionsOrCb, cb) {
80
- var command = new GetAccountConfigurationCommand(args);
73
+ }
74
+ getAccountConfiguration(args, optionsOrCb, cb) {
75
+ const command = new GetAccountConfigurationCommand(args);
81
76
  if (typeof optionsOrCb === "function") {
82
77
  this.send(command, optionsOrCb);
83
78
  }
84
79
  else if (typeof cb === "function") {
85
80
  if (typeof optionsOrCb !== "object")
86
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
81
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
87
82
  this.send(command, optionsOrCb || {}, cb);
88
83
  }
89
84
  else {
90
85
  return this.send(command, optionsOrCb);
91
86
  }
92
- };
93
- ACM.prototype.getCertificate = function (args, optionsOrCb, cb) {
94
- var command = new GetCertificateCommand(args);
87
+ }
88
+ getCertificate(args, optionsOrCb, cb) {
89
+ const command = new GetCertificateCommand(args);
95
90
  if (typeof optionsOrCb === "function") {
96
91
  this.send(command, optionsOrCb);
97
92
  }
98
93
  else if (typeof cb === "function") {
99
94
  if (typeof optionsOrCb !== "object")
100
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
95
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
101
96
  this.send(command, optionsOrCb || {}, cb);
102
97
  }
103
98
  else {
104
99
  return this.send(command, optionsOrCb);
105
100
  }
106
- };
107
- ACM.prototype.importCertificate = function (args, optionsOrCb, cb) {
108
- var command = new ImportCertificateCommand(args);
101
+ }
102
+ importCertificate(args, optionsOrCb, cb) {
103
+ const command = new ImportCertificateCommand(args);
109
104
  if (typeof optionsOrCb === "function") {
110
105
  this.send(command, optionsOrCb);
111
106
  }
112
107
  else if (typeof cb === "function") {
113
108
  if (typeof optionsOrCb !== "object")
114
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
109
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
115
110
  this.send(command, optionsOrCb || {}, cb);
116
111
  }
117
112
  else {
118
113
  return this.send(command, optionsOrCb);
119
114
  }
120
- };
121
- ACM.prototype.listCertificates = function (args, optionsOrCb, cb) {
122
- var command = new ListCertificatesCommand(args);
115
+ }
116
+ listCertificates(args, optionsOrCb, cb) {
117
+ const command = new ListCertificatesCommand(args);
123
118
  if (typeof optionsOrCb === "function") {
124
119
  this.send(command, optionsOrCb);
125
120
  }
126
121
  else if (typeof cb === "function") {
127
122
  if (typeof optionsOrCb !== "object")
128
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
123
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
129
124
  this.send(command, optionsOrCb || {}, cb);
130
125
  }
131
126
  else {
132
127
  return this.send(command, optionsOrCb);
133
128
  }
134
- };
135
- ACM.prototype.listTagsForCertificate = function (args, optionsOrCb, cb) {
136
- var command = new ListTagsForCertificateCommand(args);
129
+ }
130
+ listTagsForCertificate(args, optionsOrCb, cb) {
131
+ const command = new ListTagsForCertificateCommand(args);
137
132
  if (typeof optionsOrCb === "function") {
138
133
  this.send(command, optionsOrCb);
139
134
  }
140
135
  else if (typeof cb === "function") {
141
136
  if (typeof optionsOrCb !== "object")
142
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
137
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
143
138
  this.send(command, optionsOrCb || {}, cb);
144
139
  }
145
140
  else {
146
141
  return this.send(command, optionsOrCb);
147
142
  }
148
- };
149
- ACM.prototype.putAccountConfiguration = function (args, optionsOrCb, cb) {
150
- var command = new PutAccountConfigurationCommand(args);
143
+ }
144
+ putAccountConfiguration(args, optionsOrCb, cb) {
145
+ const command = new PutAccountConfigurationCommand(args);
151
146
  if (typeof optionsOrCb === "function") {
152
147
  this.send(command, optionsOrCb);
153
148
  }
154
149
  else if (typeof cb === "function") {
155
150
  if (typeof optionsOrCb !== "object")
156
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
151
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
157
152
  this.send(command, optionsOrCb || {}, cb);
158
153
  }
159
154
  else {
160
155
  return this.send(command, optionsOrCb);
161
156
  }
162
- };
163
- ACM.prototype.removeTagsFromCertificate = function (args, optionsOrCb, cb) {
164
- var command = new RemoveTagsFromCertificateCommand(args);
157
+ }
158
+ removeTagsFromCertificate(args, optionsOrCb, cb) {
159
+ const command = new RemoveTagsFromCertificateCommand(args);
165
160
  if (typeof optionsOrCb === "function") {
166
161
  this.send(command, optionsOrCb);
167
162
  }
168
163
  else if (typeof cb === "function") {
169
164
  if (typeof optionsOrCb !== "object")
170
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
165
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
171
166
  this.send(command, optionsOrCb || {}, cb);
172
167
  }
173
168
  else {
174
169
  return this.send(command, optionsOrCb);
175
170
  }
176
- };
177
- ACM.prototype.renewCertificate = function (args, optionsOrCb, cb) {
178
- var command = new RenewCertificateCommand(args);
171
+ }
172
+ renewCertificate(args, optionsOrCb, cb) {
173
+ const command = new RenewCertificateCommand(args);
179
174
  if (typeof optionsOrCb === "function") {
180
175
  this.send(command, optionsOrCb);
181
176
  }
182
177
  else if (typeof cb === "function") {
183
178
  if (typeof optionsOrCb !== "object")
184
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
179
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
185
180
  this.send(command, optionsOrCb || {}, cb);
186
181
  }
187
182
  else {
188
183
  return this.send(command, optionsOrCb);
189
184
  }
190
- };
191
- ACM.prototype.requestCertificate = function (args, optionsOrCb, cb) {
192
- var command = new RequestCertificateCommand(args);
185
+ }
186
+ requestCertificate(args, optionsOrCb, cb) {
187
+ const command = new RequestCertificateCommand(args);
193
188
  if (typeof optionsOrCb === "function") {
194
189
  this.send(command, optionsOrCb);
195
190
  }
196
191
  else if (typeof cb === "function") {
197
192
  if (typeof optionsOrCb !== "object")
198
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
193
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
199
194
  this.send(command, optionsOrCb || {}, cb);
200
195
  }
201
196
  else {
202
197
  return this.send(command, optionsOrCb);
203
198
  }
204
- };
205
- ACM.prototype.resendValidationEmail = function (args, optionsOrCb, cb) {
206
- var command = new ResendValidationEmailCommand(args);
199
+ }
200
+ resendValidationEmail(args, optionsOrCb, cb) {
201
+ const command = new ResendValidationEmailCommand(args);
207
202
  if (typeof optionsOrCb === "function") {
208
203
  this.send(command, optionsOrCb);
209
204
  }
210
205
  else if (typeof cb === "function") {
211
206
  if (typeof optionsOrCb !== "object")
212
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
207
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
213
208
  this.send(command, optionsOrCb || {}, cb);
214
209
  }
215
210
  else {
216
211
  return this.send(command, optionsOrCb);
217
212
  }
218
- };
219
- ACM.prototype.updateCertificateOptions = function (args, optionsOrCb, cb) {
220
- var command = new UpdateCertificateOptionsCommand(args);
213
+ }
214
+ updateCertificateOptions(args, optionsOrCb, cb) {
215
+ const command = new UpdateCertificateOptionsCommand(args);
221
216
  if (typeof optionsOrCb === "function") {
222
217
  this.send(command, optionsOrCb);
223
218
  }
224
219
  else if (typeof cb === "function") {
225
220
  if (typeof optionsOrCb !== "object")
226
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
221
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
227
222
  this.send(command, optionsOrCb || {}, cb);
228
223
  }
229
224
  else {
230
225
  return this.send(command, optionsOrCb);
231
226
  }
232
- };
233
- return ACM;
234
- }(ACMClient));
235
- export { ACM };
227
+ }
228
+ }
@@ -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 ACMClient = (function (_super) {
13
- __extends(ACMClient, _super);
14
- function ACMClient(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 ACMClient 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
- ACMClient.prototype.destroy = function () {
35
- _super.prototype.destroy.call(this);
36
- };
37
- return ACMClient;
38
- }(__Client));
39
- export { ACMClient };
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 { AddTagsToCertificateRequestFilterSensitiveLog } from "../models/models_0";
5
4
  import { deserializeAws_json1_1AddTagsToCertificateCommand, serializeAws_json1_1AddTagsToCertificateCommand, } from "../protocols/Aws_json1_1";
6
- var AddTagsToCertificateCommand = (function (_super) {
7
- __extends(AddTagsToCertificateCommand, _super);
8
- function AddTagsToCertificateCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class AddTagsToCertificateCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- AddTagsToCertificateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "ACMClient";
18
- var commandName = "AddTagsToCertificateCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "ACMClient";
15
+ const commandName = "AddTagsToCertificateCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: AddTagsToCertificateRequestFilterSensitiveLog,
24
- outputFilterSensitiveLog: function (output) { return output; },
21
+ outputFilterSensitiveLog: (output) => output,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- AddTagsToCertificateCommand.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_1AddTagsToCertificateCommand(input, context);
33
- };
34
- AddTagsToCertificateCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1AddTagsToCertificateCommand(output, context);
36
- };
37
- return AddTagsToCertificateCommand;
38
- }($Command));
39
- export { AddTagsToCertificateCommand };
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 { DeleteCertificateRequestFilterSensitiveLog } from "../models/models_0";
5
4
  import { deserializeAws_json1_1DeleteCertificateCommand, serializeAws_json1_1DeleteCertificateCommand, } from "../protocols/Aws_json1_1";
6
- var DeleteCertificateCommand = (function (_super) {
7
- __extends(DeleteCertificateCommand, _super);
8
- function DeleteCertificateCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class DeleteCertificateCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DeleteCertificateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "ACMClient";
18
- var commandName = "DeleteCertificateCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "ACMClient";
15
+ const commandName = "DeleteCertificateCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DeleteCertificateRequestFilterSensitiveLog,
24
- outputFilterSensitiveLog: function (output) { return output; },
21
+ outputFilterSensitiveLog: (output) => output,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- DeleteCertificateCommand.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_1DeleteCertificateCommand(input, context);
33
- };
34
- DeleteCertificateCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1DeleteCertificateCommand(output, context);
36
- };
37
- return DeleteCertificateCommand;
38
- }($Command));
39
- export { DeleteCertificateCommand };
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 { DescribeCertificateRequestFilterSensitiveLog, DescribeCertificateResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1DescribeCertificateCommand, serializeAws_json1_1DescribeCertificateCommand, } from "../protocols/Aws_json1_1";
6
- var DescribeCertificateCommand = (function (_super) {
7
- __extends(DescribeCertificateCommand, _super);
8
- function DescribeCertificateCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class DescribeCertificateCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DescribeCertificateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "ACMClient";
18
- var commandName = "DescribeCertificateCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "ACMClient";
15
+ const commandName = "DescribeCertificateCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DescribeCertificateRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: DescribeCertificateResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- DescribeCertificateCommand.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_1DescribeCertificateCommand(input, context);
33
- };
34
- DescribeCertificateCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1DescribeCertificateCommand(output, context);
36
- };
37
- return DescribeCertificateCommand;
38
- }($Command));
39
- export { DescribeCertificateCommand };
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 { ExportCertificateRequestFilterSensitiveLog, ExportCertificateResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_1ExportCertificateCommand, serializeAws_json1_1ExportCertificateCommand, } from "../protocols/Aws_json1_1";
6
- var ExportCertificateCommand = (function (_super) {
7
- __extends(ExportCertificateCommand, _super);
8
- function ExportCertificateCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class ExportCertificateCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- ExportCertificateCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
10
+ resolveMiddleware(clientStack, configuration, options) {
14
11
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
15
- var stack = clientStack.concat(this.middlewareStack);
16
- var logger = configuration.logger;
17
- var clientName = "ACMClient";
18
- var commandName = "ExportCertificateCommand";
19
- var handlerExecutionContext = {
20
- logger: logger,
21
- clientName: clientName,
22
- commandName: commandName,
12
+ const stack = clientStack.concat(this.middlewareStack);
13
+ const { logger } = configuration;
14
+ const clientName = "ACMClient";
15
+ const commandName = "ExportCertificateCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: ExportCertificateRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: ExportCertificateResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- ExportCertificateCommand.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_1ExportCertificateCommand(input, context);
33
- };
34
- ExportCertificateCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_1ExportCertificateCommand(output, context);
36
- };
37
- return ExportCertificateCommand;
38
- }($Command));
39
- export { ExportCertificateCommand };
31
+ }
32
+ }