-
Notifications
You must be signed in to change notification settings - Fork 587
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
47 changed files
with
1,874 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
2024-12-30 Version: 1.0.3 | ||
- Dataphin openapi start. | ||
|
||
2024-10-11 Version: 1.0.2 | ||
- Dataphin v4.3 openapi. | ||
|
||
|
2 changes: 1 addition & 1 deletion
2
aliyun-python-sdk-dataphin-public/aliyunsdkdataphin_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__ = '1.0.2' | ||
__version__ = '1.0.3' |
39 changes: 39 additions & 0 deletions
39
...-sdk-dataphin-public/aliyunsdkdataphin_public/request/v20230630/CreateBatchTaskRequest.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,39 @@ | ||
# 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 | ||
import json | ||
|
||
class CreateBatchTaskRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'dataphin-public', '2023-06-30', 'CreateBatchTask') | ||
self.set_protocol_type('https') | ||
self.set_method('POST') | ||
|
||
def get_OpTenantId(self): # Long | ||
return self.get_query_params().get('OpTenantId') | ||
|
||
def set_OpTenantId(self, OpTenantId): # Long | ||
self.add_query_param('OpTenantId', OpTenantId) | ||
def get_CreateCommand(self): # Struct | ||
return self.get_body_params().get('CreateCommand') | ||
|
||
def set_CreateCommand(self, CreateCommand): # Struct | ||
self.add_body_params("CreateCommand", json.dumps(CreateCommand)) |
39 changes: 39 additions & 0 deletions
39
...-sdk-dataphin-public/aliyunsdkdataphin_public/request/v20230630/CreateBizEntityRequest.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,39 @@ | ||
# 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 | ||
import json | ||
|
||
class CreateBizEntityRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'dataphin-public', '2023-06-30', 'CreateBizEntity') | ||
self.set_protocol_type('https') | ||
self.set_method('POST') | ||
|
||
def get_OpTenantId(self): # Long | ||
return self.get_query_params().get('OpTenantId') | ||
|
||
def set_OpTenantId(self, OpTenantId): # Long | ||
self.add_query_param('OpTenantId', OpTenantId) | ||
def get_CreateCommand(self): # Struct | ||
return self.get_body_params().get('CreateCommand') | ||
|
||
def set_CreateCommand(self, CreateCommand): # Struct | ||
self.add_body_params("CreateCommand", json.dumps(CreateCommand)) |
39 changes: 39 additions & 0 deletions
39
...on-sdk-dataphin-public/aliyunsdkdataphin_public/request/v20230630/CreateBizUnitRequest.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,39 @@ | ||
# 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 | ||
import json | ||
|
||
class CreateBizUnitRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'dataphin-public', '2023-06-30', 'CreateBizUnit') | ||
self.set_protocol_type('https') | ||
self.set_method('POST') | ||
|
||
def get_OpTenantId(self): # Long | ||
return self.get_query_params().get('OpTenantId') | ||
|
||
def set_OpTenantId(self, OpTenantId): # Long | ||
self.add_query_param('OpTenantId', OpTenantId) | ||
def get_CreateCommand(self): # Struct | ||
return self.get_body_params().get('CreateCommand') | ||
|
||
def set_CreateCommand(self, CreateCommand): # Struct | ||
self.add_body_params("CreateCommand", json.dumps(CreateCommand)) |
39 changes: 39 additions & 0 deletions
39
...sdk-dataphin-public/aliyunsdkdataphin_public/request/v20230630/CreateDataDomainRequest.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,39 @@ | ||
# 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 | ||
import json | ||
|
||
class CreateDataDomainRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'dataphin-public', '2023-06-30', 'CreateDataDomain') | ||
self.set_protocol_type('https') | ||
self.set_method('POST') | ||
|
||
def get_OpTenantId(self): # Long | ||
return self.get_query_params().get('OpTenantId') | ||
|
||
def set_OpTenantId(self, OpTenantId): # Long | ||
self.add_query_param('OpTenantId', OpTenantId) | ||
def get_CreateCommand(self): # Struct | ||
return self.get_body_params().get('CreateCommand') | ||
|
||
def set_CreateCommand(self, CreateCommand): # Struct | ||
self.add_body_params("CreateCommand", json.dumps(CreateCommand)) |
39 changes: 39 additions & 0 deletions
39
...k-dataphin-public/aliyunsdkdataphin_public/request/v20230630/CreatePipelineNodeRequest.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,39 @@ | ||
# 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 | ||
import json | ||
|
||
class CreatePipelineNodeRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'dataphin-public', '2023-06-30', 'CreatePipelineNode') | ||
self.set_protocol_type('https') | ||
self.set_method('POST') | ||
|
||
def get_OpTenantId(self): # Long | ||
return self.get_query_params().get('OpTenantId') | ||
|
||
def set_OpTenantId(self, OpTenantId): # Long | ||
self.add_query_param('OpTenantId', OpTenantId) | ||
def get_CreatePipelineNodeCommand(self): # Struct | ||
return self.get_body_params().get('CreatePipelineNodeCommand') | ||
|
||
def set_CreatePipelineNodeCommand(self, CreatePipelineNodeCommand): # Struct | ||
self.add_body_params("CreatePipelineNodeCommand", json.dumps(CreatePipelineNodeCommand)) |
39 changes: 39 additions & 0 deletions
39
...n-public/aliyunsdkdataphin_public/request/v20230630/CreateStreamBatchJobMappingRequest.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,39 @@ | ||
# 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 | ||
import json | ||
|
||
class CreateStreamBatchJobMappingRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'dataphin-public', '2023-06-30', 'CreateStreamBatchJobMapping') | ||
self.set_protocol_type('https') | ||
self.set_method('POST') | ||
|
||
def get_OpTenantId(self): # Long | ||
return self.get_query_params().get('OpTenantId') | ||
|
||
def set_OpTenantId(self, OpTenantId): # Long | ||
self.add_query_param('OpTenantId', OpTenantId) | ||
def get_StreamBatchJobMappingCreateCommand(self): # Struct | ||
return self.get_body_params().get('StreamBatchJobMappingCreateCommand') | ||
|
||
def set_StreamBatchJobMappingCreateCommand(self, StreamBatchJobMappingCreateCommand): # Struct | ||
self.add_body_params("StreamBatchJobMappingCreateCommand", json.dumps(StreamBatchJobMappingCreateCommand)) |
39 changes: 39 additions & 0 deletions
39
...-sdk-dataphin-public/aliyunsdkdataphin_public/request/v20230630/DeleteBatchTaskRequest.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,39 @@ | ||
# 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 | ||
import json | ||
|
||
class DeleteBatchTaskRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'dataphin-public', '2023-06-30', 'DeleteBatchTask') | ||
self.set_protocol_type('https') | ||
self.set_method('POST') | ||
|
||
def get_OpTenantId(self): # Long | ||
return self.get_query_params().get('OpTenantId') | ||
|
||
def set_OpTenantId(self, OpTenantId): # Long | ||
self.add_query_param('OpTenantId', OpTenantId) | ||
def get_DeleteCommand(self): # Struct | ||
return self.get_body_params().get('DeleteCommand') | ||
|
||
def set_DeleteCommand(self, DeleteCommand): # Struct | ||
self.add_body_params("DeleteCommand", json.dumps(DeleteCommand)) |
48 changes: 48 additions & 0 deletions
48
...-sdk-dataphin-public/aliyunsdkdataphin_public/request/v20230630/DeleteBizEntityRequest.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,48 @@ | ||
# 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 | ||
|
||
class DeleteBizEntityRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'dataphin-public', '2023-06-30', 'DeleteBizEntity') | ||
self.set_protocol_type('https') | ||
self.set_method('POST') | ||
|
||
def get_OpTenantId(self): # Long | ||
return self.get_query_params().get('OpTenantId') | ||
|
||
def set_OpTenantId(self, OpTenantId): # Long | ||
self.add_query_param('OpTenantId', OpTenantId) | ||
def get_Id(self): # Long | ||
return self.get_query_params().get('Id') | ||
|
||
def set_Id(self, Id): # Long | ||
self.add_query_param('Id', Id) | ||
def get_Type(self): # String | ||
return self.get_query_params().get('Type') | ||
|
||
def set_Type(self, Type): # String | ||
self.add_query_param('Type', Type) | ||
def get_BizUnitId(self): # Long | ||
return self.get_query_params().get('BizUnitId') | ||
|
||
def set_BizUnitId(self, BizUnitId): # Long | ||
self.add_query_param('BizUnitId', BizUnitId) |
38 changes: 38 additions & 0 deletions
38
...on-sdk-dataphin-public/aliyunsdkdataphin_public/request/v20230630/DeleteBizUnitRequest.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,38 @@ | ||
# 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 | ||
|
||
class DeleteBizUnitRequest(RpcRequest): | ||
|
||
def __init__(self): | ||
RpcRequest.__init__(self, 'dataphin-public', '2023-06-30', 'DeleteBizUnit') | ||
self.set_protocol_type('https') | ||
self.set_method('POST') | ||
|
||
def get_OpTenantId(self): # Long | ||
return self.get_query_params().get('OpTenantId') | ||
|
||
def set_OpTenantId(self, OpTenantId): # Long | ||
self.add_query_param('OpTenantId', OpTenantId) | ||
def get_Id(self): # Long | ||
return self.get_query_params().get('Id') | ||
|
||
def set_Id(self, Id): # Long | ||
self.add_query_param('Id', Id) |
Oops, something went wrong.