@alicloud/dataworks-public20200518 4.7.3 → 4.7.5
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 +2 -0
- package/dist/client.js +10 -0
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +14 -0
package/dist/client.d.ts
CHANGED
|
@@ -5115,6 +5115,7 @@ export declare class GetInstanceStatusStatisticRequest extends $tea.Model {
|
|
|
5115
5115
|
dagType?: string;
|
|
5116
5116
|
projectEnv?: string;
|
|
5117
5117
|
projectId?: number;
|
|
5118
|
+
schedulerPeriod?: string;
|
|
5118
5119
|
schedulerType?: string;
|
|
5119
5120
|
static names(): {
|
|
5120
5121
|
[key: string]: string;
|
|
@@ -8584,6 +8585,7 @@ export declare class ListInstancesRequest extends $tea.Model {
|
|
|
8584
8585
|
endBizdate?: string;
|
|
8585
8586
|
nodeId?: number;
|
|
8586
8587
|
nodeName?: string;
|
|
8588
|
+
orderBy?: string;
|
|
8587
8589
|
owner?: string;
|
|
8588
8590
|
pageNumber?: number;
|
|
8589
8591
|
pageSize?: number;
|
package/dist/client.js
CHANGED
|
@@ -7217,6 +7217,7 @@ class GetInstanceStatusStatisticRequest extends $tea.Model {
|
|
|
7217
7217
|
dagType: 'DagType',
|
|
7218
7218
|
projectEnv: 'ProjectEnv',
|
|
7219
7219
|
projectId: 'ProjectId',
|
|
7220
|
+
schedulerPeriod: 'SchedulerPeriod',
|
|
7220
7221
|
schedulerType: 'SchedulerType',
|
|
7221
7222
|
};
|
|
7222
7223
|
}
|
|
@@ -7226,6 +7227,7 @@ class GetInstanceStatusStatisticRequest extends $tea.Model {
|
|
|
7226
7227
|
dagType: 'string',
|
|
7227
7228
|
projectEnv: 'string',
|
|
7228
7229
|
projectId: 'number',
|
|
7230
|
+
schedulerPeriod: 'string',
|
|
7229
7231
|
schedulerType: 'string',
|
|
7230
7232
|
};
|
|
7231
7233
|
}
|
|
@@ -12088,6 +12090,7 @@ class ListInstancesRequest extends $tea.Model {
|
|
|
12088
12090
|
endBizdate: 'EndBizdate',
|
|
12089
12091
|
nodeId: 'NodeId',
|
|
12090
12092
|
nodeName: 'NodeName',
|
|
12093
|
+
orderBy: 'OrderBy',
|
|
12091
12094
|
owner: 'Owner',
|
|
12092
12095
|
pageNumber: 'PageNumber',
|
|
12093
12096
|
pageSize: 'PageSize',
|
|
@@ -12106,6 +12109,7 @@ class ListInstancesRequest extends $tea.Model {
|
|
|
12106
12109
|
endBizdate: 'string',
|
|
12107
12110
|
nodeId: 'number',
|
|
12108
12111
|
nodeName: 'string',
|
|
12112
|
+
orderBy: 'string',
|
|
12109
12113
|
owner: 'string',
|
|
12110
12114
|
pageNumber: 'number',
|
|
12111
12115
|
pageSize: 'number',
|
|
@@ -33474,6 +33478,9 @@ class Client extends openapi_client_1.default {
|
|
|
33474
33478
|
if (!tea_util_1.default.isUnset(request.projectId)) {
|
|
33475
33479
|
body["ProjectId"] = request.projectId;
|
|
33476
33480
|
}
|
|
33481
|
+
if (!tea_util_1.default.isUnset(request.schedulerPeriod)) {
|
|
33482
|
+
body["SchedulerPeriod"] = request.schedulerPeriod;
|
|
33483
|
+
}
|
|
33477
33484
|
if (!tea_util_1.default.isUnset(request.schedulerType)) {
|
|
33478
33485
|
body["SchedulerType"] = request.schedulerType;
|
|
33479
33486
|
}
|
|
@@ -36149,6 +36156,9 @@ class Client extends openapi_client_1.default {
|
|
|
36149
36156
|
if (!tea_util_1.default.isUnset(request.nodeName)) {
|
|
36150
36157
|
body["NodeName"] = request.nodeName;
|
|
36151
36158
|
}
|
|
36159
|
+
if (!tea_util_1.default.isUnset(request.orderBy)) {
|
|
36160
|
+
body["OrderBy"] = request.orderBy;
|
|
36161
|
+
}
|
|
36152
36162
|
if (!tea_util_1.default.isUnset(request.owner)) {
|
|
36153
36163
|
body["Owner"] = request.owner;
|
|
36154
36164
|
}
|