pub struct PackConnectionGoogleServiceAccountMetadata {
pub masked_service_account_key: String,
pub type_: PackConnectionGoogleServiceAccountMetadataType,
}
Expand description
PackConnectionGoogleServiceAccountMetadata
JSON schema
{
"type": "object",
"required": [
"maskedServiceAccountKey",
"type"
],
"properties": {
"maskedServiceAccountKey": {
"type": "string"
},
"type": {
"type": "string",
"enum": [
"googleServiceAccount"
],
"x-tsType": "PackConnectionType.GoogleServiceAccount"
}
},
"additionalProperties": false,
"x-schema-name": "PackConnectionGoogleServiceAccountMetadata"
}
Fields§
§masked_service_account_key: String
§type_: PackConnectionGoogleServiceAccountMetadataType
Trait Implementations§
Source§impl Clone for PackConnectionGoogleServiceAccountMetadata
impl Clone for PackConnectionGoogleServiceAccountMetadata
Source§fn clone(&self) -> PackConnectionGoogleServiceAccountMetadata
fn clone(&self) -> PackConnectionGoogleServiceAccountMetadata
Returns a duplicate 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<'de> Deserialize<'de> for PackConnectionGoogleServiceAccountMetadata
impl<'de> Deserialize<'de> for PackConnectionGoogleServiceAccountMetadata
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
Source§impl From<&PackConnectionGoogleServiceAccountMetadata> for PackConnectionGoogleServiceAccountMetadata
impl From<&PackConnectionGoogleServiceAccountMetadata> for PackConnectionGoogleServiceAccountMetadata
Source§fn from(value: &PackConnectionGoogleServiceAccountMetadata) -> Self
fn from(value: &PackConnectionGoogleServiceAccountMetadata) -> Self
Converts to this type from the input type.
Source§impl From<PackConnectionGoogleServiceAccountMetadata> for PackSystemConnectionMetadata
impl From<PackConnectionGoogleServiceAccountMetadata> for PackSystemConnectionMetadata
Source§fn from(value: PackConnectionGoogleServiceAccountMetadata) -> Self
fn from(value: PackConnectionGoogleServiceAccountMetadata) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PackConnectionGoogleServiceAccountMetadata
impl RefUnwindSafe for PackConnectionGoogleServiceAccountMetadata
impl Send for PackConnectionGoogleServiceAccountMetadata
impl Sync for PackConnectionGoogleServiceAccountMetadata
impl Unpin for PackConnectionGoogleServiceAccountMetadata
impl UnwindSafe for PackConnectionGoogleServiceAccountMetadata
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