com.aliyuncs.regions.DescribeEndpointRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aliyun-java-sdk-core Show documentation
Show all versions of aliyun-java-sdk-core Show documentation
Aliyun Open API SDK for Java
Copyright (C) Alibaba Cloud Computing
All rights reserved.
版权所有 (C)阿里云计算有限公司
http://www.aliyun.com
package com.aliyuncs.regions;
import com.aliyuncs.RpcAcsRequest;
/**
* Created by hi.yan.li on 2016/3/31.
*/
public class DescribeEndpointRequest extends RpcAcsRequest {
public DescribeEndpointRequest() {
super("Location", "2015-06-12", "DescribeEndpoints");
}
private String id;
private String password;
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
putQueryParameter("Id", id);
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
putQueryParameter("Password", password);
}
@Override
public Class getResponseClass() {
return DescribeEndpointResponse.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy