@maxim_mazurok/gapi.client.dataproc-v1 0.0.20230926 → 0.0.20231002

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.
Files changed (3) hide show
  1. package/index.d.ts +10 -1
  2. package/package.json +1 -1
  3. package/tests.ts +3 -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: 20230926
12
+ // Revision: 20231002
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -1825,6 +1825,9 @@ declare namespace gapi.client {
1825
1825
  */
1826
1826
  gracefulDecommissionTimeout?:
1827
1827
  string;
1828
+ /** Optional. operation id of the parent operation sending the resize request */
1829
+ parentOperationId?:
1830
+ string;
1828
1831
  /**
1829
1832
  * Optional. A unique ID used to identify the request. If the server receives two ResizeNodeGroupRequest
1830
1833
  * (https://cloud.google.com/dataproc/docs/reference/rpc/google.cloud.dataproc.v1#google.cloud.dataproc.v1.ResizeNodeGroupRequests) with the same ID, the second request is ignored and
@@ -5197,6 +5200,9 @@ declare namespace gapi.client {
5197
5200
  /** Required. The parent resource where this node group will be created. Format: projects/{project}/regions/{region}/clusters/{cluster} */
5198
5201
  parent:
5199
5202
  string;
5203
+ /** Optional. operation id of the parent operation sending the create request */
5204
+ parentOperationId?:
5205
+ string;
5200
5206
  /** Returns response with indentations and line breaks. */
5201
5207
  prettyPrint?:
5202
5208
  boolean;
@@ -5253,6 +5259,9 @@ declare namespace gapi.client {
5253
5259
  /** Required. The parent resource where this node group will be created. Format: projects/{project}/regions/{region}/clusters/{cluster} */
5254
5260
  parent:
5255
5261
  string;
5262
+ /** Optional. operation id of the parent operation sending the create request */
5263
+ parentOperationId?:
5264
+ string;
5256
5265
  /** Returns response with indentations and line breaks. */
5257
5266
  prettyPrint?:
5258
5267
  boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.dataproc-v1",
3
- "version": "0.0.20230926",
3
+ "version": "0.0.20231002",
4
4
  "description": "TypeScript typings for Cloud Dataproc API v1",
5
5
  "license": "MIT",
6
6
  "author": {
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: 20230926
6
+ // Revision: 20231002
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */
@@ -3887,6 +3887,7 @@ gapi.load('client', async () => {
3887
3887
  await gapi.client.dataproc.projects.regions.clusters.nodeGroups.create({
3888
3888
  nodeGroupId: "Test string",
3889
3889
  parent: "Test string",
3890
+ parentOperationId: "Test string",
3890
3891
  requestId: "Test string",
3891
3892
  }, {
3892
3893
  labels: {
@@ -3965,6 +3966,7 @@ gapi.load('client', async () => {
3965
3966
  name: "Test string",
3966
3967
  }, {
3967
3968
  gracefulDecommissionTimeout: "Test string",
3969
+ parentOperationId: "Test string",
3968
3970
  requestId: "Test string",
3969
3971
  size: 42,
3970
3972
  });