Package org.cdk8s.plus20
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,DaemonSet,Deployment,DockerConfigSecret,GCEPersistentDiskPersistentVolume,IApiEndpoint.Jsii$Proxy,IngressV1Beta1,Job,NonApiResource,PersistentVolume,PersistentVolumeClaim,Pod,Resource,Role,RoleBinding,Secret,Service,ServiceAccount,ServiceAccountTokenSecret,SshAuthSecret,StatefulSet,TlsSecret,Workload
@Generated(value="jsii-pacmak/1.59.0 (build eb02c92)", date="2022-05-18T23:19:48.599Z") @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.
-
-