Struct gapi_grpc::google::cloud::runtimeconfig::v1beta1::RuntimeConfig[][src]

pub struct RuntimeConfig {
    pub name: String,
    pub description: String,
}

A RuntimeConfig resource is the primary resource in the Cloud RuntimeConfig service. A RuntimeConfig resource consists of metadata and a hierarchy of variables.

Fields

name: String

The resource name of a runtime config. The name must have the format:

projects/[PROJECT_ID]/configs/[CONFIG_NAME]

The [PROJECT_ID] must be a valid project ID, and [CONFIG_NAME] is an arbitrary name that matches RFC 1035 segment specification. The length of [CONFIG_NAME] must be less than 64 bytes.

You pick the RuntimeConfig resource name, but the server will validate that the name adheres to this format. After you create the resource, you cannot change the resource’s name.

description: String

An optional description of the RuntimeConfig object.

Trait Implementations

impl Clone for RuntimeConfig[src]

impl Debug for RuntimeConfig[src]

impl Default for RuntimeConfig[src]

impl Message for RuntimeConfig[src]

impl PartialEq<RuntimeConfig> for RuntimeConfig[src]

impl StructuralPartialEq for RuntimeConfig[src]

Auto Trait Implementations

impl RefUnwindSafe for RuntimeConfig

impl Send for RuntimeConfig

impl Sync for RuntimeConfig

impl Unpin for RuntimeConfig

impl UnwindSafe for RuntimeConfig

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]