@maxim_mazurok/gapi.client.dataproc-v1 0.0.20240919 → 0.0.20241005
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 +10 -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: 20241005
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -746,6 +746,8 @@ declare namespace gapi.client {
|
|
|
746
746
|
instanceSelectionList?: InstanceSelection[];
|
|
747
747
|
/** Output only. A list of instance selection results in the group. */
|
|
748
748
|
instanceSelectionResults?: InstanceSelectionResult[];
|
|
749
|
+
/** Optional. Defines how the Group selects the provisioning model to ensure required reliability. */
|
|
750
|
+
provisioningModelMix?: ProvisioningModelMix;
|
|
749
751
|
}
|
|
750
752
|
interface InstanceGroupAutoscalingPolicyConfig {
|
|
751
753
|
/** Required. Maximum number of instances for this group. Required for primary workers. Note that by default, clusters will not use secondary workers. Required for secondary workers if the minimum secondary instances is set.Primary workers - Bounds: [min_instances, ). Secondary workers - Bounds: [min_instances, ). Default: 0. */
|
|
@@ -1104,7 +1106,7 @@ declare namespace gapi.client {
|
|
|
1104
1106
|
targetGkeCluster?: string;
|
|
1105
1107
|
}
|
|
1106
1108
|
interface NodeGroup {
|
|
1107
|
-
/** Optional. Node group labels. Label keys must consist of from 1 to 63 characters and conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). Label values can be empty. If specified, they must consist of from 1 to 63 characters and conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). The node group must have no more than 32
|
|
1109
|
+
/** Optional. Node group labels. Label keys must consist of from 1 to 63 characters and conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). Label values can be empty. If specified, they must consist of from 1 to 63 characters and conform to RFC 1035 (https://www.ietf.org/rfc/rfc1035.txt). The node group must have no more than 32 labels. */
|
|
1108
1110
|
labels?: {[P in string]: string};
|
|
1109
1111
|
/** The Node group resource name (https://aip.dev/122). */
|
|
1110
1112
|
name?: string;
|
|
@@ -1264,6 +1266,12 @@ declare namespace gapi.client {
|
|
|
1264
1266
|
removeTime?: string;
|
|
1265
1267
|
totalCores?: number;
|
|
1266
1268
|
}
|
|
1269
|
+
interface ProvisioningModelMix {
|
|
1270
|
+
/** 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. */
|
|
1271
|
+
standardCapacityBase?: number;
|
|
1272
|
+
/** Optional. The percentage of target capacity that should use Standard VM. The remaining percentage will use Spot VMs. The percentage applies only to the capacity above standard_capacity_base. eg. If 15 instances are requested and standard_capacity_base is 5 and standard_capacity_percent_above_base is 30, Dataproc will create 5 standard VMs and then start mixing spot and standard VMs for remaining 10 instances. The mix will be 30% standard and 70% spot. */
|
|
1273
|
+
standardCapacityPercentAboveBase?: number;
|
|
1274
|
+
}
|
|
1267
1275
|
interface PyPiRepositoryConfig {
|
|
1268
1276
|
/** Optional. PyPi repository address */
|
|
1269
1277
|
pypiRepository?: string;
|