-
Notifications
You must be signed in to change notification settings - Fork 585
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support CreateDISyncTask with large param.
- Loading branch information
Showing
3 changed files
with
68 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
aliyun-python-sdk-dataworks-public/aliyunsdkdataworks_public/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '5.1.11' | ||
__version__ = '6.1.7' |
64 changes: 64 additions & 0 deletions
64
...dataworks-public/aliyunsdkdataworks_public/request/v20200518/ListCheckProcessesRequest.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# 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 aliyunsdkdataworks_public.endpoint import endpoint_data | ||
|
||
class ListCheckProcessesRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'dataworks-public', '2020-05-18', 'ListCheckProcesses') | ||
self.set_protocol_type('https') | ||
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_EventCode(self): # String | ||
return self.get_body_params().get('EventCode') | ||
|
||
def set_EventCode(self, EventCode): # String | ||
self.add_body_params('EventCode', EventCode) | ||
def get_Operator(self): # String | ||
return self.get_body_params().get('Operator') | ||
|
||
def set_Operator(self, Operator): # String | ||
self.add_body_params('Operator', Operator) | ||
def get_PageNumber(self): # Integer | ||
return self.get_body_params().get('PageNumber') | ||
|
||
def set_PageNumber(self, PageNumber): # Integer | ||
self.add_body_params('PageNumber', PageNumber) | ||
def get_PageSize(self): # Integer | ||
return self.get_body_params().get('PageSize') | ||
|
||
def set_PageSize(self, PageSize): # Integer | ||
self.add_body_params('PageSize', PageSize) | ||
def get_ProjectId(self): # Long | ||
return self.get_body_params().get('ProjectId') | ||
|
||
def set_ProjectId(self, ProjectId): # Long | ||
self.add_body_params('ProjectId', ProjectId) | ||
def get_Status(self): # String | ||
return self.get_body_params().get('Status') | ||
|
||
def set_Status(self, Status): # String | ||
self.add_body_params('Status', Status) |