@maxim_mazurok/gapi.client.netapp-v1 0.1.20250908 → 0.1.20250921
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 +97 -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://netapp.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250921
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -170,6 +170,34 @@ declare namespace gapi.client {
|
|
|
170
170
|
/** Output only. The backup vault state. */
|
|
171
171
|
state?: string;
|
|
172
172
|
}
|
|
173
|
+
interface CacheConfig {
|
|
174
|
+
/** Optional. Flag indicating whether a CIFS change notification is enabled for the FlexCache volume. */
|
|
175
|
+
cifsChangeNotifyEnabled?: boolean;
|
|
176
|
+
}
|
|
177
|
+
interface CacheParameters {
|
|
178
|
+
/** Optional. Configuration of the cache volume. */
|
|
179
|
+
cacheConfig?: CacheConfig;
|
|
180
|
+
/** Output only. State of the cache volume indicating the peering status. */
|
|
181
|
+
cacheState?: string;
|
|
182
|
+
/** Output only. Copy-paste-able commands to be used on user's ONTAP to accept peering requests. */
|
|
183
|
+
command?: string;
|
|
184
|
+
/** Optional. Field indicating whether cache volume as global file lock enabled. */
|
|
185
|
+
enableGlobalFileLock?: boolean;
|
|
186
|
+
/** Output only. Temporary passphrase generated to accept cluster peering command. */
|
|
187
|
+
passphrase?: string;
|
|
188
|
+
/** Required. Name of the origin volume's ONTAP cluster. */
|
|
189
|
+
peerClusterName?: string;
|
|
190
|
+
/** Optional. Expiration time for the peering command to be executed on user's ONTAP. */
|
|
191
|
+
peeringCommandExpiryTime?: string;
|
|
192
|
+
/** Required. List of IC LIF addresses of the origin volume's ONTAP cluster. */
|
|
193
|
+
peerIpAddresses?: string[];
|
|
194
|
+
/** Required. Name of the origin volume's SVM. */
|
|
195
|
+
peerSvmName?: string;
|
|
196
|
+
/** Required. Name of the origin volume for the cache volume. */
|
|
197
|
+
peerVolumeName?: string;
|
|
198
|
+
/** Output only. Detailed description of the current cache state. */
|
|
199
|
+
stateDetails?: string;
|
|
200
|
+
}
|
|
173
201
|
interface CancelOperationRequest {}
|
|
174
202
|
interface DailySchedule {
|
|
175
203
|
/** Set the hour to start the snapshot (0-23), defaults to midnight (0). */
|
|
@@ -493,6 +521,14 @@ declare namespace gapi.client {
|
|
|
493
521
|
/** Output only. Replication transfer statistics. */
|
|
494
522
|
transferStats?: TransferStats;
|
|
495
523
|
}
|
|
524
|
+
interface RestoreBackupFilesRequest {
|
|
525
|
+
/** Required. The backup resource name, in the format `projects/{project_id}/locations/{location}/backupVaults/{backup_vault_id}/backups/{backup_id}` */
|
|
526
|
+
backup?: string;
|
|
527
|
+
/** Required. List of files to be restored in the form of their absolute path as in source volume. */
|
|
528
|
+
fileList?: string[];
|
|
529
|
+
/** Optional. Absolute directory path in the destination volume. */
|
|
530
|
+
restoreDestinationPath?: string;
|
|
531
|
+
}
|
|
496
532
|
interface RestoreParameters {
|
|
497
533
|
/** Full name of the backup resource. Format: projects/{project}/locations/{location}/backupVaults/{backup_vault_id}/backups/{backup_id} */
|
|
498
534
|
sourceBackup?: string;
|
|
@@ -687,6 +723,8 @@ declare namespace gapi.client {
|
|
|
687
723
|
activeDirectory?: string;
|
|
688
724
|
/** BackupConfig of the volume. */
|
|
689
725
|
backupConfig?: BackupConfig;
|
|
726
|
+
/** Optional. Cache parameters for the volume. */
|
|
727
|
+
cacheParameters?: CacheParameters;
|
|
690
728
|
/** Required. Capacity in GIB of the volume */
|
|
691
729
|
capacityGib?: string;
|
|
692
730
|
/** Output only. Size of the volume cold tier data rounded down to the nearest GiB. */
|
|
@@ -3595,6 +3633,64 @@ declare namespace gapi.client {
|
|
|
3595
3633
|
},
|
|
3596
3634
|
body: Volume,
|
|
3597
3635
|
): Request<Operation>;
|
|
3636
|
+
/** Restore files from a backup to a volume. */
|
|
3637
|
+
restore(request: {
|
|
3638
|
+
/** V1 error format. */
|
|
3639
|
+
'$.xgafv'?: string;
|
|
3640
|
+
/** OAuth access token. */
|
|
3641
|
+
access_token?: string;
|
|
3642
|
+
/** Data format for response. */
|
|
3643
|
+
alt?: string;
|
|
3644
|
+
/** JSONP */
|
|
3645
|
+
callback?: string;
|
|
3646
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3647
|
+
fields?: string;
|
|
3648
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3649
|
+
key?: string;
|
|
3650
|
+
/** Required. The volume resource name, in the format `projects/{project_id}/locations/{location}/volumes/{volume_id}` */
|
|
3651
|
+
name: string;
|
|
3652
|
+
/** OAuth 2.0 token for the current user. */
|
|
3653
|
+
oauth_token?: string;
|
|
3654
|
+
/** Returns response with indentations and line breaks. */
|
|
3655
|
+
prettyPrint?: boolean;
|
|
3656
|
+
/** 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. */
|
|
3657
|
+
quotaUser?: string;
|
|
3658
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3659
|
+
upload_protocol?: string;
|
|
3660
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3661
|
+
uploadType?: string;
|
|
3662
|
+
/** Request body */
|
|
3663
|
+
resource: RestoreBackupFilesRequest;
|
|
3664
|
+
}): Request<Operation>;
|
|
3665
|
+
restore(
|
|
3666
|
+
request: {
|
|
3667
|
+
/** V1 error format. */
|
|
3668
|
+
'$.xgafv'?: string;
|
|
3669
|
+
/** OAuth access token. */
|
|
3670
|
+
access_token?: string;
|
|
3671
|
+
/** Data format for response. */
|
|
3672
|
+
alt?: string;
|
|
3673
|
+
/** JSONP */
|
|
3674
|
+
callback?: string;
|
|
3675
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3676
|
+
fields?: string;
|
|
3677
|
+
/** API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token. */
|
|
3678
|
+
key?: string;
|
|
3679
|
+
/** Required. The volume resource name, in the format `projects/{project_id}/locations/{location}/volumes/{volume_id}` */
|
|
3680
|
+
name: string;
|
|
3681
|
+
/** OAuth 2.0 token for the current user. */
|
|
3682
|
+
oauth_token?: string;
|
|
3683
|
+
/** Returns response with indentations and line breaks. */
|
|
3684
|
+
prettyPrint?: boolean;
|
|
3685
|
+
/** 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. */
|
|
3686
|
+
quotaUser?: string;
|
|
3687
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3688
|
+
upload_protocol?: string;
|
|
3689
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3690
|
+
uploadType?: string;
|
|
3691
|
+
},
|
|
3692
|
+
body: RestoreBackupFilesRequest,
|
|
3693
|
+
): Request<Operation>;
|
|
3598
3694
|
/** Revert an existing volume to a specified snapshot. Warning! This operation will permanently revert all changes made after the snapshot was created. */
|
|
3599
3695
|
revert(request: {
|
|
3600
3696
|
/** V1 error format. */
|