Struct gapi_grpc::google::api::MonitoredResourceDescriptor[][src]

pub struct MonitoredResourceDescriptor {
    pub name: String,
    pub type: String,
    pub display_name: String,
    pub description: String,
    pub labels: Vec<LabelDescriptor>,
    pub launch_stage: i32,
}

An object that describes the schema of a [MonitoredResource][google.api.MonitoredResource] object using a type name and a set of labels. For example, the monitored resource descriptor for Google Compute Engine VM instances has a type of "gce_instance" and specifies the use of the labels "instance_id" and "zone" to identify particular VM instances.

Different APIs can support different monitored resource types. APIs generally provide a list method that returns the monitored resource descriptors used by the API.

Fields

name: String

Optional. The resource name of the monitored resource descriptor: "projects/{project_id}/monitoredResourceDescriptors/{type}" where {type} is the value of the type field in this object and {project_id} is a project ID that provides API-specific context for accessing the type. APIs that do not use project information can use the resource name format "monitoredResourceDescriptors/{type}".

type: String

Required. The monitored resource type. For example, the type "cloudsql_database" represents databases in Google Cloud SQL.

display_name: String

Optional. A concise name for the monitored resource type that might be displayed in user interfaces. It should be a Title Cased Noun Phrase, without any article or other determiners. For example, "Google Cloud SQL Database".

description: String

Optional. A detailed description of the monitored resource type that might be used in documentation.

labels: Vec<LabelDescriptor>

Required. A set of labels used to describe instances of this monitored resource type. For example, an individual Google Cloud SQL database is identified by values for the labels "database_id" and "zone".

launch_stage: i32

Optional. The launch stage of the monitored resource definition.

Implementations

impl MonitoredResourceDescriptor[src]

pub fn launch_stage(&self) -> LaunchStage[src]

Returns the enum value of launch_stage, or the default if the field is set to an invalid enum value.

pub fn set_launch_stage(&mut self, value: LaunchStage)[src]

Sets launch_stage to the provided enum value.

Trait Implementations

impl Clone for MonitoredResourceDescriptor[src]

impl Debug for MonitoredResourceDescriptor[src]

impl Default for MonitoredResourceDescriptor[src]

impl Message for MonitoredResourceDescriptor[src]

impl PartialEq<MonitoredResourceDescriptor> for MonitoredResourceDescriptor[src]

impl StructuralPartialEq for MonitoredResourceDescriptor[src]

Auto Trait Implementations

impl RefUnwindSafe for MonitoredResourceDescriptor

impl Send for MonitoredResourceDescriptor

impl Sync for MonitoredResourceDescriptor

impl Unpin for MonitoredResourceDescriptor

impl UnwindSafe for MonitoredResourceDescriptor

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]