@maxim_mazurok/gapi.client.dataproc-v1 0.0.20230523 → 0.0.20230620
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 -7
- 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: 20230620
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -552,8 +552,8 @@ declare namespace gapi.client {
|
|
|
552
552
|
/**
|
|
553
553
|
* Optional. The duration to keep the session alive while it's idling. Exceeding this threshold causes the session to terminate. This field cannot be set on a batch workload. Minimum
|
|
554
554
|
* value is 10 minutes; maximum value is 14 days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)). Defaults to 4 hours if not
|
|
555
|
-
* set. If both ttl and idle_ttl are specified, the conditions are treated as OR conditions: the workload will be terminated when it has been idle for
|
|
556
|
-
*
|
|
555
|
+
* set. If both ttl and idle_ttl are specified for an interactive session, the conditions are treated as OR conditions: the workload will be terminated when it has been idle for
|
|
556
|
+
* idle_ttl or when ttl has been exceeded, whichever occurs first.
|
|
557
557
|
*/
|
|
558
558
|
idleTtl?:
|
|
559
559
|
string;
|
|
@@ -582,9 +582,9 @@ declare namespace gapi.client {
|
|
|
582
582
|
/**
|
|
583
583
|
* Optional. The duration after which the workload will be terminated. When the workload exceeds this duration, it will be unconditionally terminated without waiting for ongoing work
|
|
584
584
|
* to finish. If ttl is not specified for a batch workload, the workload will be allowed to run until it exits naturally (or runs forever without exiting). If ttl is not specified for
|
|
585
|
-
* an interactive session, it defaults to 24h. Minimum value is 10 minutes; maximum value is 14
|
|
586
|
-
* (https://developers.google.com/protocol-buffers/docs/proto3#json)). If both ttl and idle_ttl are specified (for an interactive session),
|
|
587
|
-
* the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
|
|
585
|
+
* an interactive session, it defaults to 24h. If ttl is not specified for a batch that uses 2.1+ runtime version, it defaults to 4h. Minimum value is 10 minutes; maximum value is 14
|
|
586
|
+
* days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)). If both ttl and idle_ttl are specified (for an interactive session),
|
|
587
|
+
* the conditions are treated as OR conditions: the workload will be terminated when it has been idle for idle_ttl or when ttl has been exceeded, whichever occurs first.
|
|
588
588
|
*/
|
|
589
589
|
ttl?:
|
|
590
590
|
string;
|
|
@@ -1236,7 +1236,7 @@ declare namespace gapi.client {
|
|
|
1236
1236
|
AutoscalingPolicy[];
|
|
1237
1237
|
}
|
|
1238
1238
|
interface ListBatchesResponse {
|
|
1239
|
-
/** The batches from the specified collection. */
|
|
1239
|
+
/** Output only. The batches from the specified collection. */
|
|
1240
1240
|
batches?:
|
|
1241
1241
|
Batch[];
|
|
1242
1242
|
/** A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages. */
|
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: 20230620
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|