mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-16 12:22:03 +00:00
gcloud: Wed Jun 8 09:13:38 UTC 2022
This commit is contained in:
parent
82063cbb03
commit
28d031b3c1
240 changed files with 3156 additions and 1115 deletions
|
|
@ -2,8 +2,8 @@ NAME
|
|||
gcloud alpha storage cp - upload, download, and copy Cloud Storage objects
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha storage cp SOURCE [SOURCE ...] DESTINATION
|
||||
[--all-versions, -A] [--cache-control=CACHE_CONTROL] [--no-clobber, -n]
|
||||
gcloud alpha storage cp [SOURCE ...] DESTINATION [--all-versions, -A]
|
||||
[--cache-control=CACHE_CONTROL] [--no-clobber, -n]
|
||||
[--content-disposition=CONTENT_DISPOSITION]
|
||||
[--content-encoding=CONTENT_ENCODING]
|
||||
[--content-language=CONTENT_LANGUAGE] [--content-md5=MD5_DIGEST]
|
||||
|
|
@ -13,7 +13,8 @@ SYNOPSIS
|
|||
[--if-metageneration-match=METAGENERATION] [--ignore-symlinks]
|
||||
[--manifest-path=MANIFEST_PATH, -L MANIFEST_PATH]
|
||||
[--preserve-posix, -P] [--print-created-message, -v]
|
||||
[--recursive, -R, -r] [--skip-unsupported, -U]
|
||||
[--read-paths-from-stdin, -I] [--recursive, -R, -r]
|
||||
[--skip-unsupported, -U]
|
||||
[--storage-class=STORAGE_CLASS, -s STORAGE_CLASS]
|
||||
[--canned-acl=PREDEFINED_ACL,
|
||||
--predefined-acl=PREDEFINED_ACL, -a PREDEFINED_ACL
|
||||
|
|
@ -49,7 +50,7 @@ EXAMPLES
|
|||
$ gcloud alpha storage cp --recursive dir gs://my-bucket
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
SOURCE [SOURCE ...]
|
||||
[SOURCE ...]
|
||||
The source path(s) to copy.
|
||||
|
||||
DESTINATION
|
||||
|
|
@ -156,6 +157,13 @@ FLAGS
|
|||
--print-created-message, -v
|
||||
Prints the version-specific URL for each copied object.
|
||||
|
||||
--read-paths-from-stdin, -I
|
||||
Read the list of resources to copy from stdin. No need to enter a
|
||||
source argument if this flag is present. Example: "storage cp -I
|
||||
gs://bucket/destination" Note: To copy the contents of one file
|
||||
directly from stdin, use "-" as the source argument without the "-I"
|
||||
flag.
|
||||
|
||||
--recursive, -R, -r
|
||||
Recursively copy the contents of any directories that match the source
|
||||
path expression.
|
||||
|
|
|
|||
|
|
@ -4,8 +4,9 @@ NAME
|
|||
SYNOPSIS
|
||||
gcloud alpha storage rm [URLS ...] [--all-versions, -a]
|
||||
[--continue-on-error, -c] [--if-generation-match=GENERATION]
|
||||
[--if-metageneration-match=METAGENERATION] [--recursive, -R, -r]
|
||||
[--stdin, -I] [GCLOUD_WIDE_FLAG ...]
|
||||
[--if-metageneration-match=METAGENERATION]
|
||||
[--read-paths-from-stdin, -I] [--recursive, -R, -r]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Delete objects and buckets.
|
||||
|
|
@ -69,6 +70,9 @@ FLAGS
|
|||
Execute only if the metageneration matches the metageneration of the
|
||||
requested object.
|
||||
|
||||
--read-paths-from-stdin, -I
|
||||
Read the list of resources to remove from stdin.
|
||||
|
||||
--recursive, -R, -r
|
||||
Recursively delete the contents of buckets or directories that match
|
||||
the path expression. If the path is set to a bucket, like gs://bucket,
|
||||
|
|
@ -76,9 +80,6 @@ FLAGS
|
|||
option. If you want to delete only live object versions, use the ``**''
|
||||
wildcard instead.
|
||||
|
||||
--stdin, -I
|
||||
Read the list of resources to remove from stdin.
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --access-token-file, --account,
|
||||
--billing-project, --configuration, --flags-file, --flatten, --format,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue