-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
67e263d
commit 1a05744
Showing
6 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/** 查询存储桶或文件列表 - ls | ||
* ./coscli ls [cos://bucketAlias[/prefix/]] [flag] | ||
* ./coscli ls [doge://bucketAlias[/prefix/]] [flag] | ||
* https://cloud.tencent.com/document/product/436/63668 | ||
*/ | ||
import { Command } from "https://deno.land/x/[email protected]/command/mod.ts"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/** 创建存储桶 - mb | ||
* ./coscli mb cos://<BucketName-APPID> -r <Region> [flag] | ||
* ./coscli mb doge://<BucketName-APPID> -r <Region> [flag] | ||
* https://cloud.tencent.com/document/product/436/63145 | ||
*/ | ||
import { Command, EnumType } from "https://deno.land/x/[email protected]/command/mod.ts"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/** 删除存储桶 - rb | ||
* ./coscli rb cos://<BucketName-APPID> -r <Region> [flag] | ||
* ./coscli rb doge://<BucketName-APPID> -r <Region> [flag] | ||
* https://cloud.tencent.com/document/product/436/63667 | ||
*/ | ||
import { Command, EnumType } from "https://deno.land/x/[email protected]/command/mod.ts"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/** 删除文件 - rm | ||
* ./coscli rm cos://<bucketAlias>[/prefix/] [cos://<bucket-name>[/prefix/]...] [flag] | ||
* ./coscli rm doge://<bucketAlias>[/prefix/] [doge://<bucket-name>[/prefix/]...] [flag] | ||
* https://www.tencentcloud.com/zh/document/product/436/43258 | ||
*/ | ||
import { Command } from "https://deno.land/x/[email protected]/command/mod.ts"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/** 获取预签名 URL - signurl | ||
* ./coscli signurl cos://<bucketAlias>/<key> [flag] | ||
* ./coscli signurl doge://<bucketAlias>/<key> [flag] | ||
* https://tencentcloud.com/zh/document/product/436/43263 | ||
*/ | ||
import { Command } from "https://deno.land/x/[email protected]/command/mod.ts"; | ||
|