Skip to content

Commit 76b1d87

Browse files
Release 1.16.0
1 parent 9bce25e commit 76b1d87

File tree

14 files changed

+930
-127
lines changed

14 files changed

+930
-127
lines changed

poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "polytomic"
33

44
[tool.poetry]
55
name = "polytomic"
6-
version = "1.15.5"
6+
version = "1.16.0"
77
description = ""
88
readme = "README.md"
99
authors = []

reference.md

Lines changed: 189 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -729,6 +729,63 @@ client.bulk_sync.activate(
729729
</dl>
730730

731731

732+
</dd>
733+
</dl>
734+
</details>
735+
736+
<details><summary><code>client.bulk_sync.<a href="src/polytomic/bulk_sync/client.py">cancel</a>(...)</code></summary>
737+
<dl>
738+
<dd>
739+
740+
#### 🔌 Usage
741+
742+
<dl>
743+
<dd>
744+
745+
<dl>
746+
<dd>
747+
748+
```python
749+
from polytomic import Polytomic
750+
751+
client = Polytomic(
752+
version="YOUR_VERSION",
753+
token="YOUR_TOKEN",
754+
)
755+
client.bulk_sync.cancel(
756+
id="248df4b7-aa70-47b8-a036-33ac447e668d",
757+
)
758+
759+
```
760+
</dd>
761+
</dl>
762+
</dd>
763+
</dl>
764+
765+
#### ⚙️ Parameters
766+
767+
<dl>
768+
<dd>
769+
770+
<dl>
771+
<dd>
772+
773+
**id:** `str` — The active execution of this bulk sync ID will be cancelled.
774+
775+
</dd>
776+
</dl>
777+
778+
<dl>
779+
<dd>
780+
781+
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
782+
783+
</dd>
784+
</dl>
785+
</dd>
786+
</dl>
787+
788+
732789
</dd>
733790
</dl>
734791
</details>
@@ -5324,22 +5381,6 @@ client.organization.remove(
53245381
<dl>
53255382
<dd>
53265383

5327-
#### 📝 Description
5328-
5329-
<dl>
5330-
<dd>
5331-
5332-
<dl>
5333-
<dd>
5334-
5335-
> 🚧 Requires partner key
5336-
>
5337-
> User endpoints are only accessible using [partner keys](https://apidocs.polytomic.com/guides/obtaining-api-keys#partner-keys).
5338-
</dd>
5339-
</dl>
5340-
</dd>
5341-
</dl>
5342-
53435384
#### 🔌 Usage
53445385

53455386
<dl>
@@ -5397,22 +5438,6 @@ client.users.list(
53975438
<dl>
53985439
<dd>
53995440

5400-
#### 📝 Description
5401-
5402-
<dl>
5403-
<dd>
5404-
5405-
<dl>
5406-
<dd>
5407-
5408-
> 🚧 Requires partner key
5409-
>
5410-
> User endpoints are only accessible using [partner keys](https://apidocs.polytomic.com/guides/obtaining-api-keys#partner-keys).
5411-
</dd>
5412-
</dl>
5413-
</dd>
5414-
</dl>
5415-
54165441
#### 🔌 Usage
54175442

54185443
<dl>
@@ -5487,22 +5512,6 @@ client.users.create(
54875512
<dl>
54885513
<dd>
54895514

5490-
#### 📝 Description
5491-
5492-
<dl>
5493-
<dd>
5494-
5495-
<dl>
5496-
<dd>
5497-
5498-
> 🚧 Requires partner key
5499-
>
5500-
> User endpoints are only accessible using [partner keys](https://apidocs.polytomic.com/guides/obtaining-api-keys#partner-keys).
5501-
</dd>
5502-
</dl>
5503-
</dd>
5504-
</dl>
5505-
55065515
#### 🔌 Usage
55075516

55085517
<dl>
@@ -5569,22 +5578,6 @@ client.users.get(
55695578
<dl>
55705579
<dd>
55715580

5572-
#### 📝 Description
5573-
5574-
<dl>
5575-
<dd>
5576-
5577-
<dl>
5578-
<dd>
5579-
5580-
> 🚧 Requires partner key
5581-
>
5582-
> User endpoints are only accessible using [partner keys](https://apidocs.polytomic.com/guides/obtaining-api-keys#partner-keys).
5583-
</dd>
5584-
</dl>
5585-
</dd>
5586-
</dl>
5587-
55885581
#### 🔌 Usage
55895582

55905583
<dl>
@@ -5668,22 +5661,6 @@ client.users.update(
56685661
<dl>
56695662
<dd>
56705663

5671-
#### 📝 Description
5672-
5673-
<dl>
5674-
<dd>
5675-
5676-
<dl>
5677-
<dd>
5678-
5679-
> 🚧 Requires partner key
5680-
>
5681-
> User endpoints are only accessible using [partner keys](https://apidocs.polytomic.com/guides/obtaining-api-keys#partner-keys).
5682-
</dd>
5683-
</dl>
5684-
</dd>
5685-
</dl>
5686-
56875664
#### 🔌 Usage
56885665

56895666
<dl>
@@ -6572,6 +6549,72 @@ client.bulk_sync.executions.get(
65726549
</dl>
65736550

65746551

6552+
</dd>
6553+
</dl>
6554+
</details>
6555+
6556+
<details><summary><code>client.bulk_sync.executions.<a href="src/polytomic/bulk_sync/executions/client.py">cancel</a>(...)</code></summary>
6557+
<dl>
6558+
<dd>
6559+
6560+
#### 🔌 Usage
6561+
6562+
<dl>
6563+
<dd>
6564+
6565+
<dl>
6566+
<dd>
6567+
6568+
```python
6569+
from polytomic import Polytomic
6570+
6571+
client = Polytomic(
6572+
version="YOUR_VERSION",
6573+
token="YOUR_TOKEN",
6574+
)
6575+
client.bulk_sync.executions.cancel(
6576+
id="248df4b7-aa70-47b8-a036-33ac447e668d",
6577+
exec_id="248df4b7-aa70-47b8-a036-33ac447e668d",
6578+
)
6579+
6580+
```
6581+
</dd>
6582+
</dl>
6583+
</dd>
6584+
</dl>
6585+
6586+
#### ⚙️ Parameters
6587+
6588+
<dl>
6589+
<dd>
6590+
6591+
<dl>
6592+
<dd>
6593+
6594+
**id:** `str` — The bulk sync ID.
6595+
6596+
</dd>
6597+
</dl>
6598+
6599+
<dl>
6600+
<dd>
6601+
6602+
**exec_id:** `str` — The execution ID to cancel.
6603+
6604+
</dd>
6605+
</dl>
6606+
6607+
<dl>
6608+
<dd>
6609+
6610+
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
6611+
6612+
</dd>
6613+
</dl>
6614+
</dd>
6615+
</dl>
6616+
6617+
65756618
</dd>
65766619
</dl>
65776620
</details>
@@ -7039,6 +7082,72 @@ client.bulk_sync.schemas.update(
70397082
</dl>
70407083

70417084

7085+
</dd>
7086+
</dl>
7087+
</details>
7088+
7089+
<details><summary><code>client.bulk_sync.schemas.<a href="src/polytomic/bulk_sync/schemas/client.py">cancel</a>(...)</code></summary>
7090+
<dl>
7091+
<dd>
7092+
7093+
#### 🔌 Usage
7094+
7095+
<dl>
7096+
<dd>
7097+
7098+
<dl>
7099+
<dd>
7100+
7101+
```python
7102+
from polytomic import Polytomic
7103+
7104+
client = Polytomic(
7105+
version="YOUR_VERSION",
7106+
token="YOUR_TOKEN",
7107+
)
7108+
client.bulk_sync.schemas.cancel(
7109+
id="248df4b7-aa70-47b8-a036-33ac447e668d",
7110+
schema_id="schema_id",
7111+
)
7112+
7113+
```
7114+
</dd>
7115+
</dl>
7116+
</dd>
7117+
</dl>
7118+
7119+
#### ⚙️ Parameters
7120+
7121+
<dl>
7122+
<dd>
7123+
7124+
<dl>
7125+
<dd>
7126+
7127+
**id:** `str` — The bulk sync ID.
7128+
7129+
</dd>
7130+
</dl>
7131+
7132+
<dl>
7133+
<dd>
7134+
7135+
**schema_id:** `str` — The schema ID to cancel for the bulk sync.
7136+
7137+
</dd>
7138+
</dl>
7139+
7140+
<dl>
7141+
<dd>
7142+
7143+
**request_options:** `typing.Optional[RequestOptions]` — Request-specific configuration.
7144+
7145+
</dd>
7146+
</dl>
7147+
</dd>
7148+
</dl>
7149+
7150+
70427151
</dd>
70437152
</dl>
70447153
</details>

src/polytomic/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
BulkMultiScheduleConfiguration,
2020
BulkNormalizeNames,
2121
BulkSchedule,
22+
BulkScheduleSyncMode,
2223
BulkSchema,
2324
BulkSchemaEnvelope,
2425
BulkSchemaExecutionStatus,
@@ -46,6 +47,8 @@
4647
BulkSyncSourceStatusEnvelope,
4748
BulkSyncStatusEnvelope,
4849
BulkSyncStatusResponse,
50+
CancelBulkSyncResponse,
51+
CancelBulkSyncResponseEnvelope,
4952
CancelModelSyncResponse,
5053
CancelModelSyncResponseEnvelope,
5154
CommonOutputActor,
@@ -251,6 +254,7 @@
251254
"BulkMultiScheduleConfiguration",
252255
"BulkNormalizeNames",
253256
"BulkSchedule",
257+
"BulkScheduleSyncMode",
254258
"BulkSchema",
255259
"BulkSchemaEnvelope",
256260
"BulkSchemaExecutionStatus",
@@ -278,6 +282,8 @@
278282
"BulkSyncSourceStatusEnvelope",
279283
"BulkSyncStatusEnvelope",
280284
"BulkSyncStatusResponse",
285+
"CancelBulkSyncResponse",
286+
"CancelBulkSyncResponseEnvelope",
281287
"CancelModelSyncResponse",
282288
"CancelModelSyncResponseEnvelope",
283289
"CommonOutputActor",

0 commit comments

Comments
 (0)