@aws-sdk/client-apprunner 3.186.0 → 3.190.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 (49) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-es/AppRunner.js +122 -129
  3. package/dist-es/AppRunnerClient.js +22 -28
  4. package/dist-es/commands/AssociateCustomDomainCommand.js +21 -28
  5. package/dist-es/commands/CreateAutoScalingConfigurationCommand.js +21 -28
  6. package/dist-es/commands/CreateConnectionCommand.js +21 -28
  7. package/dist-es/commands/CreateObservabilityConfigurationCommand.js +21 -28
  8. package/dist-es/commands/CreateServiceCommand.js +21 -28
  9. package/dist-es/commands/CreateVpcConnectorCommand.js +21 -28
  10. package/dist-es/commands/DeleteAutoScalingConfigurationCommand.js +21 -28
  11. package/dist-es/commands/DeleteConnectionCommand.js +21 -28
  12. package/dist-es/commands/DeleteObservabilityConfigurationCommand.js +21 -28
  13. package/dist-es/commands/DeleteServiceCommand.js +21 -28
  14. package/dist-es/commands/DeleteVpcConnectorCommand.js +21 -28
  15. package/dist-es/commands/DescribeAutoScalingConfigurationCommand.js +21 -28
  16. package/dist-es/commands/DescribeCustomDomainsCommand.js +21 -28
  17. package/dist-es/commands/DescribeObservabilityConfigurationCommand.js +21 -28
  18. package/dist-es/commands/DescribeServiceCommand.js +21 -28
  19. package/dist-es/commands/DescribeVpcConnectorCommand.js +21 -28
  20. package/dist-es/commands/DisassociateCustomDomainCommand.js +21 -28
  21. package/dist-es/commands/ListAutoScalingConfigurationsCommand.js +21 -28
  22. package/dist-es/commands/ListConnectionsCommand.js +21 -28
  23. package/dist-es/commands/ListObservabilityConfigurationsCommand.js +21 -28
  24. package/dist-es/commands/ListOperationsCommand.js +21 -28
  25. package/dist-es/commands/ListServicesCommand.js +21 -28
  26. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  27. package/dist-es/commands/ListVpcConnectorsCommand.js +21 -28
  28. package/dist-es/commands/PauseServiceCommand.js +21 -28
  29. package/dist-es/commands/ResumeServiceCommand.js +21 -28
  30. package/dist-es/commands/StartDeploymentCommand.js +21 -28
  31. package/dist-es/commands/TagResourceCommand.js +21 -28
  32. package/dist-es/commands/UntagResourceCommand.js +21 -28
  33. package/dist-es/commands/UpdateServiceCommand.js +21 -28
  34. package/dist-es/endpoints.js +8 -8
  35. package/dist-es/models/AppRunnerServiceException.js +5 -10
  36. package/dist-es/models/models_0.js +351 -157
  37. package/dist-es/pagination/DescribeCustomDomainsPaginator.js +25 -68
  38. package/dist-es/pagination/ListAutoScalingConfigurationsPaginator.js +25 -68
  39. package/dist-es/pagination/ListConnectionsPaginator.js +25 -68
  40. package/dist-es/pagination/ListObservabilityConfigurationsPaginator.js +25 -68
  41. package/dist-es/pagination/ListOperationsPaginator.js +25 -68
  42. package/dist-es/pagination/ListServicesPaginator.js +25 -68
  43. package/dist-es/pagination/ListVpcConnectorsPaginator.js +25 -68
  44. package/dist-es/protocols/Aws_json1_0.js +2008 -2531
  45. package/dist-es/runtimeConfig.browser.js +26 -12
  46. package/dist-es/runtimeConfig.js +30 -12
  47. package/dist-es/runtimeConfig.native.js +8 -5
  48. package/dist-es/runtimeConfig.shared.js +8 -11
  49. package/package.json +33 -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 { AssociateCustomDomainRequestFilterSensitiveLog, AssociateCustomDomainResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_0AssociateCustomDomainCommand, serializeAws_json1_0AssociateCustomDomainCommand, } from "../protocols/Aws_json1_0";
6
- var AssociateCustomDomainCommand = (function (_super) {
7
- __extends(AssociateCustomDomainCommand, _super);
8
- function AssociateCustomDomainCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class AssociateCustomDomainCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- AssociateCustomDomainCommand.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 = "AppRunnerClient";
18
- var commandName = "AssociateCustomDomainCommand";
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 = "AppRunnerClient";
15
+ const commandName = "AssociateCustomDomainCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: AssociateCustomDomainRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: AssociateCustomDomainResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- AssociateCustomDomainCommand.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_0AssociateCustomDomainCommand(input, context);
33
- };
34
- AssociateCustomDomainCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_0AssociateCustomDomainCommand(output, context);
36
- };
37
- return AssociateCustomDomainCommand;
38
- }($Command));
39
- export { AssociateCustomDomainCommand };
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 { CreateAutoScalingConfigurationRequestFilterSensitiveLog, CreateAutoScalingConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_0CreateAutoScalingConfigurationCommand, serializeAws_json1_0CreateAutoScalingConfigurationCommand, } from "../protocols/Aws_json1_0";
6
- var CreateAutoScalingConfigurationCommand = (function (_super) {
7
- __extends(CreateAutoScalingConfigurationCommand, _super);
8
- function CreateAutoScalingConfigurationCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateAutoScalingConfigurationCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateAutoScalingConfigurationCommand.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 = "AppRunnerClient";
18
- var commandName = "CreateAutoScalingConfigurationCommand";
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 = "AppRunnerClient";
15
+ const commandName = "CreateAutoScalingConfigurationCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateAutoScalingConfigurationRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateAutoScalingConfigurationResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateAutoScalingConfigurationCommand.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_0CreateAutoScalingConfigurationCommand(input, context);
33
- };
34
- CreateAutoScalingConfigurationCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_0CreateAutoScalingConfigurationCommand(output, context);
36
- };
37
- return CreateAutoScalingConfigurationCommand;
38
- }($Command));
39
- export { CreateAutoScalingConfigurationCommand };
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 { CreateConnectionRequestFilterSensitiveLog, CreateConnectionResponseFilterSensitiveLog, } 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 = "AppRunnerClient";
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 = "AppRunnerClient";
15
+ const commandName = "CreateConnectionCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateConnectionRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateConnectionResponseFilterSensitiveLog,
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 { CreateObservabilityConfigurationRequestFilterSensitiveLog, CreateObservabilityConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_0CreateObservabilityConfigurationCommand, serializeAws_json1_0CreateObservabilityConfigurationCommand, } from "../protocols/Aws_json1_0";
6
- var CreateObservabilityConfigurationCommand = (function (_super) {
7
- __extends(CreateObservabilityConfigurationCommand, _super);
8
- function CreateObservabilityConfigurationCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateObservabilityConfigurationCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateObservabilityConfigurationCommand.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 = "AppRunnerClient";
18
- var commandName = "CreateObservabilityConfigurationCommand";
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 = "AppRunnerClient";
15
+ const commandName = "CreateObservabilityConfigurationCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateObservabilityConfigurationRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateObservabilityConfigurationResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateObservabilityConfigurationCommand.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_0CreateObservabilityConfigurationCommand(input, context);
33
- };
34
- CreateObservabilityConfigurationCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_0CreateObservabilityConfigurationCommand(output, context);
36
- };
37
- return CreateObservabilityConfigurationCommand;
38
- }($Command));
39
- export { CreateObservabilityConfigurationCommand };
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 { CreateServiceRequestFilterSensitiveLog, CreateServiceResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_0CreateServiceCommand, serializeAws_json1_0CreateServiceCommand, } from "../protocols/Aws_json1_0";
6
- var CreateServiceCommand = (function (_super) {
7
- __extends(CreateServiceCommand, _super);
8
- function CreateServiceCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateServiceCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateServiceCommand.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 = "AppRunnerClient";
18
- var commandName = "CreateServiceCommand";
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 = "AppRunnerClient";
15
+ const commandName = "CreateServiceCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateServiceRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateServiceResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateServiceCommand.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_0CreateServiceCommand(input, context);
33
- };
34
- CreateServiceCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_0CreateServiceCommand(output, context);
36
- };
37
- return CreateServiceCommand;
38
- }($Command));
39
- export { CreateServiceCommand };
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 { CreateVpcConnectorRequestFilterSensitiveLog, CreateVpcConnectorResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_0CreateVpcConnectorCommand, serializeAws_json1_0CreateVpcConnectorCommand, } from "../protocols/Aws_json1_0";
6
- var CreateVpcConnectorCommand = (function (_super) {
7
- __extends(CreateVpcConnectorCommand, _super);
8
- function CreateVpcConnectorCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class CreateVpcConnectorCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- CreateVpcConnectorCommand.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 = "AppRunnerClient";
18
- var commandName = "CreateVpcConnectorCommand";
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 = "AppRunnerClient";
15
+ const commandName = "CreateVpcConnectorCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: CreateVpcConnectorRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: CreateVpcConnectorResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- CreateVpcConnectorCommand.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_0CreateVpcConnectorCommand(input, context);
33
- };
34
- CreateVpcConnectorCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_0CreateVpcConnectorCommand(output, context);
36
- };
37
- return CreateVpcConnectorCommand;
38
- }($Command));
39
- export { CreateVpcConnectorCommand };
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 { DeleteAutoScalingConfigurationRequestFilterSensitiveLog, DeleteAutoScalingConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_0DeleteAutoScalingConfigurationCommand, serializeAws_json1_0DeleteAutoScalingConfigurationCommand, } from "../protocols/Aws_json1_0";
6
- var DeleteAutoScalingConfigurationCommand = (function (_super) {
7
- __extends(DeleteAutoScalingConfigurationCommand, _super);
8
- function DeleteAutoScalingConfigurationCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class DeleteAutoScalingConfigurationCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DeleteAutoScalingConfigurationCommand.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 = "AppRunnerClient";
18
- var commandName = "DeleteAutoScalingConfigurationCommand";
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 = "AppRunnerClient";
15
+ const commandName = "DeleteAutoScalingConfigurationCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DeleteAutoScalingConfigurationRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: DeleteAutoScalingConfigurationResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- DeleteAutoScalingConfigurationCommand.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_0DeleteAutoScalingConfigurationCommand(input, context);
33
- };
34
- DeleteAutoScalingConfigurationCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_0DeleteAutoScalingConfigurationCommand(output, context);
36
- };
37
- return DeleteAutoScalingConfigurationCommand;
38
- }($Command));
39
- export { DeleteAutoScalingConfigurationCommand };
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 { DeleteConnectionRequestFilterSensitiveLog, DeleteConnectionResponseFilterSensitiveLog, } 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 = "AppRunnerClient";
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 = "AppRunnerClient";
15
+ const commandName = "DeleteConnectionCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DeleteConnectionRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: DeleteConnectionResponseFilterSensitiveLog,
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 { DeleteObservabilityConfigurationRequestFilterSensitiveLog, DeleteObservabilityConfigurationResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_0DeleteObservabilityConfigurationCommand, serializeAws_json1_0DeleteObservabilityConfigurationCommand, } from "../protocols/Aws_json1_0";
6
- var DeleteObservabilityConfigurationCommand = (function (_super) {
7
- __extends(DeleteObservabilityConfigurationCommand, _super);
8
- function DeleteObservabilityConfigurationCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class DeleteObservabilityConfigurationCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DeleteObservabilityConfigurationCommand.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 = "AppRunnerClient";
18
- var commandName = "DeleteObservabilityConfigurationCommand";
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 = "AppRunnerClient";
15
+ const commandName = "DeleteObservabilityConfigurationCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DeleteObservabilityConfigurationRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: DeleteObservabilityConfigurationResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- DeleteObservabilityConfigurationCommand.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_0DeleteObservabilityConfigurationCommand(input, context);
33
- };
34
- DeleteObservabilityConfigurationCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_0DeleteObservabilityConfigurationCommand(output, context);
36
- };
37
- return DeleteObservabilityConfigurationCommand;
38
- }($Command));
39
- export { DeleteObservabilityConfigurationCommand };
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 { DeleteServiceRequestFilterSensitiveLog, DeleteServiceResponseFilterSensitiveLog, } from "../models/models_0";
5
4
  import { deserializeAws_json1_0DeleteServiceCommand, serializeAws_json1_0DeleteServiceCommand, } from "../protocols/Aws_json1_0";
6
- var DeleteServiceCommand = (function (_super) {
7
- __extends(DeleteServiceCommand, _super);
8
- function DeleteServiceCommand(input) {
9
- var _this = _super.call(this) || this;
10
- _this.input = input;
11
- return _this;
5
+ export class DeleteServiceCommand extends $Command {
6
+ constructor(input) {
7
+ super();
8
+ this.input = input;
12
9
  }
13
- DeleteServiceCommand.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 = "AppRunnerClient";
18
- var commandName = "DeleteServiceCommand";
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 = "AppRunnerClient";
15
+ const commandName = "DeleteServiceCommand";
16
+ const handlerExecutionContext = {
17
+ logger,
18
+ clientName,
19
+ commandName,
23
20
  inputFilterSensitiveLog: DeleteServiceRequestFilterSensitiveLog,
24
21
  outputFilterSensitiveLog: DeleteServiceResponseFilterSensitiveLog,
25
22
  };
26
- var requestHandler = configuration.requestHandler;
27
- return stack.resolve(function (request) {
28
- return requestHandler.handle(request.request, options || {});
29
- }, handlerExecutionContext);
30
- };
31
- DeleteServiceCommand.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_0DeleteServiceCommand(input, context);
33
- };
34
- DeleteServiceCommand.prototype.deserialize = function (output, context) {
28
+ }
29
+ deserialize(output, context) {
35
30
  return deserializeAws_json1_0DeleteServiceCommand(output, context);
36
- };
37
- return DeleteServiceCommand;
38
- }($Command));
39
- export { DeleteServiceCommand };
31
+ }
32
+ }