Package org.cdk8s.plus25
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.88.0 (build eaabd08)", date="2023-09-11T06:17:58.295Z") @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 interfaceIApiEndpoint.Jsii$DefaultInternal default implementation forIApiEndpoint.static classIApiEndpoint.Jsii$ProxyA proxy class which represents a concrete javascript instance of this type.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IApiResourceasApiResource()Return the IApiResource this object represents.StringasNonApiResource()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.
-
-