Skip to content

Commit a83fe67

Browse files
committed
Generated 2023-09-30 for eds-aic.
1 parent ee819b0 commit a83fe67

File tree

230 files changed

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

230 files changed

+20411
-0
lines changed

aliyun-java-sdk-eds-aic/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2025-08-01 Version: 1.0.0
2+
- Generated 2023-09-30 for `eds-aic`.
3+

aliyun-java-sdk-eds-aic/pom.xml

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
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-eds-aic</artifactId>
6+
<packaging>jar</packaging>
7+
<version>1.0.0</version>
8+
<name>aliyun-java-sdk-eds-aic</name>
9+
<url>http://www.aliyun.com</url>
10+
<description>Aliyun Open API SDK for Java
11+
Copyright (C) Alibaba Cloud Computing
12+
All rights reserved.
13+
版权所有 (C)阿里云计算有限公司
14+
http://www.aliyun.com</description>
15+
<distributionManagement>
16+
<snapshotRepository>
17+
<id>sonatype-nexus-snapshots</id>
18+
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
19+
</snapshotRepository>
20+
<repository>
21+
<id>sonatype-nexus-staging</id>
22+
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
23+
</repository>
24+
</distributionManagement>
25+
<dependencies>
26+
<dependency>
27+
<groupId>com.aliyun</groupId>
28+
<artifactId>aliyun-java-sdk-core</artifactId>
29+
<optional>true</optional>
30+
<version>[4.4.9,5.0.0)</version>
31+
</dependency>
32+
<dependency>
33+
<groupId>com.google.code.gson</groupId>
34+
<artifactId>gson</artifactId>
35+
<version>2.8.9</version>
36+
</dependency>
37+
</dependencies>
38+
<licenses>
39+
<license>
40+
<name>The Apache License, Version 2.0</name>
41+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
42+
</license>
43+
</licenses>
44+
<scm>
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>
48+
</scm>
49+
<developers>
50+
<developer>
51+
<id>aliyunproducts</id>
52+
<name>Aliyun SDK</name>
53+
<email>aliyunsdk@aliyun.com</email>
54+
</developer>
55+
</developers>
56+
<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/>
73+
</configuration>
74+
</plugin>
75+
<plugin>
76+
<groupId>org.apache.maven.plugins</groupId>
77+
<artifactId>maven-surefire-plugin</artifactId>
78+
<version>2.10</version>
79+
<configuration>
80+
<argLine>-Dfile.encoding=UTF-8</argLine>
81+
</configuration>
82+
</plugin>
83+
<plugin>
84+
<groupId>org.apache.maven.plugins</groupId>
85+
<artifactId>maven-javadoc-plugin</artifactId>
86+
<version>3.1.0</version>
87+
<configuration>
88+
<encoding>UTF-8</encoding>
89+
<doclint>none</doclint>
90+
</configuration>
91+
</plugin>
92+
<plugin>
93+
<groupId>org.apache.maven.plugins</groupId>
94+
<artifactId>maven-gpg-plugin</artifactId>
95+
<version>3.1.0</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.central</groupId>
108+
<artifactId>central-publishing-maven-plugin</artifactId>
109+
<version>0.8.0</version>
110+
<extensions>true</extensions>
111+
<configuration>
112+
<publishingServerId>central</publishingServerId>
113+
<autoPublish>true</autoPublish>
114+
<waitUntil>published</waitUntil>
115+
</configuration>
116+
</plugin>
117+
</plugins>
118+
</build>
119+
</project>
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
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.eds_aic.model.v20230930;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import java.util.List;
19+
import com.aliyuncs.http.ProtocolType;
20+
import com.aliyuncs.http.MethodType;
21+
22+
/**
23+
* @author auto create
24+
* @version
25+
*/
26+
public class AttachKeyPairRequest extends RpcAcsRequest<AttachKeyPairResponse> {
27+
28+
29+
private List<String> instanceIdss;
30+
31+
private String keyPairId;
32+
public AttachKeyPairRequest() {
33+
super("eds-aic", "2023-09-30", "AttachKeyPair");
34+
setProtocol(ProtocolType.HTTPS);
35+
setMethod(MethodType.POST);
36+
}
37+
38+
public List<String> getInstanceIdss() {
39+
return this.instanceIdss;
40+
}
41+
42+
public void setInstanceIdss(List<String> instanceIdss) {
43+
this.instanceIdss = instanceIdss;
44+
if (instanceIdss != null) {
45+
for (int i = 0; i < instanceIdss.size(); i++) {
46+
putQueryParameter("InstanceIds." + (i + 1) , instanceIdss.get(i));
47+
}
48+
}
49+
}
50+
51+
public String getKeyPairId() {
52+
return this.keyPairId;
53+
}
54+
55+
public void setKeyPairId(String keyPairId) {
56+
this.keyPairId = keyPairId;
57+
if(keyPairId != null){
58+
putQueryParameter("KeyPairId", keyPairId);
59+
}
60+
}
61+
62+
@Override
63+
public Class<AttachKeyPairResponse> getResponseClass() {
64+
return AttachKeyPairResponse.class;
65+
}
66+
67+
}
Lines changed: 110 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
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.eds_aic.model.v20230930;
16+
17+
import java.util.List;
18+
import com.aliyuncs.AcsResponse;
19+
import com.aliyuncs.eds_aic.transform.v20230930.AttachKeyPairResponseUnmarshaller;
20+
import com.aliyuncs.transform.UnmarshallerContext;
21+
22+
/**
23+
* @author auto create
24+
* @version
25+
*/
26+
public class AttachKeyPairResponse extends AcsResponse {
27+
28+
private String requestId;
29+
30+
private Data data;
31+
32+
public String getRequestId() {
33+
return this.requestId;
34+
}
35+
36+
public void setRequestId(String requestId) {
37+
this.requestId = requestId;
38+
}
39+
40+
public Data getData() {
41+
return this.data;
42+
}
43+
44+
public void setData(Data data) {
45+
this.data = data;
46+
}
47+
48+
public static class Data {
49+
50+
private String keyPairId;
51+
52+
private Integer totalCount;
53+
54+
private Integer failCount;
55+
56+
private List<String> attachedInstanceIds;
57+
58+
private List<String> attachedInstanceGroupIds;
59+
60+
public String getKeyPairId() {
61+
return this.keyPairId;
62+
}
63+
64+
public void setKeyPairId(String keyPairId) {
65+
this.keyPairId = keyPairId;
66+
}
67+
68+
public Integer getTotalCount() {
69+
return this.totalCount;
70+
}
71+
72+
public void setTotalCount(Integer totalCount) {
73+
this.totalCount = totalCount;
74+
}
75+
76+
public Integer getFailCount() {
77+
return this.failCount;
78+
}
79+
80+
public void setFailCount(Integer failCount) {
81+
this.failCount = failCount;
82+
}
83+
84+
public List<String> getAttachedInstanceIds() {
85+
return this.attachedInstanceIds;
86+
}
87+
88+
public void setAttachedInstanceIds(List<String> attachedInstanceIds) {
89+
this.attachedInstanceIds = attachedInstanceIds;
90+
}
91+
92+
public List<String> getAttachedInstanceGroupIds() {
93+
return this.attachedInstanceGroupIds;
94+
}
95+
96+
public void setAttachedInstanceGroupIds(List<String> attachedInstanceGroupIds) {
97+
this.attachedInstanceGroupIds = attachedInstanceGroupIds;
98+
}
99+
}
100+
101+
@Override
102+
public AttachKeyPairResponse getInstance(UnmarshallerContext context) {
103+
return AttachKeyPairResponseUnmarshaller.unmarshall(this, context);
104+
}
105+
106+
@Override
107+
public boolean checkShowJsonItemName() {
108+
return false;
109+
}
110+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
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.eds_aic.model.v20230930;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import java.util.List;
19+
import com.aliyuncs.http.ProtocolType;
20+
import com.aliyuncs.http.MethodType;
21+
22+
/**
23+
* @author auto create
24+
* @version
25+
*/
26+
public class AuthorizeAndroidInstanceRequest extends RpcAcsRequest<AuthorizeAndroidInstanceResponse> {
27+
28+
29+
private List<String> androidInstanceIdss;
30+
31+
private String authorizeUserId;
32+
33+
private String unAuthorizeUserId;
34+
public AuthorizeAndroidInstanceRequest() {
35+
super("eds-aic", "2023-09-30", "AuthorizeAndroidInstance");
36+
setProtocol(ProtocolType.HTTPS);
37+
setMethod(MethodType.POST);
38+
}
39+
40+
public List<String> getAndroidInstanceIdss() {
41+
return this.androidInstanceIdss;
42+
}
43+
44+
public void setAndroidInstanceIdss(List<String> androidInstanceIdss) {
45+
this.androidInstanceIdss = androidInstanceIdss;
46+
if (androidInstanceIdss != null) {
47+
for (int i = 0; i < androidInstanceIdss.size(); i++) {
48+
putQueryParameter("AndroidInstanceIds." + (i + 1) , androidInstanceIdss.get(i));
49+
}
50+
}
51+
}
52+
53+
public String getAuthorizeUserId() {
54+
return this.authorizeUserId;
55+
}
56+
57+
public void setAuthorizeUserId(String authorizeUserId) {
58+
this.authorizeUserId = authorizeUserId;
59+
if(authorizeUserId != null){
60+
putQueryParameter("AuthorizeUserId", authorizeUserId);
61+
}
62+
}
63+
64+
public String getUnAuthorizeUserId() {
65+
return this.unAuthorizeUserId;
66+
}
67+
68+
public void setUnAuthorizeUserId(String unAuthorizeUserId) {
69+
this.unAuthorizeUserId = unAuthorizeUserId;
70+
if(unAuthorizeUserId != null){
71+
putQueryParameter("UnAuthorizeUserId", unAuthorizeUserId);
72+
}
73+
}
74+
75+
@Override
76+
public Class<AuthorizeAndroidInstanceResponse> getResponseClass() {
77+
return AuthorizeAndroidInstanceResponse.class;
78+
}
79+
80+
}

0 commit comments

Comments
 (0)