@aws-sdk/client-payment-cryptography-data 3.477.0 → 3.481.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 (49) hide show
  1. package/dist-cjs/commands/DecryptDataCommand.js +18 -41
  2. package/dist-cjs/commands/EncryptDataCommand.js +18 -41
  3. package/dist-cjs/commands/GenerateCardValidationDataCommand.js +18 -41
  4. package/dist-cjs/commands/GenerateMacCommand.js +18 -41
  5. package/dist-cjs/commands/GeneratePinDataCommand.js +18 -41
  6. package/dist-cjs/commands/ReEncryptDataCommand.js +18 -41
  7. package/dist-cjs/commands/TranslatePinDataCommand.js +18 -41
  8. package/dist-cjs/commands/VerifyAuthRequestCryptogramCommand.js +18 -41
  9. package/dist-cjs/commands/VerifyCardValidationDataCommand.js +18 -41
  10. package/dist-cjs/commands/VerifyMacCommand.js +18 -41
  11. package/dist-cjs/commands/VerifyPinDataCommand.js +18 -41
  12. package/dist-cjs/endpoint/EndpointParameters.js +7 -1
  13. package/dist-es/commands/DecryptDataCommand.js +18 -41
  14. package/dist-es/commands/EncryptDataCommand.js +18 -41
  15. package/dist-es/commands/GenerateCardValidationDataCommand.js +18 -41
  16. package/dist-es/commands/GenerateMacCommand.js +18 -41
  17. package/dist-es/commands/GeneratePinDataCommand.js +18 -41
  18. package/dist-es/commands/ReEncryptDataCommand.js +18 -41
  19. package/dist-es/commands/TranslatePinDataCommand.js +18 -41
  20. package/dist-es/commands/VerifyAuthRequestCryptogramCommand.js +18 -41
  21. package/dist-es/commands/VerifyCardValidationDataCommand.js +18 -41
  22. package/dist-es/commands/VerifyMacCommand.js +18 -41
  23. package/dist-es/commands/VerifyPinDataCommand.js +18 -41
  24. package/dist-es/endpoint/EndpointParameters.js +6 -0
  25. package/dist-types/commands/DecryptDataCommand.d.ts +6 -21
  26. package/dist-types/commands/EncryptDataCommand.d.ts +6 -21
  27. package/dist-types/commands/GenerateCardValidationDataCommand.d.ts +6 -21
  28. package/dist-types/commands/GenerateMacCommand.d.ts +6 -21
  29. package/dist-types/commands/GeneratePinDataCommand.d.ts +6 -21
  30. package/dist-types/commands/ReEncryptDataCommand.d.ts +6 -21
  31. package/dist-types/commands/TranslatePinDataCommand.d.ts +6 -21
  32. package/dist-types/commands/VerifyAuthRequestCryptogramCommand.d.ts +6 -21
  33. package/dist-types/commands/VerifyCardValidationDataCommand.d.ts +6 -21
  34. package/dist-types/commands/VerifyMacCommand.d.ts +6 -21
  35. package/dist-types/commands/VerifyPinDataCommand.d.ts +6 -21
  36. package/dist-types/endpoint/EndpointParameters.d.ts +18 -0
  37. package/dist-types/ts3.4/commands/DecryptDataCommand.d.ts +14 -23
  38. package/dist-types/ts3.4/commands/EncryptDataCommand.d.ts +14 -23
  39. package/dist-types/ts3.4/commands/GenerateCardValidationDataCommand.d.ts +12 -24
  40. package/dist-types/ts3.4/commands/GenerateMacCommand.d.ts +14 -23
  41. package/dist-types/ts3.4/commands/GeneratePinDataCommand.d.ts +14 -23
  42. package/dist-types/ts3.4/commands/ReEncryptDataCommand.d.ts +14 -23
  43. package/dist-types/ts3.4/commands/TranslatePinDataCommand.d.ts +14 -23
  44. package/dist-types/ts3.4/commands/VerifyAuthRequestCryptogramCommand.d.ts +12 -24
  45. package/dist-types/ts3.4/commands/VerifyCardValidationDataCommand.d.ts +12 -24
  46. package/dist-types/ts3.4/commands/VerifyMacCommand.d.ts +14 -23
  47. package/dist-types/ts3.4/commands/VerifyPinDataCommand.d.ts +14 -23
  48. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +18 -0
  49. package/package.json +11 -11
@@ -1,48 +1,25 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { VerifyAuthRequestCryptogramInputFilterSensitiveLog, } from "../models/models_0";
6
6
  import { de_VerifyAuthRequestCryptogramCommand, se_VerifyAuthRequestCryptogramCommand, } from "../protocols/Aws_restJson1";
7
7
  export { $Command };
8
- export class VerifyAuthRequestCryptogramCommand extends $Command {
9
- static getEndpointParameterInstructions() {
10
- return {
11
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
12
- Endpoint: { type: "builtInParams", name: "endpoint" },
13
- Region: { type: "builtInParams", name: "region" },
14
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
15
- };
16
- }
17
- constructor(input) {
18
- super();
19
- this.input = input;
20
- }
21
- resolveMiddleware(clientStack, configuration, options) {
22
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
23
- this.middlewareStack.use(getEndpointPlugin(configuration, VerifyAuthRequestCryptogramCommand.getEndpointParameterInstructions()));
24
- const stack = clientStack.concat(this.middlewareStack);
25
- const { logger } = configuration;
26
- const clientName = "PaymentCryptographyDataClient";
27
- const commandName = "VerifyAuthRequestCryptogramCommand";
28
- const handlerExecutionContext = {
29
- logger,
30
- clientName,
31
- commandName,
32
- inputFilterSensitiveLog: VerifyAuthRequestCryptogramInputFilterSensitiveLog,
33
- outputFilterSensitiveLog: (_) => _,
34
- [SMITHY_CONTEXT_KEY]: {
35
- service: "PaymentCryptographyDataPlane",
36
- operation: "VerifyAuthRequestCryptogram",
37
- },
38
- };
39
- const { requestHandler } = configuration;
40
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
41
- }
42
- serialize(input, context) {
43
- return se_VerifyAuthRequestCryptogramCommand(input, context);
44
- }
45
- deserialize(output, context) {
46
- return de_VerifyAuthRequestCryptogramCommand(output, context);
47
- }
8
+ export class VerifyAuthRequestCryptogramCommand extends $Command
9
+ .classBuilder()
10
+ .ep({
11
+ ...commonParams,
12
+ })
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ getSerdePlugin(config, this.serialize, this.deserialize),
16
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("PaymentCryptographyDataPlane", "VerifyAuthRequestCryptogram", {})
20
+ .n("PaymentCryptographyDataClient", "VerifyAuthRequestCryptogramCommand")
21
+ .f(VerifyAuthRequestCryptogramInputFilterSensitiveLog, void 0)
22
+ .ser(se_VerifyAuthRequestCryptogramCommand)
23
+ .de(de_VerifyAuthRequestCryptogramCommand)
24
+ .build() {
48
25
  }
@@ -1,48 +1,25 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { VerifyCardValidationDataInputFilterSensitiveLog, } from "../models/models_0";
6
6
  import { de_VerifyCardValidationDataCommand, se_VerifyCardValidationDataCommand } from "../protocols/Aws_restJson1";
7
7
  export { $Command };
8
- export class VerifyCardValidationDataCommand extends $Command {
9
- static getEndpointParameterInstructions() {
10
- return {
11
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
12
- Endpoint: { type: "builtInParams", name: "endpoint" },
13
- Region: { type: "builtInParams", name: "region" },
14
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
15
- };
16
- }
17
- constructor(input) {
18
- super();
19
- this.input = input;
20
- }
21
- resolveMiddleware(clientStack, configuration, options) {
22
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
23
- this.middlewareStack.use(getEndpointPlugin(configuration, VerifyCardValidationDataCommand.getEndpointParameterInstructions()));
24
- const stack = clientStack.concat(this.middlewareStack);
25
- const { logger } = configuration;
26
- const clientName = "PaymentCryptographyDataClient";
27
- const commandName = "VerifyCardValidationDataCommand";
28
- const handlerExecutionContext = {
29
- logger,
30
- clientName,
31
- commandName,
32
- inputFilterSensitiveLog: VerifyCardValidationDataInputFilterSensitiveLog,
33
- outputFilterSensitiveLog: (_) => _,
34
- [SMITHY_CONTEXT_KEY]: {
35
- service: "PaymentCryptographyDataPlane",
36
- operation: "VerifyCardValidationData",
37
- },
38
- };
39
- const { requestHandler } = configuration;
40
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
41
- }
42
- serialize(input, context) {
43
- return se_VerifyCardValidationDataCommand(input, context);
44
- }
45
- deserialize(output, context) {
46
- return de_VerifyCardValidationDataCommand(output, context);
47
- }
8
+ export class VerifyCardValidationDataCommand extends $Command
9
+ .classBuilder()
10
+ .ep({
11
+ ...commonParams,
12
+ })
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ getSerdePlugin(config, this.serialize, this.deserialize),
16
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("PaymentCryptographyDataPlane", "VerifyCardValidationData", {})
20
+ .n("PaymentCryptographyDataClient", "VerifyCardValidationDataCommand")
21
+ .f(VerifyCardValidationDataInputFilterSensitiveLog, void 0)
22
+ .ser(se_VerifyCardValidationDataCommand)
23
+ .de(de_VerifyCardValidationDataCommand)
24
+ .build() {
48
25
  }
@@ -1,48 +1,25 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { VerifyMacInputFilterSensitiveLog } from "../models/models_0";
6
6
  import { de_VerifyMacCommand, se_VerifyMacCommand } from "../protocols/Aws_restJson1";
7
7
  export { $Command };
8
- export class VerifyMacCommand extends $Command {
9
- static getEndpointParameterInstructions() {
10
- return {
11
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
12
- Endpoint: { type: "builtInParams", name: "endpoint" },
13
- Region: { type: "builtInParams", name: "region" },
14
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
15
- };
16
- }
17
- constructor(input) {
18
- super();
19
- this.input = input;
20
- }
21
- resolveMiddleware(clientStack, configuration, options) {
22
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
23
- this.middlewareStack.use(getEndpointPlugin(configuration, VerifyMacCommand.getEndpointParameterInstructions()));
24
- const stack = clientStack.concat(this.middlewareStack);
25
- const { logger } = configuration;
26
- const clientName = "PaymentCryptographyDataClient";
27
- const commandName = "VerifyMacCommand";
28
- const handlerExecutionContext = {
29
- logger,
30
- clientName,
31
- commandName,
32
- inputFilterSensitiveLog: VerifyMacInputFilterSensitiveLog,
33
- outputFilterSensitiveLog: (_) => _,
34
- [SMITHY_CONTEXT_KEY]: {
35
- service: "PaymentCryptographyDataPlane",
36
- operation: "VerifyMac",
37
- },
38
- };
39
- const { requestHandler } = configuration;
40
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
41
- }
42
- serialize(input, context) {
43
- return se_VerifyMacCommand(input, context);
44
- }
45
- deserialize(output, context) {
46
- return de_VerifyMacCommand(output, context);
47
- }
8
+ export class VerifyMacCommand extends $Command
9
+ .classBuilder()
10
+ .ep({
11
+ ...commonParams,
12
+ })
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ getSerdePlugin(config, this.serialize, this.deserialize),
16
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("PaymentCryptographyDataPlane", "VerifyMac", {})
20
+ .n("PaymentCryptographyDataClient", "VerifyMacCommand")
21
+ .f(VerifyMacInputFilterSensitiveLog, void 0)
22
+ .ser(se_VerifyMacCommand)
23
+ .de(de_VerifyMacCommand)
24
+ .build() {
48
25
  }
@@ -1,48 +1,25 @@
1
1
  import { getEndpointPlugin } from "@smithy/middleware-endpoint";
2
2
  import { getSerdePlugin } from "@smithy/middleware-serde";
3
3
  import { Command as $Command } from "@smithy/smithy-client";
4
- import { SMITHY_CONTEXT_KEY, } from "@smithy/types";
4
+ import { commonParams } from "../endpoint/EndpointParameters";
5
5
  import { VerifyPinDataInputFilterSensitiveLog } from "../models/models_0";
6
6
  import { de_VerifyPinDataCommand, se_VerifyPinDataCommand } from "../protocols/Aws_restJson1";
7
7
  export { $Command };
8
- export class VerifyPinDataCommand extends $Command {
9
- static getEndpointParameterInstructions() {
10
- return {
11
- UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
12
- Endpoint: { type: "builtInParams", name: "endpoint" },
13
- Region: { type: "builtInParams", name: "region" },
14
- UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
15
- };
16
- }
17
- constructor(input) {
18
- super();
19
- this.input = input;
20
- }
21
- resolveMiddleware(clientStack, configuration, options) {
22
- this.middlewareStack.use(getSerdePlugin(configuration, this.serialize, this.deserialize));
23
- this.middlewareStack.use(getEndpointPlugin(configuration, VerifyPinDataCommand.getEndpointParameterInstructions()));
24
- const stack = clientStack.concat(this.middlewareStack);
25
- const { logger } = configuration;
26
- const clientName = "PaymentCryptographyDataClient";
27
- const commandName = "VerifyPinDataCommand";
28
- const handlerExecutionContext = {
29
- logger,
30
- clientName,
31
- commandName,
32
- inputFilterSensitiveLog: VerifyPinDataInputFilterSensitiveLog,
33
- outputFilterSensitiveLog: (_) => _,
34
- [SMITHY_CONTEXT_KEY]: {
35
- service: "PaymentCryptographyDataPlane",
36
- operation: "VerifyPinData",
37
- },
38
- };
39
- const { requestHandler } = configuration;
40
- return stack.resolve((request) => requestHandler.handle(request.request, options || {}), handlerExecutionContext);
41
- }
42
- serialize(input, context) {
43
- return se_VerifyPinDataCommand(input, context);
44
- }
45
- deserialize(output, context) {
46
- return de_VerifyPinDataCommand(output, context);
47
- }
8
+ export class VerifyPinDataCommand extends $Command
9
+ .classBuilder()
10
+ .ep({
11
+ ...commonParams,
12
+ })
13
+ .m(function (Command, cs, config, o) {
14
+ return [
15
+ getSerdePlugin(config, this.serialize, this.deserialize),
16
+ getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
17
+ ];
18
+ })
19
+ .s("PaymentCryptographyDataPlane", "VerifyPinData", {})
20
+ .n("PaymentCryptographyDataClient", "VerifyPinDataCommand")
21
+ .f(VerifyPinDataInputFilterSensitiveLog, void 0)
22
+ .ser(se_VerifyPinDataCommand)
23
+ .de(de_VerifyPinDataCommand)
24
+ .build() {
48
25
  }
@@ -6,3 +6,9 @@ export const resolveClientEndpointParameters = (options) => {
6
6
  defaultSigningName: "payment-cryptography",
7
7
  };
8
8
  };
9
+ export const commonParams = {
10
+ UseFIPS: { type: "builtInParams", name: "useFipsEndpoint" },
11
+ Endpoint: { type: "builtInParams", name: "endpoint" },
12
+ Region: { type: "builtInParams", name: "region" },
13
+ UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
14
+ };
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { DecryptDataInput, DecryptDataOutput } from "../models/models_0";
5
4
  import { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PaymentCryptographyDataClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface DecryptDataCommandInput extends DecryptDataInput {
21
20
  */
22
21
  export interface DecryptDataCommandOutput extends DecryptDataOutput, __MetadataBearer {
23
22
  }
23
+ declare const DecryptDataCommand_base: {
24
+ new (input: DecryptDataCommandInput): import("@smithy/smithy-client").CommandImpl<DecryptDataCommandInput, DecryptDataCommandOutput, PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Decrypts ciphertext data to plaintext using symmetric, asymmetric, or DUKPT data encryption key. For more information, see <a href="https://docs.aws.amazon.com/payment-cryptography/latest/userguide/decrypt-data.html">Decrypt data</a> in the <i>Amazon Web Services Payment Cryptography User Guide</i>.</p>
@@ -111,23 +114,5 @@ export interface DecryptDataCommandOutput extends DecryptDataOutput, __MetadataB
111
114
  * <p>Base exception class for all service exceptions from PaymentCryptographyData service.</p>
112
115
  *
113
116
  */
114
- export declare class DecryptDataCommand extends $Command<DecryptDataCommandInput, DecryptDataCommandOutput, PaymentCryptographyDataClientResolvedConfig> {
115
- readonly input: DecryptDataCommandInput;
116
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
117
- /**
118
- * @public
119
- */
120
- constructor(input: DecryptDataCommandInput);
121
- /**
122
- * @internal
123
- */
124
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PaymentCryptographyDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DecryptDataCommandInput, DecryptDataCommandOutput>;
125
- /**
126
- * @internal
127
- */
128
- private serialize;
129
- /**
130
- * @internal
131
- */
132
- private deserialize;
117
+ export declare class DecryptDataCommand extends DecryptDataCommand_base {
133
118
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { EncryptDataInput, EncryptDataOutput } from "../models/models_0";
5
4
  import { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PaymentCryptographyDataClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface EncryptDataCommandInput extends EncryptDataInput {
21
20
  */
22
21
  export interface EncryptDataCommandOutput extends EncryptDataOutput, __MetadataBearer {
23
22
  }
23
+ declare const EncryptDataCommand_base: {
24
+ new (input: EncryptDataCommandInput): import("@smithy/smithy-client").CommandImpl<EncryptDataCommandInput, EncryptDataCommandOutput, PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Encrypts plaintext data to ciphertext using symmetric, asymmetric, or DUKPT data encryption key. For more information, see <a href="https://docs.aws.amazon.com/payment-cryptography/latest/userguide/encrypt-data.html">Encrypt data</a> in the <i>Amazon Web Services Payment Cryptography User Guide</i>.</p>
@@ -116,23 +119,5 @@ export interface EncryptDataCommandOutput extends EncryptDataOutput, __MetadataB
116
119
  * <p>Base exception class for all service exceptions from PaymentCryptographyData service.</p>
117
120
  *
118
121
  */
119
- export declare class EncryptDataCommand extends $Command<EncryptDataCommandInput, EncryptDataCommandOutput, PaymentCryptographyDataClientResolvedConfig> {
120
- readonly input: EncryptDataCommandInput;
121
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
122
- /**
123
- * @public
124
- */
125
- constructor(input: EncryptDataCommandInput);
126
- /**
127
- * @internal
128
- */
129
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PaymentCryptographyDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<EncryptDataCommandInput, EncryptDataCommandOutput>;
130
- /**
131
- * @internal
132
- */
133
- private serialize;
134
- /**
135
- * @internal
136
- */
137
- private deserialize;
122
+ export declare class EncryptDataCommand extends EncryptDataCommand_base {
138
123
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { GenerateCardValidationDataInput, GenerateCardValidationDataOutput } from "../models/models_0";
5
4
  import { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PaymentCryptographyDataClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface GenerateCardValidationDataCommandInput extends GenerateCardVali
21
20
  */
22
21
  export interface GenerateCardValidationDataCommandOutput extends GenerateCardValidationDataOutput, __MetadataBearer {
23
22
  }
23
+ declare const GenerateCardValidationDataCommand_base: {
24
+ new (input: GenerateCardValidationDataCommandInput): import("@smithy/smithy-client").CommandImpl<GenerateCardValidationDataCommandInput, GenerateCardValidationDataCommandOutput, PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Generates card-related validation data using algorithms such as Card Verification Values (CVV/CVV2), Dynamic Card Verification Values (dCVV/dCVV2), or Card Security Codes (CSC). For more information, see <a href="https://docs.aws.amazon.com/payment-cryptography/latest/userguide/generate-card-data.html">Generate card data</a> in the <i>Amazon Web Services Payment Cryptography User Guide</i>.</p>
@@ -122,23 +125,5 @@ export interface GenerateCardValidationDataCommandOutput extends GenerateCardVal
122
125
  * <p>Base exception class for all service exceptions from PaymentCryptographyData service.</p>
123
126
  *
124
127
  */
125
- export declare class GenerateCardValidationDataCommand extends $Command<GenerateCardValidationDataCommandInput, GenerateCardValidationDataCommandOutput, PaymentCryptographyDataClientResolvedConfig> {
126
- readonly input: GenerateCardValidationDataCommandInput;
127
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
128
- /**
129
- * @public
130
- */
131
- constructor(input: GenerateCardValidationDataCommandInput);
132
- /**
133
- * @internal
134
- */
135
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PaymentCryptographyDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GenerateCardValidationDataCommandInput, GenerateCardValidationDataCommandOutput>;
136
- /**
137
- * @internal
138
- */
139
- private serialize;
140
- /**
141
- * @internal
142
- */
143
- private deserialize;
128
+ export declare class GenerateCardValidationDataCommand extends GenerateCardValidationDataCommand_base {
144
129
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { GenerateMacInput, GenerateMacOutput } from "../models/models_0";
5
4
  import { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PaymentCryptographyDataClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface GenerateMacCommandInput extends GenerateMacInput {
21
20
  */
22
21
  export interface GenerateMacCommandOutput extends GenerateMacOutput, __MetadataBearer {
23
22
  }
23
+ declare const GenerateMacCommand_base: {
24
+ new (input: GenerateMacCommandInput): import("@smithy/smithy-client").CommandImpl<GenerateMacCommandInput, GenerateMacCommandOutput, PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Generates a Message Authentication Code (MAC) cryptogram within Amazon Web Services Payment Cryptography. </p>
@@ -112,23 +115,5 @@ export interface GenerateMacCommandOutput extends GenerateMacOutput, __MetadataB
112
115
  * <p>Base exception class for all service exceptions from PaymentCryptographyData service.</p>
113
116
  *
114
117
  */
115
- export declare class GenerateMacCommand extends $Command<GenerateMacCommandInput, GenerateMacCommandOutput, PaymentCryptographyDataClientResolvedConfig> {
116
- readonly input: GenerateMacCommandInput;
117
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
118
- /**
119
- * @public
120
- */
121
- constructor(input: GenerateMacCommandInput);
122
- /**
123
- * @internal
124
- */
125
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PaymentCryptographyDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GenerateMacCommandInput, GenerateMacCommandOutput>;
126
- /**
127
- * @internal
128
- */
129
- private serialize;
130
- /**
131
- * @internal
132
- */
133
- private deserialize;
118
+ export declare class GenerateMacCommand extends GenerateMacCommand_base {
134
119
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { GeneratePinDataInput, GeneratePinDataOutput } from "../models/models_0";
5
4
  import { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PaymentCryptographyDataClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface GeneratePinDataCommandInput extends GeneratePinDataInput {
21
20
  */
22
21
  export interface GeneratePinDataCommandOutput extends GeneratePinDataOutput, __MetadataBearer {
23
22
  }
23
+ declare const GeneratePinDataCommand_base: {
24
+ new (input: GeneratePinDataCommandInput): import("@smithy/smithy-client").CommandImpl<GeneratePinDataCommandInput, GeneratePinDataCommandOutput, PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Generates pin-related data such as PIN, PIN Verification Value (PVV), PIN Block, and PIN Offset during new card issuance or reissuance. For more information, see <a href="https://docs.aws.amazon.com/payment-cryptography/latest/userguide/generate-pin-data.html">Generate PIN data</a> in the <i>Amazon Web Services Payment Cryptography User Guide</i>.</p>
@@ -133,23 +136,5 @@ export interface GeneratePinDataCommandOutput extends GeneratePinDataOutput, __M
133
136
  * <p>Base exception class for all service exceptions from PaymentCryptographyData service.</p>
134
137
  *
135
138
  */
136
- export declare class GeneratePinDataCommand extends $Command<GeneratePinDataCommandInput, GeneratePinDataCommandOutput, PaymentCryptographyDataClientResolvedConfig> {
137
- readonly input: GeneratePinDataCommandInput;
138
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
139
- /**
140
- * @public
141
- */
142
- constructor(input: GeneratePinDataCommandInput);
143
- /**
144
- * @internal
145
- */
146
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PaymentCryptographyDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<GeneratePinDataCommandInput, GeneratePinDataCommandOutput>;
147
- /**
148
- * @internal
149
- */
150
- private serialize;
151
- /**
152
- * @internal
153
- */
154
- private deserialize;
139
+ export declare class GeneratePinDataCommand extends GeneratePinDataCommand_base {
155
140
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { ReEncryptDataInput, ReEncryptDataOutput } from "../models/models_0";
5
4
  import { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PaymentCryptographyDataClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface ReEncryptDataCommandInput extends ReEncryptDataInput {
21
20
  */
22
21
  export interface ReEncryptDataCommandOutput extends ReEncryptDataOutput, __MetadataBearer {
23
22
  }
23
+ declare const ReEncryptDataCommand_base: {
24
+ new (input: ReEncryptDataCommandInput): import("@smithy/smithy-client").CommandImpl<ReEncryptDataCommandInput, ReEncryptDataCommandOutput, PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Re-encrypt ciphertext using DUKPT, Symmetric and Asymmetric Data Encryption Keys. </p>
@@ -128,23 +131,5 @@ export interface ReEncryptDataCommandOutput extends ReEncryptDataOutput, __Metad
128
131
  * <p>Base exception class for all service exceptions from PaymentCryptographyData service.</p>
129
132
  *
130
133
  */
131
- export declare class ReEncryptDataCommand extends $Command<ReEncryptDataCommandInput, ReEncryptDataCommandOutput, PaymentCryptographyDataClientResolvedConfig> {
132
- readonly input: ReEncryptDataCommandInput;
133
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
134
- /**
135
- * @public
136
- */
137
- constructor(input: ReEncryptDataCommandInput);
138
- /**
139
- * @internal
140
- */
141
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PaymentCryptographyDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ReEncryptDataCommandInput, ReEncryptDataCommandOutput>;
142
- /**
143
- * @internal
144
- */
145
- private serialize;
146
- /**
147
- * @internal
148
- */
149
- private deserialize;
134
+ export declare class ReEncryptDataCommand extends ReEncryptDataCommand_base {
150
135
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { TranslatePinDataInput, TranslatePinDataOutput } from "../models/models_0";
5
4
  import { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PaymentCryptographyDataClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface TranslatePinDataCommandInput extends TranslatePinDataInput {
21
20
  */
22
21
  export interface TranslatePinDataCommandOutput extends TranslatePinDataOutput, __MetadataBearer {
23
22
  }
23
+ declare const TranslatePinDataCommand_base: {
24
+ new (input: TranslatePinDataCommandInput): import("@smithy/smithy-client").CommandImpl<TranslatePinDataCommandInput, TranslatePinDataCommandOutput, PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Translates encrypted PIN block from and to ISO 9564 formats 0,1,3,4. For more information, see <a href="https://docs.aws.amazon.com/payment-cryptography/latest/userguide/translate-pin-data.html">Translate PIN data</a> in the <i>Amazon Web Services Payment Cryptography User Guide</i>.</p>
@@ -125,23 +128,5 @@ export interface TranslatePinDataCommandOutput extends TranslatePinDataOutput, _
125
128
  * <p>Base exception class for all service exceptions from PaymentCryptographyData service.</p>
126
129
  *
127
130
  */
128
- export declare class TranslatePinDataCommand extends $Command<TranslatePinDataCommandInput, TranslatePinDataCommandOutput, PaymentCryptographyDataClientResolvedConfig> {
129
- readonly input: TranslatePinDataCommandInput;
130
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
131
- /**
132
- * @public
133
- */
134
- constructor(input: TranslatePinDataCommandInput);
135
- /**
136
- * @internal
137
- */
138
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PaymentCryptographyDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TranslatePinDataCommandInput, TranslatePinDataCommandOutput>;
139
- /**
140
- * @internal
141
- */
142
- private serialize;
143
- /**
144
- * @internal
145
- */
146
- private deserialize;
131
+ export declare class TranslatePinDataCommand extends TranslatePinDataCommand_base {
147
132
  }
@@ -1,6 +1,5 @@
1
- import { EndpointParameterInstructions } from "@smithy/middleware-endpoint";
2
1
  import { Command as $Command } from "@smithy/smithy-client";
3
- import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@smithy/types";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
4
3
  import { VerifyAuthRequestCryptogramInput, VerifyAuthRequestCryptogramOutput } from "../models/models_0";
5
4
  import { PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../PaymentCryptographyDataClient";
6
5
  /**
@@ -21,6 +20,10 @@ export interface VerifyAuthRequestCryptogramCommandInput extends VerifyAuthReque
21
20
  */
22
21
  export interface VerifyAuthRequestCryptogramCommandOutput extends VerifyAuthRequestCryptogramOutput, __MetadataBearer {
23
22
  }
23
+ declare const VerifyAuthRequestCryptogramCommand_base: {
24
+ new (input: VerifyAuthRequestCryptogramCommandInput): import("@smithy/smithy-client").CommandImpl<VerifyAuthRequestCryptogramCommandInput, VerifyAuthRequestCryptogramCommandOutput, PaymentCryptographyDataClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
25
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
26
+ };
24
27
  /**
25
28
  * @public
26
29
  * <p>Verifies Authorization Request Cryptogram (ARQC) for a EMV chip payment card authorization. For more information, see <a href="https://docs.aws.amazon.com/payment-cryptography/latest/userguide/data-operations.verifyauthrequestcryptogram.html">Verify auth request cryptogram</a> in the <i>Amazon Web Services Payment Cryptography User Guide</i>.</p>
@@ -128,23 +131,5 @@ export interface VerifyAuthRequestCryptogramCommandOutput extends VerifyAuthRequ
128
131
  * <p>Base exception class for all service exceptions from PaymentCryptographyData service.</p>
129
132
  *
130
133
  */
131
- export declare class VerifyAuthRequestCryptogramCommand extends $Command<VerifyAuthRequestCryptogramCommandInput, VerifyAuthRequestCryptogramCommandOutput, PaymentCryptographyDataClientResolvedConfig> {
132
- readonly input: VerifyAuthRequestCryptogramCommandInput;
133
- static getEndpointParameterInstructions(): EndpointParameterInstructions;
134
- /**
135
- * @public
136
- */
137
- constructor(input: VerifyAuthRequestCryptogramCommandInput);
138
- /**
139
- * @internal
140
- */
141
- resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: PaymentCryptographyDataClientResolvedConfig, options?: __HttpHandlerOptions): Handler<VerifyAuthRequestCryptogramCommandInput, VerifyAuthRequestCryptogramCommandOutput>;
142
- /**
143
- * @internal
144
- */
145
- private serialize;
146
- /**
147
- * @internal
148
- */
149
- private deserialize;
134
+ export declare class VerifyAuthRequestCryptogramCommand extends VerifyAuthRequestCryptogramCommand_base {
150
135
  }