com.aliyun.sas20181203.models.DescribeFieldStatisticsRequest 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 DescribeFieldStatisticsRequest extends TeaModel {
/**
* The type of the asset to query. If no asset types are specified, all types of assets are returned. Valid values:
*
* - ecs: server
* - cloud_product: Alibaba Cloud service
*
*
* example:
* ecs
*/
@NameInMap("MachineTypes")
public String machineTypes;
/**
* The ID of the region in which the asset resides.
*
* example:
* cn-hangzhou
*/
@NameInMap("RegionId")
public String regionId;
/**
* The ID of the primary account of the Resource Directory member account.
*
* call the DescribeMonitorAccounts interface to obtain this parameter.
*
*
* example:
* 1232428423234****
*/
@NameInMap("ResourceDirectoryAccountId")
public Long resourceDirectoryAccountId;
public static DescribeFieldStatisticsRequest build(java.util.Map map) throws Exception {
DescribeFieldStatisticsRequest self = new DescribeFieldStatisticsRequest();
return TeaModel.build(map, self);
}
public DescribeFieldStatisticsRequest setMachineTypes(String machineTypes) {
this.machineTypes = machineTypes;
return this;
}
public String getMachineTypes() {
return this.machineTypes;
}
public DescribeFieldStatisticsRequest setRegionId(String regionId) {
this.regionId = regionId;
return this;
}
public String getRegionId() {
return this.regionId;
}
public DescribeFieldStatisticsRequest setResourceDirectoryAccountId(Long resourceDirectoryAccountId) {
this.resourceDirectoryAccountId = resourceDirectoryAccountId;
return this;
}
public Long getResourceDirectoryAccountId() {
return this.resourceDirectoryAccountId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy