Skip to content

Commit fca36ee

Browse files
committed
测试发布云盾 1.0.0 版本
1 parent 67bc570 commit fca36ee

File tree

89 files changed

+6585
-98
lines changed

Some content is hidden

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

89 files changed

+6585
-98
lines changed

aliyun-java-sdk-yundun/ChangeLog.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019-05-28 Version: 1.0.0
2+
测试发布云盾 1.0.0 版本
3+
14
2019-03-15 Version: 2.1.4
25
1, Update Dependency
36

aliyun-java-sdk-yundun/pom.xml

+102-98
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
12
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23
<modelVersion>4.0.0</modelVersion>
34
<groupId>com.aliyun</groupId>
45
<artifactId>aliyun-java-sdk-yundun</artifactId>
56
<packaging>jar</packaging>
6-
<version>2.1.4</version>
7-
<name>aliyun-java-sdk-yundun</name>
7+
<version>1.0.0-SNAPSHOT</version>
8+
<name>aliyun-java-sdk-yundun</name>
89
<url>http://www.aliyun.com</url>
910
<description>Aliyun Open API SDK for Java
1011

@@ -14,106 +15,109 @@ All rights reserved.
1415
版权所有 (C)阿里云计算有限公司
1516

1617
http://www.aliyun.com</description>
17-
18-
<distributionManagement>
18+
<distributionManagement>
1919
<snapshotRepository>
20-
<id>sonatype-nexus-snapshots</id>
21-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
20+
<id>sonatype-nexus-snapshots</id>
21+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
2222
</snapshotRepository>
2323
<repository>
24-
<id>sonatype-nexus-staging</id>
25-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
24+
<id>sonatype-nexus-staging</id>
25+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
2626
</repository>
27-
</distributionManagement>
28-
29-
<dependencies>
30-
<dependency>
31-
<groupId>com.aliyun</groupId>
32-
<artifactId>aliyun-java-sdk-core</artifactId>
33-
<optional>true</optional>
34-
<version>[4.3.2,5.0.0)</version>
35-
</dependency>
27+
</distributionManagement>
28+
<dependencies>
29+
<dependency>
30+
<groupId>com.aliyun</groupId>
31+
<artifactId>aliyun-java-sdk-core</artifactId>
32+
<optional>true</optional>
33+
<version>[4.3.2,5.0.0)</version>
34+
</dependency>
35+
<dependency>
36+
<groupId>com.google.code.gson</groupId>
37+
<artifactId>gson</artifactId>
38+
<version>2.8.5</version>
39+
</dependency>
3640
</dependencies>
37-
<licenses>
38-
<license>
39-
<name></name>
40-
<url></url>
41-
<distribution></distribution>
42-
</license>
43-
</licenses>
44-
<scm>
45-
<connection>scm:git:git://github.com/aliyun/aliyun-openapi-java-sdk.git</connection>
46-
<developerConnection>scm:git:[email protected]:aliyun/aliyun-openapi-java-sdk.git</developerConnection>
47-
<url>https://github.com/aliyun/aliyun-openapi-java-sdk</url>
48-
</scm>
49-
<developers>
50-
<developer>
51-
<id>aliyunproducts</id>
52-
<name>Aliyun SDK</name>
53-
<email>[email protected]</email>
54-
</developer>
55-
</developers>
41+
<licenses>
42+
<license>
43+
<name/>
44+
<url/>
45+
<distribution/>
46+
</license>
47+
</licenses>
48+
<scm>
49+
<connection>scm:git:git://github.com/aliyun/aliyun-openapi-java-sdk.git</connection>
50+
<developerConnection>scm:git:[email protected]:aliyun/aliyun-openapi-java-sdk.git</developerConnection>
51+
<url>https://github.com/aliyun/aliyun-openapi-java-sdk</url>
52+
</scm>
53+
<developers>
54+
<developer>
55+
<id>aliyunproducts</id>
56+
<name>Aliyun SDK</name>
57+
<email>[email protected]</email>
58+
</developer>
59+
</developers>
5660
<build>
57-
<plugins>
58-
<plugin>
59-
<artifactId>maven-compiler-plugin</artifactId>
60-
<version>2.3.2</version>
61-
<configuration>
62-
<source>1.6</source>
63-
<target>1.6</target>
64-
<encoding>UTF-8</encoding>
65-
</configuration>
66-
</plugin>
67-
<plugin>
68-
<groupId>org.apache.maven.plugins</groupId>
69-
<artifactId>maven-jar-plugin</artifactId>
70-
<version>2.3.2</version>
71-
<configuration>
72-
<excludes>
61+
<plugins>
62+
<plugin>
63+
<artifactId>maven-compiler-plugin</artifactId>
64+
<version>2.3.2</version>
65+
<configuration>
66+
<source>1.6</source>
67+
<target>1.6</target>
68+
<encoding>UTF-8</encoding>
69+
</configuration>
70+
</plugin>
71+
<plugin>
72+
<groupId>org.apache.maven.plugins</groupId>
73+
<artifactId>maven-jar-plugin</artifactId>
74+
<version>2.3.2</version>
75+
<configuration>
76+
<excludes>
7377
</excludes>
74-
</configuration>
75-
</plugin>
76-
<plugin>
77-
<groupId>org.apache.maven.plugins</groupId>
78-
<artifactId>maven-surefire-plugin</artifactId>
79-
<version>2.10</version>
80-
<configuration>
81-
<argLine>-Dfile.encoding=UTF-8</argLine>
82-
</configuration>
83-
</plugin>
84-
<plugin>
85-
<groupId>org.apache.maven.plugins</groupId>
86-
<artifactId>maven-javadoc-plugin</artifactId>
87-
<version>2.8</version>
88-
<configuration>
89-
<encoding>UTF-8</encoding>
90-
</configuration>
91-
</plugin>
92-
<plugin>
93-
<groupId>org.apache.maven.plugins</groupId>
94-
<artifactId>maven-gpg-plugin</artifactId>
95-
<version>1.5</version>
96-
<executions>
97-
<execution>
98-
<id>sign-artifacts</id>
99-
<phase>verify</phase>
100-
<goals>
101-
<goal>sign</goal>
102-
</goals>
103-
</execution>
104-
</executions>
105-
</plugin>
106-
<plugin>
107-
<groupId>org.sonatype.plugins</groupId>
108-
<artifactId>nexus-staging-maven-plugin</artifactId>
109-
<version>1.6.3</version>
110-
<extensions>true</extensions>
111-
<configuration>
112-
<serverId>sonatype-nexus-staging</serverId>
113-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
114-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
115-
</configuration>
116-
</plugin>
117-
</plugins>
118-
</build>
119-
</project>
78+
</configuration>
79+
</plugin>
80+
<plugin>
81+
<groupId>org.apache.maven.plugins</groupId>
82+
<artifactId>maven-surefire-plugin</artifactId>
83+
<version>2.10</version>
84+
<configuration>
85+
<argLine>-Dfile.encoding=UTF-8</argLine>
86+
</configuration>
87+
</plugin>
88+
<plugin>
89+
<groupId>org.apache.maven.plugins</groupId>
90+
<artifactId>maven-javadoc-plugin</artifactId>
91+
<version>2.8</version>
92+
<configuration>
93+
<encoding>UTF-8</encoding>
94+
</configuration>
95+
</plugin>
96+
<plugin>
97+
<groupId>org.apache.maven.plugins</groupId>
98+
<artifactId>maven-gpg-plugin</artifactId>
99+
<version>1.5</version>
100+
<executions>
101+
<execution>
102+
<id>sign-artifacts</id>
103+
<phase>verify</phase>
104+
<goals>
105+
<goal>sign</goal>
106+
</goals>
107+
</execution>
108+
</executions>
109+
</plugin>
110+
<plugin>
111+
<groupId>org.sonatype.plugins</groupId>
112+
<artifactId>nexus-staging-maven-plugin</artifactId>
113+
<version>1.6.3</version>
114+
<extensions>true</extensions>
115+
<configuration>
116+
<serverId>sonatype-nexus-staging</serverId>
117+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
118+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
119+
</configuration>
120+
</plugin>
121+
</plugins>
122+
</build>
123+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,92 @@
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.yundun.model.v20150416;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class AddCNameWafRequest extends RpcAcsRequest<AddCNameWafResponse> {
24+
25+
public AddCNameWafRequest() {
26+
super("Yundun", "2015-04-16", "AddCNameWaf", "yundun");
27+
}
28+
29+
private String instanceId;
30+
31+
private String domain;
32+
33+
private String instanceType;
34+
35+
public String getInstanceId() {
36+
return this.instanceId;
37+
}
38+
39+
public void setInstanceId(String instanceId) {
40+
this.instanceId = instanceId;
41+
if(instanceId != null){
42+
putQueryParameter("InstanceId", instanceId);
43+
}
44+
}
45+
46+
public String getBizDomain() {
47+
return this.domain;
48+
}
49+
50+
public void setBizDomain(String domain) {
51+
this.domain = domain;
52+
if(domain != null){
53+
putQueryParameter("Domain", domain);
54+
}
55+
}
56+
57+
/**
58+
* @deprecated use getBizDomain instead of this.
59+
*/
60+
@Deprecated
61+
public String getDomain() {
62+
return this.domain;
63+
}
64+
65+
/**
66+
* @deprecated use setBizDomain instead of this.
67+
*/
68+
@Deprecated
69+
public void setDomain(String domain) {
70+
this.domain = domain;
71+
if(domain != null){
72+
putQueryParameter("Domain", domain);
73+
}
74+
}
75+
76+
public String getInstanceType() {
77+
return this.instanceType;
78+
}
79+
80+
public void setInstanceType(String instanceType) {
81+
this.instanceType = instanceType;
82+
if(instanceType != null){
83+
putQueryParameter("InstanceType", instanceType);
84+
}
85+
}
86+
87+
@Override
88+
public Class<AddCNameWafResponse> getResponseClass() {
89+
return AddCNameWafResponse.class;
90+
}
91+
92+
}

0 commit comments

Comments
 (0)