Skip to content

Commit 2ddb938

Browse files
committed
IMM SDK Auto Released By zhengrui.lj,Version:1.7.0
发布日志: 1, Make obsolete api offline. 2, Fix some bug.
1 parent d58094f commit 2ddb938

28 files changed

+266
-1005
lines changed

aliyun-python-sdk-imm/ChangeLog.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2019-01-29 Version: 1.7.0
2+
1, Make obsolete api offline.
3+
2, Fix some bug.
4+
5+
16
2019-01-11 Version: 1.6.4
27
1, CreateOfficeConversionTask, ConvertOfficeFormat support Hidecomments
38

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.6.4"
1+
__version__ = "1.7.0"
Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
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+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
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+
class CreateCADConversionTaskRequest(RpcRequest):
22+
23+
def __init__(self):
24+
RpcRequest.__init__(self, 'imm', '2017-09-06', 'CreateCADConversionTask','imm')
25+
26+
def get_SrcType(self):
27+
return self.get_query_params().get('SrcType')
28+
29+
def set_SrcType(self,SrcType):
30+
self.add_query_param('SrcType',SrcType)
31+
32+
def get_BaseCol(self):
33+
return self.get_query_params().get('BaseCol')
34+
35+
def set_BaseCol(self,BaseCol):
36+
self.add_query_param('BaseCol',BaseCol)
37+
38+
def get_NotifyTopicName(self):
39+
return self.get_query_params().get('NotifyTopicName')
40+
41+
def set_NotifyTopicName(self,NotifyTopicName):
42+
self.add_query_param('NotifyTopicName',NotifyTopicName)
43+
44+
def get_UnitWidth(self):
45+
return self.get_query_params().get('UnitWidth')
46+
47+
def set_UnitWidth(self,UnitWidth):
48+
self.add_query_param('UnitWidth',UnitWidth)
49+
50+
def get_ZoomLevel(self):
51+
return self.get_query_params().get('ZoomLevel')
52+
53+
def set_ZoomLevel(self,ZoomLevel):
54+
self.add_query_param('ZoomLevel',ZoomLevel)
55+
56+
def get_BaseRow(self):
57+
return self.get_query_params().get('BaseRow')
58+
59+
def set_BaseRow(self,BaseRow):
60+
self.add_query_param('BaseRow',BaseRow)
61+
62+
def get_ModelId(self):
63+
return self.get_query_params().get('ModelId')
64+
65+
def set_ModelId(self,ModelId):
66+
self.add_query_param('ModelId',ModelId)
67+
68+
def get_Project(self):
69+
return self.get_query_params().get('Project')
70+
71+
def set_Project(self,Project):
72+
self.add_query_param('Project',Project)
73+
74+
def get_ZoomFactor(self):
75+
return self.get_query_params().get('ZoomFactor')
76+
77+
def set_ZoomFactor(self,ZoomFactor):
78+
self.add_query_param('ZoomFactor',ZoomFactor)
79+
80+
def get_TgtType(self):
81+
return self.get_query_params().get('TgtType')
82+
83+
def set_TgtType(self,TgtType):
84+
self.add_query_param('TgtType',TgtType)
85+
86+
def get_UnitHeight(self):
87+
return self.get_query_params().get('UnitHeight')
88+
89+
def set_UnitHeight(self,UnitHeight):
90+
self.add_query_param('UnitHeight',UnitHeight)
91+
92+
def get_NotifyEndpoint(self):
93+
return self.get_query_params().get('NotifyEndpoint')
94+
95+
def set_NotifyEndpoint(self,NotifyEndpoint):
96+
self.add_query_param('NotifyEndpoint',NotifyEndpoint)
97+
98+
def get_SrcUri(self):
99+
return self.get_query_params().get('SrcUri')
100+
101+
def set_SrcUri(self,SrcUri):
102+
self.add_query_param('SrcUri',SrcUri)
103+
104+
def get_Thumbnails(self):
105+
return self.get_query_params().get('Thumbnails')
106+
107+
def set_Thumbnails(self,Thumbnails):
108+
self.add_query_param('Thumbnails',Thumbnails)
109+
110+
def get_TgtUri(self):
111+
return self.get_query_params().get('TgtUri')
112+
113+
def set_TgtUri(self,TgtUri):
114+
self.add_query_param('TgtUri',TgtUri)

aliyun-python-sdk-imm/aliyunsdkimm/request/v20170906/CreateDeleteFaceSetJobRequest.py

Lines changed: 0 additions & 54 deletions
This file was deleted.

aliyun-python-sdk-imm/aliyunsdkimm/request/v20170906/CreateFaceJobRequest.py

Lines changed: 0 additions & 36 deletions
This file was deleted.

aliyun-python-sdk-imm/aliyunsdkimm/request/v20170906/CreateGroupFacesJobRequest.py

Lines changed: 0 additions & 54 deletions
This file was deleted.

aliyun-python-sdk-imm/aliyunsdkimm/request/v20170906/CreateIndexFaceJobRequest.py

Lines changed: 0 additions & 66 deletions
This file was deleted.

aliyun-python-sdk-imm/aliyunsdkimm/request/v20170906/DeleteFaceByIdRequest.py

Lines changed: 0 additions & 48 deletions
This file was deleted.

0 commit comments

Comments
 (0)