Skip to content

Commit

Permalink
Support CreateDISyncTask with large param.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Nov 21, 2024
1 parent 7fcab73 commit 58ca08e
Show file tree
Hide file tree
Showing 3 changed files with 68 additions and 1 deletion.
3 changes: 3 additions & 0 deletions aliyun-python-sdk-dataworks-public/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-11-21 Version: 6.1.7
- Support CreateDISyncTask with large param.

2024-10-17 Version: 5.1.11
- Generated 2020-05-18 for `dataworks-public`.

Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '5.1.11'
__version__ = '6.1.7'
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)

0 comments on commit 58ca08e

Please sign in to comment.