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

com.aliyun.pds20220301.models.DeleteDomainRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.pds20220301.models;

import com.aliyun.tea.*;

public class DeleteDomainRequest extends TeaModel {
    /**
     * 

The domain ID.

* * example: *

bj1

*/ @NameInMap("domain_id") public String domainId; public static DeleteDomainRequest build(java.util.Map map) throws Exception { DeleteDomainRequest self = new DeleteDomainRequest(); return TeaModel.build(map, self); } public DeleteDomainRequest setDomainId(String domainId) { this.domainId = domainId; return this; } public String getDomainId() { return this.domainId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy