pub struct IssuerAcmeSolversDns01Rfc2136 {
pub nameserver: String,
pub tsig_algorithm: Option<String>,
pub tsig_key_name: Option<String>,
pub tsig_secret_secret_ref: Option<IssuerAcmeSolversDns01Rfc2136TsigSecretSecretRef>,
}
Expand description
Use RFC2136 (“Dynamic Updates in the Domain Name System”) (https://datatracker.ietf.org/doc/rfc2136/) to manage DNS01 challenge records.
Fields§
§nameserver: String
The IP address or hostname of an authoritative DNS server supporting RFC2136 in the form host:port. If the host is an IPv6 address it must be enclosed in square brackets (e.g [2001:db8::1]) ; port is optional. This field is required.
tsig_algorithm: Option<String>
The TSIG Algorithm configured in the DNS supporting RFC2136. Used only
when tsigSecretSecretRef
and tsigKeyName
are defined.
Supported values are (case-insensitive): HMACMD5
(default),
HMACSHA1
, HMACSHA256
or HMACSHA512
.
tsig_key_name: Option<String>
The TSIG Key name configured in the DNS.
If tsigSecretSecretRef
is defined, this field is required.
tsig_secret_secret_ref: Option<IssuerAcmeSolversDns01Rfc2136TsigSecretSecretRef>
The name of the secret containing the TSIG value.
If tsigKeyName
is defined, this field is required.
Trait Implementations§
source§impl Clone for IssuerAcmeSolversDns01Rfc2136
impl Clone for IssuerAcmeSolversDns01Rfc2136
source§fn clone(&self) -> IssuerAcmeSolversDns01Rfc2136
fn clone(&self) -> IssuerAcmeSolversDns01Rfc2136
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for IssuerAcmeSolversDns01Rfc2136
impl Default for IssuerAcmeSolversDns01Rfc2136
source§fn default() -> IssuerAcmeSolversDns01Rfc2136
fn default() -> IssuerAcmeSolversDns01Rfc2136
source§impl<'de> Deserialize<'de> for IssuerAcmeSolversDns01Rfc2136
impl<'de> Deserialize<'de> for IssuerAcmeSolversDns01Rfc2136
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>,
Auto Trait Implementations§
impl Freeze for IssuerAcmeSolversDns01Rfc2136
impl RefUnwindSafe for IssuerAcmeSolversDns01Rfc2136
impl Send for IssuerAcmeSolversDns01Rfc2136
impl Sync for IssuerAcmeSolversDns01Rfc2136
impl Unpin for IssuerAcmeSolversDns01Rfc2136
impl UnwindSafe for IssuerAcmeSolversDns01Rfc2136
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request
source§impl<T, U> OverrideFrom<Option<&T>> for Uwhere
U: OverrideFrom<T>,
impl<T, U> OverrideFrom<Option<&T>> for Uwhere
U: OverrideFrom<T>,
source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<T> ProgressEventTimestamp for T
impl<T> ProgressEventTimestamp for T
source§impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
source§fn into_rust(self) -> Result<R, TryFromProtoError>
fn into_rust(self) -> Result<R, TryFromProtoError>
RustType::from_proto
.source§fn from_rust(rust: &R) -> P
fn from_rust(rust: &R) -> P
RustType::into_proto
.source§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
std::ops::AddAssign
, for types that do not implement AddAssign
.