@aws-sdk/client-finspace 3.183.0 → 3.186.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,25 @@
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.186.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.185.0...v3.186.0) (2022-10-06)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-finspace
9
+
10
+
11
+
12
+
13
+
14
+ # [3.185.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.184.0...v3.185.0) (2022-10-05)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **codegen:** add deser check for x-amz-request-id ([#4015](https://github.com/aws/aws-sdk-js-v3/issues/4015)) ([6ff07bd](https://github.com/aws/aws-sdk-js-v3/commit/6ff07bd7e72bd56725f318013ac1d6d0fbbcdd9a))
20
+
21
+
22
+
23
+
24
+
6
25
  # [3.183.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.182.0...v3.183.0) (2022-10-03)
7
26
 
8
27
  **Note:** Version bump only for package @aws-sdk/client-finspace
@@ -721,10 +721,10 @@ const deserializeAws_restJson1TagMap = (output, context) => {
721
721
  }, {});
722
722
  };
723
723
  const deserializeMetadata = (output) => {
724
- var _a;
724
+ var _a, _b;
725
725
  return ({
726
726
  httpStatusCode: output.statusCode,
727
- requestId: (_a = output.headers["x-amzn-requestid"]) !== null && _a !== void 0 ? _a : output.headers["x-amzn-request-id"],
727
+ requestId: (_b = (_a = output.headers["x-amzn-requestid"]) !== null && _a !== void 0 ? _a : output.headers["x-amzn-request-id"]) !== null && _b !== void 0 ? _b : output.headers["x-amz-request-id"],
728
728
  extendedRequestId: output.headers["x-amz-id-2"],
729
729
  cfId: output.headers["x-amz-cf-id"],
730
730
  });
@@ -1,3 +1,4 @@
1
+ import { __extends } from "tslib";
1
2
  import { CreateEnvironmentCommand, } from "./commands/CreateEnvironmentCommand";
2
3
  import { DeleteEnvironmentCommand, } from "./commands/DeleteEnvironmentCommand";
3
4
  import { GetEnvironmentCommand, } from "./commands/GetEnvironmentCommand";
@@ -7,117 +8,123 @@ import { TagResourceCommand } from "./commands/TagResourceCommand";
7
8
  import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
8
9
  import { UpdateEnvironmentCommand, } from "./commands/UpdateEnvironmentCommand";
9
10
  import { FinspaceClient } from "./FinspaceClient";
10
- export class Finspace extends FinspaceClient {
11
- createEnvironment(args, optionsOrCb, cb) {
12
- const command = new CreateEnvironmentCommand(args);
11
+ var Finspace = (function (_super) {
12
+ __extends(Finspace, _super);
13
+ function Finspace() {
14
+ return _super !== null && _super.apply(this, arguments) || this;
15
+ }
16
+ Finspace.prototype.createEnvironment = function (args, optionsOrCb, cb) {
17
+ var command = new CreateEnvironmentCommand(args);
13
18
  if (typeof optionsOrCb === "function") {
14
19
  this.send(command, optionsOrCb);
15
20
  }
16
21
  else if (typeof cb === "function") {
17
22
  if (typeof optionsOrCb !== "object")
18
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
23
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
19
24
  this.send(command, optionsOrCb || {}, cb);
20
25
  }
21
26
  else {
22
27
  return this.send(command, optionsOrCb);
23
28
  }
24
- }
25
- deleteEnvironment(args, optionsOrCb, cb) {
26
- const command = new DeleteEnvironmentCommand(args);
29
+ };
30
+ Finspace.prototype.deleteEnvironment = function (args, optionsOrCb, cb) {
31
+ var command = new DeleteEnvironmentCommand(args);
27
32
  if (typeof optionsOrCb === "function") {
28
33
  this.send(command, optionsOrCb);
29
34
  }
30
35
  else if (typeof cb === "function") {
31
36
  if (typeof optionsOrCb !== "object")
32
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
37
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
33
38
  this.send(command, optionsOrCb || {}, cb);
34
39
  }
35
40
  else {
36
41
  return this.send(command, optionsOrCb);
37
42
  }
38
- }
39
- getEnvironment(args, optionsOrCb, cb) {
40
- const command = new GetEnvironmentCommand(args);
43
+ };
44
+ Finspace.prototype.getEnvironment = function (args, optionsOrCb, cb) {
45
+ var command = new GetEnvironmentCommand(args);
41
46
  if (typeof optionsOrCb === "function") {
42
47
  this.send(command, optionsOrCb);
43
48
  }
44
49
  else if (typeof cb === "function") {
45
50
  if (typeof optionsOrCb !== "object")
46
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
51
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
47
52
  this.send(command, optionsOrCb || {}, cb);
48
53
  }
49
54
  else {
50
55
  return this.send(command, optionsOrCb);
51
56
  }
52
- }
53
- listEnvironments(args, optionsOrCb, cb) {
54
- const command = new ListEnvironmentsCommand(args);
57
+ };
58
+ Finspace.prototype.listEnvironments = function (args, optionsOrCb, cb) {
59
+ var command = new ListEnvironmentsCommand(args);
55
60
  if (typeof optionsOrCb === "function") {
56
61
  this.send(command, optionsOrCb);
57
62
  }
58
63
  else if (typeof cb === "function") {
59
64
  if (typeof optionsOrCb !== "object")
60
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
65
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
61
66
  this.send(command, optionsOrCb || {}, cb);
62
67
  }
63
68
  else {
64
69
  return this.send(command, optionsOrCb);
65
70
  }
66
- }
67
- listTagsForResource(args, optionsOrCb, cb) {
68
- const command = new ListTagsForResourceCommand(args);
71
+ };
72
+ Finspace.prototype.listTagsForResource = function (args, optionsOrCb, cb) {
73
+ var command = new ListTagsForResourceCommand(args);
69
74
  if (typeof optionsOrCb === "function") {
70
75
  this.send(command, optionsOrCb);
71
76
  }
72
77
  else if (typeof cb === "function") {
73
78
  if (typeof optionsOrCb !== "object")
74
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
79
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
75
80
  this.send(command, optionsOrCb || {}, cb);
76
81
  }
77
82
  else {
78
83
  return this.send(command, optionsOrCb);
79
84
  }
80
- }
81
- tagResource(args, optionsOrCb, cb) {
82
- const command = new TagResourceCommand(args);
85
+ };
86
+ Finspace.prototype.tagResource = function (args, optionsOrCb, cb) {
87
+ var command = new TagResourceCommand(args);
83
88
  if (typeof optionsOrCb === "function") {
84
89
  this.send(command, optionsOrCb);
85
90
  }
86
91
  else if (typeof cb === "function") {
87
92
  if (typeof optionsOrCb !== "object")
88
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
93
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
89
94
  this.send(command, optionsOrCb || {}, cb);
90
95
  }
91
96
  else {
92
97
  return this.send(command, optionsOrCb);
93
98
  }
94
- }
95
- untagResource(args, optionsOrCb, cb) {
96
- const command = new UntagResourceCommand(args);
99
+ };
100
+ Finspace.prototype.untagResource = function (args, optionsOrCb, cb) {
101
+ var command = new UntagResourceCommand(args);
97
102
  if (typeof optionsOrCb === "function") {
98
103
  this.send(command, optionsOrCb);
99
104
  }
100
105
  else if (typeof cb === "function") {
101
106
  if (typeof optionsOrCb !== "object")
102
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
107
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
103
108
  this.send(command, optionsOrCb || {}, cb);
104
109
  }
105
110
  else {
106
111
  return this.send(command, optionsOrCb);
107
112
  }
108
- }
109
- updateEnvironment(args, optionsOrCb, cb) {
110
- const command = new UpdateEnvironmentCommand(args);
113
+ };
114
+ Finspace.prototype.updateEnvironment = function (args, optionsOrCb, cb) {
115
+ var command = new UpdateEnvironmentCommand(args);
111
116
  if (typeof optionsOrCb === "function") {
112
117
  this.send(command, optionsOrCb);
113
118
  }
114
119
  else if (typeof cb === "function") {
115
120
  if (typeof optionsOrCb !== "object")
116
- throw new Error(`Expect http options but get ${typeof optionsOrCb}`);
121
+ throw new Error("Expect http options but get ".concat(typeof optionsOrCb));
117
122
  this.send(command, optionsOrCb || {}, cb);
118
123
  }
119
124
  else {
120
125
  return this.send(command, optionsOrCb);
121
126
  }
122
- }
123
- }
127
+ };
128
+ return Finspace;
129
+ }(FinspaceClient));
130
+ export { Finspace };
@@ -1,3 +1,4 @@
1
+ import { __extends } from "tslib";
1
2
  import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-resolver";
2
3
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
3
4
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
@@ -8,26 +9,31 @@ import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-sig
8
9
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
9
10
  import { Client as __Client, } from "@aws-sdk/smithy-client";
10
11
  import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
11
- export class FinspaceClient 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));
12
+ var FinspaceClient = (function (_super) {
13
+ __extends(FinspaceClient, _super);
14
+ function FinspaceClient(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;
29
33
  }
30
- destroy() {
31
- super.destroy();
32
- }
33
- }
34
+ FinspaceClient.prototype.destroy = function () {
35
+ _super.prototype.destroy.call(this);
36
+ };
37
+ return FinspaceClient;
38
+ }(__Client));
39
+ export { FinspaceClient };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { CreateEnvironmentRequestFilterSensitiveLog, CreateEnvironmentResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1CreateEnvironmentCommand, serializeAws_restJson1CreateEnvironmentCommand, } from "../protocols/Aws_restJson1";
5
- export class CreateEnvironmentCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var CreateEnvironmentCommand = (function (_super) {
7
+ __extends(CreateEnvironmentCommand, _super);
8
+ function CreateEnvironmentCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ CreateEnvironmentCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "FinspaceClient";
15
- const commandName = "CreateEnvironmentCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "FinspaceClient";
18
+ var commandName = "CreateEnvironmentCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: CreateEnvironmentRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: CreateEnvironmentResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ CreateEnvironmentCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1CreateEnvironmentCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ CreateEnvironmentCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1CreateEnvironmentCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return CreateEnvironmentCommand;
38
+ }($Command));
39
+ export { CreateEnvironmentCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { DeleteEnvironmentRequestFilterSensitiveLog, DeleteEnvironmentResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1DeleteEnvironmentCommand, serializeAws_restJson1DeleteEnvironmentCommand, } from "../protocols/Aws_restJson1";
5
- export class DeleteEnvironmentCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var DeleteEnvironmentCommand = (function (_super) {
7
+ __extends(DeleteEnvironmentCommand, _super);
8
+ function DeleteEnvironmentCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ DeleteEnvironmentCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "FinspaceClient";
15
- const commandName = "DeleteEnvironmentCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "FinspaceClient";
18
+ var commandName = "DeleteEnvironmentCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: DeleteEnvironmentRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: DeleteEnvironmentResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ DeleteEnvironmentCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1DeleteEnvironmentCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ DeleteEnvironmentCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1DeleteEnvironmentCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return DeleteEnvironmentCommand;
38
+ }($Command));
39
+ export { DeleteEnvironmentCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { GetEnvironmentRequestFilterSensitiveLog, GetEnvironmentResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1GetEnvironmentCommand, serializeAws_restJson1GetEnvironmentCommand, } from "../protocols/Aws_restJson1";
5
- export class GetEnvironmentCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var GetEnvironmentCommand = (function (_super) {
7
+ __extends(GetEnvironmentCommand, _super);
8
+ function GetEnvironmentCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ GetEnvironmentCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "FinspaceClient";
15
- const commandName = "GetEnvironmentCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "FinspaceClient";
18
+ var commandName = "GetEnvironmentCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: GetEnvironmentRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: GetEnvironmentResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ GetEnvironmentCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1GetEnvironmentCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ GetEnvironmentCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1GetEnvironmentCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return GetEnvironmentCommand;
38
+ }($Command));
39
+ export { GetEnvironmentCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListEnvironmentsRequestFilterSensitiveLog, ListEnvironmentsResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListEnvironmentsCommand, serializeAws_restJson1ListEnvironmentsCommand, } from "../protocols/Aws_restJson1";
5
- export class ListEnvironmentsCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListEnvironmentsCommand = (function (_super) {
7
+ __extends(ListEnvironmentsCommand, _super);
8
+ function ListEnvironmentsCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListEnvironmentsCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "FinspaceClient";
15
- const commandName = "ListEnvironmentsCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "FinspaceClient";
18
+ var commandName = "ListEnvironmentsCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListEnvironmentsRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListEnvironmentsResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListEnvironmentsCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListEnvironmentsCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListEnvironmentsCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListEnvironmentsCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListEnvironmentsCommand;
38
+ }($Command));
39
+ export { ListEnvironmentsCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { ListTagsForResourceRequestFilterSensitiveLog, ListTagsForResourceResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1ListTagsForResourceCommand, serializeAws_restJson1ListTagsForResourceCommand, } from "../protocols/Aws_restJson1";
5
- export class ListTagsForResourceCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var ListTagsForResourceCommand = (function (_super) {
7
+ __extends(ListTagsForResourceCommand, _super);
8
+ function ListTagsForResourceCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ ListTagsForResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "FinspaceClient";
15
- const commandName = "ListTagsForResourceCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "FinspaceClient";
18
+ var commandName = "ListTagsForResourceCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: ListTagsForResourceRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: ListTagsForResourceResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ ListTagsForResourceCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1ListTagsForResourceCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ ListTagsForResourceCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1ListTagsForResourceCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return ListTagsForResourceCommand;
38
+ }($Command));
39
+ export { ListTagsForResourceCommand };
@@ -1,32 +1,39 @@
1
+ import { __extends } from "tslib";
1
2
  import { getSerdePlugin } from "@aws-sdk/middleware-serde";
2
3
  import { Command as $Command } from "@aws-sdk/smithy-client";
3
4
  import { TagResourceRequestFilterSensitiveLog, TagResourceResponseFilterSensitiveLog, } from "../models/models_0";
4
5
  import { deserializeAws_restJson1TagResourceCommand, serializeAws_restJson1TagResourceCommand, } from "../protocols/Aws_restJson1";
5
- export class TagResourceCommand extends $Command {
6
- constructor(input) {
7
- super();
8
- this.input = input;
6
+ var TagResourceCommand = (function (_super) {
7
+ __extends(TagResourceCommand, _super);
8
+ function TagResourceCommand(input) {
9
+ var _this = _super.call(this) || this;
10
+ _this.input = input;
11
+ return _this;
9
12
  }
10
- resolveMiddleware(clientStack, configuration, options) {
13
+ TagResourceCommand.prototype.resolveMiddleware = function (clientStack, configuration, options) {
11
14
  this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
12
- const stack = clientStack.concat(this.middlewareStack);
13
- const { logger } = configuration;
14
- const clientName = "FinspaceClient";
15
- const commandName = "TagResourceCommand";
16
- const handlerExecutionContext = {
17
- logger,
18
- clientName,
19
- commandName,
15
+ var stack = clientStack.concat(this.middlewareStack);
16
+ var logger = configuration.logger;
17
+ var clientName = "FinspaceClient";
18
+ var commandName = "TagResourceCommand";
19
+ var handlerExecutionContext = {
20
+ logger: logger,
21
+ clientName: clientName,
22
+ commandName: commandName,
20
23
  inputFilterSensitiveLog: TagResourceRequestFilterSensitiveLog,
21
24
  outputFilterSensitiveLog: TagResourceResponseFilterSensitiveLog,
22
25
  };
23
- const { requestHandler } = configuration;
24
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
25
- }
26
- serialize(input, context) {
26
+ var requestHandler = configuration.requestHandler;
27
+ return stack.resolve(function (request) {
28
+ return requestHandler.handle(request.request, options || {});
29
+ }, handlerExecutionContext);
30
+ };
31
+ TagResourceCommand.prototype.serialize = function (input, context) {
27
32
  return serializeAws_restJson1TagResourceCommand(input, context);
28
- }
29
- deserialize(output, context) {
33
+ };
34
+ TagResourceCommand.prototype.deserialize = function (output, context) {
30
35
  return deserializeAws_restJson1TagResourceCommand(output, context);
31
- }
32
- }
36
+ };
37
+ return TagResourceCommand;
38
+ }($Command));
39
+ export { TagResourceCommand };