dfns-sdk-rust 0.2.0

Dfns API SDK for Rust
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
// Code generated by rust-sdk-generator. DO NOT EDIT.

#[allow(unused_imports)]
use super::types::*;

/// Delegated client for signers operations. Signed operations are split into
/// init/complete pairs so the challenge can be signed on the user side.
#[derive(Clone)]
pub struct DelegatedSignersClient {
    client: crate::client::Client,
}

impl DelegatedSignersClient {
    pub fn new(client: crate::client::Client) -> Self {
        DelegatedSignersClient { client }
    }

    /// Starts delegated signing for cancelFleetOperation: returns the challenge to sign.
    /// Pass the signed assertion to cancel_fleet_operation_complete with the same arguments.
    pub async fn cancel_fleet_operation_init(
        &self,
        store_id: String,
        body: CancelFleetOperationRequest,
    ) -> Result<crate::signer::UserActionChallenge, crate::error::Error> {
        let path = format!(
            "/key-stores/{}/fleet-operations/cancel",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        self.client
            .create_user_action_challenge(reqwest::Method::POST, &path, Some(&body))
            .await
    }

    /// Finishes delegated signing for cancelFleetOperation: submits the signed challenge
    /// and issues the request.
    pub async fn cancel_fleet_operation_complete(
        &self,
        store_id: String,
        body: CancelFleetOperationRequest,
        challenge_identifier: String,
        assertion: crate::signer::CredentialAssertion,
    ) -> Result<CancelFleetOperationResponse, crate::error::Error> {
        let path = format!(
            "/key-stores/{}/fleet-operations/cancel",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        let user_action = self
            .client
            .complete_user_action_signing(challenge_identifier, &assertion)
            .await?;
        self.client
            .request_with_user_action::<CancelFleetOperationResponse>(
                reqwest::Method::POST,
                &path,
                Some(&body),
                &user_action,
            )
            .await
    }

    /// Starts delegated signing for createAddMacUserInput: returns the challenge to sign.
    /// Pass the signed assertion to create_add_mac_user_input_complete with the same arguments.
    pub async fn create_add_mac_user_input_init(
        &self,
        store_id: String,
        body: CreateAddMacUserInputRequest,
    ) -> Result<crate::signer::UserActionChallenge, crate::error::Error> {
        let path = format!(
            "/key-stores/{}/add-mac-user/input",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        self.client
            .create_user_action_challenge(reqwest::Method::POST, &path, Some(&body))
            .await
    }

    /// Finishes delegated signing for createAddMacUserInput: submits the signed challenge
    /// and issues the request.
    pub async fn create_add_mac_user_input_complete(
        &self,
        store_id: String,
        body: CreateAddMacUserInputRequest,
        challenge_identifier: String,
        assertion: crate::signer::CredentialAssertion,
    ) -> Result<(), crate::error::Error> {
        let path = format!(
            "/key-stores/{}/add-mac-user/input",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        let user_action = self
            .client
            .complete_user_action_signing(challenge_identifier, &assertion)
            .await?;
        self.client
            .request_no_content_with_user_action(
                reqwest::Method::POST,
                &path,
                Some(&body),
                &user_action,
            )
            .await
    }

    /// Starts delegated signing for createAddProvisionerInput: returns the challenge to sign.
    /// Pass the signed assertion to create_add_provisioner_input_complete with the same arguments.
    pub async fn create_add_provisioner_input_init(
        &self,
        store_id: String,
        body: CreateAddProvisionerInputRequest,
    ) -> Result<crate::signer::UserActionChallenge, crate::error::Error> {
        let path = format!(
            "/key-stores/{}/add-provisioner/input",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        self.client
            .create_user_action_challenge(reqwest::Method::POST, &path, Some(&body))
            .await
    }

    /// Finishes delegated signing for createAddProvisionerInput: submits the signed challenge
    /// and issues the request.
    pub async fn create_add_provisioner_input_complete(
        &self,
        store_id: String,
        body: CreateAddProvisionerInputRequest,
        challenge_identifier: String,
        assertion: crate::signer::CredentialAssertion,
    ) -> Result<(), crate::error::Error> {
        let path = format!(
            "/key-stores/{}/add-provisioner/input",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        let user_action = self
            .client
            .complete_user_action_signing(challenge_identifier, &assertion)
            .await?;
        self.client
            .request_no_content_with_user_action(
                reqwest::Method::POST,
                &path,
                Some(&body),
                &user_action,
            )
            .await
    }

    /// Starts delegated signing for createCloneInput: returns the challenge to sign.
    /// Pass the signed assertion to create_clone_input_complete with the same arguments.
    pub async fn create_clone_input_init(
        &self,
        store_id: String,
        body: CreateCloneInputRequest,
    ) -> Result<crate::signer::UserActionChallenge, crate::error::Error> {
        let path = format!("/key-stores/{}/clone/input", urlencoding::encode(&store_id));
        let body = serde_json::to_value(&body)?;
        self.client
            .create_user_action_challenge(reqwest::Method::POST, &path, Some(&body))
            .await
    }

    /// Finishes delegated signing for createCloneInput: submits the signed challenge
    /// and issues the request.
    pub async fn create_clone_input_complete(
        &self,
        store_id: String,
        body: CreateCloneInputRequest,
        challenge_identifier: String,
        assertion: crate::signer::CredentialAssertion,
    ) -> Result<(), crate::error::Error> {
        let path = format!("/key-stores/{}/clone/input", urlencoding::encode(&store_id));
        let body = serde_json::to_value(&body)?;
        let user_action = self
            .client
            .complete_user_action_signing(challenge_identifier, &assertion)
            .await?;
        self.client
            .request_no_content_with_user_action(
                reqwest::Method::POST,
                &path,
                Some(&body),
                &user_action,
            )
            .await
    }

    /// Starts delegated signing for createGenesisInput: returns the challenge to sign.
    /// Pass the signed assertion to create_genesis_input_complete with the same arguments.
    pub async fn create_genesis_input_init(
        &self,
        store_id: String,
        body: CreateGenesisInputRequest,
    ) -> Result<crate::signer::UserActionChallenge, crate::error::Error> {
        let path = format!(
            "/key-stores/{}/genesis/input",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        self.client
            .create_user_action_challenge(reqwest::Method::POST, &path, Some(&body))
            .await
    }

    /// Finishes delegated signing for createGenesisInput: submits the signed challenge
    /// and issues the request.
    pub async fn create_genesis_input_complete(
        &self,
        store_id: String,
        body: CreateGenesisInputRequest,
        challenge_identifier: String,
        assertion: crate::signer::CredentialAssertion,
    ) -> Result<(), crate::error::Error> {
        let path = format!(
            "/key-stores/{}/genesis/input",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        let user_action = self
            .client
            .complete_user_action_signing(challenge_identifier, &assertion)
            .await?;
        self.client
            .request_no_content_with_user_action(
                reqwest::Method::POST,
                &path,
                Some(&body),
                &user_action,
            )
            .await
    }

    /// Starts delegated signing for createKeyHarvestInput: returns the challenge to sign.
    /// Pass the signed assertion to create_key_harvest_input_complete with the same arguments.
    pub async fn create_key_harvest_input_init(
        &self,
        store_id: String,
        body: CreateKeyHarvestInputRequest,
    ) -> Result<crate::signer::UserActionChallenge, crate::error::Error> {
        let path = format!(
            "/key-stores/{}/key-harvest/input",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        self.client
            .create_user_action_challenge(reqwest::Method::POST, &path, Some(&body))
            .await
    }

    /// Finishes delegated signing for createKeyHarvestInput: submits the signed challenge
    /// and issues the request.
    pub async fn create_key_harvest_input_complete(
        &self,
        store_id: String,
        body: CreateKeyHarvestInputRequest,
        challenge_identifier: String,
        assertion: crate::signer::CredentialAssertion,
    ) -> Result<(), crate::error::Error> {
        let path = format!(
            "/key-stores/{}/key-harvest/input",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        let user_action = self
            .client
            .complete_user_action_signing(challenge_identifier, &assertion)
            .await?;
        self.client
            .request_no_content_with_user_action(
                reqwest::Method::POST,
                &path,
                Some(&body),
                &user_action,
            )
            .await
    }

    /// Starts delegated signing for createOnchainSignInput: returns the challenge to sign.
    /// Pass the signed assertion to create_onchain_sign_input_complete with the same arguments.
    pub async fn create_onchain_sign_input_init(
        &self,
        store_id: String,
        body: CreateOnchainSignInputRequest,
    ) -> Result<crate::signer::UserActionChallenge, crate::error::Error> {
        let path = format!(
            "/key-stores/{}/onchain-sign/input",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        self.client
            .create_user_action_challenge(reqwest::Method::POST, &path, Some(&body))
            .await
    }

    /// Finishes delegated signing for createOnchainSignInput: submits the signed challenge
    /// and issues the request.
    pub async fn create_onchain_sign_input_complete(
        &self,
        store_id: String,
        body: CreateOnchainSignInputRequest,
        challenge_identifier: String,
        assertion: crate::signer::CredentialAssertion,
    ) -> Result<(), crate::error::Error> {
        let path = format!(
            "/key-stores/{}/onchain-sign/input",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        let user_action = self
            .client
            .complete_user_action_signing(challenge_identifier, &assertion)
            .await?;
        self.client
            .request_no_content_with_user_action(
                reqwest::Method::POST,
                &path,
                Some(&body),
                &user_action,
            )
            .await
    }

    /// Starts delegated signing for createProofOfControlInput: returns the challenge to sign.
    /// Pass the signed assertion to create_proof_of_control_input_complete with the same arguments.
    pub async fn create_proof_of_control_input_init(
        &self,
        store_id: String,
        body: CreateProofOfControlInputRequest,
    ) -> Result<crate::signer::UserActionChallenge, crate::error::Error> {
        let path = format!(
            "/key-stores/{}/proof-of-control/input",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        self.client
            .create_user_action_challenge(reqwest::Method::POST, &path, Some(&body))
            .await
    }

    /// Finishes delegated signing for createProofOfControlInput: submits the signed challenge
    /// and issues the request.
    pub async fn create_proof_of_control_input_complete(
        &self,
        store_id: String,
        body: CreateProofOfControlInputRequest,
        challenge_identifier: String,
        assertion: crate::signer::CredentialAssertion,
    ) -> Result<(), crate::error::Error> {
        let path = format!(
            "/key-stores/{}/proof-of-control/input",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        let user_action = self
            .client
            .complete_user_action_signing(challenge_identifier, &assertion)
            .await?;
        self.client
            .request_no_content_with_user_action(
                reqwest::Method::POST,
                &path,
                Some(&body),
                &user_action,
            )
            .await
    }

    /// Lists the key stores of your organization.
    pub async fn list_key_stores(&self) -> Result<ListKeyStoresResponse, crate::error::Error> {
        let path = String::from("/key-stores");
        self.client
            .request::<ListKeyStoresResponse>(reqwest::Method::GET, &path, None, false)
            .await
    }

    /// Lists the signer clusters of your key store, including each signer's ID and encryption public key.
    pub async fn list_signers(&self) -> Result<ListSignersResponse, crate::error::Error> {
        let path = String::from("/signers");
        self.client
            .request::<ListSignersResponse>(reqwest::Method::GET, &path, None, false)
            .await
    }

    /// Submits the output archive produced by the offline signer fleet for an add-mac-user operation.
    pub async fn submit_add_mac_user_output(
        &self,
        store_id: String,
        body: SubmitAddMacUserOutputRequest,
        file: crate::client::MultipartFile,
    ) -> Result<SubmitAddMacUserOutputResponse, crate::error::Error> {
        let path = format!(
            "/key-stores/{}/add-mac-user/output",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        self.client
            .request_multipart::<SubmitAddMacUserOutputResponse>(
                reqwest::Method::POST,
                &path,
                Some(&body),
                file,
                true,
            )
            .await
    }

    /// Submits the output archive produced by the offline signer fleet for an add-provisioner operation.
    pub async fn submit_add_provisioner_output(
        &self,
        store_id: String,
        body: SubmitAddProvisionerOutputRequest,
        file: crate::client::MultipartFile,
    ) -> Result<SubmitAddProvisionerOutputResponse, crate::error::Error> {
        let path = format!(
            "/key-stores/{}/add-provisioner/output",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        self.client
            .request_multipart::<SubmitAddProvisionerOutputResponse>(
                reqwest::Method::POST,
                &path,
                Some(&body),
                file,
                true,
            )
            .await
    }

    /// Submits the output archive produced by the offline signer fleet for a clone operation.
    pub async fn submit_clone_output(
        &self,
        store_id: String,
        body: SubmitCloneOutputRequest,
        file: crate::client::MultipartFile,
    ) -> Result<SubmitCloneOutputResponse, crate::error::Error> {
        let path = format!(
            "/key-stores/{}/clone/output",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        self.client
            .request_multipart::<SubmitCloneOutputResponse>(
                reqwest::Method::POST,
                &path,
                Some(&body),
                file,
                true,
            )
            .await
    }

    /// Submits the output archive produced by the offline signer fleet for a genesis operation.
    pub async fn submit_genesis_output(
        &self,
        store_id: String,
        body: SubmitGenesisOutputRequest,
        file: crate::client::MultipartFile,
    ) -> Result<SubmitGenesisOutputResponse, crate::error::Error> {
        let path = format!(
            "/key-stores/{}/genesis/output",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        self.client
            .request_multipart::<SubmitGenesisOutputResponse>(
                reqwest::Method::POST,
                &path,
                Some(&body),
                file,
                true,
            )
            .await
    }

    /// Submit Key Harvest Output
    pub async fn submit_key_harvest_output(
        &self,
        store_id: String,
        body: SubmitKeyHarvestOutputRequest,
        file: crate::client::MultipartFile,
    ) -> Result<SubmitKeyHarvestOutputResponse, crate::error::Error> {
        let path = format!(
            "/key-stores/{}/key-harvest/output",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        self.client
            .request_multipart::<SubmitKeyHarvestOutputResponse>(
                reqwest::Method::POST,
                &path,
                Some(&body),
                file,
                true,
            )
            .await
    }

    /// Submits the output archive produced by the offline signer fleet for an onchain-sign operation.
    pub async fn submit_onchain_sign_output(
        &self,
        store_id: String,
        body: SubmitOnchainSignOutputRequest,
        file: crate::client::MultipartFile,
    ) -> Result<SubmitOnchainSignOutputResponse, crate::error::Error> {
        let path = format!(
            "/key-stores/{}/onchain-sign/output",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        self.client
            .request_multipart::<SubmitOnchainSignOutputResponse>(
                reqwest::Method::POST,
                &path,
                Some(&body),
                file,
                true,
            )
            .await
    }

    /// Submits the output archive produced by the offline signer fleet for a proof-of-control operation.
    pub async fn submit_proof_of_control_output(
        &self,
        store_id: String,
        body: SubmitProofOfControlOutputRequest,
        file: crate::client::MultipartFile,
    ) -> Result<SubmitProofOfControlOutputResponse, crate::error::Error> {
        let path = format!(
            "/key-stores/{}/proof-of-control/output",
            urlencoding::encode(&store_id)
        );
        let body = serde_json::to_value(&body)?;
        self.client
            .request_multipart::<SubmitProofOfControlOutputResponse>(
                reqwest::Method::POST,
                &path,
                Some(&body),
                file,
                true,
            )
            .await
    }
}