Skip to content

Commit 01876df

Browse files
committed
由智久发起的CDN SDK自动发布, 版本号:2.7.0
发布日志: 1, Add Function Compute interface,support Function Compute.
1 parent acee2a5 commit 01876df

27 files changed

Lines changed: 1349 additions & 4 deletions

aliyun-java-sdk-cdn/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2018-05-11 Version: 2.7.0
2+
1, Add Function Compute interface,support Function Compute.
3+
14
2018-03-15 Version: 2.6.3
25
1, Synchronize to the latest api list
36

aliyun-java-sdk-cdn/pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>com.aliyun</groupId>
44
<artifactId>aliyun-java-sdk-cdn</artifactId>
55
<packaging>jar</packaging>
6-
<version>2.6.3</version>
6+
<version>2.7.0</version>
77
<name>aliyun-java-sdk-cdn</name>
88
<url>http://www.aliyun.com</url>
99
<description>Aliyun Open API SDK for Java
@@ -31,7 +31,7 @@ http://www.aliyun.com</description>
3131
<groupId>com.aliyun</groupId>
3232
<artifactId>aliyun-java-sdk-core</artifactId>
3333
<optional>true</optional>
34-
<version>3.2.8</version>
34+
<version>3.7.1</version>
3535
</dependency>
3636
</dependencies>
3737
<licenses>
@@ -42,8 +42,9 @@ http://www.aliyun.com</description>
4242
</license>
4343
</licenses>
4444
<scm>
45-
<url></url>
46-
<connection></connection>
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>
4748
</scm>
4849
<developers>
4950
<developer>
Lines changed: 125 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
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.cdn.model.v20141111;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class AddFCTriggerRequest extends RpcAcsRequest<AddFCTriggerResponse> {
24+
25+
public AddFCTriggerRequest() {
26+
super("Cdn", "2014-11-11", "AddFCTrigger");
27+
}
28+
29+
private String notes;
30+
31+
private String eventMetaVersion;
32+
33+
private String triggerARN;
34+
35+
private String sourceARN;
36+
37+
private Long ownerId;
38+
39+
private String roleARN;
40+
41+
private String eventMetaName;
42+
43+
public String getNotes() {
44+
return this.notes;
45+
}
46+
47+
public void setNotes(String notes) {
48+
this.notes = notes;
49+
if(notes != null){
50+
putQueryParameter("Notes", notes);
51+
}
52+
}
53+
54+
public String getEventMetaVersion() {
55+
return this.eventMetaVersion;
56+
}
57+
58+
public void setEventMetaVersion(String eventMetaVersion) {
59+
this.eventMetaVersion = eventMetaVersion;
60+
if(eventMetaVersion != null){
61+
putQueryParameter("EventMetaVersion", eventMetaVersion);
62+
}
63+
}
64+
65+
public String getTriggerARN() {
66+
return this.triggerARN;
67+
}
68+
69+
public void setTriggerARN(String triggerARN) {
70+
this.triggerARN = triggerARN;
71+
if(triggerARN != null){
72+
putQueryParameter("TriggerARN", triggerARN);
73+
}
74+
}
75+
76+
public String getSourceARN() {
77+
return this.sourceARN;
78+
}
79+
80+
public void setSourceARN(String sourceARN) {
81+
this.sourceARN = sourceARN;
82+
if(sourceARN != null){
83+
putQueryParameter("SourceARN", sourceARN);
84+
}
85+
}
86+
87+
public Long getOwnerId() {
88+
return this.ownerId;
89+
}
90+
91+
public void setOwnerId(Long ownerId) {
92+
this.ownerId = ownerId;
93+
if(ownerId != null){
94+
putQueryParameter("OwnerId", ownerId.toString());
95+
}
96+
}
97+
98+
public String getRoleARN() {
99+
return this.roleARN;
100+
}
101+
102+
public void setRoleARN(String roleARN) {
103+
this.roleARN = roleARN;
104+
if(roleARN != null){
105+
putQueryParameter("RoleARN", roleARN);
106+
}
107+
}
108+
109+
public String getEventMetaName() {
110+
return this.eventMetaName;
111+
}
112+
113+
public void setEventMetaName(String eventMetaName) {
114+
this.eventMetaName = eventMetaName;
115+
if(eventMetaName != null){
116+
putQueryParameter("EventMetaName", eventMetaName);
117+
}
118+
}
119+
120+
@Override
121+
public Class<AddFCTriggerResponse> getResponseClass() {
122+
return AddFCTriggerResponse.class;
123+
}
124+
125+
}
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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.cdn.model.v20141111;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.cdn.transform.v20141111.AddFCTriggerResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class AddFCTriggerResponse 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 AddFCTriggerResponse getInstance(UnmarshallerContext context) {
39+
return AddFCTriggerResponseUnmarshaller.unmarshall(this, context);
40+
}
41+
}
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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.cdn.model.v20141111;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class DeleteFCTriggerRequest extends RpcAcsRequest<DeleteFCTriggerResponse> {
24+
25+
public DeleteFCTriggerRequest() {
26+
super("Cdn", "2014-11-11", "DeleteFCTrigger");
27+
}
28+
29+
private String triggerARN;
30+
31+
private Long ownerId;
32+
33+
public String getTriggerARN() {
34+
return this.triggerARN;
35+
}
36+
37+
public void setTriggerARN(String triggerARN) {
38+
this.triggerARN = triggerARN;
39+
if(triggerARN != null){
40+
putQueryParameter("TriggerARN", triggerARN);
41+
}
42+
}
43+
44+
public Long getOwnerId() {
45+
return this.ownerId;
46+
}
47+
48+
public void setOwnerId(Long ownerId) {
49+
this.ownerId = ownerId;
50+
if(ownerId != null){
51+
putQueryParameter("OwnerId", ownerId.toString());
52+
}
53+
}
54+
55+
@Override
56+
public Class<DeleteFCTriggerResponse> getResponseClass() {
57+
return DeleteFCTriggerResponse.class;
58+
}
59+
60+
}
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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.cdn.model.v20141111;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.cdn.transform.v20141111.DeleteFCTriggerResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class DeleteFCTriggerResponse 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 DeleteFCTriggerResponse getInstance(UnmarshallerContext context) {
39+
return DeleteFCTriggerResponseUnmarshaller.unmarshall(this, context);
40+
}
41+
}
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
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.cdn.model.v20141111;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class DescribeCdnDomainConfigsRequest extends RpcAcsRequest<DescribeCdnDomainConfigsResponse> {
24+
25+
public DescribeCdnDomainConfigsRequest() {
26+
super("Cdn", "2014-11-11", "DescribeCdnDomainConfigs");
27+
}
28+
29+
private String functionNames;
30+
31+
private String securityToken;
32+
33+
private String domainName;
34+
35+
private Long ownerId;
36+
37+
public String getFunctionNames() {
38+
return this.functionNames;
39+
}
40+
41+
public void setFunctionNames(String functionNames) {
42+
this.functionNames = functionNames;
43+
if(functionNames != null){
44+
putQueryParameter("FunctionNames", functionNames);
45+
}
46+
}
47+
48+
public String getSecurityToken() {
49+
return this.securityToken;
50+
}
51+
52+
public void setSecurityToken(String securityToken) {
53+
this.securityToken = securityToken;
54+
if(securityToken != null){
55+
putQueryParameter("SecurityToken", securityToken);
56+
}
57+
}
58+
59+
public String getDomainName() {
60+
return this.domainName;
61+
}
62+
63+
public void setDomainName(String domainName) {
64+
this.domainName = domainName;
65+
if(domainName != null){
66+
putQueryParameter("DomainName", domainName);
67+
}
68+
}
69+
70+
public Long getOwnerId() {
71+
return this.ownerId;
72+
}
73+
74+
public void setOwnerId(Long ownerId) {
75+
this.ownerId = ownerId;
76+
if(ownerId != null){
77+
putQueryParameter("OwnerId", ownerId.toString());
78+
}
79+
}
80+
81+
@Override
82+
public Class<DescribeCdnDomainConfigsResponse> getResponseClass() {
83+
return DescribeCdnDomainConfigsResponse.class;
84+
}
85+
86+
}

0 commit comments

Comments
 (0)