1. Packages
  2. Packages
  3. Databricks Provider
  4. API Docs
  5. AiSearchEndpoint
Viewing docs for Databricks v1.96.0
published on Thursday, Jun 18, 2026 by Pulumi
databricks logo
Viewing docs for Databricks v1.96.0
published on Thursday, Jun 18, 2026 by Pulumi

    Private Preview

    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:

    EndpointType 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}
    BudgetPolicyId string
    The user-selected budget policy id for the endpoint
    CustomTags List<AiSearchEndpointCustomTag>
    The custom tags assigned to the endpoint
    EndpointId string
    The user-supplied short name for the Endpoint, per AIP-133. The server composes the full Endpoint.name as {parent}/endpoints/{endpoint_id}. AIP-133 does not list endpointId as a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE
    ProviderConfig AiSearchEndpointProviderConfig
    Configure the provider for management through account provider.
    ReplicaCount int
    The client-supplied desired number of replicas for the endpoint, applied at create/update time. Mutually exclusive with targetQps
    TargetQps int
    Target QPS for the endpoint. Mutually exclusive with replicaCount. Best-effort; the system does not guarantee this QPS will be achieved
    UsagePolicyId string
    The usage policy id applied to the endpoint
    EndpointType 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}
    BudgetPolicyId string
    The user-selected budget policy id for the endpoint
    CustomTags []AiSearchEndpointCustomTagArgs
    The custom tags assigned to the endpoint
    EndpointId string
    The user-supplied short name for the Endpoint, per AIP-133. The server composes the full Endpoint.name as {parent}/endpoints/{endpoint_id}. AIP-133 does not list endpointId as a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE
    ProviderConfig AiSearchEndpointProviderConfigArgs
    Configure the provider for management through account provider.
    ReplicaCount int
    The client-supplied desired number of replicas for the endpoint, applied at create/update time. Mutually exclusive with targetQps
    TargetQps int
    Target QPS for the endpoint. Mutually exclusive with replicaCount. Best-effort; the system does not guarantee this QPS will be achieved
    UsagePolicyId string
    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_id string
    The user-selected budget policy id for the endpoint
    custom_tags 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.name as {parent}/endpoints/{endpoint_id}. AIP-133 does not list endpointId as 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_id string
    The usage policy id applied to the endpoint
    endpointType 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}
    budgetPolicyId String
    The user-selected budget policy id for the endpoint
    customTags List<AiSearchEndpointCustomTag>
    The custom tags assigned to the endpoint
    endpointId String
    The user-supplied short name for the Endpoint, per AIP-133. The server composes the full Endpoint.name as {parent}/endpoints/{endpoint_id}. AIP-133 does not list endpointId as a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE
    providerConfig AiSearchEndpointProviderConfig
    Configure the provider for management through account provider.
    replicaCount Integer
    The client-supplied desired number of replicas for the endpoint, applied at create/update time. Mutually exclusive with targetQps
    targetQps Integer
    Target QPS for the endpoint. Mutually exclusive with replicaCount. Best-effort; the system does not guarantee this QPS will be achieved
    usagePolicyId String
    The usage policy id applied to the endpoint
    endpointType 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}
    budgetPolicyId string
    The user-selected budget policy id for the endpoint
    customTags AiSearchEndpointCustomTag[]
    The custom tags assigned to the endpoint
    endpointId string
    The user-supplied short name for the Endpoint, per AIP-133. The server composes the full Endpoint.name as {parent}/endpoints/{endpoint_id}. AIP-133 does not list endpointId as a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE
    providerConfig AiSearchEndpointProviderConfig
    Configure the provider for management through account provider.
    replicaCount number
    The client-supplied desired number of replicas for the endpoint, applied at create/update time. Mutually exclusive with targetQps
    targetQps number
    Target QPS for the endpoint. Mutually exclusive with replicaCount. Best-effort; the system does not guarantee this QPS will be achieved
    usagePolicyId string
    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_id str
    The user-selected budget policy id for the endpoint
    custom_tags Sequence[AiSearchEndpointCustomTagArgs]
    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.name as {parent}/endpoints/{endpoint_id}. AIP-133 does not list endpointId as 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 AiSearchEndpointProviderConfigArgs
    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_id str
    The usage policy id applied to the endpoint
    endpointType 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}
    budgetPolicyId String
    The user-selected budget policy id for the endpoint
    customTags List<Property Map>
    The custom tags assigned to the endpoint
    endpointId String
    The user-supplied short name for the Endpoint, per AIP-133. The server composes the full Endpoint.name as {parent}/endpoints/{endpoint_id}. AIP-133 does not list endpointId as a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE
    providerConfig Property Map
    Configure the provider for management through account provider.
    replicaCount Number
    The client-supplied desired number of replicas for the endpoint, applied at create/update time. Mutually exclusive with targetQps
    targetQps Number
    Target QPS for the endpoint. Mutually exclusive with replicaCount. Best-effort; the system does not guarantee this QPS will be achieved
    usagePolicyId String
    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:

    CreateTime string
    (string) - Time the endpoint was created
    Creator string
    (string) - Creator of the endpoint
    EffectiveBudgetPolicyId string
    (string) - The budget policy id applied to the endpoint
    EndpointStatus AiSearchEndpointEndpointStatus
    (EndpointStatus) - Current status of the endpoint
    Id string
    The provider-assigned unique ID for this managed resource.
    IndexCount int
    (integer) - Number of indexes on the endpoint
    LastUpdatedUser string
    (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 via CreateEndpointRequest.endpoint_id; the server composes the full name and returns it on the response
    ScalingInfo AiSearchEndpointScalingInfo
    (EndpointScalingInfo) - Scaling information for the endpoint
    ThroughputInfo AiSearchEndpointThroughputInfo
    (EndpointThroughputInfo) - Throughput information for the endpoint
    UpdateTime string
    (string) - Time the endpoint was last updated
    CreateTime string
    (string) - Time the endpoint was created
    Creator string
    (string) - Creator of the endpoint
    EffectiveBudgetPolicyId string
    (string) - The budget policy id applied to the endpoint
    EndpointStatus AiSearchEndpointEndpointStatus
    (EndpointStatus) - Current status of the endpoint
    Id string
    The provider-assigned unique ID for this managed resource.
    IndexCount int
    (integer) - Number of indexes on the endpoint
    LastUpdatedUser string
    (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 via CreateEndpointRequest.endpoint_id; the server composes the full name and returns it on the response
    ScalingInfo AiSearchEndpointScalingInfo
    (EndpointScalingInfo) - Scaling information for the endpoint
    ThroughputInfo AiSearchEndpointThroughputInfo
    (EndpointThroughputInfo) - Throughput information for the endpoint
    UpdateTime 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_policy_id string
    (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_user string
    (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 via CreateEndpointRequest.endpoint_id; the server composes the full name and 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
    createTime String
    (string) - Time the endpoint was created
    creator String
    (string) - Creator of the endpoint
    effectiveBudgetPolicyId String
    (string) - The budget policy id applied to the endpoint
    endpointStatus AiSearchEndpointEndpointStatus
    (EndpointStatus) - Current status of the endpoint
    id String
    The provider-assigned unique ID for this managed resource.
    indexCount Integer
    (integer) - Number of indexes on the endpoint
    lastUpdatedUser String
    (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 via CreateEndpointRequest.endpoint_id; the server composes the full name and returns it on the response
    scalingInfo AiSearchEndpointScalingInfo
    (EndpointScalingInfo) - Scaling information for the endpoint
    throughputInfo AiSearchEndpointThroughputInfo
    (EndpointThroughputInfo) - Throughput information for the endpoint
    updateTime String
    (string) - Time the endpoint was last updated
    createTime string
    (string) - Time the endpoint was created
    creator string
    (string) - Creator of the endpoint
    effectiveBudgetPolicyId string
    (string) - The budget policy id applied to the endpoint
    endpointStatus AiSearchEndpointEndpointStatus
    (EndpointStatus) - Current status of the endpoint
    id string
    The provider-assigned unique ID for this managed resource.
    indexCount number
    (integer) - Number of indexes on the endpoint
    lastUpdatedUser string
    (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 via CreateEndpointRequest.endpoint_id; the server composes the full name and returns it on the response
    scalingInfo AiSearchEndpointScalingInfo
    (EndpointScalingInfo) - Scaling information for the endpoint
    throughputInfo AiSearchEndpointThroughputInfo
    (EndpointThroughputInfo) - Throughput information for the endpoint
    updateTime 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_policy_id str
    (string) - The budget policy id applied to the endpoint
    endpoint_status AiSearchEndpointEndpointStatus
    (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_user str
    (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 via CreateEndpointRequest.endpoint_id; the server composes the full name and returns it on the response
    scaling_info AiSearchEndpointScalingInfo
    (EndpointScalingInfo) - Scaling information for the endpoint
    throughput_info AiSearchEndpointThroughputInfo
    (EndpointThroughputInfo) - Throughput information for the endpoint
    update_time str
    (string) - Time the endpoint was last updated
    createTime String
    (string) - Time the endpoint was created
    creator String
    (string) - Creator of the endpoint
    effectiveBudgetPolicyId String
    (string) - The budget policy id applied to the endpoint
    endpointStatus Property Map
    (EndpointStatus) - Current status of the endpoint
    id String
    The provider-assigned unique ID for this managed resource.
    indexCount Number
    (integer) - Number of indexes on the endpoint
    lastUpdatedUser String
    (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 via CreateEndpointRequest.endpoint_id; the server composes the full name and returns it on the response
    scalingInfo Property Map
    (EndpointScalingInfo) - Scaling information for the endpoint
    throughputInfo Property Map
    (EndpointThroughputInfo) - Throughput information for the endpoint
    updateTime 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) -> AiSearchEndpoint
    func 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.
    The following state arguments are supported:
    BudgetPolicyId string
    The user-selected budget policy id for the endpoint
    CreateTime string
    (string) - Time the endpoint was created
    Creator string
    (string) - Creator of the endpoint
    CustomTags List<AiSearchEndpointCustomTag>
    The custom tags assigned to the endpoint
    EffectiveBudgetPolicyId string
    (string) - The budget policy id applied to the endpoint
    EndpointId string
    The user-supplied short name for the Endpoint, per AIP-133. The server composes the full Endpoint.name as {parent}/endpoints/{endpoint_id}. AIP-133 does not list endpointId as a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE
    EndpointStatus AiSearchEndpointEndpointStatus
    (EndpointStatus) - Current status of the endpoint
    EndpointType string
    Type of endpoint. Required on create and immutable thereafter. Possible values are: STANDARD, STORAGE_OPTIMIZED
    IndexCount int
    (integer) - Number of indexes on the endpoint
    LastUpdatedUser string
    (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 via CreateEndpointRequest.endpoint_id; the server composes the full name and returns it on the response
    Parent string
    The Workspace where this Endpoint will be created. Format: workspaces/{workspace_id}
    ProviderConfig AiSearchEndpointProviderConfig
    Configure the provider for management through account provider.
    ReplicaCount int
    The client-supplied desired number of replicas for the endpoint, applied at create/update time. Mutually exclusive with targetQps
    ScalingInfo AiSearchEndpointScalingInfo
    (EndpointScalingInfo) - Scaling information for the endpoint
    TargetQps int
    Target QPS for the endpoint. Mutually exclusive with replicaCount. Best-effort; the system does not guarantee this QPS will be achieved
    ThroughputInfo AiSearchEndpointThroughputInfo
    (EndpointThroughputInfo) - Throughput information for the endpoint
    UpdateTime string
    (string) - Time the endpoint was last updated
    UsagePolicyId string
    The usage policy id applied to the endpoint
    BudgetPolicyId string
    The user-selected budget policy id for the endpoint
    CreateTime string
    (string) - Time the endpoint was created
    Creator string
    (string) - Creator of the endpoint
    CustomTags []AiSearchEndpointCustomTagArgs
    The custom tags assigned to the endpoint
    EffectiveBudgetPolicyId string
    (string) - The budget policy id applied to the endpoint
    EndpointId string
    The user-supplied short name for the Endpoint, per AIP-133. The server composes the full Endpoint.name as {parent}/endpoints/{endpoint_id}. AIP-133 does not list endpointId as a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE
    EndpointStatus AiSearchEndpointEndpointStatusArgs
    (EndpointStatus) - Current status of the endpoint
    EndpointType string
    Type of endpoint. Required on create and immutable thereafter. Possible values are: STANDARD, STORAGE_OPTIMIZED
    IndexCount int
    (integer) - Number of indexes on the endpoint
    LastUpdatedUser string
    (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 via CreateEndpointRequest.endpoint_id; the server composes the full name and returns it on the response
    Parent string
    The Workspace where this Endpoint will be created. Format: workspaces/{workspace_id}
    ProviderConfig AiSearchEndpointProviderConfigArgs
    Configure the provider for management through account provider.
    ReplicaCount int
    The client-supplied desired number of replicas for the endpoint, applied at create/update time. Mutually exclusive with targetQps
    ScalingInfo AiSearchEndpointScalingInfoArgs
    (EndpointScalingInfo) - Scaling information for the endpoint
    TargetQps int
    Target QPS for the endpoint. Mutually exclusive with replicaCount. Best-effort; the system does not guarantee this QPS will be achieved
    ThroughputInfo AiSearchEndpointThroughputInfoArgs
    (EndpointThroughputInfo) - Throughput information for the endpoint
    UpdateTime string
    (string) - Time the endpoint was last updated
    UsagePolicyId string
    The usage policy id applied to the endpoint
    budget_policy_id string
    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
    custom_tags list(object)
    The custom tags assigned to the endpoint
    effective_budget_policy_id string
    (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.name as {parent}/endpoints/{endpoint_id}. AIP-133 does not list endpointId as 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_user string
    (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 via CreateEndpointRequest.endpoint_id; the server composes the full name and 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_id string
    The usage policy id applied to the endpoint
    budgetPolicyId String
    The user-selected budget policy id for the endpoint
    createTime String
    (string) - Time the endpoint was created
    creator String
    (string) - Creator of the endpoint
    customTags List<AiSearchEndpointCustomTag>
    The custom tags assigned to the endpoint
    effectiveBudgetPolicyId String
    (string) - The budget policy id applied to the endpoint
    endpointId String
    The user-supplied short name for the Endpoint, per AIP-133. The server composes the full Endpoint.name as {parent}/endpoints/{endpoint_id}. AIP-133 does not list endpointId as a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE
    endpointStatus AiSearchEndpointEndpointStatus
    (EndpointStatus) - Current status of the endpoint
    endpointType String
    Type of endpoint. Required on create and immutable thereafter. Possible values are: STANDARD, STORAGE_OPTIMIZED
    indexCount Integer
    (integer) - Number of indexes on the endpoint
    lastUpdatedUser String
    (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 via CreateEndpointRequest.endpoint_id; the server composes the full name and returns it on the response
    parent String
    The Workspace where this Endpoint will be created. Format: workspaces/{workspace_id}
    providerConfig AiSearchEndpointProviderConfig
    Configure the provider for management through account provider.
    replicaCount Integer
    The client-supplied desired number of replicas for the endpoint, applied at create/update time. Mutually exclusive with targetQps
    scalingInfo AiSearchEndpointScalingInfo
    (EndpointScalingInfo) - Scaling information for the endpoint
    targetQps Integer
    Target QPS for the endpoint. Mutually exclusive with replicaCount. Best-effort; the system does not guarantee this QPS will be achieved
    throughputInfo AiSearchEndpointThroughputInfo
    (EndpointThroughputInfo) - Throughput information for the endpoint
    updateTime String
    (string) - Time the endpoint was last updated
    usagePolicyId String
    The usage policy id applied to the endpoint
    budgetPolicyId string
    The user-selected budget policy id for the endpoint
    createTime string
    (string) - Time the endpoint was created
    creator string
    (string) - Creator of the endpoint
    customTags AiSearchEndpointCustomTag[]
    The custom tags assigned to the endpoint
    effectiveBudgetPolicyId string
    (string) - The budget policy id applied to the endpoint
    endpointId string
    The user-supplied short name for the Endpoint, per AIP-133. The server composes the full Endpoint.name as {parent}/endpoints/{endpoint_id}. AIP-133 does not list endpointId as a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE
    endpointStatus AiSearchEndpointEndpointStatus
    (EndpointStatus) - Current status of the endpoint
    endpointType string
    Type of endpoint. Required on create and immutable thereafter. Possible values are: STANDARD, STORAGE_OPTIMIZED
    indexCount number
    (integer) - Number of indexes on the endpoint
    lastUpdatedUser string
    (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 via CreateEndpointRequest.endpoint_id; the server composes the full name and returns it on the response
    parent string
    The Workspace where this Endpoint will be created. Format: workspaces/{workspace_id}
    providerConfig AiSearchEndpointProviderConfig
    Configure the provider for management through account provider.
    replicaCount number
    The client-supplied desired number of replicas for the endpoint, applied at create/update time. Mutually exclusive with targetQps
    scalingInfo AiSearchEndpointScalingInfo
    (EndpointScalingInfo) - Scaling information for the endpoint
    targetQps number
    Target QPS for the endpoint. Mutually exclusive with replicaCount. Best-effort; the system does not guarantee this QPS will be achieved
    throughputInfo AiSearchEndpointThroughputInfo
    (EndpointThroughputInfo) - Throughput information for the endpoint
    updateTime string
    (string) - Time the endpoint was last updated
    usagePolicyId string
    The usage policy id applied to the endpoint
    budget_policy_id str
    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
    custom_tags Sequence[AiSearchEndpointCustomTagArgs]
    The custom tags assigned to the endpoint
    effective_budget_policy_id str
    (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.name as {parent}/endpoints/{endpoint_id}. AIP-133 does not list endpointId as 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 AiSearchEndpointEndpointStatusArgs
    (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_user str
    (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 via CreateEndpointRequest.endpoint_id; the server composes the full name and returns it on the response
    parent str
    The Workspace where this Endpoint will be created. Format: workspaces/{workspace_id}
    provider_config AiSearchEndpointProviderConfigArgs
    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 AiSearchEndpointScalingInfoArgs
    (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 AiSearchEndpointThroughputInfoArgs
    (EndpointThroughputInfo) - Throughput information for the endpoint
    update_time str
    (string) - Time the endpoint was last updated
    usage_policy_id str
    The usage policy id applied to the endpoint
    budgetPolicyId String
    The user-selected budget policy id for the endpoint
    createTime String
    (string) - Time the endpoint was created
    creator String
    (string) - Creator of the endpoint
    customTags List<Property Map>
    The custom tags assigned to the endpoint
    effectiveBudgetPolicyId String
    (string) - The budget policy id applied to the endpoint
    endpointId String
    The user-supplied short name for the Endpoint, per AIP-133. The server composes the full Endpoint.name as {parent}/endpoints/{endpoint_id}. AIP-133 does not list endpointId as a fields-may-be-required entry, so we annotate it OPTIONAL on the wire; the server still rejects empty values with INVALID_PARAMETER_VALUE
    endpointStatus Property Map
    (EndpointStatus) - Current status of the endpoint
    endpointType String
    Type of endpoint. Required on create and immutable thereafter. Possible values are: STANDARD, STORAGE_OPTIMIZED
    indexCount Number
    (integer) - Number of indexes on the endpoint
    lastUpdatedUser String
    (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 via CreateEndpointRequest.endpoint_id; the server composes the full name and returns it on the response
    parent String
    The Workspace where this Endpoint will be created. Format: workspaces/{workspace_id}
    providerConfig Property Map
    Configure the provider for management through account provider.
    replicaCount Number
    The client-supplied desired number of replicas for the endpoint, applied at create/update time. Mutually exclusive with targetQps
    scalingInfo Property Map
    (EndpointScalingInfo) - Scaling information for the endpoint
    targetQps Number
    Target QPS for the endpoint. Mutually exclusive with replicaCount. Best-effort; the system does not guarantee this QPS will be achieved
    throughputInfo Property Map
    (EndpointThroughputInfo) - Throughput information for the endpoint
    updateTime String
    (string) - Time the endpoint was last updated
    usagePolicyId String
    The usage policy id applied to the endpoint

    Supporting Types

    AiSearchEndpointCustomTag, AiSearchEndpointCustomTagArgs

    Key string
    Key field for an AI Search endpoint tag
    Value string
    [Optional] Value field for an AI Search endpoint tag
    Key string
    Key field for an AI Search endpoint tag
    Value string
    [Optional] Value field for an AI Search endpoint tag
    key string
    Key field for an AI Search endpoint tag
    value string
    [Optional] Value field for an AI Search endpoint tag
    key String
    Key field for an AI Search endpoint tag
    value String
    [Optional] Value field for an AI Search endpoint tag
    key string
    Key field for an AI Search endpoint tag
    value string
    [Optional] Value field for an AI Search endpoint tag
    key str
    Key field for an AI Search endpoint tag
    value str
    [Optional] Value field for an AI Search endpoint tag
    key String
    Key field for an AI Search endpoint tag
    value String
    [Optional] Value field for an AI Search endpoint tag

    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 State for 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 State for 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 State for 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 State for 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 State for 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 State for 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 State for the meaning of each value. Possible values are: DELETED, OFFLINE, ONLINE, PROVISIONING, RED_STATE, YELLOW_STATE

    AiSearchEndpointProviderConfig, AiSearchEndpointProviderConfigArgs

    WorkspaceId string
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
    WorkspaceId 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.
    workspaceId String
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
    workspaceId 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.
    workspaceId String
    Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.

    AiSearchEndpointScalingInfo, AiSearchEndpointScalingInfoArgs

    RequestedTargetQps int
    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 State for the meaning of each value. Possible values are: DELETED, OFFLINE, ONLINE, PROVISIONING, RED_STATE, YELLOW_STATE
    RequestedTargetQps int
    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 State for the meaning of each value. Possible values are: DELETED, OFFLINE, ONLINE, PROVISIONING, RED_STATE, YELLOW_STATE
    requested_target_qps number
    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 State for the meaning of each value. Possible values are: DELETED, OFFLINE, ONLINE, PROVISIONING, RED_STATE, YELLOW_STATE
    requestedTargetQps Integer
    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 State for the meaning of each value. Possible values are: DELETED, OFFLINE, ONLINE, PROVISIONING, RED_STATE, YELLOW_STATE
    requestedTargetQps number
    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 State for the meaning of each value. Possible values are: DELETED, OFFLINE, ONLINE, PROVISIONING, RED_STATE, YELLOW_STATE
    requested_target_qps int
    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 State for the meaning of each value. Possible values are: DELETED, OFFLINE, ONLINE, PROVISIONING, RED_STATE, YELLOW_STATE
    requestedTargetQps Number
    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 State for the meaning of each value. Possible values are: DELETED, OFFLINE, ONLINE, PROVISIONING, RED_STATE, YELLOW_STATE

    AiSearchEndpointThroughputInfo, AiSearchEndpointThroughputInfoArgs

    ChangeRequestMessage string
    (string) - Additional information about the throughput change request
    ChangeRequestState string
    (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
    CurrentConcurrency double
    (number) - The current concurrency (total CPU) allocated to the endpoint
    CurrentConcurrencyUtilizationPercentage double
    (number) - The current utilization of concurrency as a percentage (0-100)
    CurrentNumReplicas int
    (integer) - The current number of replicas allocated to the endpoint
    MaximumConcurrencyAllowed double
    The maximum concurrency allowed for this endpoint
    MinimalConcurrencyAllowed double
    The minimum concurrency allowed for this endpoint
    RequestedConcurrency double
    The requested concurrency (total CPU) for the endpoint
    RequestedNumReplicas int
    The requested number of replicas for the endpoint
    ChangeRequestMessage string
    (string) - Additional information about the throughput change request
    ChangeRequestState string
    (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
    CurrentConcurrency float64
    (number) - The current concurrency (total CPU) allocated to the endpoint
    CurrentConcurrencyUtilizationPercentage float64
    (number) - The current utilization of concurrency as a percentage (0-100)
    CurrentNumReplicas int
    (integer) - The current number of replicas allocated to the endpoint
    MaximumConcurrencyAllowed float64
    The maximum concurrency allowed for this endpoint
    MinimalConcurrencyAllowed float64
    The minimum concurrency allowed for this endpoint
    RequestedConcurrency float64
    The requested concurrency (total CPU) for the endpoint
    RequestedNumReplicas int
    The requested number of replicas for the endpoint
    change_request_message string
    (string) - Additional information about the throughput change request
    change_request_state string
    (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_utilization_percentage number
    (number) - The current utilization of concurrency as a percentage (0-100)
    current_num_replicas number
    (integer) - The current number of replicas allocated to the endpoint
    maximum_concurrency_allowed number
    The maximum concurrency allowed for this endpoint
    minimal_concurrency_allowed number
    The minimum concurrency allowed for this endpoint
    requested_concurrency number
    The requested concurrency (total CPU) for the endpoint
    requested_num_replicas number
    The requested number of replicas for the endpoint
    changeRequestMessage String
    (string) - Additional information about the throughput change request
    changeRequestState String
    (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
    currentConcurrency Double
    (number) - The current concurrency (total CPU) allocated to the endpoint
    currentConcurrencyUtilizationPercentage Double
    (number) - The current utilization of concurrency as a percentage (0-100)
    currentNumReplicas Integer
    (integer) - The current number of replicas allocated to the endpoint
    maximumConcurrencyAllowed Double
    The maximum concurrency allowed for this endpoint
    minimalConcurrencyAllowed Double
    The minimum concurrency allowed for this endpoint
    requestedConcurrency Double
    The requested concurrency (total CPU) for the endpoint
    requestedNumReplicas Integer
    The requested number of replicas for the endpoint
    changeRequestMessage string
    (string) - Additional information about the throughput change request
    changeRequestState string
    (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
    currentConcurrency number
    (number) - The current concurrency (total CPU) allocated to the endpoint
    currentConcurrencyUtilizationPercentage number
    (number) - The current utilization of concurrency as a percentage (0-100)
    currentNumReplicas number
    (integer) - The current number of replicas allocated to the endpoint
    maximumConcurrencyAllowed number
    The maximum concurrency allowed for this endpoint
    minimalConcurrencyAllowed number
    The minimum concurrency allowed for this endpoint
    requestedConcurrency number
    The requested concurrency (total CPU) for the endpoint
    requestedNumReplicas number
    The requested number of replicas for the endpoint
    change_request_message str
    (string) - Additional information about the throughput change request
    change_request_state str
    (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_utilization_percentage float
    (number) - The current utilization of concurrency as a percentage (0-100)
    current_num_replicas int
    (integer) - The current number of replicas allocated to the endpoint
    maximum_concurrency_allowed float
    The maximum concurrency allowed for this endpoint
    minimal_concurrency_allowed float
    The minimum concurrency allowed for this endpoint
    requested_concurrency float
    The requested concurrency (total CPU) for the endpoint
    requested_num_replicas int
    The requested number of replicas for the endpoint
    changeRequestMessage String
    (string) - Additional information about the throughput change request
    changeRequestState String
    (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
    currentConcurrency Number
    (number) - The current concurrency (total CPU) allocated to the endpoint
    currentConcurrencyUtilizationPercentage Number
    (number) - The current utilization of concurrency as a percentage (0-100)
    currentNumReplicas Number
    (integer) - The current number of replicas allocated to the endpoint
    maximumConcurrencyAllowed Number
    The maximum concurrency allowed for this endpoint
    minimalConcurrencyAllowed Number
    The minimum concurrency allowed for this endpoint
    requestedConcurrency Number
    The requested concurrency (total CPU) for the endpoint
    requestedNumReplicas Number
    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 databricks Terraform Provider.
    databricks logo
    Viewing docs for Databricks v1.96.0
    published on Thursday, Jun 18, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial