@maxim_mazurok/gapi.client.netapp-v1 0.1.20260106 → 0.1.20260111
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 +79 -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: 20260111
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -149,9 +149,9 @@ declare namespace gapi.client {
|
|
|
149
149
|
interface BackupVault {
|
|
150
150
|
/** Optional. Region where the backups are stored. Format: `projects/{project_id}/locations/{location}` */
|
|
151
151
|
backupRegion?: string;
|
|
152
|
-
/** Optional. Backup retention policy defining the
|
|
152
|
+
/** Optional. Backup retention policy defining the retention 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} */
|
|
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
155
|
backupsCryptoKeyVersion?: string;
|
|
156
156
|
/** Optional. Type of backup vault to be created. Default is IN_REGION. */
|
|
157
157
|
backupVaultType?: string;
|
|
@@ -163,7 +163,7 @@ declare namespace gapi.client {
|
|
|
163
163
|
destinationBackupVault?: string;
|
|
164
164
|
/** Output only. Field indicating encryption state of CMEK backups. */
|
|
165
165
|
encryptionState?: string;
|
|
166
|
-
/** Optional. Specifies the KMS
|
|
166
|
+
/** Optional. Specifies the Key Management System (KMS) configuration to be used for backup encryption. Format: `projects/{project}/locations/{location}/kmsConfigs/{kms_config}` */
|
|
167
167
|
kmsConfig?: string;
|
|
168
168
|
/** Resource labels to represent user provided metadata. */
|
|
169
169
|
labels?: {[P in string]: string};
|
|
@@ -181,7 +181,7 @@ declare namespace gapi.client {
|
|
|
181
181
|
hostGroups?: string[];
|
|
182
182
|
/** Output only. Device identifier of the block volume. This represents `lun_serial_number` for iSCSI volumes. */
|
|
183
183
|
identifier?: string;
|
|
184
|
-
/** Optional. User-defined name for the block device, unique within the volume. In case no user input is provided, name will be
|
|
184
|
+
/** Optional. User-defined name for the block device, unique within the volume. In case no user input is provided, name will be auto-generated 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. */
|
|
185
185
|
name?: string;
|
|
186
186
|
/** Required. Immutable. The OS type of the volume. This field can't be changed after the block device is created. */
|
|
187
187
|
osType?: string;
|
|
@@ -227,7 +227,7 @@ declare namespace gapi.client {
|
|
|
227
227
|
excludePathList?: string[];
|
|
228
228
|
/** Optional. List of directory-paths to be pre-populated for the FlexCache volume. */
|
|
229
229
|
pathList?: string[];
|
|
230
|
-
/** Optional. Flag indicating whether the directories listed with the
|
|
230
|
+
/** Optional. Flag indicating whether the directories listed with the `path_list` need to be recursively pre-populated. */
|
|
231
231
|
recursion?: boolean;
|
|
232
232
|
}
|
|
233
233
|
interface CancelOperationRequest {}
|
|
@@ -262,6 +262,16 @@ declare namespace gapi.client {
|
|
|
262
262
|
/** Required. Name of the user's local source volume to be peered with the destination volume. */
|
|
263
263
|
peerVolumeName?: string;
|
|
264
264
|
}
|
|
265
|
+
interface EstablishVolumePeeringRequest {
|
|
266
|
+
/** Required. Name of the user's local source cluster to be peered with the destination cluster. */
|
|
267
|
+
peerClusterName?: string;
|
|
268
|
+
/** Optional. List of IPv4 ip addresses to be used for peering. */
|
|
269
|
+
peerIpAddresses?: string[];
|
|
270
|
+
/** Required. Name of the user's local source vserver svm to be peered with the destination vserver svm. */
|
|
271
|
+
peerSvmName?: string;
|
|
272
|
+
/** Required. Name of the user's local source volume to be peered with the destination volume. */
|
|
273
|
+
peerVolumeName?: string;
|
|
274
|
+
}
|
|
265
275
|
interface ExportPolicy {
|
|
266
276
|
/** Required. List of export policy rules */
|
|
267
277
|
rules?: SimpleExportPolicyRule[];
|
|
@@ -334,7 +344,7 @@ declare namespace gapi.client {
|
|
|
334
344
|
interface KmsConfig {
|
|
335
345
|
/** Output only. Create time of the KmsConfig. */
|
|
336
346
|
createTime?: string;
|
|
337
|
-
/** Required. Customer
|
|
347
|
+
/** Required. Customer-managed crypto key resource full name. Format: `projects/{project}/locations/{location}/keyRings/{key_ring}/cryptoKeys/{crypto_key}` */
|
|
338
348
|
cryptoKeyName?: string;
|
|
339
349
|
/** Description of the KmsConfig. */
|
|
340
350
|
description?: string;
|
|
@@ -342,7 +352,7 @@ declare namespace gapi.client {
|
|
|
342
352
|
instructions?: string;
|
|
343
353
|
/** Labels as key value pairs */
|
|
344
354
|
labels?: {[P in string]: string};
|
|
345
|
-
/** Identifier. Name of the KmsConfig. */
|
|
355
|
+
/** Identifier. Name of the KmsConfig. Format: `projects/{project}/locations/{location}/kmsConfigs/{kms_config}` */
|
|
346
356
|
name?: string;
|
|
347
357
|
/** Output only. The Service account which will have access to the customer provided encryption key. */
|
|
348
358
|
serviceAccount?: string;
|
|
@@ -608,7 +618,7 @@ declare namespace gapi.client {
|
|
|
608
618
|
accessType?: string;
|
|
609
619
|
/** Comma separated list of allowed clients IP addresses */
|
|
610
620
|
allowedClients?: string;
|
|
611
|
-
/** Optional. An integer representing the anonymous user ID. Range is 0 to 4294967295
|
|
621
|
+
/** Optional. An integer representing the anonymous user ID. Range is 0 to `4294967295`. Required when `squash_mode` is `ROOT_SQUASH` or `ALL_SQUASH`. */
|
|
612
622
|
anonUid?: string;
|
|
613
623
|
/** Whether Unix root access will be granted. */
|
|
614
624
|
hasRootAccess?: string;
|
|
@@ -2178,7 +2188,7 @@ declare namespace gapi.client {
|
|
|
2178
2188
|
fields?: string;
|
|
2179
2189
|
/** 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. */
|
|
2180
2190
|
key?: string;
|
|
2181
|
-
/** Identifier. Name of the KmsConfig. */
|
|
2191
|
+
/** Identifier. Name of the KmsConfig. Format: `projects/{project}/locations/{location}/kmsConfigs/{kms_config}` */
|
|
2182
2192
|
name: string;
|
|
2183
2193
|
/** OAuth 2.0 token for the current user. */
|
|
2184
2194
|
oauth_token?: string;
|
|
@@ -2209,7 +2219,7 @@ declare namespace gapi.client {
|
|
|
2209
2219
|
fields?: string;
|
|
2210
2220
|
/** 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. */
|
|
2211
2221
|
key?: string;
|
|
2212
|
-
/** Identifier. Name of the KmsConfig. */
|
|
2222
|
+
/** Identifier. Name of the KmsConfig. Format: `projects/{project}/locations/{location}/kmsConfigs/{kms_config}` */
|
|
2213
2223
|
name: string;
|
|
2214
2224
|
/** OAuth 2.0 token for the current user. */
|
|
2215
2225
|
oauth_token?: string;
|
|
@@ -3792,6 +3802,64 @@ declare namespace gapi.client {
|
|
|
3792
3802
|
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3793
3803
|
uploadType?: string;
|
|
3794
3804
|
}): Request<Operation>;
|
|
3805
|
+
/** Establish volume peering. This is used to establish cluster and svm peerings between the GCNV and OnPrem clusters. */
|
|
3806
|
+
establishPeering(request: {
|
|
3807
|
+
/** V1 error format. */
|
|
3808
|
+
'$.xgafv'?: string;
|
|
3809
|
+
/** OAuth access token. */
|
|
3810
|
+
access_token?: string;
|
|
3811
|
+
/** Data format for response. */
|
|
3812
|
+
alt?: string;
|
|
3813
|
+
/** JSONP */
|
|
3814
|
+
callback?: string;
|
|
3815
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3816
|
+
fields?: string;
|
|
3817
|
+
/** 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. */
|
|
3818
|
+
key?: string;
|
|
3819
|
+
/** Required. The volume resource name, in the format `projects/{project_id}/locations/{location}/volumes/{volume_id}` */
|
|
3820
|
+
name: string;
|
|
3821
|
+
/** OAuth 2.0 token for the current user. */
|
|
3822
|
+
oauth_token?: string;
|
|
3823
|
+
/** Returns response with indentations and line breaks. */
|
|
3824
|
+
prettyPrint?: boolean;
|
|
3825
|
+
/** 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. */
|
|
3826
|
+
quotaUser?: string;
|
|
3827
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3828
|
+
upload_protocol?: string;
|
|
3829
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3830
|
+
uploadType?: string;
|
|
3831
|
+
/** Request body */
|
|
3832
|
+
resource: EstablishVolumePeeringRequest;
|
|
3833
|
+
}): Request<Operation>;
|
|
3834
|
+
establishPeering(
|
|
3835
|
+
request: {
|
|
3836
|
+
/** V1 error format. */
|
|
3837
|
+
'$.xgafv'?: string;
|
|
3838
|
+
/** OAuth access token. */
|
|
3839
|
+
access_token?: string;
|
|
3840
|
+
/** Data format for response. */
|
|
3841
|
+
alt?: string;
|
|
3842
|
+
/** JSONP */
|
|
3843
|
+
callback?: string;
|
|
3844
|
+
/** Selector specifying which fields to include in a partial response. */
|
|
3845
|
+
fields?: string;
|
|
3846
|
+
/** 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. */
|
|
3847
|
+
key?: string;
|
|
3848
|
+
/** Required. The volume resource name, in the format `projects/{project_id}/locations/{location}/volumes/{volume_id}` */
|
|
3849
|
+
name: string;
|
|
3850
|
+
/** OAuth 2.0 token for the current user. */
|
|
3851
|
+
oauth_token?: string;
|
|
3852
|
+
/** Returns response with indentations and line breaks. */
|
|
3853
|
+
prettyPrint?: boolean;
|
|
3854
|
+
/** 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. */
|
|
3855
|
+
quotaUser?: string;
|
|
3856
|
+
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3857
|
+
upload_protocol?: string;
|
|
3858
|
+
/** Legacy upload protocol for media (e.g. "media", "multipart"). */
|
|
3859
|
+
uploadType?: string;
|
|
3860
|
+
},
|
|
3861
|
+
body: EstablishVolumePeeringRequest,
|
|
3862
|
+
): Request<Operation>;
|
|
3795
3863
|
/** Gets details of a single Volume. */
|
|
3796
3864
|
get(request?: {
|
|
3797
3865
|
/** V1 error format. */
|