@maxim_mazurok/gapi.client.certificatemanager-v1 0.0.20250122 → 0.0.20250203
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: 20250203
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -66,6 +66,8 @@ declare namespace gapi.client {
|
|
|
66
66
|
selfManaged?: SelfManagedCertificate;
|
|
67
67
|
/** Output only. The last update timestamp of a Certificate. */
|
|
68
68
|
updateTime?: string;
|
|
69
|
+
/** Output only. The list of resources that use this Certificate. */
|
|
70
|
+
usedBy?: UsedBy[];
|
|
69
71
|
}
|
|
70
72
|
interface CertificateAuthorityConfig {
|
|
71
73
|
/** Defines a CertificateAuthorityServiceConfig. */
|
|
@@ -336,6 +338,10 @@ declare namespace gapi.client {
|
|
|
336
338
|
/** Optional. List of Trust Anchors to be used while performing validation against a given TrustStore. */
|
|
337
339
|
trustAnchors?: TrustAnchor[];
|
|
338
340
|
}
|
|
341
|
+
interface UsedBy {
|
|
342
|
+
/** Output only. Full name of the resource https://google.aip.dev/122#full-resource-names, e.g. `//certificatemanager.googleapis.com/projects/*/locations/*/certificateMaps/*/certificateMapEntries/*` or `//compute.googleapis.com/projects/*/locations/*/targetHttpsProxies/*`. */
|
|
343
|
+
name?: string;
|
|
344
|
+
}
|
|
339
345
|
interface CertificateIssuanceConfigsResource {
|
|
340
346
|
/** Creates a new CertificateIssuanceConfig in a given project and location. */
|
|
341
347
|
create(request: {
|