Skip to content

Commit 387f606

Browse files
committed
Supported cro algorithm.
1 parent 80ba74e commit 387f606

22 files changed

+67
-20
lines changed

aliyun-python-sdk-reid_cloud/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2021-08-31 Version: 1.2.2
2+
- Supported cro algorithm.
3+
14
2021-04-19 Version: 1.2.1
25
- Generated 2020-10-29 for `reid_cloud`.
36

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.2.1'
1+
__version__ = '1.2.2'

aliyun-python-sdk-reid_cloud/aliyunsdkreid_cloud/request/v20201029/DescribeBaseStatisticsRequest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
class DescribeBaseStatisticsRequest(RpcRequest):
2424

2525
def __init__(self):
26-
RpcRequest.__init__(self, 'reid_cloud', '2020-10-29', 'DescribeBaseStatistics','1.2.1')
26+
RpcRequest.__init__(self, 'reid_cloud', '2020-10-29', 'DescribeBaseStatistics','1.2.2')
2727
self.set_method('POST')
2828
if hasattr(self, "endpoint_map"):
2929
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())

aliyun-python-sdk-reid_cloud/aliyunsdkreid_cloud/request/v20201029/DescribeCameraStatisticsRequest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
class DescribeCameraStatisticsRequest(RpcRequest):
2424

2525
def __init__(self):
26-
RpcRequest.__init__(self, 'reid_cloud', '2020-10-29', 'DescribeCameraStatistics','1.2.1')
26+
RpcRequest.__init__(self, 'reid_cloud', '2020-10-29', 'DescribeCameraStatistics','1.2.2')
2727
self.set_method('POST')
2828
if hasattr(self, "endpoint_map"):
2929
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())

aliyun-python-sdk-reid_cloud/aliyunsdkreid_cloud/request/v20201029/DescribeCursorRequest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
class DescribeCursorRequest(RpcRequest):
2424

2525
def __init__(self):
26-
RpcRequest.__init__(self, 'reid_cloud', '2020-10-29', 'DescribeCursor','1.2.1')
26+
RpcRequest.__init__(self, 'reid_cloud', '2020-10-29', 'DescribeCursor','1.2.2')
2727
self.set_method('POST')
2828
if hasattr(self, "endpoint_map"):
2929
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
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 aliyunsdkreid_cloud.endpoint import endpoint_data
22+
23+
class DescribeCustomerFlowByLocationOfflineRequest(RpcRequest):
24+
25+
def __init__(self):
26+
RpcRequest.__init__(self, 'reid_cloud', '2020-10-29', 'DescribeCustomerFlowByLocationOffline','1.2.2')
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_StartDate(self):
35+
return self.get_body_params().get('StartDate')
36+
37+
def set_StartDate(self,StartDate):
38+
self.add_body_params('StartDate', StartDate)
39+
40+
def get_StoreId(self):
41+
return self.get_body_params().get('StoreId')
42+
43+
def set_StoreId(self,StoreId):
44+
self.add_body_params('StoreId', StoreId)

aliyun-python-sdk-reid_cloud/aliyunsdkreid_cloud/request/v20201029/DescribeCustomerFlowByLocationRequest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
class DescribeCustomerFlowByLocationRequest(RpcRequest):
2424

2525
def __init__(self):
26-
RpcRequest.__init__(self, 'reid_cloud', '2020-10-29', 'DescribeCustomerFlowByLocation','1.2.1')
26+
RpcRequest.__init__(self, 'reid_cloud', '2020-10-29', 'DescribeCustomerFlowByLocation','1.2.2')
2727
self.set_method('POST')
2828
if hasattr(self, "endpoint_map"):
2929
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())

aliyun-python-sdk-reid_cloud/aliyunsdkreid_cloud/request/v20201029/DescribeDevicesRequest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
class DescribeDevicesRequest(RpcRequest):
2424

2525
def __init__(self):
26-
RpcRequest.__init__(self, 'reid_cloud', '2020-10-29', 'DescribeDevices','1.2.1')
26+
RpcRequest.__init__(self, 'reid_cloud', '2020-10-29', 'DescribeDevices','1.2.2')
2727
self.set_method('POST')
2828
if hasattr(self, "endpoint_map"):
2929
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())

aliyun-python-sdk-reid_cloud/aliyunsdkreid_cloud/request/v20201029/DescribeHeatMapRequest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
class DescribeHeatMapRequest(RpcRequest):
2424

2525
def __init__(self):
26-
RpcRequest.__init__(self, 'reid_cloud', '2020-10-29', 'DescribeHeatMap','1.2.1')
26+
RpcRequest.__init__(self, 'reid_cloud', '2020-10-29', 'DescribeHeatMap','1.2.2')
2727
self.set_method('POST')
2828
if hasattr(self, "endpoint_map"):
2929
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())

aliyun-python-sdk-reid_cloud/aliyunsdkreid_cloud/request/v20201029/DescribeImageUrlsRequest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
class DescribeImageUrlsRequest(RpcRequest):
2424

2525
def __init__(self):
26-
RpcRequest.__init__(self, 'reid_cloud', '2020-10-29', 'DescribeImageUrls','1.2.1')
26+
RpcRequest.__init__(self, 'reid_cloud', '2020-10-29', 'DescribeImageUrls','1.2.2')
2727
self.set_method('POST')
2828
if hasattr(self, "endpoint_map"):
2929
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())

0 commit comments

Comments
 (0)