-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Autogenerated] markdowns for toloka-kit v1.2.2 release
- Loading branch information
1 parent
c28c2ac
commit d182520
Showing
1,045 changed files
with
1,793 additions
and
1,348 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...kit/reference/toloka.async_client.client.AsyncTolokaClient.accept_assignment.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...e/toloka.async_client.client.AsyncTolokaClient.add_message_thread_to_folders.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
...kit/reference/toloka.async_client.client.AsyncTolokaClient.archive_app_batch.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# archive_app_batch | ||
`toloka.async_client.client.AsyncTolokaClient.archive_app_batch` | [Source code](https://github.com/Toloka/toloka-kit/blob/v1.2.2/src/async_client/client.py#L0) | ||
|
||
```python | ||
async archive_app_batch( | ||
self, | ||
app_project_id: str, | ||
batch_id: str | ||
) | ||
``` | ||
|
||
Archives the batch with the ID specified in the request to hide its data. | ||
|
||
|
||
You can archive the batches which are not currently being processed (are not in the `PROCESSING` status). You | ||
must stop the batches before archiving them. The batch gets the `ARCHIVE` status. | ||
|
||
## Parameters Description | ||
|
||
| Parameters | Type | Description | | ||
| :----------| :----| :-----------| | ||
`app_project_id`|**str**|<p>The ID of the project with which the batch is associated.</p> | ||
`batch_id`|**str**|<p>The ID of the batch you want to archive.</p> | ||
|
||
**Examples:** | ||
|
||
|
||
```python | ||
toloka_client.archive_app_batch( | ||
app_project_id='Q2d15QBjpwWuDz8Z321g', | ||
batch_id='4Va2BBWKL88S4QyAgVje' | ||
) | ||
``` |
2 changes: 1 addition & 1 deletion
2
...t/reference/toloka.async_client.client.AsyncTolokaClient.archive_app_project.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...loka-kit/reference/toloka.async_client.client.AsyncTolokaClient.archive_pool.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...it/reference/toloka.async_client.client.AsyncTolokaClient.archive_pool_async.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...a-kit/reference/toloka.async_client.client.AsyncTolokaClient.archive_project.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...reference/toloka.async_client.client.AsyncTolokaClient.archive_project_async.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...-kit/reference/toloka.async_client.client.AsyncTolokaClient.archive_training.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...eference/toloka.async_client.client.AsyncTolokaClient.archive_training_async.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 34 additions & 0 deletions
34
...lient.client.AsyncTolokaClient.check_update_project_for_major_version_change.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# check_update_project_for_major_version_change | ||
`toloka.async_client.client.AsyncTolokaClient.check_update_project_for_major_version_change` | [Source code](https://github.com/Toloka/toloka-kit/blob/v1.2.2/src/async_client/client.py#L0) | ||
|
||
```python | ||
async check_update_project_for_major_version_change( | ||
self, | ||
project_id: str, | ||
project: Project | ||
) | ||
``` | ||
|
||
Checks if the project update is a breaking change or not. | ||
|
||
|
||
This method is similar to the `update_project` method, but instead of actually applying the changes it checks if | ||
the update is a breaking change or not. If the update is a breaking change, every pool in the project will not | ||
receive the current project update and any future project changes and will be tied to the last version of the | ||
project before the breaking change happened. | ||
|
||
## Parameters Description | ||
|
||
| Parameters | Type | Description | | ||
| :----------| :----| :-----------| | ||
`project_id`|**str**|<p>The ID of the project to be updated.</p> | ||
`project`|**[Project](toloka.client.project.Project.md)**|<p>The project with new parameters.</p> | ||
|
||
* **Returns:** | ||
|
||
enum value that describes the level of difference between the current project | ||
and the project that would be created if the update is applied. | ||
|
||
* **Return type:** | ||
|
||
[ProjectUpdateDifferenceLevel](toloka.client.project.ProjectUpdateDifferenceLevel.md) |
2 changes: 1 addition & 1 deletion
2
en/toloka-kit/reference/toloka.async_client.client.AsyncTolokaClient.clone_pool.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...-kit/reference/toloka.async_client.client.AsyncTolokaClient.clone_pool_async.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ka-kit/reference/toloka.async_client.client.AsyncTolokaClient.clone_training.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../reference/toloka.async_client.client.AsyncTolokaClient.clone_training_async.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
en/toloka-kit/reference/toloka.async_client.client.AsyncTolokaClient.close_pool.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...-kit/reference/toloka.async_client.client.AsyncTolokaClient.close_pool_async.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...reference/toloka.async_client.client.AsyncTolokaClient.close_pool_for_update.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...nce/toloka.async_client.client.AsyncTolokaClient.close_pool_for_update_async.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.