@aws-sdk/client-codestar-connections 3.181.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.
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.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-codestar-connections
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.181.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.180.0...v3.181.0) (2022-09-29)
7
15
 
8
16
 
@@ -1,4 +1,3 @@
1
- import { __extends } from "tslib";
2
1
  import { CodeStarConnectionsClient } from "./CodeStarConnectionsClient";
3
2
  import { CreateConnectionCommand, } from "./commands/CreateConnectionCommand";
4
3
  import { CreateHostCommand } from "./commands/CreateHostCommand";
@@ -12,179 +11,173 @@ import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceComma
12
11
  import { TagResourceCommand } from "./commands/TagResourceCommand";
13
12
  import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
14
13
  import { UpdateHostCommand } from "./commands/UpdateHostCommand";
15
- var CodeStarConnections = (function (_super) {
16
- __extends(CodeStarConnections, _super);
17
- function CodeStarConnections() {
18
- return _super !== null && _super.apply(this, arguments) || this;
19
- }
20
- CodeStarConnections.prototype.createConnection = function (args, optionsOrCb, cb) {
21
- var command = new CreateConnectionCommand(args);
14
+ export class CodeStarConnections extends CodeStarConnectionsClient {
15
+ createConnection(args, optionsOrCb, cb) {
16
+ const command = new CreateConnectionCommand(args);
22
17
  if (typeof optionsOrCb === "function") {
23
18
  this.send(command, optionsOrCb);
24
19
  }
25
20
  else if (typeof cb === "function") {
26
21
  if (typeof optionsOrCb !== "object")
27
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
22
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
28
23
  this.send(command, optionsOrCb || {}, cb);
29
24
  }
30
25
  else {
31
26
  return this.send(command, optionsOrCb);
32
27
  }
33
- };
34
- CodeStarConnections.prototype.createHost = function (args, optionsOrCb, cb) {
35
- var command = new CreateHostCommand(args);
28
+ }
29
+ createHost(args, optionsOrCb, cb) {
30
+ const command = new CreateHostCommand(args);
36
31
  if (typeof optionsOrCb === "function") {
37
32
  this.send(command, optionsOrCb);
38
33
  }
39
34
  else if (typeof cb === "function") {
40
35
  if (typeof optionsOrCb !== "object")
41
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
36
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
42
37
  this.send(command, optionsOrCb || {}, cb);
43
38
  }
44
39
  else {
45
40
  return this.send(command, optionsOrCb);
46
41
  }
47
- };
48
- CodeStarConnections.prototype.deleteConnection = function (args, optionsOrCb, cb) {
49
- var command = new DeleteConnectionCommand(args);
42
+ }
43
+ deleteConnection(args, optionsOrCb, cb) {
44
+ const command = new DeleteConnectionCommand(args);
50
45
  if (typeof optionsOrCb === "function") {
51
46
  this.send(command, optionsOrCb);
52
47
  }
53
48
  else if (typeof cb === "function") {
54
49
  if (typeof optionsOrCb !== "object")
55
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
50
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
56
51
  this.send(command, optionsOrCb || {}, cb);
57
52
  }
58
53
  else {
59
54
  return this.send(command, optionsOrCb);
60
55
  }
61
- };
62
- CodeStarConnections.prototype.deleteHost = function (args, optionsOrCb, cb) {
63
- var command = new DeleteHostCommand(args);
56
+ }
57
+ deleteHost(args, optionsOrCb, cb) {
58
+ const command = new DeleteHostCommand(args);
64
59
  if (typeof optionsOrCb === "function") {
65
60
  this.send(command, optionsOrCb);
66
61
  }
67
62
  else if (typeof cb === "function") {
68
63
  if (typeof optionsOrCb !== "object")
69
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
64
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
70
65
  this.send(command, optionsOrCb || {}, cb);
71
66
  }
72
67
  else {
73
68
  return this.send(command, optionsOrCb);
74
69
  }
75
- };
76
- CodeStarConnections.prototype.getConnection = function (args, optionsOrCb, cb) {
77
- var command = new GetConnectionCommand(args);
70
+ }
71
+ getConnection(args, optionsOrCb, cb) {
72
+ const command = new GetConnectionCommand(args);
78
73
  if (typeof optionsOrCb === "function") {
79
74
  this.send(command, optionsOrCb);
80
75
  }
81
76
  else if (typeof cb === "function") {
82
77
  if (typeof optionsOrCb !== "object")
83
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
78
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
84
79
  this.send(command, optionsOrCb || {}, cb);
85
80
  }
86
81
  else {
87
82
  return this.send(command, optionsOrCb);
88
83
  }
89
- };
90
- CodeStarConnections.prototype.getHost = function (args, optionsOrCb, cb) {
91
- var command = new GetHostCommand(args);
84
+ }
85
+ getHost(args, optionsOrCb, cb) {
86
+ const command = new GetHostCommand(args);
92
87
  if (typeof optionsOrCb === "function") {
93
88
  this.send(command, optionsOrCb);
94
89
  }
95
90
  else if (typeof cb === "function") {
96
91
  if (typeof optionsOrCb !== "object")
97
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
92
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
98
93
  this.send(command, optionsOrCb || {}, cb);
99
94
  }
100
95
  else {
101
96
  return this.send(command, optionsOrCb);
102
97
  }
103
- };
104
- CodeStarConnections.prototype.listConnections = function (args, optionsOrCb, cb) {
105
- var command = new ListConnectionsCommand(args);
98
+ }
99
+ listConnections(args, optionsOrCb, cb) {
100
+ const command = new ListConnectionsCommand(args);
106
101
  if (typeof optionsOrCb === "function") {
107
102
  this.send(command, optionsOrCb);
108
103
  }
109
104
  else if (typeof cb === "function") {
110
105
  if (typeof optionsOrCb !== "object")
111
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
106
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
112
107
  this.send(command, optionsOrCb || {}, cb);
113
108
  }
114
109
  else {
115
110
  return this.send(command, optionsOrCb);
116
111
  }
117
- };
118
- CodeStarConnections.prototype.listHosts = function (args, optionsOrCb, cb) {
119
- var command = new ListHostsCommand(args);
112
+ }
113
+ listHosts(args, optionsOrCb, cb) {
114
+ const command = new ListHostsCommand(args);
120
115
  if (typeof optionsOrCb === "function") {
121
116
  this.send(command, optionsOrCb);
122
117
  }
123
118
  else if (typeof cb === "function") {
124
119
  if (typeof optionsOrCb !== "object")
125
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
120
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
126
121
  this.send(command, optionsOrCb || {}, cb);
127
122
  }
128
123
  else {
129
124
  return this.send(command, optionsOrCb);
130
125
  }
131
- };
132
- CodeStarConnections.prototype.listTagsForResource = function (args, optionsOrCb, cb) {
133
- var command = new ListTagsForResourceCommand(args);
126
+ }
127
+ listTagsForResource(args, optionsOrCb, cb) {
128
+ const command = new ListTagsForResourceCommand(args);
134
129
  if (typeof optionsOrCb === "function") {
135
130
  this.send(command, optionsOrCb);
136
131
  }
137
132
  else if (typeof cb === "function") {
138
133
  if (typeof optionsOrCb !== "object")
139
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
134
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
140
135
  this.send(command, optionsOrCb || {}, cb);
141
136
  }
142
137
  else {
143
138
  return this.send(command, optionsOrCb);
144
139
  }
145
- };
146
- CodeStarConnections.prototype.tagResource = function (args, optionsOrCb, cb) {
147
- var command = new TagResourceCommand(args);
140
+ }
141
+ tagResource(args, optionsOrCb, cb) {
142
+ const command = new TagResourceCommand(args);
148
143
  if (typeof optionsOrCb === "function") {
149
144
  this.send(command, optionsOrCb);
150
145
  }
151
146
  else if (typeof cb === "function") {
152
147
  if (typeof optionsOrCb !== "object")
153
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
148
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
154
149
  this.send(command, optionsOrCb || {}, cb);
155
150
  }
156
151
  else {
157
152
  return this.send(command, optionsOrCb);
158
153
  }
159
- };
160
- CodeStarConnections.prototype.untagResource = function (args, optionsOrCb, cb) {
161
- var command = new UntagResourceCommand(args);
154
+ }
155
+ untagResource(args, optionsOrCb, cb) {
156
+ const command = new UntagResourceCommand(args);
162
157
  if (typeof optionsOrCb === "function") {
163
158
  this.send(command, optionsOrCb);
164
159
  }
165
160
  else if (typeof cb === "function") {
166
161
  if (typeof optionsOrCb !== "object")
167
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
162
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
168
163
  this.send(command, optionsOrCb || {}, cb);
169
164
  }
170
165
  else {
171
166
  return this.send(command, optionsOrCb);
172
167
  }
173
- };
174
- CodeStarConnections.prototype.updateHost = function (args, optionsOrCb, cb) {
175
- var command = new UpdateHostCommand(args);
168
+ }
169
+ updateHost(args, optionsOrCb, cb) {
170
+ const command = new UpdateHostCommand(args);
176
171
  if (typeof optionsOrCb === "function") {
177
172
  this.send(command, optionsOrCb);
178
173
  }
179
174
  else if (typeof cb === "function") {
180
175
  if (typeof optionsOrCb !== "object")
181
- throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
176
+ throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
182
177
  this.send(command, optionsOrCb || {}, cb);
183
178
  }
184
179
  else {
185
180
  return this.send(command, optionsOrCb);
186
181
  }
187
- };
188
- return CodeStarConnections;
189
- }(CodeStarConnectionsClient));
190
- export { CodeStarConnections };
182
+ }
183
+ }
@@ -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 CodeStarConnectionsClient = (function (_super) {
13
- __extends(CodeStarConnectionsClient, _super);
14
- function CodeStarConnectionsClient(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 CodeStarConnectionsClient 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
- CodeStarConnectionsClient.prototype.destroy = function () {
35
- _super.prototype.destroy.call(this);
36
- };
37
- return CodeStarConnectionsClient;
38
- }(__Client));
39
- export { CodeStarConnectionsClient };
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 { CreateConnectionInputFilterSensitiveLog, CreateConnectionOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_0CreateConnectionCommand, serializeAws_json1_0CreateConnectionCommand, } from "../protocols/Aws_json1_0";
6
- var CreateConnectionCommand = (function (_super) {
7
- __extends(CreateConnectionCommand, _super);
8
- function CreateConnectionCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateConnectionCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateConnectionCommand.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 = "CodeStarConnectionsClient";
18
- var commandName = "CreateConnectionCommand";
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 = "CodeStarConnectionsClient";
15
+ const commandName = "CreateConnectionCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateConnectionInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateConnectionOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateConnectionCommand.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_0CreateConnectionCommand(input, context);
33
- };
34
- CreateConnectionCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_0CreateConnectionCommand(output, context);
36
- };
37
- return CreateConnectionCommand;
38
- }($Command));
39
- export { CreateConnectionCommand };
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 { CreateHostInputFilterSensitiveLog, CreateHostOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_0CreateHostCommand, serializeAws_json1_0CreateHostCommand, } from "../protocols/Aws_json1_0";
6
- var CreateHostCommand = (function (_super) {
7
- __extends(CreateHostCommand, _super);
8
- function CreateHostCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateHostCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateHostCommand.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 = "CodeStarConnectionsClient";
18
- var commandName = "CreateHostCommand";
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 = "CodeStarConnectionsClient";
15
+ const commandName = "CreateHostCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateHostInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateHostOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateHostCommand.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_0CreateHostCommand(input, context);
33
- };
34
- CreateHostCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_0CreateHostCommand(output, context);
36
- };
37
- return CreateHostCommand;
38
- }($Command));
39
- export { CreateHostCommand };
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 { DeleteConnectionInputFilterSensitiveLog, DeleteConnectionOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_0DeleteConnectionCommand, serializeAws_json1_0DeleteConnectionCommand, } from "../protocols/Aws_json1_0";
6
- var DeleteConnectionCommand = (function (_super) {
7
- __extends(DeleteConnectionCommand, _super);
8
- function DeleteConnectionCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class DeleteConnectionCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DeleteConnectionCommand.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 = "CodeStarConnectionsClient";
18
- var commandName = "DeleteConnectionCommand";
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 = "CodeStarConnectionsClient";
15
+ const commandName = "DeleteConnectionCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DeleteConnectionInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: DeleteConnectionOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- DeleteConnectionCommand.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_0DeleteConnectionCommand(input, context);
33
- };
34
- DeleteConnectionCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_0DeleteConnectionCommand(output, context);
36
- };
37
- return DeleteConnectionCommand;
38
- }($Command));
39
- export { DeleteConnectionCommand };
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 { DeleteHostInputFilterSensitiveLog, DeleteHostOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_0DeleteHostCommand, serializeAws_json1_0DeleteHostCommand, } from "../protocols/Aws_json1_0";
6
- var DeleteHostCommand = (function (_super) {
7
- __extends(DeleteHostCommand, _super);
8
- function DeleteHostCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class DeleteHostCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DeleteHostCommand.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 = "CodeStarConnectionsClient";
18
- var commandName = "DeleteHostCommand";
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 = "CodeStarConnectionsClient";
15
+ const commandName = "DeleteHostCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DeleteHostInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: DeleteHostOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- DeleteHostCommand.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_0DeleteHostCommand(input, context);
33
- };
34
- DeleteHostCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_0DeleteHostCommand(output, context);
36
- };
37
- return DeleteHostCommand;
38
- }($Command));
39
- export { DeleteHostCommand };
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 { GetConnectionInputFilterSensitiveLog, GetConnectionOutputFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_0GetConnectionCommand, serializeAws_json1_0GetConnectionCommand, } from "../protocols/Aws_json1_0";
6
- var GetConnectionCommand = (function (_super) {
7
- __extends(GetConnectionCommand, _super);
8
- function GetConnectionCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class GetConnectionCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- GetConnectionCommand.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 = "CodeStarConnectionsClient";
18
- var commandName = "GetConnectionCommand";
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 = "CodeStarConnectionsClient";
15
+ const commandName = "GetConnectionCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: GetConnectionInputFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: GetConnectionOutputFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- GetConnectionCommand.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_0GetConnectionCommand(input, context);
33
- };
34
- GetConnectionCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_0GetConnectionCommand(output, context);
36
- };
37
- return GetConnectionCommand;
38
- }($Command));
39
- export { GetConnectionCommand };
31
+ }
32
+ }