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

gcloud: Wed Nov 13 10:04:10 UTC 2024

This commit is contained in:
Automated 2024-11-13 10:04:10 +00:00
parent 7da5872e5c
commit a63704a3af
252 changed files with 4821 additions and 807 deletions

View file

@ -109,10 +109,10 @@ OPTIONAL FLAGS
accelerator-optimized-a3, accelerator-optimized-a3-mega,
compute-optimized, compute-optimized-c2d, compute-optimized-c3,
compute-optimized-c3d, compute-optimized-h3, general-purpose,
general-purpose-c4, general-purpose-e2, general-purpose-n2,
general-purpose-n2d, general-purpose-n4, general-purpose-t2d,
graphics-optimized, memory-optimized, memory-optimized-m3,
storage-optimized-z3.
general-purpose-c4, general-purpose-c4a, general-purpose-e2,
general-purpose-n2, general-purpose-n2d, general-purpose-n4,
general-purpose-t2d, graphics-optimized, memory-optimized,
memory-optimized-m3, storage-optimized-z3.
Manage the reservations to be created with the commitment.

View file

@ -111,6 +111,9 @@ GROUPS
network-firewall-policies
(BETA) Manage Compute Engine network firewall policies.
network-profiles
(BETA) Read Compute Engine network profiles.
networks
(BETA) List, create, and delete Compute Engine networks.

View file

@ -1125,7 +1125,7 @@ FLAGS
practice to use --image-family when the latest version of an image is
needed.
By default, debian-11 is assumed for this flag.
By default, debian-12 is assumed for this flag.
Sole Tenancy.

View file

@ -859,7 +859,7 @@ FLAGS
practice to use --image-family when the latest version of an image is
needed.
By default, debian-11 is assumed for this flag.
By default, debian-12 is assumed for this flag.
Specifies the reservation for instances created from this template.

View file

@ -993,7 +993,7 @@ OPTIONAL FLAGS
practice to use --image-family when the latest version of an image is
needed.
By default, debian-11 is assumed for this flag.
By default, debian-12 is assumed for this flag.
--source-snapshot=SOURCE_SNAPSHOT
The name of the source disk snapshot that the instance boot disk will

View file

@ -1220,7 +1220,7 @@ FLAGS
practice to use --image-family when the latest version of an image is
needed.
By default, debian-11 is assumed for this flag.
By default, debian-12 is assumed for this flag.
--source-snapshot=SOURCE_SNAPSHOT
The name of the source disk snapshot that the instance boot disk will

View file

@ -1040,7 +1040,7 @@ FLAGS
practice to use --image-family when the latest version of an image is
needed.
By default, debian-11 is assumed for this flag.
By default, debian-12 is assumed for this flag.
At most one of these can be specified:

View file

@ -0,0 +1,52 @@
NAME
gcloud beta compute network-profiles describe - describe a network profile
SYNOPSIS
gcloud beta compute network-profiles describe NETWORK_PROFILE
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Describe a network profile.
EXAMPLES
To retrieve a single network profile and print its properties, run the
following command: $ gcloud beta compute network-profiles describe my-network-profile
POSITIONAL ARGUMENTS
Network profile resource - Name of the network profile you want to
inspect. This represents a Cloud resource. (NOTE) Some attributes are not
given arguments in this group but can be set in other ways.
To set the project attribute:
◆ provide the argument network_profile on the command line with a fully
specified name;
◆ provide the argument --project on the command line;
◆ set the property core/project.
This must be specified.
NETWORK_PROFILE
ID of the network_profile or fully qualified identifier for the
network_profile.
To set the network_profile attribute:
▸ provide the argument network_profile on the command line.
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,
--help, --impersonate-service-account, --log-http, --project, --quiet,
--trace-token, --user-output-enabled, --verbosity.
Run $ gcloud help for details.
API REFERENCE
This command uses the compute/beta API. The full documentation for this API
can be found at: https://cloud.google.com/compute/
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
$ gcloud alpha compute network-profiles describe

View file

@ -0,0 +1,29 @@
NAME
gcloud beta compute network-profiles - read Compute Engine network profiles
SYNOPSIS
gcloud beta compute network-profiles COMMAND [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Read Compute Engine network profiles.
GCLOUD WIDE FLAGS
These flags are available to all commands: --help.
Run $ gcloud help for details.
COMMANDS
COMMAND is one of the following:
describe
(BETA) Describe a network profile.
list
(BETA) List network profiles.
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
$ gcloud alpha compute network-profiles

View file

@ -0,0 +1,66 @@
NAME
gcloud beta compute network-profiles list - list network profiles
SYNOPSIS
gcloud beta compute network-profiles list [--filter=EXPRESSION]
[--limit=LIMIT] [--page-size=PAGE_SIZE] [--sort-by=[FIELD,...]] [--uri]
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) List network profiles.
EXAMPLES
The following command lists all network profiles:
$ gcloud beta compute network-profiles list
LIST COMMAND FLAGS
--filter=EXPRESSION
Apply a Boolean filter EXPRESSION to each resource item to be listed.
If the expression evaluates True, then that item is listed. For more
details and examples of filter expressions, run $ gcloud topic filters.
This flag interacts with other flags that are applied in this order:
--flatten, --sort-by, --filter, --limit.
--limit=LIMIT
Maximum number of resources to list. The default is unlimited. This
flag interacts with other flags that are applied in this order:
--flatten, --sort-by, --filter, --limit.
--page-size=PAGE_SIZE
Some services group resource list output into pages. This flag
specifies the maximum number of resources per page. The default is
determined by the service if it supports paging, otherwise it is
unlimited (no paging). Paging may be applied before or after --filter
and --limit depending on the service.
--sort-by=[FIELD,...]
Comma-separated list of resource field key names to sort by. The
default order is ascending. Prefix a field with ``~'' for descending
order on that field. This flag interacts with other flags that are
applied in this order: --flatten, --sort-by, --filter, --limit.
--uri
Print a list of resource URIs instead of the default output, and change
the command output to a list of URIs. If this flag is used with
--format, the formatting is applied on this URI list. To display URIs
alongside other keys instead, use the uri() transform.
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,
--help, --impersonate-service-account, --log-http, --project, --quiet,
--trace-token, --user-output-enabled, --verbosity.
Run $ gcloud help for details.
API REFERENCE
This command uses the compute/beta API. The full documentation for this API
can be found at: https://cloud.google.com/compute/
NOTES
This command is currently in beta and might change without notice. This
variant is also available:
$ gcloud alpha compute network-profiles list

View file

@ -7,7 +7,8 @@ SYNOPSIS
[--description=DESCRIPTION] [--[no-]enable-ula-internal-ipv6]
[--internal-ipv6-range=INTERNAL_IPV6_RANGE] [--mtu=MTU]
[--network-firewall-policy-enforcement-order=NETWORK_FIREWALL_POLICY_ENFORCEMENT_ORDER]
[--range=RANGE] [--subnet-mode=MODE]
[--network-profile=NETWORK_PROFILE] [--range=RANGE]
[--subnet-mode=MODE]
[--bgp-best-path-selection-mode=BGP_BEST_PATH_SELECTION_MODE
--[no-]bgp-bps-always-compare-med
--bgp-bps-inter-region-cost=BGP_BPS_INTER_REGION_COST]
@ -87,6 +88,9 @@ FLAGS
BEFORE_CLASSIC_FIREWALL
Network Firewall Policy is enforced before classic firewall.
--network-profile=NETWORK_PROFILE
The network profile to apply to this network.
--range=RANGE
Specifies the IPv4 address range of legacy mode networks. The range
must be specified in CIDR format:

View file

@ -6,6 +6,8 @@ SYNOPSIS
gcloud beta compute os-config policy-orchestrators create
(POLICY_ORCHESTRATOR : --folder=FOLDER --organization=ORGANIZATION)
--policy-type=POLICY_TYPE [--action=ACTION; default="upsert"] [--async]
[--include-folders=INCLUDE_FOLDERS]
[--include-locations=INCLUDE_LOCATIONS]
[--include-projects=INCLUDE_PROJECTS] [--policy-file=POLICY_FILE]
[--policy-id=POLICY_ID] [--state=STATE; default="ACTIVE"]
[GCLOUD_WIDE_FLAG ...]
@ -94,8 +96,16 @@ OPTIONAL FLAGS
Return immediately, without waiting for the operation in progress to
complete.
--include-folders=INCLUDE_FOLDERS
Applies policy to selected folders. Comma-separated list of folder
numbers. Can beused together with --include-projects.
--include-locations=INCLUDE_LOCATIONS
Applies policy to selected locations, e.g. us-central1-a.
--include-projects=INCLUDE_PROJECTS
Applies policy to selected projects only.
Applies policy to selected projects. Comma-separated list of project
numbers. Can be used together with --include-folders.
--policy-file=POLICY_FILE
Absolute path to the OS policy assignment file on your local client.

View file

@ -7,6 +7,8 @@ SYNOPSIS
(POLICY_ORCHESTRATOR : --folder=FOLDER --organization=ORGANIZATION)
[--action=ACTION] [--async] [--policy-file=POLICY_FILE]
[--policy-id=POLICY_ID] [--state=STATE]
[--clear-folders | --include-folders=INCLUDE_FOLDERS]
[--clear-locations | --include-locations=INCLUDE_LOCATIONS]
[--clear-projects | --include-projects=INCLUDE_PROJECTS]
[GCLOUD_WIDE_FLAG ...]
@ -104,8 +106,32 @@ FLAGS
stopped
Updates the policy orchestrator to STOPPED state.
Projects to include in the policy orchestrator. If include-projects is
set, clear-projects must not be set.
Folders to include in the policy orchestrator. Comma-separated list of
folder numbers. If --include-folders is set, --clear-folders must not be
set.
At most one of these can be specified:
--clear-folders
Clears included folders from policy orchestrator selectors.
--include-folders=INCLUDE_FOLDERS
Applies policy to selected folders only.
Locations to include in the policy orchestrator, e.g. us-central1-a. If
include-locations is set, clear-locations must not be set.
At most one of these can be specified:
--clear-locations
Clears included locations from policy orchestrator selectors.
--include-locations=INCLUDE_LOCATIONS
Applies policy to selected locations only.
Projects to include in the policy orchestrator. Comma separated list of
project numbers. If include-projects is set, clear-projects must not be
set.
At most one of these can be specified: