Certificate Manager Private CA API, gRPC: PrivateCaService.GetCsrForCertificateAuthority
Статья создана
Обновлена 17 декабря 2024 г.
Retrieves the CSR for a given Certificate Authority (CA), generated by GenerateCsrForCertificateAuthority method.
This retrieves the CSR so that it can be signed by an external CA.
gRPC request
rpc GetCsrForCertificateAuthority (GetCsrForCertificateAuthorityRequest) returns (CsrForSignCertificateAuthority)
GetCsrForCertificateAuthorityRequest
{
"certificate_authority_id": "string"
}
Retrieve the CSR for a specific Certificate Authority.
Field |
Description |
certificate_authority_id |
string Required field. The ID of the Certificate Authority for which you want to retrieve the CSR. |
CsrForSignCertificateAuthority
{
"certificate_authority_id": "string",
"pem_content": "string"
}
Certificate Signing Request (CSR) for signing a certificate authority.
Field |
Description |
certificate_authority_id |
string ID of the certificate authority for which the CSR was generated. |
pem_content |
string PEM-encoded CSR content. |