@maxim_mazurok/gapi.client.privateca-v1 0.0.20250120 → 0.0.20250219
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 +6 -4
- 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: 20250219
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -156,7 +156,7 @@ declare namespace gapi.client {
|
|
|
156
156
|
type?: string;
|
|
157
157
|
/** Output only. The time at which this CertificateAuthority was last updated. */
|
|
158
158
|
updateTime?: string;
|
|
159
|
-
/** Optional. User-defined URLs for
|
|
159
|
+
/** Optional. User-defined URLs for CA certificate and CRLs. The service does not publish content to these URLs. It is up to the user to mirror content to these URLs. */
|
|
160
160
|
userDefinedAccessUrls?: UserDefinedAccessUrls;
|
|
161
161
|
}
|
|
162
162
|
interface CertificateConfig {
|
|
@@ -315,6 +315,8 @@ declare namespace gapi.client {
|
|
|
315
315
|
allowedIssuanceModes?: IssuanceModes;
|
|
316
316
|
/** Optional. If any AllowedKeyType is specified, then the certificate request's public key must match one of the key types listed here. Otherwise, any key may be used. */
|
|
317
317
|
allowedKeyTypes?: AllowedKeyType[];
|
|
318
|
+
/** Optional. The duration to backdate all certificates issued from this CaPool. If not set, the certificates will be issued with a not_before_time of the issuance time (i.e. the current time). If set, the certificates will be issued with a not_before_time of the issuance time minus the backdate_duration. The not_after_time will be adjusted to preserve the requested lifetime. The backdate_duration must be less than or equal to 48 hours. */
|
|
319
|
+
backdateDuration?: string;
|
|
318
320
|
/** Optional. A set of X.509 values that will be applied to all certificates issued through this CaPool. If a certificate request includes conflicting values for the same properties, they will be overwritten by the values defined here. If a certificate request uses a CertificateTemplate that defines conflicting predefined_values for the same properties, the certificate issuance request will fail. */
|
|
319
321
|
baselineValues?: X509Parameters;
|
|
320
322
|
/** Optional. Describes constraints on identities that may appear in Certificates issued through this CaPool. If this is omitted, then this CaPool will not add restrictions on a certificate's identity. */
|
|
@@ -621,9 +623,9 @@ declare namespace gapi.client {
|
|
|
621
623
|
requestId?: string;
|
|
622
624
|
}
|
|
623
625
|
interface UserDefinedAccessUrls {
|
|
624
|
-
/** Optional. A list of URLs where the issuer CA certificate may be downloaded, which appears in the "Authority Information Access" extension in the certificate. */
|
|
626
|
+
/** Optional. A list of URLs where the issuer CA certificate may be downloaded, which appears in the "Authority Information Access" extension in the certificate. If specified, the default GCS URLs will be omitted. */
|
|
625
627
|
aiaIssuingCertificateUrls?: string[];
|
|
626
|
-
/** Optional. A list of URLs where to obtain CRL information, i.e. the DistributionPoint.fullName described by https://tools.ietf.org/html/rfc5280#section-4.2.1.13 */
|
|
628
|
+
/** Optional. A list of URLs where to obtain CRL information, i.e. the DistributionPoint.fullName described by https://tools.ietf.org/html/rfc5280#section-4.2.1.13. If specified, the default GCS URLs will be omitted. */
|
|
627
629
|
crlAccessUrls?: string[];
|
|
628
630
|
}
|
|
629
631
|
interface X509Extension {
|