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

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

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

import com.aliyun.tea.*;

public class DescribeCriteriaRequest extends TeaModel {
    /**
     * 

The type of the asset. Valid values:

*
*

* **ecs**: Elastic Compute Service (ECS) instance

*/ @NameInMap("MachineTypes") public String machineTypes; /** *

Specifies whether the keyword that you specify for fuzzy search can be automatically matched. default **false**, Valid values:

*
*

* **true**: yes

*

* **false**: no

*/ @NameInMap("SupportAutoTag") public Boolean supportAutoTag; /** *

The keyword that you specify for fuzzy search when you query the asset.

*/ @NameInMap("Value") public String value; public static DescribeCriteriaRequest build(java.util.Map map) throws Exception { DescribeCriteriaRequest self = new DescribeCriteriaRequest(); return TeaModel.build(map, self); } public DescribeCriteriaRequest setMachineTypes(String machineTypes) { this.machineTypes = machineTypes; return this; } public String getMachineTypes() { return this.machineTypes; } public DescribeCriteriaRequest setSupportAutoTag(Boolean supportAutoTag) { this.supportAutoTag = supportAutoTag; return this; } public Boolean getSupportAutoTag() { return this.supportAutoTag; } public DescribeCriteriaRequest setValue(String value) { this.value = value; return this; } public String getValue() { return this.value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy