1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-17 14:26:34 +00:00

gcloud: Thu Nov 9 11:45:52 UTC 2023

This commit is contained in:
Automated 2023-11-09 11:45:52 +00:00
parent f2c5d1d45f
commit 03f0979970
300 changed files with 8569 additions and 1319 deletions

View file

@ -3,7 +3,7 @@ NAME
SYNOPSIS
gcloud storage objects describe URL [--additional-headers=HEADER=VALUE]
[--fetch-encrypted-object-hashes] [--raw]
[--fetch-encrypted-object-hashes] [--raw] [--soft-deleted]
[--decryption-keys=[DECRYPTION_KEY,...]] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
@ -41,6 +41,10 @@ FLAGS
Shows metadata in the format returned by the API instead of
standardizing it.
--soft-deleted
Displays soft-deleted objects only. Excludes live and noncurrent
objects.
ENCRYPTION FLAGS
--decryption-keys=[DECRYPTION_KEY,...]
A comma-separated list of customer-supplied encryption keys (RFC 4648

View file

@ -3,10 +3,12 @@ NAME
SYNOPSIS
gcloud storage objects list URLS [URLS ...]
[--additional-headers=HEADER=VALUE] [--fetch-encrypted-object-hashes]
[--raw] [--stat] [--decryption-keys=[DECRYPTION_KEY,...]]
[--filter=EXPRESSION] [--limit=LIMIT] [--page-size=PAGE_SIZE]
[--sort-by=[FIELD,...]] [--uri] [GCLOUD_WIDE_FLAG ...]
[--additional-headers=HEADER=VALUE] [--exhaustive]
[--fetch-encrypted-object-hashes] [--next-page-token=NEXT_PAGE_TOKEN]
[--raw] [--soft-deleted] [--stat]
[--decryption-keys=[DECRYPTION_KEY,...]] [--filter=EXPRESSION]
[--limit=LIMIT] [--page-size=PAGE_SIZE] [--sort-by=[FIELD,...]] [--uri]
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
List Cloud Storage objects.
@ -39,16 +41,28 @@ FLAGS
Overrides the default storage/additional_headers property value for
this command invocation.
--exhaustive
For features like soft delete, the API may return an empty list. If
present, continue querying. This may incur costs from repeated LIST
calls and may not return any additional objects.
--fetch-encrypted-object-hashes
API requests to the LIST endpoint do not fetch the hashes for encrypted
objects by default. If this flag is set, a GET request is sent for each
encrypted object in order to fetch hashes. This can significantly
increase the cost of the command.
--next-page-token=NEXT_PAGE_TOKEN
Page token for resuming LIST calls.
--raw
Shows metadata in the format returned by the API instead of
standardizing it.
--soft-deleted
Displays soft-deleted objects only. Excludes live and noncurrent
objects.
--stat
Emulates gsutil stat-style behavior. Does not show past object versions
and changes output format.

View file

@ -15,11 +15,10 @@ SYNOPSIS
--encryption-key=ENCRYPTION_KEY]
[--cache-control=CACHE_CONTROL --clear-cache-control
--clear-content-disposition --clear-content-encoding
--clear-content-language --clear-content-md5 --clear-content-type
--clear-custom-time --content-disposition=CONTENT_DISPOSITION
--clear-content-language --clear-content-type --clear-custom-time
--content-disposition=CONTENT_DISPOSITION
--content-encoding=CONTENT_ENCODING
--content-language=CONTENT_LANGUAGE --content-md5=MD5_DIGEST
--content-type=CONTENT_TYPE
--content-language=CONTENT_LANGUAGE --content-type=CONTENT_TYPE
--custom-time=CUSTOM_TIME --clear-custom-metadata
| --custom-metadata=[CUSTOM_METADATA_KEYS_AND_VALUES,...]
| --remove-custom-metadata=[METADATA_KEYS,...]
@ -160,9 +159,6 @@ OBJECT METADATA FLAGS
--clear-content-language
Clears object content language.
--clear-content-md5
Clears object content MD5.
--clear-content-type
Clears object content type.
@ -178,11 +174,6 @@ OBJECT METADATA FLAGS
--content-language=CONTENT_LANGUAGE
Content's language (e.g. en signifies "English").
--content-md5=MD5_DIGEST
Manually specified MD5 hash digest for the contents of an uploaded
file. This flag cannot be used when uploading multiple files. The
custom digest is used by the cloud provider for validation.
--content-type=CONTENT_TYPE
Type of data contained in the object (e.g. text/html).