@maxim_mazurok/gapi.client.run-v1 0.0.20230604 → 0.0.20230611

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 -4
  2. package/package.json +1 -1
  3. package/tests.ts +2 -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://run.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20230604
12
+ // Revision: 20230611
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -246,9 +246,12 @@ declare namespace gapi.client {
246
246
  string;
247
247
  }
248
248
  interface ContainerOverride {
249
- /** Arguments to the entrypoint. Will replace existing args for override. */
249
+ /** Arguments to the entrypoint. Will replace existing args for override if present. Must be empty if `clear_args` is set to true. */
250
250
  args?:
251
251
  string[];
252
+ /** Optional. True if the intention is to clear out existing args list. */
253
+ clearArgs?:
254
+ boolean;
252
255
  /** List of environment variables to set in the container. Will be merged with existing env for override. */
253
256
  env?:
254
257
  EnvVar[];
@@ -335,7 +338,7 @@ declare namespace gapi.client {
335
338
  * Limit on the storage usable by this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value
336
339
  * between the SizeLimit specified here and the sum of memory limits of all containers in a pod. This field's values are of the 'Quantity' k8s type:
337
340
  * https://kubernetes.io/docs/reference/kubernetes-api/common-definitions/quantity/. The default is nil which means that the limit is undefined. More info:
338
- * http://kubernetes.io/docs/user-guide/volumes#emptydir +optional
341
+ * https://kubernetes.io/docs/concepts/storage/volumes/#emptydir
339
342
  */
340
343
  sizeLimit?:
341
344
  string;
@@ -1151,7 +1154,10 @@ declare namespace gapi.client {
1151
1154
  string;
1152
1155
  }
1153
1156
  interface RunJobRequest {
1154
- /** Optional. Overrides specification for a given execution of a job. If provided, overrides will be applied to update the execution or task spec. */
1157
+ /**
1158
+ * Optional. Private preview feature. Currently only available by invitation. Overrides specification for a given execution of a job. If provided, overrides will be applied to update
1159
+ * the execution or task spec.
1160
+ */
1155
1161
  overrides?:
1156
1162
  Overrides;
1157
1163
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.run-v1",
3
- "version": "0.0.20230604",
3
+ "version": "0.0.20230611",
4
4
  "description": "TypeScript typings for Cloud Run Admin 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: 20230604
6
+ // Revision: 20230611
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */
@@ -840,6 +840,7 @@ gapi.load('client', async () => {
840
840
  args: [
841
841
  "Test string"
842
842
  ],
843
+ clearArgs: true,
843
844
  env: [
844
845
  {
845
846
  name: "Test string",