com.volcengine.model.live.v20230101.UpdateStreamQuotaConfigBodyQuotaDetailListItemStreamConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.live.v20230101;
import com.alibaba.fastjson.JSON;
/**
* UpdateStreamQuotaConfigBodyQuotaDetailListItemStreamConfig
*/
@lombok.Data
public final class UpdateStreamQuotaConfigBodyQuotaDetailListItemStreamConfig {
/**
* 推流路数限额,取值[10~200000]。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Quota")
private Integer quota;
/**
* 推流路数限额告警阈值,缺省情况表示不设置告警。取值范围为 \[10,200000\]。
*
* :::tip
*
* 该参数的取值需要小于等于推流路数限额 `Quota`,否则会报错。
*
* :::
*/
@com.alibaba.fastjson.annotation.JSONField(name = "AlarmThreshold")
private Integer alarmThreshold;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy