@aws-sdk/client-payment-cryptography 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.
- package/dist-cjs/index.js +762 -1031
- package/dist-cjs/runtimeConfig.shared.js +7 -0
- package/dist-es/PaymentCryptographyClient.js +2 -0
- package/dist-es/commands/AddKeyReplicationRegionsCommand.js +3 -9
- package/dist-es/commands/CreateAliasCommand.js +3 -9
- package/dist-es/commands/CreateKeyCommand.js +3 -9
- package/dist-es/commands/DeleteAliasCommand.js +3 -9
- package/dist-es/commands/DeleteKeyCommand.js +3 -9
- package/dist-es/commands/DisableDefaultKeyReplicationRegionsCommand.js +3 -9
- package/dist-es/commands/EnableDefaultKeyReplicationRegionsCommand.js +3 -9
- package/dist-es/commands/ExportKeyCommand.js +3 -10
- package/dist-es/commands/GetAliasCommand.js +3 -9
- package/dist-es/commands/GetCertificateSigningRequestCommand.js +3 -10
- package/dist-es/commands/GetDefaultKeyReplicationRegionsCommand.js +3 -9
- package/dist-es/commands/GetKeyCommand.js +3 -9
- package/dist-es/commands/GetParametersForExportCommand.js +3 -9
- package/dist-es/commands/GetParametersForImportCommand.js +3 -9
- package/dist-es/commands/GetPublicKeyCertificateCommand.js +3 -9
- package/dist-es/commands/ImportKeyCommand.js +3 -10
- package/dist-es/commands/ListAliasesCommand.js +3 -9
- package/dist-es/commands/ListKeysCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/RemoveKeyReplicationRegionsCommand.js +3 -9
- package/dist-es/commands/RestoreKeyCommand.js +3 -9
- package/dist-es/commands/StartKeyUsageCommand.js +3 -9
- package/dist-es/commands/StopKeyUsageCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateAliasCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -87
- package/dist-es/runtimeConfig.shared.js +7 -0
- package/dist-es/schemas/schemas_0.js +687 -0
- package/dist-types/PaymentCryptographyClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -60
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +128 -0
- package/dist-types/ts3.4/PaymentCryptographyClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -43
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +135 -0
- package/package.json +5 -5
- package/dist-es/protocols/Aws_json1_0.js +0 -728
- package/dist-types/protocols/Aws_json1_0.d.ts +0 -236
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +0 -317
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { AddKeyReplicationRegionsCommandInput, AddKeyReplicationRegionsCommandOutput } from "./commands/AddKeyReplicationRegionsCommand";
|
|
11
11
|
import { CreateAliasCommandInput, CreateAliasCommandOutput } from "./commands/CreateAliasCommand";
|
|
@@ -167,6 +167,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
167
167
|
* Optional extensions
|
|
168
168
|
*/
|
|
169
169
|
extensions?: RuntimeExtension[];
|
|
170
|
+
/**
|
|
171
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
172
|
+
* may be overridden. A default will always be set by the client.
|
|
173
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
174
|
+
* the client.
|
|
175
|
+
* @alpha
|
|
176
|
+
*
|
|
177
|
+
*/
|
|
178
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
170
179
|
/**
|
|
171
180
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
172
181
|
*/
|
|
@@ -2021,63 +2021,3 @@ export interface UntagResourceInput {
|
|
|
2021
2021
|
*/
|
|
2022
2022
|
export interface UntagResourceOutput {
|
|
2023
2023
|
}
|
|
2024
|
-
/**
|
|
2025
|
-
* @internal
|
|
2026
|
-
*/
|
|
2027
|
-
export declare const KeyBlockHeadersFilterSensitiveLog: (obj: KeyBlockHeaders) => any;
|
|
2028
|
-
/**
|
|
2029
|
-
* @internal
|
|
2030
|
-
*/
|
|
2031
|
-
export declare const ExportDiffieHellmanTr31KeyBlockFilterSensitiveLog: (obj: ExportDiffieHellmanTr31KeyBlock) => any;
|
|
2032
|
-
/**
|
|
2033
|
-
* @internal
|
|
2034
|
-
*/
|
|
2035
|
-
export declare const ExportTr31KeyBlockFilterSensitiveLog: (obj: ExportTr31KeyBlock) => any;
|
|
2036
|
-
/**
|
|
2037
|
-
* @internal
|
|
2038
|
-
*/
|
|
2039
|
-
export declare const ExportTr34KeyBlockFilterSensitiveLog: (obj: ExportTr34KeyBlock) => any;
|
|
2040
|
-
/**
|
|
2041
|
-
* @internal
|
|
2042
|
-
*/
|
|
2043
|
-
export declare const ExportKeyMaterialFilterSensitiveLog: (obj: ExportKeyMaterial) => any;
|
|
2044
|
-
/**
|
|
2045
|
-
* @internal
|
|
2046
|
-
*/
|
|
2047
|
-
export declare const ExportKeyInputFilterSensitiveLog: (obj: ExportKeyInput) => any;
|
|
2048
|
-
/**
|
|
2049
|
-
* @internal
|
|
2050
|
-
*/
|
|
2051
|
-
export declare const WrappedKeyFilterSensitiveLog: (obj: WrappedKey) => any;
|
|
2052
|
-
/**
|
|
2053
|
-
* @internal
|
|
2054
|
-
*/
|
|
2055
|
-
export declare const ExportKeyOutputFilterSensitiveLog: (obj: ExportKeyOutput) => any;
|
|
2056
|
-
/**
|
|
2057
|
-
* @internal
|
|
2058
|
-
*/
|
|
2059
|
-
export declare const GetCertificateSigningRequestOutputFilterSensitiveLog: (obj: GetCertificateSigningRequestOutput) => any;
|
|
2060
|
-
/**
|
|
2061
|
-
* @internal
|
|
2062
|
-
*/
|
|
2063
|
-
export declare const ImportDiffieHellmanTr31KeyBlockFilterSensitiveLog: (obj: ImportDiffieHellmanTr31KeyBlock) => any;
|
|
2064
|
-
/**
|
|
2065
|
-
* @internal
|
|
2066
|
-
*/
|
|
2067
|
-
export declare const ImportKeyCryptogramFilterSensitiveLog: (obj: ImportKeyCryptogram) => any;
|
|
2068
|
-
/**
|
|
2069
|
-
* @internal
|
|
2070
|
-
*/
|
|
2071
|
-
export declare const ImportTr31KeyBlockFilterSensitiveLog: (obj: ImportTr31KeyBlock) => any;
|
|
2072
|
-
/**
|
|
2073
|
-
* @internal
|
|
2074
|
-
*/
|
|
2075
|
-
export declare const ImportTr34KeyBlockFilterSensitiveLog: (obj: ImportTr34KeyBlock) => any;
|
|
2076
|
-
/**
|
|
2077
|
-
* @internal
|
|
2078
|
-
*/
|
|
2079
|
-
export declare const ImportKeyMaterialFilterSensitiveLog: (obj: ImportKeyMaterial) => any;
|
|
2080
|
-
/**
|
|
2081
|
-
* @internal
|
|
2082
|
-
*/
|
|
2083
|
-
export declare const ImportKeyInputFilterSensitiveLog: (obj: ImportKeyInput) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: PaymentCryptographyClientConfig)
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: PaymentCryptographyClientConfig)
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: PaymentCryptographyClientConfig)
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: PaymentCryptographyClientConfig)
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PaymentCryptographyHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var CertificateSigningRequestType: StaticSimpleSchema;
|
|
3
|
+
export declare var KeyMaterial: StaticSimpleSchema;
|
|
4
|
+
export declare var OptionalBlockId: StaticSimpleSchema;
|
|
5
|
+
export declare var OptionalBlockValue: StaticSimpleSchema;
|
|
6
|
+
export declare var Tr31WrappedKeyBlock: StaticSimpleSchema;
|
|
7
|
+
export declare var Tr34WrappedKeyBlock: StaticSimpleSchema;
|
|
8
|
+
export declare var WrappedKeyCryptogram: StaticSimpleSchema;
|
|
9
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
10
|
+
export declare var AddKeyReplicationRegionsInput: StaticStructureSchema;
|
|
11
|
+
export declare var AddKeyReplicationRegionsOutput: StaticStructureSchema;
|
|
12
|
+
export declare var Alias: StaticStructureSchema;
|
|
13
|
+
export declare var CertificateSubjectType: StaticStructureSchema;
|
|
14
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
15
|
+
export declare var CreateAliasInput: StaticStructureSchema;
|
|
16
|
+
export declare var CreateAliasOutput: StaticStructureSchema;
|
|
17
|
+
export declare var CreateKeyInput: StaticStructureSchema;
|
|
18
|
+
export declare var CreateKeyOutput: StaticStructureSchema;
|
|
19
|
+
export declare var DeleteAliasInput: StaticStructureSchema;
|
|
20
|
+
export declare var DeleteAliasOutput: StaticStructureSchema;
|
|
21
|
+
export declare var DeleteKeyInput: StaticStructureSchema;
|
|
22
|
+
export declare var DeleteKeyOutput: StaticStructureSchema;
|
|
23
|
+
export declare var DisableDefaultKeyReplicationRegionsInput: StaticStructureSchema;
|
|
24
|
+
export declare var DisableDefaultKeyReplicationRegionsOutput: StaticStructureSchema;
|
|
25
|
+
export declare var EnableDefaultKeyReplicationRegionsInput: StaticStructureSchema;
|
|
26
|
+
export declare var EnableDefaultKeyReplicationRegionsOutput: StaticStructureSchema;
|
|
27
|
+
export declare var ExportAttributes: StaticStructureSchema;
|
|
28
|
+
export declare var ExportDiffieHellmanTr31KeyBlock: StaticStructureSchema;
|
|
29
|
+
export declare var ExportDukptInitialKey: StaticStructureSchema;
|
|
30
|
+
export declare var ExportKeyCryptogram: StaticStructureSchema;
|
|
31
|
+
export declare var ExportKeyInput: StaticStructureSchema;
|
|
32
|
+
export declare var ExportKeyOutput: StaticStructureSchema;
|
|
33
|
+
export declare var ExportTr31KeyBlock: StaticStructureSchema;
|
|
34
|
+
export declare var ExportTr34KeyBlock: StaticStructureSchema;
|
|
35
|
+
export declare var GetAliasInput: StaticStructureSchema;
|
|
36
|
+
export declare var GetAliasOutput: StaticStructureSchema;
|
|
37
|
+
export declare var GetCertificateSigningRequestInput: StaticStructureSchema;
|
|
38
|
+
export declare var GetCertificateSigningRequestOutput: StaticStructureSchema;
|
|
39
|
+
export declare var GetDefaultKeyReplicationRegionsInput: StaticStructureSchema;
|
|
40
|
+
export declare var GetDefaultKeyReplicationRegionsOutput: StaticStructureSchema;
|
|
41
|
+
export declare var GetKeyInput: StaticStructureSchema;
|
|
42
|
+
export declare var GetKeyOutput: StaticStructureSchema;
|
|
43
|
+
export declare var GetParametersForExportInput: StaticStructureSchema;
|
|
44
|
+
export declare var GetParametersForExportOutput: StaticStructureSchema;
|
|
45
|
+
export declare var GetParametersForImportInput: StaticStructureSchema;
|
|
46
|
+
export declare var GetParametersForImportOutput: StaticStructureSchema;
|
|
47
|
+
export declare var GetPublicKeyCertificateInput: StaticStructureSchema;
|
|
48
|
+
export declare var GetPublicKeyCertificateOutput: StaticStructureSchema;
|
|
49
|
+
export declare var ImportDiffieHellmanTr31KeyBlock: StaticStructureSchema;
|
|
50
|
+
export declare var ImportKeyCryptogram: StaticStructureSchema;
|
|
51
|
+
export declare var ImportKeyInput: StaticStructureSchema;
|
|
52
|
+
export declare var ImportKeyOutput: StaticStructureSchema;
|
|
53
|
+
export declare var ImportTr31KeyBlock: StaticStructureSchema;
|
|
54
|
+
export declare var ImportTr34KeyBlock: StaticStructureSchema;
|
|
55
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
56
|
+
export declare var Key: StaticStructureSchema;
|
|
57
|
+
export declare var KeyAttributes: StaticStructureSchema;
|
|
58
|
+
export declare var KeyBlockHeaders: StaticStructureSchema;
|
|
59
|
+
export declare var KeyModesOfUse: StaticStructureSchema;
|
|
60
|
+
export declare var KeySummary: StaticStructureSchema;
|
|
61
|
+
export declare var ListAliasesInput: StaticStructureSchema;
|
|
62
|
+
export declare var ListAliasesOutput: StaticStructureSchema;
|
|
63
|
+
export declare var ListKeysInput: StaticStructureSchema;
|
|
64
|
+
export declare var ListKeysOutput: StaticStructureSchema;
|
|
65
|
+
export declare var ListTagsForResourceInput: StaticStructureSchema;
|
|
66
|
+
export declare var ListTagsForResourceOutput: StaticStructureSchema;
|
|
67
|
+
export declare var RemoveKeyReplicationRegionsInput: StaticStructureSchema;
|
|
68
|
+
export declare var RemoveKeyReplicationRegionsOutput: StaticStructureSchema;
|
|
69
|
+
export declare var ReplicationStatusType: StaticStructureSchema;
|
|
70
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
71
|
+
export declare var RestoreKeyInput: StaticStructureSchema;
|
|
72
|
+
export declare var RestoreKeyOutput: StaticStructureSchema;
|
|
73
|
+
export declare var RootCertificatePublicKey: StaticStructureSchema;
|
|
74
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
75
|
+
export declare var ServiceUnavailableException: StaticErrorSchema;
|
|
76
|
+
export declare var StartKeyUsageInput: StaticStructureSchema;
|
|
77
|
+
export declare var StartKeyUsageOutput: StaticStructureSchema;
|
|
78
|
+
export declare var StopKeyUsageInput: StaticStructureSchema;
|
|
79
|
+
export declare var StopKeyUsageOutput: StaticStructureSchema;
|
|
80
|
+
export declare var Tag: StaticStructureSchema;
|
|
81
|
+
export declare var TagResourceInput: StaticStructureSchema;
|
|
82
|
+
export declare var TagResourceOutput: StaticStructureSchema;
|
|
83
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
84
|
+
export declare var TrustedCertificatePublicKey: StaticStructureSchema;
|
|
85
|
+
export declare var UntagResourceInput: StaticStructureSchema;
|
|
86
|
+
export declare var UntagResourceOutput: StaticStructureSchema;
|
|
87
|
+
export declare var UpdateAliasInput: StaticStructureSchema;
|
|
88
|
+
export declare var UpdateAliasOutput: StaticStructureSchema;
|
|
89
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
90
|
+
export declare var WrappedKey: StaticStructureSchema;
|
|
91
|
+
export declare var __Unit: "unit";
|
|
92
|
+
export declare var PaymentCryptographyServiceException: StaticErrorSchema;
|
|
93
|
+
export declare var Aliases: StaticListSchema;
|
|
94
|
+
export declare var KeySummaryList: StaticListSchema;
|
|
95
|
+
export declare var Regions: number;
|
|
96
|
+
export declare var TagKeys: number;
|
|
97
|
+
export declare var Tags: StaticListSchema;
|
|
98
|
+
export declare var OptionalBlocks: StaticMapSchema;
|
|
99
|
+
export declare var ReplicationStatus: StaticMapSchema;
|
|
100
|
+
export declare var DiffieHellmanDerivationData: StaticStructureSchema;
|
|
101
|
+
export declare var ExportKeyMaterial: StaticStructureSchema;
|
|
102
|
+
export declare var ImportKeyMaterial: StaticStructureSchema;
|
|
103
|
+
export declare var AddKeyReplicationRegions: StaticOperationSchema;
|
|
104
|
+
export declare var CreateAlias: StaticOperationSchema;
|
|
105
|
+
export declare var CreateKey: StaticOperationSchema;
|
|
106
|
+
export declare var DeleteAlias: StaticOperationSchema;
|
|
107
|
+
export declare var DeleteKey: StaticOperationSchema;
|
|
108
|
+
export declare var DisableDefaultKeyReplicationRegions: StaticOperationSchema;
|
|
109
|
+
export declare var EnableDefaultKeyReplicationRegions: StaticOperationSchema;
|
|
110
|
+
export declare var ExportKey: StaticOperationSchema;
|
|
111
|
+
export declare var GetAlias: StaticOperationSchema;
|
|
112
|
+
export declare var GetCertificateSigningRequest: StaticOperationSchema;
|
|
113
|
+
export declare var GetDefaultKeyReplicationRegions: StaticOperationSchema;
|
|
114
|
+
export declare var GetKey: StaticOperationSchema;
|
|
115
|
+
export declare var GetParametersForExport: StaticOperationSchema;
|
|
116
|
+
export declare var GetParametersForImport: StaticOperationSchema;
|
|
117
|
+
export declare var GetPublicKeyCertificate: StaticOperationSchema;
|
|
118
|
+
export declare var ImportKey: StaticOperationSchema;
|
|
119
|
+
export declare var ListAliases: StaticOperationSchema;
|
|
120
|
+
export declare var ListKeys: StaticOperationSchema;
|
|
121
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
122
|
+
export declare var RemoveKeyReplicationRegions: StaticOperationSchema;
|
|
123
|
+
export declare var RestoreKey: StaticOperationSchema;
|
|
124
|
+
export declare var StartKeyUsage: StaticOperationSchema;
|
|
125
|
+
export declare var StopKeyUsage: StaticOperationSchema;
|
|
126
|
+
export declare var TagResource: StaticOperationSchema;
|
|
127
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
128
|
+
export declare var UpdateAlias: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -234,6 +237,7 @@ export interface ClientDefaults
|
|
|
234
237
|
retryMode?: string | __Provider<string>;
|
|
235
238
|
logger?: __Logger;
|
|
236
239
|
extensions?: RuntimeExtension[];
|
|
240
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
237
241
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
238
242
|
}
|
|
239
243
|
export type PaymentCryptographyClientConfigType = Partial<
|
|
@@ -739,46 +739,3 @@ export interface UntagResourceInput {
|
|
|
739
739
|
TagKeys: string[] | undefined;
|
|
740
740
|
}
|
|
741
741
|
export interface UntagResourceOutput {}
|
|
742
|
-
export declare const KeyBlockHeadersFilterSensitiveLog: (
|
|
743
|
-
obj: KeyBlockHeaders
|
|
744
|
-
) => any;
|
|
745
|
-
export declare const ExportDiffieHellmanTr31KeyBlockFilterSensitiveLog: (
|
|
746
|
-
obj: ExportDiffieHellmanTr31KeyBlock
|
|
747
|
-
) => any;
|
|
748
|
-
export declare const ExportTr31KeyBlockFilterSensitiveLog: (
|
|
749
|
-
obj: ExportTr31KeyBlock
|
|
750
|
-
) => any;
|
|
751
|
-
export declare const ExportTr34KeyBlockFilterSensitiveLog: (
|
|
752
|
-
obj: ExportTr34KeyBlock
|
|
753
|
-
) => any;
|
|
754
|
-
export declare const ExportKeyMaterialFilterSensitiveLog: (
|
|
755
|
-
obj: ExportKeyMaterial
|
|
756
|
-
) => any;
|
|
757
|
-
export declare const ExportKeyInputFilterSensitiveLog: (
|
|
758
|
-
obj: ExportKeyInput
|
|
759
|
-
) => any;
|
|
760
|
-
export declare const WrappedKeyFilterSensitiveLog: (obj: WrappedKey) => any;
|
|
761
|
-
export declare const ExportKeyOutputFilterSensitiveLog: (
|
|
762
|
-
obj: ExportKeyOutput
|
|
763
|
-
) => any;
|
|
764
|
-
export declare const GetCertificateSigningRequestOutputFilterSensitiveLog: (
|
|
765
|
-
obj: GetCertificateSigningRequestOutput
|
|
766
|
-
) => any;
|
|
767
|
-
export declare const ImportDiffieHellmanTr31KeyBlockFilterSensitiveLog: (
|
|
768
|
-
obj: ImportDiffieHellmanTr31KeyBlock
|
|
769
|
-
) => any;
|
|
770
|
-
export declare const ImportKeyCryptogramFilterSensitiveLog: (
|
|
771
|
-
obj: ImportKeyCryptogram
|
|
772
|
-
) => any;
|
|
773
|
-
export declare const ImportTr31KeyBlockFilterSensitiveLog: (
|
|
774
|
-
obj: ImportTr31KeyBlock
|
|
775
|
-
) => any;
|
|
776
|
-
export declare const ImportTr34KeyBlockFilterSensitiveLog: (
|
|
777
|
-
obj: ImportTr34KeyBlock
|
|
778
|
-
) => any;
|
|
779
|
-
export declare const ImportKeyMaterialFilterSensitiveLog: (
|
|
780
|
-
obj: ImportKeyMaterial
|
|
781
|
-
) => any;
|
|
782
|
-
export declare const ImportKeyInputFilterSensitiveLog: (
|
|
783
|
-
obj: ImportKeyInput
|
|
784
|
-
) => any;
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
userAgentAppId?:
|
|
45
49
|
| string
|
|
@@ -40,6 +40,10 @@ export declare const getRuntimeConfig: (
|
|
|
40
40
|
profile?: string;
|
|
41
41
|
logger: import("@smithy/types").Logger;
|
|
42
42
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
44
|
+
import("@smithy/types").HttpRequest,
|
|
45
|
+
import("@smithy/types").HttpResponse
|
|
46
|
+
>;
|
|
43
47
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
44
48
|
retryStrategy?:
|
|
45
49
|
| import("@smithy/types").RetryStrategy
|
|
@@ -39,6 +39,10 @@ export declare const getRuntimeConfig: (
|
|
|
39
39
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
40
40
|
logger: import("@smithy/types").Logger;
|
|
41
41
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
+
import("@smithy/types").HttpRequest,
|
|
44
|
+
import("@smithy/types").HttpResponse
|
|
45
|
+
>;
|
|
42
46
|
defaultsMode:
|
|
43
47
|
| import("@smithy/smithy-client").DefaultsMode
|
|
44
48
|
| import("@smithy/types").Provider<
|
|
@@ -16,6 +16,10 @@ export declare const getRuntimeConfig: (
|
|
|
16
16
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PaymentCryptographyHttpAuthSchemeProvider;
|
|
17
17
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
18
18
|
logger: import("@smithy/types").Logger;
|
|
19
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
20
|
+
import("@smithy/types").HttpRequest,
|
|
21
|
+
import("@smithy/types").HttpResponse
|
|
22
|
+
>;
|
|
19
23
|
serviceId: string;
|
|
20
24
|
urlParser: import("@smithy/types").UrlParser;
|
|
21
25
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticMapSchema,
|
|
5
|
+
StaticOperationSchema,
|
|
6
|
+
StaticSimpleSchema,
|
|
7
|
+
StaticStructureSchema,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
export declare var CertificateSigningRequestType: StaticSimpleSchema;
|
|
10
|
+
export declare var KeyMaterial: StaticSimpleSchema;
|
|
11
|
+
export declare var OptionalBlockId: StaticSimpleSchema;
|
|
12
|
+
export declare var OptionalBlockValue: StaticSimpleSchema;
|
|
13
|
+
export declare var Tr31WrappedKeyBlock: StaticSimpleSchema;
|
|
14
|
+
export declare var Tr34WrappedKeyBlock: StaticSimpleSchema;
|
|
15
|
+
export declare var WrappedKeyCryptogram: StaticSimpleSchema;
|
|
16
|
+
export declare var AccessDeniedException: StaticErrorSchema;
|
|
17
|
+
export declare var AddKeyReplicationRegionsInput: StaticStructureSchema;
|
|
18
|
+
export declare var AddKeyReplicationRegionsOutput: StaticStructureSchema;
|
|
19
|
+
export declare var Alias: StaticStructureSchema;
|
|
20
|
+
export declare var CertificateSubjectType: StaticStructureSchema;
|
|
21
|
+
export declare var ConflictException: StaticErrorSchema;
|
|
22
|
+
export declare var CreateAliasInput: StaticStructureSchema;
|
|
23
|
+
export declare var CreateAliasOutput: StaticStructureSchema;
|
|
24
|
+
export declare var CreateKeyInput: StaticStructureSchema;
|
|
25
|
+
export declare var CreateKeyOutput: StaticStructureSchema;
|
|
26
|
+
export declare var DeleteAliasInput: StaticStructureSchema;
|
|
27
|
+
export declare var DeleteAliasOutput: StaticStructureSchema;
|
|
28
|
+
export declare var DeleteKeyInput: StaticStructureSchema;
|
|
29
|
+
export declare var DeleteKeyOutput: StaticStructureSchema;
|
|
30
|
+
export declare var DisableDefaultKeyReplicationRegionsInput: StaticStructureSchema;
|
|
31
|
+
export declare var DisableDefaultKeyReplicationRegionsOutput: StaticStructureSchema;
|
|
32
|
+
export declare var EnableDefaultKeyReplicationRegionsInput: StaticStructureSchema;
|
|
33
|
+
export declare var EnableDefaultKeyReplicationRegionsOutput: StaticStructureSchema;
|
|
34
|
+
export declare var ExportAttributes: StaticStructureSchema;
|
|
35
|
+
export declare var ExportDiffieHellmanTr31KeyBlock: StaticStructureSchema;
|
|
36
|
+
export declare var ExportDukptInitialKey: StaticStructureSchema;
|
|
37
|
+
export declare var ExportKeyCryptogram: StaticStructureSchema;
|
|
38
|
+
export declare var ExportKeyInput: StaticStructureSchema;
|
|
39
|
+
export declare var ExportKeyOutput: StaticStructureSchema;
|
|
40
|
+
export declare var ExportTr31KeyBlock: StaticStructureSchema;
|
|
41
|
+
export declare var ExportTr34KeyBlock: StaticStructureSchema;
|
|
42
|
+
export declare var GetAliasInput: StaticStructureSchema;
|
|
43
|
+
export declare var GetAliasOutput: StaticStructureSchema;
|
|
44
|
+
export declare var GetCertificateSigningRequestInput: StaticStructureSchema;
|
|
45
|
+
export declare var GetCertificateSigningRequestOutput: StaticStructureSchema;
|
|
46
|
+
export declare var GetDefaultKeyReplicationRegionsInput: StaticStructureSchema;
|
|
47
|
+
export declare var GetDefaultKeyReplicationRegionsOutput: StaticStructureSchema;
|
|
48
|
+
export declare var GetKeyInput: StaticStructureSchema;
|
|
49
|
+
export declare var GetKeyOutput: StaticStructureSchema;
|
|
50
|
+
export declare var GetParametersForExportInput: StaticStructureSchema;
|
|
51
|
+
export declare var GetParametersForExportOutput: StaticStructureSchema;
|
|
52
|
+
export declare var GetParametersForImportInput: StaticStructureSchema;
|
|
53
|
+
export declare var GetParametersForImportOutput: StaticStructureSchema;
|
|
54
|
+
export declare var GetPublicKeyCertificateInput: StaticStructureSchema;
|
|
55
|
+
export declare var GetPublicKeyCertificateOutput: StaticStructureSchema;
|
|
56
|
+
export declare var ImportDiffieHellmanTr31KeyBlock: StaticStructureSchema;
|
|
57
|
+
export declare var ImportKeyCryptogram: StaticStructureSchema;
|
|
58
|
+
export declare var ImportKeyInput: StaticStructureSchema;
|
|
59
|
+
export declare var ImportKeyOutput: StaticStructureSchema;
|
|
60
|
+
export declare var ImportTr31KeyBlock: StaticStructureSchema;
|
|
61
|
+
export declare var ImportTr34KeyBlock: StaticStructureSchema;
|
|
62
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
63
|
+
export declare var Key: StaticStructureSchema;
|
|
64
|
+
export declare var KeyAttributes: StaticStructureSchema;
|
|
65
|
+
export declare var KeyBlockHeaders: StaticStructureSchema;
|
|
66
|
+
export declare var KeyModesOfUse: StaticStructureSchema;
|
|
67
|
+
export declare var KeySummary: StaticStructureSchema;
|
|
68
|
+
export declare var ListAliasesInput: StaticStructureSchema;
|
|
69
|
+
export declare var ListAliasesOutput: StaticStructureSchema;
|
|
70
|
+
export declare var ListKeysInput: StaticStructureSchema;
|
|
71
|
+
export declare var ListKeysOutput: StaticStructureSchema;
|
|
72
|
+
export declare var ListTagsForResourceInput: StaticStructureSchema;
|
|
73
|
+
export declare var ListTagsForResourceOutput: StaticStructureSchema;
|
|
74
|
+
export declare var RemoveKeyReplicationRegionsInput: StaticStructureSchema;
|
|
75
|
+
export declare var RemoveKeyReplicationRegionsOutput: StaticStructureSchema;
|
|
76
|
+
export declare var ReplicationStatusType: StaticStructureSchema;
|
|
77
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
78
|
+
export declare var RestoreKeyInput: StaticStructureSchema;
|
|
79
|
+
export declare var RestoreKeyOutput: StaticStructureSchema;
|
|
80
|
+
export declare var RootCertificatePublicKey: StaticStructureSchema;
|
|
81
|
+
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
82
|
+
export declare var ServiceUnavailableException: StaticErrorSchema;
|
|
83
|
+
export declare var StartKeyUsageInput: StaticStructureSchema;
|
|
84
|
+
export declare var StartKeyUsageOutput: StaticStructureSchema;
|
|
85
|
+
export declare var StopKeyUsageInput: StaticStructureSchema;
|
|
86
|
+
export declare var StopKeyUsageOutput: StaticStructureSchema;
|
|
87
|
+
export declare var Tag: StaticStructureSchema;
|
|
88
|
+
export declare var TagResourceInput: StaticStructureSchema;
|
|
89
|
+
export declare var TagResourceOutput: StaticStructureSchema;
|
|
90
|
+
export declare var ThrottlingException: StaticErrorSchema;
|
|
91
|
+
export declare var TrustedCertificatePublicKey: StaticStructureSchema;
|
|
92
|
+
export declare var UntagResourceInput: StaticStructureSchema;
|
|
93
|
+
export declare var UntagResourceOutput: StaticStructureSchema;
|
|
94
|
+
export declare var UpdateAliasInput: StaticStructureSchema;
|
|
95
|
+
export declare var UpdateAliasOutput: StaticStructureSchema;
|
|
96
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
97
|
+
export declare var WrappedKey: StaticStructureSchema;
|
|
98
|
+
export declare var __Unit: "unit";
|
|
99
|
+
export declare var PaymentCryptographyServiceException: StaticErrorSchema;
|
|
100
|
+
export declare var Aliases: StaticListSchema;
|
|
101
|
+
export declare var KeySummaryList: StaticListSchema;
|
|
102
|
+
export declare var Regions: number;
|
|
103
|
+
export declare var TagKeys: number;
|
|
104
|
+
export declare var Tags: StaticListSchema;
|
|
105
|
+
export declare var OptionalBlocks: StaticMapSchema;
|
|
106
|
+
export declare var ReplicationStatus: StaticMapSchema;
|
|
107
|
+
export declare var DiffieHellmanDerivationData: StaticStructureSchema;
|
|
108
|
+
export declare var ExportKeyMaterial: StaticStructureSchema;
|
|
109
|
+
export declare var ImportKeyMaterial: StaticStructureSchema;
|
|
110
|
+
export declare var AddKeyReplicationRegions: StaticOperationSchema;
|
|
111
|
+
export declare var CreateAlias: StaticOperationSchema;
|
|
112
|
+
export declare var CreateKey: StaticOperationSchema;
|
|
113
|
+
export declare var DeleteAlias: StaticOperationSchema;
|
|
114
|
+
export declare var DeleteKey: StaticOperationSchema;
|
|
115
|
+
export declare var DisableDefaultKeyReplicationRegions: StaticOperationSchema;
|
|
116
|
+
export declare var EnableDefaultKeyReplicationRegions: StaticOperationSchema;
|
|
117
|
+
export declare var ExportKey: StaticOperationSchema;
|
|
118
|
+
export declare var GetAlias: StaticOperationSchema;
|
|
119
|
+
export declare var GetCertificateSigningRequest: StaticOperationSchema;
|
|
120
|
+
export declare var GetDefaultKeyReplicationRegions: StaticOperationSchema;
|
|
121
|
+
export declare var GetKey: StaticOperationSchema;
|
|
122
|
+
export declare var GetParametersForExport: StaticOperationSchema;
|
|
123
|
+
export declare var GetParametersForImport: StaticOperationSchema;
|
|
124
|
+
export declare var GetPublicKeyCertificate: StaticOperationSchema;
|
|
125
|
+
export declare var ImportKey: StaticOperationSchema;
|
|
126
|
+
export declare var ListAliases: StaticOperationSchema;
|
|
127
|
+
export declare var ListKeys: StaticOperationSchema;
|
|
128
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
129
|
+
export declare var RemoveKeyReplicationRegions: StaticOperationSchema;
|
|
130
|
+
export declare var RestoreKey: StaticOperationSchema;
|
|
131
|
+
export declare var StartKeyUsage: StaticOperationSchema;
|
|
132
|
+
export declare var StopKeyUsage: StaticOperationSchema;
|
|
133
|
+
export declare var TagResource: StaticOperationSchema;
|
|
134
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
135
|
+
export declare var UpdateAlias: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-payment-cryptography",
|
|
3
3
|
"description": "AWS SDK for JavaScript Payment Cryptography Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.929.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-payment-cryptography",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.928.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.929.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.922.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.922.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.922.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.928.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.925.0",
|
|
30
30
|
"@aws-sdk/types": "3.922.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.922.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.922.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.928.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.2",
|
|
35
35
|
"@smithy/core": "^3.17.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.5",
|