@aws-sdk/client-rolesanywhere 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 (54) hide show
  1. package/dist-cjs/index.js +843 -1264
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/RolesAnywhereClient.js +2 -0
  4. package/dist-es/commands/CreateProfileCommand.js +3 -10
  5. package/dist-es/commands/CreateTrustAnchorCommand.js +3 -10
  6. package/dist-es/commands/DeleteAttributeMappingCommand.js +3 -9
  7. package/dist-es/commands/DeleteCrlCommand.js +3 -9
  8. package/dist-es/commands/DeleteProfileCommand.js +3 -9
  9. package/dist-es/commands/DeleteTrustAnchorCommand.js +3 -9
  10. package/dist-es/commands/DisableCrlCommand.js +3 -9
  11. package/dist-es/commands/DisableProfileCommand.js +3 -9
  12. package/dist-es/commands/DisableTrustAnchorCommand.js +3 -9
  13. package/dist-es/commands/EnableCrlCommand.js +3 -9
  14. package/dist-es/commands/EnableProfileCommand.js +3 -9
  15. package/dist-es/commands/EnableTrustAnchorCommand.js +3 -9
  16. package/dist-es/commands/GetCrlCommand.js +3 -9
  17. package/dist-es/commands/GetProfileCommand.js +3 -9
  18. package/dist-es/commands/GetSubjectCommand.js +3 -9
  19. package/dist-es/commands/GetTrustAnchorCommand.js +3 -9
  20. package/dist-es/commands/ImportCrlCommand.js +3 -10
  21. package/dist-es/commands/ListCrlsCommand.js +3 -9
  22. package/dist-es/commands/ListProfilesCommand.js +3 -9
  23. package/dist-es/commands/ListSubjectsCommand.js +3 -9
  24. package/dist-es/commands/ListTagsForResourceCommand.js +3 -10
  25. package/dist-es/commands/ListTrustAnchorsCommand.js +3 -9
  26. package/dist-es/commands/PutAttributeMappingCommand.js +3 -9
  27. package/dist-es/commands/PutNotificationSettingsCommand.js +3 -9
  28. package/dist-es/commands/ResetNotificationSettingsCommand.js +3 -9
  29. package/dist-es/commands/TagResourceCommand.js +3 -10
  30. package/dist-es/commands/UntagResourceCommand.js +3 -10
  31. package/dist-es/commands/UpdateCrlCommand.js +3 -9
  32. package/dist-es/commands/UpdateProfileCommand.js +3 -9
  33. package/dist-es/commands/UpdateTrustAnchorCommand.js +3 -9
  34. package/dist-es/models/models_0.js +0 -31
  35. package/dist-es/runtimeConfig.shared.js +2 -0
  36. package/dist-es/schemas/schemas_0.js +776 -0
  37. package/dist-types/RolesAnywhereClient.d.ts +10 -1
  38. package/dist-types/models/models_0.d.ts +0 -28
  39. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  40. package/dist-types/runtimeConfig.d.ts +1 -0
  41. package/dist-types/runtimeConfig.native.d.ts +1 -0
  42. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  43. package/dist-types/schemas/schemas_0.d.ts +103 -0
  44. package/dist-types/ts3.4/RolesAnywhereClient.d.ts +4 -0
  45. package/dist-types/ts3.4/models/models_0.d.ts +0 -19
  46. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
  47. package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
  48. package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
  49. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
  50. package/dist-types/ts3.4/schemas/schemas_0.d.ts +109 -0
  51. package/package.json +5 -5
  52. package/dist-es/protocols/Aws_restJson1.js +0 -1009
  53. package/dist-types/protocols/Aws_restJson1.d.ts +0 -272
  54. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -365
@@ -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.rolesanywhere" }),
28
30
  serviceId: config?.serviceId ?? "RolesAnywhere",
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 RolesAnywhereClient 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 { CreateProfileRequestFilterSensitiveLog, } from "../models/models_0";
6
- import { de_CreateProfileCommand, se_CreateProfileCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateProfile } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class CreateProfileCommand 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("RolesAnywhere", "CreateProfile", {})
18
13
  .n("RolesAnywhereClient", "CreateProfileCommand")
19
- .f(CreateProfileRequestFilterSensitiveLog, void 0)
20
- .ser(se_CreateProfileCommand)
21
- .de(de_CreateProfileCommand)
14
+ .sc(CreateProfile)
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 { CreateTrustAnchorRequestFilterSensitiveLog, } from "../models/models_0";
6
- import { de_CreateTrustAnchorCommand, se_CreateTrustAnchorCommand } from "../protocols/Aws_restJson1";
4
+ import { CreateTrustAnchor } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class CreateTrustAnchorCommand 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("RolesAnywhere", "CreateTrustAnchor", {})
18
13
  .n("RolesAnywhereClient", "CreateTrustAnchorCommand")
19
- .f(CreateTrustAnchorRequestFilterSensitiveLog, void 0)
20
- .ser(se_CreateTrustAnchorCommand)
21
- .de(de_CreateTrustAnchorCommand)
14
+ .sc(CreateTrustAnchor)
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_DeleteAttributeMappingCommand, se_DeleteAttributeMappingCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteAttributeMapping } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteAttributeMappingCommand 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("RolesAnywhere", "DeleteAttributeMapping", {})
17
13
  .n("RolesAnywhereClient", "DeleteAttributeMappingCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteAttributeMappingCommand)
20
- .de(de_DeleteAttributeMappingCommand)
14
+ .sc(DeleteAttributeMapping)
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_DeleteCrlCommand, se_DeleteCrlCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteCrl } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteCrlCommand 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("RolesAnywhere", "DeleteCrl", {})
17
13
  .n("RolesAnywhereClient", "DeleteCrlCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteCrlCommand)
20
- .de(de_DeleteCrlCommand)
14
+ .sc(DeleteCrl)
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_DeleteProfileCommand, se_DeleteProfileCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteProfile } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteProfileCommand 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("RolesAnywhere", "DeleteProfile", {})
17
13
  .n("RolesAnywhereClient", "DeleteProfileCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteProfileCommand)
20
- .de(de_DeleteProfileCommand)
14
+ .sc(DeleteProfile)
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_DeleteTrustAnchorCommand, se_DeleteTrustAnchorCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteTrustAnchor } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteTrustAnchorCommand 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("RolesAnywhere", "DeleteTrustAnchor", {})
17
13
  .n("RolesAnywhereClient", "DeleteTrustAnchorCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteTrustAnchorCommand)
20
- .de(de_DeleteTrustAnchorCommand)
14
+ .sc(DeleteTrustAnchor)
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_DisableCrlCommand, se_DisableCrlCommand } from "../protocols/Aws_restJson1";
4
+ import { DisableCrl } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DisableCrlCommand 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("RolesAnywhere", "DisableCrl", {})
17
13
  .n("RolesAnywhereClient", "DisableCrlCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DisableCrlCommand)
20
- .de(de_DisableCrlCommand)
14
+ .sc(DisableCrl)
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_DisableProfileCommand, se_DisableProfileCommand } from "../protocols/Aws_restJson1";
4
+ import { DisableProfile } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DisableProfileCommand 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("RolesAnywhere", "DisableProfile", {})
17
13
  .n("RolesAnywhereClient", "DisableProfileCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DisableProfileCommand)
20
- .de(de_DisableProfileCommand)
14
+ .sc(DisableProfile)
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_DisableTrustAnchorCommand, se_DisableTrustAnchorCommand } from "../protocols/Aws_restJson1";
4
+ import { DisableTrustAnchor } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DisableTrustAnchorCommand 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("RolesAnywhere", "DisableTrustAnchor", {})
17
13
  .n("RolesAnywhereClient", "DisableTrustAnchorCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DisableTrustAnchorCommand)
20
- .de(de_DisableTrustAnchorCommand)
14
+ .sc(DisableTrustAnchor)
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_EnableCrlCommand, se_EnableCrlCommand } from "../protocols/Aws_restJson1";
4
+ import { EnableCrl } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class EnableCrlCommand 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("RolesAnywhere", "EnableCrl", {})
17
13
  .n("RolesAnywhereClient", "EnableCrlCommand")
18
- .f(void 0, void 0)
19
- .ser(se_EnableCrlCommand)
20
- .de(de_EnableCrlCommand)
14
+ .sc(EnableCrl)
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_EnableProfileCommand, se_EnableProfileCommand } from "../protocols/Aws_restJson1";
4
+ import { EnableProfile } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class EnableProfileCommand 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("RolesAnywhere", "EnableProfile", {})
17
13
  .n("RolesAnywhereClient", "EnableProfileCommand")
18
- .f(void 0, void 0)
19
- .ser(se_EnableProfileCommand)
20
- .de(de_EnableProfileCommand)
14
+ .sc(EnableProfile)
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_EnableTrustAnchorCommand, se_EnableTrustAnchorCommand } from "../protocols/Aws_restJson1";
4
+ import { EnableTrustAnchor } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class EnableTrustAnchorCommand 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("RolesAnywhere", "EnableTrustAnchor", {})
17
13
  .n("RolesAnywhereClient", "EnableTrustAnchorCommand")
18
- .f(void 0, void 0)
19
- .ser(se_EnableTrustAnchorCommand)
20
- .de(de_EnableTrustAnchorCommand)
14
+ .sc(EnableTrustAnchor)
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_GetCrlCommand, se_GetCrlCommand } from "../protocols/Aws_restJson1";
4
+ import { GetCrl } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetCrlCommand 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("RolesAnywhere", "GetCrl", {})
17
13
  .n("RolesAnywhereClient", "GetCrlCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetCrlCommand)
20
- .de(de_GetCrlCommand)
14
+ .sc(GetCrl)
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_GetProfileCommand, se_GetProfileCommand } from "../protocols/Aws_restJson1";
4
+ import { GetProfile } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetProfileCommand 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("RolesAnywhere", "GetProfile", {})
17
13
  .n("RolesAnywhereClient", "GetProfileCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetProfileCommand)
20
- .de(de_GetProfileCommand)
14
+ .sc(GetProfile)
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_GetSubjectCommand, se_GetSubjectCommand } from "../protocols/Aws_restJson1";
4
+ import { GetSubject } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetSubjectCommand 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("RolesAnywhere", "GetSubject", {})
17
13
  .n("RolesAnywhereClient", "GetSubjectCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetSubjectCommand)
20
- .de(de_GetSubjectCommand)
14
+ .sc(GetSubject)
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_GetTrustAnchorCommand, se_GetTrustAnchorCommand } from "../protocols/Aws_restJson1";
4
+ import { GetTrustAnchor } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetTrustAnchorCommand 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("RolesAnywhere", "GetTrustAnchor", {})
17
13
  .n("RolesAnywhereClient", "GetTrustAnchorCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetTrustAnchorCommand)
20
- .de(de_GetTrustAnchorCommand)
14
+ .sc(GetTrustAnchor)
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 { ImportCrlRequestFilterSensitiveLog } from "../models/models_0";
6
- import { de_ImportCrlCommand, se_ImportCrlCommand } from "../protocols/Aws_restJson1";
4
+ import { ImportCrl } from "../schemas/schemas_0";
7
5
  export { $Command };
8
6
  export class ImportCrlCommand 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("RolesAnywhere", "ImportCrl", {})
18
13
  .n("RolesAnywhereClient", "ImportCrlCommand")
19
- .f(ImportCrlRequestFilterSensitiveLog, void 0)
20
- .ser(se_ImportCrlCommand)
21
- .de(de_ImportCrlCommand)
14
+ .sc(ImportCrl)
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_ListCrlsCommand, se_ListCrlsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListCrls } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListCrlsCommand 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("RolesAnywhere", "ListCrls", {})
17
13
  .n("RolesAnywhereClient", "ListCrlsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListCrlsCommand)
20
- .de(de_ListCrlsCommand)
14
+ .sc(ListCrls)
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_ListProfilesCommand, se_ListProfilesCommand } from "../protocols/Aws_restJson1";
4
+ import { ListProfiles } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListProfilesCommand 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("RolesAnywhere", "ListProfiles", {})
17
13
  .n("RolesAnywhereClient", "ListProfilesCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListProfilesCommand)
20
- .de(de_ListProfilesCommand)
14
+ .sc(ListProfiles)
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_ListSubjectsCommand, se_ListSubjectsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListSubjects } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListSubjectsCommand 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("RolesAnywhere", "ListSubjects", {})
17
13
  .n("RolesAnywhereClient", "ListSubjectsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListSubjectsCommand)
20
- .de(de_ListSubjectsCommand)
14
+ .sc(ListSubjects)
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("RolesAnywhere", "ListTagsForResource", {})
18
13
  .n("RolesAnywhereClient", "ListTagsForResourceCommand")
19
- .f(void 0, ListTagsForResourceResponseFilterSensitiveLog)
20
- .ser(se_ListTagsForResourceCommand)
21
- .de(de_ListTagsForResourceCommand)
14
+ .sc(ListTagsForResource)
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_ListTrustAnchorsCommand, se_ListTrustAnchorsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListTrustAnchors } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListTrustAnchorsCommand 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("RolesAnywhere", "ListTrustAnchors", {})
17
13
  .n("RolesAnywhereClient", "ListTrustAnchorsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListTrustAnchorsCommand)
20
- .de(de_ListTrustAnchorsCommand)
14
+ .sc(ListTrustAnchors)
21
15
  .build() {
22
16
  }