@maxim_mazurok/gapi.client.netapp-v1beta1 0.1.20251116 → 0.1.20260106
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 +33 -11
- 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://netapp.googleapis.com/$discovery/rest?version=v1beta1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20260106
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -151,6 +151,8 @@ declare namespace gapi.client {
|
|
|
151
151
|
backupRegion?: string;
|
|
152
152
|
/** Optional. Backup retention policy defining the retenton of backups. */
|
|
153
153
|
backupRetentionPolicy?: BackupRetentionPolicy;
|
|
154
|
+
/** Output only. The crypto key version used to encrypt the backup vault. Format: projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}/cryptoKeyVersions/{crypto_key_version} */
|
|
155
|
+
backupsCryptoKeyVersion?: string;
|
|
154
156
|
/** Optional. Type of backup vault to be created. Default is IN_REGION. */
|
|
155
157
|
backupVaultType?: string;
|
|
156
158
|
/** Output only. Create time of the backup vault. */
|
|
@@ -159,6 +161,10 @@ declare namespace gapi.client {
|
|
|
159
161
|
description?: string;
|
|
160
162
|
/** Output only. Name of the Backup vault created in backup region. Format: `projects/{project_id}/locations/{location}/backupVaults/{backup_vault_id}` */
|
|
161
163
|
destinationBackupVault?: string;
|
|
164
|
+
/** Output only. Field indicating encryption state of CMEK backups. */
|
|
165
|
+
encryptionState?: string;
|
|
166
|
+
/** Optional. Specifies the KMS config to be used for backup encryption. Format: projects/{project}/locations/{location}/kmsConfigs/{kms_config} */
|
|
167
|
+
kmsConfig?: string;
|
|
162
168
|
/** Resource labels to represent user provided metadata. */
|
|
163
169
|
labels?: {[P in string]: string};
|
|
164
170
|
/** Identifier. The resource name of the backup vault. Format: `projects/{project_id}/locations/{location}/backupVaults/{backup_vault_id}`. */
|
|
@@ -173,18 +179,24 @@ declare namespace gapi.client {
|
|
|
173
179
|
interface BlockDevice {
|
|
174
180
|
/** Optional. A list of host groups that identify hosts that can mount the block volume. Format: `projects/{project_id}/locations/{location}/hostGroups/{host_group_id}` This field can be updated after the block device is created. */
|
|
175
181
|
hostGroups?: string[];
|
|
176
|
-
/** Output only. Device identifier of the
|
|
182
|
+
/** Output only. Device identifier of the block volume. This represents `lun_serial_number` for iSCSI volumes. */
|
|
177
183
|
identifier?: string;
|
|
178
|
-
/** Optional. User-defined name for the block device, unique within the
|
|
184
|
+
/** Optional. User-defined name for the block device, unique within the volume. In case no user input is provided, name will be autogenerated in the backend. The name must meet the following requirements: * Be between 1 and 255 characters long. * Contain only uppercase or lowercase letters (A-Z, a-z), numbers (0-9), and the following special characters: "-", "_", "}", "{", ".". * Spaces are not allowed. */
|
|
179
185
|
name?: string;
|
|
180
186
|
/** Required. Immutable. The OS type of the volume. This field can't be changed after the block device is created. */
|
|
181
187
|
osType?: string;
|
|
182
|
-
/** Optional. The size of the block device in GiB. Any value provided
|
|
188
|
+
/** Optional. The size of the block device in GiB. Any value provided for the `size_gib` field during volume creation is ignored. The block device's size is system-managed and will be set to match the parent Volume's `capacity_gib`. */
|
|
183
189
|
sizeGib?: string;
|
|
184
190
|
}
|
|
185
191
|
interface CacheConfig {
|
|
192
|
+
/** Optional. Pre-populate cache volume with data from the origin volume. */
|
|
193
|
+
cachePrePopulate?: CachePrePopulate;
|
|
194
|
+
/** Output only. State of the prepopulation job indicating how the prepopulation is progressing. */
|
|
195
|
+
cachePrePopulateState?: string;
|
|
186
196
|
/** Optional. Flag indicating whether a CIFS change notification is enabled for the FlexCache volume. */
|
|
187
197
|
cifsChangeNotifyEnabled?: boolean;
|
|
198
|
+
/** Optional. Flag indicating whether writeback is enabled for the FlexCache volume. */
|
|
199
|
+
writebackEnabled?: boolean;
|
|
188
200
|
}
|
|
189
201
|
interface CacheParameters {
|
|
190
202
|
/** Optional. Configuration of the cache volume. */
|
|
@@ -193,7 +205,7 @@ declare namespace gapi.client {
|
|
|
193
205
|
cacheState?: string;
|
|
194
206
|
/** Output only. Copy-paste-able commands to be used on user's ONTAP to accept peering requests. */
|
|
195
207
|
command?: string;
|
|
196
|
-
/** Optional.
|
|
208
|
+
/** Optional. Indicates whether the cache volume has global file lock enabled. */
|
|
197
209
|
enableGlobalFileLock?: boolean;
|
|
198
210
|
/** Output only. Temporary passphrase generated to accept cluster peering command. */
|
|
199
211
|
passphrase?: string;
|
|
@@ -210,6 +222,14 @@ declare namespace gapi.client {
|
|
|
210
222
|
/** Output only. Detailed description of the current cache state. */
|
|
211
223
|
stateDetails?: string;
|
|
212
224
|
}
|
|
225
|
+
interface CachePrePopulate {
|
|
226
|
+
/** Optional. List of directory-paths to be excluded for pre-population for the FlexCache volume. */
|
|
227
|
+
excludePathList?: string[];
|
|
228
|
+
/** Optional. List of directory-paths to be pre-populated for the FlexCache volume. */
|
|
229
|
+
pathList?: string[];
|
|
230
|
+
/** Optional. Flag indicating whether the directories listed with the pathList need to be recursively pre-populated. */
|
|
231
|
+
recursion?: boolean;
|
|
232
|
+
}
|
|
213
233
|
interface CancelOperationRequest {}
|
|
214
234
|
interface DailySchedule {
|
|
215
235
|
/** Set the hour to start the snapshot (0-23), defaults to midnight (0). */
|
|
@@ -324,7 +344,7 @@ declare namespace gapi.client {
|
|
|
324
344
|
interface KmsConfig {
|
|
325
345
|
/** Output only. Create time of the KmsConfig. */
|
|
326
346
|
createTime?: string;
|
|
327
|
-
/** Required. Customer managed crypto key resource full name. Format: projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}
|
|
347
|
+
/** Required. Customer managed crypto key resource full name. Format: `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`. */
|
|
328
348
|
cryptoKeyName?: string;
|
|
329
349
|
/** Description of the KmsConfig. */
|
|
330
350
|
description?: string;
|
|
@@ -456,6 +476,8 @@ declare namespace gapi.client {
|
|
|
456
476
|
name?: string;
|
|
457
477
|
}
|
|
458
478
|
interface LocationMetadata {
|
|
479
|
+
/** Output only. Indicates if the location has ONTAP Proxy support. */
|
|
480
|
+
hasOntapProxy?: boolean;
|
|
459
481
|
/** Output only. Indicates if the location has VCP support. */
|
|
460
482
|
hasVcp?: boolean;
|
|
461
483
|
/** Output only. Supported flex performance in a location. */
|
|
@@ -574,9 +596,9 @@ declare namespace gapi.client {
|
|
|
574
596
|
interface RestoreBackupFilesRequest {
|
|
575
597
|
/** Required. The backup resource name, in the format `projects/{project_id}/locations/{location}/backupVaults/{backup_vault_id}/backups/{backup_id}` */
|
|
576
598
|
backup?: string;
|
|
577
|
-
/** Required. List of files to be restored
|
|
599
|
+
/** Required. List of files to be restored, specified by their absolute path in the source volume. */
|
|
578
600
|
fileList?: string[];
|
|
579
|
-
/** Optional. Absolute directory path in the destination volume. */
|
|
601
|
+
/** Optional. Absolute directory path in the destination volume. This is required if the `file_list` is provided. */
|
|
580
602
|
restoreDestinationPath?: string;
|
|
581
603
|
}
|
|
582
604
|
interface RestoreParameters {
|
|
@@ -596,7 +618,7 @@ declare namespace gapi.client {
|
|
|
596
618
|
accessType?: string;
|
|
597
619
|
/** Comma separated list of allowed clients IP addresses */
|
|
598
620
|
allowedClients?: string;
|
|
599
|
-
/** Optional. An integer representing the anonymous user ID. Range is 0 to 4294967295. Required when squash_mode is ROOT_SQUASH or ALL_SQUASH
|
|
621
|
+
/** Optional. An integer representing the anonymous user ID. Range is 0 to 4294967295. Required when `squash_mode` is `ROOT_SQUASH` or `ALL_SQUASH`. */
|
|
600
622
|
anonUid?: string;
|
|
601
623
|
/** Whether Unix root access will be granted. */
|
|
602
624
|
hasRootAccess?: string;
|
|
@@ -716,7 +738,7 @@ declare namespace gapi.client {
|
|
|
716
738
|
totalIops?: string;
|
|
717
739
|
/** Optional. Custom Performance Total Throughput of the pool (in MiBps) */
|
|
718
740
|
totalThroughputMibps?: string;
|
|
719
|
-
/** Optional. Type of the storage pool. This field is used to control whether the pool supports FILE based volumes only or UNIFIED (both FILE and BLOCK) volumes. If not specified during creation, it defaults to FILE
|
|
741
|
+
/** Optional. Type of the storage pool. This field is used to control whether the pool supports `FILE` based volumes only or `UNIFIED` (both `FILE` and `BLOCK`) volumes or `UNIFIED_LARGE_CAPACITY` (both `FILE` and `BLOCK`) volumes with large capacity. If not specified during creation, it defaults to `FILE`. */
|
|
720
742
|
type?: string;
|
|
721
743
|
/** Output only. Allocated size of all volumes in GIB in the storage pool */
|
|
722
744
|
volumeCapacityGib?: string;
|
|
@@ -1844,7 +1866,7 @@ declare namespace gapi.client {
|
|
|
1844
1866
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1845
1867
|
uploadType?: string;
|
|
1846
1868
|
}): Request<HostGroup>;
|
|
1847
|
-
/** Returns a list of host groups in a location
|
|
1869
|
+
/** Returns a list of host groups in a `location`. Use `-` as location to list host groups across all locations. */
|
|
1848
1870
|
list(request?: {
|
|
1849
1871
|
/** V1 error format. */
|
|
1850
1872
|
'$.xgafv'?: string;
|