@aws-sdk/client-license-manager-linux-subscriptions 3.927.0 → 3.929.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 (35) hide show
  1. package/dist-cjs/index.js +461 -505
  2. package/dist-cjs/runtimeConfig.shared.js +3 -0
  3. package/dist-es/LicenseManagerLinuxSubscriptionsClient.js +2 -0
  4. package/dist-es/commands/DeregisterSubscriptionProviderCommand.js +3 -9
  5. package/dist-es/commands/GetRegisteredSubscriptionProviderCommand.js +3 -9
  6. package/dist-es/commands/GetServiceSettingsCommand.js +3 -9
  7. package/dist-es/commands/ListLinuxSubscriptionInstancesCommand.js +3 -9
  8. package/dist-es/commands/ListLinuxSubscriptionsCommand.js +3 -9
  9. package/dist-es/commands/ListRegisteredSubscriptionProvidersCommand.js +3 -9
  10. package/dist-es/commands/ListTagsForResourceCommand.js +3 -10
  11. package/dist-es/commands/RegisterSubscriptionProviderCommand.js +3 -10
  12. package/dist-es/commands/TagResourceCommand.js +3 -10
  13. package/dist-es/commands/UntagResourceCommand.js +3 -10
  14. package/dist-es/commands/UpdateServiceSettingsCommand.js +3 -9
  15. package/dist-es/models/models_0.js +0 -17
  16. package/dist-es/runtimeConfig.shared.js +3 -0
  17. package/dist-es/schemas/schemas_0.js +430 -0
  18. package/dist-types/LicenseManagerLinuxSubscriptionsClient.d.ts +10 -1
  19. package/dist-types/models/models_0.d.ts +0 -16
  20. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  21. package/dist-types/runtimeConfig.d.ts +1 -0
  22. package/dist-types/runtimeConfig.native.d.ts +1 -0
  23. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  24. package/dist-types/schemas/schemas_0.d.ts +54 -0
  25. package/dist-types/ts3.4/LicenseManagerLinuxSubscriptionsClient.d.ts +4 -0
  26. package/dist-types/ts3.4/models/models_0.d.ts +0 -12
  27. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  28. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  29. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  30. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  31. package/dist-types/ts3.4/schemas/schemas_0.d.ts +60 -0
  32. package/package.json +5 -5
  33. package/dist-es/protocols/Aws_restJson1.js +0 -398
  34. package/dist-types/protocols/Aws_restJson1.d.ts +0 -101
  35. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -137
@@ -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,8 @@ const getRuntimeConfig = (config) => {
25
26
  },
26
27
  ],
27
28
  logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
29
+ protocol: config?.protocol ??
30
+ new protocols_1.AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.licensemanagerlinuxsubscriptions" }),
28
31
  serviceId: config?.serviceId ?? "License Manager Linux Subscriptions",
29
32
  urlParser: config?.urlParser ?? url_parser_1.parseUrl,
30
33
  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 LicenseManagerLinuxSubscriptionsClient 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,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_DeregisterSubscriptionProviderCommand, se_DeregisterSubscriptionProviderCommand, } from "../protocols/Aws_restJson1";
4
+ import { DeregisterSubscriptionProvider } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeregisterSubscriptionProviderCommand 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("LicenseManagerLinuxSubscriptions", "DeregisterSubscriptionProvider", {})
17
13
  .n("LicenseManagerLinuxSubscriptionsClient", "DeregisterSubscriptionProviderCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeregisterSubscriptionProviderCommand)
20
- .de(de_DeregisterSubscriptionProviderCommand)
14
+ .sc(DeregisterSubscriptionProvider)
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_GetRegisteredSubscriptionProviderCommand, se_GetRegisteredSubscriptionProviderCommand, } from "../protocols/Aws_restJson1";
4
+ import { GetRegisteredSubscriptionProvider } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetRegisteredSubscriptionProviderCommand 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("LicenseManagerLinuxSubscriptions", "GetRegisteredSubscriptionProvider", {})
17
13
  .n("LicenseManagerLinuxSubscriptionsClient", "GetRegisteredSubscriptionProviderCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetRegisteredSubscriptionProviderCommand)
20
- .de(de_GetRegisteredSubscriptionProviderCommand)
14
+ .sc(GetRegisteredSubscriptionProvider)
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_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("LicenseManagerLinuxSubscriptions", "GetServiceSettings", {})
17
13
  .n("LicenseManagerLinuxSubscriptionsClient", "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_ListLinuxSubscriptionInstancesCommand, se_ListLinuxSubscriptionInstancesCommand, } from "../protocols/Aws_restJson1";
4
+ import { ListLinuxSubscriptionInstances } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListLinuxSubscriptionInstancesCommand 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("LicenseManagerLinuxSubscriptions", "ListLinuxSubscriptionInstances", {})
17
13
  .n("LicenseManagerLinuxSubscriptionsClient", "ListLinuxSubscriptionInstancesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListLinuxSubscriptionInstancesCommand)
20
- .de(de_ListLinuxSubscriptionInstancesCommand)
14
+ .sc(ListLinuxSubscriptionInstances)
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_ListLinuxSubscriptionsCommand, se_ListLinuxSubscriptionsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListLinuxSubscriptions } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListLinuxSubscriptionsCommand 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("LicenseManagerLinuxSubscriptions", "ListLinuxSubscriptions", {})
17
13
  .n("LicenseManagerLinuxSubscriptionsClient", "ListLinuxSubscriptionsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListLinuxSubscriptionsCommand)
20
- .de(de_ListLinuxSubscriptionsCommand)
14
+ .sc(ListLinuxSubscriptions)
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_ListRegisteredSubscriptionProvidersCommand, se_ListRegisteredSubscriptionProvidersCommand, } from "../protocols/Aws_restJson1";
4
+ import { ListRegisteredSubscriptionProviders } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListRegisteredSubscriptionProvidersCommand 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("LicenseManagerLinuxSubscriptions", "ListRegisteredSubscriptionProviders", {})
17
13
  .n("LicenseManagerLinuxSubscriptionsClient", "ListRegisteredSubscriptionProvidersCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListRegisteredSubscriptionProvidersCommand)
20
- .de(de_ListRegisteredSubscriptionProvidersCommand)
14
+ .sc(ListRegisteredSubscriptionProviders)
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("LicenseManagerLinuxSubscriptions", "ListTagsForResource", {})
18
13
  .n("LicenseManagerLinuxSubscriptionsClient", "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 { RegisterSubscriptionProviderRequestFilterSensitiveLog, } from "../models/models_0";
6
- import { de_RegisterSubscriptionProviderCommand, se_RegisterSubscriptionProviderCommand, } from "../protocols/Aws_restJson1";
4
+ import { RegisterSubscriptionProvider } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class RegisterSubscriptionProviderCommand 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("LicenseManagerLinuxSubscriptions", "RegisterSubscriptionProvider", {})
18
13
  .n("LicenseManagerLinuxSubscriptionsClient", "RegisterSubscriptionProviderCommand")
19
- .f(RegisterSubscriptionProviderRequestFilterSensitiveLog, void 0)
20
- .ser(se_RegisterSubscriptionProviderCommand)
21
- .de(de_RegisterSubscriptionProviderCommand)
14
+ .sc(RegisterSubscriptionProvider)
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 { TagResourceRequestFilterSensitiveLog } 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("LicenseManagerLinuxSubscriptions", "TagResource", {})
18
13
  .n("LicenseManagerLinuxSubscriptionsClient", "TagResourceCommand")
19
- .f(TagResourceRequestFilterSensitiveLog, void 0)
20
- .ser(se_TagResourceCommand)
21
- .de(de_TagResourceCommand)
14
+ .sc(TagResource)
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 { UntagResourceRequestFilterSensitiveLog, } from "../models/models_0";
6
- import { de_UntagResourceCommand, se_UntagResourceCommand } from "../protocols/Aws_restJson1";
4
+ import { UntagResource } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class UntagResourceCommand 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("LicenseManagerLinuxSubscriptions", "UntagResource", {})
18
13
  .n("LicenseManagerLinuxSubscriptionsClient", "UntagResourceCommand")
19
- .f(UntagResourceRequestFilterSensitiveLog, void 0)
20
- .ser(se_UntagResourceCommand)
21
- .de(de_UntagResourceCommand)
14
+ .sc(UntagResource)
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_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("LicenseManagerLinuxSubscriptions", "UpdateServiceSettings", {})
17
13
  .n("LicenseManagerLinuxSubscriptionsClient", "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 { LicenseManagerLinuxSubscriptionsServiceException as __BaseException } from "./LicenseManagerLinuxSubscriptionsServiceException";
3
2
  export class InternalServerException extends __BaseException {
4
3
  name = "InternalServerException";
@@ -75,19 +74,3 @@ export const Status = {
75
74
  InProgress: "InProgress",
76
75
  Successful: "Successful",
77
76
  };
78
- export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
79
- ...obj,
80
- ...(obj.tags && { tags: SENSITIVE_STRING }),
81
- });
82
- export const RegisterSubscriptionProviderRequestFilterSensitiveLog = (obj) => ({
83
- ...obj,
84
- ...(obj.Tags && { Tags: SENSITIVE_STRING }),
85
- });
86
- export const TagResourceRequestFilterSensitiveLog = (obj) => ({
87
- ...obj,
88
- ...(obj.tags && { tags: SENSITIVE_STRING }),
89
- });
90
- export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
91
- ...obj,
92
- ...(obj.tagKeys && { tagKeys: SENSITIVE_STRING }),
93
- });
@@ -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,8 @@ export const getRuntimeConfig = (config) => {
22
23
  },
23
24
  ],
24
25
  logger: config?.logger ?? new NoOpLogger(),
26
+ protocol: config?.protocol ??
27
+ new AwsRestJsonProtocol({ defaultNamespace: "com.amazonaws.licensemanagerlinuxsubscriptions" }),
25
28
  serviceId: config?.serviceId ?? "License Manager Linux Subscriptions",
26
29
  urlParser: config?.urlParser ?? parseUrl,
27
30
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,