@alicloud/dataworks-public20200518 4.3.8 → 4.3.9
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 +388 -0
- package/dist/client.js +690 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +849 -0
package/dist/client.d.ts
CHANGED
|
@@ -3359,6 +3359,47 @@ export declare class GetDataServiceApiResponse extends $tea.Model {
|
|
|
3359
3359
|
[key: string]: any;
|
|
3360
3360
|
});
|
|
3361
3361
|
}
|
|
3362
|
+
export declare class GetDataServiceApiTestRequest extends $tea.Model {
|
|
3363
|
+
testId?: number;
|
|
3364
|
+
static names(): {
|
|
3365
|
+
[key: string]: string;
|
|
3366
|
+
};
|
|
3367
|
+
static types(): {
|
|
3368
|
+
[key: string]: any;
|
|
3369
|
+
};
|
|
3370
|
+
constructor(map?: {
|
|
3371
|
+
[key: string]: any;
|
|
3372
|
+
});
|
|
3373
|
+
}
|
|
3374
|
+
export declare class GetDataServiceApiTestResponseBody extends $tea.Model {
|
|
3375
|
+
data?: GetDataServiceApiTestResponseBodyData;
|
|
3376
|
+
requestId?: string;
|
|
3377
|
+
static names(): {
|
|
3378
|
+
[key: string]: string;
|
|
3379
|
+
};
|
|
3380
|
+
static types(): {
|
|
3381
|
+
[key: string]: any;
|
|
3382
|
+
};
|
|
3383
|
+
constructor(map?: {
|
|
3384
|
+
[key: string]: any;
|
|
3385
|
+
});
|
|
3386
|
+
}
|
|
3387
|
+
export declare class GetDataServiceApiTestResponse extends $tea.Model {
|
|
3388
|
+
headers: {
|
|
3389
|
+
[key: string]: string;
|
|
3390
|
+
};
|
|
3391
|
+
statusCode: number;
|
|
3392
|
+
body: GetDataServiceApiTestResponseBody;
|
|
3393
|
+
static names(): {
|
|
3394
|
+
[key: string]: string;
|
|
3395
|
+
};
|
|
3396
|
+
static types(): {
|
|
3397
|
+
[key: string]: any;
|
|
3398
|
+
};
|
|
3399
|
+
constructor(map?: {
|
|
3400
|
+
[key: string]: any;
|
|
3401
|
+
});
|
|
3402
|
+
}
|
|
3362
3403
|
export declare class GetDataServiceApplicationRequest extends $tea.Model {
|
|
3363
3404
|
applicationId?: number;
|
|
3364
3405
|
projectId?: number;
|
|
@@ -3632,6 +3673,51 @@ export declare class GetDeploymentResponse extends $tea.Model {
|
|
|
3632
3673
|
[key: string]: any;
|
|
3633
3674
|
});
|
|
3634
3675
|
}
|
|
3676
|
+
export declare class GetDutyRosterRequest extends $tea.Model {
|
|
3677
|
+
beginTime?: number;
|
|
3678
|
+
dutyRosterIdentifier?: string;
|
|
3679
|
+
endTime?: number;
|
|
3680
|
+
userType?: string;
|
|
3681
|
+
watchkeeper?: string;
|
|
3682
|
+
static names(): {
|
|
3683
|
+
[key: string]: string;
|
|
3684
|
+
};
|
|
3685
|
+
static types(): {
|
|
3686
|
+
[key: string]: any;
|
|
3687
|
+
};
|
|
3688
|
+
constructor(map?: {
|
|
3689
|
+
[key: string]: any;
|
|
3690
|
+
});
|
|
3691
|
+
}
|
|
3692
|
+
export declare class GetDutyRosterResponseBody extends $tea.Model {
|
|
3693
|
+
paging?: GetDutyRosterResponseBodyPaging;
|
|
3694
|
+
requestId?: string;
|
|
3695
|
+
static names(): {
|
|
3696
|
+
[key: string]: string;
|
|
3697
|
+
};
|
|
3698
|
+
static types(): {
|
|
3699
|
+
[key: string]: any;
|
|
3700
|
+
};
|
|
3701
|
+
constructor(map?: {
|
|
3702
|
+
[key: string]: any;
|
|
3703
|
+
});
|
|
3704
|
+
}
|
|
3705
|
+
export declare class GetDutyRosterResponse extends $tea.Model {
|
|
3706
|
+
headers: {
|
|
3707
|
+
[key: string]: string;
|
|
3708
|
+
};
|
|
3709
|
+
statusCode: number;
|
|
3710
|
+
body: GetDutyRosterResponseBody;
|
|
3711
|
+
static names(): {
|
|
3712
|
+
[key: string]: string;
|
|
3713
|
+
};
|
|
3714
|
+
static types(): {
|
|
3715
|
+
[key: string]: any;
|
|
3716
|
+
};
|
|
3717
|
+
constructor(map?: {
|
|
3718
|
+
[key: string]: any;
|
|
3719
|
+
});
|
|
3720
|
+
}
|
|
3635
3721
|
export declare class GetExtensionRequest extends $tea.Model {
|
|
3636
3722
|
extensionCode?: string;
|
|
3637
3723
|
static names(): {
|
|
@@ -6499,6 +6585,48 @@ export declare class ListDataServiceApiAuthoritiesResponse extends $tea.Model {
|
|
|
6499
6585
|
[key: string]: any;
|
|
6500
6586
|
});
|
|
6501
6587
|
}
|
|
6588
|
+
export declare class ListDataServiceApiTestRequest extends $tea.Model {
|
|
6589
|
+
apiId?: number;
|
|
6590
|
+
pageSize?: number;
|
|
6591
|
+
static names(): {
|
|
6592
|
+
[key: string]: string;
|
|
6593
|
+
};
|
|
6594
|
+
static types(): {
|
|
6595
|
+
[key: string]: any;
|
|
6596
|
+
};
|
|
6597
|
+
constructor(map?: {
|
|
6598
|
+
[key: string]: any;
|
|
6599
|
+
});
|
|
6600
|
+
}
|
|
6601
|
+
export declare class ListDataServiceApiTestResponseBody extends $tea.Model {
|
|
6602
|
+
data?: ListDataServiceApiTestResponseBodyData[];
|
|
6603
|
+
requestId?: string;
|
|
6604
|
+
static names(): {
|
|
6605
|
+
[key: string]: string;
|
|
6606
|
+
};
|
|
6607
|
+
static types(): {
|
|
6608
|
+
[key: string]: any;
|
|
6609
|
+
};
|
|
6610
|
+
constructor(map?: {
|
|
6611
|
+
[key: string]: any;
|
|
6612
|
+
});
|
|
6613
|
+
}
|
|
6614
|
+
export declare class ListDataServiceApiTestResponse extends $tea.Model {
|
|
6615
|
+
headers: {
|
|
6616
|
+
[key: string]: string;
|
|
6617
|
+
};
|
|
6618
|
+
statusCode: number;
|
|
6619
|
+
body: ListDataServiceApiTestResponseBody;
|
|
6620
|
+
static names(): {
|
|
6621
|
+
[key: string]: string;
|
|
6622
|
+
};
|
|
6623
|
+
static types(): {
|
|
6624
|
+
[key: string]: any;
|
|
6625
|
+
};
|
|
6626
|
+
constructor(map?: {
|
|
6627
|
+
[key: string]: any;
|
|
6628
|
+
});
|
|
6629
|
+
}
|
|
6502
6630
|
export declare class ListDataServiceApisRequest extends $tea.Model {
|
|
6503
6631
|
apiNameKeyword?: string;
|
|
6504
6632
|
apiPathKeyword?: string;
|
|
@@ -6889,6 +7017,50 @@ export declare class ListDeploymentsResponse extends $tea.Model {
|
|
|
6889
7017
|
[key: string]: any;
|
|
6890
7018
|
});
|
|
6891
7019
|
}
|
|
7020
|
+
export declare class ListDutyRostersRequest extends $tea.Model {
|
|
7021
|
+
dutyRosterName?: string;
|
|
7022
|
+
dutyRosterOwner?: string;
|
|
7023
|
+
pageNumber?: number;
|
|
7024
|
+
pageSize?: number;
|
|
7025
|
+
static names(): {
|
|
7026
|
+
[key: string]: string;
|
|
7027
|
+
};
|
|
7028
|
+
static types(): {
|
|
7029
|
+
[key: string]: any;
|
|
7030
|
+
};
|
|
7031
|
+
constructor(map?: {
|
|
7032
|
+
[key: string]: any;
|
|
7033
|
+
});
|
|
7034
|
+
}
|
|
7035
|
+
export declare class ListDutyRostersResponseBody extends $tea.Model {
|
|
7036
|
+
paging?: ListDutyRostersResponseBodyPaging;
|
|
7037
|
+
requestId?: string;
|
|
7038
|
+
static names(): {
|
|
7039
|
+
[key: string]: string;
|
|
7040
|
+
};
|
|
7041
|
+
static types(): {
|
|
7042
|
+
[key: string]: any;
|
|
7043
|
+
};
|
|
7044
|
+
constructor(map?: {
|
|
7045
|
+
[key: string]: any;
|
|
7046
|
+
});
|
|
7047
|
+
}
|
|
7048
|
+
export declare class ListDutyRostersResponse extends $tea.Model {
|
|
7049
|
+
headers: {
|
|
7050
|
+
[key: string]: string;
|
|
7051
|
+
};
|
|
7052
|
+
statusCode: number;
|
|
7053
|
+
body: ListDutyRostersResponseBody;
|
|
7054
|
+
static names(): {
|
|
7055
|
+
[key: string]: string;
|
|
7056
|
+
};
|
|
7057
|
+
static types(): {
|
|
7058
|
+
[key: string]: any;
|
|
7059
|
+
};
|
|
7060
|
+
constructor(map?: {
|
|
7061
|
+
[key: string]: any;
|
|
7062
|
+
});
|
|
7063
|
+
}
|
|
6892
7064
|
export declare class ListExtensionsRequest extends $tea.Model {
|
|
6893
7065
|
pageNumber?: number;
|
|
6894
7066
|
pageSize?: number;
|
|
@@ -9550,6 +9722,52 @@ export declare class TerminateDISyncInstanceResponse extends $tea.Model {
|
|
|
9550
9722
|
[key: string]: any;
|
|
9551
9723
|
});
|
|
9552
9724
|
}
|
|
9725
|
+
export declare class TestDataServiceApiRequest extends $tea.Model {
|
|
9726
|
+
apiId?: number;
|
|
9727
|
+
bodyContent?: string;
|
|
9728
|
+
bodyParams?: TestDataServiceApiRequestBodyParams[];
|
|
9729
|
+
headParams?: TestDataServiceApiRequestHeadParams[];
|
|
9730
|
+
pathParams?: TestDataServiceApiRequestPathParams[];
|
|
9731
|
+
queryParam?: TestDataServiceApiRequestQueryParam[];
|
|
9732
|
+
static names(): {
|
|
9733
|
+
[key: string]: string;
|
|
9734
|
+
};
|
|
9735
|
+
static types(): {
|
|
9736
|
+
[key: string]: any;
|
|
9737
|
+
};
|
|
9738
|
+
constructor(map?: {
|
|
9739
|
+
[key: string]: any;
|
|
9740
|
+
});
|
|
9741
|
+
}
|
|
9742
|
+
export declare class TestDataServiceApiResponseBody extends $tea.Model {
|
|
9743
|
+
data?: TestDataServiceApiResponseBodyData;
|
|
9744
|
+
requestId?: string;
|
|
9745
|
+
static names(): {
|
|
9746
|
+
[key: string]: string;
|
|
9747
|
+
};
|
|
9748
|
+
static types(): {
|
|
9749
|
+
[key: string]: any;
|
|
9750
|
+
};
|
|
9751
|
+
constructor(map?: {
|
|
9752
|
+
[key: string]: any;
|
|
9753
|
+
});
|
|
9754
|
+
}
|
|
9755
|
+
export declare class TestDataServiceApiResponse extends $tea.Model {
|
|
9756
|
+
headers: {
|
|
9757
|
+
[key: string]: string;
|
|
9758
|
+
};
|
|
9759
|
+
statusCode: number;
|
|
9760
|
+
body: TestDataServiceApiResponseBody;
|
|
9761
|
+
static names(): {
|
|
9762
|
+
[key: string]: string;
|
|
9763
|
+
};
|
|
9764
|
+
static types(): {
|
|
9765
|
+
[key: string]: any;
|
|
9766
|
+
};
|
|
9767
|
+
constructor(map?: {
|
|
9768
|
+
[key: string]: any;
|
|
9769
|
+
});
|
|
9770
|
+
}
|
|
9553
9771
|
export declare class TestNetworkConnectionRequest extends $tea.Model {
|
|
9554
9772
|
datasourceName?: string;
|
|
9555
9773
|
envType?: string;
|
|
@@ -11606,6 +11824,25 @@ export declare class GetDataServiceApiResponseBodyData extends $tea.Model {
|
|
|
11606
11824
|
[key: string]: any;
|
|
11607
11825
|
});
|
|
11608
11826
|
}
|
|
11827
|
+
export declare class GetDataServiceApiTestResponseBodyData extends $tea.Model {
|
|
11828
|
+
apiId?: number;
|
|
11829
|
+
costTime?: string;
|
|
11830
|
+
debugInfo?: string;
|
|
11831
|
+
nodesDebugInfo?: string;
|
|
11832
|
+
paramMap?: string;
|
|
11833
|
+
retCode?: number;
|
|
11834
|
+
retResult?: string;
|
|
11835
|
+
status?: string;
|
|
11836
|
+
static names(): {
|
|
11837
|
+
[key: string]: string;
|
|
11838
|
+
};
|
|
11839
|
+
static types(): {
|
|
11840
|
+
[key: string]: any;
|
|
11841
|
+
};
|
|
11842
|
+
constructor(map?: {
|
|
11843
|
+
[key: string]: any;
|
|
11844
|
+
});
|
|
11845
|
+
}
|
|
11609
11846
|
export declare class GetDataServiceApplicationResponseBodyData extends $tea.Model {
|
|
11610
11847
|
applicationCode?: string;
|
|
11611
11848
|
applicationId?: number;
|
|
@@ -11952,6 +12189,36 @@ export declare class GetDeploymentResponseBodyData extends $tea.Model {
|
|
|
11952
12189
|
[key: string]: any;
|
|
11953
12190
|
});
|
|
11954
12191
|
}
|
|
12192
|
+
export declare class GetDutyRosterResponseBodyPagingDutyRoster extends $tea.Model {
|
|
12193
|
+
endLong?: number;
|
|
12194
|
+
startLong?: number;
|
|
12195
|
+
watchkeeper?: string;
|
|
12196
|
+
watchkeeperName?: string;
|
|
12197
|
+
static names(): {
|
|
12198
|
+
[key: string]: string;
|
|
12199
|
+
};
|
|
12200
|
+
static types(): {
|
|
12201
|
+
[key: string]: any;
|
|
12202
|
+
};
|
|
12203
|
+
constructor(map?: {
|
|
12204
|
+
[key: string]: any;
|
|
12205
|
+
});
|
|
12206
|
+
}
|
|
12207
|
+
export declare class GetDutyRosterResponseBodyPaging extends $tea.Model {
|
|
12208
|
+
dutyRoster?: GetDutyRosterResponseBodyPagingDutyRoster[];
|
|
12209
|
+
pageNumber?: number;
|
|
12210
|
+
pageSize?: number;
|
|
12211
|
+
totalCount?: number;
|
|
12212
|
+
static names(): {
|
|
12213
|
+
[key: string]: string;
|
|
12214
|
+
};
|
|
12215
|
+
static types(): {
|
|
12216
|
+
[key: string]: any;
|
|
12217
|
+
};
|
|
12218
|
+
constructor(map?: {
|
|
12219
|
+
[key: string]: any;
|
|
12220
|
+
});
|
|
12221
|
+
}
|
|
11955
12222
|
export declare class GetExtensionResponseBodyExtensionBindEventList extends $tea.Model {
|
|
11956
12223
|
eventCode?: string;
|
|
11957
12224
|
eventName?: string;
|
|
@@ -14077,6 +14344,25 @@ export declare class ListDataServiceApiAuthoritiesResponseBodyData extends $tea.
|
|
|
14077
14344
|
[key: string]: any;
|
|
14078
14345
|
});
|
|
14079
14346
|
}
|
|
14347
|
+
export declare class ListDataServiceApiTestResponseBodyData extends $tea.Model {
|
|
14348
|
+
apiId?: number;
|
|
14349
|
+
costTime?: number;
|
|
14350
|
+
createTime?: number;
|
|
14351
|
+
paramMap?: string;
|
|
14352
|
+
retCode?: number;
|
|
14353
|
+
retResult?: string;
|
|
14354
|
+
status?: string;
|
|
14355
|
+
testId?: number;
|
|
14356
|
+
static names(): {
|
|
14357
|
+
[key: string]: string;
|
|
14358
|
+
};
|
|
14359
|
+
static types(): {
|
|
14360
|
+
[key: string]: any;
|
|
14361
|
+
};
|
|
14362
|
+
constructor(map?: {
|
|
14363
|
+
[key: string]: any;
|
|
14364
|
+
});
|
|
14365
|
+
}
|
|
14080
14366
|
export declare class ListDataServiceApisResponseBodyDataApisRegistrationDetailsRegistrationErrorCodes extends $tea.Model {
|
|
14081
14367
|
errorCode?: string;
|
|
14082
14368
|
errorMessage?: string;
|
|
@@ -14780,6 +15066,34 @@ export declare class ListDeploymentsResponseBodyData extends $tea.Model {
|
|
|
14780
15066
|
[key: string]: any;
|
|
14781
15067
|
});
|
|
14782
15068
|
}
|
|
15069
|
+
export declare class ListDutyRostersResponseBodyPagingDutyRosters extends $tea.Model {
|
|
15070
|
+
dutyRosterIdentifier?: string;
|
|
15071
|
+
dutyRosterName?: string;
|
|
15072
|
+
static names(): {
|
|
15073
|
+
[key: string]: string;
|
|
15074
|
+
};
|
|
15075
|
+
static types(): {
|
|
15076
|
+
[key: string]: any;
|
|
15077
|
+
};
|
|
15078
|
+
constructor(map?: {
|
|
15079
|
+
[key: string]: any;
|
|
15080
|
+
});
|
|
15081
|
+
}
|
|
15082
|
+
export declare class ListDutyRostersResponseBodyPaging extends $tea.Model {
|
|
15083
|
+
dutyRosters?: ListDutyRostersResponseBodyPagingDutyRosters[];
|
|
15084
|
+
pageNumber?: number;
|
|
15085
|
+
pageSize?: number;
|
|
15086
|
+
totalCount?: number;
|
|
15087
|
+
static names(): {
|
|
15088
|
+
[key: string]: string;
|
|
15089
|
+
};
|
|
15090
|
+
static types(): {
|
|
15091
|
+
[key: string]: any;
|
|
15092
|
+
};
|
|
15093
|
+
constructor(map?: {
|
|
15094
|
+
[key: string]: any;
|
|
15095
|
+
});
|
|
15096
|
+
}
|
|
14783
15097
|
export declare class ListExtensionsResponseBodyPagingInfoExtensionsBindEventList extends $tea.Model {
|
|
14784
15098
|
eventCode?: string;
|
|
14785
15099
|
eventName?: string;
|
|
@@ -16086,6 +16400,70 @@ export declare class TerminateDISyncInstanceResponseBodyData extends $tea.Model
|
|
|
16086
16400
|
[key: string]: any;
|
|
16087
16401
|
});
|
|
16088
16402
|
}
|
|
16403
|
+
export declare class TestDataServiceApiRequestBodyParams extends $tea.Model {
|
|
16404
|
+
paramKey?: string;
|
|
16405
|
+
paramValue?: string;
|
|
16406
|
+
static names(): {
|
|
16407
|
+
[key: string]: string;
|
|
16408
|
+
};
|
|
16409
|
+
static types(): {
|
|
16410
|
+
[key: string]: any;
|
|
16411
|
+
};
|
|
16412
|
+
constructor(map?: {
|
|
16413
|
+
[key: string]: any;
|
|
16414
|
+
});
|
|
16415
|
+
}
|
|
16416
|
+
export declare class TestDataServiceApiRequestHeadParams extends $tea.Model {
|
|
16417
|
+
paramKey?: string;
|
|
16418
|
+
paramValue?: string;
|
|
16419
|
+
static names(): {
|
|
16420
|
+
[key: string]: string;
|
|
16421
|
+
};
|
|
16422
|
+
static types(): {
|
|
16423
|
+
[key: string]: any;
|
|
16424
|
+
};
|
|
16425
|
+
constructor(map?: {
|
|
16426
|
+
[key: string]: any;
|
|
16427
|
+
});
|
|
16428
|
+
}
|
|
16429
|
+
export declare class TestDataServiceApiRequestPathParams extends $tea.Model {
|
|
16430
|
+
paramKey?: string;
|
|
16431
|
+
paramValue?: string;
|
|
16432
|
+
static names(): {
|
|
16433
|
+
[key: string]: string;
|
|
16434
|
+
};
|
|
16435
|
+
static types(): {
|
|
16436
|
+
[key: string]: any;
|
|
16437
|
+
};
|
|
16438
|
+
constructor(map?: {
|
|
16439
|
+
[key: string]: any;
|
|
16440
|
+
});
|
|
16441
|
+
}
|
|
16442
|
+
export declare class TestDataServiceApiRequestQueryParam extends $tea.Model {
|
|
16443
|
+
paramKey?: string;
|
|
16444
|
+
paramValue?: string;
|
|
16445
|
+
static names(): {
|
|
16446
|
+
[key: string]: string;
|
|
16447
|
+
};
|
|
16448
|
+
static types(): {
|
|
16449
|
+
[key: string]: any;
|
|
16450
|
+
};
|
|
16451
|
+
constructor(map?: {
|
|
16452
|
+
[key: string]: any;
|
|
16453
|
+
});
|
|
16454
|
+
}
|
|
16455
|
+
export declare class TestDataServiceApiResponseBodyData extends $tea.Model {
|
|
16456
|
+
testId?: string;
|
|
16457
|
+
static names(): {
|
|
16458
|
+
[key: string]: string;
|
|
16459
|
+
};
|
|
16460
|
+
static types(): {
|
|
16461
|
+
[key: string]: any;
|
|
16462
|
+
};
|
|
16463
|
+
constructor(map?: {
|
|
16464
|
+
[key: string]: any;
|
|
16465
|
+
});
|
|
16466
|
+
}
|
|
16089
16467
|
export declare class TestNetworkConnectionResponseBodyTaskList extends $tea.Model {
|
|
16090
16468
|
connectMessage?: string;
|
|
16091
16469
|
connectStatus?: boolean;
|
|
@@ -16407,6 +16785,8 @@ export default class Client extends OpenApi {
|
|
|
16407
16785
|
getDag(request: GetDagRequest): Promise<GetDagResponse>;
|
|
16408
16786
|
getDataServiceApiWithOptions(request: GetDataServiceApiRequest, runtime: $Util.RuntimeOptions): Promise<GetDataServiceApiResponse>;
|
|
16409
16787
|
getDataServiceApi(request: GetDataServiceApiRequest): Promise<GetDataServiceApiResponse>;
|
|
16788
|
+
getDataServiceApiTestWithOptions(request: GetDataServiceApiTestRequest, runtime: $Util.RuntimeOptions): Promise<GetDataServiceApiTestResponse>;
|
|
16789
|
+
getDataServiceApiTest(request: GetDataServiceApiTestRequest): Promise<GetDataServiceApiTestResponse>;
|
|
16410
16790
|
getDataServiceApplicationWithOptions(request: GetDataServiceApplicationRequest, runtime: $Util.RuntimeOptions): Promise<GetDataServiceApplicationResponse>;
|
|
16411
16791
|
getDataServiceApplication(request: GetDataServiceApplicationRequest): Promise<GetDataServiceApplicationResponse>;
|
|
16412
16792
|
getDataServiceFolderWithOptions(request: GetDataServiceFolderRequest, runtime: $Util.RuntimeOptions): Promise<GetDataServiceFolderResponse>;
|
|
@@ -16419,6 +16799,8 @@ export default class Client extends OpenApi {
|
|
|
16419
16799
|
getDataSourceMeta(request: GetDataSourceMetaRequest): Promise<GetDataSourceMetaResponse>;
|
|
16420
16800
|
getDeploymentWithOptions(request: GetDeploymentRequest, runtime: $Util.RuntimeOptions): Promise<GetDeploymentResponse>;
|
|
16421
16801
|
getDeployment(request: GetDeploymentRequest): Promise<GetDeploymentResponse>;
|
|
16802
|
+
getDutyRosterWithOptions(request: GetDutyRosterRequest, runtime: $Util.RuntimeOptions): Promise<GetDutyRosterResponse>;
|
|
16803
|
+
getDutyRoster(request: GetDutyRosterRequest): Promise<GetDutyRosterResponse>;
|
|
16422
16804
|
getExtensionWithOptions(request: GetExtensionRequest, runtime: $Util.RuntimeOptions): Promise<GetExtensionResponse>;
|
|
16423
16805
|
getExtension(request: GetExtensionRequest): Promise<GetExtensionResponse>;
|
|
16424
16806
|
getFileWithOptions(request: GetFileRequest, runtime: $Util.RuntimeOptions): Promise<GetFileResponse>;
|
|
@@ -16543,6 +16925,8 @@ export default class Client extends OpenApi {
|
|
|
16543
16925
|
listDags(request: ListDagsRequest): Promise<ListDagsResponse>;
|
|
16544
16926
|
listDataServiceApiAuthoritiesWithOptions(request: ListDataServiceApiAuthoritiesRequest, runtime: $Util.RuntimeOptions): Promise<ListDataServiceApiAuthoritiesResponse>;
|
|
16545
16927
|
listDataServiceApiAuthorities(request: ListDataServiceApiAuthoritiesRequest): Promise<ListDataServiceApiAuthoritiesResponse>;
|
|
16928
|
+
listDataServiceApiTestWithOptions(request: ListDataServiceApiTestRequest, runtime: $Util.RuntimeOptions): Promise<ListDataServiceApiTestResponse>;
|
|
16929
|
+
listDataServiceApiTest(request: ListDataServiceApiTestRequest): Promise<ListDataServiceApiTestResponse>;
|
|
16546
16930
|
listDataServiceApisWithOptions(request: ListDataServiceApisRequest, runtime: $Util.RuntimeOptions): Promise<ListDataServiceApisResponse>;
|
|
16547
16931
|
listDataServiceApis(request: ListDataServiceApisRequest): Promise<ListDataServiceApisResponse>;
|
|
16548
16932
|
listDataServiceApplicationsWithOptions(request: ListDataServiceApplicationsRequest, runtime: $Util.RuntimeOptions): Promise<ListDataServiceApplicationsResponse>;
|
|
@@ -16559,6 +16943,8 @@ export default class Client extends OpenApi {
|
|
|
16559
16943
|
listDataSources(request: ListDataSourcesRequest): Promise<ListDataSourcesResponse>;
|
|
16560
16944
|
listDeploymentsWithOptions(request: ListDeploymentsRequest, runtime: $Util.RuntimeOptions): Promise<ListDeploymentsResponse>;
|
|
16561
16945
|
listDeployments(request: ListDeploymentsRequest): Promise<ListDeploymentsResponse>;
|
|
16946
|
+
listDutyRostersWithOptions(request: ListDutyRostersRequest, runtime: $Util.RuntimeOptions): Promise<ListDutyRostersResponse>;
|
|
16947
|
+
listDutyRosters(request: ListDutyRostersRequest): Promise<ListDutyRostersResponse>;
|
|
16562
16948
|
listExtensionsWithOptions(request: ListExtensionsRequest, runtime: $Util.RuntimeOptions): Promise<ListExtensionsResponse>;
|
|
16563
16949
|
listExtensions(request: ListExtensionsRequest): Promise<ListExtensionsResponse>;
|
|
16564
16950
|
listFileTypeWithOptions(request: ListFileTypeRequest, runtime: $Util.RuntimeOptions): Promise<ListFileTypeResponse>;
|
|
@@ -16673,6 +17059,8 @@ export default class Client extends OpenApi {
|
|
|
16673
17059
|
suspendInstance(request: SuspendInstanceRequest): Promise<SuspendInstanceResponse>;
|
|
16674
17060
|
terminateDISyncInstanceWithOptions(request: TerminateDISyncInstanceRequest, runtime: $Util.RuntimeOptions): Promise<TerminateDISyncInstanceResponse>;
|
|
16675
17061
|
terminateDISyncInstance(request: TerminateDISyncInstanceRequest): Promise<TerminateDISyncInstanceResponse>;
|
|
17062
|
+
testDataServiceApiWithOptions(request: TestDataServiceApiRequest, runtime: $Util.RuntimeOptions): Promise<TestDataServiceApiResponse>;
|
|
17063
|
+
testDataServiceApi(request: TestDataServiceApiRequest): Promise<TestDataServiceApiResponse>;
|
|
16676
17064
|
testNetworkConnectionWithOptions(request: TestNetworkConnectionRequest, runtime: $Util.RuntimeOptions): Promise<TestNetworkConnectionResponse>;
|
|
16677
17065
|
testNetworkConnection(request: TestNetworkConnectionRequest): Promise<TestNetworkConnectionResponse>;
|
|
16678
17066
|
topTenElapsedTimeInstanceWithOptions(request: TopTenElapsedTimeInstanceRequest, runtime: $Util.RuntimeOptions): Promise<TopTenElapsedTimeInstanceResponse>;
|