@alicloud/dataworks-public20200518 4.4.4 → 4.4.6
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 +15 -9
- package/dist/client.js +71 -17
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +100 -26
package/package.json
CHANGED
package/src/client.ts
CHANGED
|
@@ -2708,6 +2708,7 @@ export class CreateQualityEntityRequest extends $tea.Model {
|
|
|
2708
2708
|
entityLevel?: number;
|
|
2709
2709
|
envType?: string;
|
|
2710
2710
|
matchExpression?: string;
|
|
2711
|
+
projectId?: number;
|
|
2711
2712
|
projectName?: string;
|
|
2712
2713
|
tableName?: string;
|
|
2713
2714
|
static names(): { [key: string]: string } {
|
|
@@ -2715,6 +2716,7 @@ export class CreateQualityEntityRequest extends $tea.Model {
|
|
|
2715
2716
|
entityLevel: 'EntityLevel',
|
|
2716
2717
|
envType: 'EnvType',
|
|
2717
2718
|
matchExpression: 'MatchExpression',
|
|
2719
|
+
projectId: 'ProjectId',
|
|
2718
2720
|
projectName: 'ProjectName',
|
|
2719
2721
|
tableName: 'TableName',
|
|
2720
2722
|
};
|
|
@@ -2725,6 +2727,7 @@ export class CreateQualityEntityRequest extends $tea.Model {
|
|
|
2725
2727
|
entityLevel: 'number',
|
|
2726
2728
|
envType: 'string',
|
|
2727
2729
|
matchExpression: 'string',
|
|
2730
|
+
projectId: 'number',
|
|
2728
2731
|
projectName: 'string',
|
|
2729
2732
|
tableName: 'string',
|
|
2730
2733
|
};
|
|
@@ -2798,12 +2801,14 @@ export class CreateQualityFollowerRequest extends $tea.Model {
|
|
|
2798
2801
|
alarmMode?: number;
|
|
2799
2802
|
entityId?: number;
|
|
2800
2803
|
follower?: string;
|
|
2804
|
+
projectId?: number;
|
|
2801
2805
|
projectName?: string;
|
|
2802
2806
|
static names(): { [key: string]: string } {
|
|
2803
2807
|
return {
|
|
2804
2808
|
alarmMode: 'AlarmMode',
|
|
2805
2809
|
entityId: 'EntityId',
|
|
2806
2810
|
follower: 'Follower',
|
|
2811
|
+
projectId: 'ProjectId',
|
|
2807
2812
|
projectName: 'ProjectName',
|
|
2808
2813
|
};
|
|
2809
2814
|
}
|
|
@@ -2813,6 +2818,7 @@ export class CreateQualityFollowerRequest extends $tea.Model {
|
|
|
2813
2818
|
alarmMode: 'number',
|
|
2814
2819
|
entityId: 'number',
|
|
2815
2820
|
follower: 'string',
|
|
2821
|
+
projectId: 'number',
|
|
2816
2822
|
projectName: 'string',
|
|
2817
2823
|
};
|
|
2818
2824
|
}
|
|
@@ -2990,6 +2996,7 @@ export class CreateQualityRuleRequest extends $tea.Model {
|
|
|
2990
2996
|
methodName?: string;
|
|
2991
2997
|
operator?: string;
|
|
2992
2998
|
predictType?: number;
|
|
2999
|
+
projectId?: number;
|
|
2993
3000
|
projectName?: string;
|
|
2994
3001
|
property?: string;
|
|
2995
3002
|
propertyType?: string;
|
|
@@ -3010,6 +3017,7 @@ export class CreateQualityRuleRequest extends $tea.Model {
|
|
|
3010
3017
|
methodName: 'MethodName',
|
|
3011
3018
|
operator: 'Operator',
|
|
3012
3019
|
predictType: 'PredictType',
|
|
3020
|
+
projectId: 'ProjectId',
|
|
3013
3021
|
projectName: 'ProjectName',
|
|
3014
3022
|
property: 'Property',
|
|
3015
3023
|
propertyType: 'PropertyType',
|
|
@@ -3033,6 +3041,7 @@ export class CreateQualityRuleRequest extends $tea.Model {
|
|
|
3033
3041
|
methodName: 'string',
|
|
3034
3042
|
operator: 'string',
|
|
3035
3043
|
predictType: 'number',
|
|
3044
|
+
projectId: 'number',
|
|
3036
3045
|
projectName: 'string',
|
|
3037
3046
|
property: 'string',
|
|
3038
3047
|
propertyType: 'string',
|
|
@@ -4738,11 +4747,13 @@ export class DeleteProjectMemberResponse extends $tea.Model {
|
|
|
4738
4747
|
export class DeleteQualityEntityRequest extends $tea.Model {
|
|
4739
4748
|
entityId?: number;
|
|
4740
4749
|
envType?: string;
|
|
4750
|
+
projectId?: number;
|
|
4741
4751
|
projectName?: string;
|
|
4742
4752
|
static names(): { [key: string]: string } {
|
|
4743
4753
|
return {
|
|
4744
4754
|
entityId: 'EntityId',
|
|
4745
4755
|
envType: 'EnvType',
|
|
4756
|
+
projectId: 'ProjectId',
|
|
4746
4757
|
projectName: 'ProjectName',
|
|
4747
4758
|
};
|
|
4748
4759
|
}
|
|
@@ -4751,6 +4762,7 @@ export class DeleteQualityEntityRequest extends $tea.Model {
|
|
|
4751
4762
|
return {
|
|
4752
4763
|
entityId: 'number',
|
|
4753
4764
|
envType: 'string',
|
|
4765
|
+
projectId: 'number',
|
|
4754
4766
|
projectName: 'string',
|
|
4755
4767
|
};
|
|
4756
4768
|
}
|
|
@@ -4821,10 +4833,12 @@ export class DeleteQualityEntityResponse extends $tea.Model {
|
|
|
4821
4833
|
|
|
4822
4834
|
export class DeleteQualityFollowerRequest extends $tea.Model {
|
|
4823
4835
|
followerId?: number;
|
|
4836
|
+
projectId?: number;
|
|
4824
4837
|
projectName?: string;
|
|
4825
4838
|
static names(): { [key: string]: string } {
|
|
4826
4839
|
return {
|
|
4827
4840
|
followerId: 'FollowerId',
|
|
4841
|
+
projectId: 'ProjectId',
|
|
4828
4842
|
projectName: 'ProjectName',
|
|
4829
4843
|
};
|
|
4830
4844
|
}
|
|
@@ -4832,6 +4846,7 @@ export class DeleteQualityFollowerRequest extends $tea.Model {
|
|
|
4832
4846
|
static types(): { [key: string]: any } {
|
|
4833
4847
|
return {
|
|
4834
4848
|
followerId: 'number',
|
|
4849
|
+
projectId: 'number',
|
|
4835
4850
|
projectName: 'string',
|
|
4836
4851
|
};
|
|
4837
4852
|
}
|
|
@@ -5000,10 +5015,12 @@ export class DeleteQualityRelativeNodeResponse extends $tea.Model {
|
|
|
5000
5015
|
}
|
|
5001
5016
|
|
|
5002
5017
|
export class DeleteQualityRuleRequest extends $tea.Model {
|
|
5018
|
+
projectId?: number;
|
|
5003
5019
|
projectName?: string;
|
|
5004
5020
|
ruleId?: number;
|
|
5005
5021
|
static names(): { [key: string]: string } {
|
|
5006
5022
|
return {
|
|
5023
|
+
projectId: 'ProjectId',
|
|
5007
5024
|
projectName: 'ProjectName',
|
|
5008
5025
|
ruleId: 'RuleId',
|
|
5009
5026
|
};
|
|
@@ -5011,6 +5028,7 @@ export class DeleteQualityRuleRequest extends $tea.Model {
|
|
|
5011
5028
|
|
|
5012
5029
|
static types(): { [key: string]: any } {
|
|
5013
5030
|
return {
|
|
5031
|
+
projectId: 'number',
|
|
5014
5032
|
projectName: 'string',
|
|
5015
5033
|
ruleId: 'number',
|
|
5016
5034
|
};
|
|
@@ -10901,12 +10919,14 @@ export class GetProjectDetailResponse extends $tea.Model {
|
|
|
10901
10919
|
export class GetQualityEntityRequest extends $tea.Model {
|
|
10902
10920
|
envType?: string;
|
|
10903
10921
|
matchExpression?: string;
|
|
10922
|
+
projectId?: number;
|
|
10904
10923
|
projectName?: string;
|
|
10905
10924
|
tableName?: string;
|
|
10906
10925
|
static names(): { [key: string]: string } {
|
|
10907
10926
|
return {
|
|
10908
10927
|
envType: 'EnvType',
|
|
10909
10928
|
matchExpression: 'MatchExpression',
|
|
10929
|
+
projectId: 'ProjectId',
|
|
10910
10930
|
projectName: 'ProjectName',
|
|
10911
10931
|
tableName: 'TableName',
|
|
10912
10932
|
};
|
|
@@ -10916,6 +10936,7 @@ export class GetQualityEntityRequest extends $tea.Model {
|
|
|
10916
10936
|
return {
|
|
10917
10937
|
envType: 'string',
|
|
10918
10938
|
matchExpression: 'string',
|
|
10939
|
+
projectId: 'number',
|
|
10919
10940
|
projectName: 'string',
|
|
10920
10941
|
tableName: 'string',
|
|
10921
10942
|
};
|
|
@@ -10987,10 +11008,12 @@ export class GetQualityEntityResponse extends $tea.Model {
|
|
|
10987
11008
|
|
|
10988
11009
|
export class GetQualityFollowerRequest extends $tea.Model {
|
|
10989
11010
|
entityId?: number;
|
|
11011
|
+
projectId?: number;
|
|
10990
11012
|
projectName?: string;
|
|
10991
11013
|
static names(): { [key: string]: string } {
|
|
10992
11014
|
return {
|
|
10993
11015
|
entityId: 'EntityId',
|
|
11016
|
+
projectId: 'ProjectId',
|
|
10994
11017
|
projectName: 'ProjectName',
|
|
10995
11018
|
};
|
|
10996
11019
|
}
|
|
@@ -10998,6 +11021,7 @@ export class GetQualityFollowerRequest extends $tea.Model {
|
|
|
10998
11021
|
static types(): { [key: string]: any } {
|
|
10999
11022
|
return {
|
|
11000
11023
|
entityId: 'number',
|
|
11024
|
+
projectId: 'number',
|
|
11001
11025
|
projectName: 'string',
|
|
11002
11026
|
};
|
|
11003
11027
|
}
|
|
@@ -11067,10 +11091,12 @@ export class GetQualityFollowerResponse extends $tea.Model {
|
|
|
11067
11091
|
}
|
|
11068
11092
|
|
|
11069
11093
|
export class GetQualityRuleRequest extends $tea.Model {
|
|
11094
|
+
projectId?: number;
|
|
11070
11095
|
projectName?: string;
|
|
11071
11096
|
ruleId?: number;
|
|
11072
11097
|
static names(): { [key: string]: string } {
|
|
11073
11098
|
return {
|
|
11099
|
+
projectId: 'ProjectId',
|
|
11074
11100
|
projectName: 'ProjectName',
|
|
11075
11101
|
ruleId: 'RuleId',
|
|
11076
11102
|
};
|
|
@@ -11078,6 +11104,7 @@ export class GetQualityRuleRequest extends $tea.Model {
|
|
|
11078
11104
|
|
|
11079
11105
|
static types(): { [key: string]: any } {
|
|
11080
11106
|
return {
|
|
11107
|
+
projectId: 'number',
|
|
11081
11108
|
projectName: 'string',
|
|
11082
11109
|
ruleId: 'number',
|
|
11083
11110
|
};
|
|
@@ -15482,6 +15509,7 @@ export class ListQualityResultsByEntityRequest extends $tea.Model {
|
|
|
15482
15509
|
entityId?: number;
|
|
15483
15510
|
pageNumber?: number;
|
|
15484
15511
|
pageSize?: number;
|
|
15512
|
+
projectId?: number;
|
|
15485
15513
|
projectName?: string;
|
|
15486
15514
|
startDate?: string;
|
|
15487
15515
|
static names(): { [key: string]: string } {
|
|
@@ -15490,6 +15518,7 @@ export class ListQualityResultsByEntityRequest extends $tea.Model {
|
|
|
15490
15518
|
entityId: 'EntityId',
|
|
15491
15519
|
pageNumber: 'PageNumber',
|
|
15492
15520
|
pageSize: 'PageSize',
|
|
15521
|
+
projectId: 'ProjectId',
|
|
15493
15522
|
projectName: 'ProjectName',
|
|
15494
15523
|
startDate: 'StartDate',
|
|
15495
15524
|
};
|
|
@@ -15501,6 +15530,7 @@ export class ListQualityResultsByEntityRequest extends $tea.Model {
|
|
|
15501
15530
|
entityId: 'number',
|
|
15502
15531
|
pageNumber: 'number',
|
|
15503
15532
|
pageSize: 'number',
|
|
15533
|
+
projectId: 'number',
|
|
15504
15534
|
projectName: 'string',
|
|
15505
15535
|
startDate: 'string',
|
|
15506
15536
|
};
|
|
@@ -15574,6 +15604,7 @@ export class ListQualityResultsByRuleRequest extends $tea.Model {
|
|
|
15574
15604
|
endDate?: string;
|
|
15575
15605
|
pageNumber?: number;
|
|
15576
15606
|
pageSize?: number;
|
|
15607
|
+
projectId?: number;
|
|
15577
15608
|
projectName?: string;
|
|
15578
15609
|
ruleId?: number;
|
|
15579
15610
|
startDate?: string;
|
|
@@ -15582,6 +15613,7 @@ export class ListQualityResultsByRuleRequest extends $tea.Model {
|
|
|
15582
15613
|
endDate: 'EndDate',
|
|
15583
15614
|
pageNumber: 'PageNumber',
|
|
15584
15615
|
pageSize: 'PageSize',
|
|
15616
|
+
projectId: 'ProjectId',
|
|
15585
15617
|
projectName: 'ProjectName',
|
|
15586
15618
|
ruleId: 'RuleId',
|
|
15587
15619
|
startDate: 'StartDate',
|
|
@@ -15593,6 +15625,7 @@ export class ListQualityResultsByRuleRequest extends $tea.Model {
|
|
|
15593
15625
|
endDate: 'string',
|
|
15594
15626
|
pageNumber: 'number',
|
|
15595
15627
|
pageSize: 'number',
|
|
15628
|
+
projectId: 'number',
|
|
15596
15629
|
projectName: 'string',
|
|
15597
15630
|
ruleId: 'number',
|
|
15598
15631
|
startDate: 'string',
|
|
@@ -15667,12 +15700,14 @@ export class ListQualityRulesRequest extends $tea.Model {
|
|
|
15667
15700
|
entityId?: number;
|
|
15668
15701
|
pageNumber?: number;
|
|
15669
15702
|
pageSize?: number;
|
|
15703
|
+
projectId?: number;
|
|
15670
15704
|
projectName?: string;
|
|
15671
15705
|
static names(): { [key: string]: string } {
|
|
15672
15706
|
return {
|
|
15673
15707
|
entityId: 'EntityId',
|
|
15674
15708
|
pageNumber: 'PageNumber',
|
|
15675
15709
|
pageSize: 'PageSize',
|
|
15710
|
+
projectId: 'ProjectId',
|
|
15676
15711
|
projectName: 'ProjectName',
|
|
15677
15712
|
};
|
|
15678
15713
|
}
|
|
@@ -15682,6 +15717,7 @@ export class ListQualityRulesRequest extends $tea.Model {
|
|
|
15682
15717
|
entityId: 'number',
|
|
15683
15718
|
pageNumber: 'number',
|
|
15684
15719
|
pageSize: 'number',
|
|
15720
|
+
projectId: 'number',
|
|
15685
15721
|
projectName: 'string',
|
|
15686
15722
|
};
|
|
15687
15723
|
}
|
|
@@ -20694,12 +20730,14 @@ export class UpdateQualityFollowerRequest extends $tea.Model {
|
|
|
20694
20730
|
alarmMode?: number;
|
|
20695
20731
|
follower?: string;
|
|
20696
20732
|
followerId?: number;
|
|
20733
|
+
projectId?: number;
|
|
20697
20734
|
projectName?: string;
|
|
20698
20735
|
static names(): { [key: string]: string } {
|
|
20699
20736
|
return {
|
|
20700
20737
|
alarmMode: 'AlarmMode',
|
|
20701
20738
|
follower: 'Follower',
|
|
20702
20739
|
followerId: 'FollowerId',
|
|
20740
|
+
projectId: 'ProjectId',
|
|
20703
20741
|
projectName: 'ProjectName',
|
|
20704
20742
|
};
|
|
20705
20743
|
}
|
|
@@ -20709,6 +20747,7 @@ export class UpdateQualityFollowerRequest extends $tea.Model {
|
|
|
20709
20747
|
alarmMode: 'number',
|
|
20710
20748
|
follower: 'string',
|
|
20711
20749
|
followerId: 'number',
|
|
20750
|
+
projectId: 'number',
|
|
20712
20751
|
projectName: 'string',
|
|
20713
20752
|
};
|
|
20714
20753
|
}
|
|
@@ -20789,6 +20828,7 @@ export class UpdateQualityRuleRequest extends $tea.Model {
|
|
|
20789
20828
|
openSwitch?: boolean;
|
|
20790
20829
|
operator?: string;
|
|
20791
20830
|
predictType?: number;
|
|
20831
|
+
projectId?: number;
|
|
20792
20832
|
projectName?: string;
|
|
20793
20833
|
property?: string;
|
|
20794
20834
|
propertyType?: string;
|
|
@@ -20811,6 +20851,7 @@ export class UpdateQualityRuleRequest extends $tea.Model {
|
|
|
20811
20851
|
openSwitch: 'OpenSwitch',
|
|
20812
20852
|
operator: 'Operator',
|
|
20813
20853
|
predictType: 'PredictType',
|
|
20854
|
+
projectId: 'ProjectId',
|
|
20814
20855
|
projectName: 'ProjectName',
|
|
20815
20856
|
property: 'Property',
|
|
20816
20857
|
propertyType: 'PropertyType',
|
|
@@ -20836,6 +20877,7 @@ export class UpdateQualityRuleRequest extends $tea.Model {
|
|
|
20836
20877
|
openSwitch: 'boolean',
|
|
20837
20878
|
operator: 'string',
|
|
20838
20879
|
predictType: 'number',
|
|
20880
|
+
projectId: 'number',
|
|
20839
20881
|
projectName: 'string',
|
|
20840
20882
|
property: 'string',
|
|
20841
20883
|
propertyType: 'string',
|
|
@@ -22297,16 +22339,8 @@ export class GetBaselineKeyPathResponseBodyDataRuns extends $tea.Model {
|
|
|
22297
22339
|
beginRunningTime?: number;
|
|
22298
22340
|
beginWaitResTime?: number;
|
|
22299
22341
|
beginWaitTimeTime?: number;
|
|
22300
|
-
bizdate?: number;
|
|
22301
|
-
cycTime?: number;
|
|
22302
22342
|
endCast?: number;
|
|
22303
22343
|
finishTime?: number;
|
|
22304
|
-
inGroupId?: number;
|
|
22305
|
-
instanceId?: number;
|
|
22306
|
-
nodeId?: number;
|
|
22307
|
-
nodeName?: string;
|
|
22308
|
-
owner?: string;
|
|
22309
|
-
projectId?: number;
|
|
22310
22344
|
status?: string;
|
|
22311
22345
|
static names(): { [key: string]: string } {
|
|
22312
22346
|
return {
|
|
@@ -22315,16 +22349,8 @@ export class GetBaselineKeyPathResponseBodyDataRuns extends $tea.Model {
|
|
|
22315
22349
|
beginRunningTime: 'BeginRunningTime',
|
|
22316
22350
|
beginWaitResTime: 'BeginWaitResTime',
|
|
22317
22351
|
beginWaitTimeTime: 'BeginWaitTimeTime',
|
|
22318
|
-
bizdate: 'Bizdate',
|
|
22319
|
-
cycTime: 'CycTime',
|
|
22320
22352
|
endCast: 'EndCast',
|
|
22321
22353
|
finishTime: 'FinishTime',
|
|
22322
|
-
inGroupId: 'InGroupId',
|
|
22323
|
-
instanceId: 'InstanceId',
|
|
22324
|
-
nodeId: 'NodeId',
|
|
22325
|
-
nodeName: 'NodeName',
|
|
22326
|
-
owner: 'Owner',
|
|
22327
|
-
projectId: 'ProjectId',
|
|
22328
22354
|
status: 'Status',
|
|
22329
22355
|
};
|
|
22330
22356
|
}
|
|
@@ -22336,16 +22362,8 @@ export class GetBaselineKeyPathResponseBodyDataRuns extends $tea.Model {
|
|
|
22336
22362
|
beginRunningTime: 'number',
|
|
22337
22363
|
beginWaitResTime: 'number',
|
|
22338
22364
|
beginWaitTimeTime: 'number',
|
|
22339
|
-
bizdate: 'number',
|
|
22340
|
-
cycTime: 'number',
|
|
22341
22365
|
endCast: 'number',
|
|
22342
22366
|
finishTime: 'number',
|
|
22343
|
-
inGroupId: 'number',
|
|
22344
|
-
instanceId: 'number',
|
|
22345
|
-
nodeId: 'number',
|
|
22346
|
-
nodeName: 'string',
|
|
22347
|
-
owner: 'string',
|
|
22348
|
-
projectId: 'number',
|
|
22349
22367
|
status: 'string',
|
|
22350
22368
|
};
|
|
22351
22369
|
}
|
|
@@ -22359,7 +22377,7 @@ export class GetBaselineKeyPathResponseBodyDataTopics extends $tea.Model {
|
|
|
22359
22377
|
addTime?: number;
|
|
22360
22378
|
instanceId?: number;
|
|
22361
22379
|
topicId?: number;
|
|
22362
|
-
topicName?:
|
|
22380
|
+
topicName?: string;
|
|
22363
22381
|
static names(): { [key: string]: string } {
|
|
22364
22382
|
return {
|
|
22365
22383
|
addTime: 'AddTime',
|
|
@@ -22374,7 +22392,7 @@ export class GetBaselineKeyPathResponseBodyDataTopics extends $tea.Model {
|
|
|
22374
22392
|
addTime: 'number',
|
|
22375
22393
|
instanceId: 'number',
|
|
22376
22394
|
topicId: 'number',
|
|
22377
|
-
topicName: '
|
|
22395
|
+
topicName: 'string',
|
|
22378
22396
|
};
|
|
22379
22397
|
}
|
|
22380
22398
|
|
|
@@ -35392,6 +35410,10 @@ export default class Client extends OpenApi {
|
|
|
35392
35410
|
body["MatchExpression"] = request.matchExpression;
|
|
35393
35411
|
}
|
|
35394
35412
|
|
|
35413
|
+
if (!Util.isUnset(request.projectId)) {
|
|
35414
|
+
body["ProjectId"] = request.projectId;
|
|
35415
|
+
}
|
|
35416
|
+
|
|
35395
35417
|
if (!Util.isUnset(request.projectName)) {
|
|
35396
35418
|
body["ProjectName"] = request.projectName;
|
|
35397
35419
|
}
|
|
@@ -35437,6 +35459,10 @@ export default class Client extends OpenApi {
|
|
|
35437
35459
|
body["Follower"] = request.follower;
|
|
35438
35460
|
}
|
|
35439
35461
|
|
|
35462
|
+
if (!Util.isUnset(request.projectId)) {
|
|
35463
|
+
body["ProjectId"] = request.projectId;
|
|
35464
|
+
}
|
|
35465
|
+
|
|
35440
35466
|
if (!Util.isUnset(request.projectName)) {
|
|
35441
35467
|
body["ProjectName"] = request.projectName;
|
|
35442
35468
|
}
|
|
@@ -35559,6 +35585,10 @@ export default class Client extends OpenApi {
|
|
|
35559
35585
|
body["PredictType"] = request.predictType;
|
|
35560
35586
|
}
|
|
35561
35587
|
|
|
35588
|
+
if (!Util.isUnset(request.projectId)) {
|
|
35589
|
+
body["ProjectId"] = request.projectId;
|
|
35590
|
+
}
|
|
35591
|
+
|
|
35562
35592
|
if (!Util.isUnset(request.projectName)) {
|
|
35563
35593
|
body["ProjectName"] = request.projectName;
|
|
35564
35594
|
}
|
|
@@ -36464,6 +36494,10 @@ export default class Client extends OpenApi {
|
|
|
36464
36494
|
body["EnvType"] = request.envType;
|
|
36465
36495
|
}
|
|
36466
36496
|
|
|
36497
|
+
if (!Util.isUnset(request.projectId)) {
|
|
36498
|
+
body["ProjectId"] = request.projectId;
|
|
36499
|
+
}
|
|
36500
|
+
|
|
36467
36501
|
if (!Util.isUnset(request.projectName)) {
|
|
36468
36502
|
body["ProjectName"] = request.projectName;
|
|
36469
36503
|
}
|
|
@@ -36504,6 +36538,10 @@ export default class Client extends OpenApi {
|
|
|
36504
36538
|
body["FollowerId"] = request.followerId;
|
|
36505
36539
|
}
|
|
36506
36540
|
|
|
36541
|
+
if (!Util.isUnset(request.projectId)) {
|
|
36542
|
+
body["ProjectId"] = request.projectId;
|
|
36543
|
+
}
|
|
36544
|
+
|
|
36507
36545
|
if (!Util.isUnset(request.projectName)) {
|
|
36508
36546
|
body["ProjectName"] = request.projectName;
|
|
36509
36547
|
}
|
|
@@ -36596,6 +36634,10 @@ export default class Client extends OpenApi {
|
|
|
36596
36634
|
async deleteQualityRuleWithOptions(request: DeleteQualityRuleRequest, runtime: $Util.RuntimeOptions): Promise<DeleteQualityRuleResponse> {
|
|
36597
36635
|
Util.validateModel(request);
|
|
36598
36636
|
let body : {[key: string ]: any} = { };
|
|
36637
|
+
if (!Util.isUnset(request.projectId)) {
|
|
36638
|
+
body["ProjectId"] = request.projectId;
|
|
36639
|
+
}
|
|
36640
|
+
|
|
36599
36641
|
if (!Util.isUnset(request.projectName)) {
|
|
36600
36642
|
body["ProjectName"] = request.projectName;
|
|
36601
36643
|
}
|
|
@@ -39450,6 +39492,10 @@ export default class Client extends OpenApi {
|
|
|
39450
39492
|
body["MatchExpression"] = request.matchExpression;
|
|
39451
39493
|
}
|
|
39452
39494
|
|
|
39495
|
+
if (!Util.isUnset(request.projectId)) {
|
|
39496
|
+
body["ProjectId"] = request.projectId;
|
|
39497
|
+
}
|
|
39498
|
+
|
|
39453
39499
|
if (!Util.isUnset(request.projectName)) {
|
|
39454
39500
|
body["ProjectName"] = request.projectName;
|
|
39455
39501
|
}
|
|
@@ -39487,6 +39533,10 @@ export default class Client extends OpenApi {
|
|
|
39487
39533
|
body["EntityId"] = request.entityId;
|
|
39488
39534
|
}
|
|
39489
39535
|
|
|
39536
|
+
if (!Util.isUnset(request.projectId)) {
|
|
39537
|
+
body["ProjectId"] = request.projectId;
|
|
39538
|
+
}
|
|
39539
|
+
|
|
39490
39540
|
if (!Util.isUnset(request.projectName)) {
|
|
39491
39541
|
body["ProjectName"] = request.projectName;
|
|
39492
39542
|
}
|
|
@@ -39516,6 +39566,10 @@ export default class Client extends OpenApi {
|
|
|
39516
39566
|
async getQualityRuleWithOptions(request: GetQualityRuleRequest, runtime: $Util.RuntimeOptions): Promise<GetQualityRuleResponse> {
|
|
39517
39567
|
Util.validateModel(request);
|
|
39518
39568
|
let body : {[key: string ]: any} = { };
|
|
39569
|
+
if (!Util.isUnset(request.projectId)) {
|
|
39570
|
+
body["ProjectId"] = request.projectId;
|
|
39571
|
+
}
|
|
39572
|
+
|
|
39519
39573
|
if (!Util.isUnset(request.projectName)) {
|
|
39520
39574
|
body["ProjectName"] = request.projectName;
|
|
39521
39575
|
}
|
|
@@ -41913,6 +41967,10 @@ export default class Client extends OpenApi {
|
|
|
41913
41967
|
body["PageSize"] = request.pageSize;
|
|
41914
41968
|
}
|
|
41915
41969
|
|
|
41970
|
+
if (!Util.isUnset(request.projectId)) {
|
|
41971
|
+
body["ProjectId"] = request.projectId;
|
|
41972
|
+
}
|
|
41973
|
+
|
|
41916
41974
|
if (!Util.isUnset(request.projectName)) {
|
|
41917
41975
|
body["ProjectName"] = request.projectName;
|
|
41918
41976
|
}
|
|
@@ -41964,6 +42022,10 @@ export default class Client extends OpenApi {
|
|
|
41964
42022
|
body["PageSize"] = request.pageSize;
|
|
41965
42023
|
}
|
|
41966
42024
|
|
|
42025
|
+
if (!Util.isUnset(request.projectId)) {
|
|
42026
|
+
body["ProjectId"] = request.projectId;
|
|
42027
|
+
}
|
|
42028
|
+
|
|
41967
42029
|
if (!Util.isUnset(request.projectName)) {
|
|
41968
42030
|
body["ProjectName"] = request.projectName;
|
|
41969
42031
|
}
|
|
@@ -42013,6 +42075,10 @@ export default class Client extends OpenApi {
|
|
|
42013
42075
|
body["PageSize"] = request.pageSize;
|
|
42014
42076
|
}
|
|
42015
42077
|
|
|
42078
|
+
if (!Util.isUnset(request.projectId)) {
|
|
42079
|
+
body["ProjectId"] = request.projectId;
|
|
42080
|
+
}
|
|
42081
|
+
|
|
42016
42082
|
if (!Util.isUnset(request.projectName)) {
|
|
42017
42083
|
body["ProjectName"] = request.projectName;
|
|
42018
42084
|
}
|
|
@@ -44766,6 +44832,10 @@ export default class Client extends OpenApi {
|
|
|
44766
44832
|
body["FollowerId"] = request.followerId;
|
|
44767
44833
|
}
|
|
44768
44834
|
|
|
44835
|
+
if (!Util.isUnset(request.projectId)) {
|
|
44836
|
+
body["ProjectId"] = request.projectId;
|
|
44837
|
+
}
|
|
44838
|
+
|
|
44769
44839
|
if (!Util.isUnset(request.projectName)) {
|
|
44770
44840
|
body["ProjectName"] = request.projectName;
|
|
44771
44841
|
}
|
|
@@ -44839,6 +44909,10 @@ export default class Client extends OpenApi {
|
|
|
44839
44909
|
body["PredictType"] = request.predictType;
|
|
44840
44910
|
}
|
|
44841
44911
|
|
|
44912
|
+
if (!Util.isUnset(request.projectId)) {
|
|
44913
|
+
body["ProjectId"] = request.projectId;
|
|
44914
|
+
}
|
|
44915
|
+
|
|
44842
44916
|
if (!Util.isUnset(request.projectName)) {
|
|
44843
44917
|
body["ProjectName"] = request.projectName;
|
|
44844
44918
|
}
|