@maxim_mazurok/gapi.client.run-v1 0.0.20230723 → 0.0.20230806

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 +11 -9
  2. package/package.json +2 -2
  3. 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://run.googleapis.com/$discovery/rest?version=v1
12
- // Revision: 20230723
12
+ // Revision: 20230806
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -246,13 +246,16 @@ declare namespace gapi.client {
246
246
  string;
247
247
  }
248
248
  interface ContainerOverride {
249
- /** Arguments to the entrypoint. Will replace existing args for override if present. Must be empty if `clear_args` is set to true. */
249
+ /** Arguments to the entrypoint. The specified arguments replace and override any existing entrypoint arguments. 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. */
252
+ /** Optional. Set to True to clear all existing arguments. */
253
253
  clearArgs?:
254
254
  boolean;
255
- /** List of environment variables to set in the container. Will be merged with existing env for override. */
255
+ /**
256
+ * List of environment variables to set in the container. All specified environment variables are merged with existing environment variables. When the specified environment variables
257
+ * exist, these values override any existing values.
258
+ */
256
259
  env?:
257
260
  EnvVar[];
258
261
  /** The name of the container specified as a DNS_LABEL. */
@@ -336,9 +339,8 @@ declare namespace gapi.client {
336
339
  string;
337
340
  /**
338
341
  * 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
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:
340
- * https://kubernetes.io/docs/reference/kubernetes-api/common-definitions/quantity/. The default is nil which means that the limit is undefined. More info:
341
- * https://kubernetes.io/docs/concepts/storage/volumes/#emptydir
342
+ * between the SizeLimit specified here and the sum of memory limits of all containers. The default is nil which means that the limit is undefined. More info:
343
+ * https://cloud.google.com/run/docs/configuring/in-memory-volumes#configure-volume. Info in Kubernetes: https://kubernetes.io/docs/concepts/storage/volumes/#emptydir
342
344
  */
343
345
  sizeLimit?:
344
346
  string;
@@ -1155,8 +1157,8 @@ declare namespace gapi.client {
1155
1157
  }
1156
1158
  interface RunJobRequest {
1157
1159
  /**
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
+ * Optional. Private preview feature. Currently only available by invitation. Overrides specification for a given execution of a job. The specified values update the specification of
1161
+ * the created execution.
1160
1162
  */
1161
1163
  overrides?:
1162
1164
  Overrides;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.run-v1",
3
- "version": "0.0.20230723",
3
+ "version": "0.0.20230806",
4
4
  "description": "TypeScript typings for Cloud Run Admin API v1",
5
5
  "license": "MIT",
6
6
  "author": {
@@ -15,6 +15,6 @@
15
15
  "types": "index.d.ts",
16
16
  "dependencies": {
17
17
  "@types/gapi.client": "*",
18
- "@types/gapi.client.discovery": "*"
18
+ "@types/gapi.client.discovery-v1": "*"
19
19
  }
20
20
  }
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: 20230723
6
+ // Revision: 20230806
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */