@maxim_mazurok/gapi.client.dataproc-v1 0.0.20250428 → 0.0.20250513
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 +15 -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://dataproc.googleapis.com/$discovery/rest?version=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20250513
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1316,6 +1316,10 @@ declare namespace gapi.client {
|
|
|
1316
1316
|
removeTime?: string;
|
|
1317
1317
|
totalCores?: number;
|
|
1318
1318
|
}
|
|
1319
|
+
interface PropertiesInfo {
|
|
1320
|
+
/** Output only. Properties set by autotuning engine. */
|
|
1321
|
+
autotuningProperties?: {[P in string]: ValueInfo};
|
|
1322
|
+
}
|
|
1319
1323
|
interface ProvisioningModelMix {
|
|
1320
1324
|
/** Optional. The base capacity that will always use Standard VMs to avoid risk of more preemption than the minimum capacity you need. Dataproc will create only standard VMs until it reaches standard_capacity_base, then it will start using standard_capacity_percent_above_base to mix Spot with Standard VMs. eg. If 15 instances are requested and standard_capacity_base is 5, Dataproc will create 5 standard VMs and then start mixing spot and standard VMs for remaining 10 instances. */
|
|
1321
1325
|
standardCapacityBase?: number;
|
|
@@ -1506,6 +1510,8 @@ declare namespace gapi.client {
|
|
|
1506
1510
|
endpoints?: {[P in string]: string};
|
|
1507
1511
|
/** Output only. A URI pointing to the location of the stdout and stderr of the workload. */
|
|
1508
1512
|
outputUri?: string;
|
|
1513
|
+
/** Optional. Properties of the workload organized by origin. */
|
|
1514
|
+
propertiesInfo?: PropertiesInfo;
|
|
1509
1515
|
}
|
|
1510
1516
|
interface SearchSessionSparkApplicationExecutorsResponse {
|
|
1511
1517
|
/** This token is included in the response if there are more results to fetch. To fetch additional results, provide this value as the page_token in a subsequent SearchSessionSparkApplicationExecutorsRequest. */
|
|
@@ -2345,6 +2351,14 @@ declare namespace gapi.client {
|
|
|
2345
2351
|
/** Optional. The timestamp of the usage snapshot. */
|
|
2346
2352
|
snapshotTime?: string;
|
|
2347
2353
|
}
|
|
2354
|
+
interface ValueInfo {
|
|
2355
|
+
/** Annotation, comment or explanation why the property was set. */
|
|
2356
|
+
annotation?: string;
|
|
2357
|
+
/** Optional. Value which was replaced by the corresponding component. */
|
|
2358
|
+
overriddenValue?: string;
|
|
2359
|
+
/** Property value. */
|
|
2360
|
+
value?: string;
|
|
2361
|
+
}
|
|
2348
2362
|
interface ValueValidation {
|
|
2349
2363
|
/** Required. List of allowed values for the parameter. */
|
|
2350
2364
|
values?: string[];
|