Package org.cdk8s.plus24.k8s
Class ApiServiceSpec.Builder
- java.lang.Object
-
- org.cdk8s.plus24.k8s.ApiServiceSpec.Builder
-
- All Implemented Interfaces:
software.amazon.jsii.Builder<ApiServiceSpec>
- Enclosing interface:
- ApiServiceSpec
@Stability(Stable) public static final class ApiServiceSpec.Builder extends Object implements software.amazon.jsii.Builder<ApiServiceSpec>
A builder forApiServiceSpec
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ApiServiceSpec
build()
Builds the configured instance.ApiServiceSpec.Builder
caBundle(String caBundle)
Sets the value ofApiServiceSpec.getCaBundle()
ApiServiceSpec.Builder
group(String group)
Sets the value ofApiServiceSpec.getGroup()
ApiServiceSpec.Builder
groupPriorityMinimum(Number groupPriorityMinimum)
Sets the value ofApiServiceSpec.getGroupPriorityMinimum()
ApiServiceSpec.Builder
insecureSkipTlsVerify(Boolean insecureSkipTlsVerify)
Sets the value ofApiServiceSpec.getInsecureSkipTlsVerify()
ApiServiceSpec.Builder
service(ServiceReference service)
Sets the value ofApiServiceSpec.getService()
ApiServiceSpec.Builder
version(String version)
Sets the value ofApiServiceSpec.getVersion()
ApiServiceSpec.Builder
versionPriority(Number versionPriority)
Sets the value ofApiServiceSpec.getVersionPriority()
-
-
-
Method Detail
-
groupPriorityMinimum
@Stability(Stable) public ApiServiceSpec.Builder groupPriorityMinimum(Number groupPriorityMinimum)
Sets the value ofApiServiceSpec.getGroupPriorityMinimum()
- Parameters:
groupPriorityMinimum
- GroupPriorityMininum is the priority this group should have at least. This parameter is required. Higher priority means that the group is preferred by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s- Returns:
this
-
versionPriority
@Stability(Stable) public ApiServiceSpec.Builder versionPriority(Number versionPriority)
Sets the value ofApiServiceSpec.getVersionPriority()
- Parameters:
versionPriority
- VersionPriority controls the ordering of this API version inside of its group. This parameter is required. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). Since it's inside of a group, the number can be small, probably in the 10s. In case of equal version priorities, the version string will be used to compute the order inside a group. If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version), then optionally the string "alpha" or "beta" and another number (the minor version). These are sorted first by GA > beta > alpha (where GA is a version with no suffix such as beta or alpha), and then by comparing major version, then minor version. An example sorted list of versions: v10, v2, v1, v11beta2, v10beta3, v3beta1, v12alpha1, v11alpha2, foo1, foo10.- Returns:
this
-
caBundle
@Stability(Stable) public ApiServiceSpec.Builder caBundle(String caBundle)
Sets the value ofApiServiceSpec.getCaBundle()
- Parameters:
caBundle
- CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate. If unspecified, system trust roots on the apiserver are used.- Returns:
this
-
group
@Stability(Stable) public ApiServiceSpec.Builder group(String group)
Sets the value ofApiServiceSpec.getGroup()
- Parameters:
group
- Group is the API group name this server hosts.- Returns:
this
-
insecureSkipTlsVerify
@Stability(Stable) public ApiServiceSpec.Builder insecureSkipTlsVerify(Boolean insecureSkipTlsVerify)
Sets the value ofApiServiceSpec.getInsecureSkipTlsVerify()
- Parameters:
insecureSkipTlsVerify
- InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.- Returns:
this
-
service
@Stability(Stable) public ApiServiceSpec.Builder service(ServiceReference service)
Sets the value ofApiServiceSpec.getService()
- Parameters:
service
- Service is a reference to the service for this API server. It must communicate on port 443. If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled.- Returns:
this
-
version
@Stability(Stable) public ApiServiceSpec.Builder version(String version)
Sets the value ofApiServiceSpec.getVersion()
- Parameters:
version
- Version is the API version this server hosts. For example, "v1"- Returns:
this
-
build
@Stability(Stable) public ApiServiceSpec build()
Builds the configured instance.- Specified by:
build
in interfacesoftware.amazon.jsii.Builder<ApiServiceSpec>
- Returns:
- a new instance of
ApiServiceSpec
- Throws:
NullPointerException
- if any required attribute was not provided
-
-