@maxim_mazurok/gapi.client.dataproc-v1 0.1.20251104 → 0.1.20260120
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 +52 -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: 20260120
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -626,6 +626,8 @@ declare namespace gapi.client {
|
|
|
626
626
|
savepointUri?: string;
|
|
627
627
|
}
|
|
628
628
|
interface GceClusterConfig {
|
|
629
|
+
/** Optional. An optional list of Compute Engine zones where the Dataproc cluster will not be located when Auto Zone is enabled. Only one of zone_uri or auto_zone_exclude_zone_uris can be set. If both are omitted, the service will pick a zone in the cluster Compute Engine region. If auto_zone_exclude_zone_uris is set and there is more than one non-excluded zone, the service will pick one of the non-excluded zones. Otherwise, cluster creation will fail with INVALID_ARGUMENT error.A full URL, partial URI, or short name are valid. Examples: https://www.googleapis.com/compute/v1/projects/[project_id]/zones/[zone] projects/[project_id]/zones/[zone] [zone] */
|
|
630
|
+
autoZoneExcludeZoneUris?: string[];
|
|
629
631
|
/** Optional. Confidential Instance Config for clusters using Confidential VMs (https://cloud.google.com/compute/confidential-vm/docs). */
|
|
630
632
|
confidentialInstanceConfig?: ConfidentialInstanceConfig;
|
|
631
633
|
/** Optional. This setting applies to subnetwork-enabled networks. It is set to true by default in clusters created with image versions 2.2.x.When set to true: All cluster VMs have internal IP addresses. Google Private Access (https://cloud.google.com/vpc/docs/private-google-access) must be enabled to access Dataproc and other Google Cloud APIs. Off-cluster dependencies must be configured to be accessible without external IP addresses.When set to false: Cluster VMs are not restricted to internal IP addresses. Ephemeral external IP addresses are assigned to each cluster VM. */
|
|
@@ -1078,7 +1080,7 @@ declare namespace gapi.client {
|
|
|
1078
1080
|
nextPageToken?: string;
|
|
1079
1081
|
/** A list of operations that matches the specified filter in the request. */
|
|
1080
1082
|
operations?: Operation[];
|
|
1081
|
-
/** 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. */
|
|
1082
1084
|
unreachable?: string[];
|
|
1083
1085
|
}
|
|
1084
1086
|
interface ListSessionsResponse {
|
|
@@ -1335,7 +1337,7 @@ declare namespace gapi.client {
|
|
|
1335
1337
|
standardCapacityPercentAboveBase?: number;
|
|
1336
1338
|
}
|
|
1337
1339
|
interface PyPiRepositoryConfig {
|
|
1338
|
-
/** Optional. PyPi repository address */
|
|
1340
|
+
/** Optional. The PyPi repository address. Note: This field is not available for batch workloads. */
|
|
1339
1341
|
pypiRepository?: string;
|
|
1340
1342
|
}
|
|
1341
1343
|
interface PySparkBatch {
|
|
@@ -1498,7 +1500,7 @@ declare namespace gapi.client {
|
|
|
1498
1500
|
interface RuntimeConfig {
|
|
1499
1501
|
/** Optional. Autotuning configuration of the workload. */
|
|
1500
1502
|
autotuningConfig?: AutotuningConfig;
|
|
1501
|
-
/** 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. */
|
|
1502
1504
|
cohort?: string;
|
|
1503
1505
|
/** Optional. Optional custom container image for the job runtime environment. If not specified, a default container image will be used. */
|
|
1504
1506
|
containerImage?: string;
|
|
@@ -1820,6 +1822,46 @@ declare namespace gapi.client {
|
|
|
1820
1822
|
mainJarFileUri?: string;
|
|
1821
1823
|
}
|
|
1822
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
|
+
}
|
|
1823
1865
|
interface SparkHistoryServerConfig {
|
|
1824
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] */
|
|
1825
1867
|
dataprocCluster?: string;
|
|
@@ -1953,6 +1995,10 @@ declare namespace gapi.client {
|
|
|
1953
1995
|
rddOperationGraph?: RddOperationGraph;
|
|
1954
1996
|
rddStorageInfo?: RddStorageInfo;
|
|
1955
1997
|
resourceProfileInfo?: ResourceProfileInfo;
|
|
1998
|
+
/** Spark Connect Execution Info */
|
|
1999
|
+
sparkConnectExecutionInfo?: SparkConnectExecutionInfo;
|
|
2000
|
+
/** Spark Connect Session Info */
|
|
2001
|
+
sparkConnectSessionInfo?: SparkConnectSessionInfo;
|
|
1956
2002
|
sparkPlanGraph?: SparkPlanGraph;
|
|
1957
2003
|
speculationStageSummary?: SpeculationStageSummary;
|
|
1958
2004
|
sqlExecutionUiData?: SqlExecutionUiData;
|
|
@@ -3799,7 +3845,7 @@ declare namespace gapi.client {
|
|
|
3799
3845
|
prettyPrint?: boolean;
|
|
3800
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. */
|
|
3801
3847
|
quotaUser?: string;
|
|
3802
|
-
/** 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. */
|
|
3803
3849
|
returnPartialSuccess?: boolean;
|
|
3804
3850
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
3805
3851
|
upload_protocol?: string;
|
|
@@ -7139,7 +7185,7 @@ declare namespace gapi.client {
|
|
|
7139
7185
|
prettyPrint?: boolean;
|
|
7140
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. */
|
|
7141
7187
|
quotaUser?: string;
|
|
7142
|
-
/** 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. */
|
|
7143
7189
|
returnPartialSuccess?: boolean;
|
|
7144
7190
|
/** Upload protocol for media (e.g. "raw", "multipart"). */
|
|
7145
7191
|
upload_protocol?: string;
|