@maxim_mazurok/gapi.client.dataproc-v1 0.0.20240723 → 0.0.20240816
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 +7 -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: 20240816
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -1126,6 +1126,8 @@ declare namespace gapi.client {
|
|
|
1126
1126
|
runtimeInfo?: RuntimeInfo;
|
|
1127
1127
|
/** Optional. The session template used by the session.Only resource names, including project ID and location, are valid.Example: * https://www.googleapis.com/compute/v1/projects/[project_id]/locations/[dataproc_region]/sessionTemplates/[template_id] * projects/[project_id]/locations/[dataproc_region]/sessionTemplates/[template_id]The template must be in the same project and Dataproc region as the session. */
|
|
1128
1128
|
sessionTemplate?: string;
|
|
1129
|
+
/** Optional. Spark connect session config. */
|
|
1130
|
+
sparkConnectSession?: any;
|
|
1129
1131
|
/** Output only. A state of the session. */
|
|
1130
1132
|
state?: string;
|
|
1131
1133
|
/** Output only. Historical state information for the session. */
|
|
@@ -1182,6 +1184,8 @@ declare namespace gapi.client {
|
|
|
1182
1184
|
name?: string;
|
|
1183
1185
|
/** Optional. Runtime configuration for session execution. */
|
|
1184
1186
|
runtimeConfig?: RuntimeConfig;
|
|
1187
|
+
/** Optional. Spark connect session config. */
|
|
1188
|
+
sparkConnectSession?: any;
|
|
1185
1189
|
/** Output only. The time the template was last updated. */
|
|
1186
1190
|
updateTime?: string;
|
|
1187
1191
|
/** Output only. A session template UUID (Unique Universal Identifier). The service generates this value when it creates the session template. */
|
|
@@ -1200,7 +1204,7 @@ declare namespace gapi.client {
|
|
|
1200
1204
|
enableVtpm?: boolean;
|
|
1201
1205
|
}
|
|
1202
1206
|
interface SoftwareConfig {
|
|
1203
|
-
/** Optional. The version of software inside the cluster. It must be one of the supported Dataproc Versions (https://cloud.google.com/dataproc/docs/concepts/versioning/dataproc-versions#
|
|
1207
|
+
/** Optional. The version of software inside the cluster. It must be one of the supported Dataproc Versions (https://cloud.google.com/dataproc/docs/concepts/versioning/dataproc-versions#supported-dataproc-image-versions), such as "1.2" (including a subminor version, such as "1.2.29"), or the "preview" version (https://cloud.google.com/dataproc/docs/concepts/versioning/dataproc-versions#other_versions). If unspecified, it defaults to the latest Debian version. */
|
|
1204
1208
|
imageVersion?: string;
|
|
1205
1209
|
/** Optional. The set of components to activate on the cluster. */
|
|
1206
1210
|
optionalComponents?: string[];
|
|
@@ -1221,6 +1225,7 @@ declare namespace gapi.client {
|
|
|
1221
1225
|
/** Optional. The HCFS URI of the jar file that contains the main class. */
|
|
1222
1226
|
mainJarFileUri?: string;
|
|
1223
1227
|
}
|
|
1228
|
+
interface SparkConnectConfig {}
|
|
1224
1229
|
interface SparkHistoryServerConfig {
|
|
1225
1230
|
/** 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] */
|
|
1226
1231
|
dataprocCluster?: string;
|