Generated 2020-05-18 for dataworks-public.
This commit is contained in:
@@ -40,6 +40,10 @@ public:
|
||||
void setTimeout(int timeout);
|
||||
long getFolderId() const;
|
||||
void setFolderId(long folderId);
|
||||
long getResourceGroupId() const;
|
||||
void setResourceGroupId(long resourceGroupId);
|
||||
long getSqlMode() const;
|
||||
void setSqlMode(long sqlMode);
|
||||
long getTenantId() const;
|
||||
void setTenantId(long tenantId);
|
||||
std::string getProtocols() const;
|
||||
@@ -69,6 +73,8 @@ private:
|
||||
std::string apiDescription_;
|
||||
int timeout_;
|
||||
long folderId_;
|
||||
long resourceGroupId_;
|
||||
long sqlMode_;
|
||||
long tenantId_;
|
||||
std::string protocols_;
|
||||
long projectId_;
|
||||
|
||||
@@ -34,43 +34,46 @@ public:
|
||||
void setScriptDetails(const std::string &scriptDetails);
|
||||
int getRequestMethod() const;
|
||||
void setRequestMethod(int requestMethod);
|
||||
std::string getApiPath() const;
|
||||
void setApiPath(const std::string &apiPath);
|
||||
std::string getWizardDetails() const;
|
||||
void setWizardDetails(const std::string &wizardDetails);
|
||||
int getVisibleRange() const;
|
||||
void setVisibleRange(int visibleRange);
|
||||
std::string getApiDescription() const;
|
||||
void setApiDescription(const std::string &apiDescription);
|
||||
int getTimeout() const;
|
||||
void setTimeout(int timeout);
|
||||
std::string getRegistrationDetails() const;
|
||||
void setRegistrationDetails(const std::string ®istrationDetails);
|
||||
long getResourceGroupId() const;
|
||||
void setResourceGroupId(long resourceGroupId);
|
||||
long getTenantId() const;
|
||||
void setTenantId(long tenantId);
|
||||
std::string getProtocols() const;
|
||||
void setProtocols(const std::string &protocols);
|
||||
long getProjectId() const;
|
||||
void setProjectId(long projectId);
|
||||
long getApiId() const;
|
||||
void setApiId(long apiId);
|
||||
int getResponseContentType() const;
|
||||
void setResponseContentType(int responseContentType);
|
||||
std::string getApiPath() const;
|
||||
void setApiPath(const std::string &apiPath);
|
||||
std::string getWizardDetails() const;
|
||||
void setWizardDetails(const std::string &wizardDetails);
|
||||
int getVisibleRange() const;
|
||||
void setVisibleRange(int visibleRange);
|
||||
std::string getRegistrationDetails() const;
|
||||
void setRegistrationDetails(const std::string ®istrationDetails);
|
||||
long getApiId() const;
|
||||
void setApiId(long apiId);
|
||||
|
||||
private:
|
||||
std::string scriptDetails_;
|
||||
int requestMethod_;
|
||||
std::string apiPath_;
|
||||
std::string wizardDetails_;
|
||||
int visibleRange_;
|
||||
std::string apiDescription_;
|
||||
int timeout_;
|
||||
std::string registrationDetails_;
|
||||
long resourceGroupId_;
|
||||
long tenantId_;
|
||||
std::string protocols_;
|
||||
long projectId_;
|
||||
long apiId_;
|
||||
int responseContentType_;
|
||||
std::string apiPath_;
|
||||
std::string wizardDetails_;
|
||||
int visibleRange_;
|
||||
std::string registrationDetails_;
|
||||
long apiId_;
|
||||
};
|
||||
} // namespace Model
|
||||
} // namespace Dataworks_public
|
||||
|
||||
@@ -70,6 +70,24 @@ void CreateDataServiceApiRequest::setFolderId(long folderId) {
|
||||
setBodyParameter(std::string("FolderId"), std::to_string(folderId));
|
||||
}
|
||||
|
||||
long CreateDataServiceApiRequest::getResourceGroupId() const {
|
||||
return resourceGroupId_;
|
||||
}
|
||||
|
||||
void CreateDataServiceApiRequest::setResourceGroupId(long resourceGroupId) {
|
||||
resourceGroupId_ = resourceGroupId;
|
||||
setBodyParameter(std::string("ResourceGroupId"), std::to_string(resourceGroupId));
|
||||
}
|
||||
|
||||
long CreateDataServiceApiRequest::getSqlMode() const {
|
||||
return sqlMode_;
|
||||
}
|
||||
|
||||
void CreateDataServiceApiRequest::setSqlMode(long sqlMode) {
|
||||
sqlMode_ = sqlMode;
|
||||
setBodyParameter(std::string("SqlMode"), std::to_string(sqlMode));
|
||||
}
|
||||
|
||||
long CreateDataServiceApiRequest::getTenantId() const {
|
||||
return tenantId_;
|
||||
}
|
||||
|
||||
@@ -43,33 +43,6 @@ void UpdateDataServiceApiRequest::setRequestMethod(int requestMethod) {
|
||||
setBodyParameter(std::string("RequestMethod"), std::to_string(requestMethod));
|
||||
}
|
||||
|
||||
std::string UpdateDataServiceApiRequest::getApiPath() const {
|
||||
return apiPath_;
|
||||
}
|
||||
|
||||
void UpdateDataServiceApiRequest::setApiPath(const std::string &apiPath) {
|
||||
apiPath_ = apiPath;
|
||||
setBodyParameter(std::string("ApiPath"), apiPath);
|
||||
}
|
||||
|
||||
std::string UpdateDataServiceApiRequest::getWizardDetails() const {
|
||||
return wizardDetails_;
|
||||
}
|
||||
|
||||
void UpdateDataServiceApiRequest::setWizardDetails(const std::string &wizardDetails) {
|
||||
wizardDetails_ = wizardDetails;
|
||||
setBodyParameter(std::string("WizardDetails"), wizardDetails);
|
||||
}
|
||||
|
||||
int UpdateDataServiceApiRequest::getVisibleRange() const {
|
||||
return visibleRange_;
|
||||
}
|
||||
|
||||
void UpdateDataServiceApiRequest::setVisibleRange(int visibleRange) {
|
||||
visibleRange_ = visibleRange;
|
||||
setBodyParameter(std::string("VisibleRange"), std::to_string(visibleRange));
|
||||
}
|
||||
|
||||
std::string UpdateDataServiceApiRequest::getApiDescription() const {
|
||||
return apiDescription_;
|
||||
}
|
||||
@@ -88,13 +61,13 @@ void UpdateDataServiceApiRequest::setTimeout(int timeout) {
|
||||
setBodyParameter(std::string("Timeout"), std::to_string(timeout));
|
||||
}
|
||||
|
||||
std::string UpdateDataServiceApiRequest::getRegistrationDetails() const {
|
||||
return registrationDetails_;
|
||||
long UpdateDataServiceApiRequest::getResourceGroupId() const {
|
||||
return resourceGroupId_;
|
||||
}
|
||||
|
||||
void UpdateDataServiceApiRequest::setRegistrationDetails(const std::string ®istrationDetails) {
|
||||
registrationDetails_ = registrationDetails;
|
||||
setBodyParameter(std::string("RegistrationDetails"), registrationDetails);
|
||||
void UpdateDataServiceApiRequest::setResourceGroupId(long resourceGroupId) {
|
||||
resourceGroupId_ = resourceGroupId;
|
||||
setBodyParameter(std::string("ResourceGroupId"), std::to_string(resourceGroupId));
|
||||
}
|
||||
|
||||
long UpdateDataServiceApiRequest::getTenantId() const {
|
||||
@@ -124,15 +97,6 @@ void UpdateDataServiceApiRequest::setProjectId(long projectId) {
|
||||
setBodyParameter(std::string("ProjectId"), std::to_string(projectId));
|
||||
}
|
||||
|
||||
long UpdateDataServiceApiRequest::getApiId() const {
|
||||
return apiId_;
|
||||
}
|
||||
|
||||
void UpdateDataServiceApiRequest::setApiId(long apiId) {
|
||||
apiId_ = apiId;
|
||||
setBodyParameter(std::string("ApiId"), std::to_string(apiId));
|
||||
}
|
||||
|
||||
int UpdateDataServiceApiRequest::getResponseContentType() const {
|
||||
return responseContentType_;
|
||||
}
|
||||
@@ -142,3 +106,48 @@ void UpdateDataServiceApiRequest::setResponseContentType(int responseContentType
|
||||
setBodyParameter(std::string("ResponseContentType"), std::to_string(responseContentType));
|
||||
}
|
||||
|
||||
std::string UpdateDataServiceApiRequest::getApiPath() const {
|
||||
return apiPath_;
|
||||
}
|
||||
|
||||
void UpdateDataServiceApiRequest::setApiPath(const std::string &apiPath) {
|
||||
apiPath_ = apiPath;
|
||||
setBodyParameter(std::string("ApiPath"), apiPath);
|
||||
}
|
||||
|
||||
std::string UpdateDataServiceApiRequest::getWizardDetails() const {
|
||||
return wizardDetails_;
|
||||
}
|
||||
|
||||
void UpdateDataServiceApiRequest::setWizardDetails(const std::string &wizardDetails) {
|
||||
wizardDetails_ = wizardDetails;
|
||||
setBodyParameter(std::string("WizardDetails"), wizardDetails);
|
||||
}
|
||||
|
||||
int UpdateDataServiceApiRequest::getVisibleRange() const {
|
||||
return visibleRange_;
|
||||
}
|
||||
|
||||
void UpdateDataServiceApiRequest::setVisibleRange(int visibleRange) {
|
||||
visibleRange_ = visibleRange;
|
||||
setBodyParameter(std::string("VisibleRange"), std::to_string(visibleRange));
|
||||
}
|
||||
|
||||
std::string UpdateDataServiceApiRequest::getRegistrationDetails() const {
|
||||
return registrationDetails_;
|
||||
}
|
||||
|
||||
void UpdateDataServiceApiRequest::setRegistrationDetails(const std::string ®istrationDetails) {
|
||||
registrationDetails_ = registrationDetails;
|
||||
setBodyParameter(std::string("RegistrationDetails"), registrationDetails);
|
||||
}
|
||||
|
||||
long UpdateDataServiceApiRequest::getApiId() const {
|
||||
return apiId_;
|
||||
}
|
||||
|
||||
void UpdateDataServiceApiRequest::setApiId(long apiId) {
|
||||
apiId_ = apiId;
|
||||
setBodyParameter(std::string("ApiId"), std::to_string(apiId));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user