Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7aad9e4

Browse files
committed
YUNDUN-DS SDK Auto Released By pingzhun,Version:1.0.0
发布日志: 1, Initial release of api, including data management api, rule configuration api and system configuration api.
1 parent 91c8bbf commit 7aad9e4

File tree

140 files changed

+16703
-0
lines changed

Some content is hidden

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

140 files changed

+16703
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2019-05-20 Version: 1.0.0
2+
1, Initial release of api, including data management api, rule configuration api and system configuration api.
3+

aliyun-java-sdk-yundun-ds/pom.xml

Lines changed: 124 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,124 @@
1+
<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">
2+
<modelVersion>4.0.0</modelVersion>
3+
<groupId>com.aliyun</groupId>
4+
<artifactId>aliyun-java-sdk-yundun-ds</artifactId>
5+
<packaging>jar</packaging>
6+
<version>1.0.0</version>
7+
<name>aliyun-java-sdk-yundun-ds</name>
8+
<url>http://www.aliyun.com</url>
9+
<description>Aliyun Open API SDK for Java
10+
11+
Copyright (C) Alibaba Cloud Computing
12+
All rights reserved.
13+
14+
版权所有 (C)阿里云计算有限公司
15+
16+
http://www.aliyun.com</description>
17+
18+
<distributionManagement>
19+
<snapshotRepository>
20+
<id>sonatype-nexus-snapshots</id>
21+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
22+
</snapshotRepository>
23+
<repository>
24+
<id>sonatype-nexus-staging</id>
25+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
26+
</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>
36+
<dependency>
37+
<groupId>com.google.code.gson</groupId>
38+
<artifactId>gson</artifactId>
39+
<version>2.8.5</version>
40+
</dependency>
41+
</dependencies>
42+
<licenses>
43+
<license>
44+
<name></name>
45+
<url></url>
46+
<distribution></distribution>
47+
</license>
48+
</licenses>
49+
<scm>
50+
<connection>scm:git:git://github.com/aliyun/aliyun-openapi-java-sdk.git</connection>
51+
<developerConnection>scm:git:[email protected]:aliyun/aliyun-openapi-java-sdk.git</developerConnection>
52+
<url>https://github.com/aliyun/aliyun-openapi-java-sdk</url>
53+
</scm>
54+
<developers>
55+
<developer>
56+
<id>aliyunproducts</id>
57+
<name>Aliyun SDK</name>
58+
<email>[email protected]</email>
59+
</developer>
60+
</developers>
61+
<build>
62+
<plugins>
63+
<plugin>
64+
<artifactId>maven-compiler-plugin</artifactId>
65+
<version>2.3.2</version>
66+
<configuration>
67+
<source>1.6</source>
68+
<target>1.6</target>
69+
<encoding>UTF-8</encoding>
70+
</configuration>
71+
</plugin>
72+
<plugin>
73+
<groupId>org.apache.maven.plugins</groupId>
74+
<artifactId>maven-jar-plugin</artifactId>
75+
<version>2.3.2</version>
76+
<configuration>
77+
<excludes>
78+
</excludes>
79+
</configuration>
80+
</plugin>
81+
<plugin>
82+
<groupId>org.apache.maven.plugins</groupId>
83+
<artifactId>maven-surefire-plugin</artifactId>
84+
<version>2.10</version>
85+
<configuration>
86+
<argLine>-Dfile.encoding=UTF-8</argLine>
87+
</configuration>
88+
</plugin>
89+
<plugin>
90+
<groupId>org.apache.maven.plugins</groupId>
91+
<artifactId>maven-javadoc-plugin</artifactId>
92+
<version>2.8</version>
93+
<configuration>
94+
<encoding>UTF-8</encoding>
95+
</configuration>
96+
</plugin>
97+
<plugin>
98+
<groupId>org.apache.maven.plugins</groupId>
99+
<artifactId>maven-gpg-plugin</artifactId>
100+
<version>1.5</version>
101+
<executions>
102+
<execution>
103+
<id>sign-artifacts</id>
104+
<phase>verify</phase>
105+
<goals>
106+
<goal>sign</goal>
107+
</goals>
108+
</execution>
109+
</executions>
110+
</plugin>
111+
<plugin>
112+
<groupId>org.sonatype.plugins</groupId>
113+
<artifactId>nexus-staging-maven-plugin</artifactId>
114+
<version>1.6.3</version>
115+
<extensions>true</extensions>
116+
<configuration>
117+
<serverId>sonatype-nexus-staging</serverId>
118+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
119+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
120+
</configuration>
121+
</plugin>
122+
</plugins>
123+
</build>
124+
</project>
Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
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_ds.model.v20190103;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class CreateConfigRequest extends RpcAcsRequest<CreateConfigResponse> {
24+
25+
public CreateConfigRequest() {
26+
super("Yundun-ds", "2019-01-03", "CreateConfig", "sddp");
27+
}
28+
29+
private String code;
30+
31+
private Integer featureType;
32+
33+
private String description;
34+
35+
private String configList;
36+
37+
private String lang;
38+
39+
private String value;
40+
41+
public String getCode() {
42+
return this.code;
43+
}
44+
45+
public void setCode(String code) {
46+
this.code = code;
47+
if(code != null){
48+
putQueryParameter("Code", code);
49+
}
50+
}
51+
52+
public Integer getFeatureType() {
53+
return this.featureType;
54+
}
55+
56+
public void setFeatureType(Integer featureType) {
57+
this.featureType = featureType;
58+
if(featureType != null){
59+
putQueryParameter("FeatureType", featureType.toString());
60+
}
61+
}
62+
63+
public String getDescription() {
64+
return this.description;
65+
}
66+
67+
public void setDescription(String description) {
68+
this.description = description;
69+
if(description != null){
70+
putQueryParameter("Description", description);
71+
}
72+
}
73+
74+
public String getConfigList() {
75+
return this.configList;
76+
}
77+
78+
public void setConfigList(String configList) {
79+
this.configList = configList;
80+
if(configList != null){
81+
putQueryParameter("ConfigList", configList);
82+
}
83+
}
84+
85+
public String getLang() {
86+
return this.lang;
87+
}
88+
89+
public void setLang(String lang) {
90+
this.lang = lang;
91+
if(lang != null){
92+
putQueryParameter("Lang", lang);
93+
}
94+
}
95+
96+
public String getValue() {
97+
return this.value;
98+
}
99+
100+
public void setValue(String value) {
101+
this.value = value;
102+
if(value != null){
103+
putQueryParameter("Value", value);
104+
}
105+
}
106+
107+
@Override
108+
public Class<CreateConfigResponse> getResponseClass() {
109+
return CreateConfigResponse.class;
110+
}
111+
112+
}
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
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_ds.model.v20190103;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.yundun_ds.transform.v20190103.CreateConfigResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class CreateConfigResponse 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 CreateConfigResponse getInstance(UnmarshallerContext context) {
39+
return CreateConfigResponseUnmarshaller.unmarshall(this, context);
40+
}
41+
42+
@Override
43+
public boolean checkShowJsonItemName() {
44+
return false;
45+
}
46+
}

0 commit comments

Comments
 (0)