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

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

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;

import com.aliyun.tea.*;

public class QueryOTAJobRequest extends TeaModel {
    /**
     * 

The ID of the instance. You can view the instance ID on the Overview page in the IoT Platform console.

*
*
    *
  • If your instance has an ID, you must configure this parameter. If you do not set this parameter, the call fails.
  • *
  • If your instance has no Overview page or ID, you do not need to set this parameter.
  • *
*
*

For more information, see Overview.

* * example: *

iot-cn-0pp1n8t****

*/ @NameInMap("IotInstanceId") public String iotInstanceId; /** *

The ID of the update batch.

*

After you call the CreateOTAVerifyJob, CreateOTAStaticUpgradeJob, or CreateOTADynamicUpgradeJob API operation to create the update batch, you can obtain the JobId parameter. You can also view the batch ID on the Update Package Details page of the IoT Platform console.

*

This parameter is required.

* * example: *

wahVIzGkCMuAUE2gDERM02****

*/ @NameInMap("JobId") public String jobId; public static QueryOTAJobRequest build(java.util.Map map) throws Exception { QueryOTAJobRequest self = new QueryOTAJobRequest(); return TeaModel.build(map, self); } public QueryOTAJobRequest setIotInstanceId(String iotInstanceId) { this.iotInstanceId = iotInstanceId; return this; } public String getIotInstanceId() { return this.iotInstanceId; } public QueryOTAJobRequest setJobId(String jobId) { this.jobId = jobId; return this; } public String getJobId() { return this.jobId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy