Package org.cdk8s.plus23.k8s
Interface PodTemplateSpec
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
PodTemplateSpec.Jsii$Proxy
@Generated(value="jsii-pacmak/1.69.0 (build f656c31)", date="2022-10-15T03:08:35.621Z") @Stability(Stable) public interface PodTemplateSpec extends software.amazon.jsii.JsiiSerializable
PodTemplateSpec describes the data a pod should have when created from a template.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
PodTemplateSpec.Builder
A builder forPodTemplateSpec
static class
PodTemplateSpec.Jsii$Proxy
An implementation forPodTemplateSpec
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static PodTemplateSpec.Builder
builder()
default ObjectMeta
getMetadata()
Standard object's metadata.default PodSpec
getSpec()
Specification of the desired behavior of the pod.
-
-
-
Method Detail
-
getMetadata
@Stability(Stable) @Nullable default ObjectMeta getMetadata()
Standard object's metadata.More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
-
getSpec
@Stability(Stable) @Nullable default PodSpec getSpec()
Specification of the desired behavior of the pod.More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#spec-and-status
-
builder
@Stability(Stable) static PodTemplateSpec.Builder builder()
- Returns:
- a
PodTemplateSpec.Builder
ofPodTemplateSpec
-
-