@alicloud/sas20181203 1.0.14 → 1.1.0
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/LICENSE +13 -0
- package/README.md +25 -0
- package/dist/client.d.ts +73 -0
- package/dist/client.js +135 -0
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +165 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
|
|
2
|
+
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License.
|
|
5
|
+
You may obtain a copy of the License at
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
See the License for the specific language governing permissions and
|
|
13
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
English | [简体中文](README-CN.md)
|
|
2
|
+

|
|
3
|
+
|
|
4
|
+
# Alibaba Cloud Sas SDK for NodeJS
|
|
5
|
+
|
|
6
|
+
## Installation
|
|
7
|
+
If you use `npm` to manage your dependence, you can use the following command:
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npm install @alicloud/sas20181203 -S
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Issues
|
|
14
|
+
[Opening an Issue](https://github.com/aliyun/alibabacloud-typescript-sdk/issues/new), Issues not conforming to the guidelines may be closed immediately.
|
|
15
|
+
|
|
16
|
+
## Usage
|
|
17
|
+
[Usage Document](https://github.com/aliyun/alibabacloud-typescript-sdk/blob/master/docs/Usage-EN.md#quick-examples)
|
|
18
|
+
|
|
19
|
+
## References
|
|
20
|
+
* [Latest Release](https://github.com/aliyun/alibabacloud-typescript-sdk/)
|
|
21
|
+
|
|
22
|
+
## License
|
|
23
|
+
[Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0)
|
|
24
|
+
|
|
25
|
+
Copyright (c) 2009-present, Alibaba Cloud All rights reserved.
|
package/dist/client.d.ts
CHANGED
|
@@ -745,6 +745,7 @@ export declare class DescribeAlarmEventListRequest extends $tea.Model {
|
|
|
745
745
|
pageSize?: string;
|
|
746
746
|
remark?: string;
|
|
747
747
|
sourceIp?: string;
|
|
748
|
+
tacticId?: string;
|
|
748
749
|
static names(): {
|
|
749
750
|
[key: string]: string;
|
|
750
751
|
};
|
|
@@ -4839,6 +4840,7 @@ export declare class DescribeSuspEventsRequest extends $tea.Model {
|
|
|
4839
4840
|
source?: string;
|
|
4840
4841
|
sourceIp?: string;
|
|
4841
4842
|
status?: string;
|
|
4843
|
+
tacticId?: string;
|
|
4842
4844
|
targetType?: string;
|
|
4843
4845
|
uniqueInfo?: string;
|
|
4844
4846
|
uuids?: string;
|
|
@@ -6517,6 +6519,47 @@ export declare class ModifyOperateVulResponse extends $tea.Model {
|
|
|
6517
6519
|
[key: string]: any;
|
|
6518
6520
|
});
|
|
6519
6521
|
}
|
|
6522
|
+
export declare class ModifyPropertyScheduleConfigRequest extends $tea.Model {
|
|
6523
|
+
scheduleTime?: string;
|
|
6524
|
+
type?: string;
|
|
6525
|
+
static names(): {
|
|
6526
|
+
[key: string]: string;
|
|
6527
|
+
};
|
|
6528
|
+
static types(): {
|
|
6529
|
+
[key: string]: any;
|
|
6530
|
+
};
|
|
6531
|
+
constructor(map?: {
|
|
6532
|
+
[key: string]: any;
|
|
6533
|
+
});
|
|
6534
|
+
}
|
|
6535
|
+
export declare class ModifyPropertyScheduleConfigResponseBody extends $tea.Model {
|
|
6536
|
+
modifyResult?: boolean;
|
|
6537
|
+
requestId?: string;
|
|
6538
|
+
static names(): {
|
|
6539
|
+
[key: string]: string;
|
|
6540
|
+
};
|
|
6541
|
+
static types(): {
|
|
6542
|
+
[key: string]: any;
|
|
6543
|
+
};
|
|
6544
|
+
constructor(map?: {
|
|
6545
|
+
[key: string]: any;
|
|
6546
|
+
});
|
|
6547
|
+
}
|
|
6548
|
+
export declare class ModifyPropertyScheduleConfigResponse extends $tea.Model {
|
|
6549
|
+
headers: {
|
|
6550
|
+
[key: string]: string;
|
|
6551
|
+
};
|
|
6552
|
+
body: ModifyPropertyScheduleConfigResponseBody;
|
|
6553
|
+
static names(): {
|
|
6554
|
+
[key: string]: string;
|
|
6555
|
+
};
|
|
6556
|
+
static types(): {
|
|
6557
|
+
[key: string]: any;
|
|
6558
|
+
};
|
|
6559
|
+
constructor(map?: {
|
|
6560
|
+
[key: string]: any;
|
|
6561
|
+
});
|
|
6562
|
+
}
|
|
6520
6563
|
export declare class ModifyPushAllTaskRequest extends $tea.Model {
|
|
6521
6564
|
sourceIp?: string;
|
|
6522
6565
|
tasks?: string;
|
|
@@ -7920,6 +7963,19 @@ export declare class DescribeAlarmEventListResponseBodyPageInfo extends $tea.Mod
|
|
|
7920
7963
|
[key: string]: any;
|
|
7921
7964
|
});
|
|
7922
7965
|
}
|
|
7966
|
+
export declare class DescribeAlarmEventListResponseBodySuspEventsTacticItems extends $tea.Model {
|
|
7967
|
+
tacticDisplayName?: string;
|
|
7968
|
+
tacticId?: string;
|
|
7969
|
+
static names(): {
|
|
7970
|
+
[key: string]: string;
|
|
7971
|
+
};
|
|
7972
|
+
static types(): {
|
|
7973
|
+
[key: string]: any;
|
|
7974
|
+
};
|
|
7975
|
+
constructor(map?: {
|
|
7976
|
+
[key: string]: any;
|
|
7977
|
+
});
|
|
7978
|
+
}
|
|
7923
7979
|
export declare class DescribeAlarmEventListResponseBodySuspEvents extends $tea.Model {
|
|
7924
7980
|
alarmEventName?: string;
|
|
7925
7981
|
alarmEventNameOriginal?: string;
|
|
@@ -7946,6 +8002,7 @@ export declare class DescribeAlarmEventListResponseBodySuspEvents extends $tea.M
|
|
|
7946
8002
|
stages?: string;
|
|
7947
8003
|
startTime?: number;
|
|
7948
8004
|
suspiciousEventCount?: number;
|
|
8005
|
+
tacticItems?: DescribeAlarmEventListResponseBodySuspEventsTacticItems[];
|
|
7949
8006
|
uuid?: string;
|
|
7950
8007
|
static names(): {
|
|
7951
8008
|
[key: string]: string;
|
|
@@ -10170,6 +10227,19 @@ export declare class DescribeSuspEventsResponseBodySuspEventsEventNotes extends
|
|
|
10170
10227
|
[key: string]: any;
|
|
10171
10228
|
});
|
|
10172
10229
|
}
|
|
10230
|
+
export declare class DescribeSuspEventsResponseBodySuspEventsTacticItems extends $tea.Model {
|
|
10231
|
+
tacticDisplayName?: string;
|
|
10232
|
+
tacticId?: string;
|
|
10233
|
+
static names(): {
|
|
10234
|
+
[key: string]: string;
|
|
10235
|
+
};
|
|
10236
|
+
static types(): {
|
|
10237
|
+
[key: string]: any;
|
|
10238
|
+
};
|
|
10239
|
+
constructor(map?: {
|
|
10240
|
+
[key: string]: any;
|
|
10241
|
+
});
|
|
10242
|
+
}
|
|
10173
10243
|
export declare class DescribeSuspEventsResponseBodySuspEvents extends $tea.Model {
|
|
10174
10244
|
advanced?: boolean;
|
|
10175
10245
|
alarmEventName?: string;
|
|
@@ -10216,6 +10286,7 @@ export declare class DescribeSuspEventsResponseBodySuspEvents extends $tea.Model
|
|
|
10216
10286
|
saleVersion?: string;
|
|
10217
10287
|
securityEventIds?: string;
|
|
10218
10288
|
stages?: string;
|
|
10289
|
+
tacticItems?: DescribeSuspEventsResponseBodySuspEventsTacticItems[];
|
|
10219
10290
|
uniqueInfo?: string;
|
|
10220
10291
|
uuid?: string;
|
|
10221
10292
|
static names(): {
|
|
@@ -10942,6 +11013,8 @@ export default class Client extends OpenApi {
|
|
|
10942
11013
|
modifyOpenLogShipper(request: ModifyOpenLogShipperRequest): Promise<ModifyOpenLogShipperResponse>;
|
|
10943
11014
|
modifyOperateVulWithOptions(request: ModifyOperateVulRequest, runtime: $Util.RuntimeOptions): Promise<ModifyOperateVulResponse>;
|
|
10944
11015
|
modifyOperateVul(request: ModifyOperateVulRequest): Promise<ModifyOperateVulResponse>;
|
|
11016
|
+
modifyPropertyScheduleConfigWithOptions(request: ModifyPropertyScheduleConfigRequest, runtime: $Util.RuntimeOptions): Promise<ModifyPropertyScheduleConfigResponse>;
|
|
11017
|
+
modifyPropertyScheduleConfig(request: ModifyPropertyScheduleConfigRequest): Promise<ModifyPropertyScheduleConfigResponse>;
|
|
10945
11018
|
modifyPushAllTaskWithOptions(request: ModifyPushAllTaskRequest, runtime: $Util.RuntimeOptions): Promise<ModifyPushAllTaskResponse>;
|
|
10946
11019
|
modifyPushAllTask(request: ModifyPushAllTaskRequest): Promise<ModifyPushAllTaskResponse>;
|
|
10947
11020
|
modifyRiskCheckStatusWithOptions(request: ModifyRiskCheckStatusRequest, runtime: $Util.RuntimeOptions): Promise<ModifyRiskCheckStatusResponse>;
|
package/dist/client.js
CHANGED
|
@@ -1013,6 +1013,7 @@ class DescribeAlarmEventListRequest extends $tea.Model {
|
|
|
1013
1013
|
pageSize: 'PageSize',
|
|
1014
1014
|
remark: 'Remark',
|
|
1015
1015
|
sourceIp: 'SourceIp',
|
|
1016
|
+
tacticId: 'TacticId',
|
|
1016
1017
|
};
|
|
1017
1018
|
}
|
|
1018
1019
|
static types() {
|
|
@@ -1029,6 +1030,7 @@ class DescribeAlarmEventListRequest extends $tea.Model {
|
|
|
1029
1030
|
pageSize: 'string',
|
|
1030
1031
|
remark: 'string',
|
|
1031
1032
|
sourceIp: 'string',
|
|
1033
|
+
tacticId: 'string',
|
|
1032
1034
|
};
|
|
1033
1035
|
}
|
|
1034
1036
|
}
|
|
@@ -6694,6 +6696,7 @@ class DescribeSuspEventsRequest extends $tea.Model {
|
|
|
6694
6696
|
source: 'Source',
|
|
6695
6697
|
sourceIp: 'SourceIp',
|
|
6696
6698
|
status: 'Status',
|
|
6699
|
+
tacticId: 'TacticId',
|
|
6697
6700
|
targetType: 'TargetType',
|
|
6698
6701
|
uniqueInfo: 'UniqueInfo',
|
|
6699
6702
|
uuids: 'Uuids',
|
|
@@ -6720,6 +6723,7 @@ class DescribeSuspEventsRequest extends $tea.Model {
|
|
|
6720
6723
|
source: 'string',
|
|
6721
6724
|
sourceIp: 'string',
|
|
6722
6725
|
status: 'string',
|
|
6726
|
+
tacticId: 'string',
|
|
6723
6727
|
targetType: 'string',
|
|
6724
6728
|
uniqueInfo: 'string',
|
|
6725
6729
|
uuids: 'string',
|
|
@@ -8993,6 +8997,60 @@ class ModifyOperateVulResponse extends $tea.Model {
|
|
|
8993
8997
|
}
|
|
8994
8998
|
}
|
|
8995
8999
|
exports.ModifyOperateVulResponse = ModifyOperateVulResponse;
|
|
9000
|
+
class ModifyPropertyScheduleConfigRequest extends $tea.Model {
|
|
9001
|
+
constructor(map) {
|
|
9002
|
+
super(map);
|
|
9003
|
+
}
|
|
9004
|
+
static names() {
|
|
9005
|
+
return {
|
|
9006
|
+
scheduleTime: 'ScheduleTime',
|
|
9007
|
+
type: 'Type',
|
|
9008
|
+
};
|
|
9009
|
+
}
|
|
9010
|
+
static types() {
|
|
9011
|
+
return {
|
|
9012
|
+
scheduleTime: 'string',
|
|
9013
|
+
type: 'string',
|
|
9014
|
+
};
|
|
9015
|
+
}
|
|
9016
|
+
}
|
|
9017
|
+
exports.ModifyPropertyScheduleConfigRequest = ModifyPropertyScheduleConfigRequest;
|
|
9018
|
+
class ModifyPropertyScheduleConfigResponseBody extends $tea.Model {
|
|
9019
|
+
constructor(map) {
|
|
9020
|
+
super(map);
|
|
9021
|
+
}
|
|
9022
|
+
static names() {
|
|
9023
|
+
return {
|
|
9024
|
+
modifyResult: 'ModifyResult',
|
|
9025
|
+
requestId: 'RequestId',
|
|
9026
|
+
};
|
|
9027
|
+
}
|
|
9028
|
+
static types() {
|
|
9029
|
+
return {
|
|
9030
|
+
modifyResult: 'boolean',
|
|
9031
|
+
requestId: 'string',
|
|
9032
|
+
};
|
|
9033
|
+
}
|
|
9034
|
+
}
|
|
9035
|
+
exports.ModifyPropertyScheduleConfigResponseBody = ModifyPropertyScheduleConfigResponseBody;
|
|
9036
|
+
class ModifyPropertyScheduleConfigResponse extends $tea.Model {
|
|
9037
|
+
constructor(map) {
|
|
9038
|
+
super(map);
|
|
9039
|
+
}
|
|
9040
|
+
static names() {
|
|
9041
|
+
return {
|
|
9042
|
+
headers: 'headers',
|
|
9043
|
+
body: 'body',
|
|
9044
|
+
};
|
|
9045
|
+
}
|
|
9046
|
+
static types() {
|
|
9047
|
+
return {
|
|
9048
|
+
headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
|
|
9049
|
+
body: ModifyPropertyScheduleConfigResponseBody,
|
|
9050
|
+
};
|
|
9051
|
+
}
|
|
9052
|
+
}
|
|
9053
|
+
exports.ModifyPropertyScheduleConfigResponse = ModifyPropertyScheduleConfigResponse;
|
|
8996
9054
|
class ModifyPushAllTaskRequest extends $tea.Model {
|
|
8997
9055
|
constructor(map) {
|
|
8998
9056
|
super(map);
|
|
@@ -10915,6 +10973,24 @@ class DescribeAlarmEventListResponseBodyPageInfo extends $tea.Model {
|
|
|
10915
10973
|
}
|
|
10916
10974
|
}
|
|
10917
10975
|
exports.DescribeAlarmEventListResponseBodyPageInfo = DescribeAlarmEventListResponseBodyPageInfo;
|
|
10976
|
+
class DescribeAlarmEventListResponseBodySuspEventsTacticItems extends $tea.Model {
|
|
10977
|
+
constructor(map) {
|
|
10978
|
+
super(map);
|
|
10979
|
+
}
|
|
10980
|
+
static names() {
|
|
10981
|
+
return {
|
|
10982
|
+
tacticDisplayName: 'TacticDisplayName',
|
|
10983
|
+
tacticId: 'TacticId',
|
|
10984
|
+
};
|
|
10985
|
+
}
|
|
10986
|
+
static types() {
|
|
10987
|
+
return {
|
|
10988
|
+
tacticDisplayName: 'string',
|
|
10989
|
+
tacticId: 'string',
|
|
10990
|
+
};
|
|
10991
|
+
}
|
|
10992
|
+
}
|
|
10993
|
+
exports.DescribeAlarmEventListResponseBodySuspEventsTacticItems = DescribeAlarmEventListResponseBodySuspEventsTacticItems;
|
|
10918
10994
|
class DescribeAlarmEventListResponseBodySuspEvents extends $tea.Model {
|
|
10919
10995
|
constructor(map) {
|
|
10920
10996
|
super(map);
|
|
@@ -10946,6 +11022,7 @@ class DescribeAlarmEventListResponseBodySuspEvents extends $tea.Model {
|
|
|
10946
11022
|
stages: 'Stages',
|
|
10947
11023
|
startTime: 'StartTime',
|
|
10948
11024
|
suspiciousEventCount: 'SuspiciousEventCount',
|
|
11025
|
+
tacticItems: 'TacticItems',
|
|
10949
11026
|
uuid: 'Uuid',
|
|
10950
11027
|
};
|
|
10951
11028
|
}
|
|
@@ -10976,6 +11053,7 @@ class DescribeAlarmEventListResponseBodySuspEvents extends $tea.Model {
|
|
|
10976
11053
|
stages: 'string',
|
|
10977
11054
|
startTime: 'number',
|
|
10978
11055
|
suspiciousEventCount: 'number',
|
|
11056
|
+
tacticItems: { 'type': 'array', 'itemType': DescribeAlarmEventListResponseBodySuspEventsTacticItems },
|
|
10979
11057
|
uuid: 'string',
|
|
10980
11058
|
};
|
|
10981
11059
|
}
|
|
@@ -14439,6 +14517,24 @@ class DescribeSuspEventsResponseBodySuspEventsEventNotes extends $tea.Model {
|
|
|
14439
14517
|
}
|
|
14440
14518
|
}
|
|
14441
14519
|
exports.DescribeSuspEventsResponseBodySuspEventsEventNotes = DescribeSuspEventsResponseBodySuspEventsEventNotes;
|
|
14520
|
+
class DescribeSuspEventsResponseBodySuspEventsTacticItems extends $tea.Model {
|
|
14521
|
+
constructor(map) {
|
|
14522
|
+
super(map);
|
|
14523
|
+
}
|
|
14524
|
+
static names() {
|
|
14525
|
+
return {
|
|
14526
|
+
tacticDisplayName: 'TacticDisplayName',
|
|
14527
|
+
tacticId: 'TacticId',
|
|
14528
|
+
};
|
|
14529
|
+
}
|
|
14530
|
+
static types() {
|
|
14531
|
+
return {
|
|
14532
|
+
tacticDisplayName: 'string',
|
|
14533
|
+
tacticId: 'string',
|
|
14534
|
+
};
|
|
14535
|
+
}
|
|
14536
|
+
}
|
|
14537
|
+
exports.DescribeSuspEventsResponseBodySuspEventsTacticItems = DescribeSuspEventsResponseBodySuspEventsTacticItems;
|
|
14442
14538
|
class DescribeSuspEventsResponseBodySuspEvents extends $tea.Model {
|
|
14443
14539
|
constructor(map) {
|
|
14444
14540
|
super(map);
|
|
@@ -14490,6 +14586,7 @@ class DescribeSuspEventsResponseBodySuspEvents extends $tea.Model {
|
|
|
14490
14586
|
saleVersion: 'SaleVersion',
|
|
14491
14587
|
securityEventIds: 'SecurityEventIds',
|
|
14492
14588
|
stages: 'Stages',
|
|
14589
|
+
tacticItems: 'TacticItems',
|
|
14493
14590
|
uniqueInfo: 'UniqueInfo',
|
|
14494
14591
|
uuid: 'Uuid',
|
|
14495
14592
|
};
|
|
@@ -14541,6 +14638,7 @@ class DescribeSuspEventsResponseBodySuspEvents extends $tea.Model {
|
|
|
14541
14638
|
saleVersion: 'string',
|
|
14542
14639
|
securityEventIds: 'string',
|
|
14543
14640
|
stages: 'string',
|
|
14641
|
+
tacticItems: { 'type': 'array', 'itemType': DescribeSuspEventsResponseBodySuspEventsTacticItems },
|
|
14544
14642
|
uniqueInfo: 'string',
|
|
14545
14643
|
uuid: 'string',
|
|
14546
14644
|
};
|
|
@@ -15885,6 +15983,9 @@ class Client extends openapi_client_1.default {
|
|
|
15885
15983
|
if (!tea_util_1.default.isUnset(request.sourceIp)) {
|
|
15886
15984
|
query["SourceIp"] = request.sourceIp;
|
|
15887
15985
|
}
|
|
15986
|
+
if (!tea_util_1.default.isUnset(request.tacticId)) {
|
|
15987
|
+
query["TacticId"] = request.tacticId;
|
|
15988
|
+
}
|
|
15888
15989
|
let req = new $OpenApi.OpenApiRequest({
|
|
15889
15990
|
query: openapi_util_1.default.query(query),
|
|
15890
15991
|
});
|
|
@@ -19193,8 +19294,13 @@ class Client extends openapi_client_1.default {
|
|
|
19193
19294
|
if (!tea_util_1.default.isUnset(request.uuids)) {
|
|
19194
19295
|
query["Uuids"] = request.uuids;
|
|
19195
19296
|
}
|
|
19297
|
+
let body = {};
|
|
19298
|
+
if (!tea_util_1.default.isUnset(request.tacticId)) {
|
|
19299
|
+
body["TacticId"] = request.tacticId;
|
|
19300
|
+
}
|
|
19196
19301
|
let req = new $OpenApi.OpenApiRequest({
|
|
19197
19302
|
query: openapi_util_1.default.query(query),
|
|
19303
|
+
body: openapi_util_1.default.parseToMap(body),
|
|
19198
19304
|
});
|
|
19199
19305
|
let params = new $OpenApi.Params({
|
|
19200
19306
|
action: "DescribeSuspEvents",
|
|
@@ -20493,6 +20599,35 @@ class Client extends openapi_client_1.default {
|
|
|
20493
20599
|
let runtime = new $Util.RuntimeOptions({});
|
|
20494
20600
|
return await this.modifyOperateVulWithOptions(request, runtime);
|
|
20495
20601
|
}
|
|
20602
|
+
async modifyPropertyScheduleConfigWithOptions(request, runtime) {
|
|
20603
|
+
tea_util_1.default.validateModel(request);
|
|
20604
|
+
let query = {};
|
|
20605
|
+
if (!tea_util_1.default.isUnset(request.scheduleTime)) {
|
|
20606
|
+
query["ScheduleTime"] = request.scheduleTime;
|
|
20607
|
+
}
|
|
20608
|
+
if (!tea_util_1.default.isUnset(request.type)) {
|
|
20609
|
+
query["Type"] = request.type;
|
|
20610
|
+
}
|
|
20611
|
+
let req = new $OpenApi.OpenApiRequest({
|
|
20612
|
+
query: openapi_util_1.default.query(query),
|
|
20613
|
+
});
|
|
20614
|
+
let params = new $OpenApi.Params({
|
|
20615
|
+
action: "ModifyPropertyScheduleConfig",
|
|
20616
|
+
version: "2018-12-03",
|
|
20617
|
+
protocol: "HTTPS",
|
|
20618
|
+
pathname: "/",
|
|
20619
|
+
method: "POST",
|
|
20620
|
+
authType: "AK",
|
|
20621
|
+
style: "RPC",
|
|
20622
|
+
reqBodyType: "formData",
|
|
20623
|
+
bodyType: "json",
|
|
20624
|
+
});
|
|
20625
|
+
return $tea.cast(await this.callApi(params, req, runtime), new ModifyPropertyScheduleConfigResponse({}));
|
|
20626
|
+
}
|
|
20627
|
+
async modifyPropertyScheduleConfig(request) {
|
|
20628
|
+
let runtime = new $Util.RuntimeOptions({});
|
|
20629
|
+
return await this.modifyPropertyScheduleConfigWithOptions(request, runtime);
|
|
20630
|
+
}
|
|
20496
20631
|
async modifyPushAllTaskWithOptions(request, runtime) {
|
|
20497
20632
|
tea_util_1.default.validateModel(request);
|
|
20498
20633
|
let query = {};
|