1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-22 07:40:10 +00:00

gcloud: Wed Aug 9 11:23:49 UTC 2023

This commit is contained in:
Automated 2023-08-09 11:23:49 +00:00
parent 678b9afba9
commit 19bfacfbed
148 changed files with 2955 additions and 379 deletions

View file

@ -0,0 +1,69 @@
NAME
gcloud compute security-policies add-layer7-ddos-defense-threshold-config -
add a layer7 ddos defense threshold config to a Compute Engine security
policy
SYNOPSIS
gcloud compute security-policies add-layer7-ddos-defense-threshold-config
NAME --threshold-config-name=THRESHOLD_CONFIG_NAME
[--auto-deploy-confidence-threshold=AUTO_DEPLOY_CONFIDENCE_THRESHOLD]
[--auto-deploy-expiration-sec=AUTO_DEPLOY_EXPIRATION_SEC]
[--auto-deploy-impacted-baseline-threshold=AUTO_DEPLOY_IMPACTED_BASELINE_THRESHOLD]
[--auto-deploy-load-threshold=AUTO_DEPLOY_LOAD_THRESHOLD]
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
gcloud compute security-policies add-layer7-ddos-defense-threshold-config
is used to add layer7 ddos defense threshold configs to security policies.
EXAMPLES
To add a layer7 ddos defense threshold config run the following command:
$ gcloud compute security-policies \
add-layer7-ddos-defense-threshold-config NAME \
--threshold-config-name=my-threshold-config-name \
--auto-deploy-load-threshold=0.7 \
--auto-deploy-confidence-threshold=0.8 \
--auto-deploy-impacted-baseline-threshold=0.1 \
--auto-deploy-expiration-sec=4800
POSITIONAL ARGUMENTS
NAME
Name of the security policy to update.
REQUIRED FLAGS
--threshold-config-name=THRESHOLD_CONFIG_NAME
The name for the threshold config.
OPTIONAL FLAGS
--auto-deploy-confidence-threshold=AUTO_DEPLOY_CONFIDENCE_THRESHOLD
The threshold of the confidence of an identified attack over which
auto-deploy takes action.
--auto-deploy-expiration-sec=AUTO_DEPLOY_EXPIRATION_SEC
The duration of actions, if any, taken by auto-deploy.
--auto-deploy-impacted-baseline-threshold=AUTO_DEPLOY_IMPACTED_BASELINE_THRESHOLD
The threshold on the estimated impact to the baseline traffic of a
suggested mitigation, below which auto-deploy takes action.
--auto-deploy-load-threshold=AUTO_DEPLOY_LOAD_THRESHOLD
The threshold on backend's load over which auto-deploy takes action.
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.
NOTES
These variants are also available:
$ gcloud alpha compute security-policies \
add-layer7-ddos-defense-threshold-config
$ gcloud beta compute security-policies \
add-layer7-ddos-defense-threshold-config

View file

@ -32,6 +32,10 @@ GROUPS
COMMANDS
COMMAND is one of the following:
add-layer7-ddos-defense-threshold-config
Add a layer7 ddos defense threshold config to a Compute Engine security
policy.
create
Create a Compute Engine security policy.
@ -53,6 +57,10 @@ COMMANDS
list-preconfigured-expression-sets
List all available preconfigured expression sets.
remove-layer7-ddos-defense-threshold-config
Remove a layer7 ddos defense threshold config from a Compute Engine
security policy.
update
Update a Compute Engine security policy.

View file

@ -0,0 +1,47 @@
NAME
gcloud compute security-policies
remove-layer7-ddos-defense-threshold-config - remove a layer7 ddos
defense threshold config from a Compute Engine security policy
SYNOPSIS
gcloud compute security-policies
remove-layer7-ddos-defense-threshold-config NAME
--threshold-config-name=THRESHOLD_CONFIG_NAME [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
gcloud compute security-policies
remove-layer7-ddos-defense-threshold-config is used to remove layer7 ddos
defense threshold configs from security policies.
EXAMPLES
To remove a layer7 ddos defense threshold config run the following command:
$ gcloud compute security-policies \
remove-layer7-ddos-defense-threshold-config NAME \
--threshold-config-name=my-threshold-config-name
POSITIONAL ARGUMENTS
NAME
Name of the security policy to update.
REQUIRED FLAGS
--threshold-config-name=THRESHOLD_CONFIG_NAME
The name for the threshold config.
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.
NOTES
These variants are also available:
$ gcloud alpha compute security-policies \
remove-layer7-ddos-defense-threshold-config
$ gcloud beta compute security-policies \
remove-layer7-ddos-defense-threshold-config