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

com.aliyun.arms20190808.models.DeleteDispatchRuleRequest Maven / Gradle / Ivy

Go to download

Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java

There is a newer version: 9.2.5
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;

import com.aliyun.tea.*;

public class DeleteDispatchRuleRequest extends TeaModel {
    /**
     * 

The ID of the dispatch policy.

*

This parameter is required.

* * example: *

12345

*/ @NameInMap("Id") public String id; /** *

The ID of the region.

*

This parameter is required.

* * example: *

cn-hangzhou

*/ @NameInMap("RegionId") public String regionId; public static DeleteDispatchRuleRequest build(java.util.Map map) throws Exception { DeleteDispatchRuleRequest self = new DeleteDispatchRuleRequest(); return TeaModel.build(map, self); } public DeleteDispatchRuleRequest setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public DeleteDispatchRuleRequest setRegionId(String regionId) { this.regionId = regionId; return this; } public String getRegionId() { return this.regionId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy