Skip to content

Commit 428162c

Browse files
committed
SDK regeneration
1 parent 5875d43 commit 428162c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+335
-1339
lines changed

src/pipedream/actions/client.py

Lines changed: 36 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
from ..types.component import Component
99
from ..types.configure_prop_response import ConfigurePropResponse
1010
from ..types.reload_props_response import ReloadPropsResponse
11-
from ..types.run_action_opts_stash_id import RunActionOptsStashId
1211
from ..types.run_action_response import RunActionResponse
1312
from .raw_client import AsyncRawActionsClient, RawActionsClient
1413

@@ -126,10 +125,11 @@ def configure_prop(
126125
id: str,
127126
external_user_id: str,
128127
prop_name: str,
128+
async_handle: typing.Optional[str] = None,
129129
blocking: typing.Optional[bool] = OMIT,
130130
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
131131
dynamic_props_id: typing.Optional[str] = OMIT,
132-
async_handle: typing.Optional[str] = OMIT,
132+
configure_prop_opts_async_handle: typing.Optional[str] = OMIT,
133133
page: typing.Optional[float] = OMIT,
134134
prev_context: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
135135
query: typing.Optional[str] = OMIT,
@@ -147,6 +147,8 @@ def configure_prop(
147147
prop_name : str
148148
The name of the prop to configure
149149
150+
async_handle : typing.Optional[str]
151+
150152
blocking : typing.Optional[bool]
151153
Whether this operation should block until completion
152154
@@ -156,7 +158,7 @@ def configure_prop(
156158
dynamic_props_id : typing.Optional[str]
157159
The ID for dynamic props
158160
159-
async_handle : typing.Optional[str]
161+
configure_prop_opts_async_handle : typing.Optional[str]
160162
Handle for async operations
161163
162164
page : typing.Optional[float]
@@ -196,10 +198,11 @@ def configure_prop(
196198
id=id,
197199
external_user_id=external_user_id,
198200
prop_name=prop_name,
201+
async_handle=async_handle,
199202
blocking=blocking,
200203
configured_props=configured_props,
201204
dynamic_props_id=dynamic_props_id,
202-
async_handle=async_handle,
205+
configure_prop_opts_async_handle=configure_prop_opts_async_handle,
203206
page=page,
204207
prev_context=prev_context,
205208
query=query,
@@ -212,10 +215,11 @@ def reload_props(
212215
*,
213216
id: str,
214217
external_user_id: str,
218+
async_handle: typing.Optional[str] = None,
215219
blocking: typing.Optional[bool] = OMIT,
216220
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
217221
dynamic_props_id: typing.Optional[str] = OMIT,
218-
async_handle: typing.Optional[str] = OMIT,
222+
reload_props_opts_async_handle: typing.Optional[str] = OMIT,
219223
request_options: typing.Optional[RequestOptions] = None,
220224
) -> ReloadPropsResponse:
221225
"""
@@ -227,6 +231,8 @@ def reload_props(
227231
external_user_id : str
228232
The external user ID
229233
234+
async_handle : typing.Optional[str]
235+
230236
blocking : typing.Optional[bool]
231237
Whether this operation should block until completion
232238
@@ -236,7 +242,7 @@ def reload_props(
236242
dynamic_props_id : typing.Optional[str]
237243
The ID for dynamic props
238244
239-
async_handle : typing.Optional[str]
245+
reload_props_opts_async_handle : typing.Optional[str]
240246
Handle for async operations
241247
242248
request_options : typing.Optional[RequestOptions]
@@ -265,10 +271,11 @@ def reload_props(
265271
_response = self._raw_client.reload_props(
266272
id=id,
267273
external_user_id=external_user_id,
274+
async_handle=async_handle,
268275
blocking=blocking,
269276
configured_props=configured_props,
270277
dynamic_props_id=dynamic_props_id,
271-
async_handle=async_handle,
278+
reload_props_opts_async_handle=reload_props_opts_async_handle,
272279
request_options=request_options,
273280
)
274281
return _response.data
@@ -278,9 +285,9 @@ def run(
278285
*,
279286
id: str,
280287
external_user_id: str,
288+
async_handle: typing.Optional[str] = None,
281289
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
282290
dynamic_props_id: typing.Optional[str] = OMIT,
283-
stash_id: typing.Optional[RunActionOptsStashId] = OMIT,
284291
request_options: typing.Optional[RequestOptions] = None,
285292
) -> RunActionResponse:
286293
"""
@@ -292,14 +299,14 @@ def run(
292299
external_user_id : str
293300
The external user ID
294301
302+
async_handle : typing.Optional[str]
303+
295304
configured_props : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
296305
The configured properties for the action
297306
298307
dynamic_props_id : typing.Optional[str]
299308
The ID for dynamic props
300309
301-
stash_id : typing.Optional[RunActionOptsStashId]
302-
303310
request_options : typing.Optional[RequestOptions]
304311
Request-specific configuration.
305312
@@ -326,9 +333,9 @@ def run(
326333
_response = self._raw_client.run(
327334
id=id,
328335
external_user_id=external_user_id,
336+
async_handle=async_handle,
329337
configured_props=configured_props,
330338
dynamic_props_id=dynamic_props_id,
331-
stash_id=stash_id,
332339
request_options=request_options,
333340
)
334341
return _response.data
@@ -463,10 +470,11 @@ async def configure_prop(
463470
id: str,
464471
external_user_id: str,
465472
prop_name: str,
473+
async_handle: typing.Optional[str] = None,
466474
blocking: typing.Optional[bool] = OMIT,
467475
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
468476
dynamic_props_id: typing.Optional[str] = OMIT,
469-
async_handle: typing.Optional[str] = OMIT,
477+
configure_prop_opts_async_handle: typing.Optional[str] = OMIT,
470478
page: typing.Optional[float] = OMIT,
471479
prev_context: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
472480
query: typing.Optional[str] = OMIT,
@@ -484,6 +492,8 @@ async def configure_prop(
484492
prop_name : str
485493
The name of the prop to configure
486494
495+
async_handle : typing.Optional[str]
496+
487497
blocking : typing.Optional[bool]
488498
Whether this operation should block until completion
489499
@@ -493,7 +503,7 @@ async def configure_prop(
493503
dynamic_props_id : typing.Optional[str]
494504
The ID for dynamic props
495505
496-
async_handle : typing.Optional[str]
506+
configure_prop_opts_async_handle : typing.Optional[str]
497507
Handle for async operations
498508
499509
page : typing.Optional[float]
@@ -541,10 +551,11 @@ async def main() -> None:
541551
id=id,
542552
external_user_id=external_user_id,
543553
prop_name=prop_name,
554+
async_handle=async_handle,
544555
blocking=blocking,
545556
configured_props=configured_props,
546557
dynamic_props_id=dynamic_props_id,
547-
async_handle=async_handle,
558+
configure_prop_opts_async_handle=configure_prop_opts_async_handle,
548559
page=page,
549560
prev_context=prev_context,
550561
query=query,
@@ -557,10 +568,11 @@ async def reload_props(
557568
*,
558569
id: str,
559570
external_user_id: str,
571+
async_handle: typing.Optional[str] = None,
560572
blocking: typing.Optional[bool] = OMIT,
561573
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
562574
dynamic_props_id: typing.Optional[str] = OMIT,
563-
async_handle: typing.Optional[str] = OMIT,
575+
reload_props_opts_async_handle: typing.Optional[str] = OMIT,
564576
request_options: typing.Optional[RequestOptions] = None,
565577
) -> ReloadPropsResponse:
566578
"""
@@ -572,6 +584,8 @@ async def reload_props(
572584
external_user_id : str
573585
The external user ID
574586
587+
async_handle : typing.Optional[str]
588+
575589
blocking : typing.Optional[bool]
576590
Whether this operation should block until completion
577591
@@ -581,7 +595,7 @@ async def reload_props(
581595
dynamic_props_id : typing.Optional[str]
582596
The ID for dynamic props
583597
584-
async_handle : typing.Optional[str]
598+
reload_props_opts_async_handle : typing.Optional[str]
585599
Handle for async operations
586600
587601
request_options : typing.Optional[RequestOptions]
@@ -618,10 +632,11 @@ async def main() -> None:
618632
_response = await self._raw_client.reload_props(
619633
id=id,
620634
external_user_id=external_user_id,
635+
async_handle=async_handle,
621636
blocking=blocking,
622637
configured_props=configured_props,
623638
dynamic_props_id=dynamic_props_id,
624-
async_handle=async_handle,
639+
reload_props_opts_async_handle=reload_props_opts_async_handle,
625640
request_options=request_options,
626641
)
627642
return _response.data
@@ -631,9 +646,9 @@ async def run(
631646
*,
632647
id: str,
633648
external_user_id: str,
649+
async_handle: typing.Optional[str] = None,
634650
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
635651
dynamic_props_id: typing.Optional[str] = OMIT,
636-
stash_id: typing.Optional[RunActionOptsStashId] = OMIT,
637652
request_options: typing.Optional[RequestOptions] = None,
638653
) -> RunActionResponse:
639654
"""
@@ -645,14 +660,14 @@ async def run(
645660
external_user_id : str
646661
The external user ID
647662
663+
async_handle : typing.Optional[str]
664+
648665
configured_props : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
649666
The configured properties for the action
650667
651668
dynamic_props_id : typing.Optional[str]
652669
The ID for dynamic props
653670
654-
stash_id : typing.Optional[RunActionOptsStashId]
655-
656671
request_options : typing.Optional[RequestOptions]
657672
Request-specific configuration.
658673
@@ -687,9 +702,9 @@ async def main() -> None:
687702
_response = await self._raw_client.run(
688703
id=id,
689704
external_user_id=external_user_id,
705+
async_handle=async_handle,
690706
configured_props=configured_props,
691707
dynamic_props_id=dynamic_props_id,
692-
stash_id=stash_id,
693708
request_options=request_options,
694709
)
695710
return _response.data

0 commit comments

Comments
 (0)