pub struct InterconnectAttachmentPartnerMetadata {
pub interconnect_name: Option<String>,
pub partner_name: Option<String>,
pub portal_url: Option<String>,
}
Expand description
Informational metadata about Partner attachments from Partners to display to customers. These fields are propagated from PARTNER_PROVIDER attachments to their corresponding PARTNER attachments.
This type is not used in any activity, and only used as part of another schema.
Fields§
§interconnect_name: Option<String>
Plain text name of the Interconnect this attachment is connected to, as displayed in the Partner’s portal. For instance “Chicago 1”. This value may be validated to match approved Partner values.
partner_name: Option<String>
Plain text name of the Partner providing this attachment. This value may be validated to match approved Partner values.
portal_url: Option<String>
URL of the Partner’s portal for this Attachment. Partners may customise this to be a deep link to the specific resource on the Partner portal. This value may be validated to match approved Partner values.
Trait Implementations§
Source§impl Clone for InterconnectAttachmentPartnerMetadata
impl Clone for InterconnectAttachmentPartnerMetadata
Source§fn clone(&self) -> InterconnectAttachmentPartnerMetadata
fn clone(&self) -> InterconnectAttachmentPartnerMetadata
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for InterconnectAttachmentPartnerMetadata
impl Default for InterconnectAttachmentPartnerMetadata
Source§fn default() -> InterconnectAttachmentPartnerMetadata
fn default() -> InterconnectAttachmentPartnerMetadata
Source§impl<'de> Deserialize<'de> for InterconnectAttachmentPartnerMetadata
impl<'de> Deserialize<'de> for InterconnectAttachmentPartnerMetadata
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 Part for InterconnectAttachmentPartnerMetadata
Auto Trait Implementations§
impl Freeze for InterconnectAttachmentPartnerMetadata
impl RefUnwindSafe for InterconnectAttachmentPartnerMetadata
impl Send for InterconnectAttachmentPartnerMetadata
impl Sync for InterconnectAttachmentPartnerMetadata
impl Unpin for InterconnectAttachmentPartnerMetadata
impl UnwindSafe for InterconnectAttachmentPartnerMetadata
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