- NAME
-
- gcloud asset search-all-resources - searches all Cloud resources within the specified accessible scope, such as a project, folder or organization
- SYNOPSIS
-
-
gcloud asset search-all-resources
[--asset-types
=[ASSET_TYPES
,…]] [--order-by
=ORDER_BY
] [--query
=QUERY
] [--read-mask
=READ_MASK
] [--scope
=SCOPE
] [--filter
=EXPRESSION
] [--limit
=LIMIT
] [--page-size
=PAGE_SIZE
] [--sort-by
=[FIELD
,…]] [GCLOUD_WIDE_FLAG …
]
-
- DESCRIPTION
-
Searches all Cloud resources within the specified scope, such as a project,
folder or organization. The caller must be granted the
permission on the desired scope.cloudasset.assets.searchAllResources
- EXAMPLES
-
To search all Cloud resources whose full resource name contains
as a prefix of any word, withinxyz
, ensure the caller has been granted theorganizations/123456
permission on the organization and run:cloudasset.assets.searchAllResources
gcloud asset search-all-resources --scope='organizations/123456' --query='name:xyz*'
- FLAGS
-
--asset-types
=[ASSET_TYPES
,…]-
A list of asset types that this request searches for. If empty, it will search
all the searchable
asset types.
Regular expressions are also supported. For example:
-
snapshots resources whose asset type starts withcompute.googleapis.com.*
.compute.googleapis.com
-
snapshots resources whose asset type ends with.*Instance
.Instance
-
snapshots resources whose asset type contains.*Instance.*
.Instance
See RE2 for all supported regular expression syntax. If the regular expression does not match any supported asset type, an
error will be returned.INVALID_ARGUMENT
-
--order-by
=ORDER_BY
-
A comma-separated list of fields specifying the sorting order of the results.
The default order is ascending. Add
after the field name to indicate descending order. Redundant space characters are ignored. Example:DESC
. Only singular primitive fields in the response are sortable:location DESC, name
-
name
-
assetType
-
project
-
displayName
-
description
-
location
-
createTime
-
updateTime
-
state
-
parentFullResourceName
-
parentAssetType
All the other fields such as repeated fields (e.g.,
networkTags
,kmsKeys
), map fields (e.g.,labels
) and struct fields (e.g.,additionalAttributes
) are not supported.Both
--order-by
and--sort-by
flags can be used to sort the output, with the following differences:-
The
--order-by
flag performs server-side sorting (better performance), while the--sort-by
flag performs client-side sorting. -
The
--sort-by
flag supports all the fields in the output, while the--order-by
flag only supports limited fields as shown above.
-
--query
=QUERY
-
The query statement. See how
to construct a query for more details. If not specified or empty, it will
search all the resources within the specified
scope
.Examples:
-
name:Important
to find Cloud resources whose name contains
as a word.Important
-
name=Important
to find the Cloud resource whose name is exactly
.Important
-
displayName:Impor*
to find Cloud resources whose display name contains
as a prefix of any word.Impor
-
location:us-west*
to find Cloud resources whose location contains both
andus
as prefixes.west
-
labels:prod
to find Cloud resources whose labels contain
as a key or value.prod
-
labels.env:prod
to find Cloud resources that have a label
and its value isenv
.prod
-
labels.env:*
to find Cloud resources that have a label
.env
-
tagKeys:env
to find Cloud resources that are directly attached to tags where the `TagKey.namespacedName` containsenv
. -
tagValues:prod*
to find Cloud resources that are directly attached to tags where the `TagValue.namespacedName` contains a word prefixed byprod
. -
tagValueIds=tagValues/123
to find Cloud resources that are directly attached to tags where the `TagValue.name` is exactlytagValues/123
. -
effectiveTagKeys:env
to find Cloud resources that are directly attached to or inherited tags where the `TagKey.namespacedName` containsenv
. -
effectiveTagValues:prod*
to find Cloud resources that are directly attached to or inherited tags where the `TagValue.namespacedName` contains a word prefixed byprod
. -
effectiveTagValueIds=tagValues/123
to find Cloud resources that are directly attached to or inherited tags where the `TagValue.name` is exactlytagValues/123
. -
kmsKey:key
to find Cloud resources encrypted with a customer-managed encryption key whose name contains
as a word. This field is deprecated. Please use thekey
kmsKeys
field to retrieve KMS key information. -
kmsKeys:key
to find Cloud resources encrypted with customer-managed encryption keys whose name contains the word
.key
-
relationships:instance-group-1
to find Cloud resources that have relationships with
in the related resource name.instance-group-1
-
relationships:INSTANCE_TO_INSTANCEGROUP
to find Compute instances that have relationships of type
.INSTANCE_TO_INSTANCEGROUP
-
relationships.INSTANCE_TO_INSTANCEGROUP:instance-group-1
to find Compute instances that have relationships with
in the Compute instance group resource name, for relationship typeinstance-group-1
.INSTANCE_TO_INSTANCEGROUP
-
sccSecurityMarks.key=value
to find Cloud resources that are attached with security marks whose key is
and value iskey
.value
-
sccSecurityMarks.key:*
to find Cloud resources that are attached with security marks whose key is
.key
-
state:ACTIVE
to find Cloud resources whose state contains
as a word.ACTIVE
-
NOT state:ACTIVE
to find Cloud resources whose state doesn't contain
as a word.ACTIVE
-
createTime<1609459200
orcreateTime<2021-01-01
orcreateTime<"2021-01-01T00:00:00"
to find Cloud resources that were created before
. 1609459200 is the epoch timestamp of2021-01-01 00:00:00 UTC
in seconds.2021-01-01 00:00:00 UTC
-
updateTime>1609459200
orupdateTime>2021-01-01
orupdateTime>"2021-01-01T00:00:00"
to find Cloud resources that were updated after
. 1609459200 is the epoch timestamp of2021-01-01 00:00:00 UTC
in seconds.2021-01-01 00:00:00 UTC
-
Important
to find Cloud resources that contain
as a word in any of the searchable fields.Important
-
Impor*
to find Cloud resources that contain
as a prefix of any word in any of the searchable fields.Impor
-
Important location:(us-west1 OR global)
to find Cloud resources that contain
as a word in any of the searchable fields and are also located in theImportant
region or theus-west1
location.global
-
--read-mask
=READ_MASK
-
A comma-separated list of fields specifying which fields to be returned in the
results. Only
"*"
or combination of top level fields can be specified. Examples:"*"
,"name,location"
,"name,versionedResources"
.The read_mask paths must be valid field paths listed but not limited to the following (both snake_case and camelCase are supported):
-
name
-
asset_type
orassetType
-
project
-
display_name
ordisplayName
-
description
-
location
-
labels
-
tags
-
effective_tags
oreffectiveTags
-
network_tags
ornetworkTags
-
kms_keys
orkmsKeys
-
create_time
orcreateTime
-
update_time
orupdateTime
-
state
-
additional_attributes
oradditionalAttributes
-
versioned_resources
orversionedResources
If read_mask is not specified, all fields except versionedResources will be returned.
If only
"*"
is specified, all fields including versionedResources will be returned. -
--scope
=SCOPE
-
A scope can be a project, a folder, or an organization. The search is limited to
the Cloud resources within this scope. The caller must be granted the
permission on the desired scope. If not specified, the configured project property will be used. To find the configured project, run:cloudasset.assets.searchAllResources
gcloud config get project
. To change the setting, run:gcloud config set project PROJECT_ID
.The allowed values are:
-
projects/{PROJECT_ID}
(e.g.,
)projects/foo-bar
-
projects/{PROJECT_NUMBER}
(e.g.,
)projects/12345678
-
folders/{FOLDER_NUMBER}
(e.g.,
)folders/1234567
-
organizations/{ORGANIZATION_NUMBER}
(e.g.
)organizations/123456
-
- LIST COMMAND FLAGS
-
--filter
=EXPRESSION
-
Apply a Boolean filter
EXPRESSION
to each resource item to be listed. If the expression evaluatesTrue
, 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
.
- 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 variant is also available:
gcloud beta asset search-all-resources
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-02-06 UTC.