Interface Credential
public interface Credential
A credential used to access external resources such as Git repositories or the Kubernetes control plane.
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
enabled()
Returns whether thisCredential
is enabled.id()
Returns the ID of the credential.Returns a newCredential
that does not contain any sensitive information.
-
Field Details
-
FALLBACK
-
-
Method Details
-
id
String id()Returns the ID of the credential. -
enabled
boolean enabled()Returns whether thisCredential
is enabled. -
withoutSecret
Credential withoutSecret()Returns a newCredential
that does not contain any sensitive information.
-