@maxim_mazurok/gapi.client.dataproc-v1 0.0.20220804 → 0.0.20220814
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 -1
- package/package.json +1 -1
- package/tests.ts +2 -1
package/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
11
11
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
12
12
|
// Generated from: https://dataproc.googleapis.com/$discovery/rest?version=v1
|
|
13
|
-
// Revision:
|
|
13
|
+
// Revision: 20220814
|
|
14
14
|
|
|
15
15
|
/// <reference types="gapi.client" />
|
|
16
16
|
|
|
@@ -401,6 +401,11 @@ declare namespace gapi.client {
|
|
|
401
401
|
peripheralsConfig?: PeripheralsConfig;
|
|
402
402
|
}
|
|
403
403
|
interface ExecutionConfig {
|
|
404
|
+
/**
|
|
405
|
+
* Optional. The duration to keep the underlying cluster alive while idling Passing this threshold will cause the cluster to be terminated. Minimum value is 30 minutes; maximum value
|
|
406
|
+
* is 14 days (see JSON representation of Duration (https://developers.google.com/protocol-buffers/docs/proto3#json)).
|
|
407
|
+
*/
|
|
408
|
+
idleTtl?: string;
|
|
404
409
|
/** Optional. The Cloud KMS key to use for encryption. */
|
|
405
410
|
kmsKey?: string;
|
|
406
411
|
/** Optional. Tags used for network traffic control. */
|
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: 20220814
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -169,6 +169,7 @@ gapi.load('client', async () => {
|
|
|
169
169
|
creator: "Test string",
|
|
170
170
|
environmentConfig: {
|
|
171
171
|
executionConfig: {
|
|
172
|
+
idleTtl: "Test string",
|
|
172
173
|
kmsKey: "Test string",
|
|
173
174
|
networkTags: [
|
|
174
175
|
"Test string"
|