Skip to content

Commit ef1442a

Browse files
feat(all): auto-regenerate discovery clients (#3139)
1 parent 939a2db commit ef1442a

24 files changed

+1363
-219
lines changed

aiplatform/v1/aiplatform-api.json

Lines changed: 94 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19841,7 +19841,7 @@
1984119841
}
1984219842
}
1984319843
},
19844-
"revision": "20250422",
19844+
"revision": "20250501",
1984519845
"rootUrl": "https://aiplatform.googleapis.com/",
1984619846
"schemas": {
1984719847
"CloudAiLargeModelsVisionGenerateVideoResponse": {
@@ -21824,6 +21824,27 @@
2182421824
},
2182521825
"type": "object"
2182621826
},
21827+
"GoogleCloudAiplatformV1Checkpoint": {
21828+
"description": "Describes the machine learning model version checkpoint.",
21829+
"id": "GoogleCloudAiplatformV1Checkpoint",
21830+
"properties": {
21831+
"checkpointId": {
21832+
"description": "The ID of the checkpoint.",
21833+
"type": "string"
21834+
},
21835+
"epoch": {
21836+
"description": "The epoch of the checkpoint.",
21837+
"format": "int64",
21838+
"type": "string"
21839+
},
21840+
"step": {
21841+
"description": "The step of the checkpoint.",
21842+
"format": "int64",
21843+
"type": "string"
21844+
}
21845+
},
21846+
"type": "object"
21847+
},
2182721848
"GoogleCloudAiplatformV1Citation": {
2182821849
"description": "Source attributions for content.",
2182921850
"id": "GoogleCloudAiplatformV1Citation",
@@ -23805,6 +23826,10 @@
2380523826
"$ref": "GoogleCloudAiplatformV1AutomaticResources",
2380623827
"description": "A description of resources that to large degree are decided by Vertex AI, and require only a modest additional configuration."
2380723828
},
23829+
"checkpointId": {
23830+
"description": "The checkpoint id of the model.",
23831+
"type": "string"
23832+
},
2380823833
"createTime": {
2380923834
"description": "Output only. Timestamp when the DeployedModel was created.",
2381023835
"format": "google-datetime",
@@ -30942,6 +30967,14 @@
3094230967
"$ref": "GoogleCloudAiplatformV1ModelBaseModelSource",
3094330968
"description": "Optional. User input field to specify the base model source. Currently it only supports specifing the Model Garden models and Genie models."
3094430969
},
30970+
"checkpoints": {
30971+
"description": "Optional. Output only. The checkpoints of the model.",
30972+
"items": {
30973+
"$ref": "GoogleCloudAiplatformV1Checkpoint"
30974+
},
30975+
"readOnly": true,
30976+
"type": "array"
30977+
},
3094530978
"containerSpec": {
3094630979
"$ref": "GoogleCloudAiplatformV1ModelContainerSpec",
3094730980
"description": "Input only. The specification of the container that is to be used when deploying this Model. The specification is ingested upon ModelService.UploadModel, and all binaries it contains are copied and stored internally by Vertex AI. Not required for AutoML Models."
@@ -32747,7 +32780,8 @@
3274732780
"INVALID_TOKEN_VALUE",
3274832781
"INVALID_SPARSE_EMBEDDING",
3274932782
"INVALID_EMBEDDING",
32750-
"INVALID_EMBEDDING_METADATA"
32783+
"INVALID_EMBEDDING_METADATA",
32784+
"EMBEDDING_METADATA_EXCEEDS_SIZE_LIMIT"
3275132785
],
3275232786
"enumDescriptions": [
3275332787
"Default, shall not be used.",
@@ -32768,7 +32802,8 @@
3276832802
"Token restrict value is invalid.",
3276932803
"Invalid sparse embedding.",
3277032804
"Invalid dense embedding.",
32771-
"Invalid embedding metadata."
32805+
"Invalid embedding metadata.",
32806+
"Embedding metadata exceeds size limit."
3277232807
],
3277332808
"type": "string"
3277432809
},
@@ -33133,7 +33168,7 @@
3313333168
"type": "object"
3313433169
},
3313533170
"GoogleCloudAiplatformV1NotebookRuntime": {
33136-
"description": "A runtime is a virtual machine allocated to a particular user for a particular Notebook file on temporary basis with lifetime limited to 24 hours.",
33171+
"description": "A runtime is a virtual machine allocated to a particular user for a particular Notebook file on temporary basis with lifetime. Default runtimes have a lifetime of 18 hours, while custom runtimes last for 6 months from their creation or last upgrade.",
3313733172
"id": "GoogleCloudAiplatformV1NotebookRuntime",
3313833173
"properties": {
3313933174
"createTime": {
@@ -33270,7 +33305,7 @@
3327033305
"enumDescriptions": [
3327133306
"Unspecified runtime state.",
3327233307
"NotebookRuntime is in running state.",
33273-
"NotebookRuntime is in starting state.",
33308+
"NotebookRuntime is in starting state. This is when the runtime is being started from a stopped state.",
3327433309
"NotebookRuntime is in stopping state.",
3327533310
"NotebookRuntime is in stopped state.",
3327633311
"NotebookRuntime is in upgrading state. It is in the middle of upgrading process.",
@@ -33445,7 +33480,7 @@
3344533480
"type": "object"
3344633481
},
3344733482
"GoogleCloudAiplatformV1NotebookSoftwareConfig": {
33448-
"description": "Notebook Software Config.",
33483+
"description": "Notebook Software Config. This is passed to the backend when user makes software configurations in UI.",
3344933484
"id": "GoogleCloudAiplatformV1NotebookSoftwareConfig",
3345033485
"properties": {
3345133486
"env": {
@@ -37689,6 +37724,10 @@
3768937724
"description": "Schema is used to define the format of input/output data. Represents a select subset of an [OpenAPI 3.0 schema object](https://spec.openapis.org/oas/v3.0.3#schema-object). More fields may be added in the future as needed.",
3769037725
"id": "GoogleCloudAiplatformV1Schema",
3769137726
"properties": {
37727+
"additionalProperties": {
37728+
"description": "Optional. Can either be a boolean or an object; controls the presence of additional properties.",
37729+
"type": "any"
37730+
},
3769237731
"anyOf": {
3769337732
"description": "Optional. The value should be validated against any (one or more) of the subschemas in the list.",
3769437733
"items": {
@@ -37700,6 +37739,13 @@
3770037739
"description": "Optional. Default value of the data.",
3770137740
"type": "any"
3770237741
},
37742+
"defs": {
37743+
"additionalProperties": {
37744+
"$ref": "GoogleCloudAiplatformV1Schema"
37745+
},
37746+
"description": "Optional. A map of definitions for use by `ref` Only allowed at the root of the schema.",
37747+
"type": "object"
37748+
},
3770337749
"description": {
3770437750
"description": "Optional. The description of the data.",
3770537751
"type": "string"
@@ -37785,6 +37831,10 @@
3778537831
},
3778637832
"type": "array"
3778737833
},
37834+
"ref": {
37835+
"description": "Optional. Allows indirect references between schema nodes. The value should be a valid reference to a child of the root `defs`. For example, the following schema defines a reference to a schema node named \"Pet\": type: object properties: pet: ref: #/defs/Pet defs: Pet: type: object properties: name: type: string The value of the \"pet\" property is a reference to the schema node named \"Pet\". See details in https://json-schema.org/understanding-json-schema/structuring",
37836+
"type": "string"
37837+
},
3778837838
"required": {
3778937839
"description": "Optional. Required properties of Type.OBJECT.",
3779037840
"items": {
@@ -43471,7 +43521,7 @@
4347143521
"id": "GoogleCloudAiplatformV1SupervisedTuningDataStats",
4347243522
"properties": {
4347343523
"droppedExampleReasons": {
43474-
"description": "Output only. For each index in `truncated_example_indices`, the user-facing reason why the example was dropped. Must not include example itself.",
43524+
"description": "Output only. For each index in `truncated_example_indices`, the user-facing reason why the example was dropped.",
4347543525
"items": {
4347643526
"type": "string"
4347743527
},
@@ -43642,6 +43692,10 @@
4364243692
"description": "Tuning Spec for Supervised Tuning for first party models.",
4364343693
"id": "GoogleCloudAiplatformV1SupervisedTuningSpec",
4364443694
"properties": {
43695+
"exportLastCheckpointOnly": {
43696+
"description": "Optional. If set to true, disable intermediate checkpoints for SFT and only the last checkpoint will be exported. Otherwise, enable intermediate checkpoints for SFT. Default is false.",
43697+
"type": "boolean"
43698+
},
4364543699
"hyperParameters": {
4364643700
"$ref": "GoogleCloudAiplatformV1SupervisedHyperParameters",
4364743701
"description": "Optional. Hyperparameters for SFT."
@@ -45274,6 +45328,14 @@
4527445328
"description": "The Model Registry Model and Online Prediction Endpoint associated with this TuningJob.",
4527545329
"id": "GoogleCloudAiplatformV1TunedModel",
4527645330
"properties": {
45331+
"checkpoints": {
45332+
"description": "Output only. The checkpoints associated with this TunedModel. This field is only populated for tuning jobs that enable intermediate checkpoints.",
45333+
"items": {
45334+
"$ref": "GoogleCloudAiplatformV1TunedModelCheckpoint"
45335+
},
45336+
"readOnly": true,
45337+
"type": "array"
45338+
},
4527745339
"endpoint": {
4527845340
"description": "Output only. A resource name of an Endpoint. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}`.",
4527945341
"readOnly": true,
@@ -45287,6 +45349,31 @@
4528745349
},
4528845350
"type": "object"
4528945351
},
45352+
"GoogleCloudAiplatformV1TunedModelCheckpoint": {
45353+
"description": "TunedModelCheckpoint for the Tuned Model of a Tuning Job.",
45354+
"id": "GoogleCloudAiplatformV1TunedModelCheckpoint",
45355+
"properties": {
45356+
"checkpointId": {
45357+
"description": "The ID of the checkpoint.",
45358+
"type": "string"
45359+
},
45360+
"endpoint": {
45361+
"description": "The Endpoint resource name that the checkpoint is deployed to. Format: `projects/{project}/locations/{location}/endpoints/{endpoint}`.",
45362+
"type": "string"
45363+
},
45364+
"epoch": {
45365+
"description": "The epoch of the checkpoint.",
45366+
"format": "int64",
45367+
"type": "string"
45368+
},
45369+
"step": {
45370+
"description": "The step of the checkpoint.",
45371+
"format": "int64",
45372+
"type": "string"
45373+
}
45374+
},
45375+
"type": "object"
45376+
},
4529045377
"GoogleCloudAiplatformV1TunedModelRef": {
4529145378
"description": "TunedModel Reference for legacy model migration.",
4529245379
"id": "GoogleCloudAiplatformV1TunedModelRef",

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy