mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-18 14:56:05 +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
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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue