@@ -38,6 +38,8 @@ def list(
38
38
request_options : typing .Optional [RequestOptions ] = None ,
39
39
) -> SyncPager [Component ]:
40
40
"""
41
+ Retrieve available actions with optional search and app filtering
42
+
41
43
Parameters
42
44
----------
43
45
after : typing.Optional[str]
@@ -110,6 +112,8 @@ def retrieve(
110
112
self , component_id : str , * , request_options : typing .Optional [RequestOptions ] = None
111
113
) -> HttpResponse [Component ]:
112
114
"""
115
+ Get detailed configuration for a specific action by its key
116
+
113
117
Parameters
114
118
----------
115
119
component_id : str
@@ -159,6 +163,8 @@ def configure_prop(
159
163
request_options : typing .Optional [RequestOptions ] = None ,
160
164
) -> HttpResponse [ConfigurePropResponse ]:
161
165
"""
166
+ Retrieve remote options for a given prop for a action
167
+
162
168
Parameters
163
169
----------
164
170
id : str
@@ -242,6 +248,8 @@ def reload_props(
242
248
request_options : typing .Optional [RequestOptions ] = None ,
243
249
) -> HttpResponse [ReloadPropsResponse ]:
244
250
"""
251
+ Reload the prop definition based on the currently configured props
252
+
245
253
Parameters
246
254
----------
247
255
id : str
@@ -309,6 +317,8 @@ def run(
309
317
request_options : typing .Optional [RequestOptions ] = None ,
310
318
) -> HttpResponse [RunActionResponse ]:
311
319
"""
320
+ Execute an action with the provided configuration and return results
321
+
312
322
Parameters
313
323
----------
314
324
id : str
@@ -382,6 +392,8 @@ async def list(
382
392
request_options : typing .Optional [RequestOptions ] = None ,
383
393
) -> AsyncPager [Component ]:
384
394
"""
395
+ Retrieve available actions with optional search and app filtering
396
+
385
397
Parameters
386
398
----------
387
399
after : typing.Optional[str]
@@ -457,6 +469,8 @@ async def retrieve(
457
469
self , component_id : str , * , request_options : typing .Optional [RequestOptions ] = None
458
470
) -> AsyncHttpResponse [Component ]:
459
471
"""
472
+ Get detailed configuration for a specific action by its key
473
+
460
474
Parameters
461
475
----------
462
476
component_id : str
@@ -506,6 +520,8 @@ async def configure_prop(
506
520
request_options : typing .Optional [RequestOptions ] = None ,
507
521
) -> AsyncHttpResponse [ConfigurePropResponse ]:
508
522
"""
523
+ Retrieve remote options for a given prop for a action
524
+
509
525
Parameters
510
526
----------
511
527
id : str
@@ -589,6 +605,8 @@ async def reload_props(
589
605
request_options : typing .Optional [RequestOptions ] = None ,
590
606
) -> AsyncHttpResponse [ReloadPropsResponse ]:
591
607
"""
608
+ Reload the prop definition based on the currently configured props
609
+
592
610
Parameters
593
611
----------
594
612
id : str
@@ -656,6 +674,8 @@ async def run(
656
674
request_options : typing .Optional [RequestOptions ] = None ,
657
675
) -> AsyncHttpResponse [RunActionResponse ]:
658
676
"""
677
+ Execute an action with the provided configuration and return results
678
+
659
679
Parameters
660
680
----------
661
681
id : str
0 commit comments