pub struct AgentIngressCertJob {
pub error_code: Option<String>,
pub msg: String,
pub started_at: String,
pub retries_at: Option<String>,
}
Fields§
§error_code: Option<String>
if present, an error code indicating why provisioning is failing. It may be either a temporary condition (INTERNAL_ERROR), or a permanent one the user must correct (DNS_ERROR).
msg: String
a message describing the current status or error
started_at: String
timestamp when the provisioning job started, RFC 3339 format
retries_at: Option<String>
timestamp when the provisioning job will be retried
Trait Implementations§
Source§impl Clone for AgentIngressCertJob
impl Clone for AgentIngressCertJob
Source§fn clone(&self) -> AgentIngressCertJob
fn clone(&self) -> AgentIngressCertJob
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 AgentIngressCertJob
impl Debug for AgentIngressCertJob
Source§impl Default for AgentIngressCertJob
impl Default for AgentIngressCertJob
Source§fn default() -> AgentIngressCertJob
fn default() -> AgentIngressCertJob
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentIngressCertJob
impl<'de> Deserialize<'de> for AgentIngressCertJob
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
Auto Trait Implementations§
impl Freeze for AgentIngressCertJob
impl RefUnwindSafe for AgentIngressCertJob
impl Send for AgentIngressCertJob
impl Sync for AgentIngressCertJob
impl Unpin for AgentIngressCertJob
impl UnwindSafe for AgentIngressCertJob
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