com.aliyuncs.vcs.model.v20200515.AddDataSourceRequest Maven / Gradle / Ivy
/*
* 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.
*/
package com.aliyuncs.vcs.model.v20200515;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.vcs.Endpoint;
/**
* @author auto create
* @version
*/
public class AddDataSourceRequest extends RpcAcsRequest {
private String dataSourceType;
private String corpId;
private String description;
private String dataSourceName;
private Integer fileRetentionDays;
public AddDataSourceRequest() {
super("Vcs", "2020-05-15", "AddDataSource", "vcs");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getDataSourceType() {
return this.dataSourceType;
}
public void setDataSourceType(String dataSourceType) {
this.dataSourceType = dataSourceType;
if(dataSourceType != null){
putBodyParameter("DataSourceType", dataSourceType);
}
}
public String getCorpId() {
return this.corpId;
}
public void setCorpId(String corpId) {
this.corpId = corpId;
if(corpId != null){
putBodyParameter("CorpId", corpId);
}
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
if(description != null){
putBodyParameter("Description", description);
}
}
public String getDataSourceName() {
return this.dataSourceName;
}
public void setDataSourceName(String dataSourceName) {
this.dataSourceName = dataSourceName;
if(dataSourceName != null){
putBodyParameter("DataSourceName", dataSourceName);
}
}
public Integer getFileRetentionDays() {
return this.fileRetentionDays;
}
public void setFileRetentionDays(Integer fileRetentionDays) {
this.fileRetentionDays = fileRetentionDays;
if(fileRetentionDays != null){
putBodyParameter("FileRetentionDays", fileRetentionDays.toString());
}
}
@Override
public Class getResponseClass() {
return AddDataSourceResponse.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy