pub struct GcpManagementConfig {
pub service_account_email: String,
}Expand description
GCP management configuration extracted from stack settings
JSON schema
{
"description": "GCP management configuration extracted from stack settings",
"type": "object",
"required": [
"serviceAccountEmail"
],
"properties": {
"serviceAccountEmail": {
"description": "Service account email for management roles",
"type": "string"
}
}
}Fields§
§service_account_email: StringService account email for management roles
Implementations§
Source§impl GcpManagementConfig
impl GcpManagementConfig
pub fn builder() -> GcpManagementConfig
Trait Implementations§
Source§impl Clone for GcpManagementConfig
impl Clone for GcpManagementConfig
Source§fn clone(&self) -> GcpManagementConfig
fn clone(&self) -> GcpManagementConfig
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 GcpManagementConfig
impl Debug for GcpManagementConfig
Source§impl<'de> Deserialize<'de> for GcpManagementConfig
impl<'de> Deserialize<'de> for GcpManagementConfig
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<&GcpManagementConfig> for GcpManagementConfig
impl From<&GcpManagementConfig> for GcpManagementConfig
Source§fn from(value: &GcpManagementConfig) -> Self
fn from(value: &GcpManagementConfig) -> Self
Converts to this type from the input type.
Source§impl From<GcpManagementConfig> for GcpManagementConfig
impl From<GcpManagementConfig> for GcpManagementConfig
Source§fn from(value: GcpManagementConfig) -> Self
fn from(value: GcpManagementConfig) -> Self
Converts to this type from the input type.
Source§impl Serialize for GcpManagementConfig
impl Serialize for GcpManagementConfig
Source§impl TryFrom<GcpManagementConfig> for GcpManagementConfig
impl TryFrom<GcpManagementConfig> for GcpManagementConfig
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: GcpManagementConfig) -> Result<Self, ConversionError>
fn try_from(value: GcpManagementConfig) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for GcpManagementConfig
impl RefUnwindSafe for GcpManagementConfig
impl Send for GcpManagementConfig
impl Sync for GcpManagementConfig
impl Unpin for GcpManagementConfig
impl UnsafeUnpin for GcpManagementConfig
impl UnwindSafe for GcpManagementConfig
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