@maxim_mazurok/gapi.client.dataproc-v1 0.0.20250131 → 0.0.20250224
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 +37 -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: 20250224
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -263,6 +263,12 @@ declare namespace gapi.client {
|
|
|
263
263
|
/** Role that is assigned to the list of members, or principals. For example, roles/viewer, roles/editor, or roles/owner.For an overview of the IAM roles and permissions, see the IAM documentation (https://cloud.google.com/iam/docs/roles-overview). For a list of the available pre-defined roles, see here (https://cloud.google.com/iam/docs/understanding-roles). */
|
|
264
264
|
role?: string;
|
|
265
265
|
}
|
|
266
|
+
interface BuildInfo {
|
|
267
|
+
/** Optional. Build key. */
|
|
268
|
+
buildKey?: string;
|
|
269
|
+
/** Optional. Build value. */
|
|
270
|
+
buildValue?: string;
|
|
271
|
+
}
|
|
266
272
|
interface CancelJobRequest {}
|
|
267
273
|
interface Cluster {
|
|
268
274
|
/** Required. The cluster name, which must be unique within a project. The name must start with a lowercase letter, and can contain up to 51 lowercase letters, numbers, and hyphens. It cannot end with a hyphen. The name of a deleted cluster can be reused. */
|
|
@@ -581,6 +587,12 @@ declare namespace gapi.client {
|
|
|
581
587
|
/** Optional. Title for the expression, i.e. a short string describing its purpose. This can be used e.g. in UIs which allow to enter the expression. */
|
|
582
588
|
title?: string;
|
|
583
589
|
}
|
|
590
|
+
interface FallbackReason {
|
|
591
|
+
/** Optional. Fallback node information. */
|
|
592
|
+
fallbackNode?: string;
|
|
593
|
+
/** Optional. Fallback to Spark reason. */
|
|
594
|
+
fallbackReason?: string;
|
|
595
|
+
}
|
|
584
596
|
interface FlinkJob {
|
|
585
597
|
/** Optional. The arguments to pass to the driver. Do not include arguments, such as --conf, that can be set as job properties, since a collision might occur that causes an incorrect job submission. */
|
|
586
598
|
args?: string[];
|
|
@@ -1107,6 +1119,26 @@ declare namespace gapi.client {
|
|
|
1107
1119
|
/** Optional. The target GKE cluster to deploy to. Format: 'projects/{project}/locations/{location}/clusters/{cluster_id}' */
|
|
1108
1120
|
targetGkeCluster?: string;
|
|
1109
1121
|
}
|
|
1122
|
+
interface NativeBuildInfoUiData {
|
|
1123
|
+
/** Optional. Build class of Native. */
|
|
1124
|
+
buildClass?: string;
|
|
1125
|
+
/** Optional. Build related details. */
|
|
1126
|
+
buildInfo?: BuildInfo[];
|
|
1127
|
+
}
|
|
1128
|
+
interface NativeSqlExecutionUiData {
|
|
1129
|
+
/** Optional. Description of the execution. */
|
|
1130
|
+
description?: string;
|
|
1131
|
+
/** Required. Execution ID of the Native SQL Execution. */
|
|
1132
|
+
executionId?: string;
|
|
1133
|
+
/** Optional. Description of the fallback. */
|
|
1134
|
+
fallbackDescription?: string;
|
|
1135
|
+
/** Optional. Fallback node to reason. */
|
|
1136
|
+
fallbackNodeToReason?: FallbackReason[];
|
|
1137
|
+
/** Optional. Number of nodes fallen back to Spark. */
|
|
1138
|
+
numFallbackNodes?: number;
|
|
1139
|
+
/** Optional. Number of nodes in Native. */
|
|
1140
|
+
numNativeNodes?: number;
|
|
1141
|
+
}
|
|
1110
1142
|
interface NodeGroup {
|
|
1111
1143
|
/** 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. */
|
|
1112
1144
|
labels?: {[P in string]: string};
|
|
@@ -1880,6 +1912,10 @@ declare namespace gapi.client {
|
|
|
1880
1912
|
executorStageSummary?: ExecutorStageSummary;
|
|
1881
1913
|
executorSummary?: ExecutorSummary;
|
|
1882
1914
|
jobData?: JobData;
|
|
1915
|
+
/** Native Build Info */
|
|
1916
|
+
nativeBuildInfoUiData?: NativeBuildInfoUiData;
|
|
1917
|
+
/** Native SQL Execution Info */
|
|
1918
|
+
nativeSqlExecutionUiData?: NativeSqlExecutionUiData;
|
|
1883
1919
|
poolData?: PoolData;
|
|
1884
1920
|
processSummary?: ProcessSummary;
|
|
1885
1921
|
rddOperationGraph?: RddOperationGraph;
|