com.aliyun.arms20190808.models.ListTimingSyntheticTasksShrinkRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arms20190808 Show documentation
Show all versions of arms20190808 Show documentation
Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;
import com.aliyun.tea.*;
public class ListTimingSyntheticTasksShrinkRequest extends TeaModel {
/**
* The region ID.
*
* example:
* cn-hangzhou
*/
@NameInMap("RegionId")
public String regionId;
/**
* The ID of the resource group.
*
* example:
* rg-acfmxyexli2****
*/
@NameInMap("ResourceGroupId")
public String resourceGroupId;
/**
* The search keyword.
*/
@NameInMap("Search")
public String searchShrink;
/**
* The tags.
*/
@NameInMap("Tags")
public String tagsShrink;
public static ListTimingSyntheticTasksShrinkRequest build(java.util.Map map) throws Exception {
ListTimingSyntheticTasksShrinkRequest self = new ListTimingSyntheticTasksShrinkRequest();
return TeaModel.build(map, self);
}
public ListTimingSyntheticTasksShrinkRequest setRegionId(String regionId) {
this.regionId = regionId;
return this;
}
public String getRegionId() {
return this.regionId;
}
public ListTimingSyntheticTasksShrinkRequest setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
return this;
}
public String getResourceGroupId() {
return this.resourceGroupId;
}
public ListTimingSyntheticTasksShrinkRequest setSearchShrink(String searchShrink) {
this.searchShrink = searchShrink;
return this;
}
public String getSearchShrink() {
return this.searchShrink;
}
public ListTimingSyntheticTasksShrinkRequest setTagsShrink(String tagsShrink) {
this.tagsShrink = tagsShrink;
return this;
}
public String getTagsShrink() {
return this.tagsShrink;
}
}