Struct gapi_grpc::google::cloud::asset::v1::ResourceSearchResult[][src]

pub struct ResourceSearchResult {
    pub name: String,
    pub asset_type: String,
    pub project: String,
    pub folders: Vec<String>,
    pub organization: String,
    pub display_name: String,
    pub description: String,
    pub location: String,
    pub labels: HashMap<String, String>,
    pub network_tags: Vec<String>,
    pub kms_key: String,
    pub create_time: Option<Timestamp>,
    pub update_time: Option<Timestamp>,
    pub state: String,
    pub additional_attributes: Option<Struct>,
    pub parent_full_resource_name: String,
    pub parent_asset_type: String,
}

A result of Resource Search, containing information of a cloud resource.

Fields

name: String

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:

asset_type: String

The type of this resource. Example: compute.googleapis.com/Disk.

To search against the asset_type:

project: String

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:

folders: Vec<String>

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:

organization: String

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:

display_name: String

The display name of this resource. This field is available only when the resource’s proto contains it.

To search against the display_name:

description: String

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 proto contains it.

To search against the description:

location: String

Location can be global, regional like us-east1, or zonal like us-west1-b. This field is available only when the resource’s proto contains it.

To search against the location:

labels: HashMap<String, String>

Labels associated with this resource. See Labelling and grouping GCP resources for more information. This field is available only when the resource’s proto contains it.

To search against the labels:

network_tags: Vec<String>

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 proto contains it.

To search against the network_tags:

kms_key: String

The Cloud KMS CryptoKey name or CryptoKeyVersion name. This field is available only when the resource’s proto contains it.

To search against the kms_key:

create_time: Option<Timestamp>

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 proto contains it.

To search against create_time:

update_time: Option<Timestamp>

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 proto contains it.

To search against update_time:

state: String

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 proto 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:

additional_attributes: Option<Struct>

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:

parent_full_resource_name: String

The full resource name of this resource’s parent, if it has one. To search against the parent_full_resource_name:

parent_asset_type: String

The type of this resource’s immediate parent, if there is one.

To search against the parent_asset_type:

Trait Implementations

impl Clone for ResourceSearchResult[src]

impl Debug for ResourceSearchResult[src]

impl Default for ResourceSearchResult[src]

impl Message for ResourceSearchResult[src]

impl PartialEq<ResourceSearchResult> for ResourceSearchResult[src]

impl StructuralPartialEq for ResourceSearchResult[src]

Auto Trait Implementations

impl RefUnwindSafe for ResourceSearchResult

impl Send for ResourceSearchResult

impl Sync for ResourceSearchResult

impl Unpin for ResourceSearchResult

impl UnwindSafe for ResourceSearchResult

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]