com.aliyuncs.sddp.model.v20190103.ValidateConnectorRequest 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.sddp.model.v20190103;
import com.aliyuncs.RpcAcsRequest;
/**
* @author auto create
* @version
*/
public class ValidateConnectorRequest extends RpcAcsRequest {
public ValidateConnectorRequest() {
super("Sddp", "2019-01-03", "ValidateConnector", "sddp");
}
private String password;
private String connector;
private String lang;
private Integer resourceType;
private String serviceRegionId;
private String parentId;
private String userName;
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
if(password != null){
putQueryParameter("Password", password);
}
}
public String getConnector() {
return this.connector;
}
public void setConnector(String connector) {
this.connector = connector;
if(connector != null){
putQueryParameter("Connector", connector);
}
}
public String getLang() {
return this.lang;
}
public void setLang(String lang) {
this.lang = lang;
if(lang != null){
putQueryParameter("Lang", lang);
}
}
public Integer getResourceType() {
return this.resourceType;
}
public void setResourceType(Integer resourceType) {
this.resourceType = resourceType;
if(resourceType != null){
putQueryParameter("ResourceType", resourceType.toString());
}
}
public String getServiceRegionId() {
return this.serviceRegionId;
}
public void setServiceRegionId(String serviceRegionId) {
this.serviceRegionId = serviceRegionId;
if(serviceRegionId != null){
putQueryParameter("ServiceRegionId", serviceRegionId);
}
}
public String getParentId() {
return this.parentId;
}
public void setParentId(String parentId) {
this.parentId = parentId;
if(parentId != null){
putQueryParameter("ParentId", parentId);
}
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
if(userName != null){
putQueryParameter("UserName", userName);
}
}
@Override
public Class getResponseClass() {
return ValidateConnectorResponse.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy