@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20230809 → 0.0.20230812

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 +4 -22
  2. package/package.json +1 -1
  3. package/tests.ts +5 -22
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://aiplatform.googleapis.com/$discovery/rest?version=v1beta1
12
- // Revision: 20230809
12
+ // Revision: 20230812
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -2498,27 +2498,6 @@ declare namespace gapi.client {
2498
2498
  /** Required. Immutable. Type of Feature value. */
2499
2499
  valueType?:
2500
2500
  string;
2501
- /** Output only. Timestamp when this version was created. */
2502
- versionCreateTime?:
2503
- string;
2504
- /** The description of this version. */
2505
- versionDescription?:
2506
- string;
2507
- /**
2508
- * Output only. Immutable. The version ID of the feature. It is an auto-incrementing decimal number in string representation. A new version is committed when a new model version is
2509
- * created under an existing feature id.
2510
- */
2511
- versionId?:
2512
- string;
2513
- /**
2514
- * The labels with user-defined metadata to organize your versions. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters,
2515
- * numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels.
2516
- */
2517
- versionLabels?:
2518
- { [P in string]: string };
2519
- /** Output only. Timestamp when this version was most recently updated. */
2520
- versionUpdateTime?:
2521
- string;
2522
2501
  }
2523
2502
  interface GoogleCloudAiplatformV1beta1FeatureMonitoringStatsAnomaly {
2524
2503
  /** Output only. The stats and anomalies generated at specific timestamp. */
@@ -6075,6 +6054,9 @@ declare namespace gapi.client {
6075
6054
  string;
6076
6055
  }
6077
6056
  interface GoogleCloudAiplatformV1beta1Scheduling {
6057
+ /** Optional. Indicates if the job should retry for internal errors after the job starts running. If true, overrides `Scheduling.restart_job_on_worker_restart` to false. */
6058
+ disableRetries?:
6059
+ boolean;
6078
6060
  /** Restarts the entire CustomJob if a worker gets restarted. This feature can be used by distributed training jobs that are not resilient to workers leaving and joining a job. */
6079
6061
  restartJobOnWorkerRestart?:
6080
6062
  boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.aiplatform-v1beta1",
3
- "version": "0.0.20230809",
3
+ "version": "0.0.20230812",
4
4
  "description": "TypeScript typings for Vertex AI API v1beta1",
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: 20230809
6
+ // Revision: 20230812
7
7
 
8
8
  gapi.load('client', async () => {
9
9
  /** now we can use gapi.client */
@@ -477,6 +477,7 @@ gapi.load('client', async () => {
477
477
  "Test string"
478
478
  ],
479
479
  scheduling: {
480
+ disableRetries: true,
480
481
  restartJobOnWorkerRestart: true,
481
482
  timeout: "Test string",
482
483
  },
@@ -2967,13 +2968,6 @@ gapi.load('client', async () => {
2967
2968
  name: "Test string",
2968
2969
  updateTime: "Test string",
2969
2970
  valueType: "Test string",
2970
- versionCreateTime: "Test string",
2971
- versionDescription: "Test string",
2972
- versionId: "Test string",
2973
- versionLabels: {
2974
- A: "Test string"
2975
- },
2976
- versionUpdateTime: "Test string",
2977
2971
  },
2978
2972
  featureId: "Test string",
2979
2973
  parent: "Test string",
@@ -3038,13 +3032,6 @@ gapi.load('client', async () => {
3038
3032
  name: "Test string",
3039
3033
  updateTime: "Test string",
3040
3034
  valueType: "Test string",
3041
- versionCreateTime: "Test string",
3042
- versionDescription: "Test string",
3043
- versionId: "Test string",
3044
- versionLabels: {
3045
- A: "Test string"
3046
- },
3047
- versionUpdateTime: "Test string",
3048
3035
  });
3049
3036
  /** Deletes a single Feature. */
3050
3037
  await gapi.client.aiplatform.projects.locations.featurestores.entityTypes.features.delete({
@@ -3122,13 +3109,6 @@ gapi.load('client', async () => {
3122
3109
  name: "Test string",
3123
3110
  updateTime: "Test string",
3124
3111
  valueType: "Test string",
3125
- versionCreateTime: "Test string",
3126
- versionDescription: "Test string",
3127
- versionId: "Test string",
3128
- versionLabels: {
3129
- A: "Test string"
3130
- },
3131
- versionUpdateTime: "Test string",
3132
3112
  });
3133
3113
  /**
3134
3114
  * Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this
@@ -3383,6 +3363,7 @@ gapi.load('client', async () => {
3383
3363
  "Test string"
3384
3364
  ],
3385
3365
  scheduling: {
3366
+ disableRetries: true,
3386
3367
  restartJobOnWorkerRestart: true,
3387
3368
  timeout: "Test string",
3388
3369
  },
@@ -5785,6 +5766,7 @@ gapi.load('client', async () => {
5785
5766
  "Test string"
5786
5767
  ],
5787
5768
  scheduling: {
5769
+ disableRetries: true,
5788
5770
  restartJobOnWorkerRestart: true,
5789
5771
  timeout: "Test string",
5790
5772
  },
@@ -5861,6 +5843,7 @@ gapi.load('client', async () => {
5861
5843
  "Test string"
5862
5844
  ],
5863
5845
  scheduling: {
5846
+ disableRetries: true,
5864
5847
  restartJobOnWorkerRestart: true,
5865
5848
  timeout: "Test string",
5866
5849
  },