@aws-sdk/client-payment-cryptography 3.883.0 → 3.887.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/README.md +40 -0
- package/dist-cjs/index.js +336 -169
- package/dist-es/PaymentCryptography.js +10 -0
- package/dist-es/commands/AddKeyReplicationRegionsCommand.js +22 -0
- package/dist-es/commands/DisableDefaultKeyReplicationRegionsCommand.js +22 -0
- package/dist-es/commands/EnableDefaultKeyReplicationRegionsCommand.js +22 -0
- package/dist-es/commands/GetDefaultKeyReplicationRegionsCommand.js +22 -0
- package/dist-es/commands/GetParametersForExportCommand.js +1 -2
- package/dist-es/commands/GetParametersForImportCommand.js +1 -2
- package/dist-es/commands/GetPublicKeyCertificateCommand.js +1 -2
- package/dist-es/commands/RemoveKeyReplicationRegionsCommand.js +22 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +112 -134
- package/dist-es/protocols/Aws_json1_0.js +112 -3
- package/dist-types/PaymentCryptography.d.ts +36 -0
- package/dist-types/PaymentCryptographyClient.d.ts +7 -2
- package/dist-types/commands/AddKeyReplicationRegionsCommand.d.ts +135 -0
- package/dist-types/commands/CreateAliasCommand.d.ts +8 -8
- package/dist-types/commands/CreateKeyCommand.d.ts +20 -8
- package/dist-types/commands/DeleteAliasCommand.d.ts +7 -7
- package/dist-types/commands/DeleteKeyCommand.d.ts +16 -7
- package/dist-types/commands/DisableDefaultKeyReplicationRegionsCommand.d.ts +97 -0
- package/dist-types/commands/EnableDefaultKeyReplicationRegionsCommand.d.ts +97 -0
- package/dist-types/commands/ExportKeyCommand.d.ts +7 -7
- package/dist-types/commands/GetAliasCommand.d.ts +6 -6
- package/dist-types/commands/GetDefaultKeyReplicationRegionsCommand.d.ts +93 -0
- package/dist-types/commands/GetKeyCommand.d.ts +16 -7
- package/dist-types/commands/GetParametersForExportCommand.d.ts +8 -8
- package/dist-types/commands/GetParametersForImportCommand.d.ts +8 -8
- package/dist-types/commands/GetPublicKeyCertificateCommand.d.ts +6 -6
- package/dist-types/commands/ImportKeyCommand.d.ts +20 -8
- package/dist-types/commands/ListAliasesCommand.d.ts +6 -6
- package/dist-types/commands/ListKeysCommand.d.ts +8 -6
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -6
- package/dist-types/commands/RemoveKeyReplicationRegionsCommand.d.ts +135 -0
- package/dist-types/commands/RestoreKeyCommand.d.ts +17 -8
- package/dist-types/commands/StartKeyUsageCommand.d.ts +17 -8
- package/dist-types/commands/StopKeyUsageCommand.d.ts +17 -8
- package/dist-types/commands/TagResourceCommand.d.ts +8 -8
- package/dist-types/commands/UntagResourceCommand.d.ts +7 -7
- package/dist-types/commands/UpdateAliasCommand.d.ts +7 -7
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +538 -364
- package/dist-types/protocols/Aws_json1_0.d.ts +45 -0
- package/dist-types/ts3.4/PaymentCryptography.d.ts +98 -0
- package/dist-types/ts3.4/PaymentCryptographyClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/AddKeyReplicationRegionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisableDefaultKeyReplicationRegionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/EnableDefaultKeyReplicationRegionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDefaultKeyReplicationRegionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RemoveKeyReplicationRegionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +159 -120
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +60 -0
- package/package.json +37 -37
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
|
|
2
2
|
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
3
|
+
import { AddKeyReplicationRegionsCommandInput, AddKeyReplicationRegionsCommandOutput } from "../commands/AddKeyReplicationRegionsCommand";
|
|
3
4
|
import { CreateAliasCommandInput, CreateAliasCommandOutput } from "../commands/CreateAliasCommand";
|
|
4
5
|
import { CreateKeyCommandInput, CreateKeyCommandOutput } from "../commands/CreateKeyCommand";
|
|
5
6
|
import { DeleteAliasCommandInput, DeleteAliasCommandOutput } from "../commands/DeleteAliasCommand";
|
|
6
7
|
import { DeleteKeyCommandInput, DeleteKeyCommandOutput } from "../commands/DeleteKeyCommand";
|
|
8
|
+
import { DisableDefaultKeyReplicationRegionsCommandInput, DisableDefaultKeyReplicationRegionsCommandOutput } from "../commands/DisableDefaultKeyReplicationRegionsCommand";
|
|
9
|
+
import { EnableDefaultKeyReplicationRegionsCommandInput, EnableDefaultKeyReplicationRegionsCommandOutput } from "../commands/EnableDefaultKeyReplicationRegionsCommand";
|
|
7
10
|
import { ExportKeyCommandInput, ExportKeyCommandOutput } from "../commands/ExportKeyCommand";
|
|
8
11
|
import { GetAliasCommandInput, GetAliasCommandOutput } from "../commands/GetAliasCommand";
|
|
12
|
+
import { GetDefaultKeyReplicationRegionsCommandInput, GetDefaultKeyReplicationRegionsCommandOutput } from "../commands/GetDefaultKeyReplicationRegionsCommand";
|
|
9
13
|
import { GetKeyCommandInput, GetKeyCommandOutput } from "../commands/GetKeyCommand";
|
|
10
14
|
import { GetParametersForExportCommandInput, GetParametersForExportCommandOutput } from "../commands/GetParametersForExportCommand";
|
|
11
15
|
import { GetParametersForImportCommandInput, GetParametersForImportCommandOutput } from "../commands/GetParametersForImportCommand";
|
|
@@ -14,12 +18,17 @@ import { ImportKeyCommandInput, ImportKeyCommandOutput } from "../commands/Impor
|
|
|
14
18
|
import { ListAliasesCommandInput, ListAliasesCommandOutput } from "../commands/ListAliasesCommand";
|
|
15
19
|
import { ListKeysCommandInput, ListKeysCommandOutput } from "../commands/ListKeysCommand";
|
|
16
20
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
21
|
+
import { RemoveKeyReplicationRegionsCommandInput, RemoveKeyReplicationRegionsCommandOutput } from "../commands/RemoveKeyReplicationRegionsCommand";
|
|
17
22
|
import { RestoreKeyCommandInput, RestoreKeyCommandOutput } from "../commands/RestoreKeyCommand";
|
|
18
23
|
import { StartKeyUsageCommandInput, StartKeyUsageCommandOutput } from "../commands/StartKeyUsageCommand";
|
|
19
24
|
import { StopKeyUsageCommandInput, StopKeyUsageCommandOutput } from "../commands/StopKeyUsageCommand";
|
|
20
25
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
|
|
21
26
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
|
|
22
27
|
import { UpdateAliasCommandInput, UpdateAliasCommandOutput } from "../commands/UpdateAliasCommand";
|
|
28
|
+
/**
|
|
29
|
+
* serializeAws_json1_0AddKeyReplicationRegionsCommand
|
|
30
|
+
*/
|
|
31
|
+
export declare const se_AddKeyReplicationRegionsCommand: (input: AddKeyReplicationRegionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
23
32
|
/**
|
|
24
33
|
* serializeAws_json1_0CreateAliasCommand
|
|
25
34
|
*/
|
|
@@ -36,6 +45,14 @@ export declare const se_DeleteAliasCommand: (input: DeleteAliasCommandInput, con
|
|
|
36
45
|
* serializeAws_json1_0DeleteKeyCommand
|
|
37
46
|
*/
|
|
38
47
|
export declare const se_DeleteKeyCommand: (input: DeleteKeyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
48
|
+
/**
|
|
49
|
+
* serializeAws_json1_0DisableDefaultKeyReplicationRegionsCommand
|
|
50
|
+
*/
|
|
51
|
+
export declare const se_DisableDefaultKeyReplicationRegionsCommand: (input: DisableDefaultKeyReplicationRegionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
|
+
/**
|
|
53
|
+
* serializeAws_json1_0EnableDefaultKeyReplicationRegionsCommand
|
|
54
|
+
*/
|
|
55
|
+
export declare const se_EnableDefaultKeyReplicationRegionsCommand: (input: EnableDefaultKeyReplicationRegionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
56
|
/**
|
|
40
57
|
* serializeAws_json1_0ExportKeyCommand
|
|
41
58
|
*/
|
|
@@ -44,6 +61,10 @@ export declare const se_ExportKeyCommand: (input: ExportKeyCommandInput, context
|
|
|
44
61
|
* serializeAws_json1_0GetAliasCommand
|
|
45
62
|
*/
|
|
46
63
|
export declare const se_GetAliasCommand: (input: GetAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
64
|
+
/**
|
|
65
|
+
* serializeAws_json1_0GetDefaultKeyReplicationRegionsCommand
|
|
66
|
+
*/
|
|
67
|
+
export declare const se_GetDefaultKeyReplicationRegionsCommand: (input: GetDefaultKeyReplicationRegionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
68
|
/**
|
|
48
69
|
* serializeAws_json1_0GetKeyCommand
|
|
49
70
|
*/
|
|
@@ -76,6 +97,10 @@ export declare const se_ListKeysCommand: (input: ListKeysCommandInput, context:
|
|
|
76
97
|
* serializeAws_json1_0ListTagsForResourceCommand
|
|
77
98
|
*/
|
|
78
99
|
export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
100
|
+
/**
|
|
101
|
+
* serializeAws_json1_0RemoveKeyReplicationRegionsCommand
|
|
102
|
+
*/
|
|
103
|
+
export declare const se_RemoveKeyReplicationRegionsCommand: (input: RemoveKeyReplicationRegionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
79
104
|
/**
|
|
80
105
|
* serializeAws_json1_0RestoreKeyCommand
|
|
81
106
|
*/
|
|
@@ -100,6 +125,10 @@ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput,
|
|
|
100
125
|
* serializeAws_json1_0UpdateAliasCommand
|
|
101
126
|
*/
|
|
102
127
|
export declare const se_UpdateAliasCommand: (input: UpdateAliasCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
128
|
+
/**
|
|
129
|
+
* deserializeAws_json1_0AddKeyReplicationRegionsCommand
|
|
130
|
+
*/
|
|
131
|
+
export declare const de_AddKeyReplicationRegionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AddKeyReplicationRegionsCommandOutput>;
|
|
103
132
|
/**
|
|
104
133
|
* deserializeAws_json1_0CreateAliasCommand
|
|
105
134
|
*/
|
|
@@ -116,6 +145,14 @@ export declare const de_DeleteAliasCommand: (output: __HttpResponse, context: __
|
|
|
116
145
|
* deserializeAws_json1_0DeleteKeyCommand
|
|
117
146
|
*/
|
|
118
147
|
export declare const de_DeleteKeyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteKeyCommandOutput>;
|
|
148
|
+
/**
|
|
149
|
+
* deserializeAws_json1_0DisableDefaultKeyReplicationRegionsCommand
|
|
150
|
+
*/
|
|
151
|
+
export declare const de_DisableDefaultKeyReplicationRegionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisableDefaultKeyReplicationRegionsCommandOutput>;
|
|
152
|
+
/**
|
|
153
|
+
* deserializeAws_json1_0EnableDefaultKeyReplicationRegionsCommand
|
|
154
|
+
*/
|
|
155
|
+
export declare const de_EnableDefaultKeyReplicationRegionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<EnableDefaultKeyReplicationRegionsCommandOutput>;
|
|
119
156
|
/**
|
|
120
157
|
* deserializeAws_json1_0ExportKeyCommand
|
|
121
158
|
*/
|
|
@@ -124,6 +161,10 @@ export declare const de_ExportKeyCommand: (output: __HttpResponse, context: __Se
|
|
|
124
161
|
* deserializeAws_json1_0GetAliasCommand
|
|
125
162
|
*/
|
|
126
163
|
export declare const de_GetAliasCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAliasCommandOutput>;
|
|
164
|
+
/**
|
|
165
|
+
* deserializeAws_json1_0GetDefaultKeyReplicationRegionsCommand
|
|
166
|
+
*/
|
|
167
|
+
export declare const de_GetDefaultKeyReplicationRegionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetDefaultKeyReplicationRegionsCommandOutput>;
|
|
127
168
|
/**
|
|
128
169
|
* deserializeAws_json1_0GetKeyCommand
|
|
129
170
|
*/
|
|
@@ -156,6 +197,10 @@ export declare const de_ListKeysCommand: (output: __HttpResponse, context: __Ser
|
|
|
156
197
|
* deserializeAws_json1_0ListTagsForResourceCommand
|
|
157
198
|
*/
|
|
158
199
|
export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
|
200
|
+
/**
|
|
201
|
+
* deserializeAws_json1_0RemoveKeyReplicationRegionsCommand
|
|
202
|
+
*/
|
|
203
|
+
export declare const de_RemoveKeyReplicationRegionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<RemoveKeyReplicationRegionsCommandOutput>;
|
|
159
204
|
/**
|
|
160
205
|
* deserializeAws_json1_0RestoreKeyCommand
|
|
161
206
|
*/
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
AddKeyReplicationRegionsCommandInput,
|
|
4
|
+
AddKeyReplicationRegionsCommandOutput,
|
|
5
|
+
} from "./commands/AddKeyReplicationRegionsCommand";
|
|
2
6
|
import {
|
|
3
7
|
CreateAliasCommandInput,
|
|
4
8
|
CreateAliasCommandOutput,
|
|
@@ -15,6 +19,14 @@ import {
|
|
|
15
19
|
DeleteKeyCommandInput,
|
|
16
20
|
DeleteKeyCommandOutput,
|
|
17
21
|
} from "./commands/DeleteKeyCommand";
|
|
22
|
+
import {
|
|
23
|
+
DisableDefaultKeyReplicationRegionsCommandInput,
|
|
24
|
+
DisableDefaultKeyReplicationRegionsCommandOutput,
|
|
25
|
+
} from "./commands/DisableDefaultKeyReplicationRegionsCommand";
|
|
26
|
+
import {
|
|
27
|
+
EnableDefaultKeyReplicationRegionsCommandInput,
|
|
28
|
+
EnableDefaultKeyReplicationRegionsCommandOutput,
|
|
29
|
+
} from "./commands/EnableDefaultKeyReplicationRegionsCommand";
|
|
18
30
|
import {
|
|
19
31
|
ExportKeyCommandInput,
|
|
20
32
|
ExportKeyCommandOutput,
|
|
@@ -23,6 +35,10 @@ import {
|
|
|
23
35
|
GetAliasCommandInput,
|
|
24
36
|
GetAliasCommandOutput,
|
|
25
37
|
} from "./commands/GetAliasCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetDefaultKeyReplicationRegionsCommandInput,
|
|
40
|
+
GetDefaultKeyReplicationRegionsCommandOutput,
|
|
41
|
+
} from "./commands/GetDefaultKeyReplicationRegionsCommand";
|
|
26
42
|
import {
|
|
27
43
|
GetKeyCommandInput,
|
|
28
44
|
GetKeyCommandOutput,
|
|
@@ -55,6 +71,10 @@ import {
|
|
|
55
71
|
ListTagsForResourceCommandInput,
|
|
56
72
|
ListTagsForResourceCommandOutput,
|
|
57
73
|
} from "./commands/ListTagsForResourceCommand";
|
|
74
|
+
import {
|
|
75
|
+
RemoveKeyReplicationRegionsCommandInput,
|
|
76
|
+
RemoveKeyReplicationRegionsCommandOutput,
|
|
77
|
+
} from "./commands/RemoveKeyReplicationRegionsCommand";
|
|
58
78
|
import {
|
|
59
79
|
RestoreKeyCommandInput,
|
|
60
80
|
RestoreKeyCommandOutput,
|
|
@@ -81,6 +101,19 @@ import {
|
|
|
81
101
|
} from "./commands/UpdateAliasCommand";
|
|
82
102
|
import { PaymentCryptographyClient } from "./PaymentCryptographyClient";
|
|
83
103
|
export interface PaymentCryptography {
|
|
104
|
+
addKeyReplicationRegions(
|
|
105
|
+
args: AddKeyReplicationRegionsCommandInput,
|
|
106
|
+
options?: __HttpHandlerOptions
|
|
107
|
+
): Promise<AddKeyReplicationRegionsCommandOutput>;
|
|
108
|
+
addKeyReplicationRegions(
|
|
109
|
+
args: AddKeyReplicationRegionsCommandInput,
|
|
110
|
+
cb: (err: any, data?: AddKeyReplicationRegionsCommandOutput) => void
|
|
111
|
+
): void;
|
|
112
|
+
addKeyReplicationRegions(
|
|
113
|
+
args: AddKeyReplicationRegionsCommandInput,
|
|
114
|
+
options: __HttpHandlerOptions,
|
|
115
|
+
cb: (err: any, data?: AddKeyReplicationRegionsCommandOutput) => void
|
|
116
|
+
): void;
|
|
84
117
|
createAlias(
|
|
85
118
|
args: CreateAliasCommandInput,
|
|
86
119
|
options?: __HttpHandlerOptions
|
|
@@ -133,6 +166,44 @@ export interface PaymentCryptography {
|
|
|
133
166
|
options: __HttpHandlerOptions,
|
|
134
167
|
cb: (err: any, data?: DeleteKeyCommandOutput) => void
|
|
135
168
|
): void;
|
|
169
|
+
disableDefaultKeyReplicationRegions(
|
|
170
|
+
args: DisableDefaultKeyReplicationRegionsCommandInput,
|
|
171
|
+
options?: __HttpHandlerOptions
|
|
172
|
+
): Promise<DisableDefaultKeyReplicationRegionsCommandOutput>;
|
|
173
|
+
disableDefaultKeyReplicationRegions(
|
|
174
|
+
args: DisableDefaultKeyReplicationRegionsCommandInput,
|
|
175
|
+
cb: (
|
|
176
|
+
err: any,
|
|
177
|
+
data?: DisableDefaultKeyReplicationRegionsCommandOutput
|
|
178
|
+
) => void
|
|
179
|
+
): void;
|
|
180
|
+
disableDefaultKeyReplicationRegions(
|
|
181
|
+
args: DisableDefaultKeyReplicationRegionsCommandInput,
|
|
182
|
+
options: __HttpHandlerOptions,
|
|
183
|
+
cb: (
|
|
184
|
+
err: any,
|
|
185
|
+
data?: DisableDefaultKeyReplicationRegionsCommandOutput
|
|
186
|
+
) => void
|
|
187
|
+
): void;
|
|
188
|
+
enableDefaultKeyReplicationRegions(
|
|
189
|
+
args: EnableDefaultKeyReplicationRegionsCommandInput,
|
|
190
|
+
options?: __HttpHandlerOptions
|
|
191
|
+
): Promise<EnableDefaultKeyReplicationRegionsCommandOutput>;
|
|
192
|
+
enableDefaultKeyReplicationRegions(
|
|
193
|
+
args: EnableDefaultKeyReplicationRegionsCommandInput,
|
|
194
|
+
cb: (
|
|
195
|
+
err: any,
|
|
196
|
+
data?: EnableDefaultKeyReplicationRegionsCommandOutput
|
|
197
|
+
) => void
|
|
198
|
+
): void;
|
|
199
|
+
enableDefaultKeyReplicationRegions(
|
|
200
|
+
args: EnableDefaultKeyReplicationRegionsCommandInput,
|
|
201
|
+
options: __HttpHandlerOptions,
|
|
202
|
+
cb: (
|
|
203
|
+
err: any,
|
|
204
|
+
data?: EnableDefaultKeyReplicationRegionsCommandOutput
|
|
205
|
+
) => void
|
|
206
|
+
): void;
|
|
136
207
|
exportKey(
|
|
137
208
|
args: ExportKeyCommandInput,
|
|
138
209
|
options?: __HttpHandlerOptions
|
|
@@ -159,6 +230,20 @@ export interface PaymentCryptography {
|
|
|
159
230
|
options: __HttpHandlerOptions,
|
|
160
231
|
cb: (err: any, data?: GetAliasCommandOutput) => void
|
|
161
232
|
): void;
|
|
233
|
+
getDefaultKeyReplicationRegions(): Promise<GetDefaultKeyReplicationRegionsCommandOutput>;
|
|
234
|
+
getDefaultKeyReplicationRegions(
|
|
235
|
+
args: GetDefaultKeyReplicationRegionsCommandInput,
|
|
236
|
+
options?: __HttpHandlerOptions
|
|
237
|
+
): Promise<GetDefaultKeyReplicationRegionsCommandOutput>;
|
|
238
|
+
getDefaultKeyReplicationRegions(
|
|
239
|
+
args: GetDefaultKeyReplicationRegionsCommandInput,
|
|
240
|
+
cb: (err: any, data?: GetDefaultKeyReplicationRegionsCommandOutput) => void
|
|
241
|
+
): void;
|
|
242
|
+
getDefaultKeyReplicationRegions(
|
|
243
|
+
args: GetDefaultKeyReplicationRegionsCommandInput,
|
|
244
|
+
options: __HttpHandlerOptions,
|
|
245
|
+
cb: (err: any, data?: GetDefaultKeyReplicationRegionsCommandOutput) => void
|
|
246
|
+
): void;
|
|
162
247
|
getKey(
|
|
163
248
|
args: GetKeyCommandInput,
|
|
164
249
|
options?: __HttpHandlerOptions
|
|
@@ -265,6 +350,19 @@ export interface PaymentCryptography {
|
|
|
265
350
|
options: __HttpHandlerOptions,
|
|
266
351
|
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
267
352
|
): void;
|
|
353
|
+
removeKeyReplicationRegions(
|
|
354
|
+
args: RemoveKeyReplicationRegionsCommandInput,
|
|
355
|
+
options?: __HttpHandlerOptions
|
|
356
|
+
): Promise<RemoveKeyReplicationRegionsCommandOutput>;
|
|
357
|
+
removeKeyReplicationRegions(
|
|
358
|
+
args: RemoveKeyReplicationRegionsCommandInput,
|
|
359
|
+
cb: (err: any, data?: RemoveKeyReplicationRegionsCommandOutput) => void
|
|
360
|
+
): void;
|
|
361
|
+
removeKeyReplicationRegions(
|
|
362
|
+
args: RemoveKeyReplicationRegionsCommandInput,
|
|
363
|
+
options: __HttpHandlerOptions,
|
|
364
|
+
cb: (err: any, data?: RemoveKeyReplicationRegionsCommandOutput) => void
|
|
365
|
+
): void;
|
|
268
366
|
restoreKey(
|
|
269
367
|
args: RestoreKeyCommandInput,
|
|
270
368
|
options?: __HttpHandlerOptions
|
|
@@ -45,6 +45,10 @@ import {
|
|
|
45
45
|
HttpAuthSchemeInputConfig,
|
|
46
46
|
HttpAuthSchemeResolvedConfig,
|
|
47
47
|
} from "./auth/httpAuthSchemeProvider";
|
|
48
|
+
import {
|
|
49
|
+
AddKeyReplicationRegionsCommandInput,
|
|
50
|
+
AddKeyReplicationRegionsCommandOutput,
|
|
51
|
+
} from "./commands/AddKeyReplicationRegionsCommand";
|
|
48
52
|
import {
|
|
49
53
|
CreateAliasCommandInput,
|
|
50
54
|
CreateAliasCommandOutput,
|
|
@@ -61,6 +65,14 @@ import {
|
|
|
61
65
|
DeleteKeyCommandInput,
|
|
62
66
|
DeleteKeyCommandOutput,
|
|
63
67
|
} from "./commands/DeleteKeyCommand";
|
|
68
|
+
import {
|
|
69
|
+
DisableDefaultKeyReplicationRegionsCommandInput,
|
|
70
|
+
DisableDefaultKeyReplicationRegionsCommandOutput,
|
|
71
|
+
} from "./commands/DisableDefaultKeyReplicationRegionsCommand";
|
|
72
|
+
import {
|
|
73
|
+
EnableDefaultKeyReplicationRegionsCommandInput,
|
|
74
|
+
EnableDefaultKeyReplicationRegionsCommandOutput,
|
|
75
|
+
} from "./commands/EnableDefaultKeyReplicationRegionsCommand";
|
|
64
76
|
import {
|
|
65
77
|
ExportKeyCommandInput,
|
|
66
78
|
ExportKeyCommandOutput,
|
|
@@ -69,6 +81,10 @@ import {
|
|
|
69
81
|
GetAliasCommandInput,
|
|
70
82
|
GetAliasCommandOutput,
|
|
71
83
|
} from "./commands/GetAliasCommand";
|
|
84
|
+
import {
|
|
85
|
+
GetDefaultKeyReplicationRegionsCommandInput,
|
|
86
|
+
GetDefaultKeyReplicationRegionsCommandOutput,
|
|
87
|
+
} from "./commands/GetDefaultKeyReplicationRegionsCommand";
|
|
72
88
|
import {
|
|
73
89
|
GetKeyCommandInput,
|
|
74
90
|
GetKeyCommandOutput,
|
|
@@ -101,6 +117,10 @@ import {
|
|
|
101
117
|
ListTagsForResourceCommandInput,
|
|
102
118
|
ListTagsForResourceCommandOutput,
|
|
103
119
|
} from "./commands/ListTagsForResourceCommand";
|
|
120
|
+
import {
|
|
121
|
+
RemoveKeyReplicationRegionsCommandInput,
|
|
122
|
+
RemoveKeyReplicationRegionsCommandOutput,
|
|
123
|
+
} from "./commands/RemoveKeyReplicationRegionsCommand";
|
|
104
124
|
import {
|
|
105
125
|
RestoreKeyCommandInput,
|
|
106
126
|
RestoreKeyCommandOutput,
|
|
@@ -133,12 +153,16 @@ import {
|
|
|
133
153
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
134
154
|
export { __Client };
|
|
135
155
|
export type ServiceInputTypes =
|
|
156
|
+
| AddKeyReplicationRegionsCommandInput
|
|
136
157
|
| CreateAliasCommandInput
|
|
137
158
|
| CreateKeyCommandInput
|
|
138
159
|
| DeleteAliasCommandInput
|
|
139
160
|
| DeleteKeyCommandInput
|
|
161
|
+
| DisableDefaultKeyReplicationRegionsCommandInput
|
|
162
|
+
| EnableDefaultKeyReplicationRegionsCommandInput
|
|
140
163
|
| ExportKeyCommandInput
|
|
141
164
|
| GetAliasCommandInput
|
|
165
|
+
| GetDefaultKeyReplicationRegionsCommandInput
|
|
142
166
|
| GetKeyCommandInput
|
|
143
167
|
| GetParametersForExportCommandInput
|
|
144
168
|
| GetParametersForImportCommandInput
|
|
@@ -147,6 +171,7 @@ export type ServiceInputTypes =
|
|
|
147
171
|
| ListAliasesCommandInput
|
|
148
172
|
| ListKeysCommandInput
|
|
149
173
|
| ListTagsForResourceCommandInput
|
|
174
|
+
| RemoveKeyReplicationRegionsCommandInput
|
|
150
175
|
| RestoreKeyCommandInput
|
|
151
176
|
| StartKeyUsageCommandInput
|
|
152
177
|
| StopKeyUsageCommandInput
|
|
@@ -154,12 +179,16 @@ export type ServiceInputTypes =
|
|
|
154
179
|
| UntagResourceCommandInput
|
|
155
180
|
| UpdateAliasCommandInput;
|
|
156
181
|
export type ServiceOutputTypes =
|
|
182
|
+
| AddKeyReplicationRegionsCommandOutput
|
|
157
183
|
| CreateAliasCommandOutput
|
|
158
184
|
| CreateKeyCommandOutput
|
|
159
185
|
| DeleteAliasCommandOutput
|
|
160
186
|
| DeleteKeyCommandOutput
|
|
187
|
+
| DisableDefaultKeyReplicationRegionsCommandOutput
|
|
188
|
+
| EnableDefaultKeyReplicationRegionsCommandOutput
|
|
161
189
|
| ExportKeyCommandOutput
|
|
162
190
|
| GetAliasCommandOutput
|
|
191
|
+
| GetDefaultKeyReplicationRegionsCommandOutput
|
|
163
192
|
| GetKeyCommandOutput
|
|
164
193
|
| GetParametersForExportCommandOutput
|
|
165
194
|
| GetParametersForImportCommandOutput
|
|
@@ -168,6 +197,7 @@ export type ServiceOutputTypes =
|
|
|
168
197
|
| ListAliasesCommandOutput
|
|
169
198
|
| ListKeysCommandOutput
|
|
170
199
|
| ListTagsForResourceCommandOutput
|
|
200
|
+
| RemoveKeyReplicationRegionsCommandOutput
|
|
171
201
|
| RestoreKeyCommandOutput
|
|
172
202
|
| StartKeyUsageCommandOutput
|
|
173
203
|
| StopKeyUsageCommandOutput
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AddKeyReplicationRegionsInput,
|
|
5
|
+
AddKeyReplicationRegionsOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PaymentCryptographyClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PaymentCryptographyClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface AddKeyReplicationRegionsCommandInput
|
|
15
|
+
extends AddKeyReplicationRegionsInput {}
|
|
16
|
+
export interface AddKeyReplicationRegionsCommandOutput
|
|
17
|
+
extends AddKeyReplicationRegionsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const AddKeyReplicationRegionsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: AddKeyReplicationRegionsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
AddKeyReplicationRegionsCommandInput,
|
|
24
|
+
AddKeyReplicationRegionsCommandOutput,
|
|
25
|
+
PaymentCryptographyClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: AddKeyReplicationRegionsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
AddKeyReplicationRegionsCommandInput,
|
|
33
|
+
AddKeyReplicationRegionsCommandOutput,
|
|
34
|
+
PaymentCryptographyClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class AddKeyReplicationRegionsCommand extends AddKeyReplicationRegionsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: AddKeyReplicationRegionsInput;
|
|
44
|
+
output: AddKeyReplicationRegionsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: AddKeyReplicationRegionsCommandInput;
|
|
48
|
+
output: AddKeyReplicationRegionsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
DisableDefaultKeyReplicationRegionsInput,
|
|
5
|
+
DisableDefaultKeyReplicationRegionsOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PaymentCryptographyClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PaymentCryptographyClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface DisableDefaultKeyReplicationRegionsCommandInput
|
|
15
|
+
extends DisableDefaultKeyReplicationRegionsInput {}
|
|
16
|
+
export interface DisableDefaultKeyReplicationRegionsCommandOutput
|
|
17
|
+
extends DisableDefaultKeyReplicationRegionsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const DisableDefaultKeyReplicationRegionsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: DisableDefaultKeyReplicationRegionsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
DisableDefaultKeyReplicationRegionsCommandInput,
|
|
24
|
+
DisableDefaultKeyReplicationRegionsCommandOutput,
|
|
25
|
+
PaymentCryptographyClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: DisableDefaultKeyReplicationRegionsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
DisableDefaultKeyReplicationRegionsCommandInput,
|
|
33
|
+
DisableDefaultKeyReplicationRegionsCommandOutput,
|
|
34
|
+
PaymentCryptographyClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class DisableDefaultKeyReplicationRegionsCommand extends DisableDefaultKeyReplicationRegionsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: DisableDefaultKeyReplicationRegionsInput;
|
|
44
|
+
output: DisableDefaultKeyReplicationRegionsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: DisableDefaultKeyReplicationRegionsCommandInput;
|
|
48
|
+
output: DisableDefaultKeyReplicationRegionsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EnableDefaultKeyReplicationRegionsInput,
|
|
5
|
+
EnableDefaultKeyReplicationRegionsOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PaymentCryptographyClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PaymentCryptographyClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface EnableDefaultKeyReplicationRegionsCommandInput
|
|
15
|
+
extends EnableDefaultKeyReplicationRegionsInput {}
|
|
16
|
+
export interface EnableDefaultKeyReplicationRegionsCommandOutput
|
|
17
|
+
extends EnableDefaultKeyReplicationRegionsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const EnableDefaultKeyReplicationRegionsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: EnableDefaultKeyReplicationRegionsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
EnableDefaultKeyReplicationRegionsCommandInput,
|
|
24
|
+
EnableDefaultKeyReplicationRegionsCommandOutput,
|
|
25
|
+
PaymentCryptographyClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: EnableDefaultKeyReplicationRegionsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
EnableDefaultKeyReplicationRegionsCommandInput,
|
|
33
|
+
EnableDefaultKeyReplicationRegionsCommandOutput,
|
|
34
|
+
PaymentCryptographyClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class EnableDefaultKeyReplicationRegionsCommand extends EnableDefaultKeyReplicationRegionsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: EnableDefaultKeyReplicationRegionsInput;
|
|
44
|
+
output: EnableDefaultKeyReplicationRegionsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: EnableDefaultKeyReplicationRegionsCommandInput;
|
|
48
|
+
output: EnableDefaultKeyReplicationRegionsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetDefaultKeyReplicationRegionsInput,
|
|
5
|
+
GetDefaultKeyReplicationRegionsOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PaymentCryptographyClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PaymentCryptographyClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetDefaultKeyReplicationRegionsCommandInput
|
|
15
|
+
extends GetDefaultKeyReplicationRegionsInput {}
|
|
16
|
+
export interface GetDefaultKeyReplicationRegionsCommandOutput
|
|
17
|
+
extends GetDefaultKeyReplicationRegionsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetDefaultKeyReplicationRegionsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetDefaultKeyReplicationRegionsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetDefaultKeyReplicationRegionsCommandInput,
|
|
24
|
+
GetDefaultKeyReplicationRegionsCommandOutput,
|
|
25
|
+
PaymentCryptographyClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
...[input]: [] | [GetDefaultKeyReplicationRegionsCommandInput]
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetDefaultKeyReplicationRegionsCommandInput,
|
|
33
|
+
GetDefaultKeyReplicationRegionsCommandOutput,
|
|
34
|
+
PaymentCryptographyClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetDefaultKeyReplicationRegionsCommand extends GetDefaultKeyReplicationRegionsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: {};
|
|
44
|
+
output: GetDefaultKeyReplicationRegionsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetDefaultKeyReplicationRegionsCommandInput;
|
|
48
|
+
output: GetDefaultKeyReplicationRegionsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
RemoveKeyReplicationRegionsInput,
|
|
5
|
+
RemoveKeyReplicationRegionsOutput,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PaymentCryptographyClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PaymentCryptographyClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface RemoveKeyReplicationRegionsCommandInput
|
|
15
|
+
extends RemoveKeyReplicationRegionsInput {}
|
|
16
|
+
export interface RemoveKeyReplicationRegionsCommandOutput
|
|
17
|
+
extends RemoveKeyReplicationRegionsOutput,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const RemoveKeyReplicationRegionsCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: RemoveKeyReplicationRegionsCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
RemoveKeyReplicationRegionsCommandInput,
|
|
24
|
+
RemoveKeyReplicationRegionsCommandOutput,
|
|
25
|
+
PaymentCryptographyClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: RemoveKeyReplicationRegionsCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
RemoveKeyReplicationRegionsCommandInput,
|
|
33
|
+
RemoveKeyReplicationRegionsCommandOutput,
|
|
34
|
+
PaymentCryptographyClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class RemoveKeyReplicationRegionsCommand extends RemoveKeyReplicationRegionsCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: RemoveKeyReplicationRegionsInput;
|
|
44
|
+
output: RemoveKeyReplicationRegionsOutput;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: RemoveKeyReplicationRegionsCommandInput;
|
|
48
|
+
output: RemoveKeyReplicationRegionsCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -1,9 +1,13 @@
|
|
|
1
|
+
export * from "./AddKeyReplicationRegionsCommand";
|
|
1
2
|
export * from "./CreateAliasCommand";
|
|
2
3
|
export * from "./CreateKeyCommand";
|
|
3
4
|
export * from "./DeleteAliasCommand";
|
|
4
5
|
export * from "./DeleteKeyCommand";
|
|
6
|
+
export * from "./DisableDefaultKeyReplicationRegionsCommand";
|
|
7
|
+
export * from "./EnableDefaultKeyReplicationRegionsCommand";
|
|
5
8
|
export * from "./ExportKeyCommand";
|
|
6
9
|
export * from "./GetAliasCommand";
|
|
10
|
+
export * from "./GetDefaultKeyReplicationRegionsCommand";
|
|
7
11
|
export * from "./GetKeyCommand";
|
|
8
12
|
export * from "./GetParametersForExportCommand";
|
|
9
13
|
export * from "./GetParametersForImportCommand";
|
|
@@ -12,6 +16,7 @@ export * from "./ImportKeyCommand";
|
|
|
12
16
|
export * from "./ListAliasesCommand";
|
|
13
17
|
export * from "./ListKeysCommand";
|
|
14
18
|
export * from "./ListTagsForResourceCommand";
|
|
19
|
+
export * from "./RemoveKeyReplicationRegionsCommand";
|
|
15
20
|
export * from "./RestoreKeyCommand";
|
|
16
21
|
export * from "./StartKeyUsageCommand";
|
|
17
22
|
export * from "./StopKeyUsageCommand";
|