@maxim_mazurok/gapi.client.dataproc-v1 0.0.20240514 → 0.0.20240605
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 +9 -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: 20240605
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -69,6 +69,10 @@ declare namespace gapi.client {
|
|
|
69
69
|
/** Required. Describes how the autoscaler will operate for primary workers. */
|
|
70
70
|
workerConfig?: InstanceGroupAutoscalingPolicyConfig;
|
|
71
71
|
}
|
|
72
|
+
interface AutotuningConfig {
|
|
73
|
+
/** Optional. Scenarios for which tunings are applied. */
|
|
74
|
+
scenarios?: string[];
|
|
75
|
+
}
|
|
72
76
|
interface AuxiliaryNodeGroup {
|
|
73
77
|
/** Required. Node group configuration. */
|
|
74
78
|
nodeGroup?: NodeGroup;
|
|
@@ -1068,6 +1072,10 @@ declare namespace gapi.client {
|
|
|
1068
1072
|
size?: number;
|
|
1069
1073
|
}
|
|
1070
1074
|
interface RuntimeConfig {
|
|
1075
|
+
/** Optional. Autotuning configuration of the workload. */
|
|
1076
|
+
autotuningConfig?: AutotuningConfig;
|
|
1077
|
+
/** Optional. Cohort identifier. Identifies families of the workloads having the same shape, e.g. daily ETL jobs. */
|
|
1078
|
+
cohort?: string;
|
|
1071
1079
|
/** Optional. Optional custom container image for the job runtime environment. If not specified, a default container image will be used. */
|
|
1072
1080
|
containerImage?: string;
|
|
1073
1081
|
/** Optional. A mapping of property names to values, which are used to configure workload execution. */
|