mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-16 12:22:03 +00:00
gcloud: Wed Mar 5 10:41:25 UTC 2025
This commit is contained in:
parent
a597993b2e
commit
6dc93282df
279 changed files with 4198 additions and 801 deletions
|
|
@ -878,6 +878,9 @@ FLAGS
|
|||
affects the price, availability, and how long your VM instances can
|
||||
run. PROVISIONING_MODEL must be one of:
|
||||
|
||||
FLEX_START
|
||||
Instance is provisioned using the Flex Start provisioning model and
|
||||
has a limited runtime.
|
||||
RESERVATION_BOUND
|
||||
The VM instances run for the entire duration of their associated
|
||||
reservation. You can only specify this provisioning model if you
|
||||
|
|
|
|||
|
|
@ -831,6 +831,9 @@ FLAGS
|
|||
affects the price, availability, and how long your VM instances can
|
||||
run. PROVISIONING_MODEL must be one of:
|
||||
|
||||
FLEX_START
|
||||
Instance is provisioned using the Flex Start provisioning model and
|
||||
has a limited runtime.
|
||||
RESERVATION_BOUND
|
||||
The VM instances run for the entire duration of their associated
|
||||
reservation. You can only specify this provisioning model if you
|
||||
|
|
|
|||
|
|
@ -31,8 +31,7 @@ GROUPS
|
|||
(ALPHA) Manage Compute Engine instance configurations.
|
||||
|
||||
network-interfaces
|
||||
(ALPHA) Read and manipulate Compute Engine VM instance network
|
||||
interfaces.
|
||||
(ALPHA) Read and manipulate Compute Engine instance network interfaces.
|
||||
|
||||
ops-agents
|
||||
(ALPHA) Manage Google Cloud Observability agents for Compute Engine VM
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
NAME
|
||||
gcloud alpha compute instances network-interfaces add - add a Compute
|
||||
Engine virtual machine network interface
|
||||
gcloud alpha compute instances network-interfaces add - add a dynamic
|
||||
network interface to a Compute Engine instance
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha compute instances network-interfaces add INSTANCE_NAME
|
||||
|
|
@ -18,8 +18,12 @@ SYNOPSIS
|
|||
[--address=ADDRESS | --no-address] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) gcloud alpha compute instances network-interfaces add adds network
|
||||
interface to a Compute Engine virtual machine.
|
||||
(ALPHA) gcloud alpha compute instances network-interfaces add adds a
|
||||
dynamic network interface to a Compute Engine instance. For example:
|
||||
|
||||
$ gcloud alpha compute instances network-interfaces add \
|
||||
instance-name --parent-nic-name nic1 --vlan 2
|
||||
--network network-1 --subnetwork subnetwork-1
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
INSTANCE_NAME
|
||||
|
|
@ -192,5 +196,7 @@ NOTES
|
|||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud beta compute instances network-interfaces add
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
NAME
|
||||
gcloud alpha compute instances network-interfaces delete - delete a Compute
|
||||
Engine virtual machine network interface
|
||||
gcloud alpha compute instances network-interfaces delete - delete a dynamic
|
||||
network interface from a Compute Engine instance
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha compute instances network-interfaces delete INSTANCE_NAME
|
||||
|
|
@ -8,8 +8,8 @@ SYNOPSIS
|
|||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) gcloud alpha compute instances network-interfaces delete deletes
|
||||
network interface of a Compute Engine virtual machine. For example:
|
||||
(ALPHA) gcloud alpha compute instances network-interfaces delete deletes a
|
||||
dynamic network interface from a Compute Engine instance. For example:
|
||||
|
||||
$ gcloud alpha compute instances network-interfaces delete \
|
||||
instance-name --network-interface nic1.2
|
||||
|
|
@ -61,5 +61,7 @@ NOTES
|
|||
This command is currently in alpha and might change without notice. If this
|
||||
command fails with API permission errors despite specifying the correct
|
||||
project, you might be trying to access an API with an invitation-only early
|
||||
access allowlist.
|
||||
access allowlist. This variant is also available:
|
||||
|
||||
$ gcloud beta compute instances network-interfaces delete
|
||||
|
||||
|
|
|
|||
|
|
@ -1,19 +1,19 @@
|
|||
NAME
|
||||
gcloud alpha compute instances network-interfaces - read and manipulate
|
||||
Compute Engine VM instance network interfaces
|
||||
Compute Engine instance network interfaces
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha compute instances network-interfaces COMMAND
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Read and manipulate Compute Engine VM instance network interfaces.
|
||||
(ALPHA) Read and manipulate Compute Engine instance network interfaces.
|
||||
|
||||
For more information about VM instance network interfaces, see the network
|
||||
For more information about instance network interfaces, see the network
|
||||
interfaces documentation
|
||||
(https://cloud.google.com/vpc/docs/multiple-interfaces-concepts).
|
||||
|
||||
See also: VM instance network interfaces API
|
||||
See also: instance network interfaces API
|
||||
(https://cloud.google.com/compute/docs/reference/rest/v1/instances/updateNetworkInterface).
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
|
|
@ -25,10 +25,11 @@ COMMANDS
|
|||
COMMAND is one of the following:
|
||||
|
||||
add
|
||||
(ALPHA) Add a Compute Engine virtual machine network interface.
|
||||
(ALPHA) Add a dynamic network interface to a Compute Engine instance.
|
||||
|
||||
delete
|
||||
(ALPHA) Delete a Compute Engine virtual machine network interface.
|
||||
(ALPHA) Delete a dynamic network interface from a Compute Engine
|
||||
instance.
|
||||
|
||||
get-effective-firewalls
|
||||
(ALPHA) Get the effective firewalls for a Compute Engine virtual
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue