1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-20 13:10:18 +00:00

gcloud: Wed Apr 17 09:40:58 UTC 2024

This commit is contained in:
Automated 2024-04-17 09:40:58 +00:00
parent 7e2535c53d
commit 3740758467
178 changed files with 2958 additions and 1351 deletions

View file

@ -4,8 +4,9 @@ NAME
SYNOPSIS
gcloud certificate-manager trust-configs create
(TRUST_CONFIG : --location=LOCATION)
--trust-store=[intermediate-cas=INTERMEDIATE-CAS],
[trust-anchors=TRUST-ANCHORS] [--async] [--description=DESCRIPTION]
(--allowlisted-certificates=[ALLOWLISTED_CERTIFICATES,...]
--trust-store=[intermediate-cas=INTERMEDIATE-CAS],
[trust-anchors=TRUST-ANCHORS]) [--async] [--description=DESCRIPTION]
[--labels=[KEY=VALUE,...]] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
@ -54,20 +55,33 @@ POSITIONAL ARGUMENTS
▸ default value of location is [global].
REQUIRED FLAGS
--trust-store=[intermediate-cas=INTERMEDIATE-CAS],[trust-anchors=TRUST-ANCHORS]
Trust Store with the given trust anchor and intermediate CA PEM-encoded
certificates. Certificates should be provided in files. For multiple
file names, separate them by a semicolon (';') and quote them ('"').
One file can contain multiple certificates. Intermediate CAs are
optional.
At least one of these must be specified:
Examples:
--allowlisted-certificates=[ALLOWLISTED_CERTIFICATES,...]
Allowlisted PEM-encoded certificates. Certificates should be provided
in files. For multiple file names, separate them by a comma (',').
One file can contain multiple certificates.
Single files: --trust-store trust-anchors=ta.pem,intermediate-cas=ica.pem
Examples:
No intermediate CAs: --trust-store trust-anchors=ta.pem
Single file: --allowlisted-certificates=ac.pem
Multiple files: --trust-store trust-anchors="ta1.pem;ta2.pem",intermediate-cas="ica1.pem;ica2.pem"
Multiple files: --allowlisted-certificates=ac1.pem,ac2.pem
--trust-store=[intermediate-cas=INTERMEDIATE-CAS],[trust-anchors=TRUST-ANCHORS]
Trust Store with the given trust anchor and intermediate CA
PEM-encoded certificates. Certificates should be provided in files.
For multiple file names, separate them by a semicolon (';') and quote
them ('"'). One file can contain multiple certificates. Intermediate
CAs are optional.
Examples:
Single files: --trust-store trust-anchors=ta.pem,intermediate-cas=ica.pem
No intermediate CAs: --trust-store trust-anchors=ta.pem
Multiple files: --trust-store trust-anchors="ta1.pem;ta2.pem",intermediate-cas="ica1.pem;ica2.pem"
OPTIONAL FLAGS
--async

View file

@ -3,11 +3,15 @@ NAME
SYNOPSIS
gcloud certificate-manager trust-configs update
(TRUST_CONFIG : --location=LOCATION) [--async]
[--description=DESCRIPTION]
(TRUST_CONFIG : --location=LOCATION)
[--add-allowlisted-certificates=[ADD_ALLOWLISTED_CERTIFICATES,...]]
[--async] [--description=DESCRIPTION]
[--trust-store=[intermediate-cas=INTERMEDIATE-CAS],
[trust-anchors=TRUST-ANCHORS]] [--update-labels=[KEY=VALUE,...]]
[--clear-labels | --remove-labels=[KEY,...]] [GCLOUD_WIDE_FLAG ...]
[--clear-allowlisted-certificates
| --remove-allowlisted-certificates=[REMOVE_ALLOWLISTED_CERTIFICATES,
...]] [--clear-labels | --remove-labels=[KEY,...]]
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Update a TrustConfig.
@ -56,6 +60,17 @@ POSITIONAL ARGUMENTS
▸ default value of location is [global].
FLAGS
--add-allowlisted-certificates=[ADD_ALLOWLISTED_CERTIFICATES,...]
Add allowlisted PEM-encoded certificates. Certificates should be
provided in files. For multiple file names, separate them by a comma
(','). One file can contain multiple certificates.
Examples:
Single file: --add-allowlisted-certificates=ac.pem
Multiple files: --add-allowlisted-certificates=ac1.pem,ac2.pem
--async
Return immediately, without waiting for the operation in progress to
complete.
@ -87,6 +102,22 @@ FLAGS
contain only hyphens (-), underscores (_), lowercase characters, and
numbers.
At most one of these can be specified:
--clear-allowlisted-certificates
Clear all allowlisted certificates.
--remove-allowlisted-certificates=[REMOVE_ALLOWLISTED_CERTIFICATES,...]
Remove allowlisted PEM-encoded certificates. Certificates should be
provided in files. For multiple file names, separate them by a comma
(','). One file can contain multiple certificates.
Examples:
Single file: --remove-allowlisted-certificates=ac.pem
Multiple files: --remove-allowlisted-certificates=ac1.pem,ac2.pem
At most one of these can be specified:
--clear-labels