pub struct GlobalNetworkEndpointResult {
pub fqdn: Output<Option<String>>,
pub global_network_endpoint_group: Output<String>,
pub ip_address: Output<Option<String>>,
pub port: Output<i32>,
pub project: Output<String>,
}
Fields§
§fqdn: Output<Option<String>>
Fully qualified domain name of network endpoint. This can only be specified when network_endpoint_type of the NEG is INTERNET_FQDN_PORT.
global_network_endpoint_group: Output<String>
The global network endpoint group this endpoint is part of.
ip_address: Output<Option<String>>
IPv4 address external endpoint.
port: Output<i32>
Port number of the external endpoint.
project: Output<String>
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
Auto Trait Implementations§
impl Freeze for GlobalNetworkEndpointResult
impl RefUnwindSafe for GlobalNetworkEndpointResult
impl Send for GlobalNetworkEndpointResult
impl Sync for GlobalNetworkEndpointResult
impl Unpin for GlobalNetworkEndpointResult
impl UnwindSafe for GlobalNetworkEndpointResult
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