@maxim_mazurok/gapi.client.dataproc-v1 0.0.20240607 → 0.0.20240617
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 +6 -2
- 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://dataproc.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240617
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -313,6 +313,10 @@ declare namespace gapi.client {
|
|
|
313
313
|
outputUri?: string;
|
|
314
314
|
}
|
|
315
315
|
interface DiskConfig {
|
|
316
|
+
/** Optional. Indicates how many IOPS to provision for the disk. This sets the number of I/O operations per second that the disk can handle. Note: This field is only supported if boot_disk_type is hyperdisk-balanced. */
|
|
317
|
+
bootDiskProvisionedIops?: string;
|
|
318
|
+
/** Optional. Indicates how much throughput to provision for the disk. This sets the number of throughput mb per second that the disk can handle. Values must be greater than or equal to 1. Note: This field is only supported if boot_disk_type is hyperdisk-balanced. */
|
|
319
|
+
bootDiskProvisionedThroughput?: string;
|
|
316
320
|
/** Optional. Size in GB of the boot disk (default is 500GB). */
|
|
317
321
|
bootDiskSizeGb?: number;
|
|
318
322
|
/** Optional. Type of the boot disk (default is "pd-standard"). Valid values: "pd-balanced" (Persistent Disk Balanced Solid State Drive), "pd-ssd" (Persistent Disk Solid State Drive), or "pd-standard" (Persistent Disk Hard Disk Drive). See Disk types (https://cloud.google.com/compute/docs/disks#disk-types). */
|
|
@@ -414,7 +418,7 @@ declare namespace gapi.client {
|
|
|
414
418
|
shieldedInstanceConfig?: ShieldedInstanceConfig;
|
|
415
419
|
/** Optional. The Compute Engine subnetwork to be used for machine communications. Cannot be specified with network_uri.A full URL, partial URI, or short name are valid. Examples: https://www.googleapis.com/compute/v1/projects/[project_id]/regions/[region]/subnetworks/sub0 projects/[project_id]/regions/[region]/subnetworks/sub0 sub0 */
|
|
416
420
|
subnetworkUri?: string;
|
|
417
|
-
/** The Compute Engine tags to add to all instances (see Tagging instances (https://cloud.google.com/
|
|
421
|
+
/** The Compute Engine network tags to add to all instances (see Tagging instances (https://cloud.google.com/vpc/docs/add-remove-network-tags)). */
|
|
418
422
|
tags?: string[];
|
|
419
423
|
/** Optional. The Compute Engine zone where the Dataproc cluster will be located. If omitted, the service will pick a zone in the cluster's Compute Engine region. On a get request, zone will always be present.A full URL, partial URI, or short name are valid. Examples: https://www.googleapis.com/compute/v1/projects/[project_id]/zones/[zone] projects/[project_id]/zones/[zone] [zone] */
|
|
420
424
|
zoneUri?: string;
|