Interface EphemeralAgentPod
-
- All Known Implementing Classes:
EphemeralAgentPodImpl
public interface EphemeralAgentPod
Representation of the ephemeral pod- Since:
- 9.3
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
EphemeralAgentPod.EphemeralAgentPodContainer
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull List<EphemeralAgentPod.EphemeralAgentPodContainer>
getContainers()
List of containers in the pod@NotNull Date
getCreationDate()
Pod's creation date@NotNull String
getHostname()
Pod's hostname@NotNull String
getName()
Pod's name@NotNull PodPhase
getPhase()
Pod's status@NotNull String
getPodIP()
Pod's IP
-
-
-
Method Detail
-
getName
@NotNull @NotNull String getName()
Pod's name
-
getHostname
@NotNull @NotNull String getHostname()
Pod's hostname
-
getPodIP
@NotNull @NotNull String getPodIP()
Pod's IP
-
getCreationDate
@NotNull @NotNull Date getCreationDate()
Pod's creation date
-
getPhase
@NotNull @NotNull PodPhase getPhase()
Pod's status
-
getContainers
@NotNull @NotNull List<EphemeralAgentPod.EphemeralAgentPodContainer> getContainers()
List of containers in the pod
-
-