@maxim_mazurok/gapi.client.netapp-v1 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=v1
|
|
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). */
|
|
@@ -314,7 +334,7 @@ declare namespace gapi.client {
|
|
|
314
334
|
interface KmsConfig {
|
|
315
335
|
/** Output only. Create time of the KmsConfig. */
|
|
316
336
|
createTime?: string;
|
|
317
|
-
/** Required. Customer managed crypto key resource full name. Format: projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}
|
|
337
|
+
/** Required. Customer managed crypto key resource full name. Format: `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}`. */
|
|
318
338
|
cryptoKeyName?: string;
|
|
319
339
|
/** Description of the KmsConfig. */
|
|
320
340
|
description?: string;
|
|
@@ -446,6 +466,8 @@ declare namespace gapi.client {
|
|
|
446
466
|
name?: string;
|
|
447
467
|
}
|
|
448
468
|
interface LocationMetadata {
|
|
469
|
+
/** Output only. Indicates if the location has ONTAP Proxy support. */
|
|
470
|
+
hasOntapProxy?: boolean;
|
|
449
471
|
/** Output only. Indicates if the location has VCP support. */
|
|
450
472
|
hasVcp?: boolean;
|
|
451
473
|
/** Output only. Supported flex performance in a location. */
|
|
@@ -564,9 +586,9 @@ declare namespace gapi.client {
|
|
|
564
586
|
interface RestoreBackupFilesRequest {
|
|
565
587
|
/** Required. The backup resource name, in the format `projects/{project_id}/locations/{location}/backupVaults/{backup_vault_id}/backups/{backup_id}` */
|
|
566
588
|
backup?: string;
|
|
567
|
-
/** Required. List of files to be restored
|
|
589
|
+
/** Required. List of files to be restored, specified by their absolute path in the source volume. */
|
|
568
590
|
fileList?: string[];
|
|
569
|
-
/** Optional. Absolute directory path in the destination volume. */
|
|
591
|
+
/** Optional. Absolute directory path in the destination volume. This is required if the `file_list` is provided. */
|
|
570
592
|
restoreDestinationPath?: string;
|
|
571
593
|
}
|
|
572
594
|
interface RestoreParameters {
|
|
@@ -586,7 +608,7 @@ declare namespace gapi.client {
|
|
|
586
608
|
accessType?: string;
|
|
587
609
|
/** Comma separated list of allowed clients IP addresses */
|
|
588
610
|
allowedClients?: string;
|
|
589
|
-
/** Optional. An integer representing the anonymous user ID. Range is 0 to 4294967295. Required when squash_mode is ROOT_SQUASH or ALL_SQUASH
|
|
611
|
+
/** Optional. An integer representing the anonymous user ID. Range is 0 to 4294967295. Required when `squash_mode` is `ROOT_SQUASH` or `ALL_SQUASH`. */
|
|
590
612
|
anonUid?: string;
|
|
591
613
|
/** Whether Unix root access will be granted. */
|
|
592
614
|
hasRootAccess?: string;
|
|
@@ -706,7 +728,7 @@ declare namespace gapi.client {
|
|
|
706
728
|
totalIops?: string;
|
|
707
729
|
/** Optional. Custom Performance Total Throughput of the pool (in MiBps) */
|
|
708
730
|
totalThroughputMibps?: string;
|
|
709
|
-
/** 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
|
|
731
|
+
/** 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`. */
|
|
710
732
|
type?: string;
|
|
711
733
|
/** Output only. Allocated size of all volumes in GIB in the storage pool */
|
|
712
734
|
volumeCapacityGib?: string;
|
|
@@ -1834,7 +1856,7 @@ declare namespace gapi.client {
|
|
|
1834
1856
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
1835
1857
|
uploadType?: string;
|
|
1836
1858
|
}): Request<HostGroup>;
|
|
1837
|
-
/** Returns a list of host groups in a location
|
|
1859
|
+
/** Returns a list of host groups in a `location`. Use `-` as location to list host groups across all locations. */
|
|
1838
1860
|
list(request?: {
|
|
1839
1861
|
/** V1 error format. */
|
|
1840
1862
|
'$.xgafv'?: string;
|