pub struct CertificateConfig {
pub gcp_secret_manager_secret_uri: Option<String>,
}Expand description
CertificateConfig configures certificate for the registry.
This type is not used in any activity, and only used as part of another schema.
Fields§
§gcp_secret_manager_secret_uri: Option<String>The URI configures a secret from Secret Manager in the format “projects/$PROJECT_ID/secrets/$SECRET_NAME/versions/$VERSION” for global secret or “projects/$PROJECT_ID/locations/$REGION/secrets/$SECRET_NAME/versions/$VERSION” for regional secret. Version can be fixed (e.g. “2”) or “latest”
Trait Implementations§
Source§impl Clone for CertificateConfig
impl Clone for CertificateConfig
Source§fn clone(&self) -> CertificateConfig
fn clone(&self) -> CertificateConfig
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 CertificateConfig
impl Debug for CertificateConfig
Source§impl Default for CertificateConfig
impl Default for CertificateConfig
Source§fn default() -> CertificateConfig
fn default() -> CertificateConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CertificateConfig
impl<'de> Deserialize<'de> for CertificateConfig
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 Serialize for CertificateConfig
impl Serialize for CertificateConfig
impl Part for CertificateConfig
Auto Trait Implementations§
impl Freeze for CertificateConfig
impl RefUnwindSafe for CertificateConfig
impl Send for CertificateConfig
impl Sync for CertificateConfig
impl Unpin for CertificateConfig
impl UnwindSafe for CertificateConfig
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