@sphereon/ssi-sdk.kms-rest-client 0.34.1-feature.SSISDK.44.finish.dcql.310 → 0.34.1-feature.SSISDK.44.finish.dcql.313

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.
@@ -2,7 +2,7 @@
2
2
  "IKmsRestClient": {
3
3
  "components": {
4
4
  "schemas": {
5
- "KmsCreateRawSignatureArgs": {
5
+ "KmsClientCreateRawSignatureArgs": {
6
6
  "type": "object",
7
7
  "additionalProperties": false,
8
8
  "properties": {
@@ -16,7 +16,10 @@
16
16
  "type": "string"
17
17
  }
18
18
  },
19
- "required": ["input", "keyInfo"]
19
+ "required": [
20
+ "input",
21
+ "keyInfo"
22
+ ]
20
23
  },
21
24
  "KeyInfo": {
22
25
  "type": "object",
@@ -157,28 +160,56 @@
157
160
  "description": "X.509 certificate SHA-256 thumbprint (base64url-encoded)."
158
161
  }
159
162
  },
160
- "required": ["kty"],
163
+ "required": [
164
+ "kty"
165
+ ],
161
166
  "additionalProperties": false,
162
167
  "description": "Represents a JSON Web Key (JWK) as defined by the JSON Web Key specification."
163
168
  },
164
169
  "JwkKeyType": {
165
170
  "type": "string",
166
- "enum": ["EC", "RSA", "OKP", "oct"],
171
+ "enum": [
172
+ "EC",
173
+ "RSA",
174
+ "OKP",
175
+ "oct"
176
+ ],
167
177
  "description": "JSON Web Key (JWK) key type parameter identifying the cryptographic algorithm family."
168
178
  },
169
179
  "JwkUse": {
170
180
  "type": "string",
171
- "enum": ["sig", "enc"],
181
+ "enum": [
182
+ "sig",
183
+ "enc"
184
+ ],
172
185
  "description": "Intended use of the key (signing or encryption)."
173
186
  },
174
187
  "KeyOperations": {
175
188
  "type": "string",
176
- "enum": ["sign", "verify", "encrypt", "decrypt", "wrapKey", "unwrapKey", "deriveKey", "deriveBits"],
189
+ "enum": [
190
+ "sign",
191
+ "verify",
192
+ "encrypt",
193
+ "decrypt",
194
+ "wrapKey",
195
+ "unwrapKey",
196
+ "deriveKey",
197
+ "deriveBits"
198
+ ],
177
199
  "description": "Specific operations the key is intended for."
178
200
  },
179
201
  "Curve": {
180
202
  "type": "string",
181
- "enum": ["P-256", "P-384", "P-521", "secp256k1", "Ed25519", "Ed448", "X25519", "X448"],
203
+ "enum": [
204
+ "P-256",
205
+ "P-384",
206
+ "P-521",
207
+ "secp256k1",
208
+ "Ed25519",
209
+ "Ed448",
210
+ "X25519",
211
+ "X448"
212
+ ],
182
213
  "description": "Elliptic curve identifier."
183
214
  },
184
215
  "SignatureAlgorithm": {
@@ -201,17 +232,27 @@
201
232
  },
202
233
  "KeyVisibility": {
203
234
  "type": "string",
204
- "enum": ["PUBLIC", "PRIVATE"],
235
+ "enum": [
236
+ "PUBLIC",
237
+ "PRIVATE"
238
+ ],
205
239
  "description": "Indicates the visibility status of a cryptographic key."
206
240
  },
207
241
  "KeyType": {
208
242
  "type": "string",
209
- "enum": ["OKP", "EC", "RSA"],
243
+ "enum": [
244
+ "OKP",
245
+ "EC",
246
+ "RSA"
247
+ ],
210
248
  "description": "Cryptographic key type identifier."
211
249
  },
212
250
  "KeyEncoding": {
213
251
  "type": "string",
214
- "enum": ["COSE", "JOSE"],
252
+ "enum": [
253
+ "COSE",
254
+ "JOSE"
255
+ ],
215
256
  "description": "The encoding format of the cryptographic key."
216
257
  },
217
258
  "CreateRawSignatureResponse": {
@@ -222,11 +263,13 @@
222
263
  "description": "The created signature encoded as a base64 string."
223
264
  }
224
265
  },
225
- "required": ["signature"],
266
+ "required": [
267
+ "signature"
268
+ ],
226
269
  "additionalProperties": false,
227
270
  "description": "Response body containing the created signature."
228
271
  },
229
- "KmsDeleteKeyArgs": {
272
+ "KmsClientDeleteKeyArgs": {
230
273
  "type": "object",
231
274
  "properties": {
232
275
  "baseUrl": {
@@ -236,9 +279,12 @@
236
279
  "type": "string"
237
280
  }
238
281
  },
282
+ "required": [
283
+ "aliasOrKid"
284
+ ],
239
285
  "additionalProperties": false
240
286
  },
241
- "KmsGenerateKeyArgs": {
287
+ "KmsClientGenerateKeyArgs": {
242
288
  "type": "object",
243
289
  "additionalProperties": false,
244
290
  "properties": {
@@ -267,6 +313,19 @@
267
313
  }
268
314
  }
269
315
  },
316
+ "GenerateKeyResponse": {
317
+ "type": "object",
318
+ "properties": {
319
+ "keyPair": {
320
+ "$ref": "#/components/schemas/ManagedKeyPair"
321
+ }
322
+ },
323
+ "required": [
324
+ "keyPair"
325
+ ],
326
+ "additionalProperties": false,
327
+ "description": "Response body containing a generated key pair."
328
+ },
270
329
  "ManagedKeyPair": {
271
330
  "type": "object",
272
331
  "properties": {
@@ -289,7 +348,12 @@
289
348
  "$ref": "#/components/schemas/JoseKeyPair"
290
349
  }
291
350
  },
292
- "required": ["providerId", "alias", "cose", "jose"],
351
+ "required": [
352
+ "providerId",
353
+ "alias",
354
+ "cose",
355
+ "jose"
356
+ ],
293
357
  "additionalProperties": false,
294
358
  "description": "Represents a key pair used by a crypto provider, encapsulating both JOSE and COSE key pairs."
295
359
  },
@@ -303,7 +367,9 @@
303
367
  "$ref": "#/components/schemas/CoseKey"
304
368
  }
305
369
  },
306
- "required": ["publicCoseKey"],
370
+ "required": [
371
+ "publicCoseKey"
372
+ ],
307
373
  "additionalProperties": false,
308
374
  "description": "Represents a cryptographic key pair for COSE (CBOR Object Signing and Encryption) operations."
309
375
  },
@@ -356,13 +422,20 @@
356
422
  "description": "X.509 certificate chain as base64-encoded certificates."
357
423
  }
358
424
  },
359
- "required": ["kty"],
425
+ "required": [
426
+ "kty"
427
+ ],
360
428
  "additionalProperties": false,
361
429
  "description": "Represents a COSE (CBOR Object Signing and Encryption) key in JSON format."
362
430
  },
363
431
  "CoseKeyType": {
364
432
  "type": "number",
365
- "enum": [1, 2, 3, 4],
433
+ "enum": [
434
+ 1,
435
+ 2,
436
+ 3,
437
+ 4
438
+ ],
366
439
  "description": "COSE key type parameter. 1=OKP (Octet Key Pair), 2=EC2 (Elliptic Curve), 3=RSA, 4=Symmetric."
367
440
  },
368
441
  "JoseKeyPair": {
@@ -375,11 +448,13 @@
375
448
  "$ref": "#/components/schemas/Jwk"
376
449
  }
377
450
  },
378
- "required": ["publicJwk"],
451
+ "required": [
452
+ "publicJwk"
453
+ ],
379
454
  "additionalProperties": false,
380
455
  "description": "Data class representing a cryptographic key pair used with JOSE (JSON Object Signing and Encryption)."
381
456
  },
382
- "KmsGetKeyArgs": {
457
+ "KmsClientGetKeyArgs": {
383
458
  "type": "object",
384
459
  "properties": {
385
460
  "baseUrl": {
@@ -389,9 +464,24 @@
389
464
  "type": "string"
390
465
  }
391
466
  },
392
- "required": ["aliasOrKid"],
467
+ "required": [
468
+ "aliasOrKid"
469
+ ],
393
470
  "additionalProperties": false
394
471
  },
472
+ "GetKeyResponse": {
473
+ "type": "object",
474
+ "properties": {
475
+ "keyInfo": {
476
+ "$ref": "#/components/schemas/ManagedKeyInfo"
477
+ }
478
+ },
479
+ "required": [
480
+ "keyInfo"
481
+ ],
482
+ "additionalProperties": false,
483
+ "description": "Response body containing a managed key."
484
+ },
395
485
  "ManagedKeyInfo": {
396
486
  "type": "object",
397
487
  "properties": {
@@ -437,11 +527,15 @@
437
527
  "description": "Additional configuration options as key-value pairs."
438
528
  }
439
529
  },
440
- "required": ["key", "alias", "providerId"],
530
+ "required": [
531
+ "key",
532
+ "alias",
533
+ "providerId"
534
+ ],
441
535
  "additionalProperties": false,
442
536
  "description": "Represents a managed cryptographic key information that is guaranteed to be present and resolved, part of a KMS providing concrete access to the key."
443
537
  },
444
- "KmsGetKeyProviderArgs": {
538
+ "KmsClientGetKeyProviderArgs": {
445
539
  "type": "object",
446
540
  "properties": {
447
541
  "baseUrl": {
@@ -451,6 +545,9 @@
451
545
  "type": "string"
452
546
  }
453
547
  },
548
+ "required": [
549
+ "providerId"
550
+ ],
454
551
  "additionalProperties": false
455
552
  },
456
553
  "KeyProviderResponse": {
@@ -464,16 +561,23 @@
464
561
  "$ref": "#/components/schemas/KeyProviderType"
465
562
  }
466
563
  },
467
- "required": ["providerId", "type"],
564
+ "required": [
565
+ "providerId",
566
+ "type"
567
+ ],
468
568
  "additionalProperties": false,
469
569
  "description": "Response body containing the details of a Key Provider instance."
470
570
  },
471
571
  "KeyProviderType": {
472
572
  "type": "string",
473
- "enum": ["SOFTWARE", "AZURE_KEYVAULT", "AWS_KMS"],
573
+ "enum": [
574
+ "SOFTWARE",
575
+ "AZURE_KEYVAULT",
576
+ "AWS_KMS"
577
+ ],
474
578
  "description": "The type of Key Provider. Determines the required configuration settings. - AZURE_KEYVAULT: Microsoft Azure Key Vault or Managed HSM. - AWS_KMS: Amazon Web Services Key Management Service."
475
579
  },
476
- "kmsGetResolverArgs": {
580
+ "kmsClientGetResolverArgs": {
477
581
  "type": "object",
478
582
  "properties": {
479
583
  "baseUrl": {
@@ -483,7 +587,9 @@
483
587
  "type": "string"
484
588
  }
485
589
  },
486
- "required": ["resolverId"],
590
+ "required": [
591
+ "resolverId"
592
+ ],
487
593
  "additionalProperties": false
488
594
  },
489
595
  "Resolver": {
@@ -508,16 +614,24 @@
508
614
  "description": "List of key types supported by this resolver."
509
615
  }
510
616
  },
511
- "required": ["resolverId"],
617
+ "required": [
618
+ "resolverId"
619
+ ],
512
620
  "additionalProperties": false,
513
621
  "description": "Represents a key resolver configuration."
514
622
  },
515
623
  "IdentifierMethod": {
516
624
  "type": "string",
517
- "enum": ["JWK", "KID", "COSE_KEY", "X5C", "DID"],
625
+ "enum": [
626
+ "JWK",
627
+ "KID",
628
+ "COSE_KEY",
629
+ "X5C",
630
+ "DID"
631
+ ],
518
632
  "description": "Method used to identify cryptographic keys."
519
633
  },
520
- "KmsIsValidRawSignatureArgs": {
634
+ "KmsClientIsValidRawSignatureArgs": {
521
635
  "type": "object",
522
636
  "additionalProperties": false,
523
637
  "properties": {
@@ -534,7 +648,11 @@
534
648
  "type": "string"
535
649
  }
536
650
  },
537
- "required": ["input", "keyInfo", "signature"]
651
+ "required": [
652
+ "input",
653
+ "keyInfo",
654
+ "signature"
655
+ ]
538
656
  },
539
657
  "VerifyRawSignatureResponse": {
540
658
  "type": "object",
@@ -544,11 +662,13 @@
544
662
  "description": "Indicates whether the signature is valid or not."
545
663
  }
546
664
  },
547
- "required": ["isValid"],
665
+ "required": [
666
+ "isValid"
667
+ ],
548
668
  "additionalProperties": false,
549
669
  "description": "Response body containing the details of the signature verification."
550
670
  },
551
- "KmsListKeyProvidersArgs": {
671
+ "KmsClientListKeyProvidersArgs": {
552
672
  "type": "object",
553
673
  "properties": {
554
674
  "baseUrl": {
@@ -567,7 +687,9 @@
567
687
  }
568
688
  }
569
689
  },
570
- "required": ["providers"],
690
+ "required": [
691
+ "providers"
692
+ ],
571
693
  "additionalProperties": false,
572
694
  "description": "Response body containing the details of a Key Provider instance."
573
695
  },
@@ -582,11 +704,14 @@
582
704
  "$ref": "#/components/schemas/KeyProviderType"
583
705
  }
584
706
  },
585
- "required": ["providerId", "type"],
707
+ "required": [
708
+ "providerId",
709
+ "type"
710
+ ],
586
711
  "additionalProperties": false,
587
712
  "description": "Response body containing the details of a Key Provider instance."
588
713
  },
589
- "KmsListKeysArgs": {
714
+ "KmsClientListKeysArgs": {
590
715
  "type": "object",
591
716
  "properties": {
592
717
  "baseUrl": {
@@ -608,11 +733,13 @@
608
733
  }
609
734
  }
610
735
  },
611
- "required": ["keyInfos"],
736
+ "required": [
737
+ "keyInfos"
738
+ ],
612
739
  "additionalProperties": false,
613
740
  "description": "Response body containing all the managed keys."
614
741
  },
615
- "KmsListResolversArgs": {
742
+ "KmsClientListResolversArgs": {
616
743
  "type": "object",
617
744
  "properties": {
618
745
  "baseUrl": {
@@ -631,11 +758,13 @@
631
758
  }
632
759
  }
633
760
  },
634
- "required": ["resolvers"],
761
+ "required": [
762
+ "resolvers"
763
+ ],
635
764
  "additionalProperties": false,
636
765
  "description": "Response body containing all the resolvers."
637
766
  },
638
- "KmsProviderDeleteKeyArgs": {
767
+ "KmsClientProviderDeleteKeyArgs": {
639
768
  "type": "object",
640
769
  "properties": {
641
770
  "baseUrl": {
@@ -648,10 +777,13 @@
648
777
  "type": "string"
649
778
  }
650
779
  },
651
- "required": ["providerId", "aliasOrKid"],
780
+ "required": [
781
+ "providerId",
782
+ "aliasOrKid"
783
+ ],
652
784
  "additionalProperties": false
653
785
  },
654
- "KmsProviderGenerateKey": {
786
+ "KmsClientProviderGenerateKeyArgs": {
655
787
  "type": "object",
656
788
  "additionalProperties": false,
657
789
  "properties": {
@@ -678,9 +810,11 @@
678
810
  "type": "string"
679
811
  }
680
812
  },
681
- "required": ["providerId"]
813
+ "required": [
814
+ "providerId"
815
+ ]
682
816
  },
683
- "KmsProviderGetKeyArgs": {
817
+ "KmsClientProviderGetKeyArgs": {
684
818
  "type": "object",
685
819
  "properties": {
686
820
  "baseUrl": {
@@ -693,10 +827,13 @@
693
827
  "type": "string"
694
828
  }
695
829
  },
696
- "required": ["providerId", "aliasOrKid"],
830
+ "required": [
831
+ "providerId",
832
+ "aliasOrKid"
833
+ ],
697
834
  "additionalProperties": false
698
835
  },
699
- "KmsProviderListKeysArgs": {
836
+ "KmsClientProviderListKeysArgs": {
700
837
  "type": "object",
701
838
  "properties": {
702
839
  "baseUrl": {
@@ -706,10 +843,12 @@
706
843
  "type": "string"
707
844
  }
708
845
  },
709
- "required": ["providerId"],
846
+ "required": [
847
+ "providerId"
848
+ ],
710
849
  "additionalProperties": false
711
850
  },
712
- "KmsProviderStoreKey": {
851
+ "KmsClientProviderStoreKeyArgs": {
713
852
  "type": "object",
714
853
  "additionalProperties": false,
715
854
  "properties": {
@@ -730,7 +869,10 @@
730
869
  "type": "string"
731
870
  }
732
871
  },
733
- "required": ["keyInfo", "providerId"]
872
+ "required": [
873
+ "keyInfo",
874
+ "providerId"
875
+ ]
734
876
  },
735
877
  "ResolvedKeyInfo": {
736
878
  "type": "object",
@@ -777,11 +919,26 @@
777
919
  "description": "Additional configuration options as key-value pairs."
778
920
  }
779
921
  },
780
- "required": ["key"],
922
+ "required": [
923
+ "key"
924
+ ],
781
925
  "additionalProperties": false,
782
926
  "description": "Represents a resolved cryptographic key information where the key is guaranteed to be present and resolved, providing concrete access to the key."
783
927
  },
784
- "KmsResolveKeyArgs": {
928
+ "StoreKeyResponse": {
929
+ "type": "object",
930
+ "properties": {
931
+ "keyInfo": {
932
+ "$ref": "#/components/schemas/ManagedKeyInfo"
933
+ }
934
+ },
935
+ "required": [
936
+ "keyInfo"
937
+ ],
938
+ "additionalProperties": false,
939
+ "description": "Response body containing a stored key."
940
+ },
941
+ "KmsClientResolveKeyArgs": {
785
942
  "type": "object",
786
943
  "additionalProperties": false,
787
944
  "properties": {
@@ -809,7 +966,10 @@
809
966
  "$ref": "#/components/schemas/String"
810
967
  }
811
968
  },
812
- "required": ["keyInfo", "resolverId"]
969
+ "required": [
970
+ "keyInfo",
971
+ "resolverId"
972
+ ]
813
973
  },
814
974
  "String": {
815
975
  "type": "object",
@@ -818,12 +978,14 @@
818
978
  "type": "number"
819
979
  }
820
980
  },
821
- "required": ["length"],
981
+ "required": [
982
+ "length"
983
+ ],
822
984
  "additionalProperties": {
823
985
  "type": "string"
824
986
  }
825
987
  },
826
- "KmsStoreKeyArgs": {
988
+ "KmsClientStoreKeyArgs": {
827
989
  "type": "object",
828
990
  "additionalProperties": false,
829
991
  "properties": {
@@ -841,164 +1003,166 @@
841
1003
  "type": "string"
842
1004
  }
843
1005
  },
844
- "required": ["keyInfo"]
1006
+ "required": [
1007
+ "keyInfo"
1008
+ ]
845
1009
  }
846
1010
  },
847
1011
  "methods": {
848
- "kmsCreateRawSignature": {
1012
+ "kmsClientCreateRawSignature": {
849
1013
  "description": "",
850
1014
  "arguments": {
851
- "$ref": "#/components/schemas/KmsCreateRawSignatureArgs"
1015
+ "$ref": "#/components/schemas/KmsClientCreateRawSignatureArgs"
852
1016
  },
853
1017
  "returnType": {
854
1018
  "$ref": "#/components/schemas/CreateRawSignatureResponse"
855
1019
  }
856
1020
  },
857
- "kmsDeleteKey": {
1021
+ "kmsClientDeleteKey": {
858
1022
  "description": "",
859
1023
  "arguments": {
860
- "$ref": "#/components/schemas/KmsDeleteKeyArgs"
1024
+ "$ref": "#/components/schemas/KmsClientDeleteKeyArgs"
861
1025
  },
862
1026
  "returnType": {
863
1027
  "type": "boolean"
864
1028
  }
865
1029
  },
866
- "kmsGenerateKey": {
1030
+ "kmsClientGenerateKey": {
867
1031
  "description": "",
868
1032
  "arguments": {
869
- "$ref": "#/components/schemas/KmsGenerateKeyArgs"
1033
+ "$ref": "#/components/schemas/KmsClientGenerateKeyArgs"
870
1034
  },
871
1035
  "returnType": {
872
- "$ref": "#/components/schemas/ManagedKeyPair"
1036
+ "$ref": "#/components/schemas/GenerateKeyResponse"
873
1037
  }
874
1038
  },
875
- "kmsGetKey": {
1039
+ "kmsClientGetKey": {
876
1040
  "description": "",
877
1041
  "arguments": {
878
- "$ref": "#/components/schemas/KmsGetKeyArgs"
1042
+ "$ref": "#/components/schemas/KmsClientGetKeyArgs"
879
1043
  },
880
1044
  "returnType": {
881
- "$ref": "#/components/schemas/ManagedKeyInfo"
1045
+ "$ref": "#/components/schemas/GetKeyResponse"
882
1046
  }
883
1047
  },
884
- "kmsGetKeyProvider": {
1048
+ "kmsClientGetKeyProvider": {
885
1049
  "description": "",
886
1050
  "arguments": {
887
- "$ref": "#/components/schemas/KmsGetKeyProviderArgs"
1051
+ "$ref": "#/components/schemas/KmsClientGetKeyProviderArgs"
888
1052
  },
889
1053
  "returnType": {
890
1054
  "$ref": "#/components/schemas/KeyProviderResponse"
891
1055
  }
892
1056
  },
893
- "kmsGetResolver": {
1057
+ "kmsClientGetResolver": {
894
1058
  "description": "",
895
1059
  "arguments": {
896
- "$ref": "#/components/schemas/kmsGetResolverArgs"
1060
+ "$ref": "#/components/schemas/kmsClientGetResolverArgs"
897
1061
  },
898
1062
  "returnType": {
899
1063
  "$ref": "#/components/schemas/Resolver"
900
1064
  }
901
1065
  },
902
- "kmsIsValidRawSignature": {
1066
+ "kmsClientIsValidRawSignature": {
903
1067
  "description": "",
904
1068
  "arguments": {
905
- "$ref": "#/components/schemas/KmsIsValidRawSignatureArgs"
1069
+ "$ref": "#/components/schemas/KmsClientIsValidRawSignatureArgs"
906
1070
  },
907
1071
  "returnType": {
908
1072
  "$ref": "#/components/schemas/VerifyRawSignatureResponse"
909
1073
  }
910
1074
  },
911
- "kmsListKeyProviders": {
1075
+ "kmsClientListKeyProviders": {
912
1076
  "description": "",
913
1077
  "arguments": {
914
- "$ref": "#/components/schemas/KmsListKeyProvidersArgs"
1078
+ "$ref": "#/components/schemas/KmsClientListKeyProvidersArgs"
915
1079
  },
916
1080
  "returnType": {
917
1081
  "$ref": "#/components/schemas/ListKeyProvidersResponse"
918
1082
  }
919
1083
  },
920
- "kmsListKeys": {
1084
+ "kmsClientListKeys": {
921
1085
  "description": "",
922
1086
  "arguments": {
923
- "$ref": "#/components/schemas/KmsListKeysArgs"
1087
+ "$ref": "#/components/schemas/KmsClientListKeysArgs"
924
1088
  },
925
1089
  "returnType": {
926
1090
  "$ref": "#/components/schemas/ListKeysResponse"
927
1091
  }
928
1092
  },
929
- "kmsListResolvers": {
1093
+ "kmsClientListResolvers": {
930
1094
  "description": "",
931
1095
  "arguments": {
932
- "$ref": "#/components/schemas/KmsListResolversArgs"
1096
+ "$ref": "#/components/schemas/KmsClientListResolversArgs"
933
1097
  },
934
1098
  "returnType": {
935
1099
  "$ref": "#/components/schemas/ListResolversResponse"
936
1100
  }
937
1101
  },
938
- "kmsProviderDeleteKey": {
1102
+ "kmsClientProviderDeleteKey": {
939
1103
  "description": "",
940
1104
  "arguments": {
941
- "$ref": "#/components/schemas/KmsProviderDeleteKeyArgs"
1105
+ "$ref": "#/components/schemas/KmsClientProviderDeleteKeyArgs"
942
1106
  },
943
1107
  "returnType": {
944
1108
  "type": "boolean"
945
1109
  }
946
1110
  },
947
- "kmsProviderGenerateKey": {
1111
+ "kmsClientProviderGenerateKey": {
948
1112
  "description": "",
949
1113
  "arguments": {
950
- "$ref": "#/components/schemas/KmsProviderGenerateKey"
1114
+ "$ref": "#/components/schemas/KmsClientProviderGenerateKeyArgs"
951
1115
  },
952
1116
  "returnType": {
953
- "$ref": "#/components/schemas/ManagedKeyPair"
1117
+ "$ref": "#/components/schemas/GenerateKeyResponse"
954
1118
  }
955
1119
  },
956
- "kmsProviderGetKey": {
1120
+ "kmsClientProviderGetKey": {
957
1121
  "description": "",
958
1122
  "arguments": {
959
- "$ref": "#/components/schemas/KmsProviderGetKeyArgs"
1123
+ "$ref": "#/components/schemas/KmsClientProviderGetKeyArgs"
960
1124
  },
961
1125
  "returnType": {
962
- "$ref": "#/components/schemas/ManagedKeyInfo"
1126
+ "$ref": "#/components/schemas/GetKeyResponse"
963
1127
  }
964
1128
  },
965
- "kmsProviderListKeys": {
1129
+ "kmsClientProviderListKeys": {
966
1130
  "description": "",
967
1131
  "arguments": {
968
- "$ref": "#/components/schemas/KmsProviderListKeysArgs"
1132
+ "$ref": "#/components/schemas/KmsClientProviderListKeysArgs"
969
1133
  },
970
1134
  "returnType": {
971
1135
  "$ref": "#/components/schemas/ListKeysResponse"
972
1136
  }
973
1137
  },
974
- "kmsProviderStoreKey": {
1138
+ "kmsClientProviderStoreKey": {
975
1139
  "description": "",
976
1140
  "arguments": {
977
- "$ref": "#/components/schemas/KmsProviderStoreKey"
1141
+ "$ref": "#/components/schemas/KmsClientProviderStoreKeyArgs"
978
1142
  },
979
1143
  "returnType": {
980
- "$ref": "#/components/schemas/ManagedKeyInfo"
1144
+ "$ref": "#/components/schemas/StoreKeyResponse"
981
1145
  }
982
1146
  },
983
- "kmsResolveKey": {
1147
+ "kmsClientResolveKey": {
984
1148
  "description": "",
985
1149
  "arguments": {
986
- "$ref": "#/components/schemas/KmsResolveKeyArgs"
1150
+ "$ref": "#/components/schemas/KmsClientResolveKeyArgs"
987
1151
  },
988
1152
  "returnType": {
989
1153
  "$ref": "#/components/schemas/ResolvedKeyInfo"
990
1154
  }
991
1155
  },
992
- "kmsStoreKey": {
1156
+ "kmsClientStoreKey": {
993
1157
  "description": "",
994
1158
  "arguments": {
995
- "$ref": "#/components/schemas/KmsStoreKeyArgs"
1159
+ "$ref": "#/components/schemas/KmsClientStoreKeyArgs"
996
1160
  },
997
1161
  "returnType": {
998
- "$ref": "#/components/schemas/ManagedKeyInfo"
1162
+ "$ref": "#/components/schemas/StoreKeyResponse"
999
1163
  }
1000
1164
  }
1001
1165
  }
1002
1166
  }
1003
1167
  }
1004
- }
1168
+ }