pub struct DatabricksGcpServiceAccount {
pub credential_id: Option<String>,
pub email: Option<String>,
pub private_key_id: Option<String>,
}Expand description
The Databricks managed GCP service account configuration.
Fields§
§credential_id: Option<String>The Databricks internal ID that represents this managed identity.
email: Option<String>The email of the service account.
private_key_id: Option<String>The ID that represents the private key for this Service Account.
Implementations§
Source§impl DatabricksGcpServiceAccount
impl DatabricksGcpServiceAccount
Sourcepub fn credential_id(&self) -> &str
pub fn credential_id(&self) -> &str
Returns the value of credential_id, or the default value if credential_id is unset.
Sourcepub fn email(&self) -> &str
pub fn email(&self) -> &str
Returns the value of email, or the default value if email is unset.
Sourcepub fn private_key_id(&self) -> &str
pub fn private_key_id(&self) -> &str
Returns the value of private_key_id, or the default value if private_key_id is unset.
Trait Implementations§
Source§impl Clone for DatabricksGcpServiceAccount
impl Clone for DatabricksGcpServiceAccount
Source§fn clone(&self) -> DatabricksGcpServiceAccount
fn clone(&self) -> DatabricksGcpServiceAccount
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DatabricksGcpServiceAccount
impl Debug for DatabricksGcpServiceAccount
§impl<'de> Deserialize<'de> for DatabricksGcpServiceAccount
impl<'de> Deserialize<'de> for DatabricksGcpServiceAccount
§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
impl Eq for DatabricksGcpServiceAccount
Source§impl Hash for DatabricksGcpServiceAccount
impl Hash for DatabricksGcpServiceAccount
Source§impl Message for DatabricksGcpServiceAccount
impl Message for DatabricksGcpServiceAccount
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.§impl Serialize for DatabricksGcpServiceAccount
impl Serialize for DatabricksGcpServiceAccount
impl StructuralPartialEq for DatabricksGcpServiceAccount
Auto Trait Implementations§
impl Freeze for DatabricksGcpServiceAccount
impl RefUnwindSafe for DatabricksGcpServiceAccount
impl Send for DatabricksGcpServiceAccount
impl Sync for DatabricksGcpServiceAccount
impl Unpin for DatabricksGcpServiceAccount
impl UnsafeUnpin for DatabricksGcpServiceAccount
impl UnwindSafe for DatabricksGcpServiceAccount
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