Skip to content

Commit a2d778c

Browse files
committed
ListPCAInstance.
1 parent 8731e4d commit a2d778c

File tree

76 files changed

+256
-5370
lines changed

Some content is hidden

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

76 files changed

+256
-5370
lines changed

aliyun-java-sdk-cas/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-06-12 Version: 1.0.0
2+
- ListPCAInstance.
3+
14
2023-12-20 Version: 1.0.17
25
- Generated 2020-04-07 for `cas`.
36

aliyun-java-sdk-cas/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-cas</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.0.17</version>
7+
<version>1.0.0</version>
88
<name>aliyun-java-sdk-cas</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
@@ -91,7 +91,7 @@ http://www.aliyun.com</description>
9191
<plugin>
9292
<groupId>org.apache.maven.plugins</groupId>
9393
<artifactId>maven-gpg-plugin</artifactId>
94-
<version>1.5</version>
94+
<version>3.1.0</version>
9595
<executions>
9696
<execution>
9797
<id>sign-artifacts</id>

aliyun-java-sdk-cas/src/main/java/com/aliyuncs/cas/model/v20200407/ListCertWarehouseRequest.java renamed to aliyun-java-sdk-cas/src/main/java/com/aliyuncs/cas/model/v20180813/ListPCAInstanceRequest.java

Lines changed: 7 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.aliyuncs.cas.model.v20200407;
15+
package com.aliyuncs.cas.model.v20180813;
1616

1717
import com.aliyuncs.RpcAcsRequest;
1818
import com.aliyuncs.http.MethodType;
@@ -22,20 +22,16 @@
2222
* @author auto create
2323
* @version
2424
*/
25-
public class ListCertWarehouseRequest extends RpcAcsRequest<ListCertWarehouseResponse> {
25+
public class ListPCAInstanceRequest extends RpcAcsRequest<ListPCAInstanceResponse> {
2626

2727

2828
private Long showSize;
2929

3030
private Long currentPage;
3131

32-
private String type;
33-
34-
private String instanceId;
35-
36-
private String name;
37-
public ListCertWarehouseRequest() {
38-
super("cas", "2020-04-07", "ListCertWarehouse", "cas");
32+
private String type;
33+
public ListPCAInstanceRequest() {
34+
super("cas", "2018-08-13", "ListPCAInstance", "cas");
3935
setMethod(MethodType.POST);
4036
try {
4137
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
@@ -74,33 +70,11 @@ public void setType(String type) {
7470
if(type != null){
7571
putQueryParameter("Type", type);
7672
}
77-
}
78-
79-
public String getInstanceId() {
80-
return this.instanceId;
81-
}
82-
83-
public void setInstanceId(String instanceId) {
84-
this.instanceId = instanceId;
85-
if(instanceId != null){
86-
putQueryParameter("InstanceId", instanceId);
87-
}
88-
}
89-
90-
public String getName() {
91-
return this.name;
92-
}
93-
94-
public void setName(String name) {
95-
this.name = name;
96-
if(name != null){
97-
putQueryParameter("Name", name);
98-
}
9973
}
10074

10175
@Override
102-
public Class<ListCertWarehouseResponse> getResponseClass() {
103-
return ListCertWarehouseResponse.class;
76+
public Class<ListPCAInstanceResponse> getResponseClass() {
77+
return ListPCAInstanceResponse.class;
10478
}
10579

10680
}
Lines changed: 190 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
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.cas.model.v20180813;
16+
17+
import java.util.List;
18+
import com.aliyuncs.AcsResponse;
19+
import com.aliyuncs.cas.transform.v20180813.ListPCAInstanceResponseUnmarshaller;
20+
import com.aliyuncs.transform.UnmarshallerContext;
21+
22+
/**
23+
* @author auto create
24+
* @version
25+
*/
26+
public class ListPCAInstanceResponse extends AcsResponse {
27+
28+
private String requestId;
29+
30+
private Long showSize;
31+
32+
private Long currentPage;
33+
34+
private Long totalCount;
35+
36+
private List<PCAInstance> pCAInstanceList;
37+
38+
public String getRequestId() {
39+
return this.requestId;
40+
}
41+
42+
public void setRequestId(String requestId) {
43+
this.requestId = requestId;
44+
}
45+
46+
public Long getShowSize() {
47+
return this.showSize;
48+
}
49+
50+
public void setShowSize(Long showSize) {
51+
this.showSize = showSize;
52+
}
53+
54+
public Long getCurrentPage() {
55+
return this.currentPage;
56+
}
57+
58+
public void setCurrentPage(Long currentPage) {
59+
this.currentPage = currentPage;
60+
}
61+
62+
public Long getTotalCount() {
63+
return this.totalCount;
64+
}
65+
66+
public void setTotalCount(Long totalCount) {
67+
this.totalCount = totalCount;
68+
}
69+
70+
public List<PCAInstance> getPCAInstanceList() {
71+
return this.pCAInstanceList;
72+
}
73+
74+
public void setPCAInstanceList(List<PCAInstance> pCAInstanceList) {
75+
this.pCAInstanceList = pCAInstanceList;
76+
}
77+
78+
public static class PCAInstance {
79+
80+
private Boolean relateStatus;
81+
82+
private String algorithm;
83+
84+
private String aliasName;
85+
86+
private Long issuedCertCount;
87+
88+
private Long certCount;
89+
90+
private String instanceUuid;
91+
92+
private Long endTime;
93+
94+
private String caIdentifier;
95+
96+
private Integer shareFlag;
97+
98+
private String trial;
99+
100+
public Boolean getRelateStatus() {
101+
return this.relateStatus;
102+
}
103+
104+
public void setRelateStatus(Boolean relateStatus) {
105+
this.relateStatus = relateStatus;
106+
}
107+
108+
public String getAlgorithm() {
109+
return this.algorithm;
110+
}
111+
112+
public void setAlgorithm(String algorithm) {
113+
this.algorithm = algorithm;
114+
}
115+
116+
public String getAliasName() {
117+
return this.aliasName;
118+
}
119+
120+
public void setAliasName(String aliasName) {
121+
this.aliasName = aliasName;
122+
}
123+
124+
public Long getIssuedCertCount() {
125+
return this.issuedCertCount;
126+
}
127+
128+
public void setIssuedCertCount(Long issuedCertCount) {
129+
this.issuedCertCount = issuedCertCount;
130+
}
131+
132+
public Long getCertCount() {
133+
return this.certCount;
134+
}
135+
136+
public void setCertCount(Long certCount) {
137+
this.certCount = certCount;
138+
}
139+
140+
public String getInstanceUuid() {
141+
return this.instanceUuid;
142+
}
143+
144+
public void setInstanceUuid(String instanceUuid) {
145+
this.instanceUuid = instanceUuid;
146+
}
147+
148+
public Long getEndTime() {
149+
return this.endTime;
150+
}
151+
152+
public void setEndTime(Long endTime) {
153+
this.endTime = endTime;
154+
}
155+
156+
public String getCaIdentifier() {
157+
return this.caIdentifier;
158+
}
159+
160+
public void setCaIdentifier(String caIdentifier) {
161+
this.caIdentifier = caIdentifier;
162+
}
163+
164+
public Integer getShareFlag() {
165+
return this.shareFlag;
166+
}
167+
168+
public void setShareFlag(Integer shareFlag) {
169+
this.shareFlag = shareFlag;
170+
}
171+
172+
public String getTrial() {
173+
return this.trial;
174+
}
175+
176+
public void setTrial(String trial) {
177+
this.trial = trial;
178+
}
179+
}
180+
181+
@Override
182+
public ListPCAInstanceResponse getInstance(UnmarshallerContext context) {
183+
return ListPCAInstanceResponseUnmarshaller.unmarshall(this, context);
184+
}
185+
186+
@Override
187+
public boolean checkShowJsonItemName() {
188+
return false;
189+
}
190+
}

aliyun-java-sdk-cas/src/main/java/com/aliyuncs/cas/model/v20200407/CancelCertificateForPackageRequestRequest.java

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

aliyun-java-sdk-cas/src/main/java/com/aliyuncs/cas/model/v20200407/CancelCertificateForPackageRequestResponse.java

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

0 commit comments

Comments
 (0)