Certificate Manager API, gRPC: CertificateService.Get
Returns the specified certificate.
To get the list of available certificates, make a List request.
gRPC request
rpc Get (GetCertificateRequest) returns (Certificate)
GetCertificateRequest
{
"certificate_id": "string",
"view": "CertificateView"
}
Field |
Description |
certificate_id |
string Required field. ID of the certificate to return. To get the ID of a certificate use a CertificateService.List request. |
view |
enum CertificateView The output type of the certificate.
|
Certificate
{
"id": "string",
"folder_id": "string",
"created_at": "google.protobuf.Timestamp",
"name": "string",
"description": "string",
"labels": "map<string, string>",
"type": "CertificateType",
"domains": [
"string"
],
"status": "Status",
"issuer": "string",
"subject": "string",
"serial": "string",
"updated_at": "google.protobuf.Timestamp",
"issued_at": "google.protobuf.Timestamp",
"not_after": "google.protobuf.Timestamp",
"not_before": "google.protobuf.Timestamp",
"challenges": [
{
"domain": "string",
"type": "ChallengeType",
"created_at": "google.protobuf.Timestamp",
"updated_at": "google.protobuf.Timestamp",
"status": "Status",
"message": "string",
"error": "string",
// Includes only one of the fields `dns_challenge`, `http_challenge`
"dns_challenge": {
"name": "string",
"type": "string",
"value": "string"
},
"http_challenge": {
"url": "string",
"content": "string"
}
// end of the list of possible fields
}
],
"deletion_protection": "bool",
"incomplete_chain": "bool"
}
A certificate. For details about the concept, see documentation.
Field |
Description |
id |
string ID of the certificate. Generated at creation time. |
folder_id |
string ID of the folder that the certificate belongs to. |
created_at |
Creation timestamp. |
name |
string Name of the certificate. |
description |
string Description of the certificate. |
labels |
object (map<string, string>) Certificate labels as |
type |
enum CertificateType Type of the certificate.
|
domains[] |
string Fully qualified domain names of the certificate. |
status |
enum Status Status of the certificate.
|
issuer |
string Distinguished Name |
subject |
string Distinguished Name |
serial |
string Serial number of the certificate. |
updated_at |
Time when the certificate is updated. |
issued_at |
Time when the certificate is issued. |
not_after |
Time after which the certificate is not valid. |
not_before |
Time before which the certificate is not valid. |
challenges[] |
Domains validation challenges of the certificate. Used only for managed certificates. |
deletion_protection |
bool Flag that protects deletion of the certificate |
incomplete_chain |
bool Mark imported certificates without uploaded chain or with chain which not lead to root certificate |
Challenge
Domain validation challenge.
Field |
Description |
domain |
string Domain of the challenge. |
type |
enum ChallengeType Type of the challenge.
|
created_at |
Time when the challenge is created. |
updated_at |
Time when the challenge is updated. |
status |
enum Status Status of the challenge.
|
message |
string Description of the challenge. |
error |
string Error of the challenge. |
dns_challenge |
DNS-record. Includes only one of the fields Data of the challenge. |
http_challenge |
HTTP-file. Includes only one of the fields Data of the challenge. |
DnsRecord
Field |
Description |
name |
string Name of the DNS record. |
type |
string Type of the DNS-record. |
value |
string Value of the DNS-record. |
HttpFile
Field |
Description |
url |
string Location of the HTTP file. |
content |
string Content of the HTTP file. |