All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.iot20180120.models.BatchGetEdgeInstanceDriverConfigsRequest Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;

import com.aliyun.tea.*;

public class BatchGetEdgeInstanceDriverConfigsRequest extends TeaModel {
    @NameInMap("ApiProduct")
    public String apiProduct;

    @NameInMap("ApiRevision")
    public String apiRevision;

    @NameInMap("IotInstanceId")
    public String iotInstanceId;

    @NameInMap("InstanceId")
    public String instanceId;

    @NameInMap("DriverIds")
    public java.util.List driverIds;

    public static BatchGetEdgeInstanceDriverConfigsRequest build(java.util.Map map) throws Exception {
        BatchGetEdgeInstanceDriverConfigsRequest self = new BatchGetEdgeInstanceDriverConfigsRequest();
        return TeaModel.build(map, self);
    }

    public BatchGetEdgeInstanceDriverConfigsRequest setApiProduct(String apiProduct) {
        this.apiProduct = apiProduct;
        return this;
    }
    public String getApiProduct() {
        return this.apiProduct;
    }

    public BatchGetEdgeInstanceDriverConfigsRequest setApiRevision(String apiRevision) {
        this.apiRevision = apiRevision;
        return this;
    }
    public String getApiRevision() {
        return this.apiRevision;
    }

    public BatchGetEdgeInstanceDriverConfigsRequest setIotInstanceId(String iotInstanceId) {
        this.iotInstanceId = iotInstanceId;
        return this;
    }
    public String getIotInstanceId() {
        return this.iotInstanceId;
    }

    public BatchGetEdgeInstanceDriverConfigsRequest setInstanceId(String instanceId) {
        this.instanceId = instanceId;
        return this;
    }
    public String getInstanceId() {
        return this.instanceId;
    }

    public BatchGetEdgeInstanceDriverConfigsRequest setDriverIds(java.util.List driverIds) {
        this.driverIds = driverIds;
        return this;
    }
    public java.util.List getDriverIds() {
        return this.driverIds;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy