Aliyun.Oss.Object.Symlink.get

You're seeing just the function get, go back to Aliyun.Oss.Object.Symlink module for more information.
Link to this function

get(bucket, object)

Specs

get(String.t(), String.t()) ::
  {:error, error()} | {:ok, Aliyun.Oss.Client.Response.t()}

GetSymlink接口用于获取符号链接。此操作需要您对该符号链接有读权限。

Examples

iex> Aliyun.Oss.Object.Symlink.get("some-bucket", "some-object")
{:ok, %Aliyun.Oss.Client.Response{
    data: "",
    headers: [
      {"Server", "AliyunOSS"},
      {"Date", "Fri, 01 Mar 2019 06:26:07 GMT"},
      {"Content-Type", "text/plain"},
      {"Content-Length", "0"},
      {"Connection", "keep-alive"},
      {"x-oss-request-id", "5C7000000000000000000000"},
      {"Last-Modified", "Fri, 01 Mar 2019 06:23:13 GMT"},
      {"ETag", ""6751C000000000000000000000000000""},
      {"x-oss-symlink-target", "test.txt"},
      {"x-oss-server-time", "1"}
    ]
  }
}