public sealed class ResourceSearchResult : IMessage<ResourceSearchResult>, IEquatable<ResourceSearchResult>, IDeepCloneable<ResourceSearchResult>, IBufferMessage, IMessage
A result of Resource Search, containing information of a cloud resource. Next ID: 29
Implements
IMessage<ResourceSearchResult>, IEquatable<ResourceSearchResult>, IDeepCloneable<ResourceSearchResult>, IBufferMessage, IMessageNamespace
Google.Cloud.Asset.V1Assembly
Google.Cloud.Asset.V1.dll
Constructors
ResourceSearchResult()
public ResourceSearchResult()
ResourceSearchResult(ResourceSearchResult)
public ResourceSearchResult(ResourceSearchResult other)
Parameter | |
---|---|
Name | Description |
other | ResourceSearchResult |
Properties
AdditionalAttributes
public Struct AdditionalAttributes { get; set; }
The additional searchable attributes of this resource. The attributes may
vary from one resource type to another. Examples: projectId
for Project,
dnsName
for DNS ManagedZone. This field contains a subset of the resource
metadata fields that are returned by the List or Get APIs provided by the
corresponding GCP service (e.g., Compute Engine). see API references and
supported searchable
attributes
to see which fields are included.
You can search values of these fields through free text search. However, you should not consume the field programically as the field names and values may change as the GCP service updates to a new incompatible API version.
To search against the additional_attributes
:
- use a free text query to match the attributes values. Example: to search
additional_attributes = { dnsName: "foobar" }
, you can issue a queryfoobar
.
Property Value | |
---|---|
Type | Description |
Struct |
AssetType
public string AssetType { get; set; }
The type of this resource. Example: compute.googleapis.com/Disk
.
To search against the asset_type
:
- specify the
asset_type
field in your search request.
Property Value | |
---|---|
Type | Description |
String |
AttachedResources
public RepeatedField<AttachedResource> AttachedResources { get; }
Attached resources of this resource. For example, an OSConfig Inventory is an attached resource of a Compute Instance. This field is repeated because a resource could have multiple attached resources.
This attached_resources
field is not searchable. Some attributes
of the attached resources are exposed in additional_attributes
field, so
as to allow users to search on them.
Property Value | |
---|---|
Type | Description |
RepeatedField<AttachedResource> |
CreateTime
public Timestamp CreateTime { get; set; }
The create timestamp of this resource, at which the resource was created. The granularity is in seconds. Timestamp.nanos will always be 0. This field is available only when the resource's Protobuf contains it.
To search against create_time
:
- use a field query.
- value in seconds since unix epoch. Example:
createTime > 1609459200
- value in date string. Example:
createTime > 2021-01-01
- value in date-time string (must be quoted). Example:
createTime > "2021-01-01T00:00:00"
Property Value | |
---|---|
Type | Description |
Timestamp |
Description
public string Description { get; set; }
One or more paragraphs of text description of this resource. Maximum length could be up to 1M bytes. This field is available only when the resource's Protobuf contains it.
To search against the description
:
- use a field query. Example:
description:"important instance"
- use a free text query. Example:
"important instance"
Property Value | |
---|---|
Type | Description |
String |
DisplayName
public string DisplayName { get; set; }
The display name of this resource. This field is available only when the resource's Protobuf contains it.
To search against the display_name
:
- use a field query. Example:
displayName:"My Instance"
- use a free text query. Example:
"My Instance"
Property Value | |
---|---|
Type | Description |
String |
Folders
public RepeatedField<string> Folders { get; }
The folder(s) that this resource belongs to, in the form of folders/{FOLDER_NUMBER}. This field is available when the resource belongs to one or more folders.
To search against folders
:
- use a field query. Example:
folders:(123 OR 456)
- use a free text query. Example:
123
- specify the
scope
field as this folder in your search request.
Property Value | |
---|---|
Type | Description |
RepeatedField<String> |
KmsKey
public string KmsKey { get; set; }
The Cloud KMS CryptoKey name or CryptoKeyVersion name. This field is available only when the resource's Protobuf contains it.
To search against the kms_key
:
- use a field query. Example:
kmsKey:key
- use a free text query. Example:
key
Property Value | |
---|---|
Type | Description |
String |
Labels
public MapField<string, string> Labels { get; }
Labels associated with this resource. See Labelling and grouping GCP resources for more information. This field is available only when the resource's Protobuf contains it.
To search against the labels
:
- use a field query:
- query on any label's key or value. Example:
labels:prod
- query by a given label. Example:
labels.env:prod
- query by a given label's existence. Example:
labels.env:*
- use a free text query. Example:
prod
Property Value | |
---|---|
Type | Description |
MapField<String, String> |
Location
public string Location { get; set; }
Location can be global
, regional like us-east1
, or zonal like
us-west1-b
. This field is available only when the resource's Protobuf
contains it.
To search against the location
:
- use a field query. Example:
location:us-west*
- use a free text query. Example:
us-west*
Property Value | |
---|---|
Type | Description |
String |
Name
public string Name { get; set; }
The full resource name of this resource. Example:
//compute.googleapis.com/projects/my_project_123/zones/zone1/instances/instance1
.
See Cloud Asset Inventory Resource Name
Format
for more information.
To search against the name
:
- use a field query. Example:
name:instance1
- use a free text query. Example:
instance1
Property Value | |
---|---|
Type | Description |
String |
NetworkTags
public RepeatedField<string> NetworkTags { get; }
Network tags associated with this resource. Like labels, network tags are a type of annotations used to group GCP resources. See Labelling GCP resources for more information. This field is available only when the resource's Protobuf contains it.
To search against the network_tags
:
- use a field query. Example:
networkTags:internal
- use a free text query. Example:
internal
Property Value | |
---|---|
Type | Description |
RepeatedField<String> |
Organization
public string Organization { get; set; }
The organization that this resource belongs to, in the form of organizations/{ORGANIZATION_NUMBER}. This field is available when the resource belongs to an organization.
To search against organization
:
- use a field query. Example:
organization:123
- use a free text query. Example:
123
- specify the
scope
field as this organization in your search request.
Property Value | |
---|---|
Type | Description |
String |
ParentAssetType
public string ParentAssetType { get; set; }
The type of this resource's immediate parent, if there is one.
To search against the parent_asset_type
:
- use a field query. Example:
parentAssetType:"cloudresourcemanager.googleapis.com/Project"
- use a free text query. Example:
cloudresourcemanager.googleapis.com/Project
Property Value | |
---|---|
Type | Description |
String |
ParentFullResourceName
public string ParentFullResourceName { get; set; }
The full resource name of this resource's parent, if it has one.
To search against the parent_full_resource_name
:
- use a field query. Example:
parentFullResourceName:"project-name"
- use a free text query. Example:
project-name
Property Value | |
---|---|
Type | Description |
String |
Project
public string Project { get; set; }
The project that this resource belongs to, in the form of projects/{PROJECT_NUMBER}. This field is available when the resource belongs to a project.
To search against project
:
- use a field query. Example:
project:12345
- use a free text query. Example:
12345
- specify the
scope
field as this project in your search request.
Property Value | |
---|---|
Type | Description |
String |
Relationships
public MapField<string, RelatedResources> Relationships { get; }
A map of related resources of this resource, keyed by the
relationship type. A relationship type is in the format of
{SourceType}{ACTION}{DestType}. Example: DISK_TO_INSTANCE
,
DISK_TO_NETWORK
, INSTANCE_TO_INSTANCEGROUP
.
See supported relationship
types.
Property Value | |
---|---|
Type | Description |
MapField<String, RelatedResources> |
State
public string State { get; set; }
The state of this resource. Different resources types have different state definitions that are mapped from various fields of different resource types. This field is available only when the resource's Protobuf contains it.
Example:
If the resource is an instance provided by Compute Engine,
its state will include PROVISIONING, STAGING, RUNNING, STOPPING,
SUSPENDING, SUSPENDED, REPAIRING, and TERMINATED. See status
definition
in API
Reference.
If the resource is a project provided by Cloud Resource Manager, its state
will include LIFECYCLE_STATE_UNSPECIFIED, ACTIVE, DELETE_REQUESTED and
DELETE_IN_PROGRESS. See lifecycleState
definition in API
Reference.
To search against the state
:
- use a field query. Example:
state:RUNNING
- use a free text query. Example:
RUNNING
Property Value | |
---|---|
Type | Description |
String |
TagKeys
public RepeatedField<string> TagKeys { get; }
TagKey namespaced names, in the format of {ORG_ID}/{TAG_KEY_SHORT_NAME}.
To search against the tagKeys
:
- use a field query. Example:
tagKeys:"123456789/env*"
tagKeys="123456789/env"
tagKeys:"env"
use a free text query. Example:
env
Property Value | |
---|---|
Type | Description |
RepeatedField<String> |
TagValueIds
public RepeatedField<string> TagValueIds { get; }
TagValue IDs, in the format of tagValues/{TAG_VALUE_ID}.
To search against the tagValueIds
:
- use a field query. Example:
tagValueIds:"456"
tagValueIds="tagValues/456"
use a free text query. Example:
456
Property Value | |
---|---|
Type | Description |
RepeatedField<String> |
TagValues
public RepeatedField<string> TagValues { get; }
TagValue namespaced names, in the format of
{ORG_ID}/{TAG_KEY_SHORT_NAME}/{TAG_VALUE_SHORT_NAME}.
To search against the tagValues
:
- use a field query. Example:
tagValues:"env"
tagValues:"env/prod"
tagValues:"123456789/env/prod*"
tagValues="123456789/env/prod"
use a free text query. Example:
prod
Property Value | |
---|---|
Type | Description |
RepeatedField<String> |
UpdateTime
public Timestamp UpdateTime { get; set; }
The last update timestamp of this resource, at which the resource was last modified or deleted. The granularity is in seconds. Timestamp.nanos will always be 0. This field is available only when the resource's Protobuf contains it.
To search against update_time
:
- use a field query.
- value in seconds since unix epoch. Example:
updateTime < 1609459200
- value in date string. Example:
updateTime < 2021-01-01
- value in date-time string (must be quoted). Example:
updateTime < "2021-01-01T00:00:00"
Property Value | |
---|---|
Type | Description |
Timestamp |
VersionedResources
public RepeatedField<VersionedResource> VersionedResources { get; }
Versioned resource representations of this resource. This is repeated because there could be multiple versions of resource representations during version migration.
This versioned_resources
field is not searchable. Some attributes of the
resource representations are exposed in additional_attributes
field, so
as to allow users to search on them.
Property Value | |
---|---|
Type | Description |
RepeatedField<VersionedResource> |