Skip to content

Commit 5bb088a

Browse files
committed
SAS-API SDK Auto Released By shenshi,Version:2.1.1
发布日志: 1, Update Dependency
1 parent 36cb01c commit 5bb088a

File tree

61 files changed

+2247
-3406
lines changed

Some content is hidden

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

61 files changed

+2247
-3406
lines changed

aliyun-java-sdk-sas-api/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: 2.1.1
2+
1, Update Dependency
3+
14
2018-01-15 Version: 2.1.0
25
1, Add four new apis: GetApplicationAttackList/GetCrackList/GetSecurityEventList/GetThreatAnalyseList
36

aliyun-java-sdk-sas-api/pom.xml

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-sas-api</artifactId>
55
<packaging>jar</packaging>
6-
<version>2.1.0</version>
6+
<version>2.1.1</version>
77
<name>aliyun-java-sdk-sas-api</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-sas-api/src/main/java/com/aliyuncs/sas_api/model/v20170705/CreateInstanceRequest.java

Lines changed: 0 additions & 142 deletions
This file was deleted.

aliyun-java-sdk-sas-api/src/main/java/com/aliyuncs/sas_api/model/v20170705/CreateInstanceResponse.java

Lines changed: 0 additions & 91 deletions
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.sas_api.model.v20170705;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class DescribeAccountProfileByKeyRequest extends RpcAcsRequest<DescribeAccountProfileByKeyResponse> {
24+
25+
public DescribeAccountProfileByKeyRequest() {
26+
super("Sas-api", "2017-07-05", "DescribeAccountProfileByKey", "sas-api");
27+
}
28+
29+
private String sourceIp;
30+
31+
private String keyword;
32+
33+
public String getSourceIp() {
34+
return this.sourceIp;
35+
}
36+
37+
public void setSourceIp(String sourceIp) {
38+
this.sourceIp = sourceIp;
39+
if(sourceIp != null){
40+
putQueryParameter("SourceIp", sourceIp);
41+
}
42+
}
43+
44+
public String getKeyword() {
45+
return this.keyword;
46+
}
47+
48+
public void setKeyword(String keyword) {
49+
this.keyword = keyword;
50+
if(keyword != null){
51+
putQueryParameter("Keyword", keyword);
52+
}
53+
}
54+
55+
@Override
56+
public Class<DescribeAccountProfileByKeyResponse> getResponseClass() {
57+
return DescribeAccountProfileByKeyResponse.class;
58+
}
59+
60+
}

0 commit comments

Comments
 (0)