Skip to content

Commit

Permalink
Update to support new apis.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Aug 1, 2024
1 parent 9cd37de commit 79a7d80
Show file tree
Hide file tree
Showing 14 changed files with 407 additions and 17 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-08-01 Version: 3.9.57
- Update to support new apis.

2024-07-29 Version: 2.0.29
- Update DescribeApiMetering API.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ public class DescribeLiveMessageAppResponse : AcsResponse

private long? modifyTime;

private int? msgLifeCycle;

private string dataCenter;

[JsonProperty(PropertyName = "RequestId")]
Expand Down Expand Up @@ -207,6 +209,19 @@ public long? ModifyTime
}
}

[JsonProperty(PropertyName = "MsgLifeCycle")]
public int? MsgLifeCycle
{
get
{
return msgLifeCycle;
}
set
{
msgLifeCycle = value;
}
}

[JsonProperty(PropertyName = "DataCenter")]
public string DataCenter
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@ public DescribeLiveStreamsOnlineListRequest()

private int? pageSize;

private bool? isGetCurrentRate;

private string streamName;

private string queryType;
Expand Down Expand Up @@ -115,6 +117,20 @@ public int? PageSize
}
}

[JsonProperty(PropertyName = "IsGetCurrentRate")]
public bool? IsGetCurrentRate
{
get
{
return isGetCurrentRate;
}
set
{
isGetCurrentRate = value;
DictionaryUtil.Add(QueryParameters, "IsGetCurrentRate", value.ToString());
}
}

[JsonProperty(PropertyName = "StreamName")]
public string StreamName
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,31 @@ namespace Aliyun.Acs.live.Model.V20161101
public class DescribeLiveStreamsOnlineListResponse : AcsResponse
{

private string requestId;

private int? totalPage;

private int? pageNum;

private int? pageSize;

private string requestId;

private int? totalNum;

private List<DescribeLiveStreamsOnlineList_LiveStreamOnlineInfo> onlineInfo;

[JsonProperty(PropertyName = "RequestId")]
public string RequestId
{
get
{
return requestId;
}
set
{
requestId = value;
}
}

[JsonProperty(PropertyName = "TotalPage")]
public int? TotalPage
{
Expand Down Expand Up @@ -76,19 +89,6 @@ public int? PageSize
}
}

[JsonProperty(PropertyName = "RequestId")]
public string RequestId
{
get
{
return requestId;
}
set
{
requestId = value;
}
}

[JsonProperty(PropertyName = "TotalNum")]
public int? TotalNum
{
Expand Down Expand Up @@ -158,6 +158,18 @@ public class DescribeLiveStreamsOnlineList_LiveStreamOnlineInfo

private string streamUrlArgs;

private int? currAudioDataRate;

private int? currVideoDataRate;

private int? currWidth;

private int? currHeight;

private int? currFrameRate;

private int? currVideoCodecId;

[JsonProperty(PropertyName = "AudioDataRate")]
public int? AudioDataRate
{
Expand Down Expand Up @@ -417,6 +429,84 @@ public string StreamUrlArgs
streamUrlArgs = value;
}
}

[JsonProperty(PropertyName = "CurrAudioDataRate")]
public int? CurrAudioDataRate
{
get
{
return currAudioDataRate;
}
set
{
currAudioDataRate = value;
}
}

[JsonProperty(PropertyName = "CurrVideoDataRate")]
public int? CurrVideoDataRate
{
get
{
return currVideoDataRate;
}
set
{
currVideoDataRate = value;
}
}

[JsonProperty(PropertyName = "CurrWidth")]
public int? CurrWidth
{
get
{
return currWidth;
}
set
{
currWidth = value;
}
}

[JsonProperty(PropertyName = "CurrHeight")]
public int? CurrHeight
{
get
{
return currHeight;
}
set
{
currHeight = value;
}
}

[JsonProperty(PropertyName = "CurrFrameRate")]
public int? CurrFrameRate
{
get
{
return currFrameRate;
}
set
{
currFrameRate = value;
}
}

[JsonProperty(PropertyName = "CurrVideoCodecId")]
public int? CurrVideoCodecId
{
get
{
return currVideoCodecId;
}
set
{
currVideoCodecId = value;
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ public class DescribeShowList_ShowListInfo

private string currentShowId;

private string background;

private string watermark;

private string highPriorityShowId;

private string highPriorityShowStartTime;
Expand All @@ -98,6 +102,32 @@ public string CurrentShowId
}
}

[JsonProperty(PropertyName = "Background")]
public string Background
{
get
{
return background;
}
set
{
background = value;
}
}

[JsonProperty(PropertyName = "Watermark")]
public string Watermark
{
get
{
return watermark;
}
set
{
watermark = value;
}
}

[JsonProperty(PropertyName = "HighPriorityShowId")]
public string HighPriorityShowId
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,8 @@ public class ListLiveMessageApps_Apps

private long? modifyTime;

private int? msgLifeCycle;

[JsonProperty(PropertyName = "AppId")]
public string AppId
{
Expand Down Expand Up @@ -207,6 +209,19 @@ public long? ModifyTime
modifyTime = value;
}
}

[JsonProperty(PropertyName = "MsgLifeCycle")]
public int? MsgLifeCycle
{
get
{
return msgLifeCycle;
}
set
{
msgLifeCycle = value;
}
}
}
}
}
Loading

0 comments on commit 79a7d80

Please sign in to comment.