#[non_exhaustive]pub struct CertificateProviderInstance {
pub plugin_instance: String,
/* private fields */
}Expand description
Specification of a TLS certificate provider instance. Workloads may have one or more CertificateProvider instances (plugins) and one of them is enabled and configured by specifying this message. Workloads use the values from this message to locate and load the CertificateProvider instance configuration.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.plugin_instance: StringRequired. Plugin instance name, used to locate and load CertificateProvider instance configuration. Set to “google_cloud_private_spiffe” to use Certificate Authority Service certificate provider instance.
Implementations§
Source§impl CertificateProviderInstance
impl CertificateProviderInstance
pub fn new() -> Self
Sourcepub fn set_plugin_instance<T: Into<String>>(self, v: T) -> Self
pub fn set_plugin_instance<T: Into<String>>(self, v: T) -> Self
Sets the value of plugin_instance.
Trait Implementations§
Source§impl Clone for CertificateProviderInstance
impl Clone for CertificateProviderInstance
Source§fn clone(&self) -> CertificateProviderInstance
fn clone(&self) -> CertificateProviderInstance
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 CertificateProviderInstance
impl Debug for CertificateProviderInstance
Source§impl Default for CertificateProviderInstance
impl Default for CertificateProviderInstance
Source§fn default() -> CertificateProviderInstance
fn default() -> CertificateProviderInstance
Returns the “default value” for a type. Read more
impl StructuralPartialEq for CertificateProviderInstance
Auto Trait Implementations§
impl Freeze for CertificateProviderInstance
impl RefUnwindSafe for CertificateProviderInstance
impl Send for CertificateProviderInstance
impl Sync for CertificateProviderInstance
impl Unpin for CertificateProviderInstance
impl UnwindSafe for CertificateProviderInstance
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