1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 06:47:12 +00:00

gcloud: Wed Sep 25 09:51:52 UTC 2024

This commit is contained in:
Automated 2024-09-25 09:51:52 +00:00
parent 8ebed5b0f1
commit 0a5b6f11af
202 changed files with 9781 additions and 830 deletions

View file

@ -969,12 +969,16 @@ FLAGS
Computing can be based on Secure Encrypted Virtualization (SEV) or
Secure Encrypted Virtualization - Secure Nested Paging (SEV-SNP),
both of which are AMD virtualization features for running
confidential instances. CONFIDENTIAL_COMPUTE_TYPE must be one of:
confidential instances. Trust Domain eXtension based on Intel
virtualization features for running confidential instances is also
supported. CONFIDENTIAL_COMPUTE_TYPE must be one of:
SEV
Secure Encrypted Virtualization
SEV_SNP
Secure Encrypted Virtualization - Secure Nested Paging
TDX
Trust Domain eXtension
Custom machine type extensions.

View file

@ -893,12 +893,16 @@ OPTIONAL FLAGS
Computing can be based on Secure Encrypted Virtualization (SEV) or
Secure Encrypted Virtualization - Secure Nested Paging (SEV-SNP),
both of which are AMD virtualization features for running
confidential instances. CONFIDENTIAL_COMPUTE_TYPE must be one of:
confidential instances. Trust Domain eXtension based on Intel
virtualization features for running confidential instances is also
supported. CONFIDENTIAL_COMPUTE_TYPE must be one of:
SEV
Secure Encrypted Virtualization
SEV_SNP
Secure Encrypted Virtualization - Secure Nested Paging
TDX
Trust Domain eXtension
Custom machine type extensions.

View file

@ -1087,12 +1087,16 @@ FLAGS
Computing can be based on Secure Encrypted Virtualization (SEV) or
Secure Encrypted Virtualization - Secure Nested Paging (SEV-SNP),
both of which are AMD virtualization features for running
confidential instances. CONFIDENTIAL_COMPUTE_TYPE must be one of:
confidential instances. Trust Domain eXtension based on Intel
virtualization features for running confidential instances is also
supported. CONFIDENTIAL_COMPUTE_TYPE must be one of:
SEV
Secure Encrypted Virtualization
SEV_SNP
Secure Encrypted Virtualization - Secure Nested Paging
TDX
Trust Domain eXtension
Custom machine type extensions.

View file

@ -922,12 +922,16 @@ FLAGS
Computing can be based on Secure Encrypted Virtualization (SEV) or
Secure Encrypted Virtualization - Secure Nested Paging (SEV-SNP),
both of which are AMD virtualization features for running
confidential instances. CONFIDENTIAL_COMPUTE_TYPE must be one of:
confidential instances. Trust Domain eXtension based on Intel
virtualization features for running confidential instances is also
supported. CONFIDENTIAL_COMPUTE_TYPE must be one of:
SEV
Secure Encrypted Virtualization
SEV_SNP
Secure Encrypted Virtualization - Secure Nested Paging
TDX
Trust Domain eXtension
Custom machine type extensions.

View file

@ -53,7 +53,7 @@ FLAGS
This is only supported for NEGs with endpoint type gce-vm-ip-port,
non-gcp-private-ip-port, gce-vm-ip, private-service-connect,
internet-ip-port, or internet-fqdn-port.
internet-ip-port, internet-fqdn-port, or gce-vm-ip-portmap.
For Private Service Connect NEGs, you can optionally specify --network
and --subnet if --psc-target-service points to a published service. If
@ -108,9 +108,15 @@ FLAGS
optional. If unspecified, the primary NIC address is used. A port
must not be specified.
gce-vm-ip-portmap
Endpoint IP address must be a primary IP of a VM's network
interface in Compute Engine. The --default-port must be specified
or every network endpoint in the network endpoint group must have a
port specified.
NETWORK_ENDPOINT_TYPE must be one of: gce-vm-ip-port,
internet-ip-port, internet-fqdn-port, non-gcp-private-ip-port,
serverless, gce-vm-ip, private-service-connect.
serverless, gce-vm-ip, private-service-connect, gce-vm-ip-portmap.
--producer-port=PRODUCER_PORT
The producer port to use when a consumer PSC NEG connects to a
@ -134,9 +140,9 @@ FLAGS
region where the network endpoint group is created.
This is only supported for NEGs with endpoint type gce-vm-ip-port,
gce-vm-ip, or private-service-connect. For Private Service Connect
NEGs, you can optionally specify --network and --subnet if
--psc-target-service points to a published service. If
gce-vm-ip, private-service-connect, or gce-vm-ip-portmap. For Private
Service Connect NEGs, you can optionally specify --network and --subnet
if --psc-target-service points to a published service. If
--psc-target-service points to the regional service endpoint of a
Google API, do not specify --network or --subnet.

View file

@ -4,9 +4,10 @@ NAME
SYNOPSIS
gcloud compute network-endpoint-groups update NAME
(--add-endpoint=[fqdn=FQDN],[instance=INSTANCE],[ip=IP],[port=PORT]
| --remove-endpoint=[fqdn=FQDN],
[instance=INSTANCE],[ip=IP],[port=PORT])
(--add-endpoint=[client-destination-port=CLIENT-DESTINATION-PORT],
[fqdn=FQDN],[instance=INSTANCE],[ip=IP],[port=PORT]
| --remove-endpoint=[client-destination-port=CLIENT-DESTINATION-PORT],
[fqdn=FQDN],[instance=INSTANCE],[ip=IP],[port=PORT])
[--global | --region=REGION | --zone=ZONE] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
@ -37,7 +38,7 @@ REQUIRED FLAGS
Exactly one of these must be specified:
--add-endpoint=[fqdn=FQDN],[instance=INSTANCE],[ip=IP],[port=PORT]
--add-endpoint=[client-destination-port=CLIENT-DESTINATION-PORT],[fqdn=FQDN],[instance=INSTANCE],[ip=IP],[port=PORT]
The network endpoint to add to the network endpoint group. Keys used
depend on the endpoint type of the NEG.
@ -60,6 +61,9 @@ REQUIRED FLAGS
*port* - Required endpoint port unless NEG default port is set.
*client-destination-port* - Required endpoint client destination port only for the port
mapping NEG.
internet-ip-port
*ip* - Required IPv4 address of the endpoint to attach. Must be
@ -107,7 +111,7 @@ REQUIRED FLAGS
IP address must be the VM's network interface address. If not
specified, the primary NIC address is used.
--remove-endpoint=[fqdn=FQDN],[instance=INSTANCE],[ip=IP],[port=PORT]
--remove-endpoint=[client-destination-port=CLIENT-DESTINATION-PORT],[fqdn=FQDN],[instance=INSTANCE],[ip=IP],[port=PORT]
The network endpoint to detach from the network endpoint group. Keys
used depend on the endpoint type of the NEG.
@ -122,6 +126,8 @@ REQUIRED FLAGS
*port* - Optional port of the network endpoint to detach.
*client-destination-port* - Optional client destination port, only for port mapping NEGs.
internet-ip-port
*ip* - Required IPv4 address of the network endpoint to detach.