Skip to content

Commit 62ada84

Browse files
committed
Generated 2020-05-18 for dataworks-public.
1 parent 75d12a1 commit 62ada84

File tree

11 files changed

+73
-177
lines changed

11 files changed

+73
-177
lines changed

aliyun-python-sdk-dataworks-public/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-03-27 Version: 6.1.10
2+
- Generated 2020-05-18 for `dataworks-public`.
3+
14
2024-11-21 Version: 6.1.7
25
- Support CreateDISyncTask with large param.
36

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

aliyun-python-sdk-dataworks-public/aliyunsdkdataworks_public/request/v20200518/CreateFileRequest.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ def get_FileType(self): # Integer
3636

3737
def set_FileType(self, FileType): # Integer
3838
self.add_body_params('FileType', FileType)
39+
def get_ImageId(self): # String
40+
return self.get_body_params().get('ImageId')
41+
42+
def set_ImageId(self, ImageId): # String
43+
self.add_body_params('ImageId', ImageId)
3944
def get_DependentNodeIdList(self): # String
4045
return self.get_body_params().get('DependentNodeIdList')
4146

@@ -51,6 +56,11 @@ def get_ProjectIdentifier(self): # String
5156

5257
def set_ProjectIdentifier(self, ProjectIdentifier): # String
5358
self.add_body_params('ProjectIdentifier', ProjectIdentifier)
59+
def get_Timeout(self): # Integer
60+
return self.get_body_params().get('Timeout')
61+
62+
def set_Timeout(self, Timeout): # Integer
63+
self.add_body_params('Timeout', Timeout)
5464
def get_ResourceGroupId(self): # Long
5565
return self.get_body_params().get('ResourceGroupId')
5666

aliyun-python-sdk-dataworks-public/aliyunsdkdataworks_public/request/v20200518/CreatePermissionApplyOrderRequest.py

Lines changed: 25 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,21 @@ def __init__(self):
3131
if hasattr(self, "endpoint_regional"):
3232
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
3333

34+
def get_ApplyUserIds(self): # String
35+
return self.get_query_params().get('ApplyUserIds')
36+
37+
def set_ApplyUserIds(self, ApplyUserIds): # String
38+
self.add_query_param('ApplyUserIds', ApplyUserIds)
39+
def get_Deadline(self): # Long
40+
return self.get_query_params().get('Deadline')
41+
42+
def set_Deadline(self, Deadline): # Long
43+
self.add_query_param('Deadline', Deadline)
44+
def get_EngineType(self): # String
45+
return self.get_query_params().get('EngineType')
46+
47+
def set_EngineType(self, EngineType): # String
48+
self.add_query_param('EngineType', EngineType)
3449
def get_ApplyReason(self): # String
3550
return self.get_query_params().get('ApplyReason')
3651

@@ -50,20 +65,22 @@ def set_ApplyObjects(self, ApplyObject): # RepeatList
5065
for depth2 in range(len(ApplyObject[depth1].get('ColumnMetaList'))):
5166
if ApplyObject[depth1].get('ColumnMetaList')[depth2].get('Name') is not None:
5267
self.add_query_param('ApplyObject.' + str(depth1 + 1) + '.ColumnMetaList.' + str(depth2 + 1) + '.Name', ApplyObject[depth1].get('ColumnMetaList')[depth2].get('Name'))
68+
if ApplyObject[depth1].get('ColumnMetaList')[depth2].get('Actions') is not None:
69+
self.add_query_param('ApplyObject.' + str(depth1 + 1) + '.ColumnMetaList.' + str(depth2 + 1) + '.Actions', ApplyObject[depth1].get('ColumnMetaList')[depth2].get('Actions'))
5370
if ApplyObject[depth1].get('Name') is not None:
5471
self.add_query_param('ApplyObject.' + str(depth1 + 1) + '.Name', ApplyObject[depth1].get('Name'))
5572
if ApplyObject[depth1].get('Actions') is not None:
5673
self.add_query_param('ApplyObject.' + str(depth1 + 1) + '.Actions', ApplyObject[depth1].get('Actions'))
57-
def get_ApplyUserIds(self): # String
58-
return self.get_query_params().get('ApplyUserIds')
74+
def get_CatalogName(self): # String
75+
return self.get_query_params().get('CatalogName')
5976

60-
def set_ApplyUserIds(self, ApplyUserIds): # String
61-
self.add_query_param('ApplyUserIds', ApplyUserIds)
62-
def get_Deadline(self): # Long
63-
return self.get_query_params().get('Deadline')
77+
def set_CatalogName(self, CatalogName): # String
78+
self.add_query_param('CatalogName', CatalogName)
79+
def get_ApplyType(self): # String
80+
return self.get_query_params().get('ApplyType')
6481

65-
def set_Deadline(self, Deadline): # Long
66-
self.add_query_param('Deadline', Deadline)
82+
def set_ApplyType(self, ApplyType): # String
83+
self.add_query_param('ApplyType', ApplyType)
6784
def get_WorkspaceId(self): # Integer
6885
return self.get_query_params().get('WorkspaceId')
6986

@@ -74,8 +91,3 @@ def get_OrderType(self): # Integer
7491

7592
def set_OrderType(self, OrderType): # Integer
7693
self.add_query_param('OrderType', OrderType)
77-
def get_EngineType(self): # String
78-
return self.get_query_params().get('EngineType')
79-
80-
def set_EngineType(self, EngineType): # String
81-
self.add_query_param('EngineType', EngineType)

aliyun-python-sdk-dataworks-public/aliyunsdkdataworks_public/request/v20200518/ListCheckProcessesRequest.py

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ def __init__(self):
3232
if hasattr(self, "endpoint_regional"):
3333
setattr(self, "endpoint_regional", endpoint_data.getEndpointRegional())
3434

35-
def get_EventCode(self): # String
36-
return self.get_body_params().get('EventCode')
35+
def get_MessageId(self): # String
36+
return self.get_body_params().get('MessageId')
3737

38-
def set_EventCode(self, EventCode): # String
39-
self.add_body_params('EventCode', EventCode)
38+
def set_MessageId(self, MessageId): # String
39+
self.add_body_params('MessageId', MessageId)
4040
def get_Operator(self): # String
4141
return self.get_body_params().get('Operator')
4242

@@ -57,6 +57,11 @@ def get_ProjectId(self): # Long
5757

5858
def set_ProjectId(self, ProjectId): # Long
5959
self.add_body_params('ProjectId', ProjectId)
60+
def get_EventCode(self): # String
61+
return self.get_body_params().get('EventCode')
62+
63+
def set_EventCode(self, EventCode): # String
64+
self.add_body_params('EventCode', EventCode)
6065
def get_Status(self): # String
6166
return self.get_body_params().get('Status')
6267

aliyun-python-sdk-dataworks-public/aliyunsdkdataworks_public/request/v20200518/ListFilesRequest.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ def get_FileIdIn(self): # String
6666

6767
def set_FileIdIn(self, FileIdIn): # String
6868
self.add_body_params('FileIdIn', FileIdIn)
69+
def get_LastEditUser(self): # String
70+
return self.get_body_params().get('LastEditUser')
71+
72+
def set_LastEditUser(self, LastEditUser): # String
73+
self.add_body_params('LastEditUser', LastEditUser)
6974
def get_FileFolderPath(self): # String
7075
return self.get_body_params().get('FileFolderPath')
7176

aliyun-python-sdk-dataworks-public/aliyunsdkdataworks_public/request/v20200518/ListPermissionApplyOrdersRequest.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ def get_MaxComputeProjectName(self): # String
6666

6767
def set_MaxComputeProjectName(self, MaxComputeProjectName): # String
6868
self.add_query_param('MaxComputeProjectName', MaxComputeProjectName)
69+
def get_CatalogName(self): # String
70+
return self.get_query_params().get('CatalogName')
71+
72+
def set_CatalogName(self, CatalogName): # String
73+
self.add_query_param('CatalogName', CatalogName)
6974
def get_EndTime(self): # Long
7075
return self.get_query_params().get('EndTime')
7176

@@ -76,6 +81,11 @@ def get_FlowStatus(self): # Integer
7681

7782
def set_FlowStatus(self, FlowStatus): # Integer
7883
self.add_query_param('FlowStatus', FlowStatus)
84+
def get_ApplyType(self): # String
85+
return self.get_query_params().get('ApplyType')
86+
87+
def set_ApplyType(self, ApplyType): # String
88+
self.add_query_param('ApplyType', ApplyType)
7989
def get_WorkspaceId(self): # Integer
8090
return self.get_query_params().get('WorkspaceId')
8191

aliyun-python-sdk-dataworks-public/aliyunsdkdataworks_public/request/v20200518/MountDirectoryRequest.py

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

aliyun-python-sdk-dataworks-public/aliyunsdkdataworks_public/request/v20200518/RevokeColumnPermissionRequest.py

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

aliyun-python-sdk-dataworks-public/aliyunsdkdataworks_public/request/v20200518/UmountDirectoryRequest.py

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

0 commit comments

Comments
 (0)