@rlvt/datasources-openapi-client 1.0.362 → 1.0.364
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/build/api.d.ts +714 -300
- package/build/api.js +28 -28
- package/build/definitions.d.ts +356 -265
- package/build/definitions.js +11 -8
- package/package.json +1 -1
package/build/api.d.ts
CHANGED
|
@@ -12,6 +12,12 @@ export default class {
|
|
|
12
12
|
private deleteOauthClient;
|
|
13
13
|
private getAuthorizeUrl;
|
|
14
14
|
private getAuthorizeUrlForDatasource;
|
|
15
|
+
private listDatagraphEntities;
|
|
16
|
+
private createEntity;
|
|
17
|
+
private getDatagraphEntity;
|
|
18
|
+
private updateDatagraphEntity;
|
|
19
|
+
private deleteDatagraphEntity;
|
|
20
|
+
private publishDatagraphEntity;
|
|
15
21
|
private listDatagraphSchemas;
|
|
16
22
|
private createSchema;
|
|
17
23
|
private validateDatagraphSchema;
|
|
@@ -19,12 +25,6 @@ export default class {
|
|
|
19
25
|
private updateDatagraphSchema;
|
|
20
26
|
private deleteDatagraphSchema;
|
|
21
27
|
private publishDatagraphSchema;
|
|
22
|
-
private listDatagraphEntities;
|
|
23
|
-
private createEntity;
|
|
24
|
-
private getDatagraphEntity;
|
|
25
|
-
private updateDatagraphEntity;
|
|
26
|
-
private deleteDatagraphEntity;
|
|
27
|
-
private publishDatagraphEntity;
|
|
28
28
|
private getCurrentStepDatasource;
|
|
29
29
|
private validateStepDatasource;
|
|
30
30
|
private getDatasourceSettings;
|
|
@@ -76,6 +76,7 @@ export default class {
|
|
|
76
76
|
template: {
|
|
77
77
|
datasource: {
|
|
78
78
|
mode: DatasourceMode;
|
|
79
|
+
hidden?: boolean | undefined;
|
|
79
80
|
readonly fetcher?: {
|
|
80
81
|
readonly?: "__readonly" | undefined;
|
|
81
82
|
params: unknown;
|
|
@@ -648,6 +649,8 @@ export default class {
|
|
|
648
649
|
type?: "avro" | undefined;
|
|
649
650
|
} | undefined;
|
|
650
651
|
textEncoding?: string | undefined;
|
|
652
|
+
pgpPrivateKey?: string | undefined;
|
|
653
|
+
pgpPassphrase?: string | undefined;
|
|
651
654
|
} | undefined;
|
|
652
655
|
type?: "url" | undefined;
|
|
653
656
|
preProcessingAggregations?: {
|
|
@@ -694,6 +697,8 @@ export default class {
|
|
|
694
697
|
type?: "avro" | undefined;
|
|
695
698
|
} | undefined;
|
|
696
699
|
textEncoding?: string | undefined;
|
|
700
|
+
pgpPrivateKey?: string | undefined;
|
|
701
|
+
pgpPassphrase?: string | undefined;
|
|
697
702
|
} | undefined;
|
|
698
703
|
type?: "file" | undefined;
|
|
699
704
|
preProcessingAggregations?: {
|
|
@@ -741,6 +746,8 @@ export default class {
|
|
|
741
746
|
type?: "avro" | undefined;
|
|
742
747
|
} | undefined;
|
|
743
748
|
textEncoding?: string | undefined;
|
|
749
|
+
pgpPrivateKey?: string | undefined;
|
|
750
|
+
pgpPassphrase?: string | undefined;
|
|
744
751
|
host?: string | undefined;
|
|
745
752
|
port?: number | undefined;
|
|
746
753
|
secure?: boolean | undefined;
|
|
@@ -794,6 +801,8 @@ export default class {
|
|
|
794
801
|
type?: "avro" | undefined;
|
|
795
802
|
} | undefined;
|
|
796
803
|
textEncoding?: string | undefined;
|
|
804
|
+
pgpPrivateKey?: string | undefined;
|
|
805
|
+
pgpPassphrase?: string | undefined;
|
|
797
806
|
host?: string | undefined;
|
|
798
807
|
port?: number | undefined;
|
|
799
808
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -868,6 +877,8 @@ export default class {
|
|
|
868
877
|
type?: "avro" | undefined;
|
|
869
878
|
} | undefined;
|
|
870
879
|
textEncoding?: string | undefined;
|
|
880
|
+
pgpPrivateKey?: string | undefined;
|
|
881
|
+
pgpPassphrase?: string | undefined;
|
|
871
882
|
clientEmail?: string | undefined;
|
|
872
883
|
projectId?: string | undefined;
|
|
873
884
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -972,6 +983,8 @@ export default class {
|
|
|
972
983
|
type?: "avro" | undefined;
|
|
973
984
|
} | undefined;
|
|
974
985
|
textEncoding?: string | undefined;
|
|
986
|
+
pgpPrivateKey?: string | undefined;
|
|
987
|
+
pgpPassphrase?: string | undefined;
|
|
975
988
|
processType?: import("./definitions").ProcessType | undefined;
|
|
976
989
|
accessKey?: string | undefined;
|
|
977
990
|
secretKey?: string | undefined;
|
|
@@ -1514,6 +1527,8 @@ export default class {
|
|
|
1514
1527
|
type?: "avro" | undefined;
|
|
1515
1528
|
} | undefined;
|
|
1516
1529
|
textEncoding?: string | undefined;
|
|
1530
|
+
pgpPrivateKey?: string | undefined;
|
|
1531
|
+
pgpPassphrase?: string | undefined;
|
|
1517
1532
|
} | undefined;
|
|
1518
1533
|
type?: "url" | undefined;
|
|
1519
1534
|
preProcessingAggregations?: {
|
|
@@ -1560,6 +1575,8 @@ export default class {
|
|
|
1560
1575
|
type?: "avro" | undefined;
|
|
1561
1576
|
} | undefined;
|
|
1562
1577
|
textEncoding?: string | undefined;
|
|
1578
|
+
pgpPrivateKey?: string | undefined;
|
|
1579
|
+
pgpPassphrase?: string | undefined;
|
|
1563
1580
|
} | undefined;
|
|
1564
1581
|
type?: "file" | undefined;
|
|
1565
1582
|
preProcessingAggregations?: {
|
|
@@ -1607,6 +1624,8 @@ export default class {
|
|
|
1607
1624
|
type?: "avro" | undefined;
|
|
1608
1625
|
} | undefined;
|
|
1609
1626
|
textEncoding?: string | undefined;
|
|
1627
|
+
pgpPrivateKey?: string | undefined;
|
|
1628
|
+
pgpPassphrase?: string | undefined;
|
|
1610
1629
|
host?: string | undefined;
|
|
1611
1630
|
port?: number | undefined;
|
|
1612
1631
|
secure?: boolean | undefined;
|
|
@@ -1660,6 +1679,8 @@ export default class {
|
|
|
1660
1679
|
type?: "avro" | undefined;
|
|
1661
1680
|
} | undefined;
|
|
1662
1681
|
textEncoding?: string | undefined;
|
|
1682
|
+
pgpPrivateKey?: string | undefined;
|
|
1683
|
+
pgpPassphrase?: string | undefined;
|
|
1663
1684
|
host?: string | undefined;
|
|
1664
1685
|
port?: number | undefined;
|
|
1665
1686
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -1734,6 +1755,8 @@ export default class {
|
|
|
1734
1755
|
type?: "avro" | undefined;
|
|
1735
1756
|
} | undefined;
|
|
1736
1757
|
textEncoding?: string | undefined;
|
|
1758
|
+
pgpPrivateKey?: string | undefined;
|
|
1759
|
+
pgpPassphrase?: string | undefined;
|
|
1737
1760
|
clientEmail?: string | undefined;
|
|
1738
1761
|
projectId?: string | undefined;
|
|
1739
1762
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -1838,6 +1861,8 @@ export default class {
|
|
|
1838
1861
|
type?: "avro" | undefined;
|
|
1839
1862
|
} | undefined;
|
|
1840
1863
|
textEncoding?: string | undefined;
|
|
1864
|
+
pgpPrivateKey?: string | undefined;
|
|
1865
|
+
pgpPassphrase?: string | undefined;
|
|
1841
1866
|
processType?: import("./definitions").ProcessType | undefined;
|
|
1842
1867
|
accessKey?: string | undefined;
|
|
1843
1868
|
secretKey?: string | undefined;
|
|
@@ -1998,6 +2023,7 @@ export default class {
|
|
|
1998
2023
|
} | {
|
|
1999
2024
|
datasource: {
|
|
2000
2025
|
mode: DatasourceMode;
|
|
2026
|
+
hidden?: boolean | undefined;
|
|
2001
2027
|
readonly fetcher?: {
|
|
2002
2028
|
readonly?: "__readonly" | undefined;
|
|
2003
2029
|
params: unknown;
|
|
@@ -2485,6 +2511,8 @@ export default class {
|
|
|
2485
2511
|
type?: "avro" | undefined;
|
|
2486
2512
|
} | undefined;
|
|
2487
2513
|
textEncoding?: string | undefined;
|
|
2514
|
+
pgpPrivateKey?: string | undefined;
|
|
2515
|
+
pgpPassphrase?: string | undefined;
|
|
2488
2516
|
} | undefined;
|
|
2489
2517
|
type?: "url" | undefined;
|
|
2490
2518
|
preProcessingAggregations?: {
|
|
@@ -2531,6 +2559,8 @@ export default class {
|
|
|
2531
2559
|
type?: "avro" | undefined;
|
|
2532
2560
|
} | undefined;
|
|
2533
2561
|
textEncoding?: string | undefined;
|
|
2562
|
+
pgpPrivateKey?: string | undefined;
|
|
2563
|
+
pgpPassphrase?: string | undefined;
|
|
2534
2564
|
} | undefined;
|
|
2535
2565
|
type?: "file" | undefined;
|
|
2536
2566
|
preProcessingAggregations?: {
|
|
@@ -2578,6 +2608,8 @@ export default class {
|
|
|
2578
2608
|
type?: "avro" | undefined;
|
|
2579
2609
|
} | undefined;
|
|
2580
2610
|
textEncoding?: string | undefined;
|
|
2611
|
+
pgpPrivateKey?: string | undefined;
|
|
2612
|
+
pgpPassphrase?: string | undefined;
|
|
2581
2613
|
host?: string | undefined;
|
|
2582
2614
|
port?: number | undefined;
|
|
2583
2615
|
secure?: boolean | undefined;
|
|
@@ -2631,6 +2663,8 @@ export default class {
|
|
|
2631
2663
|
type?: "avro" | undefined;
|
|
2632
2664
|
} | undefined;
|
|
2633
2665
|
textEncoding?: string | undefined;
|
|
2666
|
+
pgpPrivateKey?: string | undefined;
|
|
2667
|
+
pgpPassphrase?: string | undefined;
|
|
2634
2668
|
host?: string | undefined;
|
|
2635
2669
|
port?: number | undefined;
|
|
2636
2670
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -2705,6 +2739,8 @@ export default class {
|
|
|
2705
2739
|
type?: "avro" | undefined;
|
|
2706
2740
|
} | undefined;
|
|
2707
2741
|
textEncoding?: string | undefined;
|
|
2742
|
+
pgpPrivateKey?: string | undefined;
|
|
2743
|
+
pgpPassphrase?: string | undefined;
|
|
2708
2744
|
clientEmail?: string | undefined;
|
|
2709
2745
|
projectId?: string | undefined;
|
|
2710
2746
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -2809,6 +2845,8 @@ export default class {
|
|
|
2809
2845
|
type?: "avro" | undefined;
|
|
2810
2846
|
} | undefined;
|
|
2811
2847
|
textEncoding?: string | undefined;
|
|
2848
|
+
pgpPrivateKey?: string | undefined;
|
|
2849
|
+
pgpPassphrase?: string | undefined;
|
|
2812
2850
|
processType?: import("./definitions").ProcessType | undefined;
|
|
2813
2851
|
accessKey?: string | undefined;
|
|
2814
2852
|
secretKey?: string | undefined;
|
|
@@ -3351,6 +3389,8 @@ export default class {
|
|
|
3351
3389
|
type?: "avro" | undefined;
|
|
3352
3390
|
} | undefined;
|
|
3353
3391
|
textEncoding?: string | undefined;
|
|
3392
|
+
pgpPrivateKey?: string | undefined;
|
|
3393
|
+
pgpPassphrase?: string | undefined;
|
|
3354
3394
|
} | undefined;
|
|
3355
3395
|
type?: "url" | undefined;
|
|
3356
3396
|
preProcessingAggregations?: {
|
|
@@ -3397,6 +3437,8 @@ export default class {
|
|
|
3397
3437
|
type?: "avro" | undefined;
|
|
3398
3438
|
} | undefined;
|
|
3399
3439
|
textEncoding?: string | undefined;
|
|
3440
|
+
pgpPrivateKey?: string | undefined;
|
|
3441
|
+
pgpPassphrase?: string | undefined;
|
|
3400
3442
|
} | undefined;
|
|
3401
3443
|
type?: "file" | undefined;
|
|
3402
3444
|
preProcessingAggregations?: {
|
|
@@ -3444,6 +3486,8 @@ export default class {
|
|
|
3444
3486
|
type?: "avro" | undefined;
|
|
3445
3487
|
} | undefined;
|
|
3446
3488
|
textEncoding?: string | undefined;
|
|
3489
|
+
pgpPrivateKey?: string | undefined;
|
|
3490
|
+
pgpPassphrase?: string | undefined;
|
|
3447
3491
|
host?: string | undefined;
|
|
3448
3492
|
port?: number | undefined;
|
|
3449
3493
|
secure?: boolean | undefined;
|
|
@@ -3497,6 +3541,8 @@ export default class {
|
|
|
3497
3541
|
type?: "avro" | undefined;
|
|
3498
3542
|
} | undefined;
|
|
3499
3543
|
textEncoding?: string | undefined;
|
|
3544
|
+
pgpPrivateKey?: string | undefined;
|
|
3545
|
+
pgpPassphrase?: string | undefined;
|
|
3500
3546
|
host?: string | undefined;
|
|
3501
3547
|
port?: number | undefined;
|
|
3502
3548
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -3571,6 +3617,8 @@ export default class {
|
|
|
3571
3617
|
type?: "avro" | undefined;
|
|
3572
3618
|
} | undefined;
|
|
3573
3619
|
textEncoding?: string | undefined;
|
|
3620
|
+
pgpPrivateKey?: string | undefined;
|
|
3621
|
+
pgpPassphrase?: string | undefined;
|
|
3574
3622
|
clientEmail?: string | undefined;
|
|
3575
3623
|
projectId?: string | undefined;
|
|
3576
3624
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -3675,6 +3723,8 @@ export default class {
|
|
|
3675
3723
|
type?: "avro" | undefined;
|
|
3676
3724
|
} | undefined;
|
|
3677
3725
|
textEncoding?: string | undefined;
|
|
3726
|
+
pgpPrivateKey?: string | undefined;
|
|
3727
|
+
pgpPassphrase?: string | undefined;
|
|
3678
3728
|
processType?: import("./definitions").ProcessType | undefined;
|
|
3679
3729
|
accessKey?: string | undefined;
|
|
3680
3730
|
secretKey?: string | undefined;
|
|
@@ -3835,6 +3885,7 @@ export default class {
|
|
|
3835
3885
|
} | {
|
|
3836
3886
|
datasource: {
|
|
3837
3887
|
mode: DatasourceMode;
|
|
3888
|
+
hidden?: boolean | undefined;
|
|
3838
3889
|
readonly fetcher?: {
|
|
3839
3890
|
readonly?: "__readonly" | undefined;
|
|
3840
3891
|
params: unknown;
|
|
@@ -4402,6 +4453,7 @@ export default class {
|
|
|
4402
4453
|
} | {
|
|
4403
4454
|
datasource: {
|
|
4404
4455
|
mode: DatasourceMode;
|
|
4456
|
+
hidden?: boolean | undefined;
|
|
4405
4457
|
readonly fetcher?: {
|
|
4406
4458
|
readonly?: "__readonly" | undefined;
|
|
4407
4459
|
params: unknown;
|
|
@@ -5507,6 +5559,272 @@ export default class {
|
|
|
5507
5559
|
}, any, {}>>;
|
|
5508
5560
|
};
|
|
5509
5561
|
get Datagraph(): {
|
|
5562
|
+
listEntities: (params: {
|
|
5563
|
+
page?: number | undefined;
|
|
5564
|
+
perPage?: number | undefined;
|
|
5565
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
5566
|
+
paginationCount: number;
|
|
5567
|
+
paginationPage: number;
|
|
5568
|
+
paginationLimit: number;
|
|
5569
|
+
} & {
|
|
5570
|
+
status: "success";
|
|
5571
|
+
} & {
|
|
5572
|
+
datetime: string;
|
|
5573
|
+
data: {
|
|
5574
|
+
readonly companyId: string & {
|
|
5575
|
+
readonly?: "__readonly" | undefined;
|
|
5576
|
+
};
|
|
5577
|
+
readonly resourceGroupIds: string[];
|
|
5578
|
+
readonly versions: (string | {
|
|
5579
|
+
readonly companyId: string & {
|
|
5580
|
+
readonly?: "__readonly" | undefined;
|
|
5581
|
+
};
|
|
5582
|
+
readonly state: import("./definitions").DatagraphEntityVersionState & {
|
|
5583
|
+
readonly?: "__readonly" | undefined;
|
|
5584
|
+
};
|
|
5585
|
+
readonly definition: {
|
|
5586
|
+
readonly?: "__readonly" | undefined;
|
|
5587
|
+
name: string;
|
|
5588
|
+
columns: {
|
|
5589
|
+
query: {
|
|
5590
|
+
query: string;
|
|
5591
|
+
datasourceId: string;
|
|
5592
|
+
};
|
|
5593
|
+
name: string;
|
|
5594
|
+
id: string;
|
|
5595
|
+
primitive: FieldMapType;
|
|
5596
|
+
overridenName: string | null;
|
|
5597
|
+
dependsOn: unknown;
|
|
5598
|
+
}[];
|
|
5599
|
+
};
|
|
5600
|
+
_id: string;
|
|
5601
|
+
__v: number;
|
|
5602
|
+
})[];
|
|
5603
|
+
readonly archivedAt: string & {
|
|
5604
|
+
readonly?: "__readonly" | undefined;
|
|
5605
|
+
};
|
|
5606
|
+
}[];
|
|
5607
|
+
program: string;
|
|
5608
|
+
version: string;
|
|
5609
|
+
status: string;
|
|
5610
|
+
code?: number | undefined;
|
|
5611
|
+
message: string;
|
|
5612
|
+
}, any, {}>>;
|
|
5613
|
+
createEntity: (params: Record<string, never>, data: {
|
|
5614
|
+
entity: {
|
|
5615
|
+
name: string;
|
|
5616
|
+
columns: {
|
|
5617
|
+
query: {
|
|
5618
|
+
query: string;
|
|
5619
|
+
datasourceId: string;
|
|
5620
|
+
};
|
|
5621
|
+
name: string;
|
|
5622
|
+
id: string;
|
|
5623
|
+
primitive: FieldMapType;
|
|
5624
|
+
overridenName: string | null;
|
|
5625
|
+
dependsOn: unknown;
|
|
5626
|
+
}[];
|
|
5627
|
+
};
|
|
5628
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
5629
|
+
status: "success";
|
|
5630
|
+
} & {
|
|
5631
|
+
datetime: string;
|
|
5632
|
+
data: {
|
|
5633
|
+
readonly companyId: string & {
|
|
5634
|
+
readonly?: "__readonly" | undefined;
|
|
5635
|
+
};
|
|
5636
|
+
readonly resourceGroupIds: string[];
|
|
5637
|
+
readonly versions: (string | {
|
|
5638
|
+
readonly companyId: string & {
|
|
5639
|
+
readonly?: "__readonly" | undefined;
|
|
5640
|
+
};
|
|
5641
|
+
readonly state: import("./definitions").DatagraphEntityVersionState & {
|
|
5642
|
+
readonly?: "__readonly" | undefined;
|
|
5643
|
+
};
|
|
5644
|
+
readonly definition: {
|
|
5645
|
+
readonly?: "__readonly" | undefined;
|
|
5646
|
+
name: string;
|
|
5647
|
+
columns: {
|
|
5648
|
+
query: {
|
|
5649
|
+
query: string;
|
|
5650
|
+
datasourceId: string;
|
|
5651
|
+
};
|
|
5652
|
+
name: string;
|
|
5653
|
+
id: string;
|
|
5654
|
+
primitive: FieldMapType;
|
|
5655
|
+
overridenName: string | null;
|
|
5656
|
+
dependsOn: unknown;
|
|
5657
|
+
}[];
|
|
5658
|
+
};
|
|
5659
|
+
_id: string;
|
|
5660
|
+
__v: number;
|
|
5661
|
+
})[];
|
|
5662
|
+
readonly archivedAt: string & {
|
|
5663
|
+
readonly?: "__readonly" | undefined;
|
|
5664
|
+
};
|
|
5665
|
+
};
|
|
5666
|
+
program: string;
|
|
5667
|
+
version: string;
|
|
5668
|
+
status: string;
|
|
5669
|
+
code?: number | undefined;
|
|
5670
|
+
message: string;
|
|
5671
|
+
}, any, {}>>;
|
|
5672
|
+
getEntity: (params: {
|
|
5673
|
+
id: string;
|
|
5674
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
5675
|
+
status: "success";
|
|
5676
|
+
} & {
|
|
5677
|
+
datetime: string;
|
|
5678
|
+
data: {
|
|
5679
|
+
readonly companyId: string & {
|
|
5680
|
+
readonly?: "__readonly" | undefined;
|
|
5681
|
+
};
|
|
5682
|
+
readonly resourceGroupIds: string[];
|
|
5683
|
+
readonly versions: (string | {
|
|
5684
|
+
readonly companyId: string & {
|
|
5685
|
+
readonly?: "__readonly" | undefined;
|
|
5686
|
+
};
|
|
5687
|
+
readonly state: import("./definitions").DatagraphEntityVersionState & {
|
|
5688
|
+
readonly?: "__readonly" | undefined;
|
|
5689
|
+
};
|
|
5690
|
+
readonly definition: {
|
|
5691
|
+
readonly?: "__readonly" | undefined;
|
|
5692
|
+
name: string;
|
|
5693
|
+
columns: {
|
|
5694
|
+
query: {
|
|
5695
|
+
query: string;
|
|
5696
|
+
datasourceId: string;
|
|
5697
|
+
};
|
|
5698
|
+
name: string;
|
|
5699
|
+
id: string;
|
|
5700
|
+
primitive: FieldMapType;
|
|
5701
|
+
overridenName: string | null;
|
|
5702
|
+
dependsOn: unknown;
|
|
5703
|
+
}[];
|
|
5704
|
+
};
|
|
5705
|
+
_id: string;
|
|
5706
|
+
__v: number;
|
|
5707
|
+
})[];
|
|
5708
|
+
readonly archivedAt: string & {
|
|
5709
|
+
readonly?: "__readonly" | undefined;
|
|
5710
|
+
};
|
|
5711
|
+
};
|
|
5712
|
+
program: string;
|
|
5713
|
+
version: string;
|
|
5714
|
+
status: string;
|
|
5715
|
+
code?: number | undefined;
|
|
5716
|
+
message: string;
|
|
5717
|
+
}, any, {}>>;
|
|
5718
|
+
updateEntity: (params: {
|
|
5719
|
+
id: string;
|
|
5720
|
+
}, data: {
|
|
5721
|
+
entity: {
|
|
5722
|
+
name: string;
|
|
5723
|
+
columns: {
|
|
5724
|
+
query: {
|
|
5725
|
+
query: string;
|
|
5726
|
+
datasourceId: string;
|
|
5727
|
+
};
|
|
5728
|
+
name: string;
|
|
5729
|
+
id: string;
|
|
5730
|
+
primitive: FieldMapType;
|
|
5731
|
+
overridenName: string | null;
|
|
5732
|
+
dependsOn: unknown;
|
|
5733
|
+
}[];
|
|
5734
|
+
};
|
|
5735
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
5736
|
+
status: "success";
|
|
5737
|
+
} & {
|
|
5738
|
+
datetime: string;
|
|
5739
|
+
data: {
|
|
5740
|
+
readonly companyId: string & {
|
|
5741
|
+
readonly?: "__readonly" | undefined;
|
|
5742
|
+
};
|
|
5743
|
+
readonly resourceGroupIds: string[];
|
|
5744
|
+
readonly versions: (string | {
|
|
5745
|
+
readonly companyId: string & {
|
|
5746
|
+
readonly?: "__readonly" | undefined;
|
|
5747
|
+
};
|
|
5748
|
+
readonly state: import("./definitions").DatagraphEntityVersionState & {
|
|
5749
|
+
readonly?: "__readonly" | undefined;
|
|
5750
|
+
};
|
|
5751
|
+
readonly definition: {
|
|
5752
|
+
readonly?: "__readonly" | undefined;
|
|
5753
|
+
name: string;
|
|
5754
|
+
columns: {
|
|
5755
|
+
query: {
|
|
5756
|
+
query: string;
|
|
5757
|
+
datasourceId: string;
|
|
5758
|
+
};
|
|
5759
|
+
name: string;
|
|
5760
|
+
id: string;
|
|
5761
|
+
primitive: FieldMapType;
|
|
5762
|
+
overridenName: string | null;
|
|
5763
|
+
dependsOn: unknown;
|
|
5764
|
+
}[];
|
|
5765
|
+
};
|
|
5766
|
+
_id: string;
|
|
5767
|
+
__v: number;
|
|
5768
|
+
})[];
|
|
5769
|
+
readonly archivedAt: string & {
|
|
5770
|
+
readonly?: "__readonly" | undefined;
|
|
5771
|
+
};
|
|
5772
|
+
};
|
|
5773
|
+
program: string;
|
|
5774
|
+
version: string;
|
|
5775
|
+
status: string;
|
|
5776
|
+
code?: number | undefined;
|
|
5777
|
+
message: string;
|
|
5778
|
+
}, any, {}>>;
|
|
5779
|
+
deleteEntity: (params: {
|
|
5780
|
+
id: string;
|
|
5781
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
5782
|
+
publishEntity: (params: {
|
|
5783
|
+
id: string;
|
|
5784
|
+
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
5785
|
+
status: "success";
|
|
5786
|
+
} & {
|
|
5787
|
+
datetime: string;
|
|
5788
|
+
data: {
|
|
5789
|
+
readonly companyId: string & {
|
|
5790
|
+
readonly?: "__readonly" | undefined;
|
|
5791
|
+
};
|
|
5792
|
+
readonly resourceGroupIds: string[];
|
|
5793
|
+
readonly versions: (string | {
|
|
5794
|
+
readonly companyId: string & {
|
|
5795
|
+
readonly?: "__readonly" | undefined;
|
|
5796
|
+
};
|
|
5797
|
+
readonly state: import("./definitions").DatagraphEntityVersionState & {
|
|
5798
|
+
readonly?: "__readonly" | undefined;
|
|
5799
|
+
};
|
|
5800
|
+
readonly definition: {
|
|
5801
|
+
readonly?: "__readonly" | undefined;
|
|
5802
|
+
name: string;
|
|
5803
|
+
columns: {
|
|
5804
|
+
query: {
|
|
5805
|
+
query: string;
|
|
5806
|
+
datasourceId: string;
|
|
5807
|
+
};
|
|
5808
|
+
name: string;
|
|
5809
|
+
id: string;
|
|
5810
|
+
primitive: FieldMapType;
|
|
5811
|
+
overridenName: string | null;
|
|
5812
|
+
dependsOn: unknown;
|
|
5813
|
+
}[];
|
|
5814
|
+
};
|
|
5815
|
+
_id: string;
|
|
5816
|
+
__v: number;
|
|
5817
|
+
})[];
|
|
5818
|
+
readonly archivedAt: string & {
|
|
5819
|
+
readonly?: "__readonly" | undefined;
|
|
5820
|
+
};
|
|
5821
|
+
};
|
|
5822
|
+
program: string;
|
|
5823
|
+
version: string;
|
|
5824
|
+
status: string;
|
|
5825
|
+
code?: number | undefined;
|
|
5826
|
+
message: string;
|
|
5827
|
+
}, any, {}>>;
|
|
5510
5828
|
listSchemas: (params: {
|
|
5511
5829
|
page?: number | undefined;
|
|
5512
5830
|
perPage?: number | undefined;
|
|
@@ -5532,6 +5850,13 @@ export default class {
|
|
|
5532
5850
|
};
|
|
5533
5851
|
readonly definition: {
|
|
5534
5852
|
name: string;
|
|
5853
|
+
columns: {
|
|
5854
|
+
name: string;
|
|
5855
|
+
type: "string" | "boolean" | "datetime" | "integer" | "date" | "decimal" | "text";
|
|
5856
|
+
default?: string | number | boolean | undefined;
|
|
5857
|
+
description?: string | undefined;
|
|
5858
|
+
nullable: boolean;
|
|
5859
|
+
}[];
|
|
5535
5860
|
relations?: {
|
|
5536
5861
|
columns: string[];
|
|
5537
5862
|
type: "Relation";
|
|
@@ -5542,13 +5867,6 @@ export default class {
|
|
|
5542
5867
|
table: string;
|
|
5543
5868
|
};
|
|
5544
5869
|
}[] | undefined;
|
|
5545
|
-
columns: {
|
|
5546
|
-
name: string;
|
|
5547
|
-
type: "string" | "boolean" | "datetime" | "integer" | "date" | "decimal" | "text";
|
|
5548
|
-
default?: string | number | boolean | undefined;
|
|
5549
|
-
description?: string | undefined;
|
|
5550
|
-
nullable: boolean;
|
|
5551
|
-
}[];
|
|
5552
5870
|
datasourceId: string;
|
|
5553
5871
|
description?: string | undefined;
|
|
5554
5872
|
virtualColumns?: {
|
|
@@ -5583,6 +5901,13 @@ export default class {
|
|
|
5583
5901
|
createSchema: (params: Record<string, never>, data: {
|
|
5584
5902
|
schema: {
|
|
5585
5903
|
name: string;
|
|
5904
|
+
columns: {
|
|
5905
|
+
name: string;
|
|
5906
|
+
type: "string" | "boolean" | "datetime" | "integer" | "date" | "decimal" | "text";
|
|
5907
|
+
default?: string | number | boolean | undefined;
|
|
5908
|
+
description?: string | undefined;
|
|
5909
|
+
nullable: boolean;
|
|
5910
|
+
}[];
|
|
5586
5911
|
relations?: {
|
|
5587
5912
|
columns: string[];
|
|
5588
5913
|
type: "Relation";
|
|
@@ -5593,13 +5918,6 @@ export default class {
|
|
|
5593
5918
|
table: string;
|
|
5594
5919
|
};
|
|
5595
5920
|
}[] | undefined;
|
|
5596
|
-
columns: {
|
|
5597
|
-
name: string;
|
|
5598
|
-
type: "string" | "boolean" | "datetime" | "integer" | "date" | "decimal" | "text";
|
|
5599
|
-
default?: string | number | boolean | undefined;
|
|
5600
|
-
description?: string | undefined;
|
|
5601
|
-
nullable: boolean;
|
|
5602
|
-
}[];
|
|
5603
5921
|
datasourceId: string;
|
|
5604
5922
|
description?: string | undefined;
|
|
5605
5923
|
virtualColumns?: {
|
|
@@ -5641,6 +5959,13 @@ export default class {
|
|
|
5641
5959
|
validation: {
|
|
5642
5960
|
data: {
|
|
5643
5961
|
name: string;
|
|
5962
|
+
columns: {
|
|
5963
|
+
name: string;
|
|
5964
|
+
type: "string" | "boolean" | "datetime" | "integer" | "date" | "decimal" | "text";
|
|
5965
|
+
default?: string | number | boolean | undefined;
|
|
5966
|
+
description?: string | undefined;
|
|
5967
|
+
nullable: boolean;
|
|
5968
|
+
}[];
|
|
5644
5969
|
relations?: {
|
|
5645
5970
|
columns: string[];
|
|
5646
5971
|
type: "Relation";
|
|
@@ -5651,13 +5976,6 @@ export default class {
|
|
|
5651
5976
|
table: string;
|
|
5652
5977
|
};
|
|
5653
5978
|
}[] | undefined;
|
|
5654
|
-
columns: {
|
|
5655
|
-
name: string;
|
|
5656
|
-
type: "string" | "boolean" | "datetime" | "integer" | "date" | "decimal" | "text";
|
|
5657
|
-
default?: string | number | boolean | undefined;
|
|
5658
|
-
description?: string | undefined;
|
|
5659
|
-
nullable: boolean;
|
|
5660
|
-
}[];
|
|
5661
5979
|
datasourceId: string;
|
|
5662
5980
|
description?: string | undefined;
|
|
5663
5981
|
virtualColumns?: {
|
|
@@ -5727,6 +6045,13 @@ export default class {
|
|
|
5727
6045
|
}, data: {
|
|
5728
6046
|
schema: {
|
|
5729
6047
|
name: string;
|
|
6048
|
+
columns: {
|
|
6049
|
+
name: string;
|
|
6050
|
+
type: "string" | "boolean" | "datetime" | "integer" | "date" | "decimal" | "text";
|
|
6051
|
+
default?: string | number | boolean | undefined;
|
|
6052
|
+
description?: string | undefined;
|
|
6053
|
+
nullable: boolean;
|
|
6054
|
+
}[];
|
|
5730
6055
|
relations?: {
|
|
5731
6056
|
columns: string[];
|
|
5732
6057
|
type: "Relation";
|
|
@@ -5737,13 +6062,6 @@ export default class {
|
|
|
5737
6062
|
table: string;
|
|
5738
6063
|
};
|
|
5739
6064
|
}[] | undefined;
|
|
5740
|
-
columns: {
|
|
5741
|
-
name: string;
|
|
5742
|
-
type: "string" | "boolean" | "datetime" | "integer" | "date" | "decimal" | "text";
|
|
5743
|
-
default?: string | number | boolean | undefined;
|
|
5744
|
-
description?: string | undefined;
|
|
5745
|
-
nullable: boolean;
|
|
5746
|
-
}[];
|
|
5747
6065
|
datasourceId: string;
|
|
5748
6066
|
description?: string | undefined;
|
|
5749
6067
|
virtualColumns?: {
|
|
@@ -5791,272 +6109,6 @@ export default class {
|
|
|
5791
6109
|
code?: number | undefined;
|
|
5792
6110
|
message: string;
|
|
5793
6111
|
}, any, {}>>;
|
|
5794
|
-
listEntities: (params: {
|
|
5795
|
-
page?: number | undefined;
|
|
5796
|
-
perPage?: number | undefined;
|
|
5797
|
-
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
5798
|
-
paginationCount: number;
|
|
5799
|
-
paginationPage: number;
|
|
5800
|
-
paginationLimit: number;
|
|
5801
|
-
} & {
|
|
5802
|
-
status: "success";
|
|
5803
|
-
} & {
|
|
5804
|
-
datetime: string;
|
|
5805
|
-
data: {
|
|
5806
|
-
readonly companyId: string & {
|
|
5807
|
-
readonly?: "__readonly" | undefined;
|
|
5808
|
-
};
|
|
5809
|
-
readonly resourceGroupIds: string[];
|
|
5810
|
-
readonly versions: (string | {
|
|
5811
|
-
readonly companyId: string & {
|
|
5812
|
-
readonly?: "__readonly" | undefined;
|
|
5813
|
-
};
|
|
5814
|
-
readonly state: import("./definitions").DatagraphEntityVersionState & {
|
|
5815
|
-
readonly?: "__readonly" | undefined;
|
|
5816
|
-
};
|
|
5817
|
-
readonly definition: {
|
|
5818
|
-
readonly?: "__readonly" | undefined;
|
|
5819
|
-
name: string;
|
|
5820
|
-
columns: {
|
|
5821
|
-
query: {
|
|
5822
|
-
query: string;
|
|
5823
|
-
datasourceId: string;
|
|
5824
|
-
};
|
|
5825
|
-
name: string;
|
|
5826
|
-
id: string;
|
|
5827
|
-
primitive: FieldMapType;
|
|
5828
|
-
overridenName: string | null;
|
|
5829
|
-
dependsOn: unknown;
|
|
5830
|
-
}[];
|
|
5831
|
-
};
|
|
5832
|
-
_id: string;
|
|
5833
|
-
__v: number;
|
|
5834
|
-
})[];
|
|
5835
|
-
readonly archivedAt: string & {
|
|
5836
|
-
readonly?: "__readonly" | undefined;
|
|
5837
|
-
};
|
|
5838
|
-
}[];
|
|
5839
|
-
program: string;
|
|
5840
|
-
version: string;
|
|
5841
|
-
status: string;
|
|
5842
|
-
code?: number | undefined;
|
|
5843
|
-
message: string;
|
|
5844
|
-
}, any, {}>>;
|
|
5845
|
-
createEntity: (params: Record<string, never>, data: {
|
|
5846
|
-
entity: {
|
|
5847
|
-
name: string;
|
|
5848
|
-
columns: {
|
|
5849
|
-
query: {
|
|
5850
|
-
query: string;
|
|
5851
|
-
datasourceId: string;
|
|
5852
|
-
};
|
|
5853
|
-
name: string;
|
|
5854
|
-
id: string;
|
|
5855
|
-
primitive: FieldMapType;
|
|
5856
|
-
overridenName: string | null;
|
|
5857
|
-
dependsOn: unknown;
|
|
5858
|
-
}[];
|
|
5859
|
-
};
|
|
5860
|
-
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
5861
|
-
status: "success";
|
|
5862
|
-
} & {
|
|
5863
|
-
datetime: string;
|
|
5864
|
-
data: {
|
|
5865
|
-
readonly companyId: string & {
|
|
5866
|
-
readonly?: "__readonly" | undefined;
|
|
5867
|
-
};
|
|
5868
|
-
readonly resourceGroupIds: string[];
|
|
5869
|
-
readonly versions: (string | {
|
|
5870
|
-
readonly companyId: string & {
|
|
5871
|
-
readonly?: "__readonly" | undefined;
|
|
5872
|
-
};
|
|
5873
|
-
readonly state: import("./definitions").DatagraphEntityVersionState & {
|
|
5874
|
-
readonly?: "__readonly" | undefined;
|
|
5875
|
-
};
|
|
5876
|
-
readonly definition: {
|
|
5877
|
-
readonly?: "__readonly" | undefined;
|
|
5878
|
-
name: string;
|
|
5879
|
-
columns: {
|
|
5880
|
-
query: {
|
|
5881
|
-
query: string;
|
|
5882
|
-
datasourceId: string;
|
|
5883
|
-
};
|
|
5884
|
-
name: string;
|
|
5885
|
-
id: string;
|
|
5886
|
-
primitive: FieldMapType;
|
|
5887
|
-
overridenName: string | null;
|
|
5888
|
-
dependsOn: unknown;
|
|
5889
|
-
}[];
|
|
5890
|
-
};
|
|
5891
|
-
_id: string;
|
|
5892
|
-
__v: number;
|
|
5893
|
-
})[];
|
|
5894
|
-
readonly archivedAt: string & {
|
|
5895
|
-
readonly?: "__readonly" | undefined;
|
|
5896
|
-
};
|
|
5897
|
-
};
|
|
5898
|
-
program: string;
|
|
5899
|
-
version: string;
|
|
5900
|
-
status: string;
|
|
5901
|
-
code?: number | undefined;
|
|
5902
|
-
message: string;
|
|
5903
|
-
}, any, {}>>;
|
|
5904
|
-
getEntity: (params: {
|
|
5905
|
-
id: string;
|
|
5906
|
-
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
5907
|
-
status: "success";
|
|
5908
|
-
} & {
|
|
5909
|
-
datetime: string;
|
|
5910
|
-
data: {
|
|
5911
|
-
readonly companyId: string & {
|
|
5912
|
-
readonly?: "__readonly" | undefined;
|
|
5913
|
-
};
|
|
5914
|
-
readonly resourceGroupIds: string[];
|
|
5915
|
-
readonly versions: (string | {
|
|
5916
|
-
readonly companyId: string & {
|
|
5917
|
-
readonly?: "__readonly" | undefined;
|
|
5918
|
-
};
|
|
5919
|
-
readonly state: import("./definitions").DatagraphEntityVersionState & {
|
|
5920
|
-
readonly?: "__readonly" | undefined;
|
|
5921
|
-
};
|
|
5922
|
-
readonly definition: {
|
|
5923
|
-
readonly?: "__readonly" | undefined;
|
|
5924
|
-
name: string;
|
|
5925
|
-
columns: {
|
|
5926
|
-
query: {
|
|
5927
|
-
query: string;
|
|
5928
|
-
datasourceId: string;
|
|
5929
|
-
};
|
|
5930
|
-
name: string;
|
|
5931
|
-
id: string;
|
|
5932
|
-
primitive: FieldMapType;
|
|
5933
|
-
overridenName: string | null;
|
|
5934
|
-
dependsOn: unknown;
|
|
5935
|
-
}[];
|
|
5936
|
-
};
|
|
5937
|
-
_id: string;
|
|
5938
|
-
__v: number;
|
|
5939
|
-
})[];
|
|
5940
|
-
readonly archivedAt: string & {
|
|
5941
|
-
readonly?: "__readonly" | undefined;
|
|
5942
|
-
};
|
|
5943
|
-
};
|
|
5944
|
-
program: string;
|
|
5945
|
-
version: string;
|
|
5946
|
-
status: string;
|
|
5947
|
-
code?: number | undefined;
|
|
5948
|
-
message: string;
|
|
5949
|
-
}, any, {}>>;
|
|
5950
|
-
updateEntity: (params: {
|
|
5951
|
-
id: string;
|
|
5952
|
-
}, data: {
|
|
5953
|
-
entity: {
|
|
5954
|
-
name: string;
|
|
5955
|
-
columns: {
|
|
5956
|
-
query: {
|
|
5957
|
-
query: string;
|
|
5958
|
-
datasourceId: string;
|
|
5959
|
-
};
|
|
5960
|
-
name: string;
|
|
5961
|
-
id: string;
|
|
5962
|
-
primitive: FieldMapType;
|
|
5963
|
-
overridenName: string | null;
|
|
5964
|
-
dependsOn: unknown;
|
|
5965
|
-
}[];
|
|
5966
|
-
};
|
|
5967
|
-
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
5968
|
-
status: "success";
|
|
5969
|
-
} & {
|
|
5970
|
-
datetime: string;
|
|
5971
|
-
data: {
|
|
5972
|
-
readonly companyId: string & {
|
|
5973
|
-
readonly?: "__readonly" | undefined;
|
|
5974
|
-
};
|
|
5975
|
-
readonly resourceGroupIds: string[];
|
|
5976
|
-
readonly versions: (string | {
|
|
5977
|
-
readonly companyId: string & {
|
|
5978
|
-
readonly?: "__readonly" | undefined;
|
|
5979
|
-
};
|
|
5980
|
-
readonly state: import("./definitions").DatagraphEntityVersionState & {
|
|
5981
|
-
readonly?: "__readonly" | undefined;
|
|
5982
|
-
};
|
|
5983
|
-
readonly definition: {
|
|
5984
|
-
readonly?: "__readonly" | undefined;
|
|
5985
|
-
name: string;
|
|
5986
|
-
columns: {
|
|
5987
|
-
query: {
|
|
5988
|
-
query: string;
|
|
5989
|
-
datasourceId: string;
|
|
5990
|
-
};
|
|
5991
|
-
name: string;
|
|
5992
|
-
id: string;
|
|
5993
|
-
primitive: FieldMapType;
|
|
5994
|
-
overridenName: string | null;
|
|
5995
|
-
dependsOn: unknown;
|
|
5996
|
-
}[];
|
|
5997
|
-
};
|
|
5998
|
-
_id: string;
|
|
5999
|
-
__v: number;
|
|
6000
|
-
})[];
|
|
6001
|
-
readonly archivedAt: string & {
|
|
6002
|
-
readonly?: "__readonly" | undefined;
|
|
6003
|
-
};
|
|
6004
|
-
};
|
|
6005
|
-
program: string;
|
|
6006
|
-
version: string;
|
|
6007
|
-
status: string;
|
|
6008
|
-
code?: number | undefined;
|
|
6009
|
-
message: string;
|
|
6010
|
-
}, any, {}>>;
|
|
6011
|
-
deleteEntity: (params: {
|
|
6012
|
-
id: string;
|
|
6013
|
-
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<any, any, {}>>;
|
|
6014
|
-
publishEntity: (params: {
|
|
6015
|
-
id: string;
|
|
6016
|
-
}, options?: AxiosRequestConfig<any> | undefined) => Promise<import("axios").AxiosResponse<{
|
|
6017
|
-
status: "success";
|
|
6018
|
-
} & {
|
|
6019
|
-
datetime: string;
|
|
6020
|
-
data: {
|
|
6021
|
-
readonly companyId: string & {
|
|
6022
|
-
readonly?: "__readonly" | undefined;
|
|
6023
|
-
};
|
|
6024
|
-
readonly resourceGroupIds: string[];
|
|
6025
|
-
readonly versions: (string | {
|
|
6026
|
-
readonly companyId: string & {
|
|
6027
|
-
readonly?: "__readonly" | undefined;
|
|
6028
|
-
};
|
|
6029
|
-
readonly state: import("./definitions").DatagraphEntityVersionState & {
|
|
6030
|
-
readonly?: "__readonly" | undefined;
|
|
6031
|
-
};
|
|
6032
|
-
readonly definition: {
|
|
6033
|
-
readonly?: "__readonly" | undefined;
|
|
6034
|
-
name: string;
|
|
6035
|
-
columns: {
|
|
6036
|
-
query: {
|
|
6037
|
-
query: string;
|
|
6038
|
-
datasourceId: string;
|
|
6039
|
-
};
|
|
6040
|
-
name: string;
|
|
6041
|
-
id: string;
|
|
6042
|
-
primitive: FieldMapType;
|
|
6043
|
-
overridenName: string | null;
|
|
6044
|
-
dependsOn: unknown;
|
|
6045
|
-
}[];
|
|
6046
|
-
};
|
|
6047
|
-
_id: string;
|
|
6048
|
-
__v: number;
|
|
6049
|
-
})[];
|
|
6050
|
-
readonly archivedAt: string & {
|
|
6051
|
-
readonly?: "__readonly" | undefined;
|
|
6052
|
-
};
|
|
6053
|
-
};
|
|
6054
|
-
program: string;
|
|
6055
|
-
version: string;
|
|
6056
|
-
status: string;
|
|
6057
|
-
code?: number | undefined;
|
|
6058
|
-
message: string;
|
|
6059
|
-
}, any, {}>>;
|
|
6060
6112
|
};
|
|
6061
6113
|
get DatasourceSteps(): {
|
|
6062
6114
|
getCurrentStepDatasource: (params: {
|
|
@@ -6709,6 +6761,8 @@ export default class {
|
|
|
6709
6761
|
type: "avro";
|
|
6710
6762
|
} | undefined;
|
|
6711
6763
|
textEncoding?: string | undefined;
|
|
6764
|
+
pgpPrivateKey?: string | undefined;
|
|
6765
|
+
pgpPassphrase?: string | undefined;
|
|
6712
6766
|
};
|
|
6713
6767
|
type: "url";
|
|
6714
6768
|
preProcessingAggregations?: {
|
|
@@ -6755,6 +6809,8 @@ export default class {
|
|
|
6755
6809
|
type: "avro";
|
|
6756
6810
|
};
|
|
6757
6811
|
textEncoding: string;
|
|
6812
|
+
pgpPrivateKey?: string | undefined;
|
|
6813
|
+
pgpPassphrase?: string | undefined;
|
|
6758
6814
|
};
|
|
6759
6815
|
type: "file";
|
|
6760
6816
|
preProcessingAggregations?: {
|
|
@@ -6802,6 +6858,8 @@ export default class {
|
|
|
6802
6858
|
type: "avro";
|
|
6803
6859
|
} | undefined;
|
|
6804
6860
|
textEncoding?: string | undefined;
|
|
6861
|
+
pgpPrivateKey?: string | undefined;
|
|
6862
|
+
pgpPassphrase?: string | undefined;
|
|
6805
6863
|
host: string;
|
|
6806
6864
|
port: number;
|
|
6807
6865
|
secure: boolean;
|
|
@@ -6855,6 +6913,8 @@ export default class {
|
|
|
6855
6913
|
type: "avro";
|
|
6856
6914
|
} | undefined;
|
|
6857
6915
|
textEncoding?: string | undefined;
|
|
6916
|
+
pgpPrivateKey?: string | undefined;
|
|
6917
|
+
pgpPassphrase?: string | undefined;
|
|
6858
6918
|
host: string;
|
|
6859
6919
|
port: number;
|
|
6860
6920
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -6929,6 +6989,8 @@ export default class {
|
|
|
6929
6989
|
type: "avro";
|
|
6930
6990
|
} | undefined;
|
|
6931
6991
|
textEncoding?: string | undefined;
|
|
6992
|
+
pgpPrivateKey?: string | undefined;
|
|
6993
|
+
pgpPassphrase?: string | undefined;
|
|
6932
6994
|
clientEmail: string;
|
|
6933
6995
|
projectId: string;
|
|
6934
6996
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -7033,6 +7095,8 @@ export default class {
|
|
|
7033
7095
|
type: "avro";
|
|
7034
7096
|
} | undefined;
|
|
7035
7097
|
textEncoding?: string | undefined;
|
|
7098
|
+
pgpPrivateKey?: string | undefined;
|
|
7099
|
+
pgpPassphrase?: string | undefined;
|
|
7036
7100
|
processType?: import("./definitions").ProcessType | undefined;
|
|
7037
7101
|
accessKey: string;
|
|
7038
7102
|
secretKey: string;
|
|
@@ -7839,6 +7903,8 @@ export default class {
|
|
|
7839
7903
|
type: "avro";
|
|
7840
7904
|
} | undefined;
|
|
7841
7905
|
textEncoding?: string | undefined;
|
|
7906
|
+
pgpPrivateKey?: string | undefined;
|
|
7907
|
+
pgpPassphrase?: string | undefined;
|
|
7842
7908
|
};
|
|
7843
7909
|
type: "url";
|
|
7844
7910
|
preProcessingAggregations?: {
|
|
@@ -7885,6 +7951,8 @@ export default class {
|
|
|
7885
7951
|
type: "avro";
|
|
7886
7952
|
};
|
|
7887
7953
|
textEncoding: string;
|
|
7954
|
+
pgpPrivateKey?: string | undefined;
|
|
7955
|
+
pgpPassphrase?: string | undefined;
|
|
7888
7956
|
};
|
|
7889
7957
|
type: "file";
|
|
7890
7958
|
preProcessingAggregations?: {
|
|
@@ -7932,6 +8000,8 @@ export default class {
|
|
|
7932
8000
|
type: "avro";
|
|
7933
8001
|
} | undefined;
|
|
7934
8002
|
textEncoding?: string | undefined;
|
|
8003
|
+
pgpPrivateKey?: string | undefined;
|
|
8004
|
+
pgpPassphrase?: string | undefined;
|
|
7935
8005
|
host: string;
|
|
7936
8006
|
port: number;
|
|
7937
8007
|
secure: boolean;
|
|
@@ -7985,6 +8055,8 @@ export default class {
|
|
|
7985
8055
|
type: "avro";
|
|
7986
8056
|
} | undefined;
|
|
7987
8057
|
textEncoding?: string | undefined;
|
|
8058
|
+
pgpPrivateKey?: string | undefined;
|
|
8059
|
+
pgpPassphrase?: string | undefined;
|
|
7988
8060
|
host: string;
|
|
7989
8061
|
port: number;
|
|
7990
8062
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -8059,6 +8131,8 @@ export default class {
|
|
|
8059
8131
|
type: "avro";
|
|
8060
8132
|
} | undefined;
|
|
8061
8133
|
textEncoding?: string | undefined;
|
|
8134
|
+
pgpPrivateKey?: string | undefined;
|
|
8135
|
+
pgpPassphrase?: string | undefined;
|
|
8062
8136
|
clientEmail: string;
|
|
8063
8137
|
projectId: string;
|
|
8064
8138
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -8163,6 +8237,8 @@ export default class {
|
|
|
8163
8237
|
type: "avro";
|
|
8164
8238
|
} | undefined;
|
|
8165
8239
|
textEncoding?: string | undefined;
|
|
8240
|
+
pgpPrivateKey?: string | undefined;
|
|
8241
|
+
pgpPassphrase?: string | undefined;
|
|
8166
8242
|
processType?: import("./definitions").ProcessType | undefined;
|
|
8167
8243
|
accessKey: string;
|
|
8168
8244
|
secretKey: string;
|
|
@@ -9570,6 +9646,8 @@ export default class {
|
|
|
9570
9646
|
type: "avro";
|
|
9571
9647
|
} | undefined;
|
|
9572
9648
|
textEncoding?: string | undefined;
|
|
9649
|
+
pgpPrivateKey?: string | undefined;
|
|
9650
|
+
pgpPassphrase?: string | undefined;
|
|
9573
9651
|
};
|
|
9574
9652
|
type: "url";
|
|
9575
9653
|
preProcessingAggregations?: {
|
|
@@ -9616,6 +9694,8 @@ export default class {
|
|
|
9616
9694
|
type: "avro";
|
|
9617
9695
|
};
|
|
9618
9696
|
textEncoding: string;
|
|
9697
|
+
pgpPrivateKey?: string | undefined;
|
|
9698
|
+
pgpPassphrase?: string | undefined;
|
|
9619
9699
|
};
|
|
9620
9700
|
type: "file";
|
|
9621
9701
|
preProcessingAggregations?: {
|
|
@@ -9663,6 +9743,8 @@ export default class {
|
|
|
9663
9743
|
type: "avro";
|
|
9664
9744
|
} | undefined;
|
|
9665
9745
|
textEncoding?: string | undefined;
|
|
9746
|
+
pgpPrivateKey?: string | undefined;
|
|
9747
|
+
pgpPassphrase?: string | undefined;
|
|
9666
9748
|
host: string;
|
|
9667
9749
|
port: number;
|
|
9668
9750
|
secure: boolean;
|
|
@@ -9716,6 +9798,8 @@ export default class {
|
|
|
9716
9798
|
type: "avro";
|
|
9717
9799
|
} | undefined;
|
|
9718
9800
|
textEncoding?: string | undefined;
|
|
9801
|
+
pgpPrivateKey?: string | undefined;
|
|
9802
|
+
pgpPassphrase?: string | undefined;
|
|
9719
9803
|
host: string;
|
|
9720
9804
|
port: number;
|
|
9721
9805
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -9790,6 +9874,8 @@ export default class {
|
|
|
9790
9874
|
type: "avro";
|
|
9791
9875
|
} | undefined;
|
|
9792
9876
|
textEncoding?: string | undefined;
|
|
9877
|
+
pgpPrivateKey?: string | undefined;
|
|
9878
|
+
pgpPassphrase?: string | undefined;
|
|
9793
9879
|
clientEmail: string;
|
|
9794
9880
|
projectId: string;
|
|
9795
9881
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -9894,6 +9980,8 @@ export default class {
|
|
|
9894
9980
|
type: "avro";
|
|
9895
9981
|
} | undefined;
|
|
9896
9982
|
textEncoding?: string | undefined;
|
|
9983
|
+
pgpPrivateKey?: string | undefined;
|
|
9984
|
+
pgpPassphrase?: string | undefined;
|
|
9897
9985
|
processType?: import("./definitions").ProcessType | undefined;
|
|
9898
9986
|
accessKey: string;
|
|
9899
9987
|
secretKey: string;
|
|
@@ -10700,6 +10788,8 @@ export default class {
|
|
|
10700
10788
|
type: "avro";
|
|
10701
10789
|
} | undefined;
|
|
10702
10790
|
textEncoding?: string | undefined;
|
|
10791
|
+
pgpPrivateKey?: string | undefined;
|
|
10792
|
+
pgpPassphrase?: string | undefined;
|
|
10703
10793
|
};
|
|
10704
10794
|
type: "url";
|
|
10705
10795
|
preProcessingAggregations?: {
|
|
@@ -10746,6 +10836,8 @@ export default class {
|
|
|
10746
10836
|
type: "avro";
|
|
10747
10837
|
};
|
|
10748
10838
|
textEncoding: string;
|
|
10839
|
+
pgpPrivateKey?: string | undefined;
|
|
10840
|
+
pgpPassphrase?: string | undefined;
|
|
10749
10841
|
};
|
|
10750
10842
|
type: "file";
|
|
10751
10843
|
preProcessingAggregations?: {
|
|
@@ -10793,6 +10885,8 @@ export default class {
|
|
|
10793
10885
|
type: "avro";
|
|
10794
10886
|
} | undefined;
|
|
10795
10887
|
textEncoding?: string | undefined;
|
|
10888
|
+
pgpPrivateKey?: string | undefined;
|
|
10889
|
+
pgpPassphrase?: string | undefined;
|
|
10796
10890
|
host: string;
|
|
10797
10891
|
port: number;
|
|
10798
10892
|
secure: boolean;
|
|
@@ -10846,6 +10940,8 @@ export default class {
|
|
|
10846
10940
|
type: "avro";
|
|
10847
10941
|
} | undefined;
|
|
10848
10942
|
textEncoding?: string | undefined;
|
|
10943
|
+
pgpPrivateKey?: string | undefined;
|
|
10944
|
+
pgpPassphrase?: string | undefined;
|
|
10849
10945
|
host: string;
|
|
10850
10946
|
port: number;
|
|
10851
10947
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -10920,6 +11016,8 @@ export default class {
|
|
|
10920
11016
|
type: "avro";
|
|
10921
11017
|
} | undefined;
|
|
10922
11018
|
textEncoding?: string | undefined;
|
|
11019
|
+
pgpPrivateKey?: string | undefined;
|
|
11020
|
+
pgpPassphrase?: string | undefined;
|
|
10923
11021
|
clientEmail: string;
|
|
10924
11022
|
projectId: string;
|
|
10925
11023
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -11024,6 +11122,8 @@ export default class {
|
|
|
11024
11122
|
type: "avro";
|
|
11025
11123
|
} | undefined;
|
|
11026
11124
|
textEncoding?: string | undefined;
|
|
11125
|
+
pgpPrivateKey?: string | undefined;
|
|
11126
|
+
pgpPassphrase?: string | undefined;
|
|
11027
11127
|
processType?: import("./definitions").ProcessType | undefined;
|
|
11028
11128
|
accessKey: string;
|
|
11029
11129
|
secretKey: string;
|
|
@@ -13074,6 +13174,8 @@ export default class {
|
|
|
13074
13174
|
type: "avro";
|
|
13075
13175
|
} | undefined;
|
|
13076
13176
|
textEncoding?: string | undefined;
|
|
13177
|
+
pgpPrivateKey?: string | undefined;
|
|
13178
|
+
pgpPassphrase?: string | undefined;
|
|
13077
13179
|
};
|
|
13078
13180
|
type: "url";
|
|
13079
13181
|
preProcessingAggregations?: {
|
|
@@ -13120,6 +13222,8 @@ export default class {
|
|
|
13120
13222
|
type: "avro";
|
|
13121
13223
|
};
|
|
13122
13224
|
textEncoding: string;
|
|
13225
|
+
pgpPrivateKey?: string | undefined;
|
|
13226
|
+
pgpPassphrase?: string | undefined;
|
|
13123
13227
|
};
|
|
13124
13228
|
type: "file";
|
|
13125
13229
|
preProcessingAggregations?: {
|
|
@@ -13167,6 +13271,8 @@ export default class {
|
|
|
13167
13271
|
type: "avro";
|
|
13168
13272
|
} | undefined;
|
|
13169
13273
|
textEncoding?: string | undefined;
|
|
13274
|
+
pgpPrivateKey?: string | undefined;
|
|
13275
|
+
pgpPassphrase?: string | undefined;
|
|
13170
13276
|
host: string;
|
|
13171
13277
|
port: number;
|
|
13172
13278
|
secure: boolean;
|
|
@@ -13220,6 +13326,8 @@ export default class {
|
|
|
13220
13326
|
type: "avro";
|
|
13221
13327
|
} | undefined;
|
|
13222
13328
|
textEncoding?: string | undefined;
|
|
13329
|
+
pgpPrivateKey?: string | undefined;
|
|
13330
|
+
pgpPassphrase?: string | undefined;
|
|
13223
13331
|
host: string;
|
|
13224
13332
|
port: number;
|
|
13225
13333
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -13294,6 +13402,8 @@ export default class {
|
|
|
13294
13402
|
type: "avro";
|
|
13295
13403
|
} | undefined;
|
|
13296
13404
|
textEncoding?: string | undefined;
|
|
13405
|
+
pgpPrivateKey?: string | undefined;
|
|
13406
|
+
pgpPassphrase?: string | undefined;
|
|
13297
13407
|
clientEmail: string;
|
|
13298
13408
|
projectId: string;
|
|
13299
13409
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -13398,6 +13508,8 @@ export default class {
|
|
|
13398
13508
|
type: "avro";
|
|
13399
13509
|
} | undefined;
|
|
13400
13510
|
textEncoding?: string | undefined;
|
|
13511
|
+
pgpPrivateKey?: string | undefined;
|
|
13512
|
+
pgpPassphrase?: string | undefined;
|
|
13401
13513
|
processType?: import("./definitions").ProcessType | undefined;
|
|
13402
13514
|
accessKey: string;
|
|
13403
13515
|
secretKey: string;
|
|
@@ -14204,6 +14316,8 @@ export default class {
|
|
|
14204
14316
|
type: "avro";
|
|
14205
14317
|
} | undefined;
|
|
14206
14318
|
textEncoding?: string | undefined;
|
|
14319
|
+
pgpPrivateKey?: string | undefined;
|
|
14320
|
+
pgpPassphrase?: string | undefined;
|
|
14207
14321
|
};
|
|
14208
14322
|
type: "url";
|
|
14209
14323
|
preProcessingAggregations?: {
|
|
@@ -14250,6 +14364,8 @@ export default class {
|
|
|
14250
14364
|
type: "avro";
|
|
14251
14365
|
};
|
|
14252
14366
|
textEncoding: string;
|
|
14367
|
+
pgpPrivateKey?: string | undefined;
|
|
14368
|
+
pgpPassphrase?: string | undefined;
|
|
14253
14369
|
};
|
|
14254
14370
|
type: "file";
|
|
14255
14371
|
preProcessingAggregations?: {
|
|
@@ -14297,6 +14413,8 @@ export default class {
|
|
|
14297
14413
|
type: "avro";
|
|
14298
14414
|
} | undefined;
|
|
14299
14415
|
textEncoding?: string | undefined;
|
|
14416
|
+
pgpPrivateKey?: string | undefined;
|
|
14417
|
+
pgpPassphrase?: string | undefined;
|
|
14300
14418
|
host: string;
|
|
14301
14419
|
port: number;
|
|
14302
14420
|
secure: boolean;
|
|
@@ -14350,6 +14468,8 @@ export default class {
|
|
|
14350
14468
|
type: "avro";
|
|
14351
14469
|
} | undefined;
|
|
14352
14470
|
textEncoding?: string | undefined;
|
|
14471
|
+
pgpPrivateKey?: string | undefined;
|
|
14472
|
+
pgpPassphrase?: string | undefined;
|
|
14353
14473
|
host: string;
|
|
14354
14474
|
port: number;
|
|
14355
14475
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -14424,6 +14544,8 @@ export default class {
|
|
|
14424
14544
|
type: "avro";
|
|
14425
14545
|
} | undefined;
|
|
14426
14546
|
textEncoding?: string | undefined;
|
|
14547
|
+
pgpPrivateKey?: string | undefined;
|
|
14548
|
+
pgpPassphrase?: string | undefined;
|
|
14427
14549
|
clientEmail: string;
|
|
14428
14550
|
projectId: string;
|
|
14429
14551
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -14528,6 +14650,8 @@ export default class {
|
|
|
14528
14650
|
type: "avro";
|
|
14529
14651
|
} | undefined;
|
|
14530
14652
|
textEncoding?: string | undefined;
|
|
14653
|
+
pgpPrivateKey?: string | undefined;
|
|
14654
|
+
pgpPassphrase?: string | undefined;
|
|
14531
14655
|
processType?: import("./definitions").ProcessType | undefined;
|
|
14532
14656
|
accessKey: string;
|
|
14533
14657
|
secretKey: string;
|
|
@@ -16298,6 +16422,8 @@ export default class {
|
|
|
16298
16422
|
type: "avro";
|
|
16299
16423
|
} | undefined;
|
|
16300
16424
|
textEncoding?: string | undefined;
|
|
16425
|
+
pgpPrivateKey?: string | undefined;
|
|
16426
|
+
pgpPassphrase?: string | undefined;
|
|
16301
16427
|
};
|
|
16302
16428
|
type: "url";
|
|
16303
16429
|
preProcessingAggregations?: {
|
|
@@ -16344,6 +16470,8 @@ export default class {
|
|
|
16344
16470
|
type: "avro";
|
|
16345
16471
|
};
|
|
16346
16472
|
textEncoding: string;
|
|
16473
|
+
pgpPrivateKey?: string | undefined;
|
|
16474
|
+
pgpPassphrase?: string | undefined;
|
|
16347
16475
|
};
|
|
16348
16476
|
type: "file";
|
|
16349
16477
|
preProcessingAggregations?: {
|
|
@@ -16391,6 +16519,8 @@ export default class {
|
|
|
16391
16519
|
type: "avro";
|
|
16392
16520
|
} | undefined;
|
|
16393
16521
|
textEncoding?: string | undefined;
|
|
16522
|
+
pgpPrivateKey?: string | undefined;
|
|
16523
|
+
pgpPassphrase?: string | undefined;
|
|
16394
16524
|
host: string;
|
|
16395
16525
|
port: number;
|
|
16396
16526
|
secure: boolean;
|
|
@@ -16444,6 +16574,8 @@ export default class {
|
|
|
16444
16574
|
type: "avro";
|
|
16445
16575
|
} | undefined;
|
|
16446
16576
|
textEncoding?: string | undefined;
|
|
16577
|
+
pgpPrivateKey?: string | undefined;
|
|
16578
|
+
pgpPassphrase?: string | undefined;
|
|
16447
16579
|
host: string;
|
|
16448
16580
|
port: number;
|
|
16449
16581
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -16518,6 +16650,8 @@ export default class {
|
|
|
16518
16650
|
type: "avro";
|
|
16519
16651
|
} | undefined;
|
|
16520
16652
|
textEncoding?: string | undefined;
|
|
16653
|
+
pgpPrivateKey?: string | undefined;
|
|
16654
|
+
pgpPassphrase?: string | undefined;
|
|
16521
16655
|
clientEmail: string;
|
|
16522
16656
|
projectId: string;
|
|
16523
16657
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -16622,6 +16756,8 @@ export default class {
|
|
|
16622
16756
|
type: "avro";
|
|
16623
16757
|
} | undefined;
|
|
16624
16758
|
textEncoding?: string | undefined;
|
|
16759
|
+
pgpPrivateKey?: string | undefined;
|
|
16760
|
+
pgpPassphrase?: string | undefined;
|
|
16625
16761
|
processType?: import("./definitions").ProcessType | undefined;
|
|
16626
16762
|
accessKey: string;
|
|
16627
16763
|
secretKey: string;
|
|
@@ -17428,6 +17564,8 @@ export default class {
|
|
|
17428
17564
|
type: "avro";
|
|
17429
17565
|
} | undefined;
|
|
17430
17566
|
textEncoding?: string | undefined;
|
|
17567
|
+
pgpPrivateKey?: string | undefined;
|
|
17568
|
+
pgpPassphrase?: string | undefined;
|
|
17431
17569
|
};
|
|
17432
17570
|
type: "url";
|
|
17433
17571
|
preProcessingAggregations?: {
|
|
@@ -17474,6 +17612,8 @@ export default class {
|
|
|
17474
17612
|
type: "avro";
|
|
17475
17613
|
};
|
|
17476
17614
|
textEncoding: string;
|
|
17615
|
+
pgpPrivateKey?: string | undefined;
|
|
17616
|
+
pgpPassphrase?: string | undefined;
|
|
17477
17617
|
};
|
|
17478
17618
|
type: "file";
|
|
17479
17619
|
preProcessingAggregations?: {
|
|
@@ -17521,6 +17661,8 @@ export default class {
|
|
|
17521
17661
|
type: "avro";
|
|
17522
17662
|
} | undefined;
|
|
17523
17663
|
textEncoding?: string | undefined;
|
|
17664
|
+
pgpPrivateKey?: string | undefined;
|
|
17665
|
+
pgpPassphrase?: string | undefined;
|
|
17524
17666
|
host: string;
|
|
17525
17667
|
port: number;
|
|
17526
17668
|
secure: boolean;
|
|
@@ -17574,6 +17716,8 @@ export default class {
|
|
|
17574
17716
|
type: "avro";
|
|
17575
17717
|
} | undefined;
|
|
17576
17718
|
textEncoding?: string | undefined;
|
|
17719
|
+
pgpPrivateKey?: string | undefined;
|
|
17720
|
+
pgpPassphrase?: string | undefined;
|
|
17577
17721
|
host: string;
|
|
17578
17722
|
port: number;
|
|
17579
17723
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -17648,6 +17792,8 @@ export default class {
|
|
|
17648
17792
|
type: "avro";
|
|
17649
17793
|
} | undefined;
|
|
17650
17794
|
textEncoding?: string | undefined;
|
|
17795
|
+
pgpPrivateKey?: string | undefined;
|
|
17796
|
+
pgpPassphrase?: string | undefined;
|
|
17651
17797
|
clientEmail: string;
|
|
17652
17798
|
projectId: string;
|
|
17653
17799
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -17752,6 +17898,8 @@ export default class {
|
|
|
17752
17898
|
type: "avro";
|
|
17753
17899
|
} | undefined;
|
|
17754
17900
|
textEncoding?: string | undefined;
|
|
17901
|
+
pgpPrivateKey?: string | undefined;
|
|
17902
|
+
pgpPassphrase?: string | undefined;
|
|
17755
17903
|
processType?: import("./definitions").ProcessType | undefined;
|
|
17756
17904
|
accessKey: string;
|
|
17757
17905
|
secretKey: string;
|
|
@@ -19159,6 +19307,8 @@ export default class {
|
|
|
19159
19307
|
type: "avro";
|
|
19160
19308
|
} | undefined;
|
|
19161
19309
|
textEncoding?: string | undefined;
|
|
19310
|
+
pgpPrivateKey?: string | undefined;
|
|
19311
|
+
pgpPassphrase?: string | undefined;
|
|
19162
19312
|
};
|
|
19163
19313
|
type: "url";
|
|
19164
19314
|
preProcessingAggregations?: {
|
|
@@ -19205,6 +19355,8 @@ export default class {
|
|
|
19205
19355
|
type: "avro";
|
|
19206
19356
|
};
|
|
19207
19357
|
textEncoding: string;
|
|
19358
|
+
pgpPrivateKey?: string | undefined;
|
|
19359
|
+
pgpPassphrase?: string | undefined;
|
|
19208
19360
|
};
|
|
19209
19361
|
type: "file";
|
|
19210
19362
|
preProcessingAggregations?: {
|
|
@@ -19252,6 +19404,8 @@ export default class {
|
|
|
19252
19404
|
type: "avro";
|
|
19253
19405
|
} | undefined;
|
|
19254
19406
|
textEncoding?: string | undefined;
|
|
19407
|
+
pgpPrivateKey?: string | undefined;
|
|
19408
|
+
pgpPassphrase?: string | undefined;
|
|
19255
19409
|
host: string;
|
|
19256
19410
|
port: number;
|
|
19257
19411
|
secure: boolean;
|
|
@@ -19305,6 +19459,8 @@ export default class {
|
|
|
19305
19459
|
type: "avro";
|
|
19306
19460
|
} | undefined;
|
|
19307
19461
|
textEncoding?: string | undefined;
|
|
19462
|
+
pgpPrivateKey?: string | undefined;
|
|
19463
|
+
pgpPassphrase?: string | undefined;
|
|
19308
19464
|
host: string;
|
|
19309
19465
|
port: number;
|
|
19310
19466
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -19379,6 +19535,8 @@ export default class {
|
|
|
19379
19535
|
type: "avro";
|
|
19380
19536
|
} | undefined;
|
|
19381
19537
|
textEncoding?: string | undefined;
|
|
19538
|
+
pgpPrivateKey?: string | undefined;
|
|
19539
|
+
pgpPassphrase?: string | undefined;
|
|
19382
19540
|
clientEmail: string;
|
|
19383
19541
|
projectId: string;
|
|
19384
19542
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -19483,6 +19641,8 @@ export default class {
|
|
|
19483
19641
|
type: "avro";
|
|
19484
19642
|
} | undefined;
|
|
19485
19643
|
textEncoding?: string | undefined;
|
|
19644
|
+
pgpPrivateKey?: string | undefined;
|
|
19645
|
+
pgpPassphrase?: string | undefined;
|
|
19486
19646
|
processType?: import("./definitions").ProcessType | undefined;
|
|
19487
19647
|
accessKey: string;
|
|
19488
19648
|
secretKey: string;
|
|
@@ -20289,6 +20449,8 @@ export default class {
|
|
|
20289
20449
|
type: "avro";
|
|
20290
20450
|
} | undefined;
|
|
20291
20451
|
textEncoding?: string | undefined;
|
|
20452
|
+
pgpPrivateKey?: string | undefined;
|
|
20453
|
+
pgpPassphrase?: string | undefined;
|
|
20292
20454
|
};
|
|
20293
20455
|
type: "url";
|
|
20294
20456
|
preProcessingAggregations?: {
|
|
@@ -20335,6 +20497,8 @@ export default class {
|
|
|
20335
20497
|
type: "avro";
|
|
20336
20498
|
};
|
|
20337
20499
|
textEncoding: string;
|
|
20500
|
+
pgpPrivateKey?: string | undefined;
|
|
20501
|
+
pgpPassphrase?: string | undefined;
|
|
20338
20502
|
};
|
|
20339
20503
|
type: "file";
|
|
20340
20504
|
preProcessingAggregations?: {
|
|
@@ -20382,6 +20546,8 @@ export default class {
|
|
|
20382
20546
|
type: "avro";
|
|
20383
20547
|
} | undefined;
|
|
20384
20548
|
textEncoding?: string | undefined;
|
|
20549
|
+
pgpPrivateKey?: string | undefined;
|
|
20550
|
+
pgpPassphrase?: string | undefined;
|
|
20385
20551
|
host: string;
|
|
20386
20552
|
port: number;
|
|
20387
20553
|
secure: boolean;
|
|
@@ -20435,6 +20601,8 @@ export default class {
|
|
|
20435
20601
|
type: "avro";
|
|
20436
20602
|
} | undefined;
|
|
20437
20603
|
textEncoding?: string | undefined;
|
|
20604
|
+
pgpPrivateKey?: string | undefined;
|
|
20605
|
+
pgpPassphrase?: string | undefined;
|
|
20438
20606
|
host: string;
|
|
20439
20607
|
port: number;
|
|
20440
20608
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -20509,6 +20677,8 @@ export default class {
|
|
|
20509
20677
|
type: "avro";
|
|
20510
20678
|
} | undefined;
|
|
20511
20679
|
textEncoding?: string | undefined;
|
|
20680
|
+
pgpPrivateKey?: string | undefined;
|
|
20681
|
+
pgpPassphrase?: string | undefined;
|
|
20512
20682
|
clientEmail: string;
|
|
20513
20683
|
projectId: string;
|
|
20514
20684
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -20613,6 +20783,8 @@ export default class {
|
|
|
20613
20783
|
type: "avro";
|
|
20614
20784
|
} | undefined;
|
|
20615
20785
|
textEncoding?: string | undefined;
|
|
20786
|
+
pgpPrivateKey?: string | undefined;
|
|
20787
|
+
pgpPassphrase?: string | undefined;
|
|
20616
20788
|
processType?: import("./definitions").ProcessType | undefined;
|
|
20617
20789
|
accessKey: string;
|
|
20618
20790
|
secretKey: string;
|
|
@@ -22663,6 +22835,8 @@ export default class {
|
|
|
22663
22835
|
type: "avro";
|
|
22664
22836
|
} | undefined;
|
|
22665
22837
|
textEncoding?: string | undefined;
|
|
22838
|
+
pgpPrivateKey?: string | undefined;
|
|
22839
|
+
pgpPassphrase?: string | undefined;
|
|
22666
22840
|
};
|
|
22667
22841
|
type: "url";
|
|
22668
22842
|
preProcessingAggregations?: {
|
|
@@ -22709,6 +22883,8 @@ export default class {
|
|
|
22709
22883
|
type: "avro";
|
|
22710
22884
|
};
|
|
22711
22885
|
textEncoding: string;
|
|
22886
|
+
pgpPrivateKey?: string | undefined;
|
|
22887
|
+
pgpPassphrase?: string | undefined;
|
|
22712
22888
|
};
|
|
22713
22889
|
type: "file";
|
|
22714
22890
|
preProcessingAggregations?: {
|
|
@@ -22756,6 +22932,8 @@ export default class {
|
|
|
22756
22932
|
type: "avro";
|
|
22757
22933
|
} | undefined;
|
|
22758
22934
|
textEncoding?: string | undefined;
|
|
22935
|
+
pgpPrivateKey?: string | undefined;
|
|
22936
|
+
pgpPassphrase?: string | undefined;
|
|
22759
22937
|
host: string;
|
|
22760
22938
|
port: number;
|
|
22761
22939
|
secure: boolean;
|
|
@@ -22809,6 +22987,8 @@ export default class {
|
|
|
22809
22987
|
type: "avro";
|
|
22810
22988
|
} | undefined;
|
|
22811
22989
|
textEncoding?: string | undefined;
|
|
22990
|
+
pgpPrivateKey?: string | undefined;
|
|
22991
|
+
pgpPassphrase?: string | undefined;
|
|
22812
22992
|
host: string;
|
|
22813
22993
|
port: number;
|
|
22814
22994
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -22883,6 +23063,8 @@ export default class {
|
|
|
22883
23063
|
type: "avro";
|
|
22884
23064
|
} | undefined;
|
|
22885
23065
|
textEncoding?: string | undefined;
|
|
23066
|
+
pgpPrivateKey?: string | undefined;
|
|
23067
|
+
pgpPassphrase?: string | undefined;
|
|
22886
23068
|
clientEmail: string;
|
|
22887
23069
|
projectId: string;
|
|
22888
23070
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -22987,6 +23169,8 @@ export default class {
|
|
|
22987
23169
|
type: "avro";
|
|
22988
23170
|
} | undefined;
|
|
22989
23171
|
textEncoding?: string | undefined;
|
|
23172
|
+
pgpPrivateKey?: string | undefined;
|
|
23173
|
+
pgpPassphrase?: string | undefined;
|
|
22990
23174
|
processType?: import("./definitions").ProcessType | undefined;
|
|
22991
23175
|
accessKey: string;
|
|
22992
23176
|
secretKey: string;
|
|
@@ -23793,6 +23977,8 @@ export default class {
|
|
|
23793
23977
|
type: "avro";
|
|
23794
23978
|
} | undefined;
|
|
23795
23979
|
textEncoding?: string | undefined;
|
|
23980
|
+
pgpPrivateKey?: string | undefined;
|
|
23981
|
+
pgpPassphrase?: string | undefined;
|
|
23796
23982
|
};
|
|
23797
23983
|
type: "url";
|
|
23798
23984
|
preProcessingAggregations?: {
|
|
@@ -23839,6 +24025,8 @@ export default class {
|
|
|
23839
24025
|
type: "avro";
|
|
23840
24026
|
};
|
|
23841
24027
|
textEncoding: string;
|
|
24028
|
+
pgpPrivateKey?: string | undefined;
|
|
24029
|
+
pgpPassphrase?: string | undefined;
|
|
23842
24030
|
};
|
|
23843
24031
|
type: "file";
|
|
23844
24032
|
preProcessingAggregations?: {
|
|
@@ -23886,6 +24074,8 @@ export default class {
|
|
|
23886
24074
|
type: "avro";
|
|
23887
24075
|
} | undefined;
|
|
23888
24076
|
textEncoding?: string | undefined;
|
|
24077
|
+
pgpPrivateKey?: string | undefined;
|
|
24078
|
+
pgpPassphrase?: string | undefined;
|
|
23889
24079
|
host: string;
|
|
23890
24080
|
port: number;
|
|
23891
24081
|
secure: boolean;
|
|
@@ -23939,6 +24129,8 @@ export default class {
|
|
|
23939
24129
|
type: "avro";
|
|
23940
24130
|
} | undefined;
|
|
23941
24131
|
textEncoding?: string | undefined;
|
|
24132
|
+
pgpPrivateKey?: string | undefined;
|
|
24133
|
+
pgpPassphrase?: string | undefined;
|
|
23942
24134
|
host: string;
|
|
23943
24135
|
port: number;
|
|
23944
24136
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -24013,6 +24205,8 @@ export default class {
|
|
|
24013
24205
|
type: "avro";
|
|
24014
24206
|
} | undefined;
|
|
24015
24207
|
textEncoding?: string | undefined;
|
|
24208
|
+
pgpPrivateKey?: string | undefined;
|
|
24209
|
+
pgpPassphrase?: string | undefined;
|
|
24016
24210
|
clientEmail: string;
|
|
24017
24211
|
projectId: string;
|
|
24018
24212
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -24117,6 +24311,8 @@ export default class {
|
|
|
24117
24311
|
type: "avro";
|
|
24118
24312
|
} | undefined;
|
|
24119
24313
|
textEncoding?: string | undefined;
|
|
24314
|
+
pgpPrivateKey?: string | undefined;
|
|
24315
|
+
pgpPassphrase?: string | undefined;
|
|
24120
24316
|
processType?: import("./definitions").ProcessType | undefined;
|
|
24121
24317
|
accessKey: string;
|
|
24122
24318
|
secretKey: string;
|
|
@@ -25887,6 +26083,8 @@ export default class {
|
|
|
25887
26083
|
type: "avro";
|
|
25888
26084
|
} | undefined;
|
|
25889
26085
|
textEncoding?: string | undefined;
|
|
26086
|
+
pgpPrivateKey?: string | undefined;
|
|
26087
|
+
pgpPassphrase?: string | undefined;
|
|
25890
26088
|
};
|
|
25891
26089
|
type: "url";
|
|
25892
26090
|
preProcessingAggregations?: {
|
|
@@ -25933,6 +26131,8 @@ export default class {
|
|
|
25933
26131
|
type: "avro";
|
|
25934
26132
|
};
|
|
25935
26133
|
textEncoding: string;
|
|
26134
|
+
pgpPrivateKey?: string | undefined;
|
|
26135
|
+
pgpPassphrase?: string | undefined;
|
|
25936
26136
|
};
|
|
25937
26137
|
type: "file";
|
|
25938
26138
|
preProcessingAggregations?: {
|
|
@@ -25980,6 +26180,8 @@ export default class {
|
|
|
25980
26180
|
type: "avro";
|
|
25981
26181
|
} | undefined;
|
|
25982
26182
|
textEncoding?: string | undefined;
|
|
26183
|
+
pgpPrivateKey?: string | undefined;
|
|
26184
|
+
pgpPassphrase?: string | undefined;
|
|
25983
26185
|
host: string;
|
|
25984
26186
|
port: number;
|
|
25985
26187
|
secure: boolean;
|
|
@@ -26033,6 +26235,8 @@ export default class {
|
|
|
26033
26235
|
type: "avro";
|
|
26034
26236
|
} | undefined;
|
|
26035
26237
|
textEncoding?: string | undefined;
|
|
26238
|
+
pgpPrivateKey?: string | undefined;
|
|
26239
|
+
pgpPassphrase?: string | undefined;
|
|
26036
26240
|
host: string;
|
|
26037
26241
|
port: number;
|
|
26038
26242
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -26107,6 +26311,8 @@ export default class {
|
|
|
26107
26311
|
type: "avro";
|
|
26108
26312
|
} | undefined;
|
|
26109
26313
|
textEncoding?: string | undefined;
|
|
26314
|
+
pgpPrivateKey?: string | undefined;
|
|
26315
|
+
pgpPassphrase?: string | undefined;
|
|
26110
26316
|
clientEmail: string;
|
|
26111
26317
|
projectId: string;
|
|
26112
26318
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -26211,6 +26417,8 @@ export default class {
|
|
|
26211
26417
|
type: "avro";
|
|
26212
26418
|
} | undefined;
|
|
26213
26419
|
textEncoding?: string | undefined;
|
|
26420
|
+
pgpPrivateKey?: string | undefined;
|
|
26421
|
+
pgpPassphrase?: string | undefined;
|
|
26214
26422
|
processType?: import("./definitions").ProcessType | undefined;
|
|
26215
26423
|
accessKey: string;
|
|
26216
26424
|
secretKey: string;
|
|
@@ -27017,6 +27225,8 @@ export default class {
|
|
|
27017
27225
|
type: "avro";
|
|
27018
27226
|
} | undefined;
|
|
27019
27227
|
textEncoding?: string | undefined;
|
|
27228
|
+
pgpPrivateKey?: string | undefined;
|
|
27229
|
+
pgpPassphrase?: string | undefined;
|
|
27020
27230
|
};
|
|
27021
27231
|
type: "url";
|
|
27022
27232
|
preProcessingAggregations?: {
|
|
@@ -27063,6 +27273,8 @@ export default class {
|
|
|
27063
27273
|
type: "avro";
|
|
27064
27274
|
};
|
|
27065
27275
|
textEncoding: string;
|
|
27276
|
+
pgpPrivateKey?: string | undefined;
|
|
27277
|
+
pgpPassphrase?: string | undefined;
|
|
27066
27278
|
};
|
|
27067
27279
|
type: "file";
|
|
27068
27280
|
preProcessingAggregations?: {
|
|
@@ -27110,6 +27322,8 @@ export default class {
|
|
|
27110
27322
|
type: "avro";
|
|
27111
27323
|
} | undefined;
|
|
27112
27324
|
textEncoding?: string | undefined;
|
|
27325
|
+
pgpPrivateKey?: string | undefined;
|
|
27326
|
+
pgpPassphrase?: string | undefined;
|
|
27113
27327
|
host: string;
|
|
27114
27328
|
port: number;
|
|
27115
27329
|
secure: boolean;
|
|
@@ -27163,6 +27377,8 @@ export default class {
|
|
|
27163
27377
|
type: "avro";
|
|
27164
27378
|
} | undefined;
|
|
27165
27379
|
textEncoding?: string | undefined;
|
|
27380
|
+
pgpPrivateKey?: string | undefined;
|
|
27381
|
+
pgpPassphrase?: string | undefined;
|
|
27166
27382
|
host: string;
|
|
27167
27383
|
port: number;
|
|
27168
27384
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -27237,6 +27453,8 @@ export default class {
|
|
|
27237
27453
|
type: "avro";
|
|
27238
27454
|
} | undefined;
|
|
27239
27455
|
textEncoding?: string | undefined;
|
|
27456
|
+
pgpPrivateKey?: string | undefined;
|
|
27457
|
+
pgpPassphrase?: string | undefined;
|
|
27240
27458
|
clientEmail: string;
|
|
27241
27459
|
projectId: string;
|
|
27242
27460
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -27341,6 +27559,8 @@ export default class {
|
|
|
27341
27559
|
type: "avro";
|
|
27342
27560
|
} | undefined;
|
|
27343
27561
|
textEncoding?: string | undefined;
|
|
27562
|
+
pgpPrivateKey?: string | undefined;
|
|
27563
|
+
pgpPassphrase?: string | undefined;
|
|
27344
27564
|
processType?: import("./definitions").ProcessType | undefined;
|
|
27345
27565
|
accessKey: string;
|
|
27346
27566
|
secretKey: string;
|
|
@@ -28748,6 +28968,8 @@ export default class {
|
|
|
28748
28968
|
type: "avro";
|
|
28749
28969
|
} | undefined;
|
|
28750
28970
|
textEncoding?: string | undefined;
|
|
28971
|
+
pgpPrivateKey?: string | undefined;
|
|
28972
|
+
pgpPassphrase?: string | undefined;
|
|
28751
28973
|
};
|
|
28752
28974
|
type: "url";
|
|
28753
28975
|
preProcessingAggregations?: {
|
|
@@ -28794,6 +29016,8 @@ export default class {
|
|
|
28794
29016
|
type: "avro";
|
|
28795
29017
|
};
|
|
28796
29018
|
textEncoding: string;
|
|
29019
|
+
pgpPrivateKey?: string | undefined;
|
|
29020
|
+
pgpPassphrase?: string | undefined;
|
|
28797
29021
|
};
|
|
28798
29022
|
type: "file";
|
|
28799
29023
|
preProcessingAggregations?: {
|
|
@@ -28841,6 +29065,8 @@ export default class {
|
|
|
28841
29065
|
type: "avro";
|
|
28842
29066
|
} | undefined;
|
|
28843
29067
|
textEncoding?: string | undefined;
|
|
29068
|
+
pgpPrivateKey?: string | undefined;
|
|
29069
|
+
pgpPassphrase?: string | undefined;
|
|
28844
29070
|
host: string;
|
|
28845
29071
|
port: number;
|
|
28846
29072
|
secure: boolean;
|
|
@@ -28894,6 +29120,8 @@ export default class {
|
|
|
28894
29120
|
type: "avro";
|
|
28895
29121
|
} | undefined;
|
|
28896
29122
|
textEncoding?: string | undefined;
|
|
29123
|
+
pgpPrivateKey?: string | undefined;
|
|
29124
|
+
pgpPassphrase?: string | undefined;
|
|
28897
29125
|
host: string;
|
|
28898
29126
|
port: number;
|
|
28899
29127
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -28968,6 +29196,8 @@ export default class {
|
|
|
28968
29196
|
type: "avro";
|
|
28969
29197
|
} | undefined;
|
|
28970
29198
|
textEncoding?: string | undefined;
|
|
29199
|
+
pgpPrivateKey?: string | undefined;
|
|
29200
|
+
pgpPassphrase?: string | undefined;
|
|
28971
29201
|
clientEmail: string;
|
|
28972
29202
|
projectId: string;
|
|
28973
29203
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -29072,6 +29302,8 @@ export default class {
|
|
|
29072
29302
|
type: "avro";
|
|
29073
29303
|
} | undefined;
|
|
29074
29304
|
textEncoding?: string | undefined;
|
|
29305
|
+
pgpPrivateKey?: string | undefined;
|
|
29306
|
+
pgpPassphrase?: string | undefined;
|
|
29075
29307
|
processType?: import("./definitions").ProcessType | undefined;
|
|
29076
29308
|
accessKey: string;
|
|
29077
29309
|
secretKey: string;
|
|
@@ -29878,6 +30110,8 @@ export default class {
|
|
|
29878
30110
|
type: "avro";
|
|
29879
30111
|
} | undefined;
|
|
29880
30112
|
textEncoding?: string | undefined;
|
|
30113
|
+
pgpPrivateKey?: string | undefined;
|
|
30114
|
+
pgpPassphrase?: string | undefined;
|
|
29881
30115
|
};
|
|
29882
30116
|
type: "url";
|
|
29883
30117
|
preProcessingAggregations?: {
|
|
@@ -29924,6 +30158,8 @@ export default class {
|
|
|
29924
30158
|
type: "avro";
|
|
29925
30159
|
};
|
|
29926
30160
|
textEncoding: string;
|
|
30161
|
+
pgpPrivateKey?: string | undefined;
|
|
30162
|
+
pgpPassphrase?: string | undefined;
|
|
29927
30163
|
};
|
|
29928
30164
|
type: "file";
|
|
29929
30165
|
preProcessingAggregations?: {
|
|
@@ -29971,6 +30207,8 @@ export default class {
|
|
|
29971
30207
|
type: "avro";
|
|
29972
30208
|
} | undefined;
|
|
29973
30209
|
textEncoding?: string | undefined;
|
|
30210
|
+
pgpPrivateKey?: string | undefined;
|
|
30211
|
+
pgpPassphrase?: string | undefined;
|
|
29974
30212
|
host: string;
|
|
29975
30213
|
port: number;
|
|
29976
30214
|
secure: boolean;
|
|
@@ -30024,6 +30262,8 @@ export default class {
|
|
|
30024
30262
|
type: "avro";
|
|
30025
30263
|
} | undefined;
|
|
30026
30264
|
textEncoding?: string | undefined;
|
|
30265
|
+
pgpPrivateKey?: string | undefined;
|
|
30266
|
+
pgpPassphrase?: string | undefined;
|
|
30027
30267
|
host: string;
|
|
30028
30268
|
port: number;
|
|
30029
30269
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -30098,6 +30338,8 @@ export default class {
|
|
|
30098
30338
|
type: "avro";
|
|
30099
30339
|
} | undefined;
|
|
30100
30340
|
textEncoding?: string | undefined;
|
|
30341
|
+
pgpPrivateKey?: string | undefined;
|
|
30342
|
+
pgpPassphrase?: string | undefined;
|
|
30101
30343
|
clientEmail: string;
|
|
30102
30344
|
projectId: string;
|
|
30103
30345
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -30202,6 +30444,8 @@ export default class {
|
|
|
30202
30444
|
type: "avro";
|
|
30203
30445
|
} | undefined;
|
|
30204
30446
|
textEncoding?: string | undefined;
|
|
30447
|
+
pgpPrivateKey?: string | undefined;
|
|
30448
|
+
pgpPassphrase?: string | undefined;
|
|
30205
30449
|
processType?: import("./definitions").ProcessType | undefined;
|
|
30206
30450
|
accessKey: string;
|
|
30207
30451
|
secretKey: string;
|
|
@@ -32252,6 +32496,8 @@ export default class {
|
|
|
32252
32496
|
type: "avro";
|
|
32253
32497
|
} | undefined;
|
|
32254
32498
|
textEncoding?: string | undefined;
|
|
32499
|
+
pgpPrivateKey?: string | undefined;
|
|
32500
|
+
pgpPassphrase?: string | undefined;
|
|
32255
32501
|
};
|
|
32256
32502
|
type: "url";
|
|
32257
32503
|
preProcessingAggregations?: {
|
|
@@ -32298,6 +32544,8 @@ export default class {
|
|
|
32298
32544
|
type: "avro";
|
|
32299
32545
|
};
|
|
32300
32546
|
textEncoding: string;
|
|
32547
|
+
pgpPrivateKey?: string | undefined;
|
|
32548
|
+
pgpPassphrase?: string | undefined;
|
|
32301
32549
|
};
|
|
32302
32550
|
type: "file";
|
|
32303
32551
|
preProcessingAggregations?: {
|
|
@@ -32345,6 +32593,8 @@ export default class {
|
|
|
32345
32593
|
type: "avro";
|
|
32346
32594
|
} | undefined;
|
|
32347
32595
|
textEncoding?: string | undefined;
|
|
32596
|
+
pgpPrivateKey?: string | undefined;
|
|
32597
|
+
pgpPassphrase?: string | undefined;
|
|
32348
32598
|
host: string;
|
|
32349
32599
|
port: number;
|
|
32350
32600
|
secure: boolean;
|
|
@@ -32398,6 +32648,8 @@ export default class {
|
|
|
32398
32648
|
type: "avro";
|
|
32399
32649
|
} | undefined;
|
|
32400
32650
|
textEncoding?: string | undefined;
|
|
32651
|
+
pgpPrivateKey?: string | undefined;
|
|
32652
|
+
pgpPassphrase?: string | undefined;
|
|
32401
32653
|
host: string;
|
|
32402
32654
|
port: number;
|
|
32403
32655
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -32472,6 +32724,8 @@ export default class {
|
|
|
32472
32724
|
type: "avro";
|
|
32473
32725
|
} | undefined;
|
|
32474
32726
|
textEncoding?: string | undefined;
|
|
32727
|
+
pgpPrivateKey?: string | undefined;
|
|
32728
|
+
pgpPassphrase?: string | undefined;
|
|
32475
32729
|
clientEmail: string;
|
|
32476
32730
|
projectId: string;
|
|
32477
32731
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -32576,6 +32830,8 @@ export default class {
|
|
|
32576
32830
|
type: "avro";
|
|
32577
32831
|
} | undefined;
|
|
32578
32832
|
textEncoding?: string | undefined;
|
|
32833
|
+
pgpPrivateKey?: string | undefined;
|
|
32834
|
+
pgpPassphrase?: string | undefined;
|
|
32579
32835
|
processType?: import("./definitions").ProcessType | undefined;
|
|
32580
32836
|
accessKey: string;
|
|
32581
32837
|
secretKey: string;
|
|
@@ -33382,6 +33638,8 @@ export default class {
|
|
|
33382
33638
|
type: "avro";
|
|
33383
33639
|
} | undefined;
|
|
33384
33640
|
textEncoding?: string | undefined;
|
|
33641
|
+
pgpPrivateKey?: string | undefined;
|
|
33642
|
+
pgpPassphrase?: string | undefined;
|
|
33385
33643
|
};
|
|
33386
33644
|
type: "url";
|
|
33387
33645
|
preProcessingAggregations?: {
|
|
@@ -33428,6 +33686,8 @@ export default class {
|
|
|
33428
33686
|
type: "avro";
|
|
33429
33687
|
};
|
|
33430
33688
|
textEncoding: string;
|
|
33689
|
+
pgpPrivateKey?: string | undefined;
|
|
33690
|
+
pgpPassphrase?: string | undefined;
|
|
33431
33691
|
};
|
|
33432
33692
|
type: "file";
|
|
33433
33693
|
preProcessingAggregations?: {
|
|
@@ -33475,6 +33735,8 @@ export default class {
|
|
|
33475
33735
|
type: "avro";
|
|
33476
33736
|
} | undefined;
|
|
33477
33737
|
textEncoding?: string | undefined;
|
|
33738
|
+
pgpPrivateKey?: string | undefined;
|
|
33739
|
+
pgpPassphrase?: string | undefined;
|
|
33478
33740
|
host: string;
|
|
33479
33741
|
port: number;
|
|
33480
33742
|
secure: boolean;
|
|
@@ -33528,6 +33790,8 @@ export default class {
|
|
|
33528
33790
|
type: "avro";
|
|
33529
33791
|
} | undefined;
|
|
33530
33792
|
textEncoding?: string | undefined;
|
|
33793
|
+
pgpPrivateKey?: string | undefined;
|
|
33794
|
+
pgpPassphrase?: string | undefined;
|
|
33531
33795
|
host: string;
|
|
33532
33796
|
port: number;
|
|
33533
33797
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -33602,6 +33866,8 @@ export default class {
|
|
|
33602
33866
|
type: "avro";
|
|
33603
33867
|
} | undefined;
|
|
33604
33868
|
textEncoding?: string | undefined;
|
|
33869
|
+
pgpPrivateKey?: string | undefined;
|
|
33870
|
+
pgpPassphrase?: string | undefined;
|
|
33605
33871
|
clientEmail: string;
|
|
33606
33872
|
projectId: string;
|
|
33607
33873
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -33706,6 +33972,8 @@ export default class {
|
|
|
33706
33972
|
type: "avro";
|
|
33707
33973
|
} | undefined;
|
|
33708
33974
|
textEncoding?: string | undefined;
|
|
33975
|
+
pgpPrivateKey?: string | undefined;
|
|
33976
|
+
pgpPassphrase?: string | undefined;
|
|
33709
33977
|
processType?: import("./definitions").ProcessType | undefined;
|
|
33710
33978
|
accessKey: string;
|
|
33711
33979
|
secretKey: string;
|
|
@@ -35476,6 +35744,8 @@ export default class {
|
|
|
35476
35744
|
type: "avro";
|
|
35477
35745
|
} | undefined;
|
|
35478
35746
|
textEncoding?: string | undefined;
|
|
35747
|
+
pgpPrivateKey?: string | undefined;
|
|
35748
|
+
pgpPassphrase?: string | undefined;
|
|
35479
35749
|
};
|
|
35480
35750
|
type: "url";
|
|
35481
35751
|
preProcessingAggregations?: {
|
|
@@ -35522,6 +35792,8 @@ export default class {
|
|
|
35522
35792
|
type: "avro";
|
|
35523
35793
|
};
|
|
35524
35794
|
textEncoding: string;
|
|
35795
|
+
pgpPrivateKey?: string | undefined;
|
|
35796
|
+
pgpPassphrase?: string | undefined;
|
|
35525
35797
|
};
|
|
35526
35798
|
type: "file";
|
|
35527
35799
|
preProcessingAggregations?: {
|
|
@@ -35569,6 +35841,8 @@ export default class {
|
|
|
35569
35841
|
type: "avro";
|
|
35570
35842
|
} | undefined;
|
|
35571
35843
|
textEncoding?: string | undefined;
|
|
35844
|
+
pgpPrivateKey?: string | undefined;
|
|
35845
|
+
pgpPassphrase?: string | undefined;
|
|
35572
35846
|
host: string;
|
|
35573
35847
|
port: number;
|
|
35574
35848
|
secure: boolean;
|
|
@@ -35622,6 +35896,8 @@ export default class {
|
|
|
35622
35896
|
type: "avro";
|
|
35623
35897
|
} | undefined;
|
|
35624
35898
|
textEncoding?: string | undefined;
|
|
35899
|
+
pgpPrivateKey?: string | undefined;
|
|
35900
|
+
pgpPassphrase?: string | undefined;
|
|
35625
35901
|
host: string;
|
|
35626
35902
|
port: number;
|
|
35627
35903
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -35696,6 +35972,8 @@ export default class {
|
|
|
35696
35972
|
type: "avro";
|
|
35697
35973
|
} | undefined;
|
|
35698
35974
|
textEncoding?: string | undefined;
|
|
35975
|
+
pgpPrivateKey?: string | undefined;
|
|
35976
|
+
pgpPassphrase?: string | undefined;
|
|
35699
35977
|
clientEmail: string;
|
|
35700
35978
|
projectId: string;
|
|
35701
35979
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -35800,6 +36078,8 @@ export default class {
|
|
|
35800
36078
|
type: "avro";
|
|
35801
36079
|
} | undefined;
|
|
35802
36080
|
textEncoding?: string | undefined;
|
|
36081
|
+
pgpPrivateKey?: string | undefined;
|
|
36082
|
+
pgpPassphrase?: string | undefined;
|
|
35803
36083
|
processType?: import("./definitions").ProcessType | undefined;
|
|
35804
36084
|
accessKey: string;
|
|
35805
36085
|
secretKey: string;
|
|
@@ -36606,6 +36886,8 @@ export default class {
|
|
|
36606
36886
|
type: "avro";
|
|
36607
36887
|
} | undefined;
|
|
36608
36888
|
textEncoding?: string | undefined;
|
|
36889
|
+
pgpPrivateKey?: string | undefined;
|
|
36890
|
+
pgpPassphrase?: string | undefined;
|
|
36609
36891
|
};
|
|
36610
36892
|
type: "url";
|
|
36611
36893
|
preProcessingAggregations?: {
|
|
@@ -36652,6 +36934,8 @@ export default class {
|
|
|
36652
36934
|
type: "avro";
|
|
36653
36935
|
};
|
|
36654
36936
|
textEncoding: string;
|
|
36937
|
+
pgpPrivateKey?: string | undefined;
|
|
36938
|
+
pgpPassphrase?: string | undefined;
|
|
36655
36939
|
};
|
|
36656
36940
|
type: "file";
|
|
36657
36941
|
preProcessingAggregations?: {
|
|
@@ -36699,6 +36983,8 @@ export default class {
|
|
|
36699
36983
|
type: "avro";
|
|
36700
36984
|
} | undefined;
|
|
36701
36985
|
textEncoding?: string | undefined;
|
|
36986
|
+
pgpPrivateKey?: string | undefined;
|
|
36987
|
+
pgpPassphrase?: string | undefined;
|
|
36702
36988
|
host: string;
|
|
36703
36989
|
port: number;
|
|
36704
36990
|
secure: boolean;
|
|
@@ -36752,6 +37038,8 @@ export default class {
|
|
|
36752
37038
|
type: "avro";
|
|
36753
37039
|
} | undefined;
|
|
36754
37040
|
textEncoding?: string | undefined;
|
|
37041
|
+
pgpPrivateKey?: string | undefined;
|
|
37042
|
+
pgpPassphrase?: string | undefined;
|
|
36755
37043
|
host: string;
|
|
36756
37044
|
port: number;
|
|
36757
37045
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -36826,6 +37114,8 @@ export default class {
|
|
|
36826
37114
|
type: "avro";
|
|
36827
37115
|
} | undefined;
|
|
36828
37116
|
textEncoding?: string | undefined;
|
|
37117
|
+
pgpPrivateKey?: string | undefined;
|
|
37118
|
+
pgpPassphrase?: string | undefined;
|
|
36829
37119
|
clientEmail: string;
|
|
36830
37120
|
projectId: string;
|
|
36831
37121
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -36930,6 +37220,8 @@ export default class {
|
|
|
36930
37220
|
type: "avro";
|
|
36931
37221
|
} | undefined;
|
|
36932
37222
|
textEncoding?: string | undefined;
|
|
37223
|
+
pgpPrivateKey?: string | undefined;
|
|
37224
|
+
pgpPassphrase?: string | undefined;
|
|
36933
37225
|
processType?: import("./definitions").ProcessType | undefined;
|
|
36934
37226
|
accessKey: string;
|
|
36935
37227
|
secretKey: string;
|
|
@@ -38337,6 +38629,8 @@ export default class {
|
|
|
38337
38629
|
type: "avro";
|
|
38338
38630
|
} | undefined;
|
|
38339
38631
|
textEncoding?: string | undefined;
|
|
38632
|
+
pgpPrivateKey?: string | undefined;
|
|
38633
|
+
pgpPassphrase?: string | undefined;
|
|
38340
38634
|
};
|
|
38341
38635
|
type: "url";
|
|
38342
38636
|
preProcessingAggregations?: {
|
|
@@ -38383,6 +38677,8 @@ export default class {
|
|
|
38383
38677
|
type: "avro";
|
|
38384
38678
|
};
|
|
38385
38679
|
textEncoding: string;
|
|
38680
|
+
pgpPrivateKey?: string | undefined;
|
|
38681
|
+
pgpPassphrase?: string | undefined;
|
|
38386
38682
|
};
|
|
38387
38683
|
type: "file";
|
|
38388
38684
|
preProcessingAggregations?: {
|
|
@@ -38430,6 +38726,8 @@ export default class {
|
|
|
38430
38726
|
type: "avro";
|
|
38431
38727
|
} | undefined;
|
|
38432
38728
|
textEncoding?: string | undefined;
|
|
38729
|
+
pgpPrivateKey?: string | undefined;
|
|
38730
|
+
pgpPassphrase?: string | undefined;
|
|
38433
38731
|
host: string;
|
|
38434
38732
|
port: number;
|
|
38435
38733
|
secure: boolean;
|
|
@@ -38483,6 +38781,8 @@ export default class {
|
|
|
38483
38781
|
type: "avro";
|
|
38484
38782
|
} | undefined;
|
|
38485
38783
|
textEncoding?: string | undefined;
|
|
38784
|
+
pgpPrivateKey?: string | undefined;
|
|
38785
|
+
pgpPassphrase?: string | undefined;
|
|
38486
38786
|
host: string;
|
|
38487
38787
|
port: number;
|
|
38488
38788
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -38557,6 +38857,8 @@ export default class {
|
|
|
38557
38857
|
type: "avro";
|
|
38558
38858
|
} | undefined;
|
|
38559
38859
|
textEncoding?: string | undefined;
|
|
38860
|
+
pgpPrivateKey?: string | undefined;
|
|
38861
|
+
pgpPassphrase?: string | undefined;
|
|
38560
38862
|
clientEmail: string;
|
|
38561
38863
|
projectId: string;
|
|
38562
38864
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -38661,6 +38963,8 @@ export default class {
|
|
|
38661
38963
|
type: "avro";
|
|
38662
38964
|
} | undefined;
|
|
38663
38965
|
textEncoding?: string | undefined;
|
|
38966
|
+
pgpPrivateKey?: string | undefined;
|
|
38967
|
+
pgpPassphrase?: string | undefined;
|
|
38664
38968
|
processType?: import("./definitions").ProcessType | undefined;
|
|
38665
38969
|
accessKey: string;
|
|
38666
38970
|
secretKey: string;
|
|
@@ -39467,6 +39771,8 @@ export default class {
|
|
|
39467
39771
|
type: "avro";
|
|
39468
39772
|
} | undefined;
|
|
39469
39773
|
textEncoding?: string | undefined;
|
|
39774
|
+
pgpPrivateKey?: string | undefined;
|
|
39775
|
+
pgpPassphrase?: string | undefined;
|
|
39470
39776
|
};
|
|
39471
39777
|
type: "url";
|
|
39472
39778
|
preProcessingAggregations?: {
|
|
@@ -39513,6 +39819,8 @@ export default class {
|
|
|
39513
39819
|
type: "avro";
|
|
39514
39820
|
};
|
|
39515
39821
|
textEncoding: string;
|
|
39822
|
+
pgpPrivateKey?: string | undefined;
|
|
39823
|
+
pgpPassphrase?: string | undefined;
|
|
39516
39824
|
};
|
|
39517
39825
|
type: "file";
|
|
39518
39826
|
preProcessingAggregations?: {
|
|
@@ -39560,6 +39868,8 @@ export default class {
|
|
|
39560
39868
|
type: "avro";
|
|
39561
39869
|
} | undefined;
|
|
39562
39870
|
textEncoding?: string | undefined;
|
|
39871
|
+
pgpPrivateKey?: string | undefined;
|
|
39872
|
+
pgpPassphrase?: string | undefined;
|
|
39563
39873
|
host: string;
|
|
39564
39874
|
port: number;
|
|
39565
39875
|
secure: boolean;
|
|
@@ -39613,6 +39923,8 @@ export default class {
|
|
|
39613
39923
|
type: "avro";
|
|
39614
39924
|
} | undefined;
|
|
39615
39925
|
textEncoding?: string | undefined;
|
|
39926
|
+
pgpPrivateKey?: string | undefined;
|
|
39927
|
+
pgpPassphrase?: string | undefined;
|
|
39616
39928
|
host: string;
|
|
39617
39929
|
port: number;
|
|
39618
39930
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -39687,6 +39999,8 @@ export default class {
|
|
|
39687
39999
|
type: "avro";
|
|
39688
40000
|
} | undefined;
|
|
39689
40001
|
textEncoding?: string | undefined;
|
|
40002
|
+
pgpPrivateKey?: string | undefined;
|
|
40003
|
+
pgpPassphrase?: string | undefined;
|
|
39690
40004
|
clientEmail: string;
|
|
39691
40005
|
projectId: string;
|
|
39692
40006
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -39791,6 +40105,8 @@ export default class {
|
|
|
39791
40105
|
type: "avro";
|
|
39792
40106
|
} | undefined;
|
|
39793
40107
|
textEncoding?: string | undefined;
|
|
40108
|
+
pgpPrivateKey?: string | undefined;
|
|
40109
|
+
pgpPassphrase?: string | undefined;
|
|
39794
40110
|
processType?: import("./definitions").ProcessType | undefined;
|
|
39795
40111
|
accessKey: string;
|
|
39796
40112
|
secretKey: string;
|
|
@@ -41841,6 +42157,8 @@ export default class {
|
|
|
41841
42157
|
type: "avro";
|
|
41842
42158
|
} | undefined;
|
|
41843
42159
|
textEncoding?: string | undefined;
|
|
42160
|
+
pgpPrivateKey?: string | undefined;
|
|
42161
|
+
pgpPassphrase?: string | undefined;
|
|
41844
42162
|
};
|
|
41845
42163
|
type: "url";
|
|
41846
42164
|
preProcessingAggregations?: {
|
|
@@ -41887,6 +42205,8 @@ export default class {
|
|
|
41887
42205
|
type: "avro";
|
|
41888
42206
|
};
|
|
41889
42207
|
textEncoding: string;
|
|
42208
|
+
pgpPrivateKey?: string | undefined;
|
|
42209
|
+
pgpPassphrase?: string | undefined;
|
|
41890
42210
|
};
|
|
41891
42211
|
type: "file";
|
|
41892
42212
|
preProcessingAggregations?: {
|
|
@@ -41934,6 +42254,8 @@ export default class {
|
|
|
41934
42254
|
type: "avro";
|
|
41935
42255
|
} | undefined;
|
|
41936
42256
|
textEncoding?: string | undefined;
|
|
42257
|
+
pgpPrivateKey?: string | undefined;
|
|
42258
|
+
pgpPassphrase?: string | undefined;
|
|
41937
42259
|
host: string;
|
|
41938
42260
|
port: number;
|
|
41939
42261
|
secure: boolean;
|
|
@@ -41987,6 +42309,8 @@ export default class {
|
|
|
41987
42309
|
type: "avro";
|
|
41988
42310
|
} | undefined;
|
|
41989
42311
|
textEncoding?: string | undefined;
|
|
42312
|
+
pgpPrivateKey?: string | undefined;
|
|
42313
|
+
pgpPassphrase?: string | undefined;
|
|
41990
42314
|
host: string;
|
|
41991
42315
|
port: number;
|
|
41992
42316
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -42061,6 +42385,8 @@ export default class {
|
|
|
42061
42385
|
type: "avro";
|
|
42062
42386
|
} | undefined;
|
|
42063
42387
|
textEncoding?: string | undefined;
|
|
42388
|
+
pgpPrivateKey?: string | undefined;
|
|
42389
|
+
pgpPassphrase?: string | undefined;
|
|
42064
42390
|
clientEmail: string;
|
|
42065
42391
|
projectId: string;
|
|
42066
42392
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -42165,6 +42491,8 @@ export default class {
|
|
|
42165
42491
|
type: "avro";
|
|
42166
42492
|
} | undefined;
|
|
42167
42493
|
textEncoding?: string | undefined;
|
|
42494
|
+
pgpPrivateKey?: string | undefined;
|
|
42495
|
+
pgpPassphrase?: string | undefined;
|
|
42168
42496
|
processType?: import("./definitions").ProcessType | undefined;
|
|
42169
42497
|
accessKey: string;
|
|
42170
42498
|
secretKey: string;
|
|
@@ -42971,6 +43299,8 @@ export default class {
|
|
|
42971
43299
|
type: "avro";
|
|
42972
43300
|
} | undefined;
|
|
42973
43301
|
textEncoding?: string | undefined;
|
|
43302
|
+
pgpPrivateKey?: string | undefined;
|
|
43303
|
+
pgpPassphrase?: string | undefined;
|
|
42974
43304
|
};
|
|
42975
43305
|
type: "url";
|
|
42976
43306
|
preProcessingAggregations?: {
|
|
@@ -43017,6 +43347,8 @@ export default class {
|
|
|
43017
43347
|
type: "avro";
|
|
43018
43348
|
};
|
|
43019
43349
|
textEncoding: string;
|
|
43350
|
+
pgpPrivateKey?: string | undefined;
|
|
43351
|
+
pgpPassphrase?: string | undefined;
|
|
43020
43352
|
};
|
|
43021
43353
|
type: "file";
|
|
43022
43354
|
preProcessingAggregations?: {
|
|
@@ -43064,6 +43396,8 @@ export default class {
|
|
|
43064
43396
|
type: "avro";
|
|
43065
43397
|
} | undefined;
|
|
43066
43398
|
textEncoding?: string | undefined;
|
|
43399
|
+
pgpPrivateKey?: string | undefined;
|
|
43400
|
+
pgpPassphrase?: string | undefined;
|
|
43067
43401
|
host: string;
|
|
43068
43402
|
port: number;
|
|
43069
43403
|
secure: boolean;
|
|
@@ -43117,6 +43451,8 @@ export default class {
|
|
|
43117
43451
|
type: "avro";
|
|
43118
43452
|
} | undefined;
|
|
43119
43453
|
textEncoding?: string | undefined;
|
|
43454
|
+
pgpPrivateKey?: string | undefined;
|
|
43455
|
+
pgpPassphrase?: string | undefined;
|
|
43120
43456
|
host: string;
|
|
43121
43457
|
port: number;
|
|
43122
43458
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -43191,6 +43527,8 @@ export default class {
|
|
|
43191
43527
|
type: "avro";
|
|
43192
43528
|
} | undefined;
|
|
43193
43529
|
textEncoding?: string | undefined;
|
|
43530
|
+
pgpPrivateKey?: string | undefined;
|
|
43531
|
+
pgpPassphrase?: string | undefined;
|
|
43194
43532
|
clientEmail: string;
|
|
43195
43533
|
projectId: string;
|
|
43196
43534
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -43295,6 +43633,8 @@ export default class {
|
|
|
43295
43633
|
type: "avro";
|
|
43296
43634
|
} | undefined;
|
|
43297
43635
|
textEncoding?: string | undefined;
|
|
43636
|
+
pgpPrivateKey?: string | undefined;
|
|
43637
|
+
pgpPassphrase?: string | undefined;
|
|
43298
43638
|
processType?: import("./definitions").ProcessType | undefined;
|
|
43299
43639
|
accessKey: string;
|
|
43300
43640
|
secretKey: string;
|
|
@@ -45075,6 +45415,8 @@ export default class {
|
|
|
45075
45415
|
type: "avro";
|
|
45076
45416
|
} | undefined;
|
|
45077
45417
|
textEncoding?: string | undefined;
|
|
45418
|
+
pgpPrivateKey?: string | undefined;
|
|
45419
|
+
pgpPassphrase?: string | undefined;
|
|
45078
45420
|
};
|
|
45079
45421
|
type: "url";
|
|
45080
45422
|
preProcessingAggregations?: {
|
|
@@ -45121,6 +45463,8 @@ export default class {
|
|
|
45121
45463
|
type: "avro";
|
|
45122
45464
|
};
|
|
45123
45465
|
textEncoding: string;
|
|
45466
|
+
pgpPrivateKey?: string | undefined;
|
|
45467
|
+
pgpPassphrase?: string | undefined;
|
|
45124
45468
|
};
|
|
45125
45469
|
type: "file";
|
|
45126
45470
|
preProcessingAggregations?: {
|
|
@@ -45168,6 +45512,8 @@ export default class {
|
|
|
45168
45512
|
type: "avro";
|
|
45169
45513
|
} | undefined;
|
|
45170
45514
|
textEncoding?: string | undefined;
|
|
45515
|
+
pgpPrivateKey?: string | undefined;
|
|
45516
|
+
pgpPassphrase?: string | undefined;
|
|
45171
45517
|
host: string;
|
|
45172
45518
|
port: number;
|
|
45173
45519
|
secure: boolean;
|
|
@@ -45221,6 +45567,8 @@ export default class {
|
|
|
45221
45567
|
type: "avro";
|
|
45222
45568
|
} | undefined;
|
|
45223
45569
|
textEncoding?: string | undefined;
|
|
45570
|
+
pgpPrivateKey?: string | undefined;
|
|
45571
|
+
pgpPassphrase?: string | undefined;
|
|
45224
45572
|
host: string;
|
|
45225
45573
|
port: number;
|
|
45226
45574
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -45295,6 +45643,8 @@ export default class {
|
|
|
45295
45643
|
type: "avro";
|
|
45296
45644
|
} | undefined;
|
|
45297
45645
|
textEncoding?: string | undefined;
|
|
45646
|
+
pgpPrivateKey?: string | undefined;
|
|
45647
|
+
pgpPassphrase?: string | undefined;
|
|
45298
45648
|
clientEmail: string;
|
|
45299
45649
|
projectId: string;
|
|
45300
45650
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -45399,6 +45749,8 @@ export default class {
|
|
|
45399
45749
|
type: "avro";
|
|
45400
45750
|
} | undefined;
|
|
45401
45751
|
textEncoding?: string | undefined;
|
|
45752
|
+
pgpPrivateKey?: string | undefined;
|
|
45753
|
+
pgpPassphrase?: string | undefined;
|
|
45402
45754
|
processType?: import("./definitions").ProcessType | undefined;
|
|
45403
45755
|
accessKey: string;
|
|
45404
45756
|
secretKey: string;
|
|
@@ -46211,6 +46563,8 @@ export default class {
|
|
|
46211
46563
|
type: "avro";
|
|
46212
46564
|
} | undefined;
|
|
46213
46565
|
textEncoding?: string | undefined;
|
|
46566
|
+
pgpPrivateKey?: string | undefined;
|
|
46567
|
+
pgpPassphrase?: string | undefined;
|
|
46214
46568
|
};
|
|
46215
46569
|
type: "url";
|
|
46216
46570
|
preProcessingAggregations?: {
|
|
@@ -46257,6 +46611,8 @@ export default class {
|
|
|
46257
46611
|
type: "avro";
|
|
46258
46612
|
};
|
|
46259
46613
|
textEncoding: string;
|
|
46614
|
+
pgpPrivateKey?: string | undefined;
|
|
46615
|
+
pgpPassphrase?: string | undefined;
|
|
46260
46616
|
};
|
|
46261
46617
|
type: "file";
|
|
46262
46618
|
preProcessingAggregations?: {
|
|
@@ -46304,6 +46660,8 @@ export default class {
|
|
|
46304
46660
|
type: "avro";
|
|
46305
46661
|
} | undefined;
|
|
46306
46662
|
textEncoding?: string | undefined;
|
|
46663
|
+
pgpPrivateKey?: string | undefined;
|
|
46664
|
+
pgpPassphrase?: string | undefined;
|
|
46307
46665
|
host: string;
|
|
46308
46666
|
port: number;
|
|
46309
46667
|
secure: boolean;
|
|
@@ -46357,6 +46715,8 @@ export default class {
|
|
|
46357
46715
|
type: "avro";
|
|
46358
46716
|
} | undefined;
|
|
46359
46717
|
textEncoding?: string | undefined;
|
|
46718
|
+
pgpPrivateKey?: string | undefined;
|
|
46719
|
+
pgpPassphrase?: string | undefined;
|
|
46360
46720
|
host: string;
|
|
46361
46721
|
port: number;
|
|
46362
46722
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -46431,6 +46791,8 @@ export default class {
|
|
|
46431
46791
|
type: "avro";
|
|
46432
46792
|
} | undefined;
|
|
46433
46793
|
textEncoding?: string | undefined;
|
|
46794
|
+
pgpPrivateKey?: string | undefined;
|
|
46795
|
+
pgpPassphrase?: string | undefined;
|
|
46434
46796
|
clientEmail: string;
|
|
46435
46797
|
projectId: string;
|
|
46436
46798
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -46535,6 +46897,8 @@ export default class {
|
|
|
46535
46897
|
type: "avro";
|
|
46536
46898
|
} | undefined;
|
|
46537
46899
|
textEncoding?: string | undefined;
|
|
46900
|
+
pgpPrivateKey?: string | undefined;
|
|
46901
|
+
pgpPassphrase?: string | undefined;
|
|
46538
46902
|
processType?: import("./definitions").ProcessType | undefined;
|
|
46539
46903
|
accessKey: string;
|
|
46540
46904
|
secretKey: string;
|
|
@@ -47945,6 +48309,8 @@ export default class {
|
|
|
47945
48309
|
type: "avro";
|
|
47946
48310
|
} | undefined;
|
|
47947
48311
|
textEncoding?: string | undefined;
|
|
48312
|
+
pgpPrivateKey?: string | undefined;
|
|
48313
|
+
pgpPassphrase?: string | undefined;
|
|
47948
48314
|
};
|
|
47949
48315
|
type: "url";
|
|
47950
48316
|
preProcessingAggregations?: {
|
|
@@ -47991,6 +48357,8 @@ export default class {
|
|
|
47991
48357
|
type: "avro";
|
|
47992
48358
|
};
|
|
47993
48359
|
textEncoding: string;
|
|
48360
|
+
pgpPrivateKey?: string | undefined;
|
|
48361
|
+
pgpPassphrase?: string | undefined;
|
|
47994
48362
|
};
|
|
47995
48363
|
type: "file";
|
|
47996
48364
|
preProcessingAggregations?: {
|
|
@@ -48038,6 +48406,8 @@ export default class {
|
|
|
48038
48406
|
type: "avro";
|
|
48039
48407
|
} | undefined;
|
|
48040
48408
|
textEncoding?: string | undefined;
|
|
48409
|
+
pgpPrivateKey?: string | undefined;
|
|
48410
|
+
pgpPassphrase?: string | undefined;
|
|
48041
48411
|
host: string;
|
|
48042
48412
|
port: number;
|
|
48043
48413
|
secure: boolean;
|
|
@@ -48091,6 +48461,8 @@ export default class {
|
|
|
48091
48461
|
type: "avro";
|
|
48092
48462
|
} | undefined;
|
|
48093
48463
|
textEncoding?: string | undefined;
|
|
48464
|
+
pgpPrivateKey?: string | undefined;
|
|
48465
|
+
pgpPassphrase?: string | undefined;
|
|
48094
48466
|
host: string;
|
|
48095
48467
|
port: number;
|
|
48096
48468
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -48165,6 +48537,8 @@ export default class {
|
|
|
48165
48537
|
type: "avro";
|
|
48166
48538
|
} | undefined;
|
|
48167
48539
|
textEncoding?: string | undefined;
|
|
48540
|
+
pgpPrivateKey?: string | undefined;
|
|
48541
|
+
pgpPassphrase?: string | undefined;
|
|
48168
48542
|
clientEmail: string;
|
|
48169
48543
|
projectId: string;
|
|
48170
48544
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -48269,6 +48643,8 @@ export default class {
|
|
|
48269
48643
|
type: "avro";
|
|
48270
48644
|
} | undefined;
|
|
48271
48645
|
textEncoding?: string | undefined;
|
|
48646
|
+
pgpPrivateKey?: string | undefined;
|
|
48647
|
+
pgpPassphrase?: string | undefined;
|
|
48272
48648
|
processType?: import("./definitions").ProcessType | undefined;
|
|
48273
48649
|
accessKey: string;
|
|
48274
48650
|
secretKey: string;
|
|
@@ -49081,6 +49457,8 @@ export default class {
|
|
|
49081
49457
|
type: "avro";
|
|
49082
49458
|
} | undefined;
|
|
49083
49459
|
textEncoding?: string | undefined;
|
|
49460
|
+
pgpPrivateKey?: string | undefined;
|
|
49461
|
+
pgpPassphrase?: string | undefined;
|
|
49084
49462
|
};
|
|
49085
49463
|
type: "url";
|
|
49086
49464
|
preProcessingAggregations?: {
|
|
@@ -49127,6 +49505,8 @@ export default class {
|
|
|
49127
49505
|
type: "avro";
|
|
49128
49506
|
};
|
|
49129
49507
|
textEncoding: string;
|
|
49508
|
+
pgpPrivateKey?: string | undefined;
|
|
49509
|
+
pgpPassphrase?: string | undefined;
|
|
49130
49510
|
};
|
|
49131
49511
|
type: "file";
|
|
49132
49512
|
preProcessingAggregations?: {
|
|
@@ -49174,6 +49554,8 @@ export default class {
|
|
|
49174
49554
|
type: "avro";
|
|
49175
49555
|
} | undefined;
|
|
49176
49556
|
textEncoding?: string | undefined;
|
|
49557
|
+
pgpPrivateKey?: string | undefined;
|
|
49558
|
+
pgpPassphrase?: string | undefined;
|
|
49177
49559
|
host: string;
|
|
49178
49560
|
port: number;
|
|
49179
49561
|
secure: boolean;
|
|
@@ -49227,6 +49609,8 @@ export default class {
|
|
|
49227
49609
|
type: "avro";
|
|
49228
49610
|
} | undefined;
|
|
49229
49611
|
textEncoding?: string | undefined;
|
|
49612
|
+
pgpPrivateKey?: string | undefined;
|
|
49613
|
+
pgpPassphrase?: string | undefined;
|
|
49230
49614
|
host: string;
|
|
49231
49615
|
port: number;
|
|
49232
49616
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -49301,6 +49685,8 @@ export default class {
|
|
|
49301
49685
|
type: "avro";
|
|
49302
49686
|
} | undefined;
|
|
49303
49687
|
textEncoding?: string | undefined;
|
|
49688
|
+
pgpPrivateKey?: string | undefined;
|
|
49689
|
+
pgpPassphrase?: string | undefined;
|
|
49304
49690
|
clientEmail: string;
|
|
49305
49691
|
projectId: string;
|
|
49306
49692
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -49405,6 +49791,8 @@ export default class {
|
|
|
49405
49791
|
type: "avro";
|
|
49406
49792
|
} | undefined;
|
|
49407
49793
|
textEncoding?: string | undefined;
|
|
49794
|
+
pgpPrivateKey?: string | undefined;
|
|
49795
|
+
pgpPassphrase?: string | undefined;
|
|
49408
49796
|
processType?: import("./definitions").ProcessType | undefined;
|
|
49409
49797
|
accessKey: string;
|
|
49410
49798
|
secretKey: string;
|
|
@@ -51457,6 +51845,8 @@ export default class {
|
|
|
51457
51845
|
type: "avro";
|
|
51458
51846
|
} | undefined;
|
|
51459
51847
|
textEncoding?: string | undefined;
|
|
51848
|
+
pgpPrivateKey?: string | undefined;
|
|
51849
|
+
pgpPassphrase?: string | undefined;
|
|
51460
51850
|
};
|
|
51461
51851
|
type: "url";
|
|
51462
51852
|
preProcessingAggregations?: {
|
|
@@ -51503,6 +51893,8 @@ export default class {
|
|
|
51503
51893
|
type: "avro";
|
|
51504
51894
|
};
|
|
51505
51895
|
textEncoding: string;
|
|
51896
|
+
pgpPrivateKey?: string | undefined;
|
|
51897
|
+
pgpPassphrase?: string | undefined;
|
|
51506
51898
|
};
|
|
51507
51899
|
type: "file";
|
|
51508
51900
|
preProcessingAggregations?: {
|
|
@@ -51550,6 +51942,8 @@ export default class {
|
|
|
51550
51942
|
type: "avro";
|
|
51551
51943
|
} | undefined;
|
|
51552
51944
|
textEncoding?: string | undefined;
|
|
51945
|
+
pgpPrivateKey?: string | undefined;
|
|
51946
|
+
pgpPassphrase?: string | undefined;
|
|
51553
51947
|
host: string;
|
|
51554
51948
|
port: number;
|
|
51555
51949
|
secure: boolean;
|
|
@@ -51603,6 +51997,8 @@ export default class {
|
|
|
51603
51997
|
type: "avro";
|
|
51604
51998
|
} | undefined;
|
|
51605
51999
|
textEncoding?: string | undefined;
|
|
52000
|
+
pgpPrivateKey?: string | undefined;
|
|
52001
|
+
pgpPassphrase?: string | undefined;
|
|
51606
52002
|
host: string;
|
|
51607
52003
|
port: number;
|
|
51608
52004
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -51677,6 +52073,8 @@ export default class {
|
|
|
51677
52073
|
type: "avro";
|
|
51678
52074
|
} | undefined;
|
|
51679
52075
|
textEncoding?: string | undefined;
|
|
52076
|
+
pgpPrivateKey?: string | undefined;
|
|
52077
|
+
pgpPassphrase?: string | undefined;
|
|
51680
52078
|
clientEmail: string;
|
|
51681
52079
|
projectId: string;
|
|
51682
52080
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -51781,6 +52179,8 @@ export default class {
|
|
|
51781
52179
|
type: "avro";
|
|
51782
52180
|
} | undefined;
|
|
51783
52181
|
textEncoding?: string | undefined;
|
|
52182
|
+
pgpPrivateKey?: string | undefined;
|
|
52183
|
+
pgpPassphrase?: string | undefined;
|
|
51784
52184
|
processType?: import("./definitions").ProcessType | undefined;
|
|
51785
52185
|
accessKey: string;
|
|
51786
52186
|
secretKey: string;
|
|
@@ -52593,6 +52993,8 @@ export default class {
|
|
|
52593
52993
|
type: "avro";
|
|
52594
52994
|
} | undefined;
|
|
52595
52995
|
textEncoding?: string | undefined;
|
|
52996
|
+
pgpPrivateKey?: string | undefined;
|
|
52997
|
+
pgpPassphrase?: string | undefined;
|
|
52596
52998
|
};
|
|
52597
52999
|
type: "url";
|
|
52598
53000
|
preProcessingAggregations?: {
|
|
@@ -52639,6 +53041,8 @@ export default class {
|
|
|
52639
53041
|
type: "avro";
|
|
52640
53042
|
};
|
|
52641
53043
|
textEncoding: string;
|
|
53044
|
+
pgpPrivateKey?: string | undefined;
|
|
53045
|
+
pgpPassphrase?: string | undefined;
|
|
52642
53046
|
};
|
|
52643
53047
|
type: "file";
|
|
52644
53048
|
preProcessingAggregations?: {
|
|
@@ -52686,6 +53090,8 @@ export default class {
|
|
|
52686
53090
|
type: "avro";
|
|
52687
53091
|
} | undefined;
|
|
52688
53092
|
textEncoding?: string | undefined;
|
|
53093
|
+
pgpPrivateKey?: string | undefined;
|
|
53094
|
+
pgpPassphrase?: string | undefined;
|
|
52689
53095
|
host: string;
|
|
52690
53096
|
port: number;
|
|
52691
53097
|
secure: boolean;
|
|
@@ -52739,6 +53145,8 @@ export default class {
|
|
|
52739
53145
|
type: "avro";
|
|
52740
53146
|
} | undefined;
|
|
52741
53147
|
textEncoding?: string | undefined;
|
|
53148
|
+
pgpPrivateKey?: string | undefined;
|
|
53149
|
+
pgpPassphrase?: string | undefined;
|
|
52742
53150
|
host: string;
|
|
52743
53151
|
port: number;
|
|
52744
53152
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -52813,6 +53221,8 @@ export default class {
|
|
|
52813
53221
|
type: "avro";
|
|
52814
53222
|
} | undefined;
|
|
52815
53223
|
textEncoding?: string | undefined;
|
|
53224
|
+
pgpPrivateKey?: string | undefined;
|
|
53225
|
+
pgpPassphrase?: string | undefined;
|
|
52816
53226
|
clientEmail: string;
|
|
52817
53227
|
projectId: string;
|
|
52818
53228
|
processType?: import("./definitions").ProcessType | undefined;
|
|
@@ -52917,6 +53327,8 @@ export default class {
|
|
|
52917
53327
|
type: "avro";
|
|
52918
53328
|
} | undefined;
|
|
52919
53329
|
textEncoding?: string | undefined;
|
|
53330
|
+
pgpPrivateKey?: string | undefined;
|
|
53331
|
+
pgpPassphrase?: string | undefined;
|
|
52920
53332
|
processType?: import("./definitions").ProcessType | undefined;
|
|
52921
53333
|
accessKey: string;
|
|
52922
53334
|
secretKey: string;
|
|
@@ -53976,6 +54388,8 @@ export default class {
|
|
|
53976
54388
|
type: "avro";
|
|
53977
54389
|
};
|
|
53978
54390
|
textEncoding: string;
|
|
54391
|
+
pgpPrivateKey?: string | undefined;
|
|
54392
|
+
pgpPassphrase?: string | undefined;
|
|
53979
54393
|
};
|
|
53980
54394
|
program: string;
|
|
53981
54395
|
version: string;
|