Package org.cdk8s.plus24
Interface IApiEndpoint
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
IApiEndpoint.Jsii$Default
- All Known Implementing Classes:
AbstractPod
,ApiResource
,AwsElasticBlockStorePersistentVolume
,AzureDiskPersistentVolume
,BasicAuthSecret
,ClusterRole
,ClusterRoleBinding
,ConfigMap
,CronJob
,DaemonSet
,Deployment
,DockerConfigSecret
,GCEPersistentDiskPersistentVolume
,HorizontalPodAutoscaler
,IApiEndpoint.Jsii$Proxy
,Ingress
,Job
,Namespace
,NetworkPolicy
,NonApiResource
,PersistentVolume
,PersistentVolumeClaim
,Pod
,Resource
,Role
,RoleBinding
,Secret
,Service
,ServiceAccount
,ServiceAccountTokenSecret
,SshAuthSecret
,StatefulSet
,TlsSecret
,Workload
@Generated(value="jsii-pacmak/1.75.0 (build 63bb957)", date="2023-02-20T02:42:01.863Z") @Stability(Stable) public interface IApiEndpoint extends software.amazon.jsii.JsiiSerializable
An API Endpoint can either be a resource descriptor (e.g /pods) or a non resource url (e.g /healthz). It must be one or the other, and not both.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
IApiEndpoint.Jsii$Default
Internal default implementation forIApiEndpoint
.static class
IApiEndpoint.Jsii$Proxy
A proxy class which represents a concrete javascript instance of this type.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IApiResource
asApiResource()
Return the IApiResource this object represents.String
asNonApiResource()
Return the non resource url this object represents.
-
-
-
Method Detail
-
asApiResource
@Stability(Stable) @Nullable IApiResource asApiResource()
Return the IApiResource this object represents.
-
asNonApiResource
@Stability(Stable) @Nullable String asNonApiResource()
Return the non resource url this object represents.
-
-