k8sAPIServiceEndpointDiscovery

k8sAPIServiceEndpointDiscovery T

T
k8sAPIServiceEndpointDiscovery
(
T
)
(
T t
)

Examples

auto r = Request("GET", "konnex-engine");
assert(is(typeof(r) == Request));
assert(is(typeof(r.method) == string));
assert(is(typeof(r.namespace) == string));
assert(is(typeof(k8sAPIServiceEndpointDiscovery!Request(r).method) == string));
assert(is(typeof(k8sAPIServiceEndpointDiscovery!Request(r).namespace) == string));
assert(k8sAPIServiceEndpointDiscovery!Request(r).method == "GET");
assert(k8sAPIServiceEndpointDiscovery!Request(r).namespace == "konnex-engine");

Meta