Certificate Manager API, gRPC: CertificateService.RequestNew
Request a certificate in the specified folder.
gRPC request
rpc RequestNew (RequestNewCertificateRequest) returns (operation.Operation)
RequestNewCertificateRequest
{
"folderId": "string",
"name": "string",
"description": "string",
"labels": "string",
"domains": [
"string"
],
"challengeType": "ChallengeType",
"deletionProtection": "bool"
}
Field |
Description |
folderId |
string Required field. ID of the folder to create a certificate in. |
name |
string Name of the certificate. |
description |
string Description of the certificate. |
labels |
string Labels for the certificate as |
domains[] |
string Fully qualified domain names of the certificate. |
challengeType |
enum ChallengeType Type of the domain validation challenge.
|
deletionProtection |
bool Flag that protects deletion of the certificate |
operation.Operation
{
"id": "string",
"description": "string",
"createdAt": "google.protobuf.Timestamp",
"createdBy": "string",
"modifiedAt": "google.protobuf.Timestamp",
"done": "bool",
"metadata": {
"certificateId": "string"
},
// Includes only one of the fields `error`, `response`
"error": "google.rpc.Status",
"response": {
"id": "string",
"folderId": "string",
"createdAt": "google.protobuf.Timestamp",
"name": "string",
"description": "string",
"labels": "string",
"type": "CertificateType",
"domains": [
"string"
],
"status": "Status",
"issuer": "string",
"subject": "string",
"serial": "string",
"updatedAt": "google.protobuf.Timestamp",
"issuedAt": "google.protobuf.Timestamp",
"notAfter": "google.protobuf.Timestamp",
"notBefore": "google.protobuf.Timestamp",
"challenges": [
{
"domain": "string",
"type": "ChallengeType",
"createdAt": "google.protobuf.Timestamp",
"updatedAt": "google.protobuf.Timestamp",
"status": "Status",
"message": "string",
"error": "string",
// Includes only one of the fields `dnsChallenge`, `httpChallenge`
"dnsChallenge": {
"name": "string",
"type": "string",
"value": "string"
},
"httpChallenge": {
"url": "string",
"content": "string"
}
// end of the list of possible fields
}
],
"deletionProtection": "bool",
"incompleteChain": "bool"
}
// end of the list of possible fields
}
An Operation resource. For more information, see Operation.
Field |
Description |
id |
string ID of the operation. |
description |
string Description of the operation. 0-256 characters long. |
createdAt |
Creation timestamp. |
createdBy |
string ID of the user or service account who initiated the operation. |
modifiedAt |
The time when the Operation resource was last modified. |
done |
bool If the value is |
metadata |
Service-specific metadata associated with the operation. |
error |
The error result of the operation in case of failure or cancellation. Includes only one of the fields The operation result. |
response |
The normal response of the operation in case of success. Includes only one of the fields The operation result. |
RequestNewCertificateMetadata
Field |
Description |
certificateId |
string ID of the certificate that is being requested. |
Certificate
A certificate. For details about the concept, see documentation.
Field |
Description |
id |
string ID of the certificate. Generated at creation time. |
folderId |
string ID of the folder that the certificate belongs to. |
createdAt |
Creation timestamp. |
name |
string Name of the certificate. |
description |
string Description of the certificate. |
labels |
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. |
updatedAt |
Time when the certificate is updated. |
issuedAt |
Time when the certificate is issued. |
notAfter |
Time after which the certificate is not valid. |
notBefore |
Time before which the certificate is not valid. |
challenges[] |
Domains validation challenges of the certificate. Used only for managed certificates. |
deletionProtection |
bool Flag that protects deletion of the certificate |
incompleteChain |
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.
|
createdAt |
Time when the challenge is created. |
updatedAt |
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. |
dnsChallenge |
DNS-record. Includes only one of the fields Data of the challenge. |
httpChallenge |
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. |