Skip to content

Commit 06bdd66

Browse files
committed
Supported scheduler for outbound call.
1 parent 4f7d64d commit 06bdd66

File tree

5 files changed

+142
-1
lines changed

5 files changed

+142
-1
lines changed

aliyun-python-sdk-outboundbot/ChangeLog.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-02-04 Version: 1.0.5
2+
- Supported scheduler for outbound call.
3+
14
2020-12-02 Version: 1.0.4
25
- Update version.
36

Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.0.4'
1+
__version__ = '1.0.5'
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
from aliyunsdkoutboundbot.endpoint import endpoint_data
22+
23+
class InflightTaskTimeoutRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'OutboundBot', '2019-12-26', 'InflightTaskTimeout','outboundbot')
27+
self.set_method('POST')
28+
if hasattr(self, "endpoint_map"):
29+
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
30+
if hasattr(self, "endpoint_regional"):
31+
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
32+
33+
34+
def get_InstanceId(self):
35+
return self.get_query_params().get('InstanceId')
36+
37+
def set_InstanceId(self,InstanceId):
38+
self.add_query_param('InstanceId',InstanceId)
39+
40+
def get_InstanceOwnerId(self):
41+
return self.get_query_params().get('InstanceOwnerId')
42+
43+
def set_InstanceOwnerId(self,InstanceOwnerId):
44+
self.add_query_param('InstanceOwnerId',InstanceOwnerId)
45+
46+
def get_TaskId(self):
47+
return self.get_query_params().get('TaskId')
48+
49+
def set_TaskId(self,TaskId):
50+
self.add_query_param('TaskId',TaskId)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
from aliyunsdkoutboundbot.endpoint import endpoint_data
22+
23+
class ListSchedulerInstancesRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'OutboundBot', '2019-12-26', 'ListSchedulerInstances','outboundbot')
27+
self.set_method('POST')
28+
if hasattr(self, "endpoint_map"):
29+
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
30+
if hasattr(self, "endpoint_regional"):
31+
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
32+
33+
34+
def get_InstanceOwnerId(self):
35+
return self.get_query_params().get('InstanceOwnerId')
36+
37+
def set_InstanceOwnerId(self,InstanceOwnerId):
38+
self.add_query_param('InstanceOwnerId',InstanceOwnerId)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
#
13+
# Unless required by applicable law or agreed to in writing,
14+
# software distributed under the License is distributed on an
15+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16+
# KIND, either express or implied. See the License for the
17+
# specific language governing permissions and limitations
18+
# under the License.
19+
20+
from aliyunsdkcore.request import RpcRequest
21+
from aliyunsdkoutboundbot.endpoint import endpoint_data
22+
23+
class TaskPreparingRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'OutboundBot', '2019-12-26', 'TaskPreparing','outboundbot')
27+
self.set_method('POST')
28+
if hasattr(self, "endpoint_map"):
29+
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
30+
if hasattr(self, "endpoint_regional"):
31+
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
32+
33+
34+
def get_JobId(self):
35+
return self.get_query_params().get('JobId')
36+
37+
def set_JobId(self,JobId):
38+
self.add_query_param('JobId',JobId)
39+
40+
def get_InstanceId(self):
41+
return self.get_query_params().get('InstanceId')
42+
43+
def set_InstanceId(self,InstanceId):
44+
self.add_query_param('InstanceId',InstanceId)
45+
46+
def get_InstanceOwnerId(self):
47+
return self.get_query_params().get('InstanceOwnerId')
48+
49+
def set_InstanceOwnerId(self,InstanceOwnerId):
50+
self.add_query_param('InstanceOwnerId',InstanceOwnerId)

0 commit comments

Comments
 (0)