Struct google_apigee1::api::GoogleCloudApigeeV1Reference[][src]

pub struct GoogleCloudApigeeV1Reference {
    pub description: Option<String>,
    pub name: Option<String>,
    pub refers: Option<String>,
    pub resource_type: Option<String>,
}

A Reference configuration. References must refer to a keystore that also exists in the parent environment.

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

description: Option<String>

Optional. A human-readable description of this reference.

name: Option<String>

Required. The resource id of this reference. Values must match the regular expression [\w\s-.]+.

refers: Option<String>

Required. The id of the resource to which this reference refers. Must be the id of a resource that exists in the parent environment and is of the given resource_type.

resource_type: Option<String>

The type of resource referred to by this reference. Valid values are ‘KeyStore’ or ‘TrustStore’.

Trait Implementations

impl Clone for GoogleCloudApigeeV1Reference[src]

impl Debug for GoogleCloudApigeeV1Reference[src]

impl Default for GoogleCloudApigeeV1Reference[src]

impl<'de> Deserialize<'de> for GoogleCloudApigeeV1Reference[src]

impl RequestValue for GoogleCloudApigeeV1Reference[src]

impl ResponseResult for GoogleCloudApigeeV1Reference[src]

impl Serialize for GoogleCloudApigeeV1Reference[src]

Auto Trait Implementations

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<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.