Skip to content

Commit

Permalink
Supported ApproveOrder request parameter NewApproverList.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Apr 26, 2024
1 parent e490ca6 commit 1ea8294
Show file tree
Hide file tree
Showing 4 changed files with 92 additions and 1 deletion.
5 changes: 5 additions & 0 deletions aliyun-python-sdk-dms-enterprise/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2024-04-26 Version: 1.53.9
- Supported ApproveOrder request parameter NewApproverList.
- Add ListSensitiveColumnInfo API.
- Supported GetDataCorrectOrderDetail return ConfigDetail Information.

2024-04-18 Version: 1.53.8
- Supported ApproveOrder request parameter NewApproverList.
- Add ListSensitiveColumnInfo API.
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.53.8'
__version__ = '1.53.9'
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

from aliyunsdkcore.request import RpcRequest
from aliyunsdkdms_enterprise.endpoint import endpoint_data

class GetTableDesignProjectFlowRequest(RpcRequest):

def __init__(self):
RpcRequest.__init__(self, 'dms-enterprise', '2018-11-01', 'GetTableDesignProjectFlow','dms-enterprise')
self.set_method('POST')

if hasattr(self, "endpoint_map"):
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
if hasattr(self, "endpoint_regional"):
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())

def get_Tid(self): # Long
return self.get_query_params().get('Tid')

def set_Tid(self, Tid): # Long
self.add_query_param('Tid', Tid)
def get_OrderId(self): # Long
return self.get_query_params().get('OrderId')

def set_OrderId(self, OrderId): # Long
self.add_query_param('OrderId', OrderId)
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
#
# http://www.apache.org/licenses/LICENSE-2.0
#
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.

from aliyunsdkcore.request import RpcRequest
from aliyunsdkdms_enterprise.endpoint import endpoint_data

class GetTableDesignProjectInfoRequest(RpcRequest):

def __init__(self):
RpcRequest.__init__(self, 'dms-enterprise', '2018-11-01', 'GetTableDesignProjectInfo','dms-enterprise')
self.set_method('POST')

if hasattr(self, "endpoint_map"):
setattr(self, "endpoint_map", endpoint_data.getEndpointMap())
if hasattr(self, "endpoint_regional"):
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())

def get_Tid(self): # Long
return self.get_query_params().get('Tid')

def set_Tid(self, Tid): # Long
self.add_query_param('Tid', Tid)
def get_OrderId(self): # Long
return self.get_query_params().get('OrderId')

def set_OrderId(self, OrderId): # Long
self.add_query_param('OrderId', OrderId)

0 comments on commit 1ea8294

Please sign in to comment.