Package org.cdk8s.plus23.k8s
Interface PodOs
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
PodOs.Jsii$Proxy
@Generated(value="jsii-pacmak/1.69.0 (build f656c31)", date="2022-10-15T03:08:35.610Z") @Stability(Stable) public interface PodOs extends software.amazon.jsii.JsiiSerializable
PodOS defines the OS parameters of a pod.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
PodOs.Builder
A builder forPodOs
static class
PodOs.Jsii$Proxy
An implementation forPodOs
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static PodOs.Builder
builder()
String
getName()
Name is the name of the operating system.
-
-
-
Method Detail
-
getName
@Stability(Stable) @NotNull String getName()
Name is the name of the operating system.The currently supported values are linux and windows. Additional value may be defined in future and can be one of: https://github.com/opencontainers/runtime-spec/blob/master/config.md#platform-specific-configuration Clients should expect to handle additional values and treat unrecognized values in this field as os: null
-
builder
@Stability(Stable) static PodOs.Builder builder()
- Returns:
- a
PodOs.Builder
ofPodOs
-
-