Skip to content

Commit cb9133c

Browse files
committed
GetDailyPlayRegionStatis
1 parent 7da35c3 commit cb9133c

14 files changed

+552
-6
lines changed

aliyun-java-sdk-vod/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-03-21 Version: 2.16.32
2+
- GetDailyPlayRegionStatis
3+
14
2025-01-08 Version: 2.16.31
25
- Modify BatchGetMediaInfos.
36

aliyun-java-sdk-vod/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-vod</artifactId>
66
<packaging>jar</packaging>
7-
<version>2.16.31</version>
7+
<version>2.16.32</version>
88
<name>aliyun-java-sdk-vod</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>
Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
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.vod.model.v20170321;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.MethodType;
19+
import com.aliyuncs.vod.Endpoint;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class DescribeVodEditingUsageDataRequest extends RpcAcsRequest<DescribeVodEditingUsageDataResponse> {
26+
27+
28+
private String startTime;
29+
30+
private String endTime;
31+
32+
private String specification;
33+
34+
private Long ownerId;
35+
36+
private String appId;
37+
38+
private String region;
39+
public DescribeVodEditingUsageDataRequest() {
40+
super("vod", "2017-03-21", "DescribeVodEditingUsageData", "vod");
41+
setMethod(MethodType.POST);
42+
try {
43+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
44+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
45+
} catch (Exception e) {}
46+
}
47+
48+
public String getStartTime() {
49+
return this.startTime;
50+
}
51+
52+
public void setStartTime(String startTime) {
53+
this.startTime = startTime;
54+
if(startTime != null){
55+
putQueryParameter("StartTime", startTime);
56+
}
57+
}
58+
59+
public String getEndTime() {
60+
return this.endTime;
61+
}
62+
63+
public void setEndTime(String endTime) {
64+
this.endTime = endTime;
65+
if(endTime != null){
66+
putQueryParameter("EndTime", endTime);
67+
}
68+
}
69+
70+
public String getSpecification() {
71+
return this.specification;
72+
}
73+
74+
public void setSpecification(String specification) {
75+
this.specification = specification;
76+
if(specification != null){
77+
putQueryParameter("Specification", specification);
78+
}
79+
}
80+
81+
public Long getOwnerId() {
82+
return this.ownerId;
83+
}
84+
85+
public void setOwnerId(Long ownerId) {
86+
this.ownerId = ownerId;
87+
if(ownerId != null){
88+
putQueryParameter("OwnerId", ownerId.toString());
89+
}
90+
}
91+
92+
public String getAppId() {
93+
return this.appId;
94+
}
95+
96+
public void setAppId(String appId) {
97+
this.appId = appId;
98+
if(appId != null){
99+
putQueryParameter("AppId", appId);
100+
}
101+
}
102+
103+
public String getRegion() {
104+
return this.region;
105+
}
106+
107+
public void setRegion(String region) {
108+
this.region = region;
109+
if(region != null){
110+
putQueryParameter("Region", region);
111+
}
112+
}
113+
114+
@Override
115+
public Class<DescribeVodEditingUsageDataResponse> getResponseClass() {
116+
return DescribeVodEditingUsageDataResponse.class;
117+
}
118+
119+
}
Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
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.vod.model.v20170321;
16+
17+
import java.util.List;
18+
import com.aliyuncs.AcsResponse;
19+
import com.aliyuncs.vod.transform.v20170321.DescribeVodEditingUsageDataResponseUnmarshaller;
20+
import com.aliyuncs.transform.UnmarshallerContext;
21+
22+
/**
23+
* @author auto create
24+
* @version
25+
*/
26+
public class DescribeVodEditingUsageDataResponse extends AcsResponse {
27+
28+
private String requestId;
29+
30+
private String startTime;
31+
32+
private String endTime;
33+
34+
private List<DataModule> editingData;
35+
36+
public String getRequestId() {
37+
return this.requestId;
38+
}
39+
40+
public void setRequestId(String requestId) {
41+
this.requestId = requestId;
42+
}
43+
44+
public String getStartTime() {
45+
return this.startTime;
46+
}
47+
48+
public void setStartTime(String startTime) {
49+
this.startTime = startTime;
50+
}
51+
52+
public String getEndTime() {
53+
return this.endTime;
54+
}
55+
56+
public void setEndTime(String endTime) {
57+
this.endTime = endTime;
58+
}
59+
60+
public List<DataModule> getEditingData() {
61+
return this.editingData;
62+
}
63+
64+
public void setEditingData(List<DataModule> editingData) {
65+
this.editingData = editingData;
66+
}
67+
68+
public static class DataModule {
69+
70+
private String specification;
71+
72+
private String region;
73+
74+
private String timeStamp;
75+
76+
private Long duration;
77+
78+
public String getSpecification() {
79+
return this.specification;
80+
}
81+
82+
public void setSpecification(String specification) {
83+
this.specification = specification;
84+
}
85+
86+
public String getRegion() {
87+
return this.region;
88+
}
89+
90+
public void setRegion(String region) {
91+
this.region = region;
92+
}
93+
94+
public String getTimeStamp() {
95+
return this.timeStamp;
96+
}
97+
98+
public void setTimeStamp(String timeStamp) {
99+
this.timeStamp = timeStamp;
100+
}
101+
102+
public Long getDuration() {
103+
return this.duration;
104+
}
105+
106+
public void setDuration(Long duration) {
107+
this.duration = duration;
108+
}
109+
}
110+
111+
@Override
112+
public DescribeVodEditingUsageDataResponse getInstance(UnmarshallerContext context) {
113+
return DescribeVodEditingUsageDataResponseUnmarshaller.unmarshall(this, context);
114+
}
115+
116+
@Override
117+
public boolean checkShowJsonItemName() {
118+
return false;
119+
}
120+
}

aliyun-java-sdk-vod/src/main/java/com/aliyuncs/vod/model/v20170321/DescribeVodSSLCertificateListRequest.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
package com.aliyuncs.vod.model.v20170321;
1616

1717
import com.aliyuncs.RpcAcsRequest;
18-
import com.aliyuncs.http.ProtocolType;
1918
import com.aliyuncs.http.MethodType;
2019
import com.aliyuncs.vod.Endpoint;
2120

@@ -39,7 +38,6 @@ public class DescribeVodSSLCertificateListRequest extends RpcAcsRequest<Describe
3938
private String searchKeyword;
4039
public DescribeVodSSLCertificateListRequest() {
4140
super("vod", "2017-03-21", "DescribeVodSSLCertificateList", "vod");
42-
setProtocol(ProtocolType.HTTPS);
4341
setMethod(MethodType.POST);
4442
try {
4543
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);

aliyun-java-sdk-vod/src/main/java/com/aliyuncs/vod/model/v20170321/DescribeVodTieringStorageDataRequest.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ public class DescribeVodTieringStorageDataRequest extends RpcAcsRequest<Describe
3434

3535
private String storageClass;
3636

37+
private String appId;
38+
3739
private String region;
3840
public DescribeVodTieringStorageDataRequest() {
3941
super("vod", "2017-03-21", "DescribeVodTieringStorageData", "vod");
@@ -89,6 +91,17 @@ public void setStorageClass(String storageClass) {
8991
}
9092
}
9193

94+
public String getAppId() {
95+
return this.appId;
96+
}
97+
98+
public void setAppId(String appId) {
99+
this.appId = appId;
100+
if(appId != null){
101+
putQueryParameter("AppId", appId);
102+
}
103+
}
104+
92105
public String getRegion() {
93106
return this.region;
94107
}

aliyun-java-sdk-vod/src/main/java/com/aliyuncs/vod/model/v20170321/DescribeVodTieringStorageRetrievalDataRequest.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ public class DescribeVodTieringStorageRetrievalDataRequest extends RpcAcsRequest
3434

3535
private String storageClass;
3636

37+
private String appId;
38+
3739
private String region;
3840
public DescribeVodTieringStorageRetrievalDataRequest() {
3941
super("vod", "2017-03-21", "DescribeVodTieringStorageRetrievalData", "vod");
@@ -89,6 +91,17 @@ public void setStorageClass(String storageClass) {
8991
}
9092
}
9193

94+
public String getAppId() {
95+
return this.appId;
96+
}
97+
98+
public void setAppId(String appId) {
99+
this.appId = appId;
100+
if(appId != null){
101+
putQueryParameter("AppId", appId);
102+
}
103+
}
104+
92105
public String getRegion() {
93106
return this.region;
94107
}

0 commit comments

Comments
 (0)