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

com.alicloud.openservices.tablestore.model.tunnel.CreateTunnelResponse Maven / Gradle / Ivy

Go to download

Aliyun Open Services SDK for Java Copyright (C) Alibaba Cloud Computing All rights reserved. 版权所有 (C)阿里云计算有限公司 http://www.aliyun.com

The newest version!
package com.alicloud.openservices.tablestore.model.tunnel;

import com.alicloud.openservices.tablestore.model.Response;

/**
 * The return result of the CreateTunnel operation.
 */
public class CreateTunnelResponse extends Response {
    /**
     * The ID of the created Tunnel.
     */
    private String tunnelId;

    public CreateTunnelResponse(Response meta) {
        super(meta);
    }

    /**
     * Get the created Tunnel ID.
     *
     * @return The created Tunnel ID.
     */
    public String getTunnelId() {
        return tunnelId;
    }

    /**
     * Internal interface, do not use.
     */
    public void setTunnelId(String tunnelId) {
        this.tunnelId = tunnelId;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy