Skip to content

Commit 685d5ae

Browse files
committed
SDK regeneration
1 parent 40079c5 commit 685d5ae

Some content is hidden

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

55 files changed

+406
-1275
lines changed

src/pipedream/actions/client.py

Lines changed: 44 additions & 9 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,9 +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+
configure_prop_opts_async_handle: typing.Optional[str] = OMIT,
132133
page: typing.Optional[float] = OMIT,
133134
prev_context: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
134135
query: typing.Optional[str] = OMIT,
@@ -146,6 +147,8 @@ def configure_prop(
146147
prop_name : str
147148
The name of the prop to configure
148149
150+
async_handle : typing.Optional[str]
151+
149152
blocking : typing.Optional[bool]
150153
Whether this operation should block until completion
151154
@@ -155,6 +158,9 @@ def configure_prop(
155158
dynamic_props_id : typing.Optional[str]
156159
The ID for dynamic props
157160
161+
configure_prop_opts_async_handle : typing.Optional[str]
162+
Handle for async operations
163+
158164
page : typing.Optional[float]
159165
Page number for paginated results
160166
@@ -192,9 +198,11 @@ def configure_prop(
192198
id=id,
193199
external_user_id=external_user_id,
194200
prop_name=prop_name,
201+
async_handle=async_handle,
195202
blocking=blocking,
196203
configured_props=configured_props,
197204
dynamic_props_id=dynamic_props_id,
205+
configure_prop_opts_async_handle=configure_prop_opts_async_handle,
198206
page=page,
199207
prev_context=prev_context,
200208
query=query,
@@ -207,9 +215,11 @@ def reload_props(
207215
*,
208216
id: str,
209217
external_user_id: str,
218+
async_handle: typing.Optional[str] = None,
210219
blocking: typing.Optional[bool] = OMIT,
211220
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
212221
dynamic_props_id: typing.Optional[str] = OMIT,
222+
reload_props_opts_async_handle: typing.Optional[str] = OMIT,
213223
request_options: typing.Optional[RequestOptions] = None,
214224
) -> ReloadPropsResponse:
215225
"""
@@ -221,6 +231,8 @@ def reload_props(
221231
external_user_id : str
222232
The external user ID
223233
234+
async_handle : typing.Optional[str]
235+
224236
blocking : typing.Optional[bool]
225237
Whether this operation should block until completion
226238
@@ -230,6 +242,9 @@ def reload_props(
230242
dynamic_props_id : typing.Optional[str]
231243
The ID for dynamic props
232244
245+
reload_props_opts_async_handle : typing.Optional[str]
246+
Handle for async operations
247+
233248
request_options : typing.Optional[RequestOptions]
234249
Request-specific configuration.
235250
@@ -256,9 +271,11 @@ def reload_props(
256271
_response = self._raw_client.reload_props(
257272
id=id,
258273
external_user_id=external_user_id,
274+
async_handle=async_handle,
259275
blocking=blocking,
260276
configured_props=configured_props,
261277
dynamic_props_id=dynamic_props_id,
278+
reload_props_opts_async_handle=reload_props_opts_async_handle,
262279
request_options=request_options,
263280
)
264281
return _response.data
@@ -268,9 +285,9 @@ def run(
268285
*,
269286
id: str,
270287
external_user_id: str,
288+
async_handle: typing.Optional[str] = None,
271289
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
272290
dynamic_props_id: typing.Optional[str] = OMIT,
273-
stash_id: typing.Optional[RunActionOptsStashId] = OMIT,
274291
request_options: typing.Optional[RequestOptions] = None,
275292
) -> RunActionResponse:
276293
"""
@@ -282,14 +299,14 @@ def run(
282299
external_user_id : str
283300
The external user ID
284301
302+
async_handle : typing.Optional[str]
303+
285304
configured_props : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
286305
The configured properties for the action
287306
288307
dynamic_props_id : typing.Optional[str]
289308
The ID for dynamic props
290309
291-
stash_id : typing.Optional[RunActionOptsStashId]
292-
293310
request_options : typing.Optional[RequestOptions]
294311
Request-specific configuration.
295312
@@ -316,9 +333,9 @@ def run(
316333
_response = self._raw_client.run(
317334
id=id,
318335
external_user_id=external_user_id,
336+
async_handle=async_handle,
319337
configured_props=configured_props,
320338
dynamic_props_id=dynamic_props_id,
321-
stash_id=stash_id,
322339
request_options=request_options,
323340
)
324341
return _response.data
@@ -453,9 +470,11 @@ async def configure_prop(
453470
id: str,
454471
external_user_id: str,
455472
prop_name: str,
473+
async_handle: typing.Optional[str] = None,
456474
blocking: typing.Optional[bool] = OMIT,
457475
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
458476
dynamic_props_id: typing.Optional[str] = OMIT,
477+
configure_prop_opts_async_handle: typing.Optional[str] = OMIT,
459478
page: typing.Optional[float] = OMIT,
460479
prev_context: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
461480
query: typing.Optional[str] = OMIT,
@@ -473,6 +492,8 @@ async def configure_prop(
473492
prop_name : str
474493
The name of the prop to configure
475494
495+
async_handle : typing.Optional[str]
496+
476497
blocking : typing.Optional[bool]
477498
Whether this operation should block until completion
478499
@@ -482,6 +503,9 @@ async def configure_prop(
482503
dynamic_props_id : typing.Optional[str]
483504
The ID for dynamic props
484505
506+
configure_prop_opts_async_handle : typing.Optional[str]
507+
Handle for async operations
508+
485509
page : typing.Optional[float]
486510
Page number for paginated results
487511
@@ -527,9 +551,11 @@ async def main() -> None:
527551
id=id,
528552
external_user_id=external_user_id,
529553
prop_name=prop_name,
554+
async_handle=async_handle,
530555
blocking=blocking,
531556
configured_props=configured_props,
532557
dynamic_props_id=dynamic_props_id,
558+
configure_prop_opts_async_handle=configure_prop_opts_async_handle,
533559
page=page,
534560
prev_context=prev_context,
535561
query=query,
@@ -542,9 +568,11 @@ async def reload_props(
542568
*,
543569
id: str,
544570
external_user_id: str,
571+
async_handle: typing.Optional[str] = None,
545572
blocking: typing.Optional[bool] = OMIT,
546573
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
547574
dynamic_props_id: typing.Optional[str] = OMIT,
575+
reload_props_opts_async_handle: typing.Optional[str] = OMIT,
548576
request_options: typing.Optional[RequestOptions] = None,
549577
) -> ReloadPropsResponse:
550578
"""
@@ -556,6 +584,8 @@ async def reload_props(
556584
external_user_id : str
557585
The external user ID
558586
587+
async_handle : typing.Optional[str]
588+
559589
blocking : typing.Optional[bool]
560590
Whether this operation should block until completion
561591
@@ -565,6 +595,9 @@ async def reload_props(
565595
dynamic_props_id : typing.Optional[str]
566596
The ID for dynamic props
567597
598+
reload_props_opts_async_handle : typing.Optional[str]
599+
Handle for async operations
600+
568601
request_options : typing.Optional[RequestOptions]
569602
Request-specific configuration.
570603
@@ -599,9 +632,11 @@ async def main() -> None:
599632
_response = await self._raw_client.reload_props(
600633
id=id,
601634
external_user_id=external_user_id,
635+
async_handle=async_handle,
602636
blocking=blocking,
603637
configured_props=configured_props,
604638
dynamic_props_id=dynamic_props_id,
639+
reload_props_opts_async_handle=reload_props_opts_async_handle,
605640
request_options=request_options,
606641
)
607642
return _response.data
@@ -611,9 +646,9 @@ async def run(
611646
*,
612647
id: str,
613648
external_user_id: str,
649+
async_handle: typing.Optional[str] = None,
614650
configured_props: typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]] = OMIT,
615651
dynamic_props_id: typing.Optional[str] = OMIT,
616-
stash_id: typing.Optional[RunActionOptsStashId] = OMIT,
617652
request_options: typing.Optional[RequestOptions] = None,
618653
) -> RunActionResponse:
619654
"""
@@ -625,14 +660,14 @@ async def run(
625660
external_user_id : str
626661
The external user ID
627662
663+
async_handle : typing.Optional[str]
664+
628665
configured_props : typing.Optional[typing.Dict[str, typing.Optional[typing.Any]]]
629666
The configured properties for the action
630667
631668
dynamic_props_id : typing.Optional[str]
632669
The ID for dynamic props
633670
634-
stash_id : typing.Optional[RunActionOptsStashId]
635-
636671
request_options : typing.Optional[RequestOptions]
637672
Request-specific configuration.
638673
@@ -667,9 +702,9 @@ async def main() -> None:
667702
_response = await self._raw_client.run(
668703
id=id,
669704
external_user_id=external_user_id,
705+
async_handle=async_handle,
670706
configured_props=configured_props,
671707
dynamic_props_id=dynamic_props_id,
672-
stash_id=stash_id,
673708
request_options=request_options,
674709
)
675710
return _response.data

0 commit comments

Comments
 (0)