Struct google_apigee1::api::GoogleCloudApigeeV1DeveloperApp[][src]

pub struct GoogleCloudApigeeV1DeveloperApp {
    pub api_products: Option<Vec<String>>,
    pub app_family: Option<String>,
    pub app_id: Option<String>,
    pub attributes: Option<Vec<GoogleCloudApigeeV1Attribute>>,
    pub callback_url: Option<String>,
    pub created_at: Option<String>,
    pub credentials: Option<Vec<GoogleCloudApigeeV1Credential>>,
    pub developer_id: Option<String>,
    pub key_expires_in: Option<String>,
    pub last_modified_at: Option<String>,
    pub name: Option<String>,
    pub scopes: Option<Vec<String>>,
    pub status: Option<String>,
}

There is no detailed description.

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

api_products: Option<Vec<String>>

List of API products associated with the developer app.

app_family: Option<String>

Developer app family.

app_id: Option<String>

ID of the developer app.

attributes: Option<Vec<GoogleCloudApigeeV1Attribute>>

List of attributes for the developer app.

callback_url: Option<String>

Callback URL used by OAuth 2.0 authorization servers to communicate authorization codes back to developer apps.

created_at: Option<String>

Output only. Time the developer app was created in milliseconds since epoch.

credentials: Option<Vec<GoogleCloudApigeeV1Credential>>

Output only. Set of credentials for the developer app consisting of the consumer key/secret pairs associated with the API products.

developer_id: Option<String>

ID of the developer.

key_expires_in: Option<String>

Expiration time, in milliseconds, for the consumer key that is generated for the developer app. If not set or left to the default value of -1, the API key never expires. The expiration time can’t be updated after it is set.

last_modified_at: Option<String>

Output only. Time the developer app was modified in milliseconds since epoch.

name: Option<String>

Name of the developer app.

scopes: Option<Vec<String>>

Scopes to apply to the developer app. The specified scopes must already exist for the API product that you associate with the developer app.

status: Option<String>

Status of the credential. Valid values include approved or revoked.

Trait Implementations

impl Clone for GoogleCloudApigeeV1DeveloperApp[src]

impl Debug for GoogleCloudApigeeV1DeveloperApp[src]

impl Default for GoogleCloudApigeeV1DeveloperApp[src]

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

impl RequestValue for GoogleCloudApigeeV1DeveloperApp[src]

impl ResponseResult for GoogleCloudApigeeV1DeveloperApp[src]

impl Serialize for GoogleCloudApigeeV1DeveloperApp[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.