@aws-sdk/client-cognito-sync 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 +803 -928
  2. package/dist-cjs/runtimeConfig.shared.js +2 -0
  3. package/dist-es/CognitoSyncClient.js +2 -0
  4. package/dist-es/commands/BulkPublishCommand.js +3 -9
  5. package/dist-es/commands/DeleteDatasetCommand.js +3 -9
  6. package/dist-es/commands/DescribeDatasetCommand.js +3 -9
  7. package/dist-es/commands/DescribeIdentityPoolUsageCommand.js +3 -9
  8. package/dist-es/commands/DescribeIdentityUsageCommand.js +3 -9
  9. package/dist-es/commands/GetBulkPublishDetailsCommand.js +3 -9
  10. package/dist-es/commands/GetCognitoEventsCommand.js +3 -9
  11. package/dist-es/commands/GetIdentityPoolConfigurationCommand.js +3 -9
  12. package/dist-es/commands/ListDatasetsCommand.js +3 -9
  13. package/dist-es/commands/ListIdentityPoolUsageCommand.js +3 -9
  14. package/dist-es/commands/ListRecordsCommand.js +3 -9
  15. package/dist-es/commands/RegisterDeviceCommand.js +3 -9
  16. package/dist-es/commands/SetCognitoEventsCommand.js +3 -9
  17. package/dist-es/commands/SetIdentityPoolConfigurationCommand.js +3 -9
  18. package/dist-es/commands/SubscribeToDatasetCommand.js +3 -9
  19. package/dist-es/commands/UnsubscribeFromDatasetCommand.js +3 -9
  20. package/dist-es/commands/UpdateRecordsCommand.js +3 -9
  21. package/dist-es/runtimeConfig.shared.js +2 -0
  22. package/dist-es/schemas/schemas_0.js +740 -0
  23. package/dist-types/CognitoSyncClient.d.ts +10 -1
  24. package/dist-types/runtimeConfig.browser.d.ts +1 -0
  25. package/dist-types/runtimeConfig.d.ts +1 -0
  26. package/dist-types/runtimeConfig.native.d.ts +1 -0
  27. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  28. package/dist-types/schemas/schemas_0.d.ts +80 -0
  29. package/dist-types/ts3.4/CognitoSyncClient.d.ts +4 -0
  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 +85 -0
  35. package/package.json +33 -33
  36. package/dist-es/protocols/Aws_restJson1.js +0 -780
  37. package/dist-types/protocols/Aws_restJson1.d.ts +0 -155
  38. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -209
@@ -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.cognitosync" }),
28
30
  serviceId: config?.serviceId ?? "Cognito Sync",
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 CognitoSyncClient 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_BulkPublishCommand, se_BulkPublishCommand } from "../protocols/Aws_restJson1";
4
+ import { BulkPublish } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class BulkPublishCommand 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("AWSCognitoSyncService", "BulkPublish", {})
17
13
  .n("CognitoSyncClient", "BulkPublishCommand")
18
- .f(void 0, void 0)
19
- .ser(se_BulkPublishCommand)
20
- .de(de_BulkPublishCommand)
14
+ .sc(BulkPublish)
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_DeleteDatasetCommand, se_DeleteDatasetCommand } from "../protocols/Aws_restJson1";
4
+ import { DeleteDataset } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DeleteDatasetCommand 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("AWSCognitoSyncService", "DeleteDataset", {})
17
13
  .n("CognitoSyncClient", "DeleteDatasetCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DeleteDatasetCommand)
20
- .de(de_DeleteDatasetCommand)
14
+ .sc(DeleteDataset)
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_DescribeDatasetCommand, se_DescribeDatasetCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeDataset } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeDatasetCommand 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("AWSCognitoSyncService", "DescribeDataset", {})
17
13
  .n("CognitoSyncClient", "DescribeDatasetCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeDatasetCommand)
20
- .de(de_DescribeDatasetCommand)
14
+ .sc(DescribeDataset)
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_DescribeIdentityPoolUsageCommand, se_DescribeIdentityPoolUsageCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeIdentityPoolUsage } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeIdentityPoolUsageCommand 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("AWSCognitoSyncService", "DescribeIdentityPoolUsage", {})
17
13
  .n("CognitoSyncClient", "DescribeIdentityPoolUsageCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeIdentityPoolUsageCommand)
20
- .de(de_DescribeIdentityPoolUsageCommand)
14
+ .sc(DescribeIdentityPoolUsage)
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_DescribeIdentityUsageCommand, se_DescribeIdentityUsageCommand } from "../protocols/Aws_restJson1";
4
+ import { DescribeIdentityUsage } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class DescribeIdentityUsageCommand 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("AWSCognitoSyncService", "DescribeIdentityUsage", {})
17
13
  .n("CognitoSyncClient", "DescribeIdentityUsageCommand")
18
- .f(void 0, void 0)
19
- .ser(se_DescribeIdentityUsageCommand)
20
- .de(de_DescribeIdentityUsageCommand)
14
+ .sc(DescribeIdentityUsage)
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_GetBulkPublishDetailsCommand, se_GetBulkPublishDetailsCommand } from "../protocols/Aws_restJson1";
4
+ import { GetBulkPublishDetails } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetBulkPublishDetailsCommand 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("AWSCognitoSyncService", "GetBulkPublishDetails", {})
17
13
  .n("CognitoSyncClient", "GetBulkPublishDetailsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetBulkPublishDetailsCommand)
20
- .de(de_GetBulkPublishDetailsCommand)
14
+ .sc(GetBulkPublishDetails)
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_GetCognitoEventsCommand, se_GetCognitoEventsCommand } from "../protocols/Aws_restJson1";
4
+ import { GetCognitoEvents } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetCognitoEventsCommand 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("AWSCognitoSyncService", "GetCognitoEvents", {})
17
13
  .n("CognitoSyncClient", "GetCognitoEventsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetCognitoEventsCommand)
20
- .de(de_GetCognitoEventsCommand)
14
+ .sc(GetCognitoEvents)
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_GetIdentityPoolConfigurationCommand, se_GetIdentityPoolConfigurationCommand, } from "../protocols/Aws_restJson1";
4
+ import { GetIdentityPoolConfiguration } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class GetIdentityPoolConfigurationCommand 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("AWSCognitoSyncService", "GetIdentityPoolConfiguration", {})
17
13
  .n("CognitoSyncClient", "GetIdentityPoolConfigurationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_GetIdentityPoolConfigurationCommand)
20
- .de(de_GetIdentityPoolConfigurationCommand)
14
+ .sc(GetIdentityPoolConfiguration)
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_ListDatasetsCommand, se_ListDatasetsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListDatasets } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListDatasetsCommand 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("AWSCognitoSyncService", "ListDatasets", {})
17
13
  .n("CognitoSyncClient", "ListDatasetsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListDatasetsCommand)
20
- .de(de_ListDatasetsCommand)
14
+ .sc(ListDatasets)
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_ListIdentityPoolUsageCommand, se_ListIdentityPoolUsageCommand } from "../protocols/Aws_restJson1";
4
+ import { ListIdentityPoolUsage } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListIdentityPoolUsageCommand 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("AWSCognitoSyncService", "ListIdentityPoolUsage", {})
17
13
  .n("CognitoSyncClient", "ListIdentityPoolUsageCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListIdentityPoolUsageCommand)
20
- .de(de_ListIdentityPoolUsageCommand)
14
+ .sc(ListIdentityPoolUsage)
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_ListRecordsCommand, se_ListRecordsCommand } from "../protocols/Aws_restJson1";
4
+ import { ListRecords } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class ListRecordsCommand 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("AWSCognitoSyncService", "ListRecords", {})
17
13
  .n("CognitoSyncClient", "ListRecordsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_ListRecordsCommand)
20
- .de(de_ListRecordsCommand)
14
+ .sc(ListRecords)
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_RegisterDeviceCommand, se_RegisterDeviceCommand } from "../protocols/Aws_restJson1";
4
+ import { RegisterDevice } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class RegisterDeviceCommand 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("AWSCognitoSyncService", "RegisterDevice", {})
17
13
  .n("CognitoSyncClient", "RegisterDeviceCommand")
18
- .f(void 0, void 0)
19
- .ser(se_RegisterDeviceCommand)
20
- .de(de_RegisterDeviceCommand)
14
+ .sc(RegisterDevice)
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_SetCognitoEventsCommand, se_SetCognitoEventsCommand } from "../protocols/Aws_restJson1";
4
+ import { SetCognitoEvents } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class SetCognitoEventsCommand 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("AWSCognitoSyncService", "SetCognitoEvents", {})
17
13
  .n("CognitoSyncClient", "SetCognitoEventsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_SetCognitoEventsCommand)
20
- .de(de_SetCognitoEventsCommand)
14
+ .sc(SetCognitoEvents)
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_SetIdentityPoolConfigurationCommand, se_SetIdentityPoolConfigurationCommand, } from "../protocols/Aws_restJson1";
4
+ import { SetIdentityPoolConfiguration } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class SetIdentityPoolConfigurationCommand 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("AWSCognitoSyncService", "SetIdentityPoolConfiguration", {})
17
13
  .n("CognitoSyncClient", "SetIdentityPoolConfigurationCommand")
18
- .f(void 0, void 0)
19
- .ser(se_SetIdentityPoolConfigurationCommand)
20
- .de(de_SetIdentityPoolConfigurationCommand)
14
+ .sc(SetIdentityPoolConfiguration)
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_SubscribeToDatasetCommand, se_SubscribeToDatasetCommand } from "../protocols/Aws_restJson1";
4
+ import { SubscribeToDataset } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class SubscribeToDatasetCommand 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("AWSCognitoSyncService", "SubscribeToDataset", {})
17
13
  .n("CognitoSyncClient", "SubscribeToDatasetCommand")
18
- .f(void 0, void 0)
19
- .ser(se_SubscribeToDatasetCommand)
20
- .de(de_SubscribeToDatasetCommand)
14
+ .sc(SubscribeToDataset)
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_UnsubscribeFromDatasetCommand, se_UnsubscribeFromDatasetCommand } from "../protocols/Aws_restJson1";
4
+ import { UnsubscribeFromDataset } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class UnsubscribeFromDatasetCommand 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("AWSCognitoSyncService", "UnsubscribeFromDataset", {})
17
13
  .n("CognitoSyncClient", "UnsubscribeFromDatasetCommand")
18
- .f(void 0, void 0)
19
- .ser(se_UnsubscribeFromDatasetCommand)
20
- .de(de_UnsubscribeFromDatasetCommand)
14
+ .sc(UnsubscribeFromDataset)
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_UpdateRecordsCommand, se_UpdateRecordsCommand } from "../protocols/Aws_restJson1";
4
+ import { UpdateRecords } from "../schemas/schemas_0";
6
5
  export { $Command };
7
6
  export class UpdateRecordsCommand 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("AWSCognitoSyncService", "UpdateRecords", {})
17
13
  .n("CognitoSyncClient", "UpdateRecordsCommand")
18
- .f(void 0, void 0)
19
- .ser(se_UpdateRecordsCommand)
20
- .de(de_UpdateRecordsCommand)
14
+ .sc(UpdateRecords)
21
15
  .build() {
22
16
  }
@@ -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.cognitosync" }),
25
27
  serviceId: config?.serviceId ?? "Cognito Sync",
26
28
  urlParser: config?.urlParser ?? parseUrl,
27
29
  utf8Decoder: config?.utf8Decoder ?? fromUtf8,