[][src]Struct google_androidenterprise1::ServiceAccountKey

pub struct ServiceAccountKey {
    pub public_data: Option<String>,
    pub kind: Option<String>,
    pub data: Option<String>,
    pub id: Option<String>,
    pub type_: Option<String>,
}

Credentials that can be used to authenticate as a service account.

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

public_data: Option<String>

Public key data for the credentials file. This is an X.509 cert. If you are using the googleCredentials key type, this is identical to the cert that can be retrieved by using the X.509 cert url inside of the credentials file.

kind: Option<String>

no description provided

data: Option<String>

The body of the private key credentials file, in string format. This is only populated when the ServiceAccountKey is created, and is not stored by Google.

id: Option<String>

An opaque, unique identifier for this ServiceAccountKey. Assigned by the server.

type_: Option<String>

The file format of the generated key data.

Trait Implementations

impl Clone for ServiceAccountKey[src]

impl Debug for ServiceAccountKey[src]

impl Default for ServiceAccountKey[src]

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

impl RequestValue for ServiceAccountKey[src]

impl Resource for ServiceAccountKey[src]

impl ResponseResult for ServiceAccountKey[src]

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

impl<T> Typeable for T where
    T: Any