published on Thursday, Jun 18, 2026 by Pulumi
published on Thursday, Jun 18, 2026 by Pulumi
Create AiSearchEndpoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AiSearchEndpoint(name: string, args: AiSearchEndpointArgs, opts?: CustomResourceOptions);@overload
def AiSearchEndpoint(resource_name: str,
args: AiSearchEndpointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AiSearchEndpoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
endpoint_type: Optional[str] = None,
parent: Optional[str] = None,
budget_policy_id: Optional[str] = None,
custom_tags: Optional[Sequence[AiSearchEndpointCustomTagArgs]] = None,
endpoint_id: Optional[str] = None,
provider_config: Optional[AiSearchEndpointProviderConfigArgs] = None,
replica_count: Optional[int] = None,
target_qps: Optional[int] = None,
usage_policy_id: Optional[str] = None)func NewAiSearchEndpoint(ctx *Context, name string, args AiSearchEndpointArgs, opts ...ResourceOption) (*AiSearchEndpoint, error)public AiSearchEndpoint(string name, AiSearchEndpointArgs args, CustomResourceOptions? opts = null)
public AiSearchEndpoint(String name, AiSearchEndpointArgs args)
public AiSearchEndpoint(String name, AiSearchEndpointArgs args, CustomResourceOptions options)
type: databricks:AiSearchEndpoint
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "databricks_aisearchendpoint" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args AiSearchEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AiSearchEndpointArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AiSearchEndpointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AiSearchEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AiSearchEndpointArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var aiSearchEndpointResource = new Databricks.AiSearchEndpoint("aiSearchEndpointResource", new()
{
EndpointType = "string",
Parent = "string",
BudgetPolicyId = "string",
CustomTags = new[]
{
new Databricks.Inputs.AiSearchEndpointCustomTagArgs
{
Key = "string",
Value = "string",
},
},
EndpointId = "string",
ProviderConfig = new Databricks.Inputs.AiSearchEndpointProviderConfigArgs
{
WorkspaceId = "string",
},
ReplicaCount = 0,
TargetQps = 0,
UsagePolicyId = "string",
});
example, err := databricks.NewAiSearchEndpoint(ctx, "aiSearchEndpointResource", &databricks.AiSearchEndpointArgs{
EndpointType: pulumi.String("string"),
Parent: pulumi.String("string"),
BudgetPolicyId: pulumi.String("string"),
CustomTags: databricks.AiSearchEndpointCustomTagArray{
&databricks.AiSearchEndpointCustomTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
EndpointId: pulumi.String("string"),
ProviderConfig: &databricks.AiSearchEndpointProviderConfigArgs{
WorkspaceId: pulumi.String("string"),
},
ReplicaCount: pulumi.Int(0),
TargetQps: pulumi.Int(0),
UsagePolicyId: pulumi.String("string"),
})
resource "databricks_aisearchendpoint" "aiSearchEndpointResource" {
endpoint_type = "string"
parent = "string"
budget_policy_id = "string"
custom_tags {
key = "string"
value = "string"
}
endpoint_id = "string"
provider_config = {
workspace_id = "string"
}
replica_count = 0
target_qps = 0
usage_policy_id = "string"
}
var aiSearchEndpointResource = new AiSearchEndpoint("aiSearchEndpointResource", AiSearchEndpointArgs.builder()
.endpointType("string")
.parent("string")
.budgetPolicyId("string")
.customTags(AiSearchEndpointCustomTagArgs.builder()
.key("string")
.value("string")
.build())
.endpointId("string")
.providerConfig(AiSearchEndpointProviderConfigArgs.builder()
.workspaceId("string")
.build())
.replicaCount(0)
.targetQps(0)
.usagePolicyId("string")
.build());
ai_search_endpoint_resource = databricks.AiSearchEndpoint("aiSearchEndpointResource",
endpoint_type="string",
parent="string",
budget_policy_id="string",
custom_tags=[{
"key": "string",
"value": "string",
}],
endpoint_id="string",
provider_config={
"workspace_id": "string",
},
replica_count=0,
target_qps=0,
usage_policy_id="string")
const aiSearchEndpointResource = new databricks.AiSearchEndpoint("aiSearchEndpointResource", {
endpointType: "string",
parent: "string",
budgetPolicyId: "string",
customTags: [{
key: "string",
value: "string",
}],
endpointId: "string",
providerConfig: {
workspaceId: "string",
},
replicaCount: 0,
targetQps: 0,
usagePolicyId: "string",
});
type: databricks:AiSearchEndpoint
properties:
budgetPolicyId: string
customTags:
- key: string
value: string
endpointId: string
endpointType: string
parent: string
providerConfig:
workspaceId: string
replicaCount: 0
targetQps: 0
usagePolicyId: string
AiSearchEndpoint Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The AiSearchEndpoint resource accepts the following input properties:
- Endpoint
Type string - Type of endpoint. Required on create and immutable thereafter. Possible values are:
STANDARD,STORAGE_OPTIMIZED - Parent string
- The Workspace where this Endpoint will be created.
Format:
workspaces/{workspace_id} - Budget
Policy stringId - The user-selected budget policy id for the endpoint
-
List<Ai
Search Endpoint Custom Tag> - The custom tags assigned to the endpoint
- Endpoint
Id string - The user-supplied short name for the Endpoint, per AIP-133. The server composes the
full
Endpoint.nameas{parent}/endpoints/{endpoint_id}. AIP-133 does not listendpointIdas a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE - Provider
Config AiSearch Endpoint Provider Config - Configure the provider for management through account provider.
- Replica
Count int - The client-supplied desired number of replicas for the endpoint, applied at
create/update time. Mutually exclusive with
targetQps - Target
Qps int - Target QPS for the endpoint. Mutually exclusive with
replicaCount. Best-effort; the system does not guarantee this QPS will be achieved - Usage
Policy stringId - The usage policy id applied to the endpoint
- Endpoint
Type string - Type of endpoint. Required on create and immutable thereafter. Possible values are:
STANDARD,STORAGE_OPTIMIZED - Parent string
- The Workspace where this Endpoint will be created.
Format:
workspaces/{workspace_id} - Budget
Policy stringId - The user-selected budget policy id for the endpoint
-
[]Ai
Search Endpoint Custom Tag Args - The custom tags assigned to the endpoint
- Endpoint
Id string - The user-supplied short name for the Endpoint, per AIP-133. The server composes the
full
Endpoint.nameas{parent}/endpoints/{endpoint_id}. AIP-133 does not listendpointIdas a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE - Provider
Config AiSearch Endpoint Provider Config Args - Configure the provider for management through account provider.
- Replica
Count int - The client-supplied desired number of replicas for the endpoint, applied at
create/update time. Mutually exclusive with
targetQps - Target
Qps int - Target QPS for the endpoint. Mutually exclusive with
replicaCount. Best-effort; the system does not guarantee this QPS will be achieved - Usage
Policy stringId - The usage policy id applied to the endpoint
- endpoint_
type string - Type of endpoint. Required on create and immutable thereafter. Possible values are:
STANDARD,STORAGE_OPTIMIZED - parent string
- The Workspace where this Endpoint will be created.
Format:
workspaces/{workspace_id} - budget_
policy_ stringid - The user-selected budget policy id for the endpoint
- list(object)
- The custom tags assigned to the endpoint
- endpoint_
id string - The user-supplied short name for the Endpoint, per AIP-133. The server composes the
full
Endpoint.nameas{parent}/endpoints/{endpoint_id}. AIP-133 does not listendpointIdas a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE - provider_
config object - Configure the provider for management through account provider.
- replica_
count number - The client-supplied desired number of replicas for the endpoint, applied at
create/update time. Mutually exclusive with
targetQps - target_
qps number - Target QPS for the endpoint. Mutually exclusive with
replicaCount. Best-effort; the system does not guarantee this QPS will be achieved - usage_
policy_ stringid - The usage policy id applied to the endpoint
- endpoint
Type String - Type of endpoint. Required on create and immutable thereafter. Possible values are:
STANDARD,STORAGE_OPTIMIZED - parent String
- The Workspace where this Endpoint will be created.
Format:
workspaces/{workspace_id} - budget
Policy StringId - The user-selected budget policy id for the endpoint
-
List<Ai
Search Endpoint Custom Tag> - The custom tags assigned to the endpoint
- endpoint
Id String - The user-supplied short name for the Endpoint, per AIP-133. The server composes the
full
Endpoint.nameas{parent}/endpoints/{endpoint_id}. AIP-133 does not listendpointIdas a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE - provider
Config AiSearch Endpoint Provider Config - Configure the provider for management through account provider.
- replica
Count Integer - The client-supplied desired number of replicas for the endpoint, applied at
create/update time. Mutually exclusive with
targetQps - target
Qps Integer - Target QPS for the endpoint. Mutually exclusive with
replicaCount. Best-effort; the system does not guarantee this QPS will be achieved - usage
Policy StringId - The usage policy id applied to the endpoint
- endpoint
Type string - Type of endpoint. Required on create and immutable thereafter. Possible values are:
STANDARD,STORAGE_OPTIMIZED - parent string
- The Workspace where this Endpoint will be created.
Format:
workspaces/{workspace_id} - budget
Policy stringId - The user-selected budget policy id for the endpoint
-
Ai
Search Endpoint Custom Tag[] - The custom tags assigned to the endpoint
- endpoint
Id string - The user-supplied short name for the Endpoint, per AIP-133. The server composes the
full
Endpoint.nameas{parent}/endpoints/{endpoint_id}. AIP-133 does not listendpointIdas a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE - provider
Config AiSearch Endpoint Provider Config - Configure the provider for management through account provider.
- replica
Count number - The client-supplied desired number of replicas for the endpoint, applied at
create/update time. Mutually exclusive with
targetQps - target
Qps number - Target QPS for the endpoint. Mutually exclusive with
replicaCount. Best-effort; the system does not guarantee this QPS will be achieved - usage
Policy stringId - The usage policy id applied to the endpoint
- endpoint_
type str - Type of endpoint. Required on create and immutable thereafter. Possible values are:
STANDARD,STORAGE_OPTIMIZED - parent str
- The Workspace where this Endpoint will be created.
Format:
workspaces/{workspace_id} - budget_
policy_ strid - The user-selected budget policy id for the endpoint
-
Sequence[Ai
Search Endpoint Custom Tag Args] - The custom tags assigned to the endpoint
- endpoint_
id str - The user-supplied short name for the Endpoint, per AIP-133. The server composes the
full
Endpoint.nameas{parent}/endpoints/{endpoint_id}. AIP-133 does not listendpointIdas a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE - provider_
config AiSearch Endpoint Provider Config Args - Configure the provider for management through account provider.
- replica_
count int - The client-supplied desired number of replicas for the endpoint, applied at
create/update time. Mutually exclusive with
targetQps - target_
qps int - Target QPS for the endpoint. Mutually exclusive with
replicaCount. Best-effort; the system does not guarantee this QPS will be achieved - usage_
policy_ strid - The usage policy id applied to the endpoint
- endpoint
Type String - Type of endpoint. Required on create and immutable thereafter. Possible values are:
STANDARD,STORAGE_OPTIMIZED - parent String
- The Workspace where this Endpoint will be created.
Format:
workspaces/{workspace_id} - budget
Policy StringId - The user-selected budget policy id for the endpoint
- List<Property Map>
- The custom tags assigned to the endpoint
- endpoint
Id String - The user-supplied short name for the Endpoint, per AIP-133. The server composes the
full
Endpoint.nameas{parent}/endpoints/{endpoint_id}. AIP-133 does not listendpointIdas a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE - provider
Config Property Map - Configure the provider for management through account provider.
- replica
Count Number - The client-supplied desired number of replicas for the endpoint, applied at
create/update time. Mutually exclusive with
targetQps - target
Qps Number - Target QPS for the endpoint. Mutually exclusive with
replicaCount. Best-effort; the system does not guarantee this QPS will be achieved - usage
Policy StringId - The usage policy id applied to the endpoint
Outputs
All input properties are implicitly available as output properties. Additionally, the AiSearchEndpoint resource produces the following output properties:
- Create
Time string - (string) - Time the endpoint was created
- Creator string
- (string) - Creator of the endpoint
- Effective
Budget stringPolicy Id - (string) - The budget policy id applied to the endpoint
- Endpoint
Status AiSearch Endpoint Endpoint Status - (EndpointStatus) - Current status of the endpoint
- Id string
- The provider-assigned unique ID for this managed resource.
- Index
Count int - (integer) - Number of indexes on the endpoint
- Last
Updated stringUser - (string) - User who last updated the endpoint
- Name string
- (string) - Name of the AI Search endpoint. Server-assigned full resource path
(
workspaces/{workspace}/endpoints/{endpoint}) on output. On create, the user-supplied short name is conveyed viaCreateEndpointRequest.endpoint_id; the server composes the fullnameand returns it on the response - Scaling
Info AiSearch Endpoint Scaling Info - (EndpointScalingInfo) - Scaling information for the endpoint
- Throughput
Info AiSearch Endpoint Throughput Info - (EndpointThroughputInfo) - Throughput information for the endpoint
- Update
Time string - (string) - Time the endpoint was last updated
- Create
Time string - (string) - Time the endpoint was created
- Creator string
- (string) - Creator of the endpoint
- Effective
Budget stringPolicy Id - (string) - The budget policy id applied to the endpoint
- Endpoint
Status AiSearch Endpoint Endpoint Status - (EndpointStatus) - Current status of the endpoint
- Id string
- The provider-assigned unique ID for this managed resource.
- Index
Count int - (integer) - Number of indexes on the endpoint
- Last
Updated stringUser - (string) - User who last updated the endpoint
- Name string
- (string) - Name of the AI Search endpoint. Server-assigned full resource path
(
workspaces/{workspace}/endpoints/{endpoint}) on output. On create, the user-supplied short name is conveyed viaCreateEndpointRequest.endpoint_id; the server composes the fullnameand returns it on the response - Scaling
Info AiSearch Endpoint Scaling Info - (EndpointScalingInfo) - Scaling information for the endpoint
- Throughput
Info AiSearch Endpoint Throughput Info - (EndpointThroughputInfo) - Throughput information for the endpoint
- Update
Time string - (string) - Time the endpoint was last updated
- create_
time string - (string) - Time the endpoint was created
- creator string
- (string) - Creator of the endpoint
- effective_
budget_ stringpolicy_ id - (string) - The budget policy id applied to the endpoint
- endpoint_
status object - (EndpointStatus) - Current status of the endpoint
- id string
- The provider-assigned unique ID for this managed resource.
- index_
count number - (integer) - Number of indexes on the endpoint
- last_
updated_ stringuser - (string) - User who last updated the endpoint
- name string
- (string) - Name of the AI Search endpoint. Server-assigned full resource path
(
workspaces/{workspace}/endpoints/{endpoint}) on output. On create, the user-supplied short name is conveyed viaCreateEndpointRequest.endpoint_id; the server composes the fullnameand returns it on the response - scaling_
info object - (EndpointScalingInfo) - Scaling information for the endpoint
- throughput_
info object - (EndpointThroughputInfo) - Throughput information for the endpoint
- update_
time string - (string) - Time the endpoint was last updated
- create
Time String - (string) - Time the endpoint was created
- creator String
- (string) - Creator of the endpoint
- effective
Budget StringPolicy Id - (string) - The budget policy id applied to the endpoint
- endpoint
Status AiSearch Endpoint Endpoint Status - (EndpointStatus) - Current status of the endpoint
- id String
- The provider-assigned unique ID for this managed resource.
- index
Count Integer - (integer) - Number of indexes on the endpoint
- last
Updated StringUser - (string) - User who last updated the endpoint
- name String
- (string) - Name of the AI Search endpoint. Server-assigned full resource path
(
workspaces/{workspace}/endpoints/{endpoint}) on output. On create, the user-supplied short name is conveyed viaCreateEndpointRequest.endpoint_id; the server composes the fullnameand returns it on the response - scaling
Info AiSearch Endpoint Scaling Info - (EndpointScalingInfo) - Scaling information for the endpoint
- throughput
Info AiSearch Endpoint Throughput Info - (EndpointThroughputInfo) - Throughput information for the endpoint
- update
Time String - (string) - Time the endpoint was last updated
- create
Time string - (string) - Time the endpoint was created
- creator string
- (string) - Creator of the endpoint
- effective
Budget stringPolicy Id - (string) - The budget policy id applied to the endpoint
- endpoint
Status AiSearch Endpoint Endpoint Status - (EndpointStatus) - Current status of the endpoint
- id string
- The provider-assigned unique ID for this managed resource.
- index
Count number - (integer) - Number of indexes on the endpoint
- last
Updated stringUser - (string) - User who last updated the endpoint
- name string
- (string) - Name of the AI Search endpoint. Server-assigned full resource path
(
workspaces/{workspace}/endpoints/{endpoint}) on output. On create, the user-supplied short name is conveyed viaCreateEndpointRequest.endpoint_id; the server composes the fullnameand returns it on the response - scaling
Info AiSearch Endpoint Scaling Info - (EndpointScalingInfo) - Scaling information for the endpoint
- throughput
Info AiSearch Endpoint Throughput Info - (EndpointThroughputInfo) - Throughput information for the endpoint
- update
Time string - (string) - Time the endpoint was last updated
- create_
time str - (string) - Time the endpoint was created
- creator str
- (string) - Creator of the endpoint
- effective_
budget_ strpolicy_ id - (string) - The budget policy id applied to the endpoint
- endpoint_
status AiSearch Endpoint Endpoint Status - (EndpointStatus) - Current status of the endpoint
- id str
- The provider-assigned unique ID for this managed resource.
- index_
count int - (integer) - Number of indexes on the endpoint
- last_
updated_ struser - (string) - User who last updated the endpoint
- name str
- (string) - Name of the AI Search endpoint. Server-assigned full resource path
(
workspaces/{workspace}/endpoints/{endpoint}) on output. On create, the user-supplied short name is conveyed viaCreateEndpointRequest.endpoint_id; the server composes the fullnameand returns it on the response - scaling_
info AiSearch Endpoint Scaling Info - (EndpointScalingInfo) - Scaling information for the endpoint
- throughput_
info AiSearch Endpoint Throughput Info - (EndpointThroughputInfo) - Throughput information for the endpoint
- update_
time str - (string) - Time the endpoint was last updated
- create
Time String - (string) - Time the endpoint was created
- creator String
- (string) - Creator of the endpoint
- effective
Budget StringPolicy Id - (string) - The budget policy id applied to the endpoint
- endpoint
Status Property Map - (EndpointStatus) - Current status of the endpoint
- id String
- The provider-assigned unique ID for this managed resource.
- index
Count Number - (integer) - Number of indexes on the endpoint
- last
Updated StringUser - (string) - User who last updated the endpoint
- name String
- (string) - Name of the AI Search endpoint. Server-assigned full resource path
(
workspaces/{workspace}/endpoints/{endpoint}) on output. On create, the user-supplied short name is conveyed viaCreateEndpointRequest.endpoint_id; the server composes the fullnameand returns it on the response - scaling
Info Property Map - (EndpointScalingInfo) - Scaling information for the endpoint
- throughput
Info Property Map - (EndpointThroughputInfo) - Throughput information for the endpoint
- update
Time String - (string) - Time the endpoint was last updated
Look up Existing AiSearchEndpoint Resource
Get an existing AiSearchEndpoint resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AiSearchEndpointState, opts?: CustomResourceOptions): AiSearchEndpoint@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
budget_policy_id: Optional[str] = None,
create_time: Optional[str] = None,
creator: Optional[str] = None,
custom_tags: Optional[Sequence[AiSearchEndpointCustomTagArgs]] = None,
effective_budget_policy_id: Optional[str] = None,
endpoint_id: Optional[str] = None,
endpoint_status: Optional[AiSearchEndpointEndpointStatusArgs] = None,
endpoint_type: Optional[str] = None,
index_count: Optional[int] = None,
last_updated_user: Optional[str] = None,
name: Optional[str] = None,
parent: Optional[str] = None,
provider_config: Optional[AiSearchEndpointProviderConfigArgs] = None,
replica_count: Optional[int] = None,
scaling_info: Optional[AiSearchEndpointScalingInfoArgs] = None,
target_qps: Optional[int] = None,
throughput_info: Optional[AiSearchEndpointThroughputInfoArgs] = None,
update_time: Optional[str] = None,
usage_policy_id: Optional[str] = None) -> AiSearchEndpointfunc GetAiSearchEndpoint(ctx *Context, name string, id IDInput, state *AiSearchEndpointState, opts ...ResourceOption) (*AiSearchEndpoint, error)public static AiSearchEndpoint Get(string name, Input<string> id, AiSearchEndpointState? state, CustomResourceOptions? opts = null)public static AiSearchEndpoint get(String name, Output<String> id, AiSearchEndpointState state, CustomResourceOptions options)resources: _: type: databricks:AiSearchEndpoint get: id: ${id}import {
to = databricks_aisearchendpoint.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Budget
Policy stringId - The user-selected budget policy id for the endpoint
- Create
Time string - (string) - Time the endpoint was created
- Creator string
- (string) - Creator of the endpoint
-
List<Ai
Search Endpoint Custom Tag> - The custom tags assigned to the endpoint
- Effective
Budget stringPolicy Id - (string) - The budget policy id applied to the endpoint
- Endpoint
Id string - The user-supplied short name for the Endpoint, per AIP-133. The server composes the
full
Endpoint.nameas{parent}/endpoints/{endpoint_id}. AIP-133 does not listendpointIdas a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE - Endpoint
Status AiSearch Endpoint Endpoint Status - (EndpointStatus) - Current status of the endpoint
- Endpoint
Type string - Type of endpoint. Required on create and immutable thereafter. Possible values are:
STANDARD,STORAGE_OPTIMIZED - Index
Count int - (integer) - Number of indexes on the endpoint
- Last
Updated stringUser - (string) - User who last updated the endpoint
- Name string
- (string) - Name of the AI Search endpoint. Server-assigned full resource path
(
workspaces/{workspace}/endpoints/{endpoint}) on output. On create, the user-supplied short name is conveyed viaCreateEndpointRequest.endpoint_id; the server composes the fullnameand returns it on the response - Parent string
- The Workspace where this Endpoint will be created.
Format:
workspaces/{workspace_id} - Provider
Config AiSearch Endpoint Provider Config - Configure the provider for management through account provider.
- Replica
Count int - The client-supplied desired number of replicas for the endpoint, applied at
create/update time. Mutually exclusive with
targetQps - Scaling
Info AiSearch Endpoint Scaling Info - (EndpointScalingInfo) - Scaling information for the endpoint
- Target
Qps int - Target QPS for the endpoint. Mutually exclusive with
replicaCount. Best-effort; the system does not guarantee this QPS will be achieved - Throughput
Info AiSearch Endpoint Throughput Info - (EndpointThroughputInfo) - Throughput information for the endpoint
- Update
Time string - (string) - Time the endpoint was last updated
- Usage
Policy stringId - The usage policy id applied to the endpoint
- Budget
Policy stringId - The user-selected budget policy id for the endpoint
- Create
Time string - (string) - Time the endpoint was created
- Creator string
- (string) - Creator of the endpoint
-
[]Ai
Search Endpoint Custom Tag Args - The custom tags assigned to the endpoint
- Effective
Budget stringPolicy Id - (string) - The budget policy id applied to the endpoint
- Endpoint
Id string - The user-supplied short name for the Endpoint, per AIP-133. The server composes the
full
Endpoint.nameas{parent}/endpoints/{endpoint_id}. AIP-133 does not listendpointIdas a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE - Endpoint
Status AiSearch Endpoint Endpoint Status Args - (EndpointStatus) - Current status of the endpoint
- Endpoint
Type string - Type of endpoint. Required on create and immutable thereafter. Possible values are:
STANDARD,STORAGE_OPTIMIZED - Index
Count int - (integer) - Number of indexes on the endpoint
- Last
Updated stringUser - (string) - User who last updated the endpoint
- Name string
- (string) - Name of the AI Search endpoint. Server-assigned full resource path
(
workspaces/{workspace}/endpoints/{endpoint}) on output. On create, the user-supplied short name is conveyed viaCreateEndpointRequest.endpoint_id; the server composes the fullnameand returns it on the response - Parent string
- The Workspace where this Endpoint will be created.
Format:
workspaces/{workspace_id} - Provider
Config AiSearch Endpoint Provider Config Args - Configure the provider for management through account provider.
- Replica
Count int - The client-supplied desired number of replicas for the endpoint, applied at
create/update time. Mutually exclusive with
targetQps - Scaling
Info AiSearch Endpoint Scaling Info Args - (EndpointScalingInfo) - Scaling information for the endpoint
- Target
Qps int - Target QPS for the endpoint. Mutually exclusive with
replicaCount. Best-effort; the system does not guarantee this QPS will be achieved - Throughput
Info AiSearch Endpoint Throughput Info Args - (EndpointThroughputInfo) - Throughput information for the endpoint
- Update
Time string - (string) - Time the endpoint was last updated
- Usage
Policy stringId - The usage policy id applied to the endpoint
- budget_
policy_ stringid - The user-selected budget policy id for the endpoint
- create_
time string - (string) - Time the endpoint was created
- creator string
- (string) - Creator of the endpoint
- list(object)
- The custom tags assigned to the endpoint
- effective_
budget_ stringpolicy_ id - (string) - The budget policy id applied to the endpoint
- endpoint_
id string - The user-supplied short name for the Endpoint, per AIP-133. The server composes the
full
Endpoint.nameas{parent}/endpoints/{endpoint_id}. AIP-133 does not listendpointIdas a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE - endpoint_
status object - (EndpointStatus) - Current status of the endpoint
- endpoint_
type string - Type of endpoint. Required on create and immutable thereafter. Possible values are:
STANDARD,STORAGE_OPTIMIZED - index_
count number - (integer) - Number of indexes on the endpoint
- last_
updated_ stringuser - (string) - User who last updated the endpoint
- name string
- (string) - Name of the AI Search endpoint. Server-assigned full resource path
(
workspaces/{workspace}/endpoints/{endpoint}) on output. On create, the user-supplied short name is conveyed viaCreateEndpointRequest.endpoint_id; the server composes the fullnameand returns it on the response - parent string
- The Workspace where this Endpoint will be created.
Format:
workspaces/{workspace_id} - provider_
config object - Configure the provider for management through account provider.
- replica_
count number - The client-supplied desired number of replicas for the endpoint, applied at
create/update time. Mutually exclusive with
targetQps - scaling_
info object - (EndpointScalingInfo) - Scaling information for the endpoint
- target_
qps number - Target QPS for the endpoint. Mutually exclusive with
replicaCount. Best-effort; the system does not guarantee this QPS will be achieved - throughput_
info object - (EndpointThroughputInfo) - Throughput information for the endpoint
- update_
time string - (string) - Time the endpoint was last updated
- usage_
policy_ stringid - The usage policy id applied to the endpoint
- budget
Policy StringId - The user-selected budget policy id for the endpoint
- create
Time String - (string) - Time the endpoint was created
- creator String
- (string) - Creator of the endpoint
-
List<Ai
Search Endpoint Custom Tag> - The custom tags assigned to the endpoint
- effective
Budget StringPolicy Id - (string) - The budget policy id applied to the endpoint
- endpoint
Id String - The user-supplied short name for the Endpoint, per AIP-133. The server composes the
full
Endpoint.nameas{parent}/endpoints/{endpoint_id}. AIP-133 does not listendpointIdas a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE - endpoint
Status AiSearch Endpoint Endpoint Status - (EndpointStatus) - Current status of the endpoint
- endpoint
Type String - Type of endpoint. Required on create and immutable thereafter. Possible values are:
STANDARD,STORAGE_OPTIMIZED - index
Count Integer - (integer) - Number of indexes on the endpoint
- last
Updated StringUser - (string) - User who last updated the endpoint
- name String
- (string) - Name of the AI Search endpoint. Server-assigned full resource path
(
workspaces/{workspace}/endpoints/{endpoint}) on output. On create, the user-supplied short name is conveyed viaCreateEndpointRequest.endpoint_id; the server composes the fullnameand returns it on the response - parent String
- The Workspace where this Endpoint will be created.
Format:
workspaces/{workspace_id} - provider
Config AiSearch Endpoint Provider Config - Configure the provider for management through account provider.
- replica
Count Integer - The client-supplied desired number of replicas for the endpoint, applied at
create/update time. Mutually exclusive with
targetQps - scaling
Info AiSearch Endpoint Scaling Info - (EndpointScalingInfo) - Scaling information for the endpoint
- target
Qps Integer - Target QPS for the endpoint. Mutually exclusive with
replicaCount. Best-effort; the system does not guarantee this QPS will be achieved - throughput
Info AiSearch Endpoint Throughput Info - (EndpointThroughputInfo) - Throughput information for the endpoint
- update
Time String - (string) - Time the endpoint was last updated
- usage
Policy StringId - The usage policy id applied to the endpoint
- budget
Policy stringId - The user-selected budget policy id for the endpoint
- create
Time string - (string) - Time the endpoint was created
- creator string
- (string) - Creator of the endpoint
-
Ai
Search Endpoint Custom Tag[] - The custom tags assigned to the endpoint
- effective
Budget stringPolicy Id - (string) - The budget policy id applied to the endpoint
- endpoint
Id string - The user-supplied short name for the Endpoint, per AIP-133. The server composes the
full
Endpoint.nameas{parent}/endpoints/{endpoint_id}. AIP-133 does not listendpointIdas a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE - endpoint
Status AiSearch Endpoint Endpoint Status - (EndpointStatus) - Current status of the endpoint
- endpoint
Type string - Type of endpoint. Required on create and immutable thereafter. Possible values are:
STANDARD,STORAGE_OPTIMIZED - index
Count number - (integer) - Number of indexes on the endpoint
- last
Updated stringUser - (string) - User who last updated the endpoint
- name string
- (string) - Name of the AI Search endpoint. Server-assigned full resource path
(
workspaces/{workspace}/endpoints/{endpoint}) on output. On create, the user-supplied short name is conveyed viaCreateEndpointRequest.endpoint_id; the server composes the fullnameand returns it on the response - parent string
- The Workspace where this Endpoint will be created.
Format:
workspaces/{workspace_id} - provider
Config AiSearch Endpoint Provider Config - Configure the provider for management through account provider.
- replica
Count number - The client-supplied desired number of replicas for the endpoint, applied at
create/update time. Mutually exclusive with
targetQps - scaling
Info AiSearch Endpoint Scaling Info - (EndpointScalingInfo) - Scaling information for the endpoint
- target
Qps number - Target QPS for the endpoint. Mutually exclusive with
replicaCount. Best-effort; the system does not guarantee this QPS will be achieved - throughput
Info AiSearch Endpoint Throughput Info - (EndpointThroughputInfo) - Throughput information for the endpoint
- update
Time string - (string) - Time the endpoint was last updated
- usage
Policy stringId - The usage policy id applied to the endpoint
- budget_
policy_ strid - The user-selected budget policy id for the endpoint
- create_
time str - (string) - Time the endpoint was created
- creator str
- (string) - Creator of the endpoint
-
Sequence[Ai
Search Endpoint Custom Tag Args] - The custom tags assigned to the endpoint
- effective_
budget_ strpolicy_ id - (string) - The budget policy id applied to the endpoint
- endpoint_
id str - The user-supplied short name for the Endpoint, per AIP-133. The server composes the
full
Endpoint.nameas{parent}/endpoints/{endpoint_id}. AIP-133 does not listendpointIdas a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE - endpoint_
status AiSearch Endpoint Endpoint Status Args - (EndpointStatus) - Current status of the endpoint
- endpoint_
type str - Type of endpoint. Required on create and immutable thereafter. Possible values are:
STANDARD,STORAGE_OPTIMIZED - index_
count int - (integer) - Number of indexes on the endpoint
- last_
updated_ struser - (string) - User who last updated the endpoint
- name str
- (string) - Name of the AI Search endpoint. Server-assigned full resource path
(
workspaces/{workspace}/endpoints/{endpoint}) on output. On create, the user-supplied short name is conveyed viaCreateEndpointRequest.endpoint_id; the server composes the fullnameand returns it on the response - parent str
- The Workspace where this Endpoint will be created.
Format:
workspaces/{workspace_id} - provider_
config AiSearch Endpoint Provider Config Args - Configure the provider for management through account provider.
- replica_
count int - The client-supplied desired number of replicas for the endpoint, applied at
create/update time. Mutually exclusive with
targetQps - scaling_
info AiSearch Endpoint Scaling Info Args - (EndpointScalingInfo) - Scaling information for the endpoint
- target_
qps int - Target QPS for the endpoint. Mutually exclusive with
replicaCount. Best-effort; the system does not guarantee this QPS will be achieved - throughput_
info AiSearch Endpoint Throughput Info Args - (EndpointThroughputInfo) - Throughput information for the endpoint
- update_
time str - (string) - Time the endpoint was last updated
- usage_
policy_ strid - The usage policy id applied to the endpoint
- budget
Policy StringId - The user-selected budget policy id for the endpoint
- create
Time String - (string) - Time the endpoint was created
- creator String
- (string) - Creator of the endpoint
- List<Property Map>
- The custom tags assigned to the endpoint
- effective
Budget StringPolicy Id - (string) - The budget policy id applied to the endpoint
- endpoint
Id String - The user-supplied short name for the Endpoint, per AIP-133. The server composes the
full
Endpoint.nameas{parent}/endpoints/{endpoint_id}. AIP-133 does not listendpointIdas a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE - endpoint
Status Property Map - (EndpointStatus) - Current status of the endpoint
- endpoint
Type String - Type of endpoint. Required on create and immutable thereafter. Possible values are:
STANDARD,STORAGE_OPTIMIZED - index
Count Number - (integer) - Number of indexes on the endpoint
- last
Updated StringUser - (string) - User who last updated the endpoint
- name String
- (string) - Name of the AI Search endpoint. Server-assigned full resource path
(
workspaces/{workspace}/endpoints/{endpoint}) on output. On create, the user-supplied short name is conveyed viaCreateEndpointRequest.endpoint_id; the server composes the fullnameand returns it on the response - parent String
- The Workspace where this Endpoint will be created.
Format:
workspaces/{workspace_id} - provider
Config Property Map - Configure the provider for management through account provider.
- replica
Count Number - The client-supplied desired number of replicas for the endpoint, applied at
create/update time. Mutually exclusive with
targetQps - scaling
Info Property Map - (EndpointScalingInfo) - Scaling information for the endpoint
- target
Qps Number - Target QPS for the endpoint. Mutually exclusive with
replicaCount. Best-effort; the system does not guarantee this QPS will be achieved - throughput
Info Property Map - (EndpointThroughputInfo) - Throughput information for the endpoint
- update
Time String - (string) - Time the endpoint was last updated
- usage
Policy StringId - The usage policy id applied to the endpoint
Supporting Types
AiSearchEndpointCustomTag, AiSearchEndpointCustomTagArgs
AiSearchEndpointEndpointStatus, AiSearchEndpointEndpointStatusArgs
- Message string
- (string) - Human-readable detail about the endpoint's current state or the reason for a state transition
- State string
- (string) - Current lifecycle state of the endpoint. See
Statefor the meaning of each value. Possible values are:DELETED,OFFLINE,ONLINE,PROVISIONING,RED_STATE,YELLOW_STATE
- Message string
- (string) - Human-readable detail about the endpoint's current state or the reason for a state transition
- State string
- (string) - Current lifecycle state of the endpoint. See
Statefor the meaning of each value. Possible values are:DELETED,OFFLINE,ONLINE,PROVISIONING,RED_STATE,YELLOW_STATE
- message string
- (string) - Human-readable detail about the endpoint's current state or the reason for a state transition
- state string
- (string) - Current lifecycle state of the endpoint. See
Statefor the meaning of each value. Possible values are:DELETED,OFFLINE,ONLINE,PROVISIONING,RED_STATE,YELLOW_STATE
- message String
- (string) - Human-readable detail about the endpoint's current state or the reason for a state transition
- state String
- (string) - Current lifecycle state of the endpoint. See
Statefor the meaning of each value. Possible values are:DELETED,OFFLINE,ONLINE,PROVISIONING,RED_STATE,YELLOW_STATE
- message string
- (string) - Human-readable detail about the endpoint's current state or the reason for a state transition
- state string
- (string) - Current lifecycle state of the endpoint. See
Statefor the meaning of each value. Possible values are:DELETED,OFFLINE,ONLINE,PROVISIONING,RED_STATE,YELLOW_STATE
- message str
- (string) - Human-readable detail about the endpoint's current state or the reason for a state transition
- state str
- (string) - Current lifecycle state of the endpoint. See
Statefor the meaning of each value. Possible values are:DELETED,OFFLINE,ONLINE,PROVISIONING,RED_STATE,YELLOW_STATE
- message String
- (string) - Human-readable detail about the endpoint's current state or the reason for a state transition
- state String
- (string) - Current lifecycle state of the endpoint. See
Statefor the meaning of each value. Possible values are:DELETED,OFFLINE,ONLINE,PROVISIONING,RED_STATE,YELLOW_STATE
AiSearchEndpointProviderConfig, AiSearchEndpointProviderConfigArgs
- Workspace
Id string - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- Workspace
Id string - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- workspace_
id string - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- workspace
Id String - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- workspace
Id string - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- workspace_
id str - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
- workspace
Id String - Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
AiSearchEndpointScalingInfo, AiSearchEndpointScalingInfoArgs
- Requested
Target intQps - The requested QPS target for the endpoint. Best-effort; the system does not guarantee this QPS will be achieved
- State string
- (string) - Current lifecycle state of the endpoint. See
Statefor the meaning of each value. Possible values are:DELETED,OFFLINE,ONLINE,PROVISIONING,RED_STATE,YELLOW_STATE
- Requested
Target intQps - The requested QPS target for the endpoint. Best-effort; the system does not guarantee this QPS will be achieved
- State string
- (string) - Current lifecycle state of the endpoint. See
Statefor the meaning of each value. Possible values are:DELETED,OFFLINE,ONLINE,PROVISIONING,RED_STATE,YELLOW_STATE
- requested_
target_ numberqps - The requested QPS target for the endpoint. Best-effort; the system does not guarantee this QPS will be achieved
- state string
- (string) - Current lifecycle state of the endpoint. See
Statefor the meaning of each value. Possible values are:DELETED,OFFLINE,ONLINE,PROVISIONING,RED_STATE,YELLOW_STATE
- requested
Target IntegerQps - The requested QPS target for the endpoint. Best-effort; the system does not guarantee this QPS will be achieved
- state String
- (string) - Current lifecycle state of the endpoint. See
Statefor the meaning of each value. Possible values are:DELETED,OFFLINE,ONLINE,PROVISIONING,RED_STATE,YELLOW_STATE
- requested
Target numberQps - The requested QPS target for the endpoint. Best-effort; the system does not guarantee this QPS will be achieved
- state string
- (string) - Current lifecycle state of the endpoint. See
Statefor the meaning of each value. Possible values are:DELETED,OFFLINE,ONLINE,PROVISIONING,RED_STATE,YELLOW_STATE
- requested_
target_ intqps - The requested QPS target for the endpoint. Best-effort; the system does not guarantee this QPS will be achieved
- state str
- (string) - Current lifecycle state of the endpoint. See
Statefor the meaning of each value. Possible values are:DELETED,OFFLINE,ONLINE,PROVISIONING,RED_STATE,YELLOW_STATE
- requested
Target NumberQps - The requested QPS target for the endpoint. Best-effort; the system does not guarantee this QPS will be achieved
- state String
- (string) - Current lifecycle state of the endpoint. See
Statefor the meaning of each value. Possible values are:DELETED,OFFLINE,ONLINE,PROVISIONING,RED_STATE,YELLOW_STATE
AiSearchEndpointThroughputInfo, AiSearchEndpointThroughputInfoArgs
- Change
Request stringMessage - (string) - Additional information about the throughput change request
- Change
Request stringState - (string) - The state of the most recent throughput change request. Possible values are:
CHANGE_ADJUSTED,CHANGE_FAILED,CHANGE_IN_PROGRESS,CHANGE_REACHED_MAXIMUM,CHANGE_REACHED_MINIMUM,CHANGE_SUCCESS - Current
Concurrency double - (number) - The current concurrency (total CPU) allocated to the endpoint
- Current
Concurrency doubleUtilization Percentage - (number) - The current utilization of concurrency as a percentage (0-100)
- Current
Num intReplicas - (integer) - The current number of replicas allocated to the endpoint
- Maximum
Concurrency doubleAllowed - The maximum concurrency allowed for this endpoint
- Minimal
Concurrency doubleAllowed - The minimum concurrency allowed for this endpoint
- Requested
Concurrency double - The requested concurrency (total CPU) for the endpoint
- Requested
Num intReplicas - The requested number of replicas for the endpoint
- Change
Request stringMessage - (string) - Additional information about the throughput change request
- Change
Request stringState - (string) - The state of the most recent throughput change request. Possible values are:
CHANGE_ADJUSTED,CHANGE_FAILED,CHANGE_IN_PROGRESS,CHANGE_REACHED_MAXIMUM,CHANGE_REACHED_MINIMUM,CHANGE_SUCCESS - Current
Concurrency float64 - (number) - The current concurrency (total CPU) allocated to the endpoint
- Current
Concurrency float64Utilization Percentage - (number) - The current utilization of concurrency as a percentage (0-100)
- Current
Num intReplicas - (integer) - The current number of replicas allocated to the endpoint
- Maximum
Concurrency float64Allowed - The maximum concurrency allowed for this endpoint
- Minimal
Concurrency float64Allowed - The minimum concurrency allowed for this endpoint
- Requested
Concurrency float64 - The requested concurrency (total CPU) for the endpoint
- Requested
Num intReplicas - The requested number of replicas for the endpoint
- change_
request_ stringmessage - (string) - Additional information about the throughput change request
- change_
request_ stringstate - (string) - The state of the most recent throughput change request. Possible values are:
CHANGE_ADJUSTED,CHANGE_FAILED,CHANGE_IN_PROGRESS,CHANGE_REACHED_MAXIMUM,CHANGE_REACHED_MINIMUM,CHANGE_SUCCESS - current_
concurrency number - (number) - The current concurrency (total CPU) allocated to the endpoint
- current_
concurrency_ numberutilization_ percentage - (number) - The current utilization of concurrency as a percentage (0-100)
- current_
num_ numberreplicas - (integer) - The current number of replicas allocated to the endpoint
- maximum_
concurrency_ numberallowed - The maximum concurrency allowed for this endpoint
- minimal_
concurrency_ numberallowed - The minimum concurrency allowed for this endpoint
- requested_
concurrency number - The requested concurrency (total CPU) for the endpoint
- requested_
num_ numberreplicas - The requested number of replicas for the endpoint
- change
Request StringMessage - (string) - Additional information about the throughput change request
- change
Request StringState - (string) - The state of the most recent throughput change request. Possible values are:
CHANGE_ADJUSTED,CHANGE_FAILED,CHANGE_IN_PROGRESS,CHANGE_REACHED_MAXIMUM,CHANGE_REACHED_MINIMUM,CHANGE_SUCCESS - current
Concurrency Double - (number) - The current concurrency (total CPU) allocated to the endpoint
- current
Concurrency DoubleUtilization Percentage - (number) - The current utilization of concurrency as a percentage (0-100)
- current
Num IntegerReplicas - (integer) - The current number of replicas allocated to the endpoint
- maximum
Concurrency DoubleAllowed - The maximum concurrency allowed for this endpoint
- minimal
Concurrency DoubleAllowed - The minimum concurrency allowed for this endpoint
- requested
Concurrency Double - The requested concurrency (total CPU) for the endpoint
- requested
Num IntegerReplicas - The requested number of replicas for the endpoint
- change
Request stringMessage - (string) - Additional information about the throughput change request
- change
Request stringState - (string) - The state of the most recent throughput change request. Possible values are:
CHANGE_ADJUSTED,CHANGE_FAILED,CHANGE_IN_PROGRESS,CHANGE_REACHED_MAXIMUM,CHANGE_REACHED_MINIMUM,CHANGE_SUCCESS - current
Concurrency number - (number) - The current concurrency (total CPU) allocated to the endpoint
- current
Concurrency numberUtilization Percentage - (number) - The current utilization of concurrency as a percentage (0-100)
- current
Num numberReplicas - (integer) - The current number of replicas allocated to the endpoint
- maximum
Concurrency numberAllowed - The maximum concurrency allowed for this endpoint
- minimal
Concurrency numberAllowed - The minimum concurrency allowed for this endpoint
- requested
Concurrency number - The requested concurrency (total CPU) for the endpoint
- requested
Num numberReplicas - The requested number of replicas for the endpoint
- change_
request_ strmessage - (string) - Additional information about the throughput change request
- change_
request_ strstate - (string) - The state of the most recent throughput change request. Possible values are:
CHANGE_ADJUSTED,CHANGE_FAILED,CHANGE_IN_PROGRESS,CHANGE_REACHED_MAXIMUM,CHANGE_REACHED_MINIMUM,CHANGE_SUCCESS - current_
concurrency float - (number) - The current concurrency (total CPU) allocated to the endpoint
- current_
concurrency_ floatutilization_ percentage - (number) - The current utilization of concurrency as a percentage (0-100)
- current_
num_ intreplicas - (integer) - The current number of replicas allocated to the endpoint
- maximum_
concurrency_ floatallowed - The maximum concurrency allowed for this endpoint
- minimal_
concurrency_ floatallowed - The minimum concurrency allowed for this endpoint
- requested_
concurrency float - The requested concurrency (total CPU) for the endpoint
- requested_
num_ intreplicas - The requested number of replicas for the endpoint
- change
Request StringMessage - (string) - Additional information about the throughput change request
- change
Request StringState - (string) - The state of the most recent throughput change request. Possible values are:
CHANGE_ADJUSTED,CHANGE_FAILED,CHANGE_IN_PROGRESS,CHANGE_REACHED_MAXIMUM,CHANGE_REACHED_MINIMUM,CHANGE_SUCCESS - current
Concurrency Number - (number) - The current concurrency (total CPU) allocated to the endpoint
- current
Concurrency NumberUtilization Percentage - (number) - The current utilization of concurrency as a percentage (0-100)
- current
Num NumberReplicas - (integer) - The current number of replicas allocated to the endpoint
- maximum
Concurrency NumberAllowed - The maximum concurrency allowed for this endpoint
- minimal
Concurrency NumberAllowed - The minimum concurrency allowed for this endpoint
- requested
Concurrency Number - The requested concurrency (total CPU) for the endpoint
- requested
Num NumberReplicas - The requested number of replicas for the endpoint
Package Details
- Repository
- databricks pulumi/pulumi-databricks
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
databricksTerraform Provider.
published on Thursday, Jun 18, 2026 by Pulumi