Skip to content

Commit 3933938

Browse files
committed
RAM SDK Auto Released By shenshi,Version:3.0.1
发布日志: 1, Update Dependency
1 parent ab92e0c commit 3933938

File tree

200 files changed

+3505
-3178
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

200 files changed

+3505
-3178
lines changed

aliyun-java-sdk-ram/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019-03-14 Version: 3.0.1
2+
1, Update Dependency
3+
14
2017-10-09 Version: 3.0.0
25
1, 添加公钥(PublicKey)管理接口
36
2, 添加ChangePassword接口

aliyun-java-sdk-ram/pom.xml

100755100644
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>com.aliyun</groupId>
44
<artifactId>aliyun-java-sdk-ram</artifactId>
55
<packaging>jar</packaging>
6-
<version>3.0.0</version>
6+
<version>3.0.1</version>
77
<name>aliyun-java-sdk-ram</name>
88
<url>http://www.aliyun.com</url>
99
<description>Aliyun Open API SDK for Java
@@ -31,7 +31,7 @@ http://www.aliyun.com</description>
3131
<groupId>com.aliyun</groupId>
3232
<artifactId>aliyun-java-sdk-core</artifactId>
3333
<optional>true</optional>
34-
<version>3.2.8</version>
34+
<version>[4.3.2,5.0.0)</version>
3535
</dependency>
3636
</dependencies>
3737
<licenses>
@@ -42,8 +42,9 @@ http://www.aliyun.com</description>
4242
</license>
4343
</licenses>
4444
<scm>
45-
<url></url>
46-
<connection></connection>
45+
<connection>scm:git:git://github.com/aliyun/aliyun-openapi-java-sdk.git</connection>
46+
<developerConnection>scm:git:git@github.com:aliyun/aliyun-openapi-java-sdk.git</developerConnection>
47+
<url>https://github.com/aliyun/aliyun-openapi-java-sdk</url>
4748
</scm>
4849
<developers>
4950
<developer>

aliyun-java-sdk-ram/src/main/java/com/aliyuncs/ram/model/v20150501/AddUserToGroupRequest.java

100755100644
Lines changed: 25 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@
1111
* See the License for the specific language governing permissions and
1212
* limitations under the License.
1313
*/
14+
1415
package com.aliyuncs.ram.model.v20150501;
1516

16-
import com.aliyuncs.RpcAcsRequest;
17+
import com.aliyuncs.RpcAcsRequest;
1718
import com.aliyuncs.http.ProtocolType;
1819

1920
/**
@@ -23,33 +24,33 @@
2324
public class AddUserToGroupRequest extends RpcAcsRequest<AddUserToGroupResponse> {
2425

2526
public AddUserToGroupRequest() {
26-
super("Ram", "2015-05-01", "AddUserToGroup");
27+
super("Ram", "2015-05-01", "AddUserToGroup", "ram");
2728
setProtocol(ProtocolType.HTTPS);
28-
}
29-
30-
private String groupName;
31-
32-
private String userName;
33-
34-
public String getGroupName() {
35-
return this.groupName;
36-
}
37-
38-
public void setGroupName(String groupName) {
39-
this.groupName = groupName;
29+
}
30+
31+
private String groupName;
32+
33+
private String userName;
34+
35+
public String getGroupName() {
36+
return this.groupName;
37+
}
38+
39+
public void setGroupName(String groupName) {
40+
this.groupName = groupName;
4041
if(groupName != null){
41-
putQueryParameter("GroupName", groupName);
42+
putQueryParameter("GroupName", groupName);
4243
}
43-
}
44-
45-
public String getUserName() {
46-
return this.userName;
47-
}
48-
49-
public void setUserName(String userName) {
50-
this.userName = userName;
44+
}
45+
46+
public String getUserName() {
47+
return this.userName;
48+
}
49+
50+
public void setUserName(String userName) {
51+
this.userName = userName;
5152
if(userName != null){
52-
putQueryParameter("UserName", userName);
53+
putQueryParameter("UserName", userName);
5354
}
5455
}
5556

aliyun-java-sdk-ram/src/main/java/com/aliyuncs/ram/model/v20150501/AddUserToGroupResponse.java

100755100644
Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
* See the License for the specific language governing permissions and
1212
* limitations under the License.
1313
*/
14+
1415
package com.aliyuncs.ram.model.v20150501;
1516

1617
import com.aliyuncs.AcsResponse;
@@ -21,20 +22,20 @@
2122
* @author auto create
2223
* @version
2324
*/
24-
public class AddUserToGroupResponse extends AcsResponse {
25-
26-
private String requestId;
27-
28-
public String getRequestId() {
29-
return this.requestId;
30-
}
31-
32-
public void setRequestId(String requestId) {
33-
this.requestId = requestId;
34-
}
35-
36-
@Override
37-
public AddUserToGroupResponse getInstance(UnmarshallerContext context) {
38-
return AddUserToGroupResponseUnmarshaller.unmarshall(this, context);
39-
}
25+
public class AddUserToGroupResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
public String getRequestId() {
30+
return this.requestId;
31+
}
32+
33+
public void setRequestId(String requestId) {
34+
this.requestId = requestId;
35+
}
36+
37+
@Override
38+
public AddUserToGroupResponse getInstance(UnmarshallerContext context) {
39+
return AddUserToGroupResponseUnmarshaller.unmarshall(this, context);
40+
}
4041
}

aliyun-java-sdk-ram/src/main/java/com/aliyuncs/ram/model/v20150501/AttachPolicyToGroupRequest.java

100755100644
Lines changed: 36 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@
1111
* See the License for the specific language governing permissions and
1212
* limitations under the License.
1313
*/
14+
1415
package com.aliyuncs.ram.model.v20150501;
1516

16-
import com.aliyuncs.RpcAcsRequest;
17+
import com.aliyuncs.RpcAcsRequest;
1718
import com.aliyuncs.http.ProtocolType;
1819

1920
/**
@@ -23,46 +24,46 @@
2324
public class AttachPolicyToGroupRequest extends RpcAcsRequest<AttachPolicyToGroupResponse> {
2425

2526
public AttachPolicyToGroupRequest() {
26-
super("Ram", "2015-05-01", "AttachPolicyToGroup");
27+
super("Ram", "2015-05-01", "AttachPolicyToGroup", "ram");
2728
setProtocol(ProtocolType.HTTPS);
28-
}
29-
30-
private String policyType;
31-
32-
private String policyName;
33-
34-
private String groupName;
35-
36-
public String getPolicyType() {
37-
return this.policyType;
38-
}
39-
40-
public void setPolicyType(String policyType) {
41-
this.policyType = policyType;
29+
}
30+
31+
private String policyType;
32+
33+
private String policyName;
34+
35+
private String groupName;
36+
37+
public String getPolicyType() {
38+
return this.policyType;
39+
}
40+
41+
public void setPolicyType(String policyType) {
42+
this.policyType = policyType;
4243
if(policyType != null){
43-
putQueryParameter("PolicyType", policyType);
44+
putQueryParameter("PolicyType", policyType);
4445
}
45-
}
46-
47-
public String getPolicyName() {
48-
return this.policyName;
49-
}
50-
51-
public void setPolicyName(String policyName) {
52-
this.policyName = policyName;
46+
}
47+
48+
public String getPolicyName() {
49+
return this.policyName;
50+
}
51+
52+
public void setPolicyName(String policyName) {
53+
this.policyName = policyName;
5354
if(policyName != null){
54-
putQueryParameter("PolicyName", policyName);
55+
putQueryParameter("PolicyName", policyName);
5556
}
56-
}
57-
58-
public String getGroupName() {
59-
return this.groupName;
60-
}
61-
62-
public void setGroupName(String groupName) {
63-
this.groupName = groupName;
57+
}
58+
59+
public String getGroupName() {
60+
return this.groupName;
61+
}
62+
63+
public void setGroupName(String groupName) {
64+
this.groupName = groupName;
6465
if(groupName != null){
65-
putQueryParameter("GroupName", groupName);
66+
putQueryParameter("GroupName", groupName);
6667
}
6768
}
6869

aliyun-java-sdk-ram/src/main/java/com/aliyuncs/ram/model/v20150501/AttachPolicyToGroupResponse.java

100755100644
Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
* See the License for the specific language governing permissions and
1212
* limitations under the License.
1313
*/
14+
1415
package com.aliyuncs.ram.model.v20150501;
1516

1617
import com.aliyuncs.AcsResponse;
@@ -21,20 +22,20 @@
2122
* @author auto create
2223
* @version
2324
*/
24-
public class AttachPolicyToGroupResponse extends AcsResponse {
25-
26-
private String requestId;
27-
28-
public String getRequestId() {
29-
return this.requestId;
30-
}
31-
32-
public void setRequestId(String requestId) {
33-
this.requestId = requestId;
34-
}
35-
36-
@Override
37-
public AttachPolicyToGroupResponse getInstance(UnmarshallerContext context) {
38-
return AttachPolicyToGroupResponseUnmarshaller.unmarshall(this, context);
39-
}
25+
public class AttachPolicyToGroupResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
public String getRequestId() {
30+
return this.requestId;
31+
}
32+
33+
public void setRequestId(String requestId) {
34+
this.requestId = requestId;
35+
}
36+
37+
@Override
38+
public AttachPolicyToGroupResponse getInstance(UnmarshallerContext context) {
39+
return AttachPolicyToGroupResponseUnmarshaller.unmarshall(this, context);
40+
}
4041
}

aliyun-java-sdk-ram/src/main/java/com/aliyuncs/ram/model/v20150501/AttachPolicyToRoleRequest.java

100755100644
Lines changed: 36 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,10 @@
1111
* See the License for the specific language governing permissions and
1212
* limitations under the License.
1313
*/
14+
1415
package com.aliyuncs.ram.model.v20150501;
1516

16-
import com.aliyuncs.RpcAcsRequest;
17+
import com.aliyuncs.RpcAcsRequest;
1718
import com.aliyuncs.http.ProtocolType;
1819

1920
/**
@@ -23,46 +24,46 @@
2324
public class AttachPolicyToRoleRequest extends RpcAcsRequest<AttachPolicyToRoleResponse> {
2425

2526
public AttachPolicyToRoleRequest() {
26-
super("Ram", "2015-05-01", "AttachPolicyToRole");
27+
super("Ram", "2015-05-01", "AttachPolicyToRole", "ram");
2728
setProtocol(ProtocolType.HTTPS);
28-
}
29-
30-
private String policyType;
31-
32-
private String roleName;
33-
34-
private String policyName;
35-
36-
public String getPolicyType() {
37-
return this.policyType;
38-
}
39-
40-
public void setPolicyType(String policyType) {
41-
this.policyType = policyType;
29+
}
30+
31+
private String policyType;
32+
33+
private String roleName;
34+
35+
private String policyName;
36+
37+
public String getPolicyType() {
38+
return this.policyType;
39+
}
40+
41+
public void setPolicyType(String policyType) {
42+
this.policyType = policyType;
4243
if(policyType != null){
43-
putQueryParameter("PolicyType", policyType);
44+
putQueryParameter("PolicyType", policyType);
4445
}
45-
}
46-
47-
public String getRoleName() {
48-
return this.roleName;
49-
}
50-
51-
public void setRoleName(String roleName) {
52-
this.roleName = roleName;
46+
}
47+
48+
public String getRoleName() {
49+
return this.roleName;
50+
}
51+
52+
public void setRoleName(String roleName) {
53+
this.roleName = roleName;
5354
if(roleName != null){
54-
putQueryParameter("RoleName", roleName);
55+
putQueryParameter("RoleName", roleName);
5556
}
56-
}
57-
58-
public String getPolicyName() {
59-
return this.policyName;
60-
}
61-
62-
public void setPolicyName(String policyName) {
63-
this.policyName = policyName;
57+
}
58+
59+
public String getPolicyName() {
60+
return this.policyName;
61+
}
62+
63+
public void setPolicyName(String policyName) {
64+
this.policyName = policyName;
6465
if(policyName != null){
65-
putQueryParameter("PolicyName", policyName);
66+
putQueryParameter("PolicyName", policyName);
6667
}
6768
}
6869

0 commit comments

Comments
 (0)