Skip to content

Commit

Permalink
Generated 2020-05-18 for dataworks-public.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Sep 29, 2024
1 parent bb7cab3 commit f0133be
Show file tree
Hide file tree
Showing 215 changed files with 11,631 additions and 388 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.36.1991
1.36.1992
148 changes: 148 additions & 0 deletions dataworks-public/CMakeLists.txt

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed 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.
*/

#ifndef ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_ADDRECOGNIZERULEREQUEST_H_
#define ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_ADDRECOGNIZERULEREQUEST_H_

#include <alibabacloud/dataworks-public/Dataworks_publicExport.h>
#include <alibabacloud/core/RpcServiceRequest.h>
#include <string>
#include <vector>
#include <map>

namespace AlibabaCloud {
namespace Dataworks_public {
namespace Model {
class ALIBABACLOUD_DATAWORKS_PUBLIC_EXPORT AddRecognizeRuleRequest : public RpcServiceRequest {
public:
AddRecognizeRuleRequest();
~AddRecognizeRuleRequest();
std::string getLevel() const;
void setLevel(const std::string &level);
std::string getColScan() const;
void setColScan(const std::string &colScan);
std::string getColExclude() const;
void setColExclude(const std::string &colExclude);
std::string getContentScan() const;
void setContentScan(const std::string &contentScan);
int getOperationType() const;
void setOperationType(int operationType);
std::string getTemplateId() const;
void setTemplateId(const std::string &templateId);
std::string getRecognizeRulesType() const;
void setRecognizeRulesType(const std::string &recognizeRulesType);
std::string getCommentScan() const;
void setCommentScan(const std::string &commentScan);
std::string getAccountName() const;
void setAccountName(const std::string &accountName);
std::string getSensitiveDescription() const;
void setSensitiveDescription(const std::string &sensitiveDescription);
std::string getTenantId() const;
void setTenantId(const std::string &tenantId);
std::string getRecognizeRules() const;
void setRecognizeRules(const std::string &recognizeRules);
int getHitThreshold() const;
void setHitThreshold(int hitThreshold);
std::string getSensitiveName() const;
void setSensitiveName(const std::string &sensitiveName);
std::string getNodeParent() const;
void setNodeParent(const std::string &nodeParent);
std::string getLevelName() const;
void setLevelName(const std::string &levelName);
std::string getNodeId() const;
void setNodeId(const std::string &nodeId);
int getStatus() const;
void setStatus(int status);

private:
std::string level_;
std::string colScan_;
std::string colExclude_;
std::string contentScan_;
int operationType_;
std::string templateId_;
std::string recognizeRulesType_;
std::string commentScan_;
std::string accountName_;
std::string sensitiveDescription_;
std::string tenantId_;
std::string recognizeRules_;
int hitThreshold_;
std::string sensitiveName_;
std::string nodeParent_;
std::string levelName_;
std::string nodeId_;
int status_;
};
} // namespace Model
} // namespace Dataworks_public
} // namespace AlibabaCloud
#endif // !ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_ADDRECOGNIZERULEREQUEST_H_
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed 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.
*/

#ifndef ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_ADDRECOGNIZERULERESULT_H_
#define ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_ADDRECOGNIZERULERESULT_H_

#include <string>
#include <vector>
#include <utility>
#include <alibabacloud/core/ServiceResult.h>
#include <alibabacloud/dataworks-public/Dataworks_publicExport.h>

namespace AlibabaCloud
{
namespace Dataworks_public
{
namespace Model
{
class ALIBABACLOUD_DATAWORKS_PUBLIC_EXPORT AddRecognizeRuleResult : public ServiceResult
{
public:


AddRecognizeRuleResult();
explicit AddRecognizeRuleResult(const std::string &payload);
~AddRecognizeRuleResult();

protected:
void parse(const std::string &payload);
private:

};
}
}
}
#endif // !ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_ADDRECOGNIZERULERESULT_H_
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ class ALIBABACLOUD_DATAWORKS_PUBLIC_EXPORT CreateFileRequest : public RpcService
void setInputList(const std::string &inputList);
bool getCreateFolderIfNotExists() const;
void setCreateFolderIfNotExists(bool createFolderIfNotExists);
bool getApplyScheduleImmediately() const;
void setApplyScheduleImmediately(bool applyScheduleImmediately);
std::string getRerunMode() const;
void setRerunMode(const std::string &rerunMode);
std::string getConnectionName() const;
Expand Down Expand Up @@ -108,6 +110,7 @@ class ALIBABACLOUD_DATAWORKS_PUBLIC_EXPORT CreateFileRequest : public RpcService
int autoRerunIntervalMillis_;
std::string inputList_;
bool createFolderIfNotExists_;
bool applyScheduleImmediately_;
std::string rerunMode_;
std::string connectionName_;
std::string outputParameters_;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed 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.
*/

#ifndef ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_CREATEPROJECTREQUEST_H_
#define ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_CREATEPROJECTREQUEST_H_

#include <alibabacloud/dataworks-public/Dataworks_publicExport.h>
#include <alibabacloud/core/RpcServiceRequest.h>
#include <string>
#include <vector>
#include <map>

namespace AlibabaCloud {
namespace Dataworks_public {
namespace Model {
class ALIBABACLOUD_DATAWORKS_PUBLIC_EXPORT CreateProjectRequest : public RpcServiceRequest {
public:
struct Tags {
std::string value;
std::string key;
};
CreateProjectRequest();
~CreateProjectRequest();
std::string getProjectName() const;
void setProjectName(const std::string &projectName);
bool getDisableDevelopment() const;
void setDisableDevelopment(bool disableDevelopment);
std::string getClientToken() const;
void setClientToken(const std::string &clientToken);
std::string getProjectIdentifier() const;
void setProjectIdentifier(const std::string &projectIdentifier);
std::vector<Tags> getTags() const;
void setTags(const std::vector<Tags> &tags);
std::string getProjectDescription() const;
void setProjectDescription(const std::string &projectDescription);
int getIsAllowDownload() const;
void setIsAllowDownload(int isAllowDownload);
std::string getResourceManagerResourceGroupId() const;
void setResourceManagerResourceGroupId(const std::string &resourceManagerResourceGroupId);
int getProjectMode() const;
void setProjectMode(int projectMode);

private:
std::string projectName_;
bool disableDevelopment_;
std::string clientToken_;
std::string projectIdentifier_;
std::vector<Tags> tags_;
std::string projectDescription_;
int isAllowDownload_;
std::string resourceManagerResourceGroupId_;
int projectMode_;
};
} // namespace Model
} // namespace Dataworks_public
} // namespace AlibabaCloud
#endif // !ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_CREATEPROJECTREQUEST_H_
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed 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.
*/

#ifndef ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_CREATEPROJECTRESULT_H_
#define ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_CREATEPROJECTRESULT_H_

#include <string>
#include <vector>
#include <utility>
#include <alibabacloud/core/ServiceResult.h>
#include <alibabacloud/dataworks-public/Dataworks_publicExport.h>

namespace AlibabaCloud
{
namespace Dataworks_public
{
namespace Model
{
class ALIBABACLOUD_DATAWORKS_PUBLIC_EXPORT CreateProjectResult : public ServiceResult
{
public:


CreateProjectResult();
explicit CreateProjectResult(const std::string &payload);
~CreateProjectResult();
int getHttpStatusCode()const;
long getData()const;
bool getSuccess()const;

protected:
void parse(const std::string &payload);
private:
int httpStatusCode_;
long data_;
bool success_;

};
}
}
}
#endif // !ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_CREATEPROJECTRESULT_H_
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,15 @@ class ALIBABACLOUD_DATAWORKS_PUBLIC_EXPORT DeleteLineageRelationRequest : public
void setSrcEntityQualifiedName(const std::string &srcEntityQualifiedName);
std::string getDestEntityQualifiedName() const;
void setDestEntityQualifiedName(const std::string &destEntityQualifiedName);
std::string getRelationshipType() const;
void setRelationshipType(const std::string &relationshipType);
std::string getRelationshipGuid() const;
void setRelationshipGuid(const std::string &relationshipGuid);

private:
std::string srcEntityQualifiedName_;
std::string destEntityQualifiedName_;
std::string relationshipType_;
std::string relationshipGuid_;
};
} // namespace Model
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/*
* Copyright 2009-2017 Alibaba Cloud All rights reserved.
*
* Licensed 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.
*/

#ifndef ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_DELETERECOGNIZERULEREQUEST_H_
#define ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_DELETERECOGNIZERULEREQUEST_H_

#include <alibabacloud/dataworks-public/Dataworks_publicExport.h>
#include <alibabacloud/core/RpcServiceRequest.h>
#include <string>
#include <vector>
#include <map>

namespace AlibabaCloud {
namespace Dataworks_public {
namespace Model {
class ALIBABACLOUD_DATAWORKS_PUBLIC_EXPORT DeleteRecognizeRuleRequest : public RpcServiceRequest {
public:
DeleteRecognizeRuleRequest();
~DeleteRecognizeRuleRequest();
std::string getSensitiveId() const;
void setSensitiveId(const std::string &sensitiveId);
std::string getTenantId() const;
void setTenantId(const std::string &tenantId);

private:
std::string sensitiveId_;
std::string tenantId_;
};
} // namespace Model
} // namespace Dataworks_public
} // namespace AlibabaCloud
#endif // !ALIBABACLOUD_DATAWORKS_PUBLIC_MODEL_DELETERECOGNIZERULEREQUEST_H_
Loading

0 comments on commit f0133be

Please sign in to comment.