@maxim_mazurok/gapi.client.dataproc-v1 0.0.20250428 → 0.0.20250521
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 +21 -7
- 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: 20250521
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1028,16 +1028,10 @@ declare namespace gapi.client {
|
|
|
1028
1028
|
autoDeleteTime?: string;
|
|
1029
1029
|
/** Optional. The lifetime duration of cluster. The cluster will be auto-deleted at the end of this period. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)). */
|
|
1030
1030
|
autoDeleteTtl?: string;
|
|
1031
|
-
/** Optional. The time when cluster will be auto-stopped (see JSON representation of Timestamp (https://developers.google.com/protocol-buffers/docs/proto3#json)). */
|
|
1032
|
-
autoStopTime?: string;
|
|
1033
|
-
/** Optional. The lifetime duration of the cluster. The cluster will be auto-stopped at the end of this period, calculated from the time of submission of the create or update cluster request. Minimum value is 10 minutes; maximum value is 14 days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)). */
|
|
1034
|
-
autoStopTtl?: string;
|
|
1035
1031
|
/** Optional. The duration to keep the cluster alive while idling (when no jobs are running). Passing this threshold will cause the cluster to be deleted. Minimum value is 5 minutes; maximum value is 14 days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)). */
|
|
1036
1032
|
idleDeleteTtl?: string;
|
|
1037
1033
|
/** Output only. The time when cluster became idle (most recent job finished) and became eligible for deletion due to idleness (see JSON representation of Timestamp (https://developers.google.com/protocol-buffers/docs/proto3#json)). */
|
|
1038
1034
|
idleStartTime?: string;
|
|
1039
|
-
/** Optional. The duration to keep the cluster started while idling (when no jobs are running). Passing this threshold will cause the cluster to be stopped. Minimum value is 5 minutes; maximum value is 14 days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)). */
|
|
1040
|
-
idleStopTtl?: string;
|
|
1041
1035
|
}
|
|
1042
1036
|
interface ListAutoscalingPoliciesResponse {
|
|
1043
1037
|
/** Output only. This token is included in the response if there are more results to fetch. */
|
|
@@ -1316,6 +1310,10 @@ declare namespace gapi.client {
|
|
|
1316
1310
|
removeTime?: string;
|
|
1317
1311
|
totalCores?: number;
|
|
1318
1312
|
}
|
|
1313
|
+
interface PropertiesInfo {
|
|
1314
|
+
/** Output only. Properties set by autotuning engine. */
|
|
1315
|
+
autotuningProperties?: {[P in string]: ValueInfo};
|
|
1316
|
+
}
|
|
1319
1317
|
interface ProvisioningModelMix {
|
|
1320
1318
|
/** 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
1319
|
standardCapacityBase?: number;
|
|
@@ -1506,6 +1504,8 @@ declare namespace gapi.client {
|
|
|
1506
1504
|
endpoints?: {[P in string]: string};
|
|
1507
1505
|
/** Output only. A URI pointing to the location of the stdout and stderr of the workload. */
|
|
1508
1506
|
outputUri?: string;
|
|
1507
|
+
/** Optional. Properties of the workload organized by origin. */
|
|
1508
|
+
propertiesInfo?: PropertiesInfo;
|
|
1509
1509
|
}
|
|
1510
1510
|
interface SearchSessionSparkApplicationExecutorsResponse {
|
|
1511
1511
|
/** 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 +2345,14 @@ declare namespace gapi.client {
|
|
|
2345
2345
|
/** Optional. The timestamp of the usage snapshot. */
|
|
2346
2346
|
snapshotTime?: string;
|
|
2347
2347
|
}
|
|
2348
|
+
interface ValueInfo {
|
|
2349
|
+
/** Annotation, comment or explanation why the property was set. */
|
|
2350
|
+
annotation?: string;
|
|
2351
|
+
/** Optional. Value which was replaced by the corresponding component. */
|
|
2352
|
+
overriddenValue?: string;
|
|
2353
|
+
/** Property value. */
|
|
2354
|
+
value?: string;
|
|
2355
|
+
}
|
|
2348
2356
|
interface ValueValidation {
|
|
2349
2357
|
/** Required. List of allowed values for the parameter. */
|
|
2350
2358
|
values?: string[];
|
|
@@ -4128,6 +4136,8 @@ declare namespace gapi.client {
|
|
|
4128
4136
|
callback?: string;
|
|
4129
4137
|
/** Selector specifying which fields to include in a partial response. */
|
|
4130
4138
|
fields?: string;
|
|
4139
|
+
/** Optional. List of Job IDs to filter by if provided. */
|
|
4140
|
+
jobIds?: string | string[];
|
|
4131
4141
|
/** Optional. List only jobs in the specific state. */
|
|
4132
4142
|
jobStatus?: string;
|
|
4133
4143
|
/** 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. */
|
|
@@ -4171,6 +4181,8 @@ declare namespace gapi.client {
|
|
|
4171
4181
|
name: string;
|
|
4172
4182
|
/** OAuth 2.0 token for the current user. */
|
|
4173
4183
|
oauth_token?: string;
|
|
4184
|
+
/** Optional. List of Spark Connect operation IDs to filter by if provided. */
|
|
4185
|
+
operationIds?: string | string[];
|
|
4174
4186
|
/** Optional. Maximum number of queries to return in each response. The service may return fewer than this. The default page size is 10; the maximum page size is 100. */
|
|
4175
4187
|
pageSize?: number;
|
|
4176
4188
|
/** Optional. A page token received from a previous SearchSessionSparkApplicationSqlQueries call. Provide this token to retrieve the subsequent page. */
|
|
@@ -4294,6 +4306,8 @@ declare namespace gapi.client {
|
|
|
4294
4306
|
prettyPrint?: boolean;
|
|
4295
4307
|
/** 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. */
|
|
4296
4308
|
quotaUser?: string;
|
|
4309
|
+
/** Optional. List of Stage IDs to filter by if provided. */
|
|
4310
|
+
stageIds?: string | string[];
|
|
4297
4311
|
/** Optional. List only stages in the given state. */
|
|
4298
4312
|
stageStatus?: string;
|
|
4299
4313
|
/** Optional. The list of summary metrics fields to include. Empty list will default to skip all summary metrics fields. Example, if the response should include TaskQuantileMetrics, the request should have task_quantile_metrics in summary_metrics_mask field */
|