@maxim_mazurok/gapi.client.certificatemanager-v1 0.1.20251027 → 0.1.20251204
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 +15 -3
- 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: 20251204
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -58,6 +58,8 @@ declare namespace gapi.client {
|
|
|
58
58
|
labels?: {[P in string]: string};
|
|
59
59
|
/** If set, contains configuration and state of a managed certificate. */
|
|
60
60
|
managed?: ManagedCertificate;
|
|
61
|
+
/** If set, contains configuration and state of a managed identity certificate. */
|
|
62
|
+
managedIdentity?: ManagedIdentityCertificate;
|
|
61
63
|
/** Identifier. A user-defined name of the certificate. Certificate names must be unique globally and match pattern `projects/*/locations/*/certificates/*`. */
|
|
62
64
|
name?: string;
|
|
63
65
|
/** Output only. The PEM-encoded certificate chain. */
|
|
@@ -247,7 +249,7 @@ declare namespace gapi.client {
|
|
|
247
249
|
nextPageToken?: string;
|
|
248
250
|
/** A list of operations that matches the specified filter in the request. */
|
|
249
251
|
operations?: Operation[];
|
|
250
|
-
/** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections
|
|
252
|
+
/** Unordered list. Unreachable resources. Populated when the request sets `ListOperationsRequest.return_partial_success` and reads across collections. For example, when attempting to list all resources across all supported locations. */
|
|
251
253
|
unreachable?: string[];
|
|
252
254
|
}
|
|
253
255
|
interface ListTrustConfigsResponse {
|
|
@@ -284,6 +286,14 @@ declare namespace gapi.client {
|
|
|
284
286
|
/** Output only. State of the managed certificate resource. */
|
|
285
287
|
state?: string;
|
|
286
288
|
}
|
|
289
|
+
interface ManagedIdentityCertificate {
|
|
290
|
+
/** Required. Immutable. SPIFFE ID of the Managed Identity used for this certificate. */
|
|
291
|
+
identity?: string;
|
|
292
|
+
/** Output only. Information about issues with provisioning a managed certificate. */
|
|
293
|
+
provisioningIssue?: ProvisioningIssue;
|
|
294
|
+
/** Output only. State of the managed certificate resource. */
|
|
295
|
+
state?: string;
|
|
296
|
+
}
|
|
287
297
|
interface Operation {
|
|
288
298
|
/** If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available. */
|
|
289
299
|
done?: boolean;
|
|
@@ -357,6 +367,8 @@ declare namespace gapi.client {
|
|
|
357
367
|
labels?: {[P in string]: string};
|
|
358
368
|
/** Identifier. A user-defined name of the trust config. TrustConfig names must be unique globally and match pattern `projects/*/locations/*/trustConfigs/*`. */
|
|
359
369
|
name?: string;
|
|
370
|
+
/** Optional. Defines a mapping from a trust domain to a TrustStore. This is used for SPIFFE certificate validation. */
|
|
371
|
+
spiffeTrustStores?: {[P in string]: TrustStore};
|
|
360
372
|
/** Optional. Set of trust stores to perform validation against. This field is supported when TrustConfig is configured with Load Balancers, currently not supported for SPIFFE certificate validation. Only one TrustStore specified is currently allowed. */
|
|
361
373
|
trustStores?: TrustStore[];
|
|
362
374
|
/** Output only. The last update timestamp of a TrustConfig. */
|
|
@@ -1589,7 +1601,7 @@ declare namespace gapi.client {
|
|
|
1589
1601
|
prettyPrint?: boolean;
|
|
1590
1602
|
/** Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters. */
|
|
1591
1603
|
quotaUser?: string;
|
|
1592
|
-
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the
|
|
1604
|
+
/** When set to `true`, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field. This can only be `true` when reading across collections. For example, when `parent` is set to `"projects/example/locations/-"`. This field is not supported by default and will result in an `UNIMPLEMENTED` error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
1593
1605
|
returnPartialSuccess?: boolean;
|
|
1594
1606
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
1595
1607
|
upload_protocol?: string;
|