Struct google_runtimeconfig1_beta1::RuntimeConfig[][src]

pub struct RuntimeConfig {
    pub description: Option<String>,
    pub name: Option<String>,
}

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

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

An optional description of the RuntimeConfig object.

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 the [0-9A-Za-z](?:[_.A-Za-z0-9-]{0,62}[_.A-Za-z0-9])? regular expression. The length of [CONFIG_NAME] must be less than 64 characters.

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.

Trait Implementations

impl Default for RuntimeConfig
[src]

Returns the "default value" for a type. Read more

impl Clone for RuntimeConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for RuntimeConfig
[src]

Formats the value using the given formatter. Read more

impl RequestValue for RuntimeConfig
[src]

impl ResponseResult for RuntimeConfig
[src]

Auto Trait Implementations