Skip to content

Commit d656f0c

Browse files
committed
Generated 2016-11-01 for live.
1 parent 38d0555 commit d656f0c

File tree

7 files changed

+577
-18
lines changed

7 files changed

+577
-18
lines changed

aliyun-java-sdk-live/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-07-29 Version: 3.9.68
2+
- Generated 2016-11-01 for `live`.
3+
14
2025-06-11 Version: 3.9.67
25
支持创建RTC WHIP推流地址
36

aliyun-java-sdk-live/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-live</artifactId>
66
<packaging>jar</packaging>
7-
<version>3.9.67</version>
7+
<version>3.9.68</version>
88
<name>aliyun-java-sdk-live</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
@@ -103,14 +103,14 @@ http://www.aliyun.com</description>
103103
</executions>
104104
</plugin>
105105
<plugin>
106-
<groupId>org.sonatype.plugins</groupId>
107-
<artifactId>nexus-staging-maven-plugin</artifactId>
108-
<version>1.6.3</version>
106+
<groupId>org.sonatype.central</groupId>
107+
<artifactId>central-publishing-maven-plugin</artifactId>
108+
<version>0.8.0</version>
109109
<extensions>true</extensions>
110110
<configuration>
111-
<serverId>sonatype-nexus-staging</serverId>
112-
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
113-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
111+
<publishingServerId>central</publishingServerId>
112+
<autoPublish>true</autoPublish>
113+
<waitUntil>published</waitUntil>
114114
</configuration>
115115
</plugin>
116116
</plugins>

aliyun-java-sdk-live/src/main/java/com/aliyuncs/live/model/v20161101/DescribeCastersResponse.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -85,10 +85,10 @@ public static class Caster {
8585

8686
private Integer status;
8787

88-
private Integer resourceGroupId;
89-
9088
private String clientTokenId;
9189

90+
private String resourceGroupId;
91+
9292
private List<Tag> tags;
9393

9494
public String getCasterId() {
@@ -203,14 +203,6 @@ public void setStatus(Integer status) {
203203
this.status = status;
204204
}
205205

206-
public Integer getResourceGroupId() {
207-
return this.resourceGroupId;
208-
}
209-
210-
public void setResourceGroupId(Integer resourceGroupId) {
211-
this.resourceGroupId = resourceGroupId;
212-
}
213-
214206
public String getClientTokenId() {
215207
return this.clientTokenId;
216208
}
@@ -219,6 +211,14 @@ public void setClientTokenId(String clientTokenId) {
219211
this.clientTokenId = clientTokenId;
220212
}
221213

214+
public String getResourceGroupId() {
215+
return this.resourceGroupId;
216+
}
217+
218+
public void setResourceGroupId(String resourceGroupId) {
219+
this.resourceGroupId = resourceGroupId;
220+
}
221+
222222
public List<Tag> getTags() {
223223
return this.tags;
224224
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
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.live.model.v20161101;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.ProtocolType;
19+
import com.aliyuncs.http.MethodType;
20+
import com.aliyuncs.live.Endpoint;
21+
22+
/**
23+
* @author auto create
24+
* @version
25+
*/
26+
public class DescribeLiveUserStreamMetricDataRequest extends RpcAcsRequest<DescribeLiveUserStreamMetricDataResponse> {
27+
28+
29+
private String startTime;
30+
31+
private Long pageNumber;
32+
33+
private String protocol;
34+
35+
private String appName;
36+
37+
private Long pageSize;
38+
39+
private String streamName;
40+
41+
private String domainName;
42+
43+
private String endTime;
44+
public DescribeLiveUserStreamMetricDataRequest() {
45+
super("live", "2016-11-01", "DescribeLiveUserStreamMetricData", "live");
46+
setProtocol(ProtocolType.HTTPS);
47+
setMethod(MethodType.POST);
48+
try {
49+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
50+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
51+
} catch (Exception e) {}
52+
}
53+
54+
public String getStartTime() {
55+
return this.startTime;
56+
}
57+
58+
public void setStartTime(String startTime) {
59+
this.startTime = startTime;
60+
if(startTime != null){
61+
putQueryParameter("StartTime", startTime);
62+
}
63+
}
64+
65+
public Long getPageNumber() {
66+
return this.pageNumber;
67+
}
68+
69+
public void setPageNumber(Long pageNumber) {
70+
this.pageNumber = pageNumber;
71+
if(pageNumber != null){
72+
putQueryParameter("PageNumber", pageNumber.toString());
73+
}
74+
}
75+
76+
public String getBizProtocol() {
77+
return this.protocol;
78+
}
79+
80+
public void setBizProtocol(String protocol) {
81+
this.protocol = protocol;
82+
if(protocol != null){
83+
putQueryParameter("Protocol", protocol);
84+
}
85+
}
86+
87+
public String getAppName() {
88+
return this.appName;
89+
}
90+
91+
public void setAppName(String appName) {
92+
this.appName = appName;
93+
if(appName != null){
94+
putQueryParameter("AppName", appName);
95+
}
96+
}
97+
98+
public Long getPageSize() {
99+
return this.pageSize;
100+
}
101+
102+
public void setPageSize(Long pageSize) {
103+
this.pageSize = pageSize;
104+
if(pageSize != null){
105+
putQueryParameter("PageSize", pageSize.toString());
106+
}
107+
}
108+
109+
public String getStreamName() {
110+
return this.streamName;
111+
}
112+
113+
public void setStreamName(String streamName) {
114+
this.streamName = streamName;
115+
if(streamName != null){
116+
putQueryParameter("StreamName", streamName);
117+
}
118+
}
119+
120+
public String getDomainName() {
121+
return this.domainName;
122+
}
123+
124+
public void setDomainName(String domainName) {
125+
this.domainName = domainName;
126+
if(domainName != null){
127+
putQueryParameter("DomainName", domainName);
128+
}
129+
}
130+
131+
public String getEndTime() {
132+
return this.endTime;
133+
}
134+
135+
public void setEndTime(String endTime) {
136+
this.endTime = endTime;
137+
if(endTime != null){
138+
putQueryParameter("EndTime", endTime);
139+
}
140+
}
141+
142+
@Override
143+
public Class<DescribeLiveUserStreamMetricDataResponse> getResponseClass() {
144+
return DescribeLiveUserStreamMetricDataResponse.class;
145+
}
146+
147+
}

0 commit comments

Comments
 (0)