@aws-sdk/client-ssm-sap 3.928.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 (51) hide show
  1. package/dist-cjs/index.js +940 -1243
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/SsmSapClient.js +2 -0
  4. package/dist-es/commands/DeleteResourcePermissionCommand.js +3 -9
  5. package/dist-es/commands/DeregisterApplicationCommand.js +3 -9
  6. package/dist-es/commands/GetApplicationCommand.js +3 -9
  7. package/dist-es/commands/GetComponentCommand.js +3 -9
  8. package/dist-es/commands/GetConfigurationCheckOperationCommand.js +3 -9
  9. package/dist-es/commands/GetDatabaseCommand.js +3 -10
  10. package/dist-es/commands/GetOperationCommand.js +3 -9
  11. package/dist-es/commands/GetResourcePermissionCommand.js +3 -9
  12. package/dist-es/commands/ListApplicationsCommand.js +3 -9
  13. package/dist-es/commands/ListComponentsCommand.js +3 -9
  14. package/dist-es/commands/ListConfigurationCheckDefinitionsCommand.js +3 -9
  15. package/dist-es/commands/ListConfigurationCheckOperationsCommand.js +3 -9
  16. package/dist-es/commands/ListDatabasesCommand.js +3 -9
  17. package/dist-es/commands/ListOperationEventsCommand.js +3 -9
  18. package/dist-es/commands/ListOperationsCommand.js +3 -9
  19. package/dist-es/commands/ListSubCheckResultsCommand.js +3 -9
  20. package/dist-es/commands/ListSubCheckRuleResultsCommand.js +3 -9
  21. package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
  22. package/dist-es/commands/PutResourcePermissionCommand.js +3 -9
  23. package/dist-es/commands/RegisterApplicationCommand.js +3 -10
  24. package/dist-es/commands/StartApplicationCommand.js +3 -9
  25. package/dist-es/commands/StartApplicationRefreshCommand.js +3 -9
  26. package/dist-es/commands/StartConfigurationChecksCommand.js +3 -9
  27. package/dist-es/commands/StopApplicationCommand.js +3 -9
  28. package/dist-es/commands/TagResourceCommand.js +3 -9
  29. package/dist-es/commands/UntagResourceCommand.js +3 -9
  30. package/dist-es/commands/UpdateApplicationSettingsCommand.js +3 -10
  31. package/dist-es/models/models_0.js +0 -26
  32. package/dist-es/runtimeConfig.shared.js +2 -0
  33. package/dist-es/schemas/schemas_0.js +883 -0
  34. package/dist-types/SsmSapClient.d.ts +10 -1
  35. package/dist-types/models/models_0.d.ts +0 -20
  36. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  37. package/dist-types/runtimeConfig.d.ts +1 -0
  38. package/dist-types/runtimeConfig.native.d.ts +1 -0
  39. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  40. package/dist-types/schemas/schemas_0.d.ts +140 -0
  41. package/dist-types/ts3.4/SsmSapClient.d.ts +4 -0
  42. package/dist-types/ts3.4/models/models_0.d.ts +0 -13
  43. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  44. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  45. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  46. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  47. package/dist-types/ts3.4/schemas/schemas_0.d.ts +147 -0
  48. package/package.json +2 -2
  49. package/dist-es/protocols/Aws_restJson1.js +0 -1011
  50. package/dist-types/protocols/Aws_restJson1.d.ts +0 -245
  51. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -329
@@ -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.ssmsap" }),
28
30
  serviceId: config?.serviceId ?? "Ssm Sap",
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 SsmSapClient 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_DeleteResourcePermissionCommand, se_DeleteResourcePermissionCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteResourcePermission } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteResourcePermissionCommand 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("SsmSap", "DeleteResourcePermission", {})
17
13
  .n("SsmSapClient", "DeleteResourcePermissionCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteResourcePermissionCommand)
20
- .de(de_DeleteResourcePermissionCommand)
14
+ .sc(DeleteResourcePermission)
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_DeregisterApplicationCommand, se_DeregisterApplicationCommand } from "../protocols/Aws_restJson1";
4
+ import { DeregisterApplication } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeregisterApplicationCommand 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("SsmSap", "DeregisterApplication", {})
17
13
  .n("SsmSapClient", "DeregisterApplicationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeregisterApplicationCommand)
20
- .de(de_DeregisterApplicationCommand)
14
+ .sc(DeregisterApplication)
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_GetApplicationCommand, se_GetApplicationCommand } from "../protocols/Aws_restJson1";
4
+ import { GetApplication } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetApplicationCommand 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("SsmSap", "GetApplication", {})
17
13
  .n("SsmSapClient", "GetApplicationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetApplicationCommand)
20
- .de(de_GetApplicationCommand)
14
+ .sc(GetApplication)
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_GetComponentCommand, se_GetComponentCommand } from "../protocols/Aws_restJson1";
4
+ import { GetComponent } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetComponentCommand 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("SsmSap", "GetComponent", {})
17
13
  .n("SsmSapClient", "GetComponentCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetComponentCommand)
20
- .de(de_GetComponentCommand)
14
+ .sc(GetComponent)
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_GetConfigurationCheckOperationCommand, se_GetConfigurationCheckOperationCommand, } from "../protocols/Aws_restJson1";
4
+ import { GetConfigurationCheckOperation } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetConfigurationCheckOperationCommand 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("SsmSap", "GetConfigurationCheckOperation", {})
17
13
  .n("SsmSapClient", "GetConfigurationCheckOperationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetConfigurationCheckOperationCommand)
20
- .de(de_GetConfigurationCheckOperationCommand)
14
+ .sc(GetConfigurationCheckOperation)
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 { GetDatabaseOutputFilterSensitiveLog } from "../models/models_0";
6
- import { de_GetDatabaseCommand, se_GetDatabaseCommand } from "../protocols/Aws_restJson1";
4
+ import { GetDatabase } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class GetDatabaseCommand 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("SsmSap", "GetDatabase", {})
18
13
  .n("SsmSapClient", "GetDatabaseCommand")
19
- .f(void 0, GetDatabaseOutputFilterSensitiveLog)
20
- .ser(se_GetDatabaseCommand)
21
- .de(de_GetDatabaseCommand)
14
+ .sc(GetDatabase)
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_GetOperationCommand, se_GetOperationCommand } from "../protocols/Aws_restJson1";
4
+ import { GetOperation } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetOperationCommand 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("SsmSap", "GetOperation", {})
17
13
  .n("SsmSapClient", "GetOperationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetOperationCommand)
20
- .de(de_GetOperationCommand)
14
+ .sc(GetOperation)
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_GetResourcePermissionCommand, se_GetResourcePermissionCommand } from "../protocols/Aws_restJson1";
4
+ import { GetResourcePermission } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetResourcePermissionCommand 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("SsmSap", "GetResourcePermission", {})
17
13
  .n("SsmSapClient", "GetResourcePermissionCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetResourcePermissionCommand)
20
- .de(de_GetResourcePermissionCommand)
14
+ .sc(GetResourcePermission)
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_ListApplicationsCommand, se_ListApplicationsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListApplications } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListApplicationsCommand 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("SsmSap", "ListApplications", {})
17
13
  .n("SsmSapClient", "ListApplicationsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListApplicationsCommand)
20
- .de(de_ListApplicationsCommand)
14
+ .sc(ListApplications)
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_ListComponentsCommand, se_ListComponentsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListComponents } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListComponentsCommand 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("SsmSap", "ListComponents", {})
17
13
  .n("SsmSapClient", "ListComponentsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListComponentsCommand)
20
- .de(de_ListComponentsCommand)
14
+ .sc(ListComponents)
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_ListConfigurationCheckDefinitionsCommand, se_ListConfigurationCheckDefinitionsCommand, } from "../protocols/Aws_restJson1";
4
+ import { ListConfigurationCheckDefinitions } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListConfigurationCheckDefinitionsCommand 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("SsmSap", "ListConfigurationCheckDefinitions", {})
17
13
  .n("SsmSapClient", "ListConfigurationCheckDefinitionsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListConfigurationCheckDefinitionsCommand)
20
- .de(de_ListConfigurationCheckDefinitionsCommand)
14
+ .sc(ListConfigurationCheckDefinitions)
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_ListConfigurationCheckOperationsCommand, se_ListConfigurationCheckOperationsCommand, } from "../protocols/Aws_restJson1";
4
+ import { ListConfigurationCheckOperations } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListConfigurationCheckOperationsCommand 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("SsmSap", "ListConfigurationCheckOperations", {})
17
13
  .n("SsmSapClient", "ListConfigurationCheckOperationsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListConfigurationCheckOperationsCommand)
20
- .de(de_ListConfigurationCheckOperationsCommand)
14
+ .sc(ListConfigurationCheckOperations)
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_ListDatabasesCommand, se_ListDatabasesCommand } from "../protocols/Aws_restJson1";
4
+ import { ListDatabases } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListDatabasesCommand 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("SsmSap", "ListDatabases", {})
17
13
  .n("SsmSapClient", "ListDatabasesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListDatabasesCommand)
20
- .de(de_ListDatabasesCommand)
14
+ .sc(ListDatabases)
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_ListOperationEventsCommand, se_ListOperationEventsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListOperationEvents } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListOperationEventsCommand 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("SsmSap", "ListOperationEvents", {})
17
13
  .n("SsmSapClient", "ListOperationEventsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListOperationEventsCommand)
20
- .de(de_ListOperationEventsCommand)
14
+ .sc(ListOperationEvents)
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_ListOperationsCommand, se_ListOperationsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListOperations } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListOperationsCommand 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("SsmSap", "ListOperations", {})
17
13
  .n("SsmSapClient", "ListOperationsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListOperationsCommand)
20
- .de(de_ListOperationsCommand)
14
+ .sc(ListOperations)
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_ListSubCheckResultsCommand, se_ListSubCheckResultsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListSubCheckResults } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListSubCheckResultsCommand 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("SsmSap", "ListSubCheckResults", {})
17
13
  .n("SsmSapClient", "ListSubCheckResultsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListSubCheckResultsCommand)
20
- .de(de_ListSubCheckResultsCommand)
14
+ .sc(ListSubCheckResults)
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_ListSubCheckRuleResultsCommand, se_ListSubCheckRuleResultsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListSubCheckRuleResults } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListSubCheckRuleResultsCommand 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("SsmSap", "ListSubCheckRuleResults", {})
17
13
  .n("SsmSapClient", "ListSubCheckRuleResultsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListSubCheckRuleResultsCommand)
20
- .de(de_ListSubCheckRuleResultsCommand)
14
+ .sc(ListSubCheckRuleResults)
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_ListTagsForResourceCommand, se_ListTagsForResourceCommand } from "../protocols/Aws_restJson1";
4
+ import { ListTagsForResource } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListTagsForResourceCommand 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("SsmSap", "ListTagsForResource", {})
17
13
  .n("SsmSapClient", "ListTagsForResourceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListTagsForResourceCommand)
20
- .de(de_ListTagsForResourceCommand)
14
+ .sc(ListTagsForResource)
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_PutResourcePermissionCommand, se_PutResourcePermissionCommand } from "../protocols/Aws_restJson1";
4
+ import { PutResourcePermission } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class PutResourcePermissionCommand 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("SsmSap", "PutResourcePermission", {})
17
13
  .n("SsmSapClient", "PutResourcePermissionCommand")
18
- .f(void 0, void 0)
19
- .ser(se_PutResourcePermissionCommand)
20
- .de(de_PutResourcePermissionCommand)
14
+ .sc(PutResourcePermission)
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 { RegisterApplicationInputFilterSensitiveLog, } from "../models/models_0";
6
- import { de_RegisterApplicationCommand, se_RegisterApplicationCommand } from "../protocols/Aws_restJson1";
4
+ import { RegisterApplication } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class RegisterApplicationCommand 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("SsmSap", "RegisterApplication", {})
18
13
  .n("SsmSapClient", "RegisterApplicationCommand")
19
- .f(RegisterApplicationInputFilterSensitiveLog, void 0)
20
- .ser(se_RegisterApplicationCommand)
21
- .de(de_RegisterApplicationCommand)
14
+ .sc(RegisterApplication)
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_StartApplicationCommand, se_StartApplicationCommand } from "../protocols/Aws_restJson1";
4
+ import { StartApplication } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class StartApplicationCommand 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("SsmSap", "StartApplication", {})
17
13
  .n("SsmSapClient", "StartApplicationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_StartApplicationCommand)
20
- .de(de_StartApplicationCommand)
14
+ .sc(StartApplication)
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_StartApplicationRefreshCommand, se_StartApplicationRefreshCommand } from "../protocols/Aws_restJson1";
4
+ import { StartApplicationRefresh } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class StartApplicationRefreshCommand 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("SsmSap", "StartApplicationRefresh", {})
17
13
  .n("SsmSapClient", "StartApplicationRefreshCommand")
18
- .f(void 0, void 0)
19
- .ser(se_StartApplicationRefreshCommand)
20
- .de(de_StartApplicationRefreshCommand)
14
+ .sc(StartApplicationRefresh)
21
15
  .build() {
22
16
  }