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

com.aliyun.ddoscoo20200101.models.DeleteWebCCRuleRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class DeleteWebCCRuleRequest extends TeaModel {
    /**
     * 

The domain name of the website.

*
*

> A forwarding rule must be configured for a domain name. You can call the [DescribeDomains](~~91724~~) operation to query all domain names.

*/ @NameInMap("Domain") public String domain; /** *

The name of the custom frequency control rule that you want to delete.

*/ @NameInMap("Name") public String name; /** *

The ID of the resource group to which the instance belongs in Resource Management. This parameter is empty by default, which indicates that the instance belongs to the default resource group.

*/ @NameInMap("ResourceGroupId") public String resourceGroupId; public static DeleteWebCCRuleRequest build(java.util.Map map) throws Exception { DeleteWebCCRuleRequest self = new DeleteWebCCRuleRequest(); return TeaModel.build(map, self); } public DeleteWebCCRuleRequest setDomain(String domain) { this.domain = domain; return this; } public String getDomain() { return this.domain; } public DeleteWebCCRuleRequest setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public DeleteWebCCRuleRequest setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; return this; } public String getResourceGroupId() { return this.resourceGroupId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy