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§
source§impl Clone for ServiceAccountKey
impl Clone for ServiceAccountKey
source§fn clone(&self) -> ServiceAccountKey
fn clone(&self) -> ServiceAccountKey
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ServiceAccountKey
impl Debug for ServiceAccountKey
source§impl<'de> Deserialize<'de> for ServiceAccountKey
impl<'de> Deserialize<'de> for ServiceAccountKey
source§fn 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
Auto Trait Implementations§
impl Freeze for ServiceAccountKey
impl RefUnwindSafe for ServiceAccountKey
impl Send for ServiceAccountKey
impl Sync for ServiceAccountKey
impl Unpin for ServiceAccountKey
impl UnwindSafe for ServiceAccountKey
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)