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

com.aliyun.ens20171110.models.UnloadRegionSDGRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class UnloadRegionSDGRequest extends TeaModel {
    /**
     * 

The destination nodes.

*

This parameter is required.

*/ @NameInMap("DestinationRegionIds") public java.util.List destinationRegionIds; /** *

The namespaces.

*/ @NameInMap("Namespaces") public java.util.List namespaces; /** *

Deletes the shared data group (SDG) ID of the preloaded data.

*

This parameter is required.

* * example: *

sdg-xxxx

*/ @NameInMap("SDGId") public String SDGId; public static UnloadRegionSDGRequest build(java.util.Map map) throws Exception { UnloadRegionSDGRequest self = new UnloadRegionSDGRequest(); return TeaModel.build(map, self); } public UnloadRegionSDGRequest setDestinationRegionIds(java.util.List destinationRegionIds) { this.destinationRegionIds = destinationRegionIds; return this; } public java.util.List getDestinationRegionIds() { return this.destinationRegionIds; } public UnloadRegionSDGRequest setNamespaces(java.util.List namespaces) { this.namespaces = namespaces; return this; } public java.util.List getNamespaces() { return this.namespaces; } public UnloadRegionSDGRequest setSDGId(String SDGId) { this.SDGId = SDGId; return this; } public String getSDGId() { return this.SDGId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy