Skip to content

Commit cc6ef1c

Browse files
zhuxiaolong37huiguangjun
authored andcommitted
CNAME's return parameter status adds blocked and forbidden
1 parent 6edfc08 commit cc6ef1c

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/main/java/com/aliyun/oss/model/CnameConfiguration.java

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,17 @@ public enum CertStatus {
7878
/**
7979
* Disabled
8080
*/
81-
Disabled("Disabled");
81+
Disabled("Disabled"),
82+
83+
/**
84+
* Blocked
85+
*/
86+
Blocked("Blocked"),
87+
88+
/**
89+
* Forbidden
90+
*/
91+
Forbidden("Forbidden");
8292

8393
private String certStatusString;
8494
private CertStatus(String certStatusString) { this.certStatusString = certStatusString; }

0 commit comments

Comments
 (0)