1
0
Fork 0
mirror of https://github.com/imjasonh/gcloud-help synced 2026-07-08 18:45:13 +00:00
gcloud-help/gcloud/data-catalog/search
2022-03-01 04:29:52 +00:00

86 lines
2.8 KiB
Text

NAME
gcloud data-catalog search - search Data Catalog for resources that match a
query
SYNOPSIS
gcloud data-catalog search QUERY
(--include-gcp-public-datasets
--include-organization-ids=[ORGANIZATION,...]
--include-project-ids=[PROJECT,...]
--restricted-locations=[LOCATION,...]) [--limit=LIMIT]
[--order-by=ORDER_BY] [--page-size=PAGE_SIZE] [GCLOUD_WIDE_FLAG ...]
DESCRIPTION
Search Data Catalog for resources that match a query.
EXAMPLES
To search project 'my-project' for Data Catalog resources that match the
simple predicate 'foo':
$ gcloud data-catalog search 'foo' --include-project-ids=my-project
To search organization '1234' for Data Catalog resources that match
entities whose names match the predicate 'foo':
$ gcloud data-catalog search 'name:foo' \
--include-organization-ids=1234
POSITIONAL ARGUMENTS
QUERY
Query string in search query syntax in Data Catalog. For more
information, see:
https://cloud.google.com/data-catalog/docs/how-to/search-reference
REQUIRED FLAGS
Scope. Control the scope of the search.
At least one of these must be specified:
--include-gcp-public-datasets
If True, include Google Cloud Platform public datasets in the search
results.
--include-organization-ids=[ORGANIZATION,...]
List of Cloud Organization IDs to include in the search.
--include-project-ids=[PROJECT,...]
List of Cloud Project IDs to include in the search.
--restricted-locations=[LOCATION,...]
List of locations to search within.
LIST COMMAND FLAGS
--limit=LIMIT
Maximum number of resources to list. The default is unlimited.
--order-by=ORDER_BY
Specifies the ordering of results. Defaults to 'relevance'.
Currently supported case-sensitive choices are:
◆ relevance
◆ last_access_timestamp [asc|desc]: defaults to descending.
◆ last_modified_timestamp [asc|desc]: defaults to descending.
To order by last modified timestamp ascending, specify:
--order-by="last_modified_timestamp desc".
--page-size=PAGE_SIZE
Some services group resource list output into pages. This flag
specifies the maximum number of resources per page.
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 data-catalog search
$ gcloud beta data-catalog search