com.aliyun.iot20180120.models.SetEdgeInstanceDriverConfigsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iot20180120 Show documentation
Show all versions of iot20180120 Show documentation
Alibaba Cloud IoT Platform (20180120) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;
import com.aliyun.tea.*;
public class SetEdgeInstanceDriverConfigsRequest extends TeaModel {
@NameInMap("Configs")
public java.util.List configs;
@NameInMap("DriverId")
public String driverId;
@NameInMap("InstanceId")
public String instanceId;
@NameInMap("IotInstanceId")
public String iotInstanceId;
public static SetEdgeInstanceDriverConfigsRequest build(java.util.Map map) throws Exception {
SetEdgeInstanceDriverConfigsRequest self = new SetEdgeInstanceDriverConfigsRequest();
return TeaModel.build(map, self);
}
public SetEdgeInstanceDriverConfigsRequest setConfigs(java.util.List configs) {
this.configs = configs;
return this;
}
public java.util.List getConfigs() {
return this.configs;
}
public SetEdgeInstanceDriverConfigsRequest setDriverId(String driverId) {
this.driverId = driverId;
return this;
}
public String getDriverId() {
return this.driverId;
}
public SetEdgeInstanceDriverConfigsRequest setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
public SetEdgeInstanceDriverConfigsRequest setIotInstanceId(String iotInstanceId) {
this.iotInstanceId = iotInstanceId;
return this;
}
public String getIotInstanceId() {
return this.iotInstanceId;
}
public static class SetEdgeInstanceDriverConfigsRequestConfigs extends TeaModel {
@NameInMap("Content")
public String content;
@NameInMap("Format")
public String format;
@NameInMap("Key")
public String key;
public static SetEdgeInstanceDriverConfigsRequestConfigs build(java.util.Map map) throws Exception {
SetEdgeInstanceDriverConfigsRequestConfigs self = new SetEdgeInstanceDriverConfigsRequestConfigs();
return TeaModel.build(map, self);
}
public SetEdgeInstanceDriverConfigsRequestConfigs setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public SetEdgeInstanceDriverConfigsRequestConfigs setFormat(String format) {
this.format = format;
return this;
}
public String getFormat() {
return this.format;
}
public SetEdgeInstanceDriverConfigsRequestConfigs setKey(String key) {
this.key = key;
return this;
}
public String getKey() {
return this.key;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy