@maxim_mazurok/gapi.client.certificatemanager-v1 0.0.20240306 → 0.0.20240317
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://certificatemanager.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240317
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -28,6 +28,10 @@ declare namespace gapi.client {
|
|
|
28
28
|
): void;
|
|
29
29
|
|
|
30
30
|
namespace certificatemanager {
|
|
31
|
+
interface AllowlistedCertificate {
|
|
32
|
+
/** Required. PEM certificate that is allowlisted. The certificate can be up to 5k bytes, and must be a parseable X.509 certificate. */
|
|
33
|
+
pemCertificate?: string;
|
|
34
|
+
}
|
|
31
35
|
interface AuthorizationAttemptInfo {
|
|
32
36
|
/** Output only. Human readable explanation for reaching the state. Provided to help address the configuration issues. Not guaranteed to be stable. For programmatic access use FailureReason enum. */
|
|
33
37
|
details?: string;
|
|
@@ -309,6 +313,8 @@ declare namespace gapi.client {
|
|
|
309
313
|
pemCertificate?: string;
|
|
310
314
|
}
|
|
311
315
|
interface TrustConfig {
|
|
316
|
+
/** Optional. A certificate matching an allowlisted certificate is always considered valid as long as the certificate is parseable, proof of private key possession is established, and constraints on the certificate’s SAN field are met. */
|
|
317
|
+
allowlistedCertificates?: AllowlistedCertificate[];
|
|
312
318
|
/** Output only. The creation timestamp of a TrustConfig. */
|
|
313
319
|
createTime?: string;
|
|
314
320
|
/** One or more paragraphs of text description of a TrustConfig. */
|