pub struct HostRecord {
pub host_arn: String,
pub name: String,
pub provider_type: String,
pub provider_endpoint: String,
pub status: String,
pub vpc_configuration: Option<Value>,
pub tags: TagMap,
}Expand description
A self-managed host for an installed provider type (e.g. GitHub Enterprise Server, GitLab Self Managed).
Fields§
§host_arn: String§name: String§provider_type: String§provider_endpoint: String§status: StringPENDING | AVAILABLE | VPC_CONFIG_INITIALIZING |
VPC_CONFIG_FAILED_INITIALIZATION | VPC_CONFIG_DELETING | ERROR.
vpc_configuration: Option<Value>Raw VpcConfiguration value, round-tripped verbatim on describe.
Trait Implementations§
Source§impl Clone for HostRecord
impl Clone for HostRecord
Source§fn clone(&self) -> HostRecord
fn clone(&self) -> HostRecord
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 HostRecord
impl Debug for HostRecord
Source§impl<'de> Deserialize<'de> for HostRecord
impl<'de> Deserialize<'de> for HostRecord
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 HostRecord
impl RefUnwindSafe for HostRecord
impl Send for HostRecord
impl Sync for HostRecord
impl Unpin for HostRecord
impl UnsafeUnpin for HostRecord
impl UnwindSafe for HostRecord
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