@alicloud/dataworks-public20200518 4.4.8 → 4.4.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client.d.ts +318 -0
- package/dist/client.js +622 -0
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +858 -78
package/src/client.ts
CHANGED
|
@@ -81,6 +81,81 @@ export class Entity extends $tea.Model {
|
|
|
81
81
|
}
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
+
export class LineageEntityVO extends $tea.Model {
|
|
85
|
+
detailUrl?: string;
|
|
86
|
+
name?: string;
|
|
87
|
+
parentName?: string;
|
|
88
|
+
qualifiedName?: string;
|
|
89
|
+
static names(): { [key: string]: string } {
|
|
90
|
+
return {
|
|
91
|
+
detailUrl: 'DetailUrl',
|
|
92
|
+
name: 'Name',
|
|
93
|
+
parentName: 'ParentName',
|
|
94
|
+
qualifiedName: 'QualifiedName',
|
|
95
|
+
};
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
static types(): { [key: string]: any } {
|
|
99
|
+
return {
|
|
100
|
+
detailUrl: 'string',
|
|
101
|
+
name: 'string',
|
|
102
|
+
parentName: 'string',
|
|
103
|
+
qualifiedName: 'string',
|
|
104
|
+
};
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
constructor(map?: { [key: string]: any }) {
|
|
108
|
+
super(map);
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
export class LineageRelationRegisterVO extends $tea.Model {
|
|
113
|
+
createTimestamp?: number;
|
|
114
|
+
destEntity?: LineageEntityVO;
|
|
115
|
+
relationship?: RelationshipVO;
|
|
116
|
+
srcEntity?: LineageEntityVO;
|
|
117
|
+
static names(): { [key: string]: string } {
|
|
118
|
+
return {
|
|
119
|
+
createTimestamp: 'CreateTimestamp',
|
|
120
|
+
destEntity: 'DestEntity',
|
|
121
|
+
relationship: 'Relationship',
|
|
122
|
+
srcEntity: 'SrcEntity',
|
|
123
|
+
};
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
static types(): { [key: string]: any } {
|
|
127
|
+
return {
|
|
128
|
+
createTimestamp: 'number',
|
|
129
|
+
destEntity: LineageEntityVO,
|
|
130
|
+
relationship: RelationshipVO,
|
|
131
|
+
srcEntity: LineageEntityVO,
|
|
132
|
+
};
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
constructor(map?: { [key: string]: any }) {
|
|
136
|
+
super(map);
|
|
137
|
+
}
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
export class RelationshipVO extends $tea.Model {
|
|
141
|
+
type?: string;
|
|
142
|
+
static names(): { [key: string]: string } {
|
|
143
|
+
return {
|
|
144
|
+
type: 'Type',
|
|
145
|
+
};
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
static types(): { [key: string]: any } {
|
|
149
|
+
return {
|
|
150
|
+
type: 'string',
|
|
151
|
+
};
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
constructor(map?: { [key: string]: any }) {
|
|
155
|
+
super(map);
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
|
|
84
159
|
export class AbolishDataServiceApiRequest extends $tea.Model {
|
|
85
160
|
apiId?: number;
|
|
86
161
|
projectId?: number;
|
|
@@ -1900,6 +1975,7 @@ export class CreateFileRequest extends $tea.Model {
|
|
|
1900
1975
|
autoRerunTimes?: number;
|
|
1901
1976
|
connectionName?: string;
|
|
1902
1977
|
content?: string;
|
|
1978
|
+
createFolderIfNotExists?: boolean;
|
|
1903
1979
|
cronExpress?: string;
|
|
1904
1980
|
cycleType?: string;
|
|
1905
1981
|
dependentNodeIdList?: string;
|
|
@@ -1932,6 +2008,7 @@ export class CreateFileRequest extends $tea.Model {
|
|
|
1932
2008
|
autoRerunTimes: 'AutoRerunTimes',
|
|
1933
2009
|
connectionName: 'ConnectionName',
|
|
1934
2010
|
content: 'Content',
|
|
2011
|
+
createFolderIfNotExists: 'CreateFolderIfNotExists',
|
|
1935
2012
|
cronExpress: 'CronExpress',
|
|
1936
2013
|
cycleType: 'CycleType',
|
|
1937
2014
|
dependentNodeIdList: 'DependentNodeIdList',
|
|
@@ -1967,6 +2044,7 @@ export class CreateFileRequest extends $tea.Model {
|
|
|
1967
2044
|
autoRerunTimes: 'number',
|
|
1968
2045
|
connectionName: 'string',
|
|
1969
2046
|
content: 'string',
|
|
2047
|
+
createFolderIfNotExists: 'boolean',
|
|
1970
2048
|
cronExpress: 'string',
|
|
1971
2049
|
cycleType: 'string',
|
|
1972
2050
|
dependentNodeIdList: 'string',
|
|
@@ -3241,6 +3319,105 @@ export class CreateRemindResponse extends $tea.Model {
|
|
|
3241
3319
|
}
|
|
3242
3320
|
}
|
|
3243
3321
|
|
|
3322
|
+
export class CreateResourceFileRequest extends $tea.Model {
|
|
3323
|
+
content?: string;
|
|
3324
|
+
fileDescription?: string;
|
|
3325
|
+
fileFolderPath?: string;
|
|
3326
|
+
fileName?: string;
|
|
3327
|
+
fileType?: number;
|
|
3328
|
+
originResourceName?: string;
|
|
3329
|
+
owner?: string;
|
|
3330
|
+
projectId?: number;
|
|
3331
|
+
registerToCalcEngine?: boolean;
|
|
3332
|
+
resourceFile?: string;
|
|
3333
|
+
storageURL?: string;
|
|
3334
|
+
uploadMode?: boolean;
|
|
3335
|
+
static names(): { [key: string]: string } {
|
|
3336
|
+
return {
|
|
3337
|
+
content: 'Content',
|
|
3338
|
+
fileDescription: 'FileDescription',
|
|
3339
|
+
fileFolderPath: 'FileFolderPath',
|
|
3340
|
+
fileName: 'FileName',
|
|
3341
|
+
fileType: 'FileType',
|
|
3342
|
+
originResourceName: 'OriginResourceName',
|
|
3343
|
+
owner: 'Owner',
|
|
3344
|
+
projectId: 'ProjectId',
|
|
3345
|
+
registerToCalcEngine: 'RegisterToCalcEngine',
|
|
3346
|
+
resourceFile: 'ResourceFile',
|
|
3347
|
+
storageURL: 'StorageURL',
|
|
3348
|
+
uploadMode: 'UploadMode',
|
|
3349
|
+
};
|
|
3350
|
+
}
|
|
3351
|
+
|
|
3352
|
+
static types(): { [key: string]: any } {
|
|
3353
|
+
return {
|
|
3354
|
+
content: 'string',
|
|
3355
|
+
fileDescription: 'string',
|
|
3356
|
+
fileFolderPath: 'string',
|
|
3357
|
+
fileName: 'string',
|
|
3358
|
+
fileType: 'number',
|
|
3359
|
+
originResourceName: 'string',
|
|
3360
|
+
owner: 'string',
|
|
3361
|
+
projectId: 'number',
|
|
3362
|
+
registerToCalcEngine: 'boolean',
|
|
3363
|
+
resourceFile: 'string',
|
|
3364
|
+
storageURL: 'string',
|
|
3365
|
+
uploadMode: 'boolean',
|
|
3366
|
+
};
|
|
3367
|
+
}
|
|
3368
|
+
|
|
3369
|
+
constructor(map?: { [key: string]: any }) {
|
|
3370
|
+
super(map);
|
|
3371
|
+
}
|
|
3372
|
+
}
|
|
3373
|
+
|
|
3374
|
+
export class CreateResourceFileResponseBody extends $tea.Model {
|
|
3375
|
+
data?: number;
|
|
3376
|
+
requestId?: string;
|
|
3377
|
+
static names(): { [key: string]: string } {
|
|
3378
|
+
return {
|
|
3379
|
+
data: 'Data',
|
|
3380
|
+
requestId: 'RequestId',
|
|
3381
|
+
};
|
|
3382
|
+
}
|
|
3383
|
+
|
|
3384
|
+
static types(): { [key: string]: any } {
|
|
3385
|
+
return {
|
|
3386
|
+
data: 'number',
|
|
3387
|
+
requestId: 'string',
|
|
3388
|
+
};
|
|
3389
|
+
}
|
|
3390
|
+
|
|
3391
|
+
constructor(map?: { [key: string]: any }) {
|
|
3392
|
+
super(map);
|
|
3393
|
+
}
|
|
3394
|
+
}
|
|
3395
|
+
|
|
3396
|
+
export class CreateResourceFileResponse extends $tea.Model {
|
|
3397
|
+
headers: { [key: string]: string };
|
|
3398
|
+
statusCode: number;
|
|
3399
|
+
body: CreateResourceFileResponseBody;
|
|
3400
|
+
static names(): { [key: string]: string } {
|
|
3401
|
+
return {
|
|
3402
|
+
headers: 'headers',
|
|
3403
|
+
statusCode: 'statusCode',
|
|
3404
|
+
body: 'body',
|
|
3405
|
+
};
|
|
3406
|
+
}
|
|
3407
|
+
|
|
3408
|
+
static types(): { [key: string]: any } {
|
|
3409
|
+
return {
|
|
3410
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
3411
|
+
statusCode: 'number',
|
|
3412
|
+
body: CreateResourceFileResponseBody,
|
|
3413
|
+
};
|
|
3414
|
+
}
|
|
3415
|
+
|
|
3416
|
+
constructor(map?: { [key: string]: any }) {
|
|
3417
|
+
super(map);
|
|
3418
|
+
}
|
|
3419
|
+
}
|
|
3420
|
+
|
|
3244
3421
|
export class CreateTableRequest extends $tea.Model {
|
|
3245
3422
|
appGuid?: string;
|
|
3246
3423
|
categoryId?: number;
|
|
@@ -3541,6 +3718,7 @@ export class CreateTableThemeResponse extends $tea.Model {
|
|
|
3541
3718
|
export class CreateUdfFileRequest extends $tea.Model {
|
|
3542
3719
|
className?: string;
|
|
3543
3720
|
cmdDescription?: string;
|
|
3721
|
+
createFolderIfNotExists?: boolean;
|
|
3544
3722
|
example?: string;
|
|
3545
3723
|
fileFolderPath?: string;
|
|
3546
3724
|
fileName?: string;
|
|
@@ -3555,6 +3733,7 @@ export class CreateUdfFileRequest extends $tea.Model {
|
|
|
3555
3733
|
return {
|
|
3556
3734
|
className: 'ClassName',
|
|
3557
3735
|
cmdDescription: 'CmdDescription',
|
|
3736
|
+
createFolderIfNotExists: 'CreateFolderIfNotExists',
|
|
3558
3737
|
example: 'Example',
|
|
3559
3738
|
fileFolderPath: 'FileFolderPath',
|
|
3560
3739
|
fileName: 'FileName',
|
|
@@ -3572,6 +3751,7 @@ export class CreateUdfFileRequest extends $tea.Model {
|
|
|
3572
3751
|
return {
|
|
3573
3752
|
className: 'string',
|
|
3574
3753
|
cmdDescription: 'string',
|
|
3754
|
+
createFolderIfNotExists: 'boolean',
|
|
3575
3755
|
example: 'string',
|
|
3576
3756
|
fileFolderPath: 'string',
|
|
3577
3757
|
fileName: 'string',
|
|
@@ -4435,17 +4615,23 @@ export class DeleteFromMetaCategoryResponse extends $tea.Model {
|
|
|
4435
4615
|
}
|
|
4436
4616
|
}
|
|
4437
4617
|
|
|
4438
|
-
export class
|
|
4439
|
-
|
|
4618
|
+
export class DeleteLineageRelationRequest extends $tea.Model {
|
|
4619
|
+
destEntityQualifiedName?: string;
|
|
4620
|
+
relationshipGuid?: string;
|
|
4621
|
+
srcEntityQualifiedName?: string;
|
|
4440
4622
|
static names(): { [key: string]: string } {
|
|
4441
4623
|
return {
|
|
4442
|
-
|
|
4624
|
+
destEntityQualifiedName: 'DestEntityQualifiedName',
|
|
4625
|
+
relationshipGuid: 'RelationshipGuid',
|
|
4626
|
+
srcEntityQualifiedName: 'SrcEntityQualifiedName',
|
|
4443
4627
|
};
|
|
4444
4628
|
}
|
|
4445
4629
|
|
|
4446
4630
|
static types(): { [key: string]: any } {
|
|
4447
4631
|
return {
|
|
4448
|
-
|
|
4632
|
+
destEntityQualifiedName: 'string',
|
|
4633
|
+
relationshipGuid: 'string',
|
|
4634
|
+
srcEntityQualifiedName: 'string',
|
|
4449
4635
|
};
|
|
4450
4636
|
}
|
|
4451
4637
|
|
|
@@ -4454,31 +4640,31 @@ export class DeleteMetaCategoryRequest extends $tea.Model {
|
|
|
4454
4640
|
}
|
|
4455
4641
|
}
|
|
4456
4642
|
|
|
4457
|
-
export class
|
|
4458
|
-
data?: boolean;
|
|
4643
|
+
export class DeleteLineageRelationResponseBody extends $tea.Model {
|
|
4459
4644
|
errorCode?: string;
|
|
4460
4645
|
errorMessage?: string;
|
|
4461
4646
|
httpStatusCode?: number;
|
|
4462
4647
|
requestId?: string;
|
|
4648
|
+
status?: boolean;
|
|
4463
4649
|
success?: boolean;
|
|
4464
4650
|
static names(): { [key: string]: string } {
|
|
4465
4651
|
return {
|
|
4466
|
-
data: 'Data',
|
|
4467
4652
|
errorCode: 'ErrorCode',
|
|
4468
4653
|
errorMessage: 'ErrorMessage',
|
|
4469
4654
|
httpStatusCode: 'HttpStatusCode',
|
|
4470
4655
|
requestId: 'RequestId',
|
|
4656
|
+
status: 'Status',
|
|
4471
4657
|
success: 'Success',
|
|
4472
4658
|
};
|
|
4473
4659
|
}
|
|
4474
4660
|
|
|
4475
4661
|
static types(): { [key: string]: any } {
|
|
4476
4662
|
return {
|
|
4477
|
-
data: 'boolean',
|
|
4478
4663
|
errorCode: 'string',
|
|
4479
4664
|
errorMessage: 'string',
|
|
4480
4665
|
httpStatusCode: 'number',
|
|
4481
4666
|
requestId: 'string',
|
|
4667
|
+
status: 'boolean',
|
|
4482
4668
|
success: 'boolean',
|
|
4483
4669
|
};
|
|
4484
4670
|
}
|
|
@@ -4488,10 +4674,10 @@ export class DeleteMetaCategoryResponseBody extends $tea.Model {
|
|
|
4488
4674
|
}
|
|
4489
4675
|
}
|
|
4490
4676
|
|
|
4491
|
-
export class
|
|
4677
|
+
export class DeleteLineageRelationResponse extends $tea.Model {
|
|
4492
4678
|
headers: { [key: string]: string };
|
|
4493
4679
|
statusCode: number;
|
|
4494
|
-
body:
|
|
4680
|
+
body: DeleteLineageRelationResponseBody;
|
|
4495
4681
|
static names(): { [key: string]: string } {
|
|
4496
4682
|
return {
|
|
4497
4683
|
headers: 'headers',
|
|
@@ -4504,7 +4690,7 @@ export class DeleteMetaCategoryResponse extends $tea.Model {
|
|
|
4504
4690
|
return {
|
|
4505
4691
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4506
4692
|
statusCode: 'number',
|
|
4507
|
-
body:
|
|
4693
|
+
body: DeleteLineageRelationResponseBody,
|
|
4508
4694
|
};
|
|
4509
4695
|
}
|
|
4510
4696
|
|
|
@@ -4513,17 +4699,17 @@ export class DeleteMetaCategoryResponse extends $tea.Model {
|
|
|
4513
4699
|
}
|
|
4514
4700
|
}
|
|
4515
4701
|
|
|
4516
|
-
export class
|
|
4517
|
-
|
|
4702
|
+
export class DeleteMetaCategoryRequest extends $tea.Model {
|
|
4703
|
+
categoryId?: number;
|
|
4518
4704
|
static names(): { [key: string]: string } {
|
|
4519
4705
|
return {
|
|
4520
|
-
|
|
4706
|
+
categoryId: 'CategoryId',
|
|
4521
4707
|
};
|
|
4522
4708
|
}
|
|
4523
4709
|
|
|
4524
4710
|
static types(): { [key: string]: any } {
|
|
4525
4711
|
return {
|
|
4526
|
-
|
|
4712
|
+
categoryId: 'number',
|
|
4527
4713
|
};
|
|
4528
4714
|
}
|
|
4529
4715
|
|
|
@@ -4532,31 +4718,31 @@ export class DeleteMetaCollectionRequest extends $tea.Model {
|
|
|
4532
4718
|
}
|
|
4533
4719
|
}
|
|
4534
4720
|
|
|
4535
|
-
export class
|
|
4721
|
+
export class DeleteMetaCategoryResponseBody extends $tea.Model {
|
|
4722
|
+
data?: boolean;
|
|
4536
4723
|
errorCode?: string;
|
|
4537
4724
|
errorMessage?: string;
|
|
4538
4725
|
httpStatusCode?: number;
|
|
4539
4726
|
requestId?: string;
|
|
4540
|
-
status?: boolean;
|
|
4541
4727
|
success?: boolean;
|
|
4542
4728
|
static names(): { [key: string]: string } {
|
|
4543
4729
|
return {
|
|
4730
|
+
data: 'Data',
|
|
4544
4731
|
errorCode: 'ErrorCode',
|
|
4545
4732
|
errorMessage: 'ErrorMessage',
|
|
4546
4733
|
httpStatusCode: 'HttpStatusCode',
|
|
4547
4734
|
requestId: 'RequestId',
|
|
4548
|
-
status: 'Status',
|
|
4549
4735
|
success: 'Success',
|
|
4550
4736
|
};
|
|
4551
4737
|
}
|
|
4552
4738
|
|
|
4553
4739
|
static types(): { [key: string]: any } {
|
|
4554
4740
|
return {
|
|
4741
|
+
data: 'boolean',
|
|
4555
4742
|
errorCode: 'string',
|
|
4556
4743
|
errorMessage: 'string',
|
|
4557
4744
|
httpStatusCode: 'number',
|
|
4558
4745
|
requestId: 'string',
|
|
4559
|
-
status: 'boolean',
|
|
4560
4746
|
success: 'boolean',
|
|
4561
4747
|
};
|
|
4562
4748
|
}
|
|
@@ -4566,10 +4752,10 @@ export class DeleteMetaCollectionResponseBody extends $tea.Model {
|
|
|
4566
4752
|
}
|
|
4567
4753
|
}
|
|
4568
4754
|
|
|
4569
|
-
export class
|
|
4755
|
+
export class DeleteMetaCategoryResponse extends $tea.Model {
|
|
4570
4756
|
headers: { [key: string]: string };
|
|
4571
4757
|
statusCode: number;
|
|
4572
|
-
body:
|
|
4758
|
+
body: DeleteMetaCategoryResponseBody;
|
|
4573
4759
|
static names(): { [key: string]: string } {
|
|
4574
4760
|
return {
|
|
4575
4761
|
headers: 'headers',
|
|
@@ -4582,7 +4768,7 @@ export class DeleteMetaCollectionResponse extends $tea.Model {
|
|
|
4582
4768
|
return {
|
|
4583
4769
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4584
4770
|
statusCode: 'number',
|
|
4585
|
-
body:
|
|
4771
|
+
body: DeleteMetaCategoryResponseBody,
|
|
4586
4772
|
};
|
|
4587
4773
|
}
|
|
4588
4774
|
|
|
@@ -4591,20 +4777,17 @@ export class DeleteMetaCollectionResponse extends $tea.Model {
|
|
|
4591
4777
|
}
|
|
4592
4778
|
}
|
|
4593
4779
|
|
|
4594
|
-
export class
|
|
4595
|
-
|
|
4596
|
-
entityQualifiedName?: string;
|
|
4780
|
+
export class DeleteMetaCollectionRequest extends $tea.Model {
|
|
4781
|
+
qualifiedName?: string;
|
|
4597
4782
|
static names(): { [key: string]: string } {
|
|
4598
4783
|
return {
|
|
4599
|
-
|
|
4600
|
-
entityQualifiedName: 'EntityQualifiedName',
|
|
4784
|
+
qualifiedName: 'QualifiedName',
|
|
4601
4785
|
};
|
|
4602
4786
|
}
|
|
4603
4787
|
|
|
4604
4788
|
static types(): { [key: string]: any } {
|
|
4605
4789
|
return {
|
|
4606
|
-
|
|
4607
|
-
entityQualifiedName: 'string',
|
|
4790
|
+
qualifiedName: 'string',
|
|
4608
4791
|
};
|
|
4609
4792
|
}
|
|
4610
4793
|
|
|
@@ -4613,7 +4796,7 @@ export class DeleteMetaCollectionEntityRequest extends $tea.Model {
|
|
|
4613
4796
|
}
|
|
4614
4797
|
}
|
|
4615
4798
|
|
|
4616
|
-
export class
|
|
4799
|
+
export class DeleteMetaCollectionResponseBody extends $tea.Model {
|
|
4617
4800
|
errorCode?: string;
|
|
4618
4801
|
errorMessage?: string;
|
|
4619
4802
|
httpStatusCode?: number;
|
|
@@ -4647,10 +4830,10 @@ export class DeleteMetaCollectionEntityResponseBody extends $tea.Model {
|
|
|
4647
4830
|
}
|
|
4648
4831
|
}
|
|
4649
4832
|
|
|
4650
|
-
export class
|
|
4833
|
+
export class DeleteMetaCollectionResponse extends $tea.Model {
|
|
4651
4834
|
headers: { [key: string]: string };
|
|
4652
4835
|
statusCode: number;
|
|
4653
|
-
body:
|
|
4836
|
+
body: DeleteMetaCollectionResponseBody;
|
|
4654
4837
|
static names(): { [key: string]: string } {
|
|
4655
4838
|
return {
|
|
4656
4839
|
headers: 'headers',
|
|
@@ -4663,7 +4846,7 @@ export class DeleteMetaCollectionEntityResponse extends $tea.Model {
|
|
|
4663
4846
|
return {
|
|
4664
4847
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4665
4848
|
statusCode: 'number',
|
|
4666
|
-
body:
|
|
4849
|
+
body: DeleteMetaCollectionResponseBody,
|
|
4667
4850
|
};
|
|
4668
4851
|
}
|
|
4669
4852
|
|
|
@@ -4672,20 +4855,20 @@ export class DeleteMetaCollectionEntityResponse extends $tea.Model {
|
|
|
4672
4855
|
}
|
|
4673
4856
|
}
|
|
4674
4857
|
|
|
4675
|
-
export class
|
|
4676
|
-
|
|
4677
|
-
|
|
4858
|
+
export class DeleteMetaCollectionEntityRequest extends $tea.Model {
|
|
4859
|
+
collectionQualifiedName?: string;
|
|
4860
|
+
entityQualifiedName?: string;
|
|
4678
4861
|
static names(): { [key: string]: string } {
|
|
4679
4862
|
return {
|
|
4680
|
-
|
|
4681
|
-
|
|
4863
|
+
collectionQualifiedName: 'CollectionQualifiedName',
|
|
4864
|
+
entityQualifiedName: 'EntityQualifiedName',
|
|
4682
4865
|
};
|
|
4683
4866
|
}
|
|
4684
4867
|
|
|
4685
4868
|
static types(): { [key: string]: any } {
|
|
4686
4869
|
return {
|
|
4687
|
-
|
|
4688
|
-
|
|
4870
|
+
collectionQualifiedName: 'string',
|
|
4871
|
+
entityQualifiedName: 'string',
|
|
4689
4872
|
};
|
|
4690
4873
|
}
|
|
4691
4874
|
|
|
@@ -4694,17 +4877,32 @@ export class DeleteProjectMemberRequest extends $tea.Model {
|
|
|
4694
4877
|
}
|
|
4695
4878
|
}
|
|
4696
4879
|
|
|
4697
|
-
export class
|
|
4880
|
+
export class DeleteMetaCollectionEntityResponseBody extends $tea.Model {
|
|
4881
|
+
errorCode?: string;
|
|
4882
|
+
errorMessage?: string;
|
|
4883
|
+
httpStatusCode?: number;
|
|
4698
4884
|
requestId?: string;
|
|
4885
|
+
status?: boolean;
|
|
4886
|
+
success?: boolean;
|
|
4699
4887
|
static names(): { [key: string]: string } {
|
|
4700
4888
|
return {
|
|
4889
|
+
errorCode: 'ErrorCode',
|
|
4890
|
+
errorMessage: 'ErrorMessage',
|
|
4891
|
+
httpStatusCode: 'HttpStatusCode',
|
|
4701
4892
|
requestId: 'RequestId',
|
|
4893
|
+
status: 'Status',
|
|
4894
|
+
success: 'Success',
|
|
4702
4895
|
};
|
|
4703
4896
|
}
|
|
4704
4897
|
|
|
4705
4898
|
static types(): { [key: string]: any } {
|
|
4706
4899
|
return {
|
|
4900
|
+
errorCode: 'string',
|
|
4901
|
+
errorMessage: 'string',
|
|
4902
|
+
httpStatusCode: 'number',
|
|
4707
4903
|
requestId: 'string',
|
|
4904
|
+
status: 'boolean',
|
|
4905
|
+
success: 'boolean',
|
|
4708
4906
|
};
|
|
4709
4907
|
}
|
|
4710
4908
|
|
|
@@ -4713,10 +4911,10 @@ export class DeleteProjectMemberResponseBody extends $tea.Model {
|
|
|
4713
4911
|
}
|
|
4714
4912
|
}
|
|
4715
4913
|
|
|
4716
|
-
export class
|
|
4914
|
+
export class DeleteMetaCollectionEntityResponse extends $tea.Model {
|
|
4717
4915
|
headers: { [key: string]: string };
|
|
4718
4916
|
statusCode: number;
|
|
4719
|
-
body:
|
|
4917
|
+
body: DeleteMetaCollectionEntityResponseBody;
|
|
4720
4918
|
static names(): { [key: string]: string } {
|
|
4721
4919
|
return {
|
|
4722
4920
|
headers: 'headers',
|
|
@@ -4729,7 +4927,7 @@ export class DeleteProjectMemberResponse extends $tea.Model {
|
|
|
4729
4927
|
return {
|
|
4730
4928
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4731
4929
|
statusCode: 'number',
|
|
4732
|
-
body:
|
|
4930
|
+
body: DeleteMetaCollectionEntityResponseBody,
|
|
4733
4931
|
};
|
|
4734
4932
|
}
|
|
4735
4933
|
|
|
@@ -4738,26 +4936,20 @@ export class DeleteProjectMemberResponse extends $tea.Model {
|
|
|
4738
4936
|
}
|
|
4739
4937
|
}
|
|
4740
4938
|
|
|
4741
|
-
export class
|
|
4742
|
-
entityId?: number;
|
|
4743
|
-
envType?: string;
|
|
4939
|
+
export class DeleteProjectMemberRequest extends $tea.Model {
|
|
4744
4940
|
projectId?: number;
|
|
4745
|
-
|
|
4941
|
+
userId?: string;
|
|
4746
4942
|
static names(): { [key: string]: string } {
|
|
4747
4943
|
return {
|
|
4748
|
-
entityId: 'EntityId',
|
|
4749
|
-
envType: 'EnvType',
|
|
4750
4944
|
projectId: 'ProjectId',
|
|
4751
|
-
|
|
4945
|
+
userId: 'UserId',
|
|
4752
4946
|
};
|
|
4753
4947
|
}
|
|
4754
4948
|
|
|
4755
4949
|
static types(): { [key: string]: any } {
|
|
4756
4950
|
return {
|
|
4757
|
-
entityId: 'number',
|
|
4758
|
-
envType: 'string',
|
|
4759
4951
|
projectId: 'number',
|
|
4760
|
-
|
|
4952
|
+
userId: 'string',
|
|
4761
4953
|
};
|
|
4762
4954
|
}
|
|
4763
4955
|
|
|
@@ -4766,32 +4958,17 @@ export class DeleteQualityEntityRequest extends $tea.Model {
|
|
|
4766
4958
|
}
|
|
4767
4959
|
}
|
|
4768
4960
|
|
|
4769
|
-
export class
|
|
4770
|
-
data?: boolean;
|
|
4771
|
-
errorCode?: string;
|
|
4772
|
-
errorMessage?: string;
|
|
4773
|
-
httpStatusCode?: number;
|
|
4961
|
+
export class DeleteProjectMemberResponseBody extends $tea.Model {
|
|
4774
4962
|
requestId?: string;
|
|
4775
|
-
success?: boolean;
|
|
4776
4963
|
static names(): { [key: string]: string } {
|
|
4777
4964
|
return {
|
|
4778
|
-
data: 'Data',
|
|
4779
|
-
errorCode: 'ErrorCode',
|
|
4780
|
-
errorMessage: 'ErrorMessage',
|
|
4781
|
-
httpStatusCode: 'HttpStatusCode',
|
|
4782
4965
|
requestId: 'RequestId',
|
|
4783
|
-
success: 'Success',
|
|
4784
4966
|
};
|
|
4785
4967
|
}
|
|
4786
4968
|
|
|
4787
4969
|
static types(): { [key: string]: any } {
|
|
4788
4970
|
return {
|
|
4789
|
-
data: 'boolean',
|
|
4790
|
-
errorCode: 'string',
|
|
4791
|
-
errorMessage: 'string',
|
|
4792
|
-
httpStatusCode: 'number',
|
|
4793
4971
|
requestId: 'string',
|
|
4794
|
-
success: 'boolean',
|
|
4795
4972
|
};
|
|
4796
4973
|
}
|
|
4797
4974
|
|
|
@@ -4800,10 +4977,10 @@ export class DeleteQualityEntityResponseBody extends $tea.Model {
|
|
|
4800
4977
|
}
|
|
4801
4978
|
}
|
|
4802
4979
|
|
|
4803
|
-
export class
|
|
4980
|
+
export class DeleteProjectMemberResponse extends $tea.Model {
|
|
4804
4981
|
headers: { [key: string]: string };
|
|
4805
4982
|
statusCode: number;
|
|
4806
|
-
body:
|
|
4983
|
+
body: DeleteProjectMemberResponseBody;
|
|
4807
4984
|
static names(): { [key: string]: string } {
|
|
4808
4985
|
return {
|
|
4809
4986
|
headers: 'headers',
|
|
@@ -4816,7 +4993,7 @@ export class DeleteQualityEntityResponse extends $tea.Model {
|
|
|
4816
4993
|
return {
|
|
4817
4994
|
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
4818
4995
|
statusCode: 'number',
|
|
4819
|
-
body:
|
|
4996
|
+
body: DeleteProjectMemberResponseBody,
|
|
4820
4997
|
};
|
|
4821
4998
|
}
|
|
4822
4999
|
|
|
@@ -4825,13 +5002,15 @@ export class DeleteQualityEntityResponse extends $tea.Model {
|
|
|
4825
5002
|
}
|
|
4826
5003
|
}
|
|
4827
5004
|
|
|
4828
|
-
export class
|
|
4829
|
-
|
|
5005
|
+
export class DeleteQualityEntityRequest extends $tea.Model {
|
|
5006
|
+
entityId?: number;
|
|
5007
|
+
envType?: string;
|
|
4830
5008
|
projectId?: number;
|
|
4831
5009
|
projectName?: string;
|
|
4832
5010
|
static names(): { [key: string]: string } {
|
|
4833
5011
|
return {
|
|
4834
|
-
|
|
5012
|
+
entityId: 'EntityId',
|
|
5013
|
+
envType: 'EnvType',
|
|
4835
5014
|
projectId: 'ProjectId',
|
|
4836
5015
|
projectName: 'ProjectName',
|
|
4837
5016
|
};
|
|
@@ -4839,7 +5018,8 @@ export class DeleteQualityFollowerRequest extends $tea.Model {
|
|
|
4839
5018
|
|
|
4840
5019
|
static types(): { [key: string]: any } {
|
|
4841
5020
|
return {
|
|
4842
|
-
|
|
5021
|
+
entityId: 'number',
|
|
5022
|
+
envType: 'string',
|
|
4843
5023
|
projectId: 'number',
|
|
4844
5024
|
projectName: 'string',
|
|
4845
5025
|
};
|
|
@@ -4850,7 +5030,91 @@ export class DeleteQualityFollowerRequest extends $tea.Model {
|
|
|
4850
5030
|
}
|
|
4851
5031
|
}
|
|
4852
5032
|
|
|
4853
|
-
export class
|
|
5033
|
+
export class DeleteQualityEntityResponseBody extends $tea.Model {
|
|
5034
|
+
data?: boolean;
|
|
5035
|
+
errorCode?: string;
|
|
5036
|
+
errorMessage?: string;
|
|
5037
|
+
httpStatusCode?: number;
|
|
5038
|
+
requestId?: string;
|
|
5039
|
+
success?: boolean;
|
|
5040
|
+
static names(): { [key: string]: string } {
|
|
5041
|
+
return {
|
|
5042
|
+
data: 'Data',
|
|
5043
|
+
errorCode: 'ErrorCode',
|
|
5044
|
+
errorMessage: 'ErrorMessage',
|
|
5045
|
+
httpStatusCode: 'HttpStatusCode',
|
|
5046
|
+
requestId: 'RequestId',
|
|
5047
|
+
success: 'Success',
|
|
5048
|
+
};
|
|
5049
|
+
}
|
|
5050
|
+
|
|
5051
|
+
static types(): { [key: string]: any } {
|
|
5052
|
+
return {
|
|
5053
|
+
data: 'boolean',
|
|
5054
|
+
errorCode: 'string',
|
|
5055
|
+
errorMessage: 'string',
|
|
5056
|
+
httpStatusCode: 'number',
|
|
5057
|
+
requestId: 'string',
|
|
5058
|
+
success: 'boolean',
|
|
5059
|
+
};
|
|
5060
|
+
}
|
|
5061
|
+
|
|
5062
|
+
constructor(map?: { [key: string]: any }) {
|
|
5063
|
+
super(map);
|
|
5064
|
+
}
|
|
5065
|
+
}
|
|
5066
|
+
|
|
5067
|
+
export class DeleteQualityEntityResponse extends $tea.Model {
|
|
5068
|
+
headers: { [key: string]: string };
|
|
5069
|
+
statusCode: number;
|
|
5070
|
+
body: DeleteQualityEntityResponseBody;
|
|
5071
|
+
static names(): { [key: string]: string } {
|
|
5072
|
+
return {
|
|
5073
|
+
headers: 'headers',
|
|
5074
|
+
statusCode: 'statusCode',
|
|
5075
|
+
body: 'body',
|
|
5076
|
+
};
|
|
5077
|
+
}
|
|
5078
|
+
|
|
5079
|
+
static types(): { [key: string]: any } {
|
|
5080
|
+
return {
|
|
5081
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
5082
|
+
statusCode: 'number',
|
|
5083
|
+
body: DeleteQualityEntityResponseBody,
|
|
5084
|
+
};
|
|
5085
|
+
}
|
|
5086
|
+
|
|
5087
|
+
constructor(map?: { [key: string]: any }) {
|
|
5088
|
+
super(map);
|
|
5089
|
+
}
|
|
5090
|
+
}
|
|
5091
|
+
|
|
5092
|
+
export class DeleteQualityFollowerRequest extends $tea.Model {
|
|
5093
|
+
followerId?: number;
|
|
5094
|
+
projectId?: number;
|
|
5095
|
+
projectName?: string;
|
|
5096
|
+
static names(): { [key: string]: string } {
|
|
5097
|
+
return {
|
|
5098
|
+
followerId: 'FollowerId',
|
|
5099
|
+
projectId: 'ProjectId',
|
|
5100
|
+
projectName: 'ProjectName',
|
|
5101
|
+
};
|
|
5102
|
+
}
|
|
5103
|
+
|
|
5104
|
+
static types(): { [key: string]: any } {
|
|
5105
|
+
return {
|
|
5106
|
+
followerId: 'number',
|
|
5107
|
+
projectId: 'number',
|
|
5108
|
+
projectName: 'string',
|
|
5109
|
+
};
|
|
5110
|
+
}
|
|
5111
|
+
|
|
5112
|
+
constructor(map?: { [key: string]: any }) {
|
|
5113
|
+
super(map);
|
|
5114
|
+
}
|
|
5115
|
+
}
|
|
5116
|
+
|
|
5117
|
+
export class DeleteQualityFollowerResponseBody extends $tea.Model {
|
|
4854
5118
|
data?: boolean;
|
|
4855
5119
|
errorCode?: string;
|
|
4856
5120
|
errorMessage?: string;
|
|
@@ -13623,9 +13887,13 @@ export class ListFileVersionsResponse extends $tea.Model {
|
|
|
13623
13887
|
}
|
|
13624
13888
|
|
|
13625
13889
|
export class ListFilesRequest extends $tea.Model {
|
|
13890
|
+
exactFileName?: string;
|
|
13626
13891
|
fileFolderPath?: string;
|
|
13892
|
+
fileIdIn?: string;
|
|
13627
13893
|
fileTypes?: string;
|
|
13628
13894
|
keyword?: string;
|
|
13895
|
+
needAbsoluteFolderPath?: boolean;
|
|
13896
|
+
needContent?: boolean;
|
|
13629
13897
|
nodeId?: number;
|
|
13630
13898
|
owner?: string;
|
|
13631
13899
|
pageNumber?: number;
|
|
@@ -13635,9 +13903,13 @@ export class ListFilesRequest extends $tea.Model {
|
|
|
13635
13903
|
useType?: string;
|
|
13636
13904
|
static names(): { [key: string]: string } {
|
|
13637
13905
|
return {
|
|
13906
|
+
exactFileName: 'ExactFileName',
|
|
13638
13907
|
fileFolderPath: 'FileFolderPath',
|
|
13908
|
+
fileIdIn: 'FileIdIn',
|
|
13639
13909
|
fileTypes: 'FileTypes',
|
|
13640
13910
|
keyword: 'Keyword',
|
|
13911
|
+
needAbsoluteFolderPath: 'NeedAbsoluteFolderPath',
|
|
13912
|
+
needContent: 'NeedContent',
|
|
13641
13913
|
nodeId: 'NodeId',
|
|
13642
13914
|
owner: 'Owner',
|
|
13643
13915
|
pageNumber: 'PageNumber',
|
|
@@ -13650,9 +13922,13 @@ export class ListFilesRequest extends $tea.Model {
|
|
|
13650
13922
|
|
|
13651
13923
|
static types(): { [key: string]: any } {
|
|
13652
13924
|
return {
|
|
13925
|
+
exactFileName: 'string',
|
|
13653
13926
|
fileFolderPath: 'string',
|
|
13927
|
+
fileIdIn: 'string',
|
|
13654
13928
|
fileTypes: 'string',
|
|
13655
13929
|
keyword: 'string',
|
|
13930
|
+
needAbsoluteFolderPath: 'boolean',
|
|
13931
|
+
needContent: 'boolean',
|
|
13656
13932
|
nodeId: 'number',
|
|
13657
13933
|
owner: 'string',
|
|
13658
13934
|
pageNumber: 'number',
|
|
@@ -14165,6 +14441,96 @@ export class ListInstancesResponse extends $tea.Model {
|
|
|
14165
14441
|
}
|
|
14166
14442
|
}
|
|
14167
14443
|
|
|
14444
|
+
export class ListLineageRequest extends $tea.Model {
|
|
14445
|
+
direction?: string;
|
|
14446
|
+
entityQualifiedName?: string;
|
|
14447
|
+
keyword?: string;
|
|
14448
|
+
nextToken?: string;
|
|
14449
|
+
pageSize?: number;
|
|
14450
|
+
static names(): { [key: string]: string } {
|
|
14451
|
+
return {
|
|
14452
|
+
direction: 'Direction',
|
|
14453
|
+
entityQualifiedName: 'EntityQualifiedName',
|
|
14454
|
+
keyword: 'Keyword',
|
|
14455
|
+
nextToken: 'NextToken',
|
|
14456
|
+
pageSize: 'PageSize',
|
|
14457
|
+
};
|
|
14458
|
+
}
|
|
14459
|
+
|
|
14460
|
+
static types(): { [key: string]: any } {
|
|
14461
|
+
return {
|
|
14462
|
+
direction: 'string',
|
|
14463
|
+
entityQualifiedName: 'string',
|
|
14464
|
+
keyword: 'string',
|
|
14465
|
+
nextToken: 'string',
|
|
14466
|
+
pageSize: 'number',
|
|
14467
|
+
};
|
|
14468
|
+
}
|
|
14469
|
+
|
|
14470
|
+
constructor(map?: { [key: string]: any }) {
|
|
14471
|
+
super(map);
|
|
14472
|
+
}
|
|
14473
|
+
}
|
|
14474
|
+
|
|
14475
|
+
export class ListLineageResponseBody extends $tea.Model {
|
|
14476
|
+
data?: ListLineageResponseBodyData;
|
|
14477
|
+
errorCode?: string;
|
|
14478
|
+
errorMessage?: string;
|
|
14479
|
+
httpStatusCode?: number;
|
|
14480
|
+
requestId?: string;
|
|
14481
|
+
success?: boolean;
|
|
14482
|
+
static names(): { [key: string]: string } {
|
|
14483
|
+
return {
|
|
14484
|
+
data: 'Data',
|
|
14485
|
+
errorCode: 'ErrorCode',
|
|
14486
|
+
errorMessage: 'ErrorMessage',
|
|
14487
|
+
httpStatusCode: 'HttpStatusCode',
|
|
14488
|
+
requestId: 'RequestId',
|
|
14489
|
+
success: 'Success',
|
|
14490
|
+
};
|
|
14491
|
+
}
|
|
14492
|
+
|
|
14493
|
+
static types(): { [key: string]: any } {
|
|
14494
|
+
return {
|
|
14495
|
+
data: ListLineageResponseBodyData,
|
|
14496
|
+
errorCode: 'string',
|
|
14497
|
+
errorMessage: 'string',
|
|
14498
|
+
httpStatusCode: 'number',
|
|
14499
|
+
requestId: 'string',
|
|
14500
|
+
success: 'boolean',
|
|
14501
|
+
};
|
|
14502
|
+
}
|
|
14503
|
+
|
|
14504
|
+
constructor(map?: { [key: string]: any }) {
|
|
14505
|
+
super(map);
|
|
14506
|
+
}
|
|
14507
|
+
}
|
|
14508
|
+
|
|
14509
|
+
export class ListLineageResponse extends $tea.Model {
|
|
14510
|
+
headers: { [key: string]: string };
|
|
14511
|
+
statusCode: number;
|
|
14512
|
+
body: ListLineageResponseBody;
|
|
14513
|
+
static names(): { [key: string]: string } {
|
|
14514
|
+
return {
|
|
14515
|
+
headers: 'headers',
|
|
14516
|
+
statusCode: 'statusCode',
|
|
14517
|
+
body: 'body',
|
|
14518
|
+
};
|
|
14519
|
+
}
|
|
14520
|
+
|
|
14521
|
+
static types(): { [key: string]: any } {
|
|
14522
|
+
return {
|
|
14523
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
14524
|
+
statusCode: 'number',
|
|
14525
|
+
body: ListLineageResponseBody,
|
|
14526
|
+
};
|
|
14527
|
+
}
|
|
14528
|
+
|
|
14529
|
+
constructor(map?: { [key: string]: any }) {
|
|
14530
|
+
super(map);
|
|
14531
|
+
}
|
|
14532
|
+
}
|
|
14533
|
+
|
|
14168
14534
|
export class ListManualDagInstancesRequest extends $tea.Model {
|
|
14169
14535
|
dagId?: string;
|
|
14170
14536
|
projectEnv?: string;
|
|
@@ -16939,6 +17305,103 @@ export class QueryPublicModelEngineResponse extends $tea.Model {
|
|
|
16939
17305
|
}
|
|
16940
17306
|
}
|
|
16941
17307
|
|
|
17308
|
+
export class RegisterLineageRelationRequest extends $tea.Model {
|
|
17309
|
+
lineageRelationRegisterVO?: LineageRelationRegisterVO;
|
|
17310
|
+
static names(): { [key: string]: string } {
|
|
17311
|
+
return {
|
|
17312
|
+
lineageRelationRegisterVO: 'LineageRelationRegisterVO',
|
|
17313
|
+
};
|
|
17314
|
+
}
|
|
17315
|
+
|
|
17316
|
+
static types(): { [key: string]: any } {
|
|
17317
|
+
return {
|
|
17318
|
+
lineageRelationRegisterVO: LineageRelationRegisterVO,
|
|
17319
|
+
};
|
|
17320
|
+
}
|
|
17321
|
+
|
|
17322
|
+
constructor(map?: { [key: string]: any }) {
|
|
17323
|
+
super(map);
|
|
17324
|
+
}
|
|
17325
|
+
}
|
|
17326
|
+
|
|
17327
|
+
export class RegisterLineageRelationShrinkRequest extends $tea.Model {
|
|
17328
|
+
lineageRelationRegisterVOShrink?: string;
|
|
17329
|
+
static names(): { [key: string]: string } {
|
|
17330
|
+
return {
|
|
17331
|
+
lineageRelationRegisterVOShrink: 'LineageRelationRegisterVO',
|
|
17332
|
+
};
|
|
17333
|
+
}
|
|
17334
|
+
|
|
17335
|
+
static types(): { [key: string]: any } {
|
|
17336
|
+
return {
|
|
17337
|
+
lineageRelationRegisterVOShrink: 'string',
|
|
17338
|
+
};
|
|
17339
|
+
}
|
|
17340
|
+
|
|
17341
|
+
constructor(map?: { [key: string]: any }) {
|
|
17342
|
+
super(map);
|
|
17343
|
+
}
|
|
17344
|
+
}
|
|
17345
|
+
|
|
17346
|
+
export class RegisterLineageRelationResponseBody extends $tea.Model {
|
|
17347
|
+
errorCode?: string;
|
|
17348
|
+
errorMessage?: string;
|
|
17349
|
+
httpStatusCode?: number;
|
|
17350
|
+
lineageRelation?: RegisterLineageRelationResponseBodyLineageRelation;
|
|
17351
|
+
requestId?: string;
|
|
17352
|
+
success?: boolean;
|
|
17353
|
+
static names(): { [key: string]: string } {
|
|
17354
|
+
return {
|
|
17355
|
+
errorCode: 'ErrorCode',
|
|
17356
|
+
errorMessage: 'ErrorMessage',
|
|
17357
|
+
httpStatusCode: 'HttpStatusCode',
|
|
17358
|
+
lineageRelation: 'LineageRelation',
|
|
17359
|
+
requestId: 'RequestId',
|
|
17360
|
+
success: 'Success',
|
|
17361
|
+
};
|
|
17362
|
+
}
|
|
17363
|
+
|
|
17364
|
+
static types(): { [key: string]: any } {
|
|
17365
|
+
return {
|
|
17366
|
+
errorCode: 'string',
|
|
17367
|
+
errorMessage: 'string',
|
|
17368
|
+
httpStatusCode: 'number',
|
|
17369
|
+
lineageRelation: RegisterLineageRelationResponseBodyLineageRelation,
|
|
17370
|
+
requestId: 'string',
|
|
17371
|
+
success: 'boolean',
|
|
17372
|
+
};
|
|
17373
|
+
}
|
|
17374
|
+
|
|
17375
|
+
constructor(map?: { [key: string]: any }) {
|
|
17376
|
+
super(map);
|
|
17377
|
+
}
|
|
17378
|
+
}
|
|
17379
|
+
|
|
17380
|
+
export class RegisterLineageRelationResponse extends $tea.Model {
|
|
17381
|
+
headers: { [key: string]: string };
|
|
17382
|
+
statusCode: number;
|
|
17383
|
+
body: RegisterLineageRelationResponseBody;
|
|
17384
|
+
static names(): { [key: string]: string } {
|
|
17385
|
+
return {
|
|
17386
|
+
headers: 'headers',
|
|
17387
|
+
statusCode: 'statusCode',
|
|
17388
|
+
body: 'body',
|
|
17389
|
+
};
|
|
17390
|
+
}
|
|
17391
|
+
|
|
17392
|
+
static types(): { [key: string]: any } {
|
|
17393
|
+
return {
|
|
17394
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
17395
|
+
statusCode: 'number',
|
|
17396
|
+
body: RegisterLineageRelationResponseBody,
|
|
17397
|
+
};
|
|
17398
|
+
}
|
|
17399
|
+
|
|
17400
|
+
constructor(map?: { [key: string]: any }) {
|
|
17401
|
+
super(map);
|
|
17402
|
+
}
|
|
17403
|
+
}
|
|
17404
|
+
|
|
16942
17405
|
export class RemoveProjectMemberFromRoleRequest extends $tea.Model {
|
|
16943
17406
|
projectId?: number;
|
|
16944
17407
|
roleCode?: string;
|
|
@@ -30308,6 +30771,7 @@ export class ListFileVersionsResponseBodyData extends $tea.Model {
|
|
|
30308
30771
|
}
|
|
30309
30772
|
|
|
30310
30773
|
export class ListFilesResponseBodyDataFiles extends $tea.Model {
|
|
30774
|
+
absoluteFolderPath?: string;
|
|
30311
30775
|
autoParsing?: boolean;
|
|
30312
30776
|
bizId?: number;
|
|
30313
30777
|
businessId?: number;
|
|
@@ -30331,6 +30795,7 @@ export class ListFilesResponseBodyDataFiles extends $tea.Model {
|
|
|
30331
30795
|
useType?: string;
|
|
30332
30796
|
static names(): { [key: string]: string } {
|
|
30333
30797
|
return {
|
|
30798
|
+
absoluteFolderPath: 'AbsoluteFolderPath',
|
|
30334
30799
|
autoParsing: 'AutoParsing',
|
|
30335
30800
|
bizId: 'BizId',
|
|
30336
30801
|
businessId: 'BusinessId',
|
|
@@ -30357,6 +30822,7 @@ export class ListFilesResponseBodyDataFiles extends $tea.Model {
|
|
|
30357
30822
|
|
|
30358
30823
|
static types(): { [key: string]: any } {
|
|
30359
30824
|
return {
|
|
30825
|
+
absoluteFolderPath: 'string',
|
|
30360
30826
|
autoParsing: 'boolean',
|
|
30361
30827
|
bizId: 'number',
|
|
30362
30828
|
businessId: 'number',
|
|
@@ -30779,6 +31245,81 @@ export class ListInstancesResponseBodyData extends $tea.Model {
|
|
|
30779
31245
|
}
|
|
30780
31246
|
}
|
|
30781
31247
|
|
|
31248
|
+
export class ListLineageResponseBodyDataDataEntityListRelationList extends $tea.Model {
|
|
31249
|
+
channel?: string;
|
|
31250
|
+
datasource?: string;
|
|
31251
|
+
guid?: string;
|
|
31252
|
+
type?: string;
|
|
31253
|
+
static names(): { [key: string]: string } {
|
|
31254
|
+
return {
|
|
31255
|
+
channel: 'Channel',
|
|
31256
|
+
datasource: 'Datasource',
|
|
31257
|
+
guid: 'Guid',
|
|
31258
|
+
type: 'Type',
|
|
31259
|
+
};
|
|
31260
|
+
}
|
|
31261
|
+
|
|
31262
|
+
static types(): { [key: string]: any } {
|
|
31263
|
+
return {
|
|
31264
|
+
channel: 'string',
|
|
31265
|
+
datasource: 'string',
|
|
31266
|
+
guid: 'string',
|
|
31267
|
+
type: 'string',
|
|
31268
|
+
};
|
|
31269
|
+
}
|
|
31270
|
+
|
|
31271
|
+
constructor(map?: { [key: string]: any }) {
|
|
31272
|
+
super(map);
|
|
31273
|
+
}
|
|
31274
|
+
}
|
|
31275
|
+
|
|
31276
|
+
export class ListLineageResponseBodyDataDataEntityList extends $tea.Model {
|
|
31277
|
+
createTimestamp?: number;
|
|
31278
|
+
entity?: Entity;
|
|
31279
|
+
relationList?: ListLineageResponseBodyDataDataEntityListRelationList[];
|
|
31280
|
+
static names(): { [key: string]: string } {
|
|
31281
|
+
return {
|
|
31282
|
+
createTimestamp: 'CreateTimestamp',
|
|
31283
|
+
entity: 'Entity',
|
|
31284
|
+
relationList: 'RelationList',
|
|
31285
|
+
};
|
|
31286
|
+
}
|
|
31287
|
+
|
|
31288
|
+
static types(): { [key: string]: any } {
|
|
31289
|
+
return {
|
|
31290
|
+
createTimestamp: 'number',
|
|
31291
|
+
entity: Entity,
|
|
31292
|
+
relationList: { 'type': 'array', 'itemType': ListLineageResponseBodyDataDataEntityListRelationList },
|
|
31293
|
+
};
|
|
31294
|
+
}
|
|
31295
|
+
|
|
31296
|
+
constructor(map?: { [key: string]: any }) {
|
|
31297
|
+
super(map);
|
|
31298
|
+
}
|
|
31299
|
+
}
|
|
31300
|
+
|
|
31301
|
+
export class ListLineageResponseBodyData extends $tea.Model {
|
|
31302
|
+
dataEntityList?: ListLineageResponseBodyDataDataEntityList[];
|
|
31303
|
+
nextToken?: string;
|
|
31304
|
+
static names(): { [key: string]: string } {
|
|
31305
|
+
return {
|
|
31306
|
+
dataEntityList: 'DataEntityList',
|
|
31307
|
+
nextToken: 'NextToken',
|
|
31308
|
+
};
|
|
31309
|
+
}
|
|
31310
|
+
|
|
31311
|
+
static types(): { [key: string]: any } {
|
|
31312
|
+
return {
|
|
31313
|
+
dataEntityList: { 'type': 'array', 'itemType': ListLineageResponseBodyDataDataEntityList },
|
|
31314
|
+
nextToken: 'string',
|
|
31315
|
+
};
|
|
31316
|
+
}
|
|
31317
|
+
|
|
31318
|
+
constructor(map?: { [key: string]: any }) {
|
|
31319
|
+
super(map);
|
|
31320
|
+
}
|
|
31321
|
+
}
|
|
31322
|
+
|
|
30782
31323
|
export class ListManualDagInstancesResponseBodyInstances extends $tea.Model {
|
|
30783
31324
|
beginRunningTime?: number;
|
|
30784
31325
|
beginWaitResTime?: number;
|
|
@@ -32951,6 +33492,31 @@ export class QueryDISyncTaskConfigProcessResultResponseBodyData extends $tea.Mod
|
|
|
32951
33492
|
}
|
|
32952
33493
|
}
|
|
32953
33494
|
|
|
33495
|
+
export class RegisterLineageRelationResponseBodyLineageRelation extends $tea.Model {
|
|
33496
|
+
destEntityQualifiedName?: string;
|
|
33497
|
+
relationshipGuid?: string;
|
|
33498
|
+
srcEntityQualifiedName?: string;
|
|
33499
|
+
static names(): { [key: string]: string } {
|
|
33500
|
+
return {
|
|
33501
|
+
destEntityQualifiedName: 'DestEntityQualifiedName',
|
|
33502
|
+
relationshipGuid: 'RelationshipGuid',
|
|
33503
|
+
srcEntityQualifiedName: 'SrcEntityQualifiedName',
|
|
33504
|
+
};
|
|
33505
|
+
}
|
|
33506
|
+
|
|
33507
|
+
static types(): { [key: string]: any } {
|
|
33508
|
+
return {
|
|
33509
|
+
destEntityQualifiedName: 'string',
|
|
33510
|
+
relationshipGuid: 'string',
|
|
33511
|
+
srcEntityQualifiedName: 'string',
|
|
33512
|
+
};
|
|
33513
|
+
}
|
|
33514
|
+
|
|
33515
|
+
constructor(map?: { [key: string]: any }) {
|
|
33516
|
+
super(map);
|
|
33517
|
+
}
|
|
33518
|
+
}
|
|
33519
|
+
|
|
32954
33520
|
export class SearchMetaTablesResponseBodyDataDataEntityList extends $tea.Model {
|
|
32955
33521
|
clusterId?: string;
|
|
32956
33522
|
databaseName?: string;
|
|
@@ -34796,6 +35362,10 @@ export default class Client extends OpenApi {
|
|
|
34796
35362
|
body["Content"] = request.content;
|
|
34797
35363
|
}
|
|
34798
35364
|
|
|
35365
|
+
if (!Util.isUnset(request.createFolderIfNotExists)) {
|
|
35366
|
+
body["CreateFolderIfNotExists"] = request.createFolderIfNotExists;
|
|
35367
|
+
}
|
|
35368
|
+
|
|
34799
35369
|
if (!Util.isUnset(request.cronExpress)) {
|
|
34800
35370
|
body["CronExpress"] = request.cronExpress;
|
|
34801
35371
|
}
|
|
@@ -35731,6 +36301,79 @@ export default class Client extends OpenApi {
|
|
|
35731
36301
|
return await this.createRemindWithOptions(request, runtime);
|
|
35732
36302
|
}
|
|
35733
36303
|
|
|
36304
|
+
async createResourceFileWithOptions(request: CreateResourceFileRequest, runtime: $Util.RuntimeOptions): Promise<CreateResourceFileResponse> {
|
|
36305
|
+
Util.validateModel(request);
|
|
36306
|
+
let body : {[key: string ]: any} = { };
|
|
36307
|
+
if (!Util.isUnset(request.content)) {
|
|
36308
|
+
body["Content"] = request.content;
|
|
36309
|
+
}
|
|
36310
|
+
|
|
36311
|
+
if (!Util.isUnset(request.fileDescription)) {
|
|
36312
|
+
body["FileDescription"] = request.fileDescription;
|
|
36313
|
+
}
|
|
36314
|
+
|
|
36315
|
+
if (!Util.isUnset(request.fileFolderPath)) {
|
|
36316
|
+
body["FileFolderPath"] = request.fileFolderPath;
|
|
36317
|
+
}
|
|
36318
|
+
|
|
36319
|
+
if (!Util.isUnset(request.fileName)) {
|
|
36320
|
+
body["FileName"] = request.fileName;
|
|
36321
|
+
}
|
|
36322
|
+
|
|
36323
|
+
if (!Util.isUnset(request.fileType)) {
|
|
36324
|
+
body["FileType"] = request.fileType;
|
|
36325
|
+
}
|
|
36326
|
+
|
|
36327
|
+
if (!Util.isUnset(request.originResourceName)) {
|
|
36328
|
+
body["OriginResourceName"] = request.originResourceName;
|
|
36329
|
+
}
|
|
36330
|
+
|
|
36331
|
+
if (!Util.isUnset(request.owner)) {
|
|
36332
|
+
body["Owner"] = request.owner;
|
|
36333
|
+
}
|
|
36334
|
+
|
|
36335
|
+
if (!Util.isUnset(request.projectId)) {
|
|
36336
|
+
body["ProjectId"] = request.projectId;
|
|
36337
|
+
}
|
|
36338
|
+
|
|
36339
|
+
if (!Util.isUnset(request.registerToCalcEngine)) {
|
|
36340
|
+
body["RegisterToCalcEngine"] = request.registerToCalcEngine;
|
|
36341
|
+
}
|
|
36342
|
+
|
|
36343
|
+
if (!Util.isUnset(request.resourceFile)) {
|
|
36344
|
+
body["ResourceFile"] = request.resourceFile;
|
|
36345
|
+
}
|
|
36346
|
+
|
|
36347
|
+
if (!Util.isUnset(request.storageURL)) {
|
|
36348
|
+
body["StorageURL"] = request.storageURL;
|
|
36349
|
+
}
|
|
36350
|
+
|
|
36351
|
+
if (!Util.isUnset(request.uploadMode)) {
|
|
36352
|
+
body["UploadMode"] = request.uploadMode;
|
|
36353
|
+
}
|
|
36354
|
+
|
|
36355
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
36356
|
+
body: OpenApiUtil.parseToMap(body),
|
|
36357
|
+
});
|
|
36358
|
+
let params = new $OpenApi.Params({
|
|
36359
|
+
action: "CreateResourceFile",
|
|
36360
|
+
version: "2020-05-18",
|
|
36361
|
+
protocol: "HTTPS",
|
|
36362
|
+
pathname: "/",
|
|
36363
|
+
method: "POST",
|
|
36364
|
+
authType: "AK",
|
|
36365
|
+
style: "RPC",
|
|
36366
|
+
reqBodyType: "formData",
|
|
36367
|
+
bodyType: "json",
|
|
36368
|
+
});
|
|
36369
|
+
return $tea.cast<CreateResourceFileResponse>(await this.callApi(params, req, runtime), new CreateResourceFileResponse({}));
|
|
36370
|
+
}
|
|
36371
|
+
|
|
36372
|
+
async createResourceFile(request: CreateResourceFileRequest): Promise<CreateResourceFileResponse> {
|
|
36373
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
36374
|
+
return await this.createResourceFileWithOptions(request, runtime);
|
|
36375
|
+
}
|
|
36376
|
+
|
|
35734
36377
|
async createTableWithOptions(request: CreateTableRequest, runtime: $Util.RuntimeOptions): Promise<CreateTableResponse> {
|
|
35735
36378
|
Util.validateModel(request);
|
|
35736
36379
|
let query = { };
|
|
@@ -35931,6 +36574,10 @@ export default class Client extends OpenApi {
|
|
|
35931
36574
|
body["CmdDescription"] = request.cmdDescription;
|
|
35932
36575
|
}
|
|
35933
36576
|
|
|
36577
|
+
if (!Util.isUnset(request.createFolderIfNotExists)) {
|
|
36578
|
+
body["CreateFolderIfNotExists"] = request.createFolderIfNotExists;
|
|
36579
|
+
}
|
|
36580
|
+
|
|
35934
36581
|
if (!Util.isUnset(request.example)) {
|
|
35935
36582
|
body["Example"] = request.example;
|
|
35936
36583
|
}
|
|
@@ -36358,6 +37005,43 @@ export default class Client extends OpenApi {
|
|
|
36358
37005
|
return await this.deleteFromMetaCategoryWithOptions(request, runtime);
|
|
36359
37006
|
}
|
|
36360
37007
|
|
|
37008
|
+
async deleteLineageRelationWithOptions(request: DeleteLineageRelationRequest, runtime: $Util.RuntimeOptions): Promise<DeleteLineageRelationResponse> {
|
|
37009
|
+
Util.validateModel(request);
|
|
37010
|
+
let query = { };
|
|
37011
|
+
if (!Util.isUnset(request.destEntityQualifiedName)) {
|
|
37012
|
+
query["DestEntityQualifiedName"] = request.destEntityQualifiedName;
|
|
37013
|
+
}
|
|
37014
|
+
|
|
37015
|
+
if (!Util.isUnset(request.relationshipGuid)) {
|
|
37016
|
+
query["RelationshipGuid"] = request.relationshipGuid;
|
|
37017
|
+
}
|
|
37018
|
+
|
|
37019
|
+
if (!Util.isUnset(request.srcEntityQualifiedName)) {
|
|
37020
|
+
query["SrcEntityQualifiedName"] = request.srcEntityQualifiedName;
|
|
37021
|
+
}
|
|
37022
|
+
|
|
37023
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
37024
|
+
query: OpenApiUtil.query(query),
|
|
37025
|
+
});
|
|
37026
|
+
let params = new $OpenApi.Params({
|
|
37027
|
+
action: "DeleteLineageRelation",
|
|
37028
|
+
version: "2020-05-18",
|
|
37029
|
+
protocol: "HTTPS",
|
|
37030
|
+
pathname: "/",
|
|
37031
|
+
method: "POST",
|
|
37032
|
+
authType: "AK",
|
|
37033
|
+
style: "RPC",
|
|
37034
|
+
reqBodyType: "formData",
|
|
37035
|
+
bodyType: "json",
|
|
37036
|
+
});
|
|
37037
|
+
return $tea.cast<DeleteLineageRelationResponse>(await this.callApi(params, req, runtime), new DeleteLineageRelationResponse({}));
|
|
37038
|
+
}
|
|
37039
|
+
|
|
37040
|
+
async deleteLineageRelation(request: DeleteLineageRelationRequest): Promise<DeleteLineageRelationResponse> {
|
|
37041
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
37042
|
+
return await this.deleteLineageRelationWithOptions(request, runtime);
|
|
37043
|
+
}
|
|
37044
|
+
|
|
36361
37045
|
async deleteMetaCategoryWithOptions(request: DeleteMetaCategoryRequest, runtime: $Util.RuntimeOptions): Promise<DeleteMetaCategoryResponse> {
|
|
36362
37046
|
Util.validateModel(request);
|
|
36363
37047
|
let query = OpenApiUtil.query(Util.toMap(request));
|
|
@@ -40901,10 +41585,18 @@ export default class Client extends OpenApi {
|
|
|
40901
41585
|
async listFilesWithOptions(request: ListFilesRequest, runtime: $Util.RuntimeOptions): Promise<ListFilesResponse> {
|
|
40902
41586
|
Util.validateModel(request);
|
|
40903
41587
|
let body : {[key: string ]: any} = { };
|
|
41588
|
+
if (!Util.isUnset(request.exactFileName)) {
|
|
41589
|
+
body["ExactFileName"] = request.exactFileName;
|
|
41590
|
+
}
|
|
41591
|
+
|
|
40904
41592
|
if (!Util.isUnset(request.fileFolderPath)) {
|
|
40905
41593
|
body["FileFolderPath"] = request.fileFolderPath;
|
|
40906
41594
|
}
|
|
40907
41595
|
|
|
41596
|
+
if (!Util.isUnset(request.fileIdIn)) {
|
|
41597
|
+
body["FileIdIn"] = request.fileIdIn;
|
|
41598
|
+
}
|
|
41599
|
+
|
|
40908
41600
|
if (!Util.isUnset(request.fileTypes)) {
|
|
40909
41601
|
body["FileTypes"] = request.fileTypes;
|
|
40910
41602
|
}
|
|
@@ -40913,6 +41605,14 @@ export default class Client extends OpenApi {
|
|
|
40913
41605
|
body["Keyword"] = request.keyword;
|
|
40914
41606
|
}
|
|
40915
41607
|
|
|
41608
|
+
if (!Util.isUnset(request.needAbsoluteFolderPath)) {
|
|
41609
|
+
body["NeedAbsoluteFolderPath"] = request.needAbsoluteFolderPath;
|
|
41610
|
+
}
|
|
41611
|
+
|
|
41612
|
+
if (!Util.isUnset(request.needContent)) {
|
|
41613
|
+
body["NeedContent"] = request.needContent;
|
|
41614
|
+
}
|
|
41615
|
+
|
|
40916
41616
|
if (!Util.isUnset(request.nodeId)) {
|
|
40917
41617
|
body["NodeId"] = request.nodeId;
|
|
40918
41618
|
}
|
|
@@ -41212,6 +41912,51 @@ export default class Client extends OpenApi {
|
|
|
41212
41912
|
return await this.listInstancesWithOptions(request, runtime);
|
|
41213
41913
|
}
|
|
41214
41914
|
|
|
41915
|
+
async listLineageWithOptions(request: ListLineageRequest, runtime: $Util.RuntimeOptions): Promise<ListLineageResponse> {
|
|
41916
|
+
Util.validateModel(request);
|
|
41917
|
+
let query = { };
|
|
41918
|
+
if (!Util.isUnset(request.direction)) {
|
|
41919
|
+
query["Direction"] = request.direction;
|
|
41920
|
+
}
|
|
41921
|
+
|
|
41922
|
+
if (!Util.isUnset(request.entityQualifiedName)) {
|
|
41923
|
+
query["EntityQualifiedName"] = request.entityQualifiedName;
|
|
41924
|
+
}
|
|
41925
|
+
|
|
41926
|
+
if (!Util.isUnset(request.keyword)) {
|
|
41927
|
+
query["Keyword"] = request.keyword;
|
|
41928
|
+
}
|
|
41929
|
+
|
|
41930
|
+
if (!Util.isUnset(request.nextToken)) {
|
|
41931
|
+
query["NextToken"] = request.nextToken;
|
|
41932
|
+
}
|
|
41933
|
+
|
|
41934
|
+
if (!Util.isUnset(request.pageSize)) {
|
|
41935
|
+
query["PageSize"] = request.pageSize;
|
|
41936
|
+
}
|
|
41937
|
+
|
|
41938
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
41939
|
+
query: OpenApiUtil.query(query),
|
|
41940
|
+
});
|
|
41941
|
+
let params = new $OpenApi.Params({
|
|
41942
|
+
action: "ListLineage",
|
|
41943
|
+
version: "2020-05-18",
|
|
41944
|
+
protocol: "HTTPS",
|
|
41945
|
+
pathname: "/",
|
|
41946
|
+
method: "POST",
|
|
41947
|
+
authType: "AK",
|
|
41948
|
+
style: "RPC",
|
|
41949
|
+
reqBodyType: "formData",
|
|
41950
|
+
bodyType: "json",
|
|
41951
|
+
});
|
|
41952
|
+
return $tea.cast<ListLineageResponse>(await this.callApi(params, req, runtime), new ListLineageResponse({}));
|
|
41953
|
+
}
|
|
41954
|
+
|
|
41955
|
+
async listLineage(request: ListLineageRequest): Promise<ListLineageResponse> {
|
|
41956
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
41957
|
+
return await this.listLineageWithOptions(request, runtime);
|
|
41958
|
+
}
|
|
41959
|
+
|
|
41215
41960
|
async listManualDagInstancesWithOptions(request: ListManualDagInstancesRequest, runtime: $Util.RuntimeOptions): Promise<ListManualDagInstancesResponse> {
|
|
41216
41961
|
Util.validateModel(request);
|
|
41217
41962
|
let body : {[key: string ]: any} = { };
|
|
@@ -42651,6 +43396,41 @@ export default class Client extends OpenApi {
|
|
|
42651
43396
|
return await this.queryPublicModelEngineWithOptions(request, runtime);
|
|
42652
43397
|
}
|
|
42653
43398
|
|
|
43399
|
+
async registerLineageRelationWithOptions(tmpReq: RegisterLineageRelationRequest, runtime: $Util.RuntimeOptions): Promise<RegisterLineageRelationResponse> {
|
|
43400
|
+
Util.validateModel(tmpReq);
|
|
43401
|
+
let request = new RegisterLineageRelationShrinkRequest({ });
|
|
43402
|
+
OpenApiUtil.convert(tmpReq, request);
|
|
43403
|
+
if (!Util.isUnset(tmpReq.lineageRelationRegisterVO)) {
|
|
43404
|
+
request.lineageRelationRegisterVOShrink = OpenApiUtil.arrayToStringWithSpecifiedStyle(tmpReq.lineageRelationRegisterVO, "LineageRelationRegisterVO", "json");
|
|
43405
|
+
}
|
|
43406
|
+
|
|
43407
|
+
let body : {[key: string ]: any} = { };
|
|
43408
|
+
if (!Util.isUnset(request.lineageRelationRegisterVOShrink)) {
|
|
43409
|
+
body["LineageRelationRegisterVO"] = request.lineageRelationRegisterVOShrink;
|
|
43410
|
+
}
|
|
43411
|
+
|
|
43412
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
43413
|
+
body: OpenApiUtil.parseToMap(body),
|
|
43414
|
+
});
|
|
43415
|
+
let params = new $OpenApi.Params({
|
|
43416
|
+
action: "RegisterLineageRelation",
|
|
43417
|
+
version: "2020-05-18",
|
|
43418
|
+
protocol: "HTTPS",
|
|
43419
|
+
pathname: "/",
|
|
43420
|
+
method: "POST",
|
|
43421
|
+
authType: "AK",
|
|
43422
|
+
style: "RPC",
|
|
43423
|
+
reqBodyType: "formData",
|
|
43424
|
+
bodyType: "json",
|
|
43425
|
+
});
|
|
43426
|
+
return $tea.cast<RegisterLineageRelationResponse>(await this.callApi(params, req, runtime), new RegisterLineageRelationResponse({}));
|
|
43427
|
+
}
|
|
43428
|
+
|
|
43429
|
+
async registerLineageRelation(request: RegisterLineageRelationRequest): Promise<RegisterLineageRelationResponse> {
|
|
43430
|
+
let runtime = new $Util.RuntimeOptions({ });
|
|
43431
|
+
return await this.registerLineageRelationWithOptions(request, runtime);
|
|
43432
|
+
}
|
|
43433
|
+
|
|
42654
43434
|
async removeProjectMemberFromRoleWithOptions(request: RemoveProjectMemberFromRoleRequest, runtime: $Util.RuntimeOptions): Promise<RemoveProjectMemberFromRoleResponse> {
|
|
42655
43435
|
Util.validateModel(request);
|
|
42656
43436
|
let query = { };
|