@maxim_mazurok/gapi.client.privateca-v1 0.0.20240131 → 0.0.20240221
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +7 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://privateca.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240221
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -158,9 +158,15 @@ declare namespace gapi.client {
|
|
|
158
158
|
publicKey?: PublicKey;
|
|
159
159
|
/** Required. Specifies some of the values in a certificate that are related to the subject. */
|
|
160
160
|
subjectConfig?: SubjectConfig;
|
|
161
|
+
/** Optional. When specified this provides a custom SKI to be used in the certificate. This should only be used to maintain a SKI of an existing CA originally created outside CAS, which was not generated using method (1) described in RFC 5280 section 4.2.1.2. */
|
|
162
|
+
subjectKeyId?: CertificateConfigKeyId;
|
|
161
163
|
/** Required. Describes how some of the technical X.509 fields in a certificate should be populated. */
|
|
162
164
|
x509Config?: X509Parameters;
|
|
163
165
|
}
|
|
166
|
+
interface CertificateConfigKeyId {
|
|
167
|
+
/** Optional. The value of this KeyId encoded in lowercase hexadecimal. This is most likely the 160 bit SHA-1 hash of the public key. */
|
|
168
|
+
keyId?: string;
|
|
169
|
+
}
|
|
164
170
|
interface CertificateDescription {
|
|
165
171
|
/** Describes lists of issuer CA certificate URLs that appear in the "Authority Information Access" extension in the certificate. */
|
|
166
172
|
aiaIssuingCertificateUrls?: string[];
|