pub struct GcpCreationScript {
pub bash: Option<String>,
pub powershell: Option<String>,
pub terraform_gcp: Option<TerraformGcp>,
}Expand description
GCP creation script for PSC endpoint
Fields§
§bash: Option<String>Bash script for endpoint creation
powershell: Option<String>PowerShell script for endpoint creation
terraform_gcp: Option<TerraformGcp>Terraform GCP configuration
Trait Implementations§
Source§impl Clone for GcpCreationScript
impl Clone for GcpCreationScript
Source§fn clone(&self) -> GcpCreationScript
fn clone(&self) -> GcpCreationScript
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 Debug for GcpCreationScript
impl Debug for GcpCreationScript
Source§impl<'de> Deserialize<'de> for GcpCreationScript
impl<'de> Deserialize<'de> for GcpCreationScript
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 GcpCreationScript
impl RefUnwindSafe for GcpCreationScript
impl Send for GcpCreationScript
impl Sync for GcpCreationScript
impl Unpin for GcpCreationScript
impl UnwindSafe for GcpCreationScript
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