Record Class Cluster
java.lang.Object
java.lang.Record
io.micronaut.kubernetes.client.openapi.config.model.Cluster
- Record Components:
server- the address of the kubernetes clustercertificateAuthorityData- the PEM-encoded certificate authority certificatesinsecureSkipTlsVerify- skips the validity check for the server's certificate which makes your HTTPS connections insecure
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription@Nullable byte[]Returns the value of thecertificateAuthorityDatarecord component.booleanIndicates whether some other object is "equal to" this one.inthashCode()Returns a hash code value for this object.@Nullable BooleanReturns the value of theinsecureSkipTlsVerifyrecord component.@NonNull Stringserver()Returns the value of theserverrecord component.toString()Returns a string representation of this record class.
-
Constructor Details
-
Cluster
public Cluster(@NonNull String server, @Nullable byte[] certificateAuthorityData, @Nullable Boolean insecureSkipTlsVerify) Creates an instance of aClusterrecord class.- Parameters:
server- the value for theserverrecord componentcertificateAuthorityData- the value for thecertificateAuthorityDatarecord componentinsecureSkipTlsVerify- the value for theinsecureSkipTlsVerifyrecord component
-
-
Method Details
-
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
hashCode
-
toString
-
server
-
certificateAuthorityData
public @Nullable byte[] certificateAuthorityData()Returns the value of thecertificateAuthorityDatarecord component.- Returns:
- the value of the
certificateAuthorityDatarecord component
-
insecureSkipTlsVerify
Returns the value of theinsecureSkipTlsVerifyrecord component.- Returns:
- the value of the
insecureSkipTlsVerifyrecord component
-