certificates/cas/apiv1/requests.go

38 lines
819 B
Go
Raw Normal View History

package apiv1
import (
"crypto/x509"
"time"
)
type CreateCertificateRequest struct {
2020-09-10 16:19:18 -07:00
Template *x509.Certificate
Lifetime time.Duration
Backdate time.Duration
RequestID string
}
type CreateCertificateResponse struct {
Certificate *x509.Certificate
CertificateChain []*x509.Certificate
}
2020-09-10 16:19:18 -07:00
type RenewCertificateRequest struct {
Template *x509.Certificate
Lifetime time.Duration
Backdate time.Duration
RequestID string
}
type RenewCertificateResponse struct {
Certificate *x509.Certificate
CertificateChain []*x509.Certificate
}
2020-09-10 16:19:18 -07:00
// RevokeCertificateRequest is the request used to revoke a certificate.
type RevokeCertificateRequest struct {
Certificate *x509.Certificate
}
type RevokeCertificateResponse struct {
Certificate *x509.Certificate
CertificateChain []*x509.Certificate
}