Skip to content

Commit d40a034

Browse files
committed
Generated 2016-02-01 for AMS
1 parent c4c4e54 commit d40a034

File tree

53 files changed

+3885
-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.

53 files changed

+3885
-0
lines changed

aliyun-java-sdk-ams/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2019-05-16 Version: 1.0.0
2+
- Generated 2016-02-01 for `AMS`
3+

aliyun-java-sdk-ams/pom.xml

Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2+
<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">
3+
<modelVersion>4.0.0</modelVersion>
4+
<groupId>com.aliyun</groupId>
5+
<artifactId>aliyun-java-sdk-ams</artifactId>
6+
<packaging>jar</packaging>
7+
<version>1.0.0</version>
8+
<name>aliyun-java-sdk-ams</name>
9+
<url>http://www.aliyun.com</url>
10+
<description>Aliyun Open API SDK for Java
11+
12+
Copyright (C) Alibaba Cloud Computing
13+
All rights reserved.
14+
15+
版权所有 (C)阿里云计算有限公司
16+
17+
http://www.aliyun.com</description>
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+
<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>
40+
</dependencies>
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>
60+
<build>
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>
77+
</excludes>
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>
Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
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.ams.model.v20160201;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.ProtocolType;
19+
import com.aliyuncs.http.MethodType;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class CreateAppRequest extends RpcAcsRequest<CreateAppResponse> {
26+
27+
public CreateAppRequest() {
28+
super("AMS", "2016-02-01", "CreateApp");
29+
setProtocol(ProtocolType.HTTPS);
30+
setMethod(MethodType.POST);
31+
}
32+
33+
private String bizToken;
34+
35+
private String bizName;
36+
37+
private Long productId;
38+
39+
private String packageName;
40+
41+
private String bundleId;
42+
43+
private String description;
44+
45+
private Integer type;
46+
47+
private String name;
48+
49+
public String getBizToken() {
50+
return this.bizToken;
51+
}
52+
53+
public void setBizToken(String bizToken) {
54+
this.bizToken = bizToken;
55+
if(bizToken != null){
56+
putQueryParameter("BizToken", bizToken);
57+
}
58+
}
59+
60+
public String getBizName() {
61+
return this.bizName;
62+
}
63+
64+
public void setBizName(String bizName) {
65+
this.bizName = bizName;
66+
if(bizName != null){
67+
putQueryParameter("BizName", bizName);
68+
}
69+
}
70+
71+
public Long getProductId() {
72+
return this.productId;
73+
}
74+
75+
public void setProductId(Long productId) {
76+
this.productId = productId;
77+
if(productId != null){
78+
putQueryParameter("ProductId", productId.toString());
79+
}
80+
}
81+
82+
public String getPackageName() {
83+
return this.packageName;
84+
}
85+
86+
public void setPackageName(String packageName) {
87+
this.packageName = packageName;
88+
if(packageName != null){
89+
putQueryParameter("PackageName", packageName);
90+
}
91+
}
92+
93+
public String getBundleId() {
94+
return this.bundleId;
95+
}
96+
97+
public void setBundleId(String bundleId) {
98+
this.bundleId = bundleId;
99+
if(bundleId != null){
100+
putQueryParameter("BundleId", bundleId);
101+
}
102+
}
103+
104+
public String getDescription() {
105+
return this.description;
106+
}
107+
108+
public void setDescription(String description) {
109+
this.description = description;
110+
if(description != null){
111+
putQueryParameter("Description", description);
112+
}
113+
}
114+
115+
public Integer getType() {
116+
return this.type;
117+
}
118+
119+
public void setType(Integer type) {
120+
this.type = type;
121+
if(type != null){
122+
putQueryParameter("Type", type.toString());
123+
}
124+
}
125+
126+
public String getName() {
127+
return this.name;
128+
}
129+
130+
public void setName(String name) {
131+
this.name = name;
132+
if(name != null){
133+
putQueryParameter("Name", name);
134+
}
135+
}
136+
137+
@Override
138+
public Class<CreateAppResponse> getResponseClass() {
139+
return CreateAppResponse.class;
140+
}
141+
142+
}

0 commit comments

Comments
 (0)