Struct yup_oauth2::ServiceAccountKey
source · [−]pub struct ServiceAccountKey {
pub key_type: Option<String>,
pub project_id: Option<String>,
pub private_key_id: Option<String>,
pub private_key: String,
pub client_email: String,
pub client_id: Option<String>,
pub auth_uri: Option<String>,
pub token_uri: String,
pub auth_provider_x509_cert_url: Option<String>,
pub client_x509_cert_url: Option<String>,
}
Expand description
JSON schema of secret service account key.
You can obtain the key from the Cloud Console.
You can use helpers::read_service_account_key()
as a quick way to read a JSON client
secret into a ServiceAccountKey.
Fields
key_type: Option<String>
key_type
project_id: Option<String>
project_id
private_key_id: Option<String>
private_key_id
private_key: String
private_key
client_email: String
client_email
client_id: Option<String>
client_id
auth_uri: Option<String>
auth_uri
token_uri: String
token_uri
auth_provider_x509_cert_url: Option<String>
auth_provider_x509_cert_url
client_x509_cert_url: Option<String>
client_x509_cert_url
Trait Implementations
sourceimpl Clone for ServiceAccountKey
impl Clone for ServiceAccountKey
sourcefn clone(&self) -> ServiceAccountKey
fn clone(&self) -> ServiceAccountKey
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ServiceAccountKey
impl Debug for ServiceAccountKey
sourceimpl<'de> Deserialize<'de> for ServiceAccountKey
impl<'de> Deserialize<'de> for ServiceAccountKey
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Serialize for ServiceAccountKey
impl Serialize for ServiceAccountKey
Auto Trait Implementations
impl RefUnwindSafe for ServiceAccountKey
impl Send for ServiceAccountKey
impl Sync for ServiceAccountKey
impl Unpin for ServiceAccountKey
impl UnwindSafe for ServiceAccountKey
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more