[][src]Struct google_sql1_beta4::ImportContextBakImportOptionsEncryptionOptions

pub struct ImportContextBakImportOptionsEncryptionOptions {
    pub cert_path: Option<String>,
    pub pvk_path: Option<String>,
    pub pvk_password: Option<String>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

cert_path: Option<String>

Path to the Certificate (.cer) in Cloud Storage, in the form gs://bucketName/fileName. The instance must have write permissions to the bucket and read access to the file.

pvk_path: Option<String>

Path to the Certificate Private Key (.pvk) in Cloud Storage, in the form gs://bucketName/fileName. The instance must have write permissions to the bucket and read access to the file.

pvk_password: Option<String>

Password that encrypts the private key

Trait Implementations

impl Clone for ImportContextBakImportOptionsEncryptionOptions[src]

impl Debug for ImportContextBakImportOptionsEncryptionOptions[src]

impl Default for ImportContextBakImportOptionsEncryptionOptions[src]

impl<'de> Deserialize<'de> for ImportContextBakImportOptionsEncryptionOptions[src]

impl NestedType for ImportContextBakImportOptionsEncryptionOptions[src]

impl Part for ImportContextBakImportOptionsEncryptionOptions[src]

impl Serialize for ImportContextBakImportOptionsEncryptionOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any