pub struct DnsKey {
pub algorithm: Option<String>,
pub creation_time: Option<String>,
pub description: Option<String>,
pub digests: Option<Vec<DnsKeyDigest>>,
pub id: Option<String>,
pub is_active: Option<bool>,
pub key_length: Option<u32>,
pub key_tag: Option<i32>,
pub kind: Option<String>,
pub public_key: Option<String>,
pub type_: Option<String>,
}Expand description
A DNSSEC key pair.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- get dns keys (response)
- list dns keys (none)
Fields§
§algorithm: Option<String>String mnemonic specifying the DNSSEC algorithm of this key. Immutable after creation time.
creation_time: Option<String>The time that this resource was created in the control plane. This is in RFC3339 text format. Output only.
description: Option<String>A mutable string of at most 1024 characters associated with this resource for the user’s convenience. Has no effect on the resource’s function.
digests: Option<Vec<DnsKeyDigest>>Cryptographic hashes of the DNSKEY resource record associated with this DnsKey. These digests are needed to construct a DS record that points at this DNS key. Output only.
id: Option<String>Unique identifier for the resource; defined by the server (output only).
is_active: Option<bool>Active keys are used to sign subsequent changes to the ManagedZone. Inactive keys are still present as DNSKEY Resource Records for the use of resolvers validating existing signatures.
key_length: Option<u32>Length of the key in bits. Specified at creation time, and then immutable.
key_tag: Option<i32>The key tag is a non-cryptographic hash of the a DNSKEY resource record associated with this DnsKey. The key tag can be used to identify a DNSKEY more quickly (but it is not a unique identifier). In particular, the key tag is used in a parent zone’s DS record to point at the DNSKEY in this child ManagedZone. The key tag is a number in the range [0, 65535] and the algorithm to calculate it is specified in RFC4034 Appendix B. Output only.
kind: Option<String>no description provided
public_key: Option<String>Base64 encoded public half of this key. Output only.
type_: Option<String>One of “KEY_SIGNING” or “ZONE_SIGNING”. Keys of type KEY_SIGNING have the Secure Entry Point flag set and, when active, are used to sign only resource record sets of type DNSKEY. Otherwise, the Secure Entry Point flag is cleared, and this key is used to sign only resource record sets of other types. Immutable after creation time.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for DnsKey
impl<'de> Deserialize<'de> for DnsKey
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>,
impl Resource for DnsKey
impl ResponseResult for DnsKey
Auto Trait Implementations§
impl Freeze for DnsKey
impl RefUnwindSafe for DnsKey
impl Send for DnsKey
impl Sync for DnsKey
impl Unpin for DnsKey
impl UnwindSafe for DnsKey
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§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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more