mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 23:08:48 +00:00
gcloud: Wed May 24 10:23:00 UTC 2023
This commit is contained in:
parent
a56fab68e5
commit
d0919dce4f
151 changed files with 3286 additions and 306 deletions
90
gcloud/beta/network-security/security-profile-groups/create
Normal file
90
gcloud/beta/network-security/security-profile-groups/create
Normal file
|
|
@ -0,0 +1,90 @@
|
|||
NAME
|
||||
gcloud beta network-security security-profile-groups create - create a new
|
||||
Security Profile Group
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta network-security security-profile-groups create
|
||||
(SECURITY_PROFILE_GROUP
|
||||
: --location=LOCATION --organization=ORGANIZATION)
|
||||
--threat-prevention-profile=THREAT_PREVENTION_PROFILE [--async]
|
||||
[--description=DESCRIPTION] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) Create a new Security Profile Group with the given name.
|
||||
|
||||
EXAMPLES
|
||||
To create a Security Profile Group with the name my-security-profile-group
|
||||
(Either a fully specified path or --location and --organization flags for
|
||||
SPG should be specified), --threat-prevention-profile my-security-profile
|
||||
and optional description as optional description, run:
|
||||
|
||||
$ gcloud beta network-security security-profile-groups create \
|
||||
my-security-profile-group --organization=1234 \
|
||||
--location=global \
|
||||
--threat-prevention-profile=`organizations/1234/locations/\
|
||||
global/securityProfiles/my-security-profile` \
|
||||
--description='optional description'
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Security profile group resource - Name of the security profile group to be
|
||||
created. The arguments in this group can be used to specify the attributes
|
||||
of this resource.
|
||||
|
||||
This must be specified.
|
||||
|
||||
SECURITY_PROFILE_GROUP
|
||||
ID of the security profile group or fully qualified identifier for
|
||||
the security profile group.
|
||||
|
||||
To set the security_profile_group attribute:
|
||||
▸ provide the argument security_profile_group on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
Location Id.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument security_profile_group on the command line
|
||||
with a fully specified name;
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
--organization=ORGANIZATION
|
||||
Organization number.
|
||||
|
||||
To set the organization attribute:
|
||||
▸ provide the argument security_profile_group on the command line
|
||||
with a fully specified name;
|
||||
▸ provide the argument --organization on the command line.
|
||||
|
||||
REQUIRED FLAGS
|
||||
--threat-prevention-profile=THREAT_PREVENTION_PROFILE
|
||||
Name of the security profile of type threat prevention.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--description=DESCRIPTION
|
||||
Description of the security profile group.
|
||||
|
||||
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 networksecurity/v1beta1 API. The full documentation
|
||||
for this API can be found at: https://cloud.google.com/networking
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. This
|
||||
variant is also available:
|
||||
|
||||
$ gcloud alpha network-security security-profile-groups create
|
||||
|
||||
77
gcloud/beta/network-security/security-profile-groups/delete
Normal file
77
gcloud/beta/network-security/security-profile-groups/delete
Normal file
|
|
@ -0,0 +1,77 @@
|
|||
NAME
|
||||
gcloud beta network-security security-profile-groups delete - delete a
|
||||
Security Profile Group
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta network-security security-profile-groups delete
|
||||
(SECURITY_PROFILE_GROUP
|
||||
: --location=LOCATION --organization=ORGANIZATION) [--async]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) Delete the specified Security Profile Group.
|
||||
|
||||
EXAMPLES
|
||||
To delete an Security Profile Group called my-security-profile-group
|
||||
(Either a fully specified path or --location and --organization flags for
|
||||
SPG should be specified) run:
|
||||
|
||||
$ gcloud beta network-security security-profile-groups delete \
|
||||
my-security-profile-group --organization=1234 --location=global
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Security profile group resource - Name of the Security Profile Group you
|
||||
want to delete. The arguments in this group can be used to specify the
|
||||
attributes of this resource.
|
||||
|
||||
This must be specified.
|
||||
|
||||
SECURITY_PROFILE_GROUP
|
||||
ID of the security profile group or fully qualified identifier for
|
||||
the security profile group.
|
||||
|
||||
To set the security_profile_group attribute:
|
||||
▸ provide the argument security_profile_group on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
Location Id.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument security_profile_group on the command line
|
||||
with a fully specified name;
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
--organization=ORGANIZATION
|
||||
Organization number.
|
||||
|
||||
To set the organization attribute:
|
||||
▸ provide the argument security_profile_group on the command line
|
||||
with a fully specified name;
|
||||
▸ provide the argument --organization on the command line.
|
||||
|
||||
FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
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 networksecurity/v1beta1 API. The full documentation
|
||||
for this API can be found at: https://cloud.google.com/networking
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. This
|
||||
variant is also available:
|
||||
|
||||
$ gcloud alpha network-security security-profile-groups delete
|
||||
|
||||
|
|
@ -0,0 +1,72 @@
|
|||
NAME
|
||||
gcloud beta network-security security-profile-groups describe - describe a
|
||||
Security Profile Group
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta network-security security-profile-groups describe
|
||||
(SECURITY_PROFILE_GROUP
|
||||
: --location=LOCATION --organization=ORGANIZATION)
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) Show details of a Security Profile Group.
|
||||
|
||||
EXAMPLES
|
||||
To show details of a Security Profile Group named my-security-profile-group
|
||||
(Either a fully specified path or --location and --organization flags for
|
||||
SPG should be specified) run:
|
||||
|
||||
$ gcloud beta network-security security-profile-groups describe \
|
||||
my-security-profile-group --organization=1234 --location=global
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Security profile group resource - Name of the Security Profile Group to be
|
||||
described. The arguments in this group can be used to specify the
|
||||
attributes of this resource.
|
||||
|
||||
This must be specified.
|
||||
|
||||
SECURITY_PROFILE_GROUP
|
||||
ID of the security profile group or fully qualified identifier for
|
||||
the security profile group.
|
||||
|
||||
To set the security_profile_group attribute:
|
||||
▸ provide the argument security_profile_group on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
Location Id.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument security_profile_group on the command line
|
||||
with a fully specified name;
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
--organization=ORGANIZATION
|
||||
Organization number.
|
||||
|
||||
To set the organization attribute:
|
||||
▸ provide the argument security_profile_group on the command line
|
||||
with a fully specified name;
|
||||
▸ provide the argument --organization 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 networksecurity/v1beta1 API. The full documentation
|
||||
for this API can be found at: https://cloud.google.com/networking
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. This
|
||||
variant is also available:
|
||||
|
||||
$ gcloud alpha network-security security-profile-groups describe
|
||||
|
||||
83
gcloud/beta/network-security/security-profile-groups/help
Normal file
83
gcloud/beta/network-security/security-profile-groups/help
Normal file
|
|
@ -0,0 +1,83 @@
|
|||
NAME
|
||||
gcloud beta network-security security-profile-groups - manage Network
|
||||
Security - Security Profile Groups
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta network-security security-profile-groups COMMAND
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) Manage Network Security - Security Profile Groups.
|
||||
|
||||
EXAMPLES
|
||||
To create a Security Profile Group with the name my-security-profile-group
|
||||
(Either a fully specified path or --location and --organization flags for
|
||||
SPG should be specified), --threat-prevention-profile my-security-profile
|
||||
and optional description as optional description, run:
|
||||
|
||||
$ gcloud beta network-security security-profile-groups create \
|
||||
my-security-profile-group --organization=1234 \
|
||||
--location=global \
|
||||
--threat-prevention-profile=`organizations/1234/locations/\
|
||||
global/securityProfiles/my-security-profile` \
|
||||
--description='optional description'
|
||||
|
||||
To delete an Security Profile Group called my-security-profile-group
|
||||
(Either a fully specified path or --location and --organization flags for
|
||||
SPG should be specified) run:
|
||||
|
||||
$ gcloud beta network-security security-profile-groups delete \
|
||||
my-security-profile-group --organization=1234 --location=global
|
||||
|
||||
To show details of a Security Profile Group named my-security-profile-group
|
||||
(Either a fully specified path or --location and --organization flags for
|
||||
SPG should be specified) run:
|
||||
|
||||
$ gcloud beta network-security security-profile-groups describe \
|
||||
my-security-profile-group --organization=1234 --location=global
|
||||
|
||||
To list Security Profile Groups in specifed location and organization, run:
|
||||
|
||||
$ gcloud beta network-security security-profile-groups list \
|
||||
--location=global
|
||||
|
||||
To update an SPG with new Threat prevention profile my-new-security-profile
|
||||
(Either a fully specified path or --location and --organization flags for
|
||||
SPG should be specified), run:
|
||||
|
||||
$ gcloud beta network-security security-profile-groups update \
|
||||
my-security-profile-group --organization=1234 \
|
||||
--location=global \
|
||||
--threat-prevention-profile=`organizations/1234/locations/\
|
||||
global/securityProfiles/my-new-security-profile` \
|
||||
--description='New Security Profile of type threat prevention'
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
create
|
||||
(BETA) Create a new Security Profile Group.
|
||||
|
||||
delete
|
||||
(BETA) Delete a Security Profile Group.
|
||||
|
||||
describe
|
||||
(BETA) Describe a Security Profile Group.
|
||||
|
||||
list
|
||||
(BETA) List Security Profile groups.
|
||||
|
||||
update
|
||||
(BETA) Update a Security Profile Group.
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. This
|
||||
variant is also available:
|
||||
|
||||
$ gcloud alpha network-security security-profile-groups
|
||||
|
||||
93
gcloud/beta/network-security/security-profile-groups/list
Normal file
93
gcloud/beta/network-security/security-profile-groups/list
Normal file
|
|
@ -0,0 +1,93 @@
|
|||
NAME
|
||||
gcloud beta network-security security-profile-groups list - list Security
|
||||
Profile groups
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta network-security security-profile-groups list
|
||||
(--location=LOCATION : --organization=ORGANIZATION)
|
||||
[--filter=EXPRESSION] [--limit=LIMIT] [--page-size=PAGE_SIZE]
|
||||
[--sort-by=[FIELD,...]] [--uri] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) List all Security Profile Groups in the specified location.
|
||||
|
||||
EXAMPLES
|
||||
To list Security Profile Groups in specifed location and organization, run:
|
||||
|
||||
$ gcloud beta network-security security-profile-groups list \
|
||||
--location=global
|
||||
|
||||
REQUIRED FLAGS
|
||||
Location resource - The location of Security Profile Groups to display.
|
||||
The arguments in this group can be used to specify the attributes of this
|
||||
resource.
|
||||
|
||||
This must be specified.
|
||||
|
||||
--location=LOCATION
|
||||
ID of the location or fully qualified identifier for the location.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
This flag argument must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--organization=ORGANIZATION
|
||||
Organization number.
|
||||
|
||||
To set the organization attribute:
|
||||
▸ provide the argument --location on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --organization on the command line.
|
||||
|
||||
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 networksecurity/v1beta1 API. The full documentation
|
||||
for this API can be found at: https://cloud.google.com/networking
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. This
|
||||
variant is also available:
|
||||
|
||||
$ gcloud alpha network-security security-profile-groups list
|
||||
|
||||
89
gcloud/beta/network-security/security-profile-groups/update
Normal file
89
gcloud/beta/network-security/security-profile-groups/update
Normal file
|
|
@ -0,0 +1,89 @@
|
|||
NAME
|
||||
gcloud beta network-security security-profile-groups update - update a
|
||||
Security Profile Group
|
||||
|
||||
SYNOPSIS
|
||||
gcloud beta network-security security-profile-groups update
|
||||
(SECURITY_PROFILE_GROUP
|
||||
: --location=LOCATION --organization=ORGANIZATION) [--async]
|
||||
[--description=DESCRIPTION]
|
||||
[--threat-prevention-profile=THREAT_PREVENTION_PROFILE]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(BETA) Update the details of a Security Profile Group.
|
||||
|
||||
EXAMPLES
|
||||
To update an SPG with new Threat prevention profile my-new-security-profile
|
||||
(Either a fully specified path or --location and --organization flags for
|
||||
SPG should be specified), run:
|
||||
|
||||
$ gcloud beta network-security security-profile-groups update \
|
||||
my-security-profile-group --organization=1234 \
|
||||
--location=global \
|
||||
--threat-prevention-profile=`organizations/1234/locations/\
|
||||
global/securityProfiles/my-new-security-profile` \
|
||||
--description='New Security Profile of type threat prevention'
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Security profile group resource - Name of the Security Profile Group to be
|
||||
updated. The arguments in this group can be used to specify the attributes
|
||||
of this resource.
|
||||
|
||||
This must be specified.
|
||||
|
||||
SECURITY_PROFILE_GROUP
|
||||
ID of the security profile group or fully qualified identifier for
|
||||
the security profile group.
|
||||
|
||||
To set the security_profile_group attribute:
|
||||
▸ provide the argument security_profile_group on the command line.
|
||||
|
||||
This positional argument must be specified if any of the other
|
||||
arguments in this group are specified.
|
||||
|
||||
--location=LOCATION
|
||||
Location Id.
|
||||
|
||||
To set the location attribute:
|
||||
▸ provide the argument security_profile_group on the command line
|
||||
with a fully specified name;
|
||||
▸ provide the argument --location on the command line.
|
||||
|
||||
--organization=ORGANIZATION
|
||||
Organization number.
|
||||
|
||||
To set the organization attribute:
|
||||
▸ provide the argument security_profile_group on the command line
|
||||
with a fully specified name;
|
||||
▸ provide the argument --organization on the command line.
|
||||
|
||||
FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete.
|
||||
|
||||
--description=DESCRIPTION
|
||||
New description of the Security Profile Group.
|
||||
|
||||
--threat-prevention-profile=THREAT_PREVENTION_PROFILE
|
||||
Name of the security profile of type threat prevention.
|
||||
|
||||
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 networksecurity/v1beta1 API. The full documentation
|
||||
for this API can be found at: https://cloud.google.com/networking
|
||||
|
||||
NOTES
|
||||
This command is currently in beta and might change without notice. This
|
||||
variant is also available:
|
||||
|
||||
$ gcloud alpha network-security security-profile-groups update
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue