@maxim_mazurok/gapi.client.vmwareengine-v1 0.2.20260518 → 0.2.20260608
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 +9 -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://vmwareengine.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260608
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -217,6 +217,12 @@ declare namespace gapi.client {
|
|
|
217
217
|
updateTime?: string;
|
|
218
218
|
}
|
|
219
219
|
interface Empty {}
|
|
220
|
+
interface EncryptionConfig {
|
|
221
|
+
/** Optional. The resource name of the Cloud KMS key to be used for CMEK encryption. The format of this field is `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`. The key must be in the same region as the private cloud. This key is used for wrapping the key-encrypting key of vSAN clusters. This field must be provided when `type` is `CMEK` or `LEGACY_CMEK`, and must not be set when `type` is `OTHER`. */
|
|
222
|
+
cryptoKeyName?: string;
|
|
223
|
+
/** Required. The encryption type of the private cloud. */
|
|
224
|
+
type?: 'TYPE_UNSPECIFIED' | 'CMEK' | 'LEGACY_CMEK' | 'OTHER';
|
|
225
|
+
}
|
|
220
226
|
interface Expr {
|
|
221
227
|
/** Optional. Description of the expression. This is a longer text which describes the expression, e.g. when hovered over it in a UI. */
|
|
222
228
|
description?: string;
|
|
@@ -820,6 +826,8 @@ declare namespace gapi.client {
|
|
|
820
826
|
deleteTime?: string;
|
|
821
827
|
/** User-provided description for this private cloud. */
|
|
822
828
|
description?: string;
|
|
829
|
+
/** Optional. Encryption configuration for the private cloud. If this field is left unspecified, Google default encryption is used. */
|
|
830
|
+
encryptionConfig?: EncryptionConfig;
|
|
823
831
|
/** Output only. Time when the resource will be irreversibly deleted. */
|
|
824
832
|
expireTime?: string;
|
|
825
833
|
/** Output only. HCX appliance. */
|