@maxim_mazurok/gapi.client.dataproc-v1 0.1.20251203 → 0.1.20260122
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 +50 -6
- 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: 20260122
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1080,7 +1080,7 @@ declare namespace gapi.client {
|
|
|
1080
1080
|
nextPageToken?: string;
|
|
1081
1081
|
/** A list of operations that matches the specified filter in the request. */
|
|
1082
1082
|
operations?: Operation[];
|
|
1083
|
-
/** Unordered list. Unreachable resources. Populated when the request sets ListOperationsRequest.return_partial_success and reads across collections
|
|
1083
|
+
/** Unordered list. Unreachable resources. Populated when the request sets ListOperationsRequest.return_partial_success and reads across collections. For example, when attempting to list all resources across all supported locations. */
|
|
1084
1084
|
unreachable?: string[];
|
|
1085
1085
|
}
|
|
1086
1086
|
interface ListSessionsResponse {
|
|
@@ -1337,7 +1337,7 @@ declare namespace gapi.client {
|
|
|
1337
1337
|
standardCapacityPercentAboveBase?: number;
|
|
1338
1338
|
}
|
|
1339
1339
|
interface PyPiRepositoryConfig {
|
|
1340
|
-
/** Optional. PyPi repository address */
|
|
1340
|
+
/** Optional. The PyPi repository address. Note: This field is not available for batch workloads. */
|
|
1341
1341
|
pypiRepository?: string;
|
|
1342
1342
|
}
|
|
1343
1343
|
interface PySparkBatch {
|
|
@@ -1500,7 +1500,7 @@ declare namespace gapi.client {
|
|
|
1500
1500
|
interface RuntimeConfig {
|
|
1501
1501
|
/** Optional. Autotuning configuration of the workload. */
|
|
1502
1502
|
autotuningConfig?: AutotuningConfig;
|
|
1503
|
-
/** Optional. Cohort identifier. Identifies families of the workloads
|
|
1503
|
+
/** Optional. Cohort identifier. Identifies families of the workloads that have the same shape, for example, daily ETL jobs. */
|
|
1504
1504
|
cohort?: string;
|
|
1505
1505
|
/** Optional. Optional custom container image for the job runtime environment. If not specified, a default container image will be used. */
|
|
1506
1506
|
containerImage?: string;
|
|
@@ -1822,6 +1822,46 @@ declare namespace gapi.client {
|
|
|
1822
1822
|
mainJarFileUri?: string;
|
|
1823
1823
|
}
|
|
1824
1824
|
interface SparkConnectConfig {}
|
|
1825
|
+
interface SparkConnectExecutionInfo {
|
|
1826
|
+
/** Timestamp when the execution was closed. */
|
|
1827
|
+
closeTimestamp?: string;
|
|
1828
|
+
/** Detailed information about the execution. */
|
|
1829
|
+
detail?: string;
|
|
1830
|
+
/** Timestamp when the execution finished. */
|
|
1831
|
+
finishTimestamp?: string;
|
|
1832
|
+
/** Optional. List of job ids associated with the execution. */
|
|
1833
|
+
jobIds?: string[];
|
|
1834
|
+
/** Required. Job tag of the execution. */
|
|
1835
|
+
jobTag?: string;
|
|
1836
|
+
/** Unique identifier for the operation. */
|
|
1837
|
+
operationId?: string;
|
|
1838
|
+
/** Required. Session ID, ties the execution to a specific Spark Connect session. */
|
|
1839
|
+
sessionId?: string;
|
|
1840
|
+
/** Optional. Tags associated with the Spark session. */
|
|
1841
|
+
sparkSessionTags?: string[];
|
|
1842
|
+
/** Optional. List of sql execution ids associated with the execution. */
|
|
1843
|
+
sqlExecIds?: string[];
|
|
1844
|
+
/** Timestamp when the execution started. */
|
|
1845
|
+
startTimestamp?: string;
|
|
1846
|
+
/** Output only. Current state of the execution. */
|
|
1847
|
+
state?: string;
|
|
1848
|
+
/** statement of the execution. */
|
|
1849
|
+
statement?: string;
|
|
1850
|
+
/** User ID of the user who started the execution. */
|
|
1851
|
+
userId?: string;
|
|
1852
|
+
}
|
|
1853
|
+
interface SparkConnectSessionInfo {
|
|
1854
|
+
/** Timestamp when the session finished. */
|
|
1855
|
+
finishTimestamp?: string;
|
|
1856
|
+
/** Required. Session ID of the session. */
|
|
1857
|
+
sessionId?: string;
|
|
1858
|
+
/** Timestamp when the session started. */
|
|
1859
|
+
startTimestamp?: string;
|
|
1860
|
+
/** Optional. Total number of executions in the session. */
|
|
1861
|
+
totalExecution?: string;
|
|
1862
|
+
/** User ID of the user who started the session. */
|
|
1863
|
+
userId?: string;
|
|
1864
|
+
}
|
|
1825
1865
|
interface SparkHistoryServerConfig {
|
|
1826
1866
|
/** Optional. Resource name of an existing Dataproc Cluster to act as a Spark History Server for the workload.Example: projects/[project_id]/regions/[region]/clusters/[cluster_name] */
|
|
1827
1867
|
dataprocCluster?: string;
|
|
@@ -1955,6 +1995,10 @@ declare namespace gapi.client {
|
|
|
1955
1995
|
rddOperationGraph?: RddOperationGraph;
|
|
1956
1996
|
rddStorageInfo?: RddStorageInfo;
|
|
1957
1997
|
resourceProfileInfo?: ResourceProfileInfo;
|
|
1998
|
+
/** Spark Connect Execution Info */
|
|
1999
|
+
sparkConnectExecutionInfo?: SparkConnectExecutionInfo;
|
|
2000
|
+
/** Spark Connect Session Info */
|
|
2001
|
+
sparkConnectSessionInfo?: SparkConnectSessionInfo;
|
|
1958
2002
|
sparkPlanGraph?: SparkPlanGraph;
|
|
1959
2003
|
speculationStageSummary?: SpeculationStageSummary;
|
|
1960
2004
|
sqlExecutionUiData?: SqlExecutionUiData;
|
|
@@ -3801,7 +3845,7 @@ declare namespace gapi.client {
|
|
|
3801
3845
|
prettyPrint?: boolean;
|
|
3802
3846
|
/** 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. */
|
|
3803
3847
|
quotaUser?: string;
|
|
3804
|
-
/** When set to true, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field.This can only be true when reading across collections
|
|
3848
|
+
/** When set to true, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field.This can only be true when reading across collections. For example, when parent is set to "projects/example/locations/-".This field is not supported by default and will result in an UNIMPLEMENTED error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
3805
3849
|
returnPartialSuccess?: boolean;
|
|
3806
3850
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3807
3851
|
upload_protocol?: string;
|
|
@@ -7141,7 +7185,7 @@ declare namespace gapi.client {
|
|
|
7141
7185
|
prettyPrint?: boolean;
|
|
7142
7186
|
/** 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. */
|
|
7143
7187
|
quotaUser?: string;
|
|
7144
|
-
/** When set to true, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field.This can only be true when reading across collections
|
|
7188
|
+
/** When set to true, operations that are reachable are returned as normal, and those that are unreachable are returned in the ListOperationsResponse.unreachable field.This can only be true when reading across collections. For example, when parent is set to "projects/example/locations/-".This field is not supported by default and will result in an UNIMPLEMENTED error if set unless explicitly documented otherwise in service or product specific documentation. */
|
|
7145
7189
|
returnPartialSuccess?: boolean;
|
|
7146
7190
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7147
7191
|
upload_protocol?: string;
|