|
28 | 28 | from ..types.rest_err_response import RestErrResponse |
29 | 29 | from .executions.client import AsyncExecutionsClient, ExecutionsClient |
30 | 30 | from .schemas.client import AsyncSchemasClient, SchemasClient |
| 31 | +from .types.v_2_create_bulk_sync_request_schemas_item import V2CreateBulkSyncRequestSchemasItem |
| 32 | +from .types.v_2_update_bulk_sync_request_schemas_item import V2UpdateBulkSyncRequestSchemasItem |
31 | 33 |
|
32 | 34 | # this is used as the default value for optional parameters |
33 | 35 | OMIT = typing.cast(typing.Any, ...) |
@@ -110,7 +112,7 @@ def create( |
110 | 112 | discover: typing.Optional[bool] = OMIT, |
111 | 113 | organization_id: typing.Optional[str] = OMIT, |
112 | 114 | policies: typing.Optional[typing.Sequence[str]] = OMIT, |
113 | | - schemas: typing.Optional[typing.Sequence[str]] = OMIT, |
| 115 | + schemas: typing.Optional[typing.Sequence[V2CreateBulkSyncRequestSchemasItem]] = OMIT, |
114 | 116 | source_configuration: typing.Optional[typing.Dict[str, typing.Any]] = OMIT, |
115 | 117 | request_options: typing.Optional[RequestOptions] = None, |
116 | 118 | ) -> BulkSyncResponseEnvelope: |
@@ -145,7 +147,8 @@ def create( |
145 | 147 |
|
146 | 148 | policies : typing.Optional[typing.Sequence[str]] |
147 | 149 |
|
148 | | - schemas : typing.Optional[typing.Sequence[str]] |
| 150 | + schemas : typing.Optional[typing.Sequence[V2CreateBulkSyncRequestSchemasItem]] |
| 151 | + List of schemas to sync; if omitted, all schemas will be selected for syncing. |
149 | 152 |
|
150 | 153 | source_configuration : typing.Optional[typing.Dict[str, typing.Any]] |
151 | 154 |
|
@@ -340,7 +343,7 @@ def update( |
340 | 343 | discover: typing.Optional[bool] = OMIT, |
341 | 344 | organization_id: typing.Optional[str] = OMIT, |
342 | 345 | policies: typing.Optional[typing.Sequence[str]] = OMIT, |
343 | | - schemas: typing.Optional[typing.Sequence[str]] = OMIT, |
| 346 | + schemas: typing.Optional[typing.Sequence[V2UpdateBulkSyncRequestSchemasItem]] = OMIT, |
344 | 347 | source_configuration: typing.Optional[typing.Dict[str, typing.Any]] = OMIT, |
345 | 348 | request_options: typing.Optional[RequestOptions] = None, |
346 | 349 | ) -> BulkSyncResponseEnvelope: |
@@ -381,7 +384,8 @@ def update( |
381 | 384 |
|
382 | 385 | policies : typing.Optional[typing.Sequence[str]] |
383 | 386 |
|
384 | | - schemas : typing.Optional[typing.Sequence[str]] |
| 387 | + schemas : typing.Optional[typing.Sequence[V2UpdateBulkSyncRequestSchemasItem]] |
| 388 | + List of schemas to sync; if omitted, all schemas will be selected for syncing. |
385 | 389 |
|
386 | 390 | source_configuration : typing.Optional[typing.Dict[str, typing.Any]] |
387 | 391 |
|
@@ -1023,7 +1027,7 @@ async def create( |
1023 | 1027 | discover: typing.Optional[bool] = OMIT, |
1024 | 1028 | organization_id: typing.Optional[str] = OMIT, |
1025 | 1029 | policies: typing.Optional[typing.Sequence[str]] = OMIT, |
1026 | | - schemas: typing.Optional[typing.Sequence[str]] = OMIT, |
| 1030 | + schemas: typing.Optional[typing.Sequence[V2CreateBulkSyncRequestSchemasItem]] = OMIT, |
1027 | 1031 | source_configuration: typing.Optional[typing.Dict[str, typing.Any]] = OMIT, |
1028 | 1032 | request_options: typing.Optional[RequestOptions] = None, |
1029 | 1033 | ) -> BulkSyncResponseEnvelope: |
@@ -1058,7 +1062,8 @@ async def create( |
1058 | 1062 |
|
1059 | 1063 | policies : typing.Optional[typing.Sequence[str]] |
1060 | 1064 |
|
1061 | | - schemas : typing.Optional[typing.Sequence[str]] |
| 1065 | + schemas : typing.Optional[typing.Sequence[V2CreateBulkSyncRequestSchemasItem]] |
| 1066 | + List of schemas to sync; if omitted, all schemas will be selected for syncing. |
1062 | 1067 |
|
1063 | 1068 | source_configuration : typing.Optional[typing.Dict[str, typing.Any]] |
1064 | 1069 |
|
@@ -1253,7 +1258,7 @@ async def update( |
1253 | 1258 | discover: typing.Optional[bool] = OMIT, |
1254 | 1259 | organization_id: typing.Optional[str] = OMIT, |
1255 | 1260 | policies: typing.Optional[typing.Sequence[str]] = OMIT, |
1256 | | - schemas: typing.Optional[typing.Sequence[str]] = OMIT, |
| 1261 | + schemas: typing.Optional[typing.Sequence[V2UpdateBulkSyncRequestSchemasItem]] = OMIT, |
1257 | 1262 | source_configuration: typing.Optional[typing.Dict[str, typing.Any]] = OMIT, |
1258 | 1263 | request_options: typing.Optional[RequestOptions] = None, |
1259 | 1264 | ) -> BulkSyncResponseEnvelope: |
@@ -1294,7 +1299,8 @@ async def update( |
1294 | 1299 |
|
1295 | 1300 | policies : typing.Optional[typing.Sequence[str]] |
1296 | 1301 |
|
1297 | | - schemas : typing.Optional[typing.Sequence[str]] |
| 1302 | + schemas : typing.Optional[typing.Sequence[V2UpdateBulkSyncRequestSchemasItem]] |
| 1303 | + List of schemas to sync; if omitted, all schemas will be selected for syncing. |
1298 | 1304 |
|
1299 | 1305 | source_configuration : typing.Optional[typing.Dict[str, typing.Any]] |
1300 | 1306 |
|
|
0 commit comments