run make gen

This commit is contained in:
LexLuthr 2022-05-13 00:27:26 +05:30
parent 4326fc370b
commit 6115bd02f1
4 changed files with 16 additions and 17 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -22,12 +22,12 @@
* [CreateBackup](#CreateBackup) * [CreateBackup](#CreateBackup)
* [Dagstore](#Dagstore) * [Dagstore](#Dagstore)
* [DagstoreGC](#DagstoreGC) * [DagstoreGC](#DagstoreGC)
* [DagstoreRegisterShard] (#DagstoreRegisterShard)
* [DagstoreInitializeAll](#DagstoreInitializeAll) * [DagstoreInitializeAll](#DagstoreInitializeAll)
* [DagstoreInitializeShard](#DagstoreInitializeShard) * [DagstoreInitializeShard](#DagstoreInitializeShard)
* [DagstoreListShards](#DagstoreListShards) * [DagstoreListShards](#DagstoreListShards)
* [DagstoreLookupPieces](#DagstoreLookupPieces) * [DagstoreLookupPieces](#DagstoreLookupPieces)
* [DagstoreRecoverShard](#DagstoreRecoverShard) * [DagstoreRecoverShard](#DagstoreRecoverShard)
* [DagstoreRegisterShard](#DagstoreRegisterShard)
* [Deals](#Deals) * [Deals](#Deals)
* [DealsConsiderOfflineRetrievalDeals](#DealsConsiderOfflineRetrievalDeals) * [DealsConsiderOfflineRetrievalDeals](#DealsConsiderOfflineRetrievalDeals)
* [DealsConsiderOfflineStorageDeals](#DealsConsiderOfflineStorageDeals) * [DealsConsiderOfflineStorageDeals](#DealsConsiderOfflineStorageDeals)
@ -510,22 +510,6 @@ Response:
] ]
``` ```
### DagstoreRegisterShard
DagstoreRegisterShard registers a shard with the dagstore. It takes
a PieceCID as input and generates a success or error message.
Perms: admin
Inputs:
```json
[
"string value"
]
```
Response: `{}`
### DagstoreInitializeAll ### DagstoreInitializeAll
DagstoreInitializeAll initializes all uninitialized shards in bulk, DagstoreInitializeAll initializes all uninitialized shards in bulk,
according to the policy passed in the parameters. according to the policy passed in the parameters.
@ -656,6 +640,21 @@ Inputs:
Response: `{}` Response: `{}`
### DagstoreRegisterShard
DagstoreRegisterShard registers a shard manually with dagstore with given pieceCID
Perms: admin
Inputs:
```json
[
"string value"
]
```
Response: `{}`
## Deals ## Deals