aboutsummaryrefslogtreecommitdiffstats
path: root/controller-api/src/main/java/com/yahoo/vespa/hosted/controller/api/integration/certificates/EndpointCertificateDetails.java
blob: ad4b360aae2145af931f73470750437376479554 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.api.integration.certificates;

import java.util.List;

/**
 * This record is used when requesting additional details about an application's endpoint certificate from the provider.
 *
 * @author andreer
 */
public record EndpointCertificateDetails(
        String requestId,
        String requestor,
        String status,
        String ticketId,
        String athenzDomain,
        List<EndpointCertificateRequest.DnsNameStatus> dnsNames,
        String durationSec,
        String expiry,
        String privateKeyKgname,
        String privateKeyKeyname,
        String privateKeyVersion,
        String certKeyKgname,
        String certKeyKeyname,
        String certKeyVersion,
        String createTime,
        boolean expiryProtection,
        String publicKeyAlgo,
        String issuer,
        String serial
) { }