com.aliyun.sas20181203.models.DescribePropertyUsageTopRequest 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 DescribePropertyUsageTopRequest extends TeaModel {
/**
* The type of the asset fingerprint. Valid value:
*
* - port: port
* - process: process
* - software: software
* - user: account
* - sca: middleware
*
* This parameter is required.
*
* example:
* port
*/
@NameInMap("Type")
public String type;
public static DescribePropertyUsageTopRequest build(java.util.Map map) throws Exception {
DescribePropertyUsageTopRequest self = new DescribePropertyUsageTopRequest();
return TeaModel.build(map, self);
}
public DescribePropertyUsageTopRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy