22import { createAggregatedClient } from "@smithy/smithy-client" ;
33import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types" ;
44
5+ import {
6+ AddKeyReplicationRegionsCommand ,
7+ AddKeyReplicationRegionsCommandInput ,
8+ AddKeyReplicationRegionsCommandOutput ,
9+ } from "./commands/AddKeyReplicationRegionsCommand" ;
510import { CreateAliasCommand , CreateAliasCommandInput , CreateAliasCommandOutput } from "./commands/CreateAliasCommand" ;
611import { CreateKeyCommand , CreateKeyCommandInput , CreateKeyCommandOutput } from "./commands/CreateKeyCommand" ;
712import { DeleteAliasCommand , DeleteAliasCommandInput , DeleteAliasCommandOutput } from "./commands/DeleteAliasCommand" ;
813import { DeleteKeyCommand , DeleteKeyCommandInput , DeleteKeyCommandOutput } from "./commands/DeleteKeyCommand" ;
14+ import {
15+ DisableDefaultKeyReplicationRegionsCommand ,
16+ DisableDefaultKeyReplicationRegionsCommandInput ,
17+ DisableDefaultKeyReplicationRegionsCommandOutput ,
18+ } from "./commands/DisableDefaultKeyReplicationRegionsCommand" ;
19+ import {
20+ EnableDefaultKeyReplicationRegionsCommand ,
21+ EnableDefaultKeyReplicationRegionsCommandInput ,
22+ EnableDefaultKeyReplicationRegionsCommandOutput ,
23+ } from "./commands/EnableDefaultKeyReplicationRegionsCommand" ;
924import { ExportKeyCommand , ExportKeyCommandInput , ExportKeyCommandOutput } from "./commands/ExportKeyCommand" ;
1025import { GetAliasCommand , GetAliasCommandInput , GetAliasCommandOutput } from "./commands/GetAliasCommand" ;
26+ import {
27+ GetDefaultKeyReplicationRegionsCommand ,
28+ GetDefaultKeyReplicationRegionsCommandInput ,
29+ GetDefaultKeyReplicationRegionsCommandOutput ,
30+ } from "./commands/GetDefaultKeyReplicationRegionsCommand" ;
1131import { GetKeyCommand , GetKeyCommandInput , GetKeyCommandOutput } from "./commands/GetKeyCommand" ;
1232import {
1333 GetParametersForExportCommand ,
@@ -32,6 +52,11 @@ import {
3252 ListTagsForResourceCommandInput ,
3353 ListTagsForResourceCommandOutput ,
3454} from "./commands/ListTagsForResourceCommand" ;
55+ import {
56+ RemoveKeyReplicationRegionsCommand ,
57+ RemoveKeyReplicationRegionsCommandInput ,
58+ RemoveKeyReplicationRegionsCommandOutput ,
59+ } from "./commands/RemoveKeyReplicationRegionsCommand" ;
3560import { RestoreKeyCommand , RestoreKeyCommandInput , RestoreKeyCommandOutput } from "./commands/RestoreKeyCommand" ;
3661import {
3762 StartKeyUsageCommand ,
@@ -53,12 +78,16 @@ import { UpdateAliasCommand, UpdateAliasCommandInput, UpdateAliasCommandOutput }
5378import { PaymentCryptographyClient , PaymentCryptographyClientConfig } from "./PaymentCryptographyClient" ;
5479
5580const commands = {
81+ AddKeyReplicationRegionsCommand,
5682 CreateAliasCommand,
5783 CreateKeyCommand,
5884 DeleteAliasCommand,
5985 DeleteKeyCommand,
86+ DisableDefaultKeyReplicationRegionsCommand,
87+ EnableDefaultKeyReplicationRegionsCommand,
6088 ExportKeyCommand,
6189 GetAliasCommand,
90+ GetDefaultKeyReplicationRegionsCommand,
6291 GetKeyCommand,
6392 GetParametersForExportCommand,
6493 GetParametersForImportCommand,
@@ -67,6 +96,7 @@ const commands = {
6796 ListAliasesCommand,
6897 ListKeysCommand,
6998 ListTagsForResourceCommand,
99+ RemoveKeyReplicationRegionsCommand,
70100 RestoreKeyCommand,
71101 StartKeyUsageCommand,
72102 StopKeyUsageCommand,
@@ -76,6 +106,23 @@ const commands = {
76106} ;
77107
78108export interface PaymentCryptography {
109+ /**
110+ * @see {@link AddKeyReplicationRegionsCommand }
111+ */
112+ addKeyReplicationRegions (
113+ args : AddKeyReplicationRegionsCommandInput ,
114+ options ?: __HttpHandlerOptions
115+ ) : Promise < AddKeyReplicationRegionsCommandOutput > ;
116+ addKeyReplicationRegions (
117+ args : AddKeyReplicationRegionsCommandInput ,
118+ cb : ( err : any , data ?: AddKeyReplicationRegionsCommandOutput ) => void
119+ ) : void ;
120+ addKeyReplicationRegions (
121+ args : AddKeyReplicationRegionsCommandInput ,
122+ options : __HttpHandlerOptions ,
123+ cb : ( err : any , data ?: AddKeyReplicationRegionsCommandOutput ) => void
124+ ) : void ;
125+
79126 /**
80127 * @see {@link CreateAliasCommand }
81128 */
@@ -120,6 +167,40 @@ export interface PaymentCryptography {
120167 cb : ( err : any , data ?: DeleteKeyCommandOutput ) => void
121168 ) : void ;
122169
170+ /**
171+ * @see {@link DisableDefaultKeyReplicationRegionsCommand }
172+ */
173+ disableDefaultKeyReplicationRegions (
174+ args : DisableDefaultKeyReplicationRegionsCommandInput ,
175+ options ?: __HttpHandlerOptions
176+ ) : Promise < DisableDefaultKeyReplicationRegionsCommandOutput > ;
177+ disableDefaultKeyReplicationRegions (
178+ args : DisableDefaultKeyReplicationRegionsCommandInput ,
179+ cb : ( err : any , data ?: DisableDefaultKeyReplicationRegionsCommandOutput ) => void
180+ ) : void ;
181+ disableDefaultKeyReplicationRegions (
182+ args : DisableDefaultKeyReplicationRegionsCommandInput ,
183+ options : __HttpHandlerOptions ,
184+ cb : ( err : any , data ?: DisableDefaultKeyReplicationRegionsCommandOutput ) => void
185+ ) : void ;
186+
187+ /**
188+ * @see {@link EnableDefaultKeyReplicationRegionsCommand }
189+ */
190+ enableDefaultKeyReplicationRegions (
191+ args : EnableDefaultKeyReplicationRegionsCommandInput ,
192+ options ?: __HttpHandlerOptions
193+ ) : Promise < EnableDefaultKeyReplicationRegionsCommandOutput > ;
194+ enableDefaultKeyReplicationRegions (
195+ args : EnableDefaultKeyReplicationRegionsCommandInput ,
196+ cb : ( err : any , data ?: EnableDefaultKeyReplicationRegionsCommandOutput ) => void
197+ ) : void ;
198+ enableDefaultKeyReplicationRegions (
199+ args : EnableDefaultKeyReplicationRegionsCommandInput ,
200+ options : __HttpHandlerOptions ,
201+ cb : ( err : any , data ?: EnableDefaultKeyReplicationRegionsCommandOutput ) => void
202+ ) : void ;
203+
123204 /**
124205 * @see {@link ExportKeyCommand }
125206 */
@@ -142,6 +223,24 @@ export interface PaymentCryptography {
142223 cb : ( err : any , data ?: GetAliasCommandOutput ) => void
143224 ) : void ;
144225
226+ /**
227+ * @see {@link GetDefaultKeyReplicationRegionsCommand }
228+ */
229+ getDefaultKeyReplicationRegions ( ) : Promise < GetDefaultKeyReplicationRegionsCommandOutput > ;
230+ getDefaultKeyReplicationRegions (
231+ args : GetDefaultKeyReplicationRegionsCommandInput ,
232+ options ?: __HttpHandlerOptions
233+ ) : Promise < GetDefaultKeyReplicationRegionsCommandOutput > ;
234+ getDefaultKeyReplicationRegions (
235+ args : GetDefaultKeyReplicationRegionsCommandInput ,
236+ cb : ( err : any , data ?: GetDefaultKeyReplicationRegionsCommandOutput ) => void
237+ ) : void ;
238+ getDefaultKeyReplicationRegions (
239+ args : GetDefaultKeyReplicationRegionsCommandInput ,
240+ options : __HttpHandlerOptions ,
241+ cb : ( err : any , data ?: GetDefaultKeyReplicationRegionsCommandOutput ) => void
242+ ) : void ;
243+
145244 /**
146245 * @see {@link GetKeyCommand }
147246 */
@@ -256,6 +355,23 @@ export interface PaymentCryptography {
256355 cb : ( err : any , data ?: ListTagsForResourceCommandOutput ) => void
257356 ) : void ;
258357
358+ /**
359+ * @see {@link RemoveKeyReplicationRegionsCommand }
360+ */
361+ removeKeyReplicationRegions (
362+ args : RemoveKeyReplicationRegionsCommandInput ,
363+ options ?: __HttpHandlerOptions
364+ ) : Promise < RemoveKeyReplicationRegionsCommandOutput > ;
365+ removeKeyReplicationRegions (
366+ args : RemoveKeyReplicationRegionsCommandInput ,
367+ cb : ( err : any , data ?: RemoveKeyReplicationRegionsCommandOutput ) => void
368+ ) : void ;
369+ removeKeyReplicationRegions (
370+ args : RemoveKeyReplicationRegionsCommandInput ,
371+ options : __HttpHandlerOptions ,
372+ cb : ( err : any , data ?: RemoveKeyReplicationRegionsCommandOutput ) => void
373+ ) : void ;
374+
259375 /**
260376 * @see {@link RestoreKeyCommand }
261377 */
0 commit comments