Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions NEXT_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
### Documentation
* Added `disabled` field to `task` block in `databricks_job` resource, allowing individual tasks to be disabled ([#5767](https://github.com/databricks/terraform-provider-databricks/pull/5767)).

* Document `STORAGE_OPTIMIZED` endpoint type for `databricks_vector_search_endpoint` ([#5765](https://github.com/databricks/terraform-provider-databricks/issues/5765)).

### Exporter

### Internal Changes
4 changes: 3 additions & 1 deletion docs/resources/vector_search_endpoint.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ resource "databricks_vector_search_endpoint" "this" {
The following arguments are supported:

* `name` - (Required) Name of the Mosaic AI Vector Search Endpoint to create. (Change leads to recreation of the resource).
* `endpoint_type` (Required) Type of Mosaic AI Vector Search Endpoint. Currently only accepting single value: `STANDARD` (See [documentation](https://docs.databricks.com/api/workspace/vectorsearchendpoints/createendpoint) for the list of currently supported values). (Change leads to recreation of the resource).
* `endpoint_type` (Required, change leads to recreation of the resource) Type of Mosaic AI Vector Search Endpoint. See [documentation](https://docs.databricks.com/api/workspace/vectorsearchendpoints/createendpoint) for the list of currently supported values:
* `STANDARD`
* `STORAGE_OPTIMIZED`
* `budget_policy_id` - (Optional) The Budget Policy ID set for this resource.
* `provider_config` - (Optional) Configure the provider for management through account provider. This block consists of the following fields:
* `workspace_id` - (Required) Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
Expand Down
Loading