azure_security_keyvault_keys 0.14.0

Rust wrappers around Microsoft Azure REST APIs - Azure Key Vault Keys
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
//
// Code generated by Microsoft (R) Rust Code Generator. DO NOT EDIT.

use crate::generated::models::{
    BackupKeyResult, CreateKeyParameters, DeletedKey, GetRandomBytesParameters,
    ImportKeyParameters, Key, KeyClientBackupKeyOptions, KeyClientCreateKeyOptions,
    KeyClientDecryptOptions, KeyClientDeleteKeyOptions, KeyClientEncryptOptions,
    KeyClientGetDeletedKeyOptions, KeyClientGetKeyAttestationOptions, KeyClientGetKeyOptions,
    KeyClientGetKeyRotationPolicyOptions, KeyClientGetRandomBytesOptions,
    KeyClientImportKeyOptions, KeyClientListDeletedKeyPropertiesOptions,
    KeyClientListKeyPropertiesOptions, KeyClientListKeyPropertiesVersionsOptions,
    KeyClientPurgeDeletedKeyOptions, KeyClientRecoverDeletedKeyOptions, KeyClientReleaseOptions,
    KeyClientRestoreKeyOptions, KeyClientRotateKeyOptions, KeyClientSignOptions,
    KeyClientUnwrapKeyOptions, KeyClientUpdateKeyPropertiesOptions,
    KeyClientUpdateKeyRotationPolicyOptions, KeyClientVerifyOptions, KeyClientWrapKeyOptions,
    KeyOperationParameters, KeyOperationResult, KeyReleaseResult, KeyRotationPolicy,
    KeyVerifyResult, ListDeletedKeyPropertiesResult, ListKeyPropertiesResult, RandomBytes,
    ReleaseParameters, RestoreKeyParameters, SignParameters, UpdateKeyPropertiesParameters,
    VerifyParameters,
};
use azure_core::{
    error::CheckSuccessOptions,
    http::{
        pager::{PagerContinuation, PagerResult, PagerState},
        Method, NoFormat, Pager, Pipeline, PipelineSendOptions, RawResponse, Request,
        RequestContent, Response, Url, UrlExt,
    },
    json, tracing, Result,
};

/// The key vault client performs cryptographic key operations and vault operations against the Key Vault service.
#[tracing::client]
pub struct KeyClient {
    pub(crate) api_version: String,
    pub(crate) endpoint: Url,
    pub(crate) pipeline: Pipeline,
}

impl KeyClient {
    /// Returns the Url associated with this client.
    pub fn endpoint(&self) -> &Url {
        &self.endpoint
    }

    /// Requests that a backup of the specified key be downloaded to the client.
    ///
    /// 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.
    ///
    /// # Arguments
    ///
    /// * `key_name` - The name of the key.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.backupKey")]
    pub async fn backup_key(
        &self,
        key_name: &str,
        options: Option<KeyClientBackupKeyOptions<'_>>,
    ) -> Result<Response<BackupKeyResult>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        let mut path = String::from("/keys/{key-name}/backup");
        path = path.replace("{key-name}", key_name);
        url.append_path(&path);
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Post);
        request.insert_header("accept", "application/json");
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// Creates a new key, stores it, then returns key parameters and attributes to the client.
    ///
    /// 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.
    ///
    /// # Arguments
    ///
    /// * `key_name` - The name for the new key. The system will generate the version name for the new key. The value you provide
    ///   may be copied globally for the purpose of running the service. The value provided should not include personally identifiable
    ///   or sensitive information.
    /// * `parameters` - The parameters to create a key.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.createKey")]
    pub async fn create_key(
        &self,
        key_name: &str,
        parameters: RequestContent<CreateKeyParameters>,
        options: Option<KeyClientCreateKeyOptions<'_>>,
    ) -> Result<Response<Key>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        let mut path = String::from("/keys/{key-name}/create");
        path = path.replace("{key-name}", key_name);
        url.append_path(&path);
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Post);
        request.insert_header("accept", "application/json");
        request.insert_header("content-type", "application/json");
        request.set_body(parameters);
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// Decrypts a single block of encrypted data.
    ///
    /// 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. Microsoft recommends not to use CBC algorithms for decryption without first ensuring the integrity of the
    /// ciphertext using an HMAC, for example. See <https://learn.microsoft.com/dotnet/standard/security/vulnerabilities-cbc-mode>
    /// for more information.
    ///
    /// # Arguments
    ///
    /// * `key_name` - The name of the key.
    /// * `key_version` - The version of the key.
    /// The version is required and should be recorded when encrypting so you can reliably decrypt using the same version. You
    /// can pass an empty string to select the latest key version but if you don't record the specific version used for encryption,
    /// key rotation can make the data inaccessible.
    /// * `parameters` - The parameters for the decryption operation.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.decrypt")]
    pub async fn decrypt(
        &self,
        key_name: &str,
        key_version: &str,
        parameters: RequestContent<KeyOperationParameters>,
        options: Option<KeyClientDecryptOptions<'_>>,
    ) -> Result<Response<KeyOperationResult>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        let mut path = String::from("/keys/{key-name}/{key-version}/decrypt");
        path = path.replace("{key-name}", key_name);
        path = path.replace("{key-version}", key_version);
        url.append_path(&path);
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Post);
        request.insert_header("accept", "application/json");
        request.insert_header("content-type", "application/json");
        request.set_body(parameters);
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// Deletes a key of any type from storage in Azure Key Vault.
    ///
    /// 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.
    ///
    /// # Arguments
    ///
    /// * `key_name` - The name of the key to delete.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.deleteKey")]
    pub async fn delete_key(
        &self,
        key_name: &str,
        options: Option<KeyClientDeleteKeyOptions<'_>>,
    ) -> Result<Response<DeletedKey>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        let mut path = String::from("/keys/{key-name}");
        path = path.replace("{key-name}", key_name);
        url.append_path(&path);
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Delete);
        request.insert_header("accept", "application/json");
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// Encrypts an arbitrary sequence of bytes using an encryption key that is stored in a key vault.
    ///
    /// 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.
    ///
    /// You should record the ['KeyOperationResult::kid`] that is returned by this operation
    /// so you can later parse it with [`ResourceId`](crate::ResourceId) and pass the version to [`KeyClient::decrypt()`].
    /// You can pass an empty string for the version to `decrypt()` to select the latest key version
    /// but if you don't record the specific version used for encrypting, key rotation can make the data inaccessible.
    ///
    /// # Arguments
    ///
    /// * `key_name` - The name of the key.
    /// * `parameters` - The parameters for the encryption operation.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.encrypt")]
    pub async fn encrypt(
        &self,
        key_name: &str,
        parameters: RequestContent<KeyOperationParameters>,
        options: Option<KeyClientEncryptOptions<'_>>,
    ) -> Result<Response<KeyOperationResult>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        let mut path = String::from("/keys/{key-name}/{key-version}/encrypt");
        path = path.replace("{key-name}", key_name);
        path = match options.key_version.as_ref() {
            Some(key_version) => path.replace("{key-version}", key_version),
            None => path.replace("{key-version}", ""),
        };
        url.append_path(&path);
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Post);
        request.insert_header("accept", "application/json");
        request.insert_header("content-type", "application/json");
        request.set_body(parameters);
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// Gets the public part of a deleted key.
    ///
    /// 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.
    ///
    /// # Arguments
    ///
    /// * `key_name` - The name of the key.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.getDeletedKey")]
    pub async fn get_deleted_key(
        &self,
        key_name: &str,
        options: Option<KeyClientGetDeletedKeyOptions<'_>>,
    ) -> Result<Response<DeletedKey>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        let mut path = String::from("/deletedkeys/{key-name}");
        path = path.replace("{key-name}", key_name);
        url.append_path(&path);
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Get);
        request.insert_header("accept", "application/json");
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// Gets the public part of a stored key.
    ///
    /// 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.
    ///
    /// # Arguments
    ///
    /// * `key_name` - The name of the key to get.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.getKey")]
    pub async fn get_key(
        &self,
        key_name: &str,
        options: Option<KeyClientGetKeyOptions<'_>>,
    ) -> Result<Response<Key>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        let mut path = String::from("/keys/{key-name}/{key-version}");
        path = path.replace("{key-name}", key_name);
        path = match options.key_version.as_ref() {
            Some(key_version) => path.replace("{key-version}", key_version),
            None => path.replace("{key-version}", ""),
        };
        url.append_path(&path);
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Get);
        request.insert_header("accept", "application/json");
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// Gets the public part of a stored key along with its attestation blob.
    ///
    /// The get key attestation operation returns the key along with its attestation blob. This operation requires the keys/get
    /// permission.
    ///
    /// # Arguments
    ///
    /// * `key_name` - The name of the key to retrieve attestation for.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.getKeyAttestation")]
    pub async fn get_key_attestation(
        &self,
        key_name: &str,
        options: Option<KeyClientGetKeyAttestationOptions<'_>>,
    ) -> Result<Response<Key>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        let mut path = String::from("/keys/{key-name}/{key-version}/attestation");
        path = path.replace("{key-name}", key_name);
        path = match options.key_version.as_ref() {
            Some(key_version) => path.replace("{key-version}", key_version),
            None => path.replace("{key-version}", ""),
        };
        url.append_path(&path);
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Get);
        request.insert_header("accept", "application/json");
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// Lists the policy for a key.
    ///
    /// The GetKeyRotationPolicy operation returns the specified key policy resources in the specified key vault. This operation
    /// requires the keys/get permission.
    ///
    /// # Arguments
    ///
    /// * `key_name` - The name of the key in a given key vault.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.getKeyRotationPolicy")]
    pub async fn get_key_rotation_policy(
        &self,
        key_name: &str,
        options: Option<KeyClientGetKeyRotationPolicyOptions<'_>>,
    ) -> Result<Response<KeyRotationPolicy>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        let mut path = String::from("/keys/{key-name}/rotationpolicy");
        path = path.replace("{key-name}", key_name);
        url.append_path(&path);
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Get);
        request.insert_header("accept", "application/json");
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// Get the requested number of bytes containing random values.
    ///
    /// Get the requested number of bytes containing random values from a managed HSM.
    ///
    /// # Arguments
    ///
    /// * `parameters` - The request object to get random bytes.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.getRandomBytes")]
    pub async fn get_random_bytes(
        &self,
        parameters: RequestContent<GetRandomBytesParameters>,
        options: Option<KeyClientGetRandomBytesOptions<'_>>,
    ) -> Result<Response<RandomBytes>> {
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        url.append_path("/rng");
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Post);
        request.insert_header("accept", "application/json");
        request.insert_header("content-type", "application/json");
        request.set_body(parameters);
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// Imports an externally created key, stores it, and returns key parameters and attributes to the client.
    ///
    /// 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.
    ///
    /// # Arguments
    ///
    /// * `key_name` - Name for the imported key. The value you provide may be copied globally for the purpose of running the
    ///   service. The value provided should not include personally identifiable or sensitive information.
    /// * `parameters` - The parameters to import a key.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.importKey")]
    pub async fn import_key(
        &self,
        key_name: &str,
        parameters: RequestContent<ImportKeyParameters>,
        options: Option<KeyClientImportKeyOptions<'_>>,
    ) -> Result<Response<Key>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        let mut path = String::from("/keys/{key-name}");
        path = path.replace("{key-name}", key_name);
        url.append_path(&path);
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Put);
        request.insert_header("accept", "application/json");
        request.insert_header("content-type", "application/json");
        request.set_body(parameters);
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// Lists the deleted keys in the specified vault.
    ///
    /// 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.
    ///
    /// # Arguments
    ///
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.getDeletedKeys")]
    pub fn list_deleted_key_properties(
        &self,
        options: Option<KeyClientListDeletedKeyPropertiesOptions<'_>>,
    ) -> Result<Pager<ListDeletedKeyPropertiesResult>> {
        let options = options.unwrap_or_default().into_owned();
        let pipeline = self.pipeline.clone();
        let mut first_url = self.endpoint.clone();
        first_url.append_path("/deletedkeys");
        let mut query_builder = first_url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        if let Some(maxresults) = options.maxresults {
            query_builder.set_pair("maxresults", maxresults.to_string());
        }
        query_builder.build();
        let api_version = self.api_version.clone();
        Ok(Pager::new(
            move |next_link: PagerState, pager_options| {
                let url = match next_link {
                    PagerState::More(next_link) => {
                        let mut next_link: Url = next_link.try_into().expect("expected Url");
                        let mut query_builder = next_link.query_builder();
                        query_builder.set_pair("api-version", &api_version);
                        query_builder.build();
                        next_link
                    }
                    PagerState::Initial => first_url.clone(),
                };
                let mut request = Request::new(url, Method::Get);
                request.insert_header("accept", "application/json");
                let pipeline = pipeline.clone();
                Box::pin({
                    let first_url = first_url.clone();
                    async move {
                        let rsp = pipeline
                            .send(
                                &pager_options.context,
                                &mut request,
                                Some(PipelineSendOptions {
                                    check_success: CheckSuccessOptions {
                                        success_codes: &[200],
                                    },
                                    ..Default::default()
                                }),
                            )
                            .await?;
                        let (status, headers, body) = rsp.deconstruct();
                        let res: ListDeletedKeyPropertiesResult = json::from_json(&body)?;
                        let rsp = RawResponse::from_bytes(status, headers, body).into();
                        Ok(match res.next_link {
                            Some(next_link) if !next_link.is_empty() => PagerResult::More {
                                response: rsp,
                                continuation: PagerContinuation::Link(
                                    first_url.join(next_link.as_ref())?,
                                ),
                            },
                            _ => PagerResult::Done { response: rsp },
                        })
                    }
                })
            },
            Some(options.method_options),
        ))
    }

    /// List keys in the specified vault.
    ///
    /// 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.
    ///
    /// # Arguments
    ///
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.getKeys")]
    pub fn list_key_properties(
        &self,
        options: Option<KeyClientListKeyPropertiesOptions<'_>>,
    ) -> Result<Pager<ListKeyPropertiesResult>> {
        let options = options.unwrap_or_default().into_owned();
        let pipeline = self.pipeline.clone();
        let mut first_url = self.endpoint.clone();
        first_url.append_path("/keys");
        let mut query_builder = first_url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        if let Some(maxresults) = options.maxresults {
            query_builder.set_pair("maxresults", maxresults.to_string());
        }
        query_builder.build();
        let api_version = self.api_version.clone();
        Ok(Pager::new(
            move |next_link: PagerState, pager_options| {
                let url = match next_link {
                    PagerState::More(next_link) => {
                        let mut next_link: Url = next_link.try_into().expect("expected Url");
                        let mut query_builder = next_link.query_builder();
                        query_builder.set_pair("api-version", &api_version);
                        query_builder.build();
                        next_link
                    }
                    PagerState::Initial => first_url.clone(),
                };
                let mut request = Request::new(url, Method::Get);
                request.insert_header("accept", "application/json");
                let pipeline = pipeline.clone();
                Box::pin({
                    let first_url = first_url.clone();
                    async move {
                        let rsp = pipeline
                            .send(
                                &pager_options.context,
                                &mut request,
                                Some(PipelineSendOptions {
                                    check_success: CheckSuccessOptions {
                                        success_codes: &[200],
                                    },
                                    ..Default::default()
                                }),
                            )
                            .await?;
                        let (status, headers, body) = rsp.deconstruct();
                        let res: ListKeyPropertiesResult = json::from_json(&body)?;
                        let rsp = RawResponse::from_bytes(status, headers, body).into();
                        Ok(match res.next_link {
                            Some(next_link) if !next_link.is_empty() => PagerResult::More {
                                response: rsp,
                                continuation: PagerContinuation::Link(
                                    first_url.join(next_link.as_ref())?,
                                ),
                            },
                            _ => PagerResult::Done { response: rsp },
                        })
                    }
                })
            },
            Some(options.method_options),
        ))
    }

    /// Retrieves a list of individual key versions with the same key name.
    ///
    /// The full key identifier, attributes, and tags are provided in the response. This operation requires the keys/list permission.
    ///
    /// # Arguments
    ///
    /// * `key_name` - The name of the key.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.getKeyVersions")]
    pub fn list_key_properties_versions(
        &self,
        key_name: &str,
        options: Option<KeyClientListKeyPropertiesVersionsOptions<'_>>,
    ) -> Result<Pager<ListKeyPropertiesResult>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default().into_owned();
        let pipeline = self.pipeline.clone();
        let mut first_url = self.endpoint.clone();
        let mut path = String::from("/keys/{key-name}/versions");
        path = path.replace("{key-name}", key_name);
        first_url.append_path(&path);
        let mut query_builder = first_url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        if let Some(maxresults) = options.maxresults {
            query_builder.set_pair("maxresults", maxresults.to_string());
        }
        query_builder.build();
        let api_version = self.api_version.clone();
        Ok(Pager::new(
            move |next_link: PagerState, pager_options| {
                let url = match next_link {
                    PagerState::More(next_link) => {
                        let mut next_link: Url = next_link.try_into().expect("expected Url");
                        let mut query_builder = next_link.query_builder();
                        query_builder.set_pair("api-version", &api_version);
                        query_builder.build();
                        next_link
                    }
                    PagerState::Initial => first_url.clone(),
                };
                let mut request = Request::new(url, Method::Get);
                request.insert_header("accept", "application/json");
                let pipeline = pipeline.clone();
                Box::pin({
                    let first_url = first_url.clone();
                    async move {
                        let rsp = pipeline
                            .send(
                                &pager_options.context,
                                &mut request,
                                Some(PipelineSendOptions {
                                    check_success: CheckSuccessOptions {
                                        success_codes: &[200],
                                    },
                                    ..Default::default()
                                }),
                            )
                            .await?;
                        let (status, headers, body) = rsp.deconstruct();
                        let res: ListKeyPropertiesResult = json::from_json(&body)?;
                        let rsp = RawResponse::from_bytes(status, headers, body).into();
                        Ok(match res.next_link {
                            Some(next_link) if !next_link.is_empty() => PagerResult::More {
                                response: rsp,
                                continuation: PagerContinuation::Link(
                                    first_url.join(next_link.as_ref())?,
                                ),
                            },
                            _ => PagerResult::Done { response: rsp },
                        })
                    }
                })
            },
            Some(options.method_options),
        ))
    }

    /// Permanently deletes the specified key.
    ///
    /// The Purge 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/purge permission.
    ///
    /// # Arguments
    ///
    /// * `key_name` - The name of the key
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.purgeDeletedKey")]
    pub async fn purge_deleted_key(
        &self,
        key_name: &str,
        options: Option<KeyClientPurgeDeletedKeyOptions<'_>>,
    ) -> Result<Response<(), NoFormat>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        let mut path = String::from("/deletedkeys/{key-name}");
        path = path.replace("{key-name}", key_name);
        url.append_path(&path);
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Delete);
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[204],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// Recovers the deleted key to its latest version.
    ///
    /// The Recover Deleted Key operation is applicable for deleted keys in soft-delete enabled vaults. It recovers the deleted
    /// key back to its latest version under /keys. An attempt to recover an non-deleted key will return an error. Consider this
    /// the inverse of the delete operation on soft-delete enabled vaults. This operation requires the keys/recover permission.
    ///
    /// # Arguments
    ///
    /// * `key_name` - The name of the deleted key.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.recoverDeletedKey")]
    pub async fn recover_deleted_key(
        &self,
        key_name: &str,
        options: Option<KeyClientRecoverDeletedKeyOptions<'_>>,
    ) -> Result<Response<Key>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        let mut path = String::from("/deletedkeys/{key-name}/recover");
        path = path.replace("{key-name}", key_name);
        url.append_path(&path);
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Post);
        request.insert_header("accept", "application/json");
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// Releases a key.
    ///
    /// The release key operation is applicable to all key types. The target key must be marked exportable. This operation requires
    /// the keys/release permission.
    ///
    /// # Arguments
    ///
    /// * `key_name` - The name of the key to get.
    /// * `parameters` - The parameters for the key release operation.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.release")]
    pub async fn release(
        &self,
        key_name: &str,
        parameters: RequestContent<ReleaseParameters>,
        options: Option<KeyClientReleaseOptions<'_>>,
    ) -> Result<Response<KeyReleaseResult>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        let mut path = String::from("/keys/{key-name}/{key-version}/release");
        path = path.replace("{key-name}", key_name);
        path = match options.key_version.as_ref() {
            Some(key_version) => path.replace("{key-version}", key_version),
            None => path.replace("{key-version}", ""),
        };
        url.append_path(&path);
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Post);
        request.insert_header("accept", "application/json");
        request.insert_header("content-type", "application/json");
        request.set_body(parameters);
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// Restores a backed up key to a vault.
    ///
    /// 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.
    ///
    /// # Arguments
    ///
    /// * `parameters` - The parameters to restore the key.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.restoreKey")]
    pub async fn restore_key(
        &self,
        parameters: RequestContent<RestoreKeyParameters>,
        options: Option<KeyClientRestoreKeyOptions<'_>>,
    ) -> Result<Response<Key>> {
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        url.append_path("/keys/restore");
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Post);
        request.insert_header("accept", "application/json");
        request.insert_header("content-type", "application/json");
        request.set_body(parameters);
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// Creates a new key version, stores it, then returns key parameters, attributes and policy to the client.
    ///
    /// The operation will rotate the key based on the key policy. It requires the keys/rotate permission.
    ///
    /// # Arguments
    ///
    /// * `key_name` - The name of key to be rotated. The system will generate a new version in the specified key.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.rotateKey")]
    pub async fn rotate_key(
        &self,
        key_name: &str,
        options: Option<KeyClientRotateKeyOptions<'_>>,
    ) -> Result<Response<Key>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        let mut path = String::from("/keys/{key-name}/rotate");
        path = path.replace("{key-name}", key_name);
        url.append_path(&path);
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Post);
        request.insert_header("accept", "application/json");
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// Creates a signature from a digest using the specified key.
    ///
    /// 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.
    ///
    /// You should record the ['KeyOperationResult::kid`] that is returned by this operation
    /// so you can later parse it with [`ResourceId`](crate::ResourceId) and pass the version to [`KeyClient::verify()`].
    /// You can pass an empty string for the version to `verify()` to select the latest key version
    /// but if you don't record the specific version used for signing, key rotation can make the data unverifiable.
    ///
    /// # Arguments
    ///
    /// * `key_name` - The name of the key.
    /// * `parameters` - The parameters for the signing operation.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.sign")]
    pub async fn sign(
        &self,
        key_name: &str,
        parameters: RequestContent<SignParameters>,
        options: Option<KeyClientSignOptions<'_>>,
    ) -> Result<Response<KeyOperationResult>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        let mut path = String::from("/keys/{key-name}/{key-version}/sign");
        path = path.replace("{key-name}", key_name);
        path = match options.key_version.as_ref() {
            Some(key_version) => path.replace("{key-version}", key_version),
            None => path.replace("{key-version}", ""),
        };
        url.append_path(&path);
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Post);
        request.insert_header("accept", "application/json");
        request.insert_header("content-type", "application/json");
        request.set_body(parameters);
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// Unwraps a symmetric key using the specified key that was initially used for wrapping that key.
    ///
    /// 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.
    ///
    /// # Arguments
    ///
    /// * `key_name` - The name of the key.
    /// * `key_version` - The version of the key.
    /// The version is required and should be recorded when wrapping a data encryption key so you can reliably unwrap using the
    /// same version. You can pass an empty string to select the latest key version but if you don't record the specific version
    /// used for wrapping a key, key encryption key rotation can make the data inaccessible.
    /// * `parameters` - The parameters for the key operation.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.unwrapKey")]
    pub async fn unwrap_key(
        &self,
        key_name: &str,
        key_version: &str,
        parameters: RequestContent<KeyOperationParameters>,
        options: Option<KeyClientUnwrapKeyOptions<'_>>,
    ) -> Result<Response<KeyOperationResult>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        let mut path = String::from("/keys/{key-name}/{key-version}/unwrapkey");
        path = path.replace("{key-name}", key_name);
        path = path.replace("{key-version}", key_version);
        url.append_path(&path);
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Post);
        request.insert_header("accept", "application/json");
        request.insert_header("content-type", "application/json");
        request.set_body(parameters);
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// 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.
    ///
    /// 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.
    ///
    /// # Arguments
    ///
    /// * `key_name` - The name of key to update.
    /// * `parameters` - The parameters of the key to update.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.updateKey")]
    pub async fn update_key_properties(
        &self,
        key_name: &str,
        parameters: RequestContent<UpdateKeyPropertiesParameters>,
        options: Option<KeyClientUpdateKeyPropertiesOptions<'_>>,
    ) -> Result<Response<Key>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        let mut path = String::from("/keys/{key-name}/{key-version}");
        path = path.replace("{key-name}", key_name);
        path = match options.key_version.as_ref() {
            Some(key_version) => path.replace("{key-version}", key_version),
            None => path.replace("{key-version}", ""),
        };
        url.append_path(&path);
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Patch);
        request.insert_header("accept", "application/json");
        request.insert_header("content-type", "application/json");
        request.set_body(parameters);
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// Updates the rotation policy for a key.
    ///
    /// Set specified members in the key policy. Leave others as undefined. This operation requires the keys/update permission.
    ///
    /// # Arguments
    ///
    /// * `key_name` - The name of the key in the given vault.
    /// * `key_rotation_policy` - The policy for the key.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.updateKeyRotationPolicy")]
    pub async fn update_key_rotation_policy(
        &self,
        key_name: &str,
        key_rotation_policy: RequestContent<KeyRotationPolicy>,
        options: Option<KeyClientUpdateKeyRotationPolicyOptions<'_>>,
    ) -> Result<Response<KeyRotationPolicy>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        let mut path = String::from("/keys/{key-name}/rotationpolicy");
        path = path.replace("{key-name}", key_name);
        url.append_path(&path);
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Put);
        request.insert_header("accept", "application/json");
        request.insert_header("content-type", "application/json");
        request.set_body(key_rotation_policy);
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// Verifies a signature using a specified key.
    ///
    /// 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.
    ///
    /// # Arguments
    ///
    /// * `key_name` - The name of the key.
    /// * `key_version` - The version of the key.
    /// The version is required and should be recorded when signing so you can reliably verify using the same version. You can
    /// pass an empty string to select the latest key version but if you don't record the specific version used for signing, key
    /// rotation can make the data unverifiable.
    /// * `parameters` - The parameters for verify operations.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.verify")]
    pub async fn verify(
        &self,
        key_name: &str,
        key_version: &str,
        parameters: RequestContent<VerifyParameters>,
        options: Option<KeyClientVerifyOptions<'_>>,
    ) -> Result<Response<KeyVerifyResult>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        let mut path = String::from("/keys/{key-name}/{key-version}/verify");
        path = path.replace("{key-name}", key_name);
        path = path.replace("{key-version}", key_version);
        url.append_path(&path);
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Post);
        request.insert_header("accept", "application/json");
        request.insert_header("content-type", "application/json");
        request.set_body(parameters);
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }

    /// Wraps a symmetric key using a specified key.
    ///
    /// 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.
    ///
    /// You should record the ['KeyOperationResult::kid`] that is returned by this operation
    /// so you can later parse it with [`ResourceId`](crate::ResourceId) and pass the version to [`KeyClient::unwrap_key()`].
    /// You can pass an empty string for the version to `unwrap_key()` to select the latest key version
    /// but if you don't record the specific version used for wrapping a key, key rotation can make the data inaccessible.
    ///
    /// # Arguments
    ///
    /// * `key_name` - The name of the key.
    /// * `parameters` - The parameters for wrap operation.
    /// * `options` - Optional parameters for the request.
    #[tracing::function("KeyVault.wrapKey")]
    pub async fn wrap_key(
        &self,
        key_name: &str,
        parameters: RequestContent<KeyOperationParameters>,
        options: Option<KeyClientWrapKeyOptions<'_>>,
    ) -> Result<Response<KeyOperationResult>> {
        if key_name.is_empty() {
            return Err(azure_core::Error::with_message(
                azure_core::error::ErrorKind::Other,
                "parameter key_name cannot be empty",
            ));
        }
        let options = options.unwrap_or_default();
        let ctx = options.method_options.context.to_borrowed();
        let mut url = self.endpoint.clone();
        let mut path = String::from("/keys/{key-name}/{key-version}/wrapkey");
        path = path.replace("{key-name}", key_name);
        path = match options.key_version.as_ref() {
            Some(key_version) => path.replace("{key-version}", key_version),
            None => path.replace("{key-version}", ""),
        };
        url.append_path(&path);
        let mut query_builder = url.query_builder();
        query_builder.set_pair("api-version", &self.api_version);
        query_builder.build();
        let mut request = Request::new(url, Method::Post);
        request.insert_header("accept", "application/json");
        request.insert_header("content-type", "application/json");
        request.set_body(parameters);
        let rsp = self
            .pipeline
            .send(
                &ctx,
                &mut request,
                Some(PipelineSendOptions {
                    check_success: CheckSuccessOptions {
                        success_codes: &[200],
                    },
                    ..Default::default()
                }),
            )
            .await?;
        Ok(rsp.into())
    }
}

/// Default value for `KeyClientOptions::api_version`.
///
/// This constant is available for SDK authors to use in hand-authored code.
/// When the options type is suppressed (via `@access(Access.internal)`), the
/// SDK author provides a custom options type and should reference this constant
/// in their `Default` implementation rather than hardcoding the value.
#[allow(dead_code)]
pub(crate) const DEFAULT_API_VERSION: &str = "2025-07-01";