Skip to content

Commit 45109ff

Browse files
committed
Generated java-async 2017-03-21 for vod.
1 parent 6bd107a commit 45109ff

File tree

4 files changed

+47
-3
lines changed

4 files changed

+47
-3
lines changed

vod-20170321/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-11-19 Version: 2.0.19
2+
- Generated java-async 2017-03-21 for vod.
3+
14
2025-09-22 Version: 2.0.18
25
- Generated java-async 2017-03-21 for vod.
36

vod-20170321/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.aliyun</groupId>
55
<artifactId>alibabacloud-vod20170321</artifactId>
6-
<version>2.0.18</version>
6+
<version>2.0.19</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-vod20170321</name>
99
<description>Alibaba Cloud vod (20170321) Async SDK for Java
@@ -104,12 +104,11 @@
104104
<plugin>
105105
<groupId>org.sonatype.central</groupId>
106106
<artifactId>central-publishing-maven-plugin</artifactId>
107-
<version>0.8.0</version>
107+
<version>0.9.0</version>
108108
<extensions>true</extensions>
109109
<configuration>
110110
<publishingServerId>central</publishingServerId>
111111
<autoPublish>true</autoPublish>
112-
<waitUntil>published</waitUntil>
113112
</configuration>
114113
</plugin>
115114
</plugins>

vod-20170321/src/main/java/com/aliyun/sdk/service/vod20170321/models/BatchGetMediaInfosResponseBody.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1697,6 +1697,9 @@ public static class MezzanineInfo extends TeaModel {
16971697
@com.aliyun.core.annotation.NameInMap("Duration")
16981698
private String duration;
16991699

1700+
@com.aliyun.core.annotation.NameInMap("FileMD5")
1701+
private String fileMD5;
1702+
17001703
@com.aliyun.core.annotation.NameInMap("FileName")
17011704
private String fileName;
17021705

@@ -1729,6 +1732,7 @@ private MezzanineInfo(Builder builder) {
17291732
this.bitrate = builder.bitrate;
17301733
this.creationTime = builder.creationTime;
17311734
this.duration = builder.duration;
1735+
this.fileMD5 = builder.fileMD5;
17321736
this.fileName = builder.fileName;
17331737
this.fileURL = builder.fileURL;
17341738
this.fps = builder.fps;
@@ -1776,6 +1780,13 @@ public String getDuration() {
17761780
return this.duration;
17771781
}
17781782

1783+
/**
1784+
* @return fileMD5
1785+
*/
1786+
public String getFileMD5() {
1787+
return this.fileMD5;
1788+
}
1789+
17791790
/**
17801791
* @return fileName
17811792
*/
@@ -1844,6 +1855,7 @@ public static final class Builder {
18441855
private String bitrate;
18451856
private String creationTime;
18461857
private String duration;
1858+
private String fileMD5;
18471859
private String fileName;
18481860
private String fileURL;
18491861
private String fps;
@@ -1862,6 +1874,7 @@ private Builder(MezzanineInfo model) {
18621874
this.bitrate = model.bitrate;
18631875
this.creationTime = model.creationTime;
18641876
this.duration = model.duration;
1877+
this.fileMD5 = model.fileMD5;
18651878
this.fileName = model.fileName;
18661879
this.fileURL = model.fileURL;
18671880
this.fps = model.fps;
@@ -1914,6 +1927,14 @@ public Builder duration(String duration) {
19141927
return this;
19151928
}
19161929

1930+
/**
1931+
* FileMD5.
1932+
*/
1933+
public Builder fileMD5(String fileMD5) {
1934+
this.fileMD5 = fileMD5;
1935+
return this;
1936+
}
1937+
19171938
/**
19181939
* <p>The name of the file.</p>
19191940
*

vod-20170321/src/main/java/com/aliyun/sdk/service/vod20170321/models/GetMezzanineInfoResponseBody.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1140,6 +1140,9 @@ public static class Mezzanine extends TeaModel {
11401140
@com.aliyun.core.annotation.NameInMap("Duration")
11411141
private String duration;
11421142

1143+
@com.aliyun.core.annotation.NameInMap("FileMD5")
1144+
private String fileMD5;
1145+
11431146
@com.aliyun.core.annotation.NameInMap("FileName")
11441147
private String fileName;
11451148

@@ -1187,6 +1190,7 @@ private Mezzanine(Builder builder) {
11871190
this.bitrate = builder.bitrate;
11881191
this.creationTime = builder.creationTime;
11891192
this.duration = builder.duration;
1193+
this.fileMD5 = builder.fileMD5;
11901194
this.fileName = builder.fileName;
11911195
this.fileURL = builder.fileURL;
11921196
this.fps = builder.fps;
@@ -1239,6 +1243,13 @@ public String getDuration() {
12391243
return this.duration;
12401244
}
12411245

1246+
/**
1247+
* @return fileMD5
1248+
*/
1249+
public String getFileMD5() {
1250+
return this.fileMD5;
1251+
}
1252+
12421253
/**
12431254
* @return fileName
12441255
*/
@@ -1342,6 +1353,7 @@ public static final class Builder {
13421353
private String bitrate;
13431354
private String creationTime;
13441355
private String duration;
1356+
private String fileMD5;
13451357
private String fileName;
13461358
private String fileURL;
13471359
private String fps;
@@ -1365,6 +1377,7 @@ private Builder(Mezzanine model) {
13651377
this.bitrate = model.bitrate;
13661378
this.creationTime = model.creationTime;
13671379
this.duration = model.duration;
1380+
this.fileMD5 = model.fileMD5;
13681381
this.fileName = model.fileName;
13691382
this.fileURL = model.fileURL;
13701383
this.fps = model.fps;
@@ -1422,6 +1435,14 @@ public Builder duration(String duration) {
14221435
return this;
14231436
}
14241437

1438+
/**
1439+
* FileMD5.
1440+
*/
1441+
public Builder fileMD5(String fileMD5) {
1442+
this.fileMD5 = fileMD5;
1443+
return this;
1444+
}
1445+
14251446
/**
14261447
* <p>The name of the file.</p>
14271448
*

0 commit comments

Comments
 (0)