pub struct DnsAutomationStatus {
pub error: Option<GoogleRpcStatus>,
pub fqdn: Option<String>,
pub state: Option<String>,
}Expand description
The status of DNS automation for a PSC connection.
This type is not used in any activity, and only used as part of another schema.
Fields§
§error: Option<GoogleRpcStatus>Output only. The error details if the state is CREATE_FAILED or DELETE_FAILED.
fqdn: Option<String>Output only. The fully qualified domain name of the DNS record.
state: Option<String>Output only. The current state of DNS automation.
Trait Implementations§
Source§impl Clone for DnsAutomationStatus
impl Clone for DnsAutomationStatus
Source§fn clone(&self) -> DnsAutomationStatus
fn clone(&self) -> DnsAutomationStatus
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 DnsAutomationStatus
impl Debug for DnsAutomationStatus
Source§impl Default for DnsAutomationStatus
impl Default for DnsAutomationStatus
Source§fn default() -> DnsAutomationStatus
fn default() -> DnsAutomationStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DnsAutomationStatus
impl<'de> Deserialize<'de> for DnsAutomationStatus
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 DnsAutomationStatus
impl Serialize for DnsAutomationStatus
impl Part for DnsAutomationStatus
Auto Trait Implementations§
impl Freeze for DnsAutomationStatus
impl RefUnwindSafe for DnsAutomationStatus
impl Send for DnsAutomationStatus
impl Sync for DnsAutomationStatus
impl Unpin for DnsAutomationStatus
impl UnwindSafe for DnsAutomationStatus
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