You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: aiplatform/v1/aiplatform-api.json
+65-11Lines changed: 65 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -4271,7 +4271,7 @@
4271
4271
],
4272
4272
"parameters": {
4273
4273
"featureGroupId": {
4274
-
"description": "Required. The ID to use for this FeatureGroup, which will become the final component of the FeatureGroup's resource name. This value may be up to 60 characters, and valid characters are `[a-z0-9_]`. The first character cannot be a number. The value must be unique within the project and location.",
4274
+
"description": "Required. The ID to use for this FeatureGroup, which will become the final component of the FeatureGroup's resource name. This value may be up to 128 characters, and valid characters are `[a-z0-9_]`. The first character cannot be a number. The value must be unique within the project and location.",
"description": "Optional. Generation config that the model will use to generate the response."
19858
+
},
19847
19859
"instances": {
19848
19860
"description": "Optional. The instances that are the input to token counting call. Schema is identical to the prediction schema of the underlying model.",
19849
19861
"items": {
@@ -21062,6 +21074,13 @@
21062
21074
"description": "Output only. Provides paths for users to send requests directly to the deployed index services running on Cloud via private services access. This field is populated if network is configured.",
21063
21075
"readOnly": true
21064
21076
},
21077
+
"pscAutomationConfigs": {
21078
+
"description": "Optional. If set for PSC deployed index, PSC connection will be automatically created after deployment is done and the endpoint information is populated in private_endpoints.psc_automated_endpoints.",
"description": "Optional. A list of reserved ip ranges under the VPC network that can be used for this DeployedIndex. If set, we will deploy the index within the provided ip ranges. Otherwise, the index might be deployed to any ip ranges under the provided VPC network. The value should be the name of the address (https://cloud.google.com/compute/docs/reference/rest/v1/addresses) Example: ['vertex-ai-ip-range']. For more information about subnets and network IP ranges, please see https://cloud.google.com/vpc/docs/subnets#manually_created_subnet_ip_ranges.",
21067
21086
"items": {
@@ -23072,7 +23091,7 @@
23072
23091
"description": "Required. Immutable. The BigQuery source URI that points to either a BigQuery Table or View."
23073
23092
},
23074
23093
"dense": {
23075
-
"description": "Optional. If set, all feature values will be fetched from a single row per unique entityId including nulls. If not set, will collapse all rows for each unique entityId into a singe row with any non-null values if present, if no non-null values are present will sync null. ex: If source has schema (entity_id, feature_timestamp, f0, f1) and values (e1, 2020-01-01T10:00:00.123Z, 10, 15)(e1, 2020-02-01T10:00:00.123Z, 20, null) If dense is set, (e1, 20, null) is synced to online stores. If dense is not set, (e1, 20, 15) is synced to online stores.",
23094
+
"description": "Optional. If set, all feature values will be fetched from a single row per unique entityId including nulls. If not set, will collapse all rows for each unique entityId into a singe row with any non-null values if present, if no non-null values are present will sync null. ex: If source has schema `(entity_id, feature_timestamp, f0, f1)` and the following rows: `(e1, 2020-01-01T10:00:00.123Z, 10, 15)` `(e1, 2020-02-01T10:00:00.123Z, 20, null)` If dense is set, `(e1, 20, null)` is synced to online stores. If dense is not set, `(e1, 20, 15)` is synced to online stores.",
23076
23095
"type": "boolean"
23077
23096
},
23078
23097
"entityIdColumns": {
@@ -23746,7 +23765,7 @@
23746
23765
"type": "string"
23747
23766
},
23748
23767
"uri": {
23749
-
"description": "Required. The BigQuery view/table URI that will be materialized on each manual sync trigger. The table/view is expected to have the following columns at least: Field name Type Mode corpus_idSTRING REQUIRED/NULLABLEfile_idSTRING REQUIRED/NULLABLEchunk_idSTRING REQUIRED/NULLABLEchunk_data_typeSTRING REQUIRED/NULLABLEchunk_dataSTRING REQUIRED/NULLABLEembeddingsFLOAT REPEATEDfile_original_uriSTRING REQUIRED/NULLABLE",
23768
+
"description": "Required. The BigQuery view/table URI that will be materialized on each manual sync trigger. The table/view is expected to have the following columns and types at least: - `corpus_id` (STRING, NULLABLE/REQUIRED) - `file_id` (STRING, NULLABLE/REQUIRED) - `chunk_id` (STRING, NULLABLE/REQUIRED) - `chunk_data_type` (STRING, NULLABLE/REQUIRED) - `chunk_data` (STRING, NULLABLE/REQUIRED) - `embeddings` (FLOAT, REPEATED) - `file_original_uri` (STRING, NULLABLE/REQUIRED)",
"description": "Optional. The labels with user-defined metadata for the request. It is used for billing and reporting only. Label keys and values can be no longer than 63 characters (Unicode codepoints) and can only contain lowercase letters, numeric characters, underscores, and dashes. International characters are allowed. Label values are optional. Label keys must start with a letter.",
24499
+
"type": "object"
24500
+
},
24475
24501
"safetySettings": {
24476
24502
"description": "Optional. Per request settings for blocking unsafe content. Enforced on GenerateContentResponse.candidates.",
24477
24503
"items": {
@@ -29506,6 +29532,21 @@
29506
29532
},
29507
29533
"type": "object"
29508
29534
},
29535
+
"GoogleCloudAiplatformV1PSCAutomationConfig": {
29536
+
"description": "PSC config that is used to automatically create forwarding rule via ServiceConnectionMap.",
"description": "Required. The full name of the Google Compute Engine [network](https://cloud.google.com/compute/docs/networks-and-firewalls#networks). [Format](https://cloud.google.com/compute/docs/reference/rest/v1/networks/insert): `projects/{project}/global/networks/{network}`. Where {project} is a project number, as in '12345', and {network} is network name.",
29541
+
"type": "string"
29542
+
},
29543
+
"projectId": {
29544
+
"description": "Required. Project id used to create forwarding rule.",
0 commit comments