Class KubeEndpointSlice.Builder

    • Method Detail

      • create

        @Stability(Stable)
        public static KubeEndpointSlice.Builder create​(software.constructs.Construct scope,
                                                       String id)
        Parameters:
        scope - the scope in which to define this object. This parameter is required.
        id - a scope-local name for the object. This parameter is required.
        Returns:
        a new instance of KubeEndpointSlice.Builder.
      • addressType

        @Stability(Stable)
        public KubeEndpointSlice.Builder addressType​(String addressType)
        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.

        Parameters:
        addressType - addressType specifies the type of address carried by this EndpointSlice. This parameter is required.
        Returns:
        this
      • endpoints

        @Stability(Stable)
        public KubeEndpointSlice.Builder endpoints​(List<? extends Endpoint> endpoints)
        endpoints is a list of unique endpoints in this slice.

        Each slice may include a maximum of 1000 endpoints.

        Parameters:
        endpoints - endpoints is a list of unique endpoints in this slice. This parameter is required.
        Returns:
        this
      • metadata

        @Stability(Stable)
        public KubeEndpointSlice.Builder metadata​(ObjectMeta metadata)
        Standard object's metadata.

        Parameters:
        metadata - Standard object's metadata. This parameter is required.
        Returns:
        this
      • ports

        @Stability(Stable)
        public KubeEndpointSlice.Builder ports​(List<? extends EndpointPort> ports)
        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.

        Parameters:
        ports - ports specifies the list of network ports exposed by each endpoint in this slice. This parameter is required.
        Returns:
        this