├── go.mod ├── ChangeLog.txt ├── README-CN.md └── README.md /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/alibabacloud-go/pds-sdk 2 | 3 | go 1.14 4 | 5 | require ( 6 | github.com/alibabacloud-go/pds-credentials v1.0.0 7 | github.com/alibabacloud-go/tea v1.1.15 8 | github.com/alibabacloud-go/tea-roa-utils v1.1.5 9 | github.com/alibabacloud-go/tea-utils v1.3.9 10 | github.com/aliyun/credentials-go v1.1.2 11 | ) 12 | -------------------------------------------------------------------------------- /ChangeLog.txt: -------------------------------------------------------------------------------- 1 | 2021-03-12 Version: v1.0.10 2 | - Update apis 3 | 4 | 2021-03-11 Version: v1.0.9 5 | - Update apis 6 | 7 | 2021-03-08 Version: v1.0.8 8 | - Update apis 9 | 10 | 2021-03-01 Version: v1.0.7 11 | - Update apis 12 | 13 | 2021-02-23 Version: v1.0.6 14 | - Update apis 15 | 16 | 2021-01-29 Version: v1.0.4 17 | - Update apis 18 | 19 | 2020-12-16 Version: v1.0.3 20 | - Update apis 21 | 22 | 2020-10-30 Version: v1.0.2 23 | - Update mod 24 | 25 | 2020-10-29 Version: v1.0.1 26 | - Update apis 27 | 28 | 2020-08-21 Version: v1.0.0 29 | - Init project -------------------------------------------------------------------------------- /README-CN.md: -------------------------------------------------------------------------------- 1 | [English](README.md) | 简体中文 2 | 3 | ![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) 4 | 5 | ## Alibaba Cloud PDS SDK for Go 6 | 7 | ## 要求 8 | - 您需要确保本地安装的 go 环境版本大于 1.12.0. 9 | 10 | ## 安装 11 | 12 | 你可以使用 `go mod` 来管理你的依赖, 13 | ```sh 14 | $ go get github.com/alibabacloud-go/pds-sdk 15 | ``` 16 | 17 | ## 问题 18 | [提交 Issue](https://github.com/aliyun/alibabacloud-pds-sdk/issues/new),不符合指南的问题可能会立即关闭。 19 | 20 | ## 发行说明 21 | 每个版本的详细更改记录在[发行说明](./ChangeLog.txt)中。 22 | 23 | ## 相关 24 | * [最新源码](https://github.com/aliyun/alibabacloud-pds-sdk/tree/master/ccppath-sdk/go) 25 | 26 | ## 许可证 27 | [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) 28 | 29 | Copyright (c) 2009-present, Alibaba Cloud All rights reserved. 30 | 31 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | English | [简体中文](README-CN.md) 2 | ![](https://aliyunsdk-pages.alicdn.com/icons/AlibabaCloud.svg) 3 | 4 | ## Alibaba Cloud PDS SDK for Go 5 | 6 | ## Requirements 7 | - It's necessary for you to make sure your system have installed a Go environment which is new than 1.12.0. 8 | 9 | ## Installation 10 | If you use `go mod` to manage your dependence, you can use the following command: 11 | 12 | ```sh 13 | $ go get github.com/alibabacloud-go/pds-sdk 14 | ``` 15 | 16 | ## Issues 17 | [Opening an Issue](https://github.com/aliyun/alibabacloud-pds-sdk/issues/new), Issues not conforming to the guidelines may be closed immediately. 18 | 19 | ## Changelog 20 | Detailed changes for each release are documented in the [release notes](./ChangeLog.txt). 21 | 22 | ## References 23 | * [Latest Release](https://github.com/aliyun/alibabacloud-pds-sdk/tree/master/ccppath-sdk/go) 24 | 25 | ## License 26 | [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0) 27 | 28 | Copyright (c) 2009-present, Alibaba Cloud All rights reserved. --------------------------------------------------------------------------------