@maxim_mazurok/gapi.client.dataproc-v1 0.0.20221207 → 0.0.20230103
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 +6 -5
- package/package.json +1 -1
- package/tests.ts +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: 20230103
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -420,7 +420,8 @@ declare namespace gapi.client {
|
|
|
420
420
|
interface ExecutionConfig {
|
|
421
421
|
/**
|
|
422
422
|
* Optional. The duration to keep the session alive while it's idling. Passing this threshold will cause the session to be terminated. Minimum value is 10 minutes; maximum value is 14
|
|
423
|
-
* days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)). Defaults to 4 hours if not set.
|
|
423
|
+
* days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)). Defaults to 4 hours if not set. If both ttl and idle_ttl are specified,
|
|
424
|
+
* the conditions are treated as and OR: the workload will be terminated when it has been idle for idle_ttl or when the ttl has passed, whichever comes first.
|
|
424
425
|
*/
|
|
425
426
|
idleTtl?: string;
|
|
426
427
|
/** Optional. The Cloud KMS key to use for encryption. */
|
|
@@ -1274,7 +1275,7 @@ declare namespace gapi.client {
|
|
|
1274
1275
|
/** Optional. Specifying the cluster_uuid means the RPC will fail (with error NOT_FOUND) if a cluster with the specified UUID does not exist. */
|
|
1275
1276
|
clusterUuid?: string;
|
|
1276
1277
|
/**
|
|
1277
|
-
* Optional. Timeout for graceful YARN
|
|
1278
|
+
* Optional. Timeout for graceful YARN decommissioning. Graceful decommissioning facilitates the removal of cluster nodes without interrupting jobs in progress. The timeout specifies
|
|
1278
1279
|
* the amount of time to wait for jobs finish before forcefully removing nodes. The default timeout is 0 for forceful decommissioning, and the maximum timeout period is 1 day. (see
|
|
1279
1280
|
* JSON Mapping—Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)).graceful_decommission_timeout is supported in Dataproc image versions 1.2+.
|
|
1280
1281
|
*/
|
|
@@ -3747,7 +3748,7 @@ declare namespace gapi.client {
|
|
|
3747
3748
|
/** Selector specifying which fields to include in a partial response. */
|
|
3748
3749
|
fields?: string;
|
|
3749
3750
|
/**
|
|
3750
|
-
* Optional. Timeout for graceful YARN
|
|
3751
|
+
* Optional. Timeout for graceful YARN decommissioning. Graceful decommissioning allows removing nodes from the cluster without interrupting jobs in progress. Timeout specifies how
|
|
3751
3752
|
* long to wait for jobs in progress to finish before forcefully removing nodes (and potentially interrupting jobs). Default timeout is 0 (for forceful decommission), and the
|
|
3752
3753
|
* maximum allowed timeout is 1 day. (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)).Only supported on Dataproc image
|
|
3753
3754
|
* versions 1.2 and higher.
|
|
@@ -3803,7 +3804,7 @@ declare namespace gapi.client {
|
|
|
3803
3804
|
/** Selector specifying which fields to include in a partial response. */
|
|
3804
3805
|
fields?: string;
|
|
3805
3806
|
/**
|
|
3806
|
-
* Optional. Timeout for graceful YARN
|
|
3807
|
+
* Optional. Timeout for graceful YARN decommissioning. Graceful decommissioning allows removing nodes from the cluster without interrupting jobs in progress. Timeout specifies how
|
|
3807
3808
|
* long to wait for jobs in progress to finish before forcefully removing nodes (and potentially interrupting jobs). Default timeout is 0 (for forceful decommission), and the
|
|
3808
3809
|
* maximum allowed timeout is 1 day. (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)).Only supported on Dataproc image
|
|
3809
3810
|
* versions 1.2 and higher.
|
package/package.json
CHANGED
package/tests.ts
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
4
4
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
5
5
|
|
|
6
|
-
// Revision:
|
|
6
|
+
// Revision: 20230103
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|