pub struct RegionNetworkEndpointResult {
pub client_destination_port: Output<Option<i32>>,
pub fqdn: Output<Option<String>>,
pub instance: Output<Option<String>>,
pub ip_address: Output<Option<String>>,
pub network_endpoint_id: Output<i32>,
pub port: Output<i32>,
pub project: Output<String>,
pub region: Output<String>,
pub region_network_endpoint_group: Output<String>,
}
Fields§
§client_destination_port: Output<Option<i32>>
Client destination port for the GCE_VM_IP_PORTMAP
NEG.
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.
instance: Output<Option<String>>
The name for a specific VM instance that the IP address belongs to. This is required for network endpoints of type GCE_VM_IP_PORTMAP.
ip_address: Output<Option<String>>
IPv4 address external endpoint. This can only be specified when network_endpoint_type of the NEG is INTERNET_IP_PORT.
network_endpoint_id: Output<i32>
The unique identifier number for the resource. This identifier is defined by the server.
port: Output<i32>
Port number of network endpoint.
project: Output<String>
The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
region: Output<String>
Region where the containing network endpoint group is located.
region_network_endpoint_group: Output<String>
The network endpoint group this endpoint is part of.