Skip to content

Commit 1601667

Browse files
yoshi-automationsofisl
authored andcommitted
feat(privateca): update the API
#### privateca:v1 The following keys were added: - schemas.CertificateDescription.properties.tbsCertificateDigest.description - schemas.CertificateDescription.properties.tbsCertificateDigest.type
1 parent 80ae519 commit 1601667

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

discovery/privateca-v1.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1605,7 +1605,7 @@
16051605
}
16061606
}
16071607
},
1608-
"revision": "20240619",
1608+
"revision": "20240819",
16091609
"rootUrl": "https://privateca.googleapis.com/",
16101610
"schemas": {
16111611
"AccessUrls": {
@@ -2113,6 +2113,10 @@
21132113
"$ref": "KeyId",
21142114
"description": "Provides a means of identifiying certificates that contain a particular public key, per https://tools.ietf.org/html/rfc5280#section-4.2.1.2."
21152115
},
2116+
"tbsCertificateDigest": {
2117+
"description": "The hash of the pre-signed certificate, which will be signed by the CA. Corresponds to the TBS Certificate in https://tools.ietf.org/html/rfc5280#section-4.1.2. The field will always be populated.",
2118+
"type": "string"
2119+
},
21162120
"x509Description": {
21172121
"$ref": "X509Parameters",
21182122
"description": "Describes some of the technical X.509 fields in a certificate."

src/apis/privateca/v1.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -462,6 +462,10 @@ export namespace privateca_v1 {
462462
* Provides a means of identifiying certificates that contain a particular public key, per https://tools.ietf.org/html/rfc5280#section-4.2.1.2.
463463
*/
464464
subjectKeyId?: Schema$KeyId;
465+
/**
466+
* The hash of the pre-signed certificate, which will be signed by the CA. Corresponds to the TBS Certificate in https://tools.ietf.org/html/rfc5280#section-4.1.2. The field will always be populated.
467+
*/
468+
tbsCertificateDigest?: string | null;
465469
/**
466470
* Describes some of the technical X.509 fields in a certificate.
467471
*/

0 commit comments

Comments
 (0)