com.aliyun.ens20171110.models.UdpConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ens20171110 Show documentation
Show all versions of ens20171110 Show documentation
Alibaba Cloud edge node service (20171110) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;
import com.aliyun.tea.*;
public class UdpConfig extends TeaModel {
@NameInMap("HashKey")
public String hashKey;
@NameInMap("Scheduler")
public String scheduler;
public static UdpConfig build(java.util.Map map) throws Exception {
UdpConfig self = new UdpConfig();
return TeaModel.build(map, self);
}
public UdpConfig setHashKey(String hashKey) {
this.hashKey = hashKey;
return this;
}
public String getHashKey() {
return this.hashKey;
}
public UdpConfig setScheduler(String scheduler) {
this.scheduler = scheduler;
return this;
}
public String getScheduler() {
return this.scheduler;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy