Package org.cdk8s.plus23.k8s
Interface KubeEndpointSliceProps
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
KubeEndpointSliceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.69.0 (build f656c31)", date="2022-10-15T03:08:35.404Z") @Stability(Stable) public interface KubeEndpointSliceProps extends software.amazon.jsii.JsiiSerializable
EndpointSlice represents a subset of the endpoints that implement a service.For a given service there may be multiple EndpointSlice objects, selected by labels, which must be joined to produce the full set of endpoints.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
KubeEndpointSliceProps.Builder
A builder forKubeEndpointSliceProps
static class
KubeEndpointSliceProps.Jsii$Proxy
An implementation forKubeEndpointSliceProps
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static KubeEndpointSliceProps.Builder
builder()
IoK8SApiDiscoveryV1EndpointSliceAddressType
getAddressType()
addressType specifies the type of address carried by this EndpointSlice.List<Endpoint>
getEndpoints()
endpoints is a list of unique endpoints in this slice.default ObjectMeta
getMetadata()
Standard object's metadata.default List<EndpointPort>
getPorts()
ports specifies the list of network ports exposed by each endpoint in this slice.
-
-
-
Method Detail
-
getAddressType
@Stability(Stable) @NotNull IoK8SApiDiscoveryV1EndpointSliceAddressType getAddressType()
addressType specifies the type of address carried by this EndpointSlice.All addresses in this slice must be the same type. This field is immutable after creation. The following address types are currently supported: * IPv4: Represents an IPv4 Address. * IPv6: Represents an IPv6 Address. * FQDN: Represents a Fully Qualified Domain Name.
Possible enum values:
"FQDN"
represents a FQDN."IPv4"
represents an IPv4 Address."IPv6"
represents an IPv6 Address.
-
getEndpoints
@Stability(Stable) @NotNull List<Endpoint> getEndpoints()
endpoints is a list of unique endpoints in this slice.Each slice may include a maximum of 1000 endpoints.
-
getMetadata
@Stability(Stable) @Nullable default ObjectMeta getMetadata()
Standard object's metadata.
-
getPorts
@Stability(Stable) @Nullable default List<EndpointPort> getPorts()
ports specifies the list of network ports exposed by each endpoint in this slice.Each port must have a unique name. When ports is empty, it indicates that there are no defined ports. When a port is defined with a nil port value, it indicates "all ports". Each slice may include a maximum of 100 ports.
-
builder
@Stability(Stable) static KubeEndpointSliceProps.Builder builder()
- Returns:
- a
KubeEndpointSliceProps.Builder
ofKubeEndpointSliceProps
-
-