@maxim_mazurok/gapi.client.aiplatform-v1beta1 0.0.20231023 → 0.0.20231024
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 +1 -22
- package/package.json +1 -1
- package/tests.ts +1 -25
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:
|
|
12
|
+
// Revision: 20231024
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -3233,11 +3233,6 @@ declare namespace gapi.client {
|
|
|
3233
3233
|
updateTime?:
|
|
3234
3234
|
string;
|
|
3235
3235
|
}
|
|
3236
|
-
interface GoogleCloudAiplatformV1beta1GenieSource {
|
|
3237
|
-
/** Required. The public base model URI. */
|
|
3238
|
-
baseModelUri?:
|
|
3239
|
-
string;
|
|
3240
|
-
}
|
|
3241
3236
|
interface GoogleCloudAiplatformV1beta1HyperparameterTuningJob {
|
|
3242
3237
|
/** Output only. Time when the HyperparameterTuningJob was created. */
|
|
3243
3238
|
createTime?:
|
|
@@ -4379,9 +4374,6 @@ declare namespace gapi.client {
|
|
|
4379
4374
|
*/
|
|
4380
4375
|
explanationSpec?:
|
|
4381
4376
|
GoogleCloudAiplatformV1beta1ExplanationSpec;
|
|
4382
|
-
/** Optional. Used to specify the source of the Model Garden model or Genie models. Only present for models created or tuned from Model Garden and Genie. */
|
|
4383
|
-
generatedModelSource?:
|
|
4384
|
-
GoogleCloudAiplatformV1beta1ModelGeneratedModelSource;
|
|
4385
4377
|
/**
|
|
4386
4378
|
* The labels with user-defined metadata to organize your Models. Label keys and values can be no longer than 64 characters (Unicode codepoints), can only contain lowercase letters,
|
|
4387
4379
|
* numeric characters, underscores and dashes. International characters are allowed. See https://goo.gl/xmQnxf for more information and examples of labels.
|
|
@@ -4870,19 +4862,6 @@ declare namespace gapi.client {
|
|
|
4870
4862
|
id?:
|
|
4871
4863
|
string;
|
|
4872
4864
|
}
|
|
4873
|
-
interface GoogleCloudAiplatformV1beta1ModelGardenSource {
|
|
4874
|
-
/** Required. The model garden source model resource name. */
|
|
4875
|
-
publicModelName?:
|
|
4876
|
-
string;
|
|
4877
|
-
}
|
|
4878
|
-
interface GoogleCloudAiplatformV1beta1ModelGeneratedModelSource {
|
|
4879
|
-
/** Information about the base model of Genie models. */
|
|
4880
|
-
genieSource?:
|
|
4881
|
-
GoogleCloudAiplatformV1beta1GenieSource;
|
|
4882
|
-
/** Source information of Model Garden models. */
|
|
4883
|
-
modelGardenSource?:
|
|
4884
|
-
GoogleCloudAiplatformV1beta1ModelGardenSource;
|
|
4885
|
-
}
|
|
4886
4865
|
interface GoogleCloudAiplatformV1beta1ModelMonitoringAlertConfig {
|
|
4887
4866
|
/** Email alert config. */
|
|
4888
4867
|
emailAlertConfig?:
|
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: 20231024
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -5542,14 +5542,6 @@ gapi.load('client', async () => {
|
|
|
5542
5542
|
},
|
|
5543
5543
|
},
|
|
5544
5544
|
},
|
|
5545
|
-
generatedModelSource: {
|
|
5546
|
-
genieSource: {
|
|
5547
|
-
baseModelUri: "Test string",
|
|
5548
|
-
},
|
|
5549
|
-
modelGardenSource: {
|
|
5550
|
-
publicModelName: "Test string",
|
|
5551
|
-
},
|
|
5552
|
-
},
|
|
5553
5545
|
labels: {
|
|
5554
5546
|
A: "Test string"
|
|
5555
5547
|
},
|
|
@@ -5807,14 +5799,6 @@ gapi.load('client', async () => {
|
|
|
5807
5799
|
},
|
|
5808
5800
|
},
|
|
5809
5801
|
},
|
|
5810
|
-
generatedModelSource: {
|
|
5811
|
-
genieSource: {
|
|
5812
|
-
baseModelUri: "Test string",
|
|
5813
|
-
},
|
|
5814
|
-
modelGardenSource: {
|
|
5815
|
-
publicModelName: "Test string",
|
|
5816
|
-
},
|
|
5817
|
-
},
|
|
5818
5802
|
labels: {
|
|
5819
5803
|
A: "Test string"
|
|
5820
5804
|
},
|
|
@@ -9001,14 +8985,6 @@ gapi.load('client', async () => {
|
|
|
9001
8985
|
},
|
|
9002
8986
|
},
|
|
9003
8987
|
},
|
|
9004
|
-
generatedModelSource: {
|
|
9005
|
-
genieSource: {
|
|
9006
|
-
baseModelUri: "Test string",
|
|
9007
|
-
},
|
|
9008
|
-
modelGardenSource: {
|
|
9009
|
-
publicModelName: "Test string",
|
|
9010
|
-
},
|
|
9011
|
-
},
|
|
9012
8988
|
labels: {
|
|
9013
8989
|
A: "Test string"
|
|
9014
8990
|
},
|