com.aliyun.sas20181203.models.UpdateTargetListByBatchRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sas20181203 Show documentation
Show all versions of sas20181203 Show documentation
Alibaba Cloud Threat Detection (20181203) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;
import com.aliyun.tea.*;
public class UpdateTargetListByBatchRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 52370
*/
@NameInMap("BatchId")
public Long batchId;
/**
* This parameter is required.
*/
@NameInMap("OperationList")
public java.util.List operationList;
public static UpdateTargetListByBatchRequest build(java.util.Map map) throws Exception {
UpdateTargetListByBatchRequest self = new UpdateTargetListByBatchRequest();
return TeaModel.build(map, self);
}
public UpdateTargetListByBatchRequest setBatchId(Long batchId) {
this.batchId = batchId;
return this;
}
public Long getBatchId() {
return this.batchId;
}
public UpdateTargetListByBatchRequest setOperationList(java.util.List operationList) {
this.operationList = operationList;
return this;
}
public java.util.List getOperationList() {
return this.operationList;
}
public static class UpdateTargetListByBatchRequestOperationList extends TeaModel {
/**
* example:
* 11883086
*/
@NameInMap("GroupId")
public String groupId;
/**
* example:
* add
*/
@NameInMap("Operation")
public String operation;
/**
* example:
* de393767-6fe1-4a8d-837d-927a2b******
*/
@NameInMap("Uuid")
public String uuid;
/**
* example:
* vpc-bp1ow0rm9t92iza******
*/
@NameInMap("VpcInstanceId")
public String vpcInstanceId;
public static UpdateTargetListByBatchRequestOperationList build(java.util.Map map) throws Exception {
UpdateTargetListByBatchRequestOperationList self = new UpdateTargetListByBatchRequestOperationList();
return TeaModel.build(map, self);
}
public UpdateTargetListByBatchRequestOperationList setGroupId(String groupId) {
this.groupId = groupId;
return this;
}
public String getGroupId() {
return this.groupId;
}
public UpdateTargetListByBatchRequestOperationList setOperation(String operation) {
this.operation = operation;
return this;
}
public String getOperation() {
return this.operation;
}
public UpdateTargetListByBatchRequestOperationList setUuid(String uuid) {
this.uuid = uuid;
return this;
}
public String getUuid() {
return this.uuid;
}
public UpdateTargetListByBatchRequestOperationList setVpcInstanceId(String vpcInstanceId) {
this.vpcInstanceId = vpcInstanceId;
return this;
}
public String getVpcInstanceId() {
return this.vpcInstanceId;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy