Record Class EndpointCertificateRequest

java.lang.Object
java.lang.Record
com.yahoo.vespa.hosted.controller.api.integration.certificates.EndpointCertificateRequest
Record Components:
createTime - ISO 8601

public record EndpointCertificateRequest(String requestId, String requestor, String ticketId, String athenzDomain, List<EndpointCertificateRequest.DnsNameStatus> dnsNames, long durationSec, String status, String createTime, long expiry, String issuer, String publicKeyAlgo) extends Record
This class is used for details about an application's endpoint certificate received from the certificate provider.
Author:
andreer
  • Constructor Details

    • EndpointCertificateRequest

      public EndpointCertificateRequest(String requestId, String requestor, String ticketId, String athenzDomain, List<EndpointCertificateRequest.DnsNameStatus> dnsNames, long durationSec, String status, String createTime, long expiry, String issuer, String publicKeyAlgo)
      Creates an instance of a EndpointCertificateRequest record class.
      Parameters:
      requestId - the value for the requestId record component
      requestor - the value for the requestor record component
      ticketId - the value for the ticketId record component
      athenzDomain - the value for the athenzDomain record component
      dnsNames - the value for the dnsNames record component
      durationSec - the value for the durationSec record component
      status - the value for the status record component
      createTime - the value for the createTime record component
      expiry - the value for the expiry record component
      issuer - the value for the issuer record component
      publicKeyAlgo - the value for the publicKeyAlgo record component
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • requestId

      public String requestId()
      Returns the value of the requestId record component.
      Returns:
      the value of the requestId record component
    • requestor

      public String requestor()
      Returns the value of the requestor record component.
      Returns:
      the value of the requestor record component
    • ticketId

      public String ticketId()
      Returns the value of the ticketId record component.
      Returns:
      the value of the ticketId record component
    • athenzDomain

      public String athenzDomain()
      Returns the value of the athenzDomain record component.
      Returns:
      the value of the athenzDomain record component
    • dnsNames

      Returns the value of the dnsNames record component.
      Returns:
      the value of the dnsNames record component
    • durationSec

      public long durationSec()
      Returns the value of the durationSec record component.
      Returns:
      the value of the durationSec record component
    • status

      public String status()
      Returns the value of the status record component.
      Returns:
      the value of the status record component
    • createTime

      public String createTime()
      Returns the value of the createTime record component.
      Returns:
      the value of the createTime record component
    • expiry

      public long expiry()
      Returns the value of the expiry record component.
      Returns:
      the value of the expiry record component
    • issuer

      public String issuer()
      Returns the value of the issuer record component.
      Returns:
      the value of the issuer record component
    • publicKeyAlgo

      public String publicKeyAlgo()
      Returns the value of the publicKeyAlgo record component.
      Returns:
      the value of the publicKeyAlgo record component