@maxim_mazurok/gapi.client.aiplatform-v1 0.0.20230929 → 0.0.20231012
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 +4 -27
- package/package.json +1 -1
- package/tests.ts +15 -6
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=v1
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20231012
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -2218,9 +2218,6 @@ declare namespace gapi.client {
|
|
|
2218
2218
|
*/
|
|
2219
2219
|
annotationsFilter?:
|
|
2220
2220
|
string;
|
|
2221
|
-
/** Split based on the provided filters for each set. */
|
|
2222
|
-
filterSplit?:
|
|
2223
|
-
GoogleCloudAiplatformV1ExportFilterSplit;
|
|
2224
2221
|
/** Split based on fractions defining the size of each set. */
|
|
2225
2222
|
fractionSplit?:
|
|
2226
2223
|
GoogleCloudAiplatformV1ExportFractionSplit;
|
|
@@ -2297,29 +2294,6 @@ declare namespace gapi.client {
|
|
|
2297
2294
|
// tslint:disable-next-line:no-empty-interface
|
|
2298
2295
|
interface GoogleCloudAiplatformV1ExportFeatureValuesResponse {
|
|
2299
2296
|
}
|
|
2300
|
-
interface GoogleCloudAiplatformV1ExportFilterSplit {
|
|
2301
|
-
/**
|
|
2302
|
-
* Required. A filter on DataItems of the Dataset. DataItems that match this filter are used to test the Model. A filter with same syntax as the one used in
|
|
2303
|
-
* DatasetService.ListDataItems may be used. If a single DataItem is matched by more than one of the FilterSplit filters, then it is assigned to the first set that applies to it in the
|
|
2304
|
-
* training, validation, test order.
|
|
2305
|
-
*/
|
|
2306
|
-
testFilter?:
|
|
2307
|
-
string;
|
|
2308
|
-
/**
|
|
2309
|
-
* Required. A filter on DataItems of the Dataset. DataItems that match this filter are used to train the Model. A filter with same syntax as the one used in
|
|
2310
|
-
* DatasetService.ListDataItems may be used. If a single DataItem is matched by more than one of the FilterSplit filters, then it is assigned to the first set that applies to it in the
|
|
2311
|
-
* training, validation, test order.
|
|
2312
|
-
*/
|
|
2313
|
-
trainingFilter?:
|
|
2314
|
-
string;
|
|
2315
|
-
/**
|
|
2316
|
-
* Required. A filter on DataItems of the Dataset. DataItems that match this filter are used to validate the Model. A filter with same syntax as the one used in
|
|
2317
|
-
* DatasetService.ListDataItems may be used. If a single DataItem is matched by more than one of the FilterSplit filters, then it is assigned to the first set that applies to it in the
|
|
2318
|
-
* training, validation, test order.
|
|
2319
|
-
*/
|
|
2320
|
-
validationFilter?:
|
|
2321
|
-
string;
|
|
2322
|
-
}
|
|
2323
2297
|
interface GoogleCloudAiplatformV1ExportFractionSplit {
|
|
2324
2298
|
/** The fraction of the input data that is to be used to evaluate the Model. */
|
|
2325
2299
|
testFraction?:
|
|
@@ -3632,6 +3606,9 @@ declare namespace gapi.client {
|
|
|
3632
3606
|
*/
|
|
3633
3607
|
machineType?:
|
|
3634
3608
|
string;
|
|
3609
|
+
/** Immutable. The topology of the TPUs. Corresponds to the TPU topologies available from GKE. (Example: tpu_topology: "2x2x1"). */
|
|
3610
|
+
tpuTopology?:
|
|
3611
|
+
string;
|
|
3635
3612
|
}
|
|
3636
3613
|
interface GoogleCloudAiplatformV1ManualBatchTuningParameters {
|
|
3637
3614
|
/**
|
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: 20231012
|
|
7
7
|
|
|
8
8
|
gapi.load('client', async () => {
|
|
9
9
|
/** now we can use gapi.client */
|
|
@@ -67,6 +67,7 @@ gapi.load('client', async () => {
|
|
|
67
67
|
acceleratorCount: 42,
|
|
68
68
|
acceleratorType: "Test string",
|
|
69
69
|
machineType: "Test string",
|
|
70
|
+
tpuTopology: "Test string",
|
|
70
71
|
},
|
|
71
72
|
maxReplicaCount: 42,
|
|
72
73
|
startingReplicaCount: 42,
|
|
@@ -377,6 +378,7 @@ gapi.load('client', async () => {
|
|
|
377
378
|
acceleratorCount: 42,
|
|
378
379
|
acceleratorType: "Test string",
|
|
379
380
|
machineType: "Test string",
|
|
381
|
+
tpuTopology: "Test string",
|
|
380
382
|
},
|
|
381
383
|
nfsMounts: [
|
|
382
384
|
{
|
|
@@ -629,11 +631,6 @@ gapi.load('client', async () => {
|
|
|
629
631
|
}, {
|
|
630
632
|
exportConfig: {
|
|
631
633
|
annotationsFilter: "Test string",
|
|
632
|
-
filterSplit: {
|
|
633
|
-
testFilter: "Test string",
|
|
634
|
-
trainingFilter: "Test string",
|
|
635
|
-
validationFilter: "Test string",
|
|
636
|
-
},
|
|
637
634
|
fractionSplit: {
|
|
638
635
|
testFraction: 42,
|
|
639
636
|
trainingFraction: 42,
|
|
@@ -1046,6 +1043,7 @@ gapi.load('client', async () => {
|
|
|
1046
1043
|
acceleratorCount: 42,
|
|
1047
1044
|
acceleratorType: "Test string",
|
|
1048
1045
|
machineType: "Test string",
|
|
1046
|
+
tpuTopology: "Test string",
|
|
1049
1047
|
},
|
|
1050
1048
|
maxReplicaCount: 42,
|
|
1051
1049
|
minReplicaCount: 42,
|
|
@@ -1223,6 +1221,7 @@ gapi.load('client', async () => {
|
|
|
1223
1221
|
acceleratorCount: 42,
|
|
1224
1222
|
acceleratorType: "Test string",
|
|
1225
1223
|
machineType: "Test string",
|
|
1224
|
+
tpuTopology: "Test string",
|
|
1226
1225
|
},
|
|
1227
1226
|
maxReplicaCount: 42,
|
|
1228
1227
|
minReplicaCount: 42,
|
|
@@ -1492,6 +1491,7 @@ gapi.load('client', async () => {
|
|
|
1492
1491
|
acceleratorCount: 42,
|
|
1493
1492
|
acceleratorType: "Test string",
|
|
1494
1493
|
machineType: "Test string",
|
|
1494
|
+
tpuTopology: "Test string",
|
|
1495
1495
|
},
|
|
1496
1496
|
maxReplicaCount: 42,
|
|
1497
1497
|
minReplicaCount: 42,
|
|
@@ -1644,6 +1644,7 @@ gapi.load('client', async () => {
|
|
|
1644
1644
|
acceleratorCount: 42,
|
|
1645
1645
|
acceleratorType: "Test string",
|
|
1646
1646
|
machineType: "Test string",
|
|
1647
|
+
tpuTopology: "Test string",
|
|
1647
1648
|
},
|
|
1648
1649
|
maxReplicaCount: 42,
|
|
1649
1650
|
minReplicaCount: 42,
|
|
@@ -2810,6 +2811,7 @@ gapi.load('client', async () => {
|
|
|
2810
2811
|
acceleratorCount: 42,
|
|
2811
2812
|
acceleratorType: "Test string",
|
|
2812
2813
|
machineType: "Test string",
|
|
2814
|
+
tpuTopology: "Test string",
|
|
2813
2815
|
},
|
|
2814
2816
|
nfsMounts: [
|
|
2815
2817
|
{
|
|
@@ -2959,6 +2961,7 @@ gapi.load('client', async () => {
|
|
|
2959
2961
|
acceleratorCount: 42,
|
|
2960
2962
|
acceleratorType: "Test string",
|
|
2961
2963
|
machineType: "Test string",
|
|
2964
|
+
tpuTopology: "Test string",
|
|
2962
2965
|
},
|
|
2963
2966
|
maxReplicaCount: 42,
|
|
2964
2967
|
minReplicaCount: 42,
|
|
@@ -3035,6 +3038,7 @@ gapi.load('client', async () => {
|
|
|
3035
3038
|
acceleratorCount: 42,
|
|
3036
3039
|
acceleratorType: "Test string",
|
|
3037
3040
|
machineType: "Test string",
|
|
3041
|
+
tpuTopology: "Test string",
|
|
3038
3042
|
},
|
|
3039
3043
|
maxReplicaCount: 42,
|
|
3040
3044
|
minReplicaCount: 42,
|
|
@@ -3131,6 +3135,7 @@ gapi.load('client', async () => {
|
|
|
3131
3135
|
acceleratorCount: 42,
|
|
3132
3136
|
acceleratorType: "Test string",
|
|
3133
3137
|
machineType: "Test string",
|
|
3138
|
+
tpuTopology: "Test string",
|
|
3134
3139
|
},
|
|
3135
3140
|
maxReplicaCount: 42,
|
|
3136
3141
|
minReplicaCount: 42,
|
|
@@ -3183,6 +3188,7 @@ gapi.load('client', async () => {
|
|
|
3183
3188
|
acceleratorCount: 42,
|
|
3184
3189
|
acceleratorType: "Test string",
|
|
3185
3190
|
machineType: "Test string",
|
|
3191
|
+
tpuTopology: "Test string",
|
|
3186
3192
|
},
|
|
3187
3193
|
maxReplicaCount: 42,
|
|
3188
3194
|
minReplicaCount: 42,
|
|
@@ -5116,6 +5122,7 @@ gapi.load('client', async () => {
|
|
|
5116
5122
|
acceleratorCount: 42,
|
|
5117
5123
|
acceleratorType: "Test string",
|
|
5118
5124
|
machineType: "Test string",
|
|
5125
|
+
tpuTopology: "Test string",
|
|
5119
5126
|
},
|
|
5120
5127
|
nfsMounts: [
|
|
5121
5128
|
{
|
|
@@ -5192,6 +5199,7 @@ gapi.load('client', async () => {
|
|
|
5192
5199
|
acceleratorCount: 42,
|
|
5193
5200
|
acceleratorType: "Test string",
|
|
5194
5201
|
machineType: "Test string",
|
|
5202
|
+
tpuTopology: "Test string",
|
|
5195
5203
|
},
|
|
5196
5204
|
nfsMounts: [
|
|
5197
5205
|
{
|
|
@@ -5334,6 +5342,7 @@ gapi.load('client', async () => {
|
|
|
5334
5342
|
acceleratorCount: 42,
|
|
5335
5343
|
acceleratorType: "Test string",
|
|
5336
5344
|
machineType: "Test string",
|
|
5345
|
+
tpuTopology: "Test string",
|
|
5337
5346
|
},
|
|
5338
5347
|
name: "Test string",
|
|
5339
5348
|
networkSpec: {
|