|
3 | 3 | # Blocklists Methods
|
4 | 4 | | Method | Description |
|
5 | 5 | | ------ | ----------- |
|
6 |
| -| [get_blocklists](#get_blocklists) | Get multiple blocklists. Only blocklists owned by your organization, |
7 |
| - shared with your organization or public blocklists are returned. Filters and pagination are available as query parameters. | |
8 |
| -| [create_blocklist](#create_blocklist) | Create a new blocklist owned by your organization. The name must be unique within your organization. |
9 |
| - The list will only be visible to your organization and organizations you shared the blocklist with. This operation is submitted to quotas | |
| 6 | +| [get_blocklists](#get_blocklists) | Get multiple blocklists. Only blocklists owned by your organization, shared with your organization or public blocklists are returned. Filters and pagination are available as query parameters. | |
| 7 | +| [create_blocklist](#create_blocklist) | Create a new blocklist owned by your organization. The name must be unique within your organization. The list will only be visible to your organization and organizations you shared the blocklist with. This operation is submitted to quotas | |
10 | 8 | | [get_blocklist](#get_blocklist) | Get the details of a blocklist by ID. The content of the blocklist is not returned. |
|
11 |
| -| [delete_blocklist](#delete_blocklist) | Delete a blocklist by ID. If the blocklist is shared with other organizations or it has subscriptions, the operation will fail. |
12 |
| - If you want to force delete the blocklist, you can use the force query parameter, so the blocklists will be unshared / unsubscribed. | |
| 9 | +| [delete_blocklist](#delete_blocklist) | Delete a blocklist by ID. If the blocklist is shared with other organizations or it has subscriptions, the operation will fail. If you want to force delete the blocklist, you can use the force query parameter, so the blocklists will be unshared / unsubscribed. | |
13 | 10 | | [update_blocklist](#update_blocklist) | Update a blocklist's details by ID. It is not possible to update the blocklist content using this operation. |
|
14 | 11 | | [add_ips_to_blocklist](#add_ips_to_blocklist) | Add IPs to a blocklist. If an IP is already in the blocklist, its expiration will be updated with the new expiration. |
|
15 | 12 | | [delete_ips_from_blocklist](#delete_ips_from_blocklist) | Delete IPs from a blocklist |
|
16 |
| -| [download_blocklist_content](#download_blocklist_content) | Download blocklist content as a list of ips as plain text separated by new lines. The response will include the ETag header for cache control. |
17 |
| - If_Modified_Since and If_None_Match cache control headers are supported for conditional requests. | |
| 13 | +| [download_blocklist_content](#download_blocklist_content) | Download blocklist content as a list of ips as plain text separated by new lines. The response will include the ETag header for cache control. If_Modified_Since and If_None_Match cache control headers are supported for conditional requests. | |
18 | 14 | | [get_blocklist_subscribers](#get_blocklist_subscribers) | Get blocklist subscribers within your organization. |
|
19 |
| -| [subscribe_blocklist](#subscribe_blocklist) | Subscribe to a blocklist with a remediation type. If the entity type is the full organization or a Tag, |
20 |
| - all the engines belonging to the organization or the Tag will be subscribed |
21 |
| - and new engines that will join the organization or the Tag will also be automatically subscribed. |
22 |
| - If the subscription has been done on an organization or Tag you cannot unsubscribe individual engines. |
23 |
| - In case of errors for some subscribers, the operation will still succeed for the entities that were successfully subscribed |
24 |
| - and you'll have the list of errors in the operation's result. |
25 |
| - This operation is submitted to quotas. | |
| 15 | +| [subscribe_blocklist](#subscribe_blocklist) | Subscribe to a blocklist with a remediation type. If the entity type is the full organization or a Tag, all the engines belonging to the organization or the Tag will be subscribed and new engines that will join the organization or the Tag will also be automatically subscribed. If the subscription has been done on an organization or Tag you cannot unsubscribe individual engines. In case of errors for some subscribers, the operation will still succeed for the entities that were successfully subscribed and you'll have the list of errors in the operation's result. This operation is submitted to quotas. | |
26 | 16 | | [unsubscribe_blocklist](#unsubscribe_blocklist) | Unsubscribe from a blocklist. You cannot unsubscribe individual engines if the subscription has been done on an organization or Tag. |
|
27 |
| -| [share_blocklist](#share_blocklist) | Share a blocklist with other organizations given their IDs. The blocklist must be owned by your organization. |
28 |
| - You can give read-only access or read-write access to the blocklist. Sharing a blocklist will not automatically subscribe the shared organizations to the blocklist. | |
29 |
| -| [unshare_blocklist](#unshare_blocklist) | Unshare a blocklist with other organizations. If the blocklist is subscribed by the organization, the operation will fail. |
30 |
| - Use force query parameter to unshare a blocklist even if subscriptions exists. | |
| 17 | +| [share_blocklist](#share_blocklist) | Share a blocklist with other organizations given their IDs. The blocklist must be owned by your organization. You can give read-only access or read-write access to the blocklist. Sharing a blocklist will not automatically subscribe the shared organizations to the blocklist. | |
| 18 | +| [unshare_blocklist](#unshare_blocklist) | Unshare a blocklist with other organizations. If the blocklist is subscribed by the organization, the operation will fail.Use force query parameter to unshare a blocklist even if subscriptions exists. | |
31 | 19 |
|
32 | 20 | ## **get_blocklists**
|
33 |
| -### Get multiple blocklists. Only blocklists owned by your organization, |
34 |
| - shared with your organization or public blocklists are returned. Filters and pagination are available as query parameters. |
| 21 | +### Get multiple blocklists. Only blocklists owned by your organization, shared with your organization or public blocklists are returned. Filters and pagination are available as query parameters. |
35 | 22 | - Endpoint: `/blocklists`
|
36 | 23 | - Method: `GET`
|
37 | 24 |
|
@@ -73,8 +60,7 @@ print(response)
|
73 | 60 |
|
74 | 61 |
|
75 | 62 | ## **create_blocklist**
|
76 |
| -### Create a new blocklist owned by your organization. The name must be unique within your organization. |
77 |
| - The list will only be visible to your organization and organizations you shared the blocklist with. This operation is submitted to quotas |
| 63 | +### Create a new blocklist owned by your organization. The name must be unique within your organization. The list will only be visible to your organization and organizations you shared the blocklist with. This operation is submitted to quotas |
78 | 64 | - Endpoint: `/blocklists`
|
79 | 65 | - Method: `POST`
|
80 | 66 |
|
@@ -149,8 +135,7 @@ print(response)
|
149 | 135 |
|
150 | 136 |
|
151 | 137 | ## **delete_blocklist**
|
152 |
| -### Delete a blocklist by ID. If the blocklist is shared with other organizations or it has subscriptions, the operation will fail. |
153 |
| - If you want to force delete the blocklist, you can use the force query parameter, so the blocklists will be unshared / unsubscribed. |
| 138 | +### Delete a blocklist by ID. If the blocklist is shared with other organizations or it has subscriptions, the operation will fail. If you want to force delete the blocklist, you can use the force query parameter, so the blocklists will be unshared / unsubscribed. |
154 | 139 | - Endpoint: `/blocklists/{blocklist_id}`
|
155 | 140 | - Method: `DELETE`
|
156 | 141 |
|
@@ -306,8 +291,7 @@ print(response)
|
306 | 291 |
|
307 | 292 |
|
308 | 293 | ## **download_blocklist_content**
|
309 |
| -### Download blocklist content as a list of ips as plain text separated by new lines. The response will include the ETag header for cache control. |
310 |
| - If_Modified_Since and If_None_Match cache control headers are supported for conditional requests. |
| 294 | +### Download blocklist content as a list of ips as plain text separated by new lines. The response will include the ETag header for cache control. If_Modified_Since and If_None_Match cache control headers are supported for conditional requests. |
311 | 295 | - Endpoint: `/blocklists/{blocklist_id}/download`
|
312 | 296 | - Method: `GET`
|
313 | 297 |
|
@@ -379,13 +363,7 @@ print(response)
|
379 | 363 |
|
380 | 364 |
|
381 | 365 | ## **subscribe_blocklist**
|
382 |
| -### Subscribe to a blocklist with a remediation type. If the entity type is the full organization or a Tag, |
383 |
| - all the engines belonging to the organization or the Tag will be subscribed |
384 |
| - and new engines that will join the organization or the Tag will also be automatically subscribed. |
385 |
| - If the subscription has been done on an organization or Tag you cannot unsubscribe individual engines. |
386 |
| - In case of errors for some subscribers, the operation will still succeed for the entities that were successfully subscribed |
387 |
| - and you'll have the list of errors in the operation's result. |
388 |
| - This operation is submitted to quotas. |
| 366 | +### Subscribe to a blocklist with a remediation type. If the entity type is the full organization or a Tag, all the engines belonging to the organization or the Tag will be subscribed and new engines that will join the organization or the Tag will also be automatically subscribed. If the subscription has been done on an organization or Tag you cannot unsubscribe individual engines. In case of errors for some subscribers, the operation will still succeed for the entities that were successfully subscribed and you'll have the list of errors in the operation's result. This operation is submitted to quotas. |
389 | 367 | - Endpoint: `/blocklists/{blocklist_id}/subscribers`
|
390 | 368 | - Method: `POST`
|
391 | 369 |
|
@@ -458,8 +436,7 @@ print(response)
|
458 | 436 |
|
459 | 437 |
|
460 | 438 | ## **share_blocklist**
|
461 |
| -### Share a blocklist with other organizations given their IDs. The blocklist must be owned by your organization. |
462 |
| - You can give read-only access or read-write access to the blocklist. Sharing a blocklist will not automatically subscribe the shared organizations to the blocklist. |
| 439 | +### Share a blocklist with other organizations given their IDs. The blocklist must be owned by your organization. You can give read-only access or read-write access to the blocklist. Sharing a blocklist will not automatically subscribe the shared organizations to the blocklist. |
463 | 440 | - Endpoint: `/blocklists/{blocklist_id}/shares`
|
464 | 441 | - Method: `POST`
|
465 | 442 |
|
@@ -496,8 +473,7 @@ print(response)
|
496 | 473 |
|
497 | 474 |
|
498 | 475 | ## **unshare_blocklist**
|
499 |
| -### Unshare a blocklist with other organizations. If the blocklist is subscribed by the organization, the operation will fail. |
500 |
| - Use force query parameter to unshare a blocklist even if subscriptions exists. |
| 476 | +### Unshare a blocklist with other organizations. If the blocklist is subscribed by the organization, the operation will fail.Use force query parameter to unshare a blocklist even if subscriptions exists. |
501 | 477 | - Endpoint: `/blocklists/{blocklist_id}/shares/{unshare_organization_id}`
|
502 | 478 | - Method: `DELETE`
|
503 | 479 |
|
|
0 commit comments