@aws-sdk/client-ssm-quicksetup 3.928.0 → 3.930.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 (38) hide show
  1. package/dist-cjs/index.js +532 -683
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/SSMQuickSetupClient.js +2 -0
  4. package/dist-es/commands/CreateConfigurationManagerCommand.js +3 -10
  5. package/dist-es/commands/DeleteConfigurationManagerCommand.js +3 -9
  6. package/dist-es/commands/GetConfigurationCommand.js +3 -9
  7. package/dist-es/commands/GetConfigurationManagerCommand.js +3 -10
  8. package/dist-es/commands/GetServiceSettingsCommand.js +3 -9
  9. package/dist-es/commands/ListConfigurationManagersCommand.js +3 -9
  10. package/dist-es/commands/ListConfigurationsCommand.js +3 -9
  11. package/dist-es/commands/ListQuickSetupTypesCommand.js +3 -9
  12. package/dist-es/commands/ListTagsForResourceCommand.js +3 -10
  13. package/dist-es/commands/TagResourceCommand.js +3 -10
  14. package/dist-es/commands/UntagResourceCommand.js +3 -9
  15. package/dist-es/commands/UpdateConfigurationDefinitionCommand.js +3 -9
  16. package/dist-es/commands/UpdateConfigurationManagerCommand.js +3 -9
  17. package/dist-es/commands/UpdateServiceSettingsCommand.js +3 -9
  18. package/dist-es/models/models_0.js +0 -20
  19. package/dist-es/runtimeConfig.shared.js +2 -0
  20. package/dist-es/schemas/schemas_0.js +490 -0
  21. package/dist-types/SSMQuickSetupClient.d.ts +10 -1
  22. package/dist-types/models/models_0.d.ts +0 -20
  23. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  24. package/dist-types/runtimeConfig.d.ts +1 -0
  25. package/dist-types/runtimeConfig.native.d.ts +1 -0
  26. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  27. package/dist-types/schemas/schemas_0.d.ts +67 -0
  28. package/dist-types/ts3.4/SSMQuickSetupClient.d.ts +4 -0
  29. package/dist-types/ts3.4/models/models_0.d.ts +0 -13
  30. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  31. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  32. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  33. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  34. package/dist-types/ts3.4/schemas/schemas_0.d.ts +73 -0
  35. package/package.json +33 -33
  36. package/dist-es/protocols/Aws_restJson1.js +0 -546
  37. package/dist-types/protocols/Aws_restJson1.d.ts +0 -128
  38. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -173
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.getRuntimeConfig = void 0;
4
4
  const core_1 = require("@aws-sdk/core");
5
+ const protocols_1 = require("@aws-sdk/core/protocols");
5
6
  const smithy_client_1 = require("@smithy/smithy-client");
6
7
  const url_parser_1 = require("@smithy/url-parser");
7
8
  const util_base64_1 = require("@smithy/util-base64");
@@ -25,6 +26,7 @@ const getRuntimeConfig = (config) => {
25
26
  },
26
27
  ],
27
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
+ protocol: config?.protocol ?? new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.ssmquicksetup" }),
28
30
  serviceId: config?.serviceId ?? "SSM QuickSetup",
29
31
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
30
32
  utf8Decoder: config?.utf8Decoder ?? util_utf8_1.fromUtf8,
@@ -4,6 +4,7 @@ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detec
4
4
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
5
5
  import { resolveRegionConfig } from "@smithy/config-resolver";
6
6
  import { DefaultIdentityProviderConfig, getHttpAuthSchemeEndpointRuleSetPlugin, getHttpSigningPlugin, } from "@smithy/core";
7
+ import { getSchemaSerdePlugin } from "@smithy/core/schema";
7
8
  import { getContentLengthPlugin } from "@smithy/middleware-content-length";
8
9
  import { resolveEndpointConfig } from "@smithy/middleware-endpoint";
9
10
  import { getRetryPlugin, resolveRetryConfig } from "@smithy/middleware-retry";
@@ -28,6 +29,7 @@ export class SSMQuickSetupClient extends __Client {
28
29
  const _config_7 = resolveHttpAuthSchemeConfig(_config_6);
29
30
  const _config_8 = resolveRuntimeExtensions(_config_7, configuration?.extensions || []);
30
31
  this.config = _config_8;
32
+ this.middlewareStack.use(getSchemaSerdePlugin(this.config));
31
33
  this.middlewareStack.use(getUserAgentPlugin(this.config));
32
34
  this.middlewareStack.use(getRetryPlugin(this.config));
33
35
  this.middlewareStack.use(getContentLengthPlugin(this.config));
@@ -1,23 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { CreateConfigurationManagerInputFilterSensitiveLog, } from "../models/models_0";
6
- import { de_CreateConfigurationManagerCommand, se_CreateConfigurationManagerCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateConfigurationManager } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class CreateConfigurationManagerCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("QuickSetup", "CreateConfigurationManager", {})
18
13
  .n("SSMQuickSetupClient", "CreateConfigurationManagerCommand")
19
- .f(CreateConfigurationManagerInputFilterSensitiveLog, void 0)
20
- .ser(se_CreateConfigurationManagerCommand)
21
- .de(de_CreateConfigurationManagerCommand)
14
+ .sc(CreateConfigurationManager)
22
15
  .build() {
23
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_DeleteConfigurationManagerCommand, se_DeleteConfigurationManagerCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteConfigurationManager } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteConfigurationManagerCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("QuickSetup", "DeleteConfigurationManager", {})
17
13
  .n("SSMQuickSetupClient", "DeleteConfigurationManagerCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteConfigurationManagerCommand)
20
- .de(de_DeleteConfigurationManagerCommand)
14
+ .sc(DeleteConfigurationManager)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_GetConfigurationCommand, se_GetConfigurationCommand } from "../protocols/Aws_restJson1";
4
+ import { GetConfiguration } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetConfigurationCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("QuickSetup", "GetConfiguration", {})
17
13
  .n("SSMQuickSetupClient", "GetConfigurationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetConfigurationCommand)
20
- .de(de_GetConfigurationCommand)
14
+ .sc(GetConfiguration)
21
15
  .build() {
22
16
  }
@@ -1,23 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { GetConfigurationManagerOutputFilterSensitiveLog, } from "../models/models_0";
6
- import { de_GetConfigurationManagerCommand, se_GetConfigurationManagerCommand } from "../protocols/Aws_restJson1";
4
+ import { GetConfigurationManager } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class GetConfigurationManagerCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("QuickSetup", "GetConfigurationManager", {})
18
13
  .n("SSMQuickSetupClient", "GetConfigurationManagerCommand")
19
- .f(void 0, GetConfigurationManagerOutputFilterSensitiveLog)
20
- .ser(se_GetConfigurationManagerCommand)
21
- .de(de_GetConfigurationManagerCommand)
14
+ .sc(GetConfigurationManager)
22
15
  .build() {
23
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_GetServiceSettingsCommand, se_GetServiceSettingsCommand } from "../protocols/Aws_restJson1";
4
+ import { GetServiceSettings } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetServiceSettingsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("QuickSetup", "GetServiceSettings", {})
17
13
  .n("SSMQuickSetupClient", "GetServiceSettingsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetServiceSettingsCommand)
20
- .de(de_GetServiceSettingsCommand)
14
+ .sc(GetServiceSettings)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListConfigurationManagersCommand, se_ListConfigurationManagersCommand } from "../protocols/Aws_restJson1";
4
+ import { ListConfigurationManagers } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListConfigurationManagersCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("QuickSetup", "ListConfigurationManagers", {})
17
13
  .n("SSMQuickSetupClient", "ListConfigurationManagersCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListConfigurationManagersCommand)
20
- .de(de_ListConfigurationManagersCommand)
14
+ .sc(ListConfigurationManagers)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListConfigurationsCommand, se_ListConfigurationsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListConfigurations } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListConfigurationsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("QuickSetup", "ListConfigurations", {})
17
13
  .n("SSMQuickSetupClient", "ListConfigurationsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListConfigurationsCommand)
20
- .de(de_ListConfigurationsCommand)
14
+ .sc(ListConfigurations)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_ListQuickSetupTypesCommand, se_ListQuickSetupTypesCommand } from "../protocols/Aws_restJson1";
4
+ import { ListQuickSetupTypes } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListQuickSetupTypesCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("QuickSetup", "ListQuickSetupTypes", {})
17
13
  .n("SSMQuickSetupClient", "ListQuickSetupTypesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListQuickSetupTypesCommand)
20
- .de(de_ListQuickSetupTypesCommand)
14
+ .sc(ListQuickSetupTypes)
21
15
  .build() {
22
16
  }
@@ -1,23 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { ListTagsForResourceResponseFilterSensitiveLog, } from "../models/models_0";
6
- import { de_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_restJson1";
4
+ import { ListTagsForResource } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class ListTagsForResourceCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("QuickSetup", "ListTagsForResource", {})
18
13
  .n("SSMQuickSetupClient", "ListTagsForResourceCommand")
19
- .f(void 0, ListTagsForResourceResponseFilterSensitiveLog)
20
- .ser(se_ListTagsForResourceCommand)
21
- .de(de_ListTagsForResourceCommand)
14
+ .sc(ListTagsForResource)
22
15
  .build() {
23
16
  }
@@ -1,23 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { TagResourceInputFilterSensitiveLog } from "../models/models_0";
6
- import { de_TagResourceCommand, se_TagResourceCommand } from "../protocols/Aws_restJson1";
4
+ import { TagResource } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class TagResourceCommand extends $Command
9
7
  .classBuilder()
10
8
  .ep(commonParams)
11
9
  .m(function (Command, cs, config, o) {
12
- return [
13
- getSerdePlugin(config, this.serialize, this.deserialize),
14
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
15
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
16
11
  })
17
12
  .s("QuickSetup", "TagResource", {})
18
13
  .n("SSMQuickSetupClient", "TagResourceCommand")
19
- .f(TagResourceInputFilterSensitiveLog, void 0)
20
- .ser(se_TagResourceCommand)
21
- .de(de_TagResourceCommand)
14
+ .sc(TagResource)
22
15
  .build() {
23
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_restJson1";
4
+ import { UntagResource } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class UntagResourceCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("QuickSetup", "UntagResource", {})
17
13
  .n("SSMQuickSetupClient", "UntagResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_UntagResourceCommand)
20
- .de(de_UntagResourceCommand)
14
+ .sc(UntagResource)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_UpdateConfigurationDefinitionCommand, se_UpdateConfigurationDefinitionCommand, } from "../protocols/Aws_restJson1";
4
+ import { UpdateConfigurationDefinition } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class UpdateConfigurationDefinitionCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("QuickSetup", "UpdateConfigurationDefinition", {})
17
13
  .n("SSMQuickSetupClient", "UpdateConfigurationDefinitionCommand")
18
- .f(void 0, void 0)
19
- .ser(se_UpdateConfigurationDefinitionCommand)
20
- .de(de_UpdateConfigurationDefinitionCommand)
14
+ .sc(UpdateConfigurationDefinition)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_UpdateConfigurationManagerCommand, se_UpdateConfigurationManagerCommand } from "../protocols/Aws_restJson1";
4
+ import { UpdateConfigurationManager } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class UpdateConfigurationManagerCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("QuickSetup", "UpdateConfigurationManager", {})
17
13
  .n("SSMQuickSetupClient", "UpdateConfigurationManagerCommand")
18
- .f(void 0, void 0)
19
- .ser(se_UpdateConfigurationManagerCommand)
20
- .de(de_UpdateConfigurationManagerCommand)
14
+ .sc(UpdateConfigurationManager)
21
15
  .build() {
22
16
  }
@@ -1,22 +1,16 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
- import { getSerdePlugin } from "@smithy/middleware-serde";
3
2
  import { Command as $Command } from "@smithy/smithy-client";
4
3
  import { commonParams } from "../endpoint/EndpointParameters";
5
- import { de_UpdateServiceSettingsCommand, se_UpdateServiceSettingsCommand } from "../protocols/Aws_restJson1";
4
+ import { UpdateServiceSettings } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class UpdateServiceSettingsCommand extends $Command
8
7
  .classBuilder()
9
8
  .ep(commonParams)
10
9
  .m(function (Command, cs, config, o) {
11
- return [
12
- getSerdePlugin(config, this.serialize, this.deserialize),
13
- getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
14
- ];
10
+ return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
15
11
  })
16
12
  .s("QuickSetup", "UpdateServiceSettings", {})
17
13
  .n("SSMQuickSetupClient", "UpdateServiceSettingsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_UpdateServiceSettingsCommand)
20
- .de(de_UpdateServiceSettingsCommand)
14
+ .sc(UpdateServiceSettings)
21
15
  .build() {
22
16
  }
@@ -1,4 +1,3 @@
1
- import { SENSITIVE_STRING } from "@smithy/smithy-client";
2
1
  import { SSMQuickSetupServiceException as __BaseException } from "./SSMQuickSetupServiceException";
3
2
  export class AccessDeniedException extends __BaseException {
4
3
  name = "AccessDeniedException";
@@ -102,22 +101,3 @@ export class ResourceNotFoundException extends __BaseException {
102
101
  this.Message = opts.Message;
103
102
  }
104
103
  }
105
- export const CreateConfigurationManagerInputFilterSensitiveLog = (obj) => ({
106
- ...obj,
107
- ...(obj.Tags && { Tags: SENSITIVE_STRING }),
108
- });
109
- export const GetConfigurationManagerOutputFilterSensitiveLog = (obj) => ({
110
- ...obj,
111
- ...(obj.Tags && { Tags: SENSITIVE_STRING }),
112
- });
113
- export const TagEntryFilterSensitiveLog = (obj) => ({
114
- ...obj,
115
- });
116
- export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
117
- ...obj,
118
- ...(obj.Tags && { Tags: SENSITIVE_STRING }),
119
- });
120
- export const TagResourceInputFilterSensitiveLog = (obj) => ({
121
- ...obj,
122
- ...(obj.Tags && { Tags: SENSITIVE_STRING }),
123
- });
@@ -1,4 +1,5 @@
1
1
  import { AwsSdkSigV4Signer } from "@aws-sdk/core";
2
+ import { AwsRestJsonProtocol } from "@aws-sdk/core/protocols";
2
3
  import { NoOpLogger } from "@smithy/smithy-client";
3
4
  import { parseUrl } from "@smithy/url-parser";
4
5
  import { fromBase64, toBase64 } from "@smithy/util-base64";
@@ -22,6 +23,7 @@ export const getRuntimeConfig = (config) => {
22
23
  },
23
24
  ],
24
25
  logger: config?.logger ?? new NoOpLogger(),
26
+ protocol: config?.protocol ?? new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.ssmquicksetup" }),
25
27
  serviceId: config?.serviceId ?? "SSM QuickSetup",
26
28
  urlParser: config?.urlParser ?? parseUrl,
27
29
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,