-
Notifications
You must be signed in to change notification settings - Fork 5.1k
/
keys.json
2048 lines (2048 loc) · 69.8 KB
/
keys.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"swagger": "2.0",
"info": {
"title": "KeyVaultClient",
"description": "The key vault client performs cryptographic key operations and vault operations against the Key Vault service.",
"version": "7.3-preview"
},
"x-ms-parameterized-host": {
"hostTemplate": "{vaultBaseUrl}",
"useSchemePrefix": false,
"positionInOperation": "first",
"parameters": [
{
"name": "vaultBaseUrl",
"description": "The vault name, for example https://myvault.vault.azure.net.",
"required": true,
"type": "string",
"in": "path",
"x-ms-skip-url-encoding": true
}
]
},
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"paths": {
"/keys/{key-name}/create": {
"post": {
"tags": [
"Keys"
],
"operationId": "CreateKey",
"summary": "Creates a new key, stores it, then returns key parameters and attributes to the client.",
"description": "The create key operation can be used to create any key type in Azure Key Vault. If the named key already exists, Azure Key Vault creates a new version of the key. It requires the keys/create permission.",
"parameters": [
{
"name": "key-name",
"in": "path",
"required": true,
"type": "string",
"pattern": "^[0-9a-zA-Z-]+$",
"description": "The name for the new key. The system will generate the version name for the new key."
},
{
"name": "parameters",
"in": "body",
"required": true,
"x-ms-client-flatten": true,
"schema": {
"$ref": "#/definitions/KeyCreateParameters"
},
"description": "The parameters to create a key."
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "A key bundle containing the result of the create key request.",
"schema": {
"$ref": "#/definitions/KeyBundle"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-examples": {
"Create key": {
"$ref": "./examples/CreateKey-example.json"
}
}
}
},
"/keys/{key-name}": {
"put": {
"tags": [
"Keys"
],
"operationId": "ImportKey",
"summary": "Imports an externally created key, stores it, and returns key parameters and attributes to the client.",
"description": "The import key operation may be used to import any key type into an Azure Key Vault. If the named key already exists, Azure Key Vault creates a new version of the key. This operation requires the keys/import permission.",
"parameters": [
{
"name": "key-name",
"in": "path",
"required": true,
"type": "string",
"pattern": "^[0-9a-zA-Z-]+$",
"description": "Name for the imported key."
},
{
"name": "parameters",
"in": "body",
"required": true,
"x-ms-client-flatten": true,
"schema": {
"$ref": "#/definitions/KeyImportParameters"
},
"description": "The parameters to import a key."
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "Imported key bundle to the vault.",
"schema": {
"$ref": "#/definitions/KeyBundle"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-examples": {
"Import key": {
"$ref": "./examples/ImportKey-example.json"
}
}
},
"delete": {
"tags": [
"Keys"
],
"operationId": "DeleteKey",
"summary": "Deletes a key of any type from storage in Azure Key Vault.",
"description": "The delete key operation cannot be used to remove individual versions of a key. This operation removes the cryptographic material associated with the key, which means the key is not usable for Sign/Verify, Wrap/Unwrap or Encrypt/Decrypt operations. This operation requires the keys/delete permission.",
"parameters": [
{
"name": "key-name",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the key to delete."
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "The public part of the deleted key and deletion information on when the key will be purged.",
"schema": {
"$ref": "#/definitions/DeletedKeyBundle"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-examples": {
"Delete key": {
"$ref": "./examples/DeleteKey-example.json"
}
}
}
},
"/keys/{key-name}/{key-version}": {
"patch": {
"tags": [
"Keys"
],
"operationId": "UpdateKey",
"summary": "The update key operation changes specified attributes of a stored key and can be applied to any key type and key version stored in Azure Key Vault.",
"description": "In order to perform this operation, the key must already exist in the Key Vault. Note: The cryptographic material of a key itself cannot be changed. This operation requires the keys/update permission.",
"parameters": [
{
"name": "key-name",
"in": "path",
"required": true,
"type": "string",
"description": "The name of key to update."
},
{
"name": "key-version",
"in": "path",
"required": true,
"type": "string",
"description": "The version of the key to update."
},
{
"name": "parameters",
"in": "body",
"required": true,
"x-ms-client-flatten": true,
"schema": {
"$ref": "#/definitions/KeyUpdateParameters"
},
"description": "The parameters of the key to update."
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "The updated key.",
"schema": {
"$ref": "#/definitions/KeyBundle"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-examples": {
"Update key": {
"$ref": "./examples/UpdateKey-example.json"
}
}
},
"get": {
"tags": [
"Keys"
],
"operationId": "GetKey",
"summary": "Gets the public part of a stored key.",
"description": "The get key operation is applicable to all key types. If the requested key is symmetric, then no key material is released in the response. This operation requires the keys/get permission.",
"parameters": [
{
"name": "key-name",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the key to get."
},
{
"name": "key-version",
"in": "path",
"required": true,
"type": "string",
"description": "Adding the version parameter retrieves a specific version of a key. This URI fragment is optional. If not specified, the latest version of the key is returned."
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "A key bundle containing the key and its attributes.",
"schema": {
"$ref": "#/definitions/KeyBundle"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-examples": {
"Get key": {
"$ref": "./examples/GetKey-example.json"
}
}
}
},
"/keys/{key-name}/versions": {
"get": {
"tags": [
"Keys"
],
"operationId": "GetKeyVersions",
"summary": "Retrieves a list of individual key versions with the same key name.",
"description": "The full key identifier, attributes, and tags are provided in the response. This operation requires the keys/list permission.",
"parameters": [
{
"name": "key-name",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the key."
},
{
"name": "maxresults",
"in": "query",
"required": false,
"type": "integer",
"format": "int32",
"minimum": 1,
"maximum": 25,
"description": "Maximum number of results to return in a page. If not specified the service will return up to 25 results."
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "A response message containing a list of keys along with a link to the next page of keys.",
"schema": {
"$ref": "#/definitions/KeyListResult"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"x-ms-examples": {
"GetKeyVersions": {
"$ref": "./examples/GetKeyVersions-example.json"
}
}
}
},
"/keys": {
"get": {
"tags": [
"Keys"
],
"operationId": "GetKeys",
"summary": "List keys in the specified vault.",
"description": "Retrieves a list of the keys in the Key Vault as JSON Web Key structures that contain the public part of a stored key. The LIST operation is applicable to all key types, however only the base key identifier, attributes, and tags are provided in the response. Individual versions of a key are not listed in the response. This operation requires the keys/list permission.",
"parameters": [
{
"name": "maxresults",
"in": "query",
"required": false,
"type": "integer",
"format": "int32",
"minimum": 1,
"maximum": 25,
"description": "Maximum number of results to return in a page. If not specified the service will return up to 25 results."
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "A response message containing a list of keys in the vault along with a link to the next page of keys.",
"schema": {
"$ref": "#/definitions/KeyListResult"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"x-ms-examples": {
"GetKeys": {
"$ref": "./examples/GetKeys-example.json"
}
}
}
},
"/keys/{key-name}/backup": {
"post": {
"tags": [
"Keys"
],
"operationId": "BackupKey",
"summary": "Requests that a backup of the specified key be downloaded to the client.",
"description": "The Key Backup operation exports a key from Azure Key Vault in a protected form. Note that this operation does NOT return key material in a form that can be used outside the Azure Key Vault system, the returned key material is either protected to a Azure Key Vault HSM or to Azure Key Vault itself. The intent of this operation is to allow a client to GENERATE a key in one Azure Key Vault instance, BACKUP the key, and then RESTORE it into another Azure Key Vault instance. The BACKUP operation may be used to export, in protected form, any key type from Azure Key Vault. Individual versions of a key cannot be backed up. BACKUP / RESTORE can be performed within geographical boundaries only; meaning that a BACKUP from one geographical area cannot be restored to another geographical area. For example, a backup from the US geographical area cannot be restored in an EU geographical area. This operation requires the key/backup permission.",
"parameters": [
{
"name": "key-name",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the key."
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "The backup blob containing the backed up key.",
"schema": {
"$ref": "#/definitions/BackupKeyResult"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-examples": {
"BackupKey": {
"$ref": "./examples/BackupKey-example.json"
}
}
}
},
"/keys/restore": {
"post": {
"tags": [
"Keys"
],
"operationId": "RestoreKey",
"summary": "Restores a backed up key to a vault.",
"description": "Imports a previously backed up key into Azure Key Vault, restoring the key, its key identifier, attributes and access control policies. The RESTORE operation may be used to import a previously backed up key. Individual versions of a key cannot be restored. The key is restored in its entirety with the same key name as it had when it was backed up. If the key name is not available in the target Key Vault, the RESTORE operation will be rejected. While the key name is retained during restore, the final key identifier will change if the key is restored to a different vault. Restore will restore all versions and preserve version identifiers. The RESTORE operation is subject to security constraints: The target Key Vault must be owned by the same Microsoft Azure Subscription as the source Key Vault The user must have RESTORE permission in the target Key Vault. This operation requires the keys/restore permission.",
"parameters": [
{
"name": "parameters",
"in": "body",
"required": true,
"x-ms-client-flatten": true,
"schema": {
"$ref": "#/definitions/KeyRestoreParameters"
},
"description": "The parameters to restore the key."
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "Restored key bundle in the vault.",
"schema": {
"$ref": "#/definitions/KeyBundle"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-examples": {
"RestoreKey": {
"$ref": "./examples/RestoreKey-example.json"
}
}
}
},
"/keys/{key-name}/{key-version}/encrypt": {
"post": {
"tags": [
"Keys"
],
"operationId": "encrypt",
"summary": "Encrypts an arbitrary sequence of bytes using an encryption key that is stored in a key vault.",
"description": "The ENCRYPT operation encrypts an arbitrary sequence of bytes using an encryption key that is stored in Azure Key Vault. Note that the ENCRYPT operation only supports a single block of data, the size of which is dependent on the target key and the encryption algorithm to be used. The ENCRYPT operation is only strictly necessary for symmetric keys stored in Azure Key Vault since protection with an asymmetric key can be performed using public portion of the key. This operation is supported for asymmetric keys as a convenience for callers that have a key-reference but do not have access to the public key material. This operation requires the keys/encrypt permission.",
"parameters": [
{
"name": "key-name",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the key."
},
{
"name": "key-version",
"in": "path",
"required": true,
"type": "string",
"description": "The version of the key."
},
{
"name": "parameters",
"in": "body",
"required": true,
"x-ms-client-flatten": true,
"schema": {
"$ref": "#/definitions/KeyOperationsParameters"
},
"description": "The parameters for the encryption operation."
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "The encryption result.",
"schema": {
"$ref": "#/definitions/KeyOperationResult"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-examples": {
"Encrypt example": {
"$ref": "./examples/encrypt-example.json"
}
}
}
},
"/keys/{key-name}/{key-version}/decrypt": {
"post": {
"tags": [
"Keys"
],
"operationId": "decrypt",
"summary": "Decrypts a single block of encrypted data.",
"description": "The DECRYPT operation decrypts a well-formed block of ciphertext using the target encryption key and specified algorithm. This operation is the reverse of the ENCRYPT operation; only a single block of data may be decrypted, the size of this block is dependent on the target key and the algorithm to be used. The DECRYPT operation applies to asymmetric and symmetric keys stored in Azure Key Vault since it uses the private portion of the key. This operation requires the keys/decrypt permission.",
"parameters": [
{
"name": "key-name",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the key."
},
{
"name": "key-version",
"in": "path",
"required": true,
"type": "string",
"description": "The version of the key."
},
{
"name": "parameters",
"in": "body",
"required": true,
"x-ms-client-flatten": true,
"schema": {
"$ref": "#/definitions/KeyOperationsParameters"
},
"description": "The parameters for the decryption operation."
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "The decryption result.",
"schema": {
"$ref": "#/definitions/KeyOperationResult"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-examples": {
"Decrypt example": {
"$ref": "./examples/decrypt-example.json"
}
}
}
},
"/keys/{key-name}/{key-version}/sign": {
"post": {
"tags": [
"Keys"
],
"operationId": "sign",
"summary": "Creates a signature from a digest using the specified key.",
"description": "The SIGN operation is applicable to asymmetric and symmetric keys stored in Azure Key Vault since this operation uses the private portion of the key. This operation requires the keys/sign permission.",
"parameters": [
{
"name": "key-name",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the key."
},
{
"name": "key-version",
"in": "path",
"required": true,
"type": "string",
"description": "The version of the key."
},
{
"name": "parameters",
"in": "body",
"required": true,
"x-ms-client-flatten": true,
"schema": {
"$ref": "#/definitions/KeySignParameters"
},
"description": "The parameters for the signing operation."
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "The signature value.",
"schema": {
"$ref": "#/definitions/KeyOperationResult"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-examples": {
"Sign": {
"$ref": "./examples/sign-example.json"
}
}
}
},
"/keys/{key-name}/{key-version}/verify": {
"post": {
"tags": [
"Keys"
],
"operationId": "verify",
"summary": "Verifies a signature using a specified key.",
"description": "The VERIFY operation is applicable to symmetric keys stored in Azure Key Vault. VERIFY is not strictly necessary for asymmetric keys stored in Azure Key Vault since signature verification can be performed using the public portion of the key but this operation is supported as a convenience for callers that only have a key-reference and not the public portion of the key. This operation requires the keys/verify permission.",
"parameters": [
{
"name": "key-name",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the key."
},
{
"name": "key-version",
"in": "path",
"required": true,
"type": "string",
"description": "The version of the key."
},
{
"name": "parameters",
"in": "body",
"required": true,
"x-ms-client-flatten": true,
"schema": {
"$ref": "#/definitions/KeyVerifyParameters"
},
"description": "The parameters for verify operations."
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "The verification result.",
"schema": {
"$ref": "#/definitions/KeyVerifyResult"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-examples": {
"Verify": {
"$ref": "./examples/verify-example.json"
}
}
}
},
"/keys/{key-name}/{key-version}/wrapkey": {
"post": {
"tags": [
"Keys"
],
"operationId": "wrapKey",
"summary": "Wraps a symmetric key using a specified key.",
"description": "The WRAP operation supports encryption of a symmetric key using a key encryption key that has previously been stored in an Azure Key Vault. The WRAP operation is only strictly necessary for symmetric keys stored in Azure Key Vault since protection with an asymmetric key can be performed using the public portion of the key. This operation is supported for asymmetric keys as a convenience for callers that have a key-reference but do not have access to the public key material. This operation requires the keys/wrapKey permission.",
"parameters": [
{
"name": "key-name",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the key."
},
{
"name": "key-version",
"in": "path",
"required": true,
"type": "string",
"description": "The version of the key."
},
{
"name": "parameters",
"in": "body",
"required": true,
"x-ms-client-flatten": true,
"schema": {
"$ref": "#/definitions/KeyOperationsParameters"
},
"description": "The parameters for wrap operation."
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "The wrapped symmetric key.",
"schema": {
"$ref": "#/definitions/KeyOperationResult"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-examples": {
"Wrapkey": {
"$ref": "./examples/wrapKey-example.json"
}
}
}
},
"/keys/{key-name}/{key-version}/unwrapkey": {
"post": {
"tags": [
"Keys"
],
"operationId": "unwrapKey",
"summary": "Unwraps a symmetric key using the specified key that was initially used for wrapping that key.",
"description": "The UNWRAP operation supports decryption of a symmetric key using the target key encryption key. This operation is the reverse of the WRAP operation. The UNWRAP operation applies to asymmetric and symmetric keys stored in Azure Key Vault since it uses the private portion of the key. This operation requires the keys/unwrapKey permission.",
"parameters": [
{
"name": "key-name",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the key."
},
{
"name": "key-version",
"in": "path",
"required": true,
"type": "string",
"description": "The version of the key."
},
{
"name": "parameters",
"in": "body",
"required": true,
"x-ms-client-flatten": true,
"schema": {
"$ref": "#/definitions/KeyOperationsParameters"
},
"description": "The parameters for the key operation."
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "The unwrapped symmetric key.",
"schema": {
"$ref": "#/definitions/KeyOperationResult"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-examples": {
"Unwrapkey": {
"$ref": "./examples/unwrapKey-example.json"
}
}
}
},
"/keys/{key-name}/{key-version}/export": {
"post": {
"tags": [
"Keys"
],
"operationId": "export",
"summary": "Exports a key.",
"description": "The export key operation is applicable to all key types. The target key must be marked exportable. This operation requires the keys/export permission.",
"parameters": [
{
"name": "key-name",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the key to get."
},
{
"name": "key-version",
"required": true,
"in": "path",
"type": "string",
"description": "Adding the version parameter retrieves a specific version of a key."
},
{
"name": "parameters",
"in": "body",
"required": true,
"x-ms-client-flatten": true,
"schema": {
"$ref": "#/definitions/KeyExportParameters"
},
"description": "The parameters for the key export operation."
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "A key bundle containing the key and its attributes.",
"schema": {
"$ref": "#/definitions/KeyBundle"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-examples": {
"Export": {
"$ref": "./examples/export-example.json"
}
}
}
},
"/keys/{key-name}/{key-version}/release": {
"post": {
"tags": [
"Keys"
],
"operationId": "release",
"summary": "Releases a key.",
"description": "The release key operation is applicable to all key types. The target key must be marked exportable. This operation requires the keys/release permission.",
"parameters": [
{
"name": "key-name",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the key to get."
},
{
"name": "key-version",
"required": true,
"in": "path",
"type": "string",
"description": "Adding the version parameter retrieves a specific version of a key."
},
{
"name": "parameters",
"in": "body",
"required": true,
"x-ms-client-flatten": true,
"schema": {
"$ref": "#/definitions/KeyReleaseParameters"
},
"description": "The parameters for the key release operation."
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "A key bundle containing the key and its attributes.",
"schema": {
"$ref": "#/definitions/KeyReleaseResult"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-examples": {
"Release": {
"$ref": "./examples/release-example.json"
}
}
}
},
"/deletedkeys": {
"get": {
"tags": [
"DeletedKeys"
],
"operationId": "GetDeletedKeys",
"summary": "Lists the deleted keys in the specified vault.",
"description": "Retrieves a list of the keys in the Key Vault as JSON Web Key structures that contain the public part of a deleted key. This operation includes deletion-specific information. The Get Deleted Keys operation is applicable for vaults enabled for soft-delete. While the operation can be invoked on any vault, it will return an error if invoked on a non soft-delete enabled vault. This operation requires the keys/list permission.",
"parameters": [
{
"name": "maxresults",
"in": "query",
"required": false,
"type": "integer",
"format": "int32",
"minimum": 1,
"maximum": 25,
"description": "Maximum number of results to return in a page. If not specified the service will return up to 25 results."
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "A response message containing a list of deleted keys in the vault along with a link to the next page of deleted keys.",
"schema": {
"$ref": "#/definitions/DeletedKeyListResult"
}
},
"default": {
"description": "Key Vault error response describing why the operation failed.",
"schema": {
"$ref": "common.json#/definitions/KeyVaultError"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"x-ms-examples": {
"GetDeletedKeys": {
"$ref": "./examples/GetDeletedKeys-example.json"
}
}
}
},
"/deletedkeys/{key-name}": {
"get": {
"tags": [
"DeletedKeys"
],
"operationId": "GetDeletedKey",
"summary": "Gets the public part of a deleted key.",
"description": "The Get Deleted Key operation is applicable for soft-delete enabled vaults. While the operation can be invoked on any vault, it will return an error if invoked on a non soft-delete enabled vault. This operation requires the keys/get permission. ",
"parameters": [
{
"name": "key-name",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the key."
},
{
"$ref": "#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "A DeletedKeyBundle consisting of a WebKey plus its Attributes and deletion information.",
"schema": {
"$ref": "#/definitions/DeletedKeyBundle"
}
},