1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-18 14:56:05 +00:00

gcloud: Thu Oct 30 11:14:52 UTC 2025

This commit is contained in:
Automated 2025-10-30 11:14:52 +00:00
parent a763c0bf0a
commit 4b21ae6795
132 changed files with 2511 additions and 503 deletions

View file

@ -4,17 +4,35 @@ NAME
SYNOPSIS
gcloud beta bigtable materialized-views describe
(MATERIALIZED_VIEW : --instance=INSTANCE) [GCLOUD_WIDE_FLAG ...]
(MATERIALIZED_VIEW : --instance=INSTANCE)
[--view=VIEW; default="schema"] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) Describe an existing Bigtable materialized view.
EXAMPLES
To view a materialized view's description, run:
To get back information related to a view's schema (for example,
description), run:
$ gcloud beta bigtable materialized-views describe \
my-materialized-view-id --instance=my-instance-id --view=schema
or (because schema is the default view) simply:
$ gcloud beta bigtable materialized-views describe \
my-materialized-view-id --instance=my-instance-id
To get back information related to the view's replication state, run:
$ gcloud beta bigtable materialized-views describe \
my-materialized-view-id --instance=my-instance-id \
--view=replication
To get back all information for the view, run:
$ gcloud beta bigtable materialized-views describe \
my-materialized-view-id --instance=my-instance-id --view=full
POSITIONAL ARGUMENTS
Materialized view resource - The materialized view to describe. The
arguments in this group can be used to specify the attributes of this
@ -47,6 +65,11 @@ POSITIONAL ARGUMENTS
fully specified name;
▸ provide the argument --instance on the command line.
FLAGS
--view=VIEW; default="schema"
Specifies what type of information to return about the view. VIEW must
be one of: full, replication, schema.
GCLOUD WIDE FLAGS
These flags are available to all commands: --access-token-file, --account,
--billing-project, --configuration, --flags-file, --flatten, --format,

View file

@ -4,8 +4,9 @@ NAME
SYNOPSIS
gcloud beta bigtable materialized-views list --instance=INSTANCE
[--filter=EXPRESSION] [--limit=LIMIT] [--page-size=PAGE_SIZE]
[--sort-by=[FIELD,...]] [--uri] [GCLOUD_WIDE_FLAG ...]
[--view=VIEW; default="schema"] [--filter=EXPRESSION] [--limit=LIMIT]
[--page-size=PAGE_SIZE] [--sort-by=[FIELD,...]] [--uri]
[GCLOUD_WIDE_FLAG ...]
DESCRIPTION
(BETA) List existing Bigtable materialized views.
@ -16,6 +17,16 @@ EXAMPLES
$ gcloud beta bigtable materialized-views list \
--instance=my-instance-id
You may also specify what information to return by supplying the --view
flag, such as:
$ gcloud beta bigtable materialized-views list \
--instance=my-instance-id --view=schema
Currently, only the schema view is supported for this command. This is the
default view, and it returns information about the schemas of your
materialized views.
REQUIRED FLAGS
Instance resource - The instance to list materialized views for. This
represents a Cloud resource. (NOTE) Some attributes are not given
@ -35,6 +46,11 @@ REQUIRED FLAGS
To set the instance attribute:
▸ provide the argument --instance on the command line.
FLAGS
--view=VIEW; default="schema"
Specifies what type of information to return about the view. VIEW must
be one of: full, replication, schema.
LIST COMMAND FLAGS
--filter=EXPRESSION
Apply a Boolean filter EXPRESSION to each resource item to be listed.