@maxim_mazurok/gapi.client.kmsinventory-v1 0.0.20240609 → 0.0.20240616
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://kmsinventory.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240616
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -81,6 +81,8 @@ declare namespace gapi.client {
|
|
|
81
81
|
destroyScheduledDuration?: string;
|
|
82
82
|
/** Immutable. Whether this key may contain imported versions only. */
|
|
83
83
|
importOnly?: boolean;
|
|
84
|
+
/** Optional. The policy used for Key Access Justifications Policy Enforcement. If this field is present and this key is enrolled in Key Access Justifications Policy Enforcement, the policy will be evaluated in encrypt, decrypt, and sign operations, and the operation will fail if rejected by the policy. The policy is defined by specifying zero or more allowed justification codes. https://cloud.google.com/assured-workloads/key-access-justifications/docs/justification-codes By default, this field is absent, and all justification codes are allowed. */
|
|
85
|
+
keyAccessJustificationsPolicy?: GoogleCloudKmsV1KeyAccessJustificationsPolicy;
|
|
84
86
|
/** Labels with user-defined metadata. For more information, see [Labeling Keys](https://cloud.google.com/kms/docs/labeling-keys). */
|
|
85
87
|
labels?: {[P in string]: string};
|
|
86
88
|
/** Output only. The resource name for this CryptoKey in the format `projects/*/locations/*/keyRings/*/cryptoKeys/*`. */
|
|
@@ -142,6 +144,10 @@ declare namespace gapi.client {
|
|
|
142
144
|
/** The URI for an external resource that this CryptoKeyVersion represents. */
|
|
143
145
|
externalKeyUri?: string;
|
|
144
146
|
}
|
|
147
|
+
interface GoogleCloudKmsV1KeyAccessJustificationsPolicy {
|
|
148
|
+
/** The list of allowed reasons for access to a CryptoKey. Zero allowed access reasons means all encrypt, decrypt, and sign operations for the CryptoKey associated with this policy will fail. */
|
|
149
|
+
allowedAccessReasons?: string[];
|
|
150
|
+
}
|
|
145
151
|
interface GoogleCloudKmsV1KeyOperationAttestation {
|
|
146
152
|
/** Output only. The certificate chains needed to validate the attestation */
|
|
147
153
|
certChains?: GoogleCloudKmsV1KeyOperationAttestationCertificateChains;
|