mirror of
https://github.com/imjasonh/gcloud-help
synced 2026-07-20 04:58:26 +00:00
gcloud: Tue Mar 1 04:29:52 UTC 2022
This commit is contained in:
parent
aab53307a8
commit
1456dab6c7
9791 changed files with 814712 additions and 0 deletions
104
gcloud/alpha/ids/endpoints/create
Normal file
104
gcloud/alpha/ids/endpoints/create
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
NAME
|
||||
gcloud alpha ids endpoints create - create a Cloud IDS endpoint
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha ids endpoints create (ENDPOINT : --zone=ZONE)
|
||||
--network=NETWORK --severity=SEVERITY [--async]
|
||||
[--description=DESCRIPTION] [--enable-traffic-logs]
|
||||
[--labels=[KEY=VALUE,...]] [--max-wait=MAX_WAIT; default="60m"]
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Create an endpoint for the specified VPC network. Successful
|
||||
creation of an endpoint results in an endpoint in READY state. Check the
|
||||
progress of endpoint creation by using gcloud alpha ids endpoints list.
|
||||
|
||||
For more examples, refer to the EXAMPLES section below.
|
||||
|
||||
EXAMPLES
|
||||
To create an endpoint called my-endpoint for VPC network my-net, in zone
|
||||
us-central1-a, alerting on LOW threats or higher, run:
|
||||
|
||||
$ gcloud alpha ids endpoints create my-endpoint --network=my-net \
|
||||
--zone=us-central1-a --project=my-project --severity=LOW
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Endpoint resource - endpoint. The arguments in this group can be used to
|
||||
specify the attributes of this 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 endpoint 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.
|
||||
|
||||
ENDPOINT
|
||||
ID of the endpoint or fully qualified identifier for the endpoint. To
|
||||
set the endpoint attribute:
|
||||
▸ provide the argument endpoint on the command line.
|
||||
|
||||
This positional must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--zone=ZONE
|
||||
The zone of the endpoint. To set the zone attribute:
|
||||
▸ provide the argument endpoint on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --zone on the command line.
|
||||
|
||||
REQUIRED FLAGS
|
||||
--network=NETWORK
|
||||
The name of the VPC network to monitor
|
||||
|
||||
--severity=SEVERITY
|
||||
The minimum severity of threats to report on. SEVERITY must be one of:
|
||||
INFORMATIONAL, LOW, MEDIUM, HIGH, CRITICAL.
|
||||
|
||||
OPTIONAL FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete. The default is True. Enabled by default, use --no-async to
|
||||
disable.
|
||||
|
||||
--description=DESCRIPTION
|
||||
Description of the endpoint.
|
||||
|
||||
--enable-traffic-logs
|
||||
Whether to enable traffic logs on the endpoint. Enabling traffic logs
|
||||
can generate a large number of logs which can increase costs in Cloud
|
||||
Logging.
|
||||
|
||||
--labels=[KEY=VALUE,...]
|
||||
List of label KEY=VALUE pairs to add.
|
||||
|
||||
Keys must start with a lowercase character and contain only hyphens
|
||||
(-), underscores (_), lowercase characters, and numbers. Values must
|
||||
contain only hyphens (-), underscores (_), lowercase characters, and
|
||||
numbers.
|
||||
|
||||
--max-wait=MAX_WAIT; default="60m"
|
||||
Time to synchronously wait for the operation to complete, after which
|
||||
the operation continues asynchronously. Ignored if --no-async isn't
|
||||
specified. See $ gcloud topic datetimes for information on time
|
||||
formats.
|
||||
|
||||
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
|
||||
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. These variants are also available:
|
||||
|
||||
$ gcloud ids endpoints create
|
||||
|
||||
$ gcloud beta ids endpoints create
|
||||
|
||||
78
gcloud/alpha/ids/endpoints/delete
Normal file
78
gcloud/alpha/ids/endpoints/delete
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
NAME
|
||||
gcloud alpha ids endpoints delete - delete a Cloud IDS endpoint
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha ids endpoints delete (ENDPOINT : --zone=ZONE) [--async]
|
||||
[--max-wait=MAX_WAIT; default="60m"] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Delete a Cloud IDS endpoint.
|
||||
|
||||
EXAMPLES
|
||||
To delete an endpoint called my-ep in project my-project and zone
|
||||
us-central1-a, run:
|
||||
|
||||
$ gcloud alpha ids endpoints delete my-ep --project=my-project \
|
||||
--zone=us-central1-a
|
||||
|
||||
OR
|
||||
|
||||
$ gcloud alpha ids endpoints delete \
|
||||
projects/myproject/locations/us-central1-a/endpoints/my-ep
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Endpoint resource - endpoint. The arguments in this group can be used to
|
||||
specify the attributes of this 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 endpoint 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.
|
||||
|
||||
ENDPOINT
|
||||
ID of the endpoint or fully qualified identifier for the endpoint. To
|
||||
set the endpoint attribute:
|
||||
▸ provide the argument endpoint on the command line.
|
||||
|
||||
This positional must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--zone=ZONE
|
||||
The zone of the endpoint. To set the zone attribute:
|
||||
▸ provide the argument endpoint on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --zone on the command line.
|
||||
|
||||
FLAGS
|
||||
--async
|
||||
Return immediately, without waiting for the operation in progress to
|
||||
complete. The default is True. Enabled by default, use --no-async to
|
||||
disable.
|
||||
|
||||
--max-wait=MAX_WAIT; default="60m"
|
||||
Time to synchronously wait for the operation to complete, after which
|
||||
the operation continues asynchronously. Ignored if --no-async isn't
|
||||
specified. See $ gcloud topic datetimes for information on time
|
||||
formats.
|
||||
|
||||
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
|
||||
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. These variants are also available:
|
||||
|
||||
$ gcloud ids endpoints delete
|
||||
|
||||
$ gcloud beta ids endpoints delete
|
||||
|
||||
66
gcloud/alpha/ids/endpoints/describe
Normal file
66
gcloud/alpha/ids/endpoints/describe
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
NAME
|
||||
gcloud alpha ids endpoints describe - describe a Cloud IDS endpoint
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha ids endpoints describe (ENDPOINT : --zone=ZONE)
|
||||
[GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) Describe a Cloud IDS endpoint.
|
||||
|
||||
EXAMPLES
|
||||
To get a description of a endpoint called my-ep in project my-project and
|
||||
zone us-central1-a, run:
|
||||
|
||||
$ gcloud alpha ids endpoints describe my-ep --project=my-project \
|
||||
--zone=us-central1-a
|
||||
|
||||
OR
|
||||
|
||||
$ gcloud alpha ids endpoints describe \
|
||||
projects/myproject/locations/us-central1-a/endpoints/my-ep
|
||||
|
||||
POSITIONAL ARGUMENTS
|
||||
Endpoint resource - endpoint. The arguments in this group can be used to
|
||||
specify the attributes of this 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 endpoint 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.
|
||||
|
||||
ENDPOINT
|
||||
ID of the endpoint or fully qualified identifier for the endpoint. To
|
||||
set the endpoint attribute:
|
||||
▸ provide the argument endpoint on the command line.
|
||||
|
||||
This positional must be specified if any of the other arguments in
|
||||
this group are specified.
|
||||
|
||||
--zone=ZONE
|
||||
The zone of the endpoint. To set the zone attribute:
|
||||
▸ provide the argument endpoint on the command line with a fully
|
||||
specified name;
|
||||
▸ provide the argument --zone 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.
|
||||
|
||||
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. These variants are also available:
|
||||
|
||||
$ gcloud ids endpoints describe
|
||||
|
||||
$ gcloud beta ids endpoints describe
|
||||
|
||||
44
gcloud/alpha/ids/endpoints/help
Normal file
44
gcloud/alpha/ids/endpoints/help
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
NAME
|
||||
gcloud alpha ids endpoints - create and manage Cloud IDS Endpoints
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha ids endpoints COMMAND [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) The gcloud alpha ids endpoints group lets you create and manage
|
||||
Cloud IDS Endpoints, including creating, deleting and describing their
|
||||
properties.
|
||||
|
||||
More information on Cloud IDS Endpoints can be found at
|
||||
https://cloud.google.com/cloud-ids
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
COMMANDS
|
||||
COMMAND is one of the following:
|
||||
|
||||
create
|
||||
(ALPHA) Create a Cloud IDS endpoint.
|
||||
|
||||
delete
|
||||
(ALPHA) Delete a Cloud IDS endpoint.
|
||||
|
||||
describe
|
||||
(ALPHA) Describe a Cloud IDS endpoint.
|
||||
|
||||
list
|
||||
(ALPHA) List Cloud IDS endpoints.
|
||||
|
||||
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. These variants are also available:
|
||||
|
||||
$ gcloud ids endpoints
|
||||
|
||||
$ gcloud beta ids endpoints
|
||||
|
||||
80
gcloud/alpha/ids/endpoints/list
Normal file
80
gcloud/alpha/ids/endpoints/list
Normal file
|
|
@ -0,0 +1,80 @@
|
|||
NAME
|
||||
gcloud alpha ids endpoints list - list Cloud IDS endpoints
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha ids endpoints list [--project=PROJECT_ID]
|
||||
[--filter=EXPRESSION] [--limit=LIMIT] [--page-size=PAGE_SIZE]
|
||||
[--sort-by=[FIELD,...]] [--uri] [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) List Cloud IDS endpoints in a project.
|
||||
|
||||
EXAMPLES
|
||||
$ gcloud alpha ids endpoints list --project=my-project
|
||||
|
||||
The project is automatically read from the core/project property if it is
|
||||
defined.
|
||||
|
||||
COMMONLY USED FLAGS
|
||||
--project=PROJECT_ID
|
||||
The Google Cloud project ID to use for this invocation. If omitted,
|
||||
then the current project is assumed; the current project can be listed
|
||||
using gcloud config list --format='text(core.project)' and can be set
|
||||
using gcloud config set project PROJECTID.
|
||||
|
||||
--project and its fallback core/project property play two roles in the
|
||||
invocation. It specifies the project of the resource to operate on. It
|
||||
also specifies the project for API enablement check, quota, and
|
||||
billing. To specify a different project for quota and billing, use
|
||||
--billing-project or billing/quota_project property.
|
||||
|
||||
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.
|
||||
|
||||
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. These variants are also available:
|
||||
|
||||
$ gcloud ids endpoints list
|
||||
|
||||
$ gcloud beta ids endpoints list
|
||||
|
||||
31
gcloud/alpha/ids/help
Normal file
31
gcloud/alpha/ids/help
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
NAME
|
||||
gcloud alpha ids - manage Cloud IDS
|
||||
|
||||
SYNOPSIS
|
||||
gcloud alpha ids GROUP [GCLOUD_WIDE_FLAG ...]
|
||||
|
||||
DESCRIPTION
|
||||
(ALPHA) More information on Cloud IDS Endpoints can be found at
|
||||
https://cloud.google.com/cloud-ids
|
||||
|
||||
GCLOUD WIDE FLAGS
|
||||
These flags are available to all commands: --help.
|
||||
|
||||
Run $ gcloud help for details.
|
||||
|
||||
GROUPS
|
||||
GROUP is one of the following:
|
||||
|
||||
endpoints
|
||||
(ALPHA) Create and manage Cloud IDS Endpoints.
|
||||
|
||||
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. These variants are also available:
|
||||
|
||||
$ gcloud ids
|
||||
|
||||
$ gcloud beta ids
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue