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

com.aliyun.sas20181203.models.DeleteCycleTaskRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class DeleteCycleTaskRequest extends TeaModel {
    /**
     * 

The ID of the task configuration.

*
*

> You can call the [DescribeCycleTaskList](~~DescribeCycleTaskList~~) operation to query the IDs of task configurations.

*/ @NameInMap("ConfigId") public String configId; public static DeleteCycleTaskRequest build(java.util.Map map) throws Exception { DeleteCycleTaskRequest self = new DeleteCycleTaskRequest(); return TeaModel.build(map, self); } public DeleteCycleTaskRequest setConfigId(String configId) { this.configId = configId; return this; } public String getConfigId() { return this.configId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy