windmill-client 1.642.0 → 1.643.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core/OpenAPI.mjs +1 -1
- package/dist/index.js +81 -59
- package/dist/services.gen.d.ts +66 -55
- package/dist/services.gen.mjs +80 -58
- package/dist/types.gen.d.ts +213 -113
- package/package.json +1 -1
package/dist/services.gen.d.ts
CHANGED
|
@@ -1567,6 +1567,9 @@ export declare class VariableService {
|
|
|
1567
1567
|
* @param data The data for the request.
|
|
1568
1568
|
* @param data.workspace
|
|
1569
1569
|
* @param data.pathStart filter variables by path prefix
|
|
1570
|
+
* @param data.path exact path match filter
|
|
1571
|
+
* @param data.description pattern match filter for description field (case-insensitive)
|
|
1572
|
+
* @param data.value pattern match filter for non-secret variable values (case-insensitive)
|
|
1570
1573
|
* @param data.page which page to return (start at 1, default 1)
|
|
1571
1574
|
* @param data.perPage number of items to return for a given page (default 30, max 100)
|
|
1572
1575
|
* @returns ListableVariable variable list
|
|
@@ -1800,6 +1803,9 @@ export declare class ResourceService {
|
|
|
1800
1803
|
* @param data.resourceType resource_types to list from, separated by ',',
|
|
1801
1804
|
* @param data.resourceTypeExclude resource_types to not list from, separated by ',',
|
|
1802
1805
|
* @param data.pathStart filter resources by path prefix
|
|
1806
|
+
* @param data.path exact path match filter
|
|
1807
|
+
* @param data.description pattern match filter for description field (case-insensitive)
|
|
1808
|
+
* @param data.value JSONB subset match filter using base64 encoded JSON
|
|
1803
1809
|
* @returns ListableResource resource list
|
|
1804
1810
|
* @throws ApiError
|
|
1805
1811
|
*/
|
|
@@ -1843,7 +1849,7 @@ export declare class ResourceService {
|
|
|
1843
1849
|
* get map from resource type to format extension
|
|
1844
1850
|
* @param data The data for the request.
|
|
1845
1851
|
* @param data.workspace
|
|
1846
|
-
* @returns unknown map from resource type to file
|
|
1852
|
+
* @returns unknown map from resource type to file resource info
|
|
1847
1853
|
* @throws ApiError
|
|
1848
1854
|
*/
|
|
1849
1855
|
static fileResourceTypeToFileExtMap(data: FileResourceTypeToFileExtMapData): CancelablePromise<FileResourceTypeToFileExtMapResponse>;
|
|
@@ -2001,7 +2007,7 @@ export declare class FlowService {
|
|
|
2001
2007
|
* @param data.page which page to return (start at 1, default 1)
|
|
2002
2008
|
* @param data.perPage number of items to return for a given page (default 30, max 100)
|
|
2003
2009
|
* @param data.orderDesc order by desc order (default true)
|
|
2004
|
-
* @param data.createdBy
|
|
2010
|
+
* @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
|
|
2005
2011
|
* @param data.pathStart mask to filter matching starting path
|
|
2006
2012
|
* @param data.pathExact mask to filter exact matching path
|
|
2007
2013
|
* @param data.showArchived (default false)
|
|
@@ -2237,7 +2243,7 @@ export declare class AppService {
|
|
|
2237
2243
|
* @param data.page which page to return (start at 1, default 1)
|
|
2238
2244
|
* @param data.perPage number of items to return for a given page (default 30, max 100)
|
|
2239
2245
|
* @param data.orderDesc order by desc order (default true)
|
|
2240
|
-
* @param data.createdBy
|
|
2246
|
+
* @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
|
|
2241
2247
|
* @param data.pathStart mask to filter matching starting path
|
|
2242
2248
|
* @param data.pathExact mask to filter exact matching path
|
|
2243
2249
|
* @param data.starredOnly (default false)
|
|
@@ -2537,7 +2543,7 @@ export declare class ScriptService {
|
|
|
2537
2543
|
* @param data.page which page to return (start at 1, default 1)
|
|
2538
2544
|
* @param data.perPage number of items to return for a given page (default 30, max 100)
|
|
2539
2545
|
* @param data.orderDesc order by desc order (default true)
|
|
2540
|
-
* @param data.createdBy
|
|
2546
|
+
* @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
|
|
2541
2547
|
* @param data.pathStart mask to filter matching starting path
|
|
2542
2548
|
* @param data.pathExact mask to filter exact matching path
|
|
2543
2549
|
* @param data.firstParentHash mask to filter scripts whom first direct parent has exact hash
|
|
@@ -3420,26 +3426,26 @@ export declare class JobService {
|
|
|
3420
3426
|
* @param data The data for the request.
|
|
3421
3427
|
* @param data.workspace
|
|
3422
3428
|
* @param data.orderDesc order by desc order (default true)
|
|
3423
|
-
* @param data.createdBy
|
|
3429
|
+
* @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
|
|
3424
3430
|
* @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
|
|
3425
|
-
* @param data.worker worker this job
|
|
3426
|
-
* @param data.scriptPathExact
|
|
3427
|
-
* @param data.scriptPathStart
|
|
3431
|
+
* @param data.worker filter by worker this job ran on. Supports comma-separated list (e.g. 'worker-1,worker-2') and negation by prefixing all values with '!' (e.g. '!worker-1,!worker-2')
|
|
3432
|
+
* @param data.scriptPathExact filter by exact matching script path. Supports comma-separated list (e.g. 'f/script1,f/script2') and negation by prefixing all values with '!' (e.g. '!f/script1,!f/script2')
|
|
3433
|
+
* @param data.scriptPathStart filter by script path prefix. Supports comma-separated list (e.g. 'f/folder1,f/folder2') and negation by prefixing all values with '!' (e.g. '!f/folder1,!f/folder2')
|
|
3428
3434
|
* @param data.schedulePath mask to filter by schedule path
|
|
3429
|
-
* @param data.triggerPath
|
|
3430
|
-
* @param data.triggerKind trigger kind (schedule,
|
|
3435
|
+
* @param data.triggerPath filter by trigger path. Supports comma-separated list (e.g. 'f/trigger1,f/trigger2') and negation by prefixing all values with '!' (e.g. '!f/trigger1,!f/trigger2')
|
|
3436
|
+
* @param data.triggerKind filter by trigger kind. Supports comma-separated list (e.g. 'schedule,webhook') and negation by prefixing all values with '!' (e.g. '!schedule,!webhook')
|
|
3431
3437
|
* @param data.scriptHash mask to filter exact matching path
|
|
3432
3438
|
* @param data.startedBefore filter on started before (inclusive) timestamp
|
|
3433
3439
|
* @param data.startedAfter filter on started after (exclusive) timestamp
|
|
3434
3440
|
* @param data.success filter on successful jobs
|
|
3435
3441
|
* @param data.scheduledForBeforeNow filter on jobs scheduled_for before now (hence waitinf for a worker)
|
|
3436
|
-
* @param data.jobKinds filter
|
|
3442
|
+
* @param data.jobKinds filter by job kind. Supports comma-separated list of values ('preview', 'script', 'dependencies', 'flow') and negation by prefixing all values with '!' (e.g. '!preview,!dependencies')
|
|
3437
3443
|
* @param data.suspended filter on suspended jobs
|
|
3438
3444
|
* @param data.running filter on running jobs
|
|
3439
3445
|
* @param data.args filter on jobs containing those args as a json subset (@> in postgres)
|
|
3440
3446
|
* @param data.result filter on jobs containing those result as a json subset (@> in postgres)
|
|
3441
3447
|
* @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
|
|
3442
|
-
* @param data.tag filter
|
|
3448
|
+
* @param data.tag filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
|
|
3443
3449
|
* @param data.page which page to return (start at 1, default 1)
|
|
3444
3450
|
* @param data.perPage number of items to return for a given page (default 30, max 100)
|
|
3445
3451
|
* @param data.allWorkspaces get jobs from all workspaces (only valid if request come from the `admins` workspace)
|
|
@@ -3481,12 +3487,12 @@ export declare class JobService {
|
|
|
3481
3487
|
* get the ids of all jobs matching the given filters
|
|
3482
3488
|
* @param data The data for the request.
|
|
3483
3489
|
* @param data.workspace
|
|
3484
|
-
* @param data.createdBy
|
|
3485
|
-
* @param data.label
|
|
3486
|
-
* @param data.worker worker this job
|
|
3490
|
+
* @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
|
|
3491
|
+
* @param data.label filter by exact matching job label. Supports comma-separated list (e.g. 'deploy,release') and negation by prefixing all values with '!' (e.g. '!deploy,!release')
|
|
3492
|
+
* @param data.worker filter by worker this job ran on. Supports comma-separated list (e.g. 'worker-1,worker-2') and negation by prefixing all values with '!' (e.g. '!worker-1,!worker-2')
|
|
3487
3493
|
* @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
|
|
3488
|
-
* @param data.scriptPathExact
|
|
3489
|
-
* @param data.scriptPathStart
|
|
3494
|
+
* @param data.scriptPathExact filter by exact matching script path. Supports comma-separated list (e.g. 'f/script1,f/script2') and negation by prefixing all values with '!' (e.g. '!f/script1,!f/script2')
|
|
3495
|
+
* @param data.scriptPathStart filter by script path prefix. Supports comma-separated list (e.g. 'f/folder1,f/folder2') and negation by prefixing all values with '!' (e.g. '!f/folder1,!f/folder2')
|
|
3490
3496
|
* @param data.schedulePath mask to filter by schedule path
|
|
3491
3497
|
* @param data.scriptHash mask to filter exact matching path
|
|
3492
3498
|
* @param data.startedBefore filter on started before (inclusive) timestamp
|
|
@@ -3499,10 +3505,10 @@ export declare class JobService {
|
|
|
3499
3505
|
* @param data.createdAfterQueue filter on jobs created after X for jobs in the queue only
|
|
3500
3506
|
* @param data.running filter on running jobs
|
|
3501
3507
|
* @param data.scheduledForBeforeNow filter on jobs scheduled_for before now (hence waitinf for a worker)
|
|
3502
|
-
* @param data.jobKinds filter
|
|
3508
|
+
* @param data.jobKinds filter by job kind. Supports comma-separated list of values ('preview', 'script', 'dependencies', 'flow') and negation by prefixing all values with '!' (e.g. '!preview,!dependencies')
|
|
3503
3509
|
* @param data.suspended filter on suspended jobs
|
|
3504
3510
|
* @param data.args filter on jobs containing those args as a json subset (@> in postgres)
|
|
3505
|
-
* @param data.tag filter
|
|
3511
|
+
* @param data.tag filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
|
|
3506
3512
|
* @param data.result filter on jobs containing those result as a json subset (@> in postgres)
|
|
3507
3513
|
* @param data.page which page to return (start at 1, default 1)
|
|
3508
3514
|
* @param data.perPage number of items to return for a given page (default 30, max 100)
|
|
@@ -3521,23 +3527,23 @@ export declare class JobService {
|
|
|
3521
3527
|
* @param data The data for the request.
|
|
3522
3528
|
* @param data.workspace
|
|
3523
3529
|
* @param data.orderDesc order by desc order (default true)
|
|
3524
|
-
* @param data.createdBy
|
|
3530
|
+
* @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
|
|
3525
3531
|
* @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
|
|
3526
|
-
* @param data.scriptPathExact
|
|
3527
|
-
* @param data.scriptPathStart
|
|
3532
|
+
* @param data.scriptPathExact filter by exact matching script path. Supports comma-separated list (e.g. 'f/script1,f/script2') and negation by prefixing all values with '!' (e.g. '!f/script1,!f/script2')
|
|
3533
|
+
* @param data.scriptPathStart filter by script path prefix. Supports comma-separated list (e.g. 'f/folder1,f/folder2') and negation by prefixing all values with '!' (e.g. '!f/folder1,!f/folder2')
|
|
3528
3534
|
* @param data.schedulePath mask to filter by schedule path
|
|
3529
3535
|
* @param data.scriptHash mask to filter exact matching path
|
|
3530
3536
|
* @param data.startedBefore filter on started before (inclusive) timestamp
|
|
3531
3537
|
* @param data.startedAfter filter on started after (exclusive) timestamp
|
|
3532
3538
|
* @param data.success filter on successful jobs
|
|
3533
3539
|
* @param data.scheduledForBeforeNow filter on jobs scheduled_for before now (hence waitinf for a worker)
|
|
3534
|
-
* @param data.jobKinds filter
|
|
3540
|
+
* @param data.jobKinds filter by job kind. Supports comma-separated list of values ('preview', 'script', 'dependencies', 'flow') and negation by prefixing all values with '!' (e.g. '!preview,!dependencies')
|
|
3535
3541
|
* @param data.suspended filter on suspended jobs
|
|
3536
3542
|
* @param data.running filter on running jobs
|
|
3537
3543
|
* @param data.args filter on jobs containing those args as a json subset (@> in postgres)
|
|
3538
3544
|
* @param data.result filter on jobs containing those result as a json subset (@> in postgres)
|
|
3539
3545
|
* @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
|
|
3540
|
-
* @param data.tag filter
|
|
3546
|
+
* @param data.tag filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
|
|
3541
3547
|
* @param data.page which page to return (start at 1, default 1)
|
|
3542
3548
|
* @param data.perPage number of items to return for a given page (default 30, max 100)
|
|
3543
3549
|
* @param data.concurrencyKey
|
|
@@ -3571,22 +3577,22 @@ export declare class JobService {
|
|
|
3571
3577
|
* @param data The data for the request.
|
|
3572
3578
|
* @param data.workspace
|
|
3573
3579
|
* @param data.orderDesc order by desc order (default true)
|
|
3574
|
-
* @param data.createdBy
|
|
3575
|
-
* @param data.label
|
|
3576
|
-
* @param data.worker worker this job
|
|
3580
|
+
* @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
|
|
3581
|
+
* @param data.label filter by exact matching job label. Supports comma-separated list (e.g. 'deploy,release') and negation by prefixing all values with '!' (e.g. '!deploy,!release')
|
|
3582
|
+
* @param data.worker filter by worker this job ran on. Supports comma-separated list (e.g. 'worker-1,worker-2') and negation by prefixing all values with '!' (e.g. '!worker-1,!worker-2')
|
|
3577
3583
|
* @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
|
|
3578
|
-
* @param data.scriptPathExact
|
|
3579
|
-
* @param data.scriptPathStart
|
|
3584
|
+
* @param data.scriptPathExact filter by exact matching script path. Supports comma-separated list (e.g. 'f/script1,f/script2') and negation by prefixing all values with '!' (e.g. '!f/script1,!f/script2')
|
|
3585
|
+
* @param data.scriptPathStart filter by script path prefix. Supports comma-separated list (e.g. 'f/folder1,f/folder2') and negation by prefixing all values with '!' (e.g. '!f/folder1,!f/folder2')
|
|
3580
3586
|
* @param data.schedulePath mask to filter by schedule path
|
|
3581
3587
|
* @param data.scriptHash mask to filter exact matching path
|
|
3582
3588
|
* @param data.startedBefore filter on started before (inclusive) timestamp
|
|
3583
3589
|
* @param data.startedAfter filter on started after (exclusive) timestamp
|
|
3584
3590
|
* @param data.success filter on successful jobs
|
|
3585
|
-
* @param data.jobKinds filter
|
|
3591
|
+
* @param data.jobKinds filter by job kind. Supports comma-separated list of values ('preview', 'script', 'dependencies', 'flow') and negation by prefixing all values with '!' (e.g. '!preview,!dependencies')
|
|
3586
3592
|
* @param data.args filter on jobs containing those args as a json subset (@> in postgres)
|
|
3587
3593
|
* @param data.result filter on jobs containing those result as a json subset (@> in postgres)
|
|
3588
3594
|
* @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
|
|
3589
|
-
* @param data.tag filter
|
|
3595
|
+
* @param data.tag filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
|
|
3590
3596
|
* @param data.page which page to return (start at 1, default 1)
|
|
3591
3597
|
* @param data.perPage number of items to return for a given page (default 30, max 100)
|
|
3592
3598
|
* @param data.isSkipped is the job skipped
|
|
@@ -3648,12 +3654,12 @@ export declare class JobService {
|
|
|
3648
3654
|
* list all jobs
|
|
3649
3655
|
* @param data The data for the request.
|
|
3650
3656
|
* @param data.workspace
|
|
3651
|
-
* @param data.createdBy
|
|
3652
|
-
* @param data.label
|
|
3653
|
-
* @param data.worker worker this job
|
|
3657
|
+
* @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
|
|
3658
|
+
* @param data.label filter by exact matching job label. Supports comma-separated list (e.g. 'deploy,release') and negation by prefixing all values with '!' (e.g. '!deploy,!release')
|
|
3659
|
+
* @param data.worker filter by worker this job ran on. Supports comma-separated list (e.g. 'worker-1,worker-2') and negation by prefixing all values with '!' (e.g. '!worker-1,!worker-2')
|
|
3654
3660
|
* @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
|
|
3655
|
-
* @param data.scriptPathExact
|
|
3656
|
-
* @param data.scriptPathStart
|
|
3661
|
+
* @param data.scriptPathExact filter by exact matching script path. Supports comma-separated list (e.g. 'f/script1,f/script2') and negation by prefixing all values with '!' (e.g. '!f/script1,!f/script2')
|
|
3662
|
+
* @param data.scriptPathStart filter by script path prefix. Supports comma-separated list (e.g. 'f/folder1,f/folder2') and negation by prefixing all values with '!' (e.g. '!f/folder1,!f/folder2')
|
|
3657
3663
|
* @param data.schedulePath mask to filter by schedule path
|
|
3658
3664
|
* @param data.scriptHash mask to filter exact matching path
|
|
3659
3665
|
* @param data.startedBefore filter on started before (inclusive) timestamp
|
|
@@ -3666,14 +3672,14 @@ export declare class JobService {
|
|
|
3666
3672
|
* @param data.createdAfterQueue filter on jobs created after X for jobs in the queue only
|
|
3667
3673
|
* @param data.running filter on running jobs
|
|
3668
3674
|
* @param data.scheduledForBeforeNow filter on jobs scheduled_for before now (hence waitinf for a worker)
|
|
3669
|
-
* @param data.jobKinds filter
|
|
3675
|
+
* @param data.jobKinds filter by job kind. Supports comma-separated list of values ('preview', 'script', 'dependencies', 'flow') and negation by prefixing all values with '!' (e.g. '!preview,!dependencies')
|
|
3670
3676
|
* @param data.suspended filter on suspended jobs
|
|
3671
3677
|
* @param data.args filter on jobs containing those args as a json subset (@> in postgres)
|
|
3672
|
-
* @param data.tag filter
|
|
3678
|
+
* @param data.tag filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
|
|
3673
3679
|
* @param data.result filter on jobs containing those result as a json subset (@> in postgres)
|
|
3674
3680
|
* @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
|
|
3675
3681
|
* @param data.perPage number of items to return for a given page (default 30, max 100)
|
|
3676
|
-
* @param data.triggerKind trigger kind (schedule,
|
|
3682
|
+
* @param data.triggerKind filter by trigger kind. Supports comma-separated list (e.g. 'schedule,webhook') and negation by prefixing all values with '!' (e.g. '!schedule,!webhook')
|
|
3677
3683
|
* @param data.isSkipped is the job skipped
|
|
3678
3684
|
* @param data.isFlowStep is the job a flow step
|
|
3679
3685
|
* @param data.hasNullParent has null parent
|
|
@@ -4058,11 +4064,11 @@ export declare class JobService {
|
|
|
4058
4064
|
* @param data.workspace
|
|
4059
4065
|
* @param data.concurrencyKey
|
|
4060
4066
|
* @param data.rowLimit
|
|
4061
|
-
* @param data.createdBy
|
|
4062
|
-
* @param data.label
|
|
4067
|
+
* @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
|
|
4068
|
+
* @param data.label filter by exact matching job label. Supports comma-separated list (e.g. 'deploy,release') and negation by prefixing all values with '!' (e.g. '!deploy,!release')
|
|
4063
4069
|
* @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
|
|
4064
|
-
* @param data.scriptPathExact
|
|
4065
|
-
* @param data.scriptPathStart
|
|
4070
|
+
* @param data.scriptPathExact filter by exact matching script path. Supports comma-separated list (e.g. 'f/script1,f/script2') and negation by prefixing all values with '!' (e.g. '!f/script1,!f/script2')
|
|
4071
|
+
* @param data.scriptPathStart filter by script path prefix. Supports comma-separated list (e.g. 'f/folder1,f/folder2') and negation by prefixing all values with '!' (e.g. '!f/folder1,!f/folder2')
|
|
4066
4072
|
* @param data.schedulePath mask to filter by schedule path
|
|
4067
4073
|
* @param data.scriptHash mask to filter exact matching path
|
|
4068
4074
|
* @param data.startedBefore filter on started before (inclusive) timestamp
|
|
@@ -4073,14 +4079,14 @@ export declare class JobService {
|
|
|
4073
4079
|
* @param data.completedAfter filter on started after (exclusive) timestamp
|
|
4074
4080
|
* @param data.createdBeforeQueue filter on jobs created before X for jobs in the queue only
|
|
4075
4081
|
* @param data.createdAfterQueue filter on jobs created after X for jobs in the queue only
|
|
4076
|
-
* @param data.jobKinds filter
|
|
4082
|
+
* @param data.jobKinds filter by job kind. Supports comma-separated list of values ('preview', 'script', 'dependencies', 'flow') and negation by prefixing all values with '!' (e.g. '!preview,!dependencies')
|
|
4077
4083
|
* @param data.args filter on jobs containing those args as a json subset (@> in postgres)
|
|
4078
|
-
* @param data.tag filter
|
|
4084
|
+
* @param data.tag filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
|
|
4079
4085
|
* @param data.result filter on jobs containing those result as a json subset (@> in postgres)
|
|
4080
4086
|
* @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
|
|
4081
4087
|
* @param data.page which page to return (start at 1, default 1)
|
|
4082
4088
|
* @param data.perPage number of items to return for a given page (default 30, max 100)
|
|
4083
|
-
* @param data.triggerKind trigger kind (schedule,
|
|
4089
|
+
* @param data.triggerKind filter by trigger kind. Supports comma-separated list (e.g. 'schedule,webhook') and negation by prefixing all values with '!' (e.g. '!schedule,!webhook')
|
|
4084
4090
|
* @param data.isSkipped is the job skipped
|
|
4085
4091
|
* @param data.isFlowStep is the job a flow step
|
|
4086
4092
|
* @param data.hasNullParent has null parent
|
|
@@ -4134,7 +4140,7 @@ export declare class RawAppService {
|
|
|
4134
4140
|
* @param data.page which page to return (start at 1, default 1)
|
|
4135
4141
|
* @param data.perPage number of items to return for a given page (default 30, max 100)
|
|
4136
4142
|
* @param data.orderDesc order by desc order (default true)
|
|
4137
|
-
* @param data.createdBy
|
|
4143
|
+
* @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
|
|
4138
4144
|
* @param data.pathStart mask to filter matching starting path
|
|
4139
4145
|
* @param data.pathExact mask to filter exact matching path
|
|
4140
4146
|
* @param data.starredOnly (default false)
|
|
@@ -4241,9 +4247,12 @@ export declare class ScheduleService {
|
|
|
4241
4247
|
* @param data.page which page to return (start at 1, default 1)
|
|
4242
4248
|
* @param data.perPage number of items to return for a given page (default 30, max 100)
|
|
4243
4249
|
* @param data.args filter on jobs containing those args as a json subset (@> in postgres)
|
|
4244
|
-
* @param data.path filter by path
|
|
4250
|
+
* @param data.path filter by path (script path)
|
|
4245
4251
|
* @param data.isFlow filter schedules by whether they target a flow
|
|
4246
4252
|
* @param data.pathStart filter schedules by path prefix
|
|
4253
|
+
* @param data.schedulePath exact match on the schedule's path
|
|
4254
|
+
* @param data.description pattern match filter for description field (case-insensitive)
|
|
4255
|
+
* @param data.summary pattern match filter for summary field (case-insensitive)
|
|
4247
4256
|
* @returns Schedule schedule list
|
|
4248
4257
|
* @throws ApiError
|
|
4249
4258
|
*/
|
|
@@ -6287,11 +6296,11 @@ export declare class ConcurrencyGroupsService {
|
|
|
6287
6296
|
* @param data.workspace
|
|
6288
6297
|
* @param data.concurrencyKey
|
|
6289
6298
|
* @param data.rowLimit
|
|
6290
|
-
* @param data.createdBy
|
|
6291
|
-
* @param data.label
|
|
6299
|
+
* @param data.createdBy filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
|
|
6300
|
+
* @param data.label filter by exact matching job label. Supports comma-separated list (e.g. 'deploy,release') and negation by prefixing all values with '!' (e.g. '!deploy,!release')
|
|
6292
6301
|
* @param data.parentJob The parent job that is at the origin and responsible for the execution of this script if any
|
|
6293
|
-
* @param data.scriptPathExact
|
|
6294
|
-
* @param data.scriptPathStart
|
|
6302
|
+
* @param data.scriptPathExact filter by exact matching script path. Supports comma-separated list (e.g. 'f/script1,f/script2') and negation by prefixing all values with '!' (e.g. '!f/script1,!f/script2')
|
|
6303
|
+
* @param data.scriptPathStart filter by script path prefix. Supports comma-separated list (e.g. 'f/folder1,f/folder2') and negation by prefixing all values with '!' (e.g. '!f/folder1,!f/folder2')
|
|
6295
6304
|
* @param data.schedulePath mask to filter by schedule path
|
|
6296
6305
|
* @param data.scriptHash mask to filter exact matching path
|
|
6297
6306
|
* @param data.startedBefore filter on started before (inclusive) timestamp
|
|
@@ -6302,14 +6311,14 @@ export declare class ConcurrencyGroupsService {
|
|
|
6302
6311
|
* @param data.completedAfter filter on started after (exclusive) timestamp
|
|
6303
6312
|
* @param data.createdBeforeQueue filter on jobs created before X for jobs in the queue only
|
|
6304
6313
|
* @param data.createdAfterQueue filter on jobs created after X for jobs in the queue only
|
|
6305
|
-
* @param data.jobKinds filter
|
|
6314
|
+
* @param data.jobKinds filter by job kind. Supports comma-separated list of values ('preview', 'script', 'dependencies', 'flow') and negation by prefixing all values with '!' (e.g. '!preview,!dependencies')
|
|
6306
6315
|
* @param data.args filter on jobs containing those args as a json subset (@> in postgres)
|
|
6307
|
-
* @param data.tag filter
|
|
6316
|
+
* @param data.tag filter by tag/worker group. Supports comma-separated list (e.g. 'gpu,highmem') and negation by prefixing all values with '!' (e.g. '!gpu,!highmem')
|
|
6308
6317
|
* @param data.result filter on jobs containing those result as a json subset (@> in postgres)
|
|
6309
6318
|
* @param data.allowWildcards allow wildcards (*) in the filter of label, tag, worker
|
|
6310
6319
|
* @param data.page which page to return (start at 1, default 1)
|
|
6311
6320
|
* @param data.perPage number of items to return for a given page (default 30, max 100)
|
|
6312
|
-
* @param data.triggerKind trigger kind (schedule,
|
|
6321
|
+
* @param data.triggerKind filter by trigger kind. Supports comma-separated list (e.g. 'schedule,webhook') and negation by prefixing all values with '!' (e.g. '!schedule,!webhook')
|
|
6313
6322
|
* @param data.isSkipped is the job skipped
|
|
6314
6323
|
* @param data.isFlowStep is the job a flow step
|
|
6315
6324
|
* @param data.hasNullParent has null parent
|
|
@@ -6375,6 +6384,8 @@ export declare class AssetService {
|
|
|
6375
6384
|
* @param data.assetPath Filter by asset path (case-insensitive partial match)
|
|
6376
6385
|
* @param data.usagePath Filter by usage path (case-insensitive partial match)
|
|
6377
6386
|
* @param data.assetKinds Filter by asset kinds (multiple values allowed)
|
|
6387
|
+
* @param data.path exact path match filter
|
|
6388
|
+
* @param data.columns JSONB subset match filter for columns using base64 encoded JSON
|
|
6378
6389
|
* @returns unknown paginated assets in the workspace
|
|
6379
6390
|
* @throws ApiError
|
|
6380
6391
|
*/
|