1. Packages
  2. Databricks Provider
  3. API Docs
  4. getServingEndpoints
Databricks v1.65.0 published on Wednesday, Apr 9, 2025 by Pulumi

databricks.getServingEndpoints

Explore with Pulumi AI

This resource can only be used with a workspace-level provider!

This resource allows you to get information about Model Serving endpoints in Databricks.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as databricks from "@pulumi/databricks";

const all = databricks.getServingEndpoints({});
const mlServingUsage: databricks.Permissions[] = [];
for (const range = {value: 0}; range.value < allDatabricksServingEndpoints.endpoints; range.value++) {
    mlServingUsage.push(new databricks.Permissions(`ml_serving_usage-${range.value}`, {
        servingEndpointId: range.value.id,
        accessControls: [
            {
                groupName: "users",
                permissionLevel: "CAN_VIEW",
            },
            {
                groupName: auto.displayName,
                permissionLevel: "CAN_MANAGE",
            },
            {
                groupName: eng.displayName,
                permissionLevel: "CAN_QUERY",
            },
        ],
    }));
}
Copy
import pulumi
import pulumi_databricks as databricks

all = databricks.get_serving_endpoints()
ml_serving_usage = []
for range in [{"value": i} for i in range(0, all_databricks_serving_endpoints.endpoints)]:
    ml_serving_usage.append(databricks.Permissions(f"ml_serving_usage-{range['value']}",
        serving_endpoint_id=range["value"]["id"],
        access_controls=[
            {
                "group_name": "users",
                "permission_level": "CAN_VIEW",
            },
            {
                "group_name": auto["displayName"],
                "permission_level": "CAN_MANAGE",
            },
            {
                "group_name": eng["displayName"],
                "permission_level": "CAN_QUERY",
            },
        ]))
Copy
package main

import (
	"github.com/pulumi/pulumi-databricks/sdk/go/databricks"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := databricks.GetServingEndpoints(ctx, &databricks.GetServingEndpointsArgs{}, nil)
		if err != nil {
			return err
		}
		var mlServingUsage []*databricks.Permissions
		for index := 0; index < allDatabricksServingEndpoints.Endpoints; index++ {
			key0 := index
			val0 := index
			__res, err := databricks.NewPermissions(ctx, fmt.Sprintf("ml_serving_usage-%v", key0), &databricks.PermissionsArgs{
				ServingEndpointId: pulumi.Any(val0),
				AccessControls: databricks.PermissionsAccessControlArray{
					&databricks.PermissionsAccessControlArgs{
						GroupName:       pulumi.String("users"),
						PermissionLevel: pulumi.String("CAN_VIEW"),
					},
					&databricks.PermissionsAccessControlArgs{
						GroupName:       pulumi.Any(auto.DisplayName),
						PermissionLevel: pulumi.String("CAN_MANAGE"),
					},
					&databricks.PermissionsAccessControlArgs{
						GroupName:       pulumi.Any(eng.DisplayName),
						PermissionLevel: pulumi.String("CAN_QUERY"),
					},
				},
			})
			if err != nil {
				return err
			}
			mlServingUsage = append(mlServingUsage, __res)
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Databricks = Pulumi.Databricks;

return await Deployment.RunAsync(() => 
{
    var all = Databricks.GetServingEndpoints.Invoke();

    var mlServingUsage = new List<Databricks.Permissions>();
    for (var rangeIndex = 0; rangeIndex < allDatabricksServingEndpoints.Endpoints; rangeIndex++)
    {
        var range = new { Value = rangeIndex };
        mlServingUsage.Add(new Databricks.Permissions($"ml_serving_usage-{range.Value}", new()
        {
            ServingEndpointId = range.Value.Id,
            AccessControls = new[]
            {
                new Databricks.Inputs.PermissionsAccessControlArgs
                {
                    GroupName = "users",
                    PermissionLevel = "CAN_VIEW",
                },
                new Databricks.Inputs.PermissionsAccessControlArgs
                {
                    GroupName = auto.DisplayName,
                    PermissionLevel = "CAN_MANAGE",
                },
                new Databricks.Inputs.PermissionsAccessControlArgs
                {
                    GroupName = eng.DisplayName,
                    PermissionLevel = "CAN_QUERY",
                },
            },
        }));
    }
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.databricks.DatabricksFunctions;
import com.pulumi.databricks.inputs.GetServingEndpointsArgs;
import com.pulumi.databricks.Permissions;
import com.pulumi.databricks.PermissionsArgs;
import com.pulumi.databricks.inputs.PermissionsAccessControlArgs;
import com.pulumi.codegen.internal.KeyedValue;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var all = DatabricksFunctions.getServingEndpoints(GetServingEndpointsArgs.builder()
            .build());

        for (var i = 0; i < allDatabricksServingEndpoints.endpoints(); i++) {
            new Permissions("mlServingUsage-" + i, PermissionsArgs.builder()
                .servingEndpointId(range.value().id())
                .accessControls(                
                    PermissionsAccessControlArgs.builder()
                        .groupName("users")
                        .permissionLevel("CAN_VIEW")
                        .build(),
                    PermissionsAccessControlArgs.builder()
                        .groupName(auto.displayName())
                        .permissionLevel("CAN_MANAGE")
                        .build(),
                    PermissionsAccessControlArgs.builder()
                        .groupName(eng.displayName())
                        .permissionLevel("CAN_QUERY")
                        .build())
                .build());

        
}
    }
}
Copy
resources:
  mlServingUsage:
    type: databricks:Permissions
    name: ml_serving_usage
    properties:
      servingEndpointId: ${range.value.id}
      accessControls:
        - groupName: users
          permissionLevel: CAN_VIEW
        - groupName: ${auto.displayName}
          permissionLevel: CAN_MANAGE
        - groupName: ${eng.displayName}
          permissionLevel: CAN_QUERY
    options: {}
variables:
  all:
    fn::invoke:
      function: databricks:getServingEndpoints
      arguments: {}
Copy

The following resources are often used in the same context:

  • databricks.Permissions can control which groups or individual users can Manage, Query or View individual serving endpoints.

Using getServingEndpoints

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getServingEndpoints(args: GetServingEndpointsArgs, opts?: InvokeOptions): Promise<GetServingEndpointsResult>
function getServingEndpointsOutput(args: GetServingEndpointsOutputArgs, opts?: InvokeOptions): Output<GetServingEndpointsResult>
Copy
def get_serving_endpoints(endpoints: Optional[Sequence[GetServingEndpointsEndpoint]] = None,
                          opts: Optional[InvokeOptions] = None) -> GetServingEndpointsResult
def get_serving_endpoints_output(endpoints: Optional[pulumi.Input[Sequence[pulumi.Input[GetServingEndpointsEndpointArgs]]]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetServingEndpointsResult]
Copy
func GetServingEndpoints(ctx *Context, args *GetServingEndpointsArgs, opts ...InvokeOption) (*GetServingEndpointsResult, error)
func GetServingEndpointsOutput(ctx *Context, args *GetServingEndpointsOutputArgs, opts ...InvokeOption) GetServingEndpointsResultOutput
Copy

> Note: This function is named GetServingEndpoints in the Go SDK.

public static class GetServingEndpoints 
{
    public static Task<GetServingEndpointsResult> InvokeAsync(GetServingEndpointsArgs args, InvokeOptions? opts = null)
    public static Output<GetServingEndpointsResult> Invoke(GetServingEndpointsInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetServingEndpointsResult> getServingEndpoints(GetServingEndpointsArgs args, InvokeOptions options)
public static Output<GetServingEndpointsResult> getServingEndpoints(GetServingEndpointsArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: databricks:index/getServingEndpoints:getServingEndpoints
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Endpoints List<GetServingEndpointsEndpoint>
List of objects describing the serving endpoints. Each object consists of following attributes:
Endpoints []GetServingEndpointsEndpoint
List of objects describing the serving endpoints. Each object consists of following attributes:
endpoints List<GetServingEndpointsEndpoint>
List of objects describing the serving endpoints. Each object consists of following attributes:
endpoints GetServingEndpointsEndpoint[]
List of objects describing the serving endpoints. Each object consists of following attributes:
endpoints Sequence[GetServingEndpointsEndpoint]
List of objects describing the serving endpoints. Each object consists of following attributes:
endpoints List<Property Map>
List of objects describing the serving endpoints. Each object consists of following attributes:

getServingEndpoints Result

The following output properties are available:

Endpoints List<GetServingEndpointsEndpoint>
List of objects describing the serving endpoints. Each object consists of following attributes:
Id string
The provider-assigned unique ID for this managed resource.
Endpoints []GetServingEndpointsEndpoint
List of objects describing the serving endpoints. Each object consists of following attributes:
Id string
The provider-assigned unique ID for this managed resource.
endpoints List<GetServingEndpointsEndpoint>
List of objects describing the serving endpoints. Each object consists of following attributes:
id String
The provider-assigned unique ID for this managed resource.
endpoints GetServingEndpointsEndpoint[]
List of objects describing the serving endpoints. Each object consists of following attributes:
id string
The provider-assigned unique ID for this managed resource.
endpoints Sequence[GetServingEndpointsEndpoint]
List of objects describing the serving endpoints. Each object consists of following attributes:
id str
The provider-assigned unique ID for this managed resource.
endpoints List<Property Map>
List of objects describing the serving endpoints. Each object consists of following attributes:
id String
The provider-assigned unique ID for this managed resource.

Supporting Types

GetServingEndpointsEndpoint

AiGateways List<GetServingEndpointsEndpointAiGateway>
A block with AI Gateway configuration for the serving endpoint.
BudgetPolicyId string
Configs List<GetServingEndpointsEndpointConfig>
The model serving endpoint configuration.
CreationTimestamp int
Creator string
Id string
LastUpdatedTimestamp int
Name string
The name of the model serving endpoint.
States List<GetServingEndpointsEndpointState>
Tags List<GetServingEndpointsEndpointTag>
Tags to be attached to the serving endpoint and automatically propagated to billing logs.
Task string
AiGateways []GetServingEndpointsEndpointAiGateway
A block with AI Gateway configuration for the serving endpoint.
BudgetPolicyId string
Configs []GetServingEndpointsEndpointConfig
The model serving endpoint configuration.
CreationTimestamp int
Creator string
Id string
LastUpdatedTimestamp int
Name string
The name of the model serving endpoint.
States []GetServingEndpointsEndpointState
Tags []GetServingEndpointsEndpointTag
Tags to be attached to the serving endpoint and automatically propagated to billing logs.
Task string
aiGateways List<GetServingEndpointsEndpointAiGateway>
A block with AI Gateway configuration for the serving endpoint.
budgetPolicyId String
configs List<GetServingEndpointsEndpointConfig>
The model serving endpoint configuration.
creationTimestamp Integer
creator String
id String
lastUpdatedTimestamp Integer
name String
The name of the model serving endpoint.
states List<GetServingEndpointsEndpointState>
tags List<GetServingEndpointsEndpointTag>
Tags to be attached to the serving endpoint and automatically propagated to billing logs.
task String
aiGateways GetServingEndpointsEndpointAiGateway[]
A block with AI Gateway configuration for the serving endpoint.
budgetPolicyId string
configs GetServingEndpointsEndpointConfig[]
The model serving endpoint configuration.
creationTimestamp number
creator string
id string
lastUpdatedTimestamp number
name string
The name of the model serving endpoint.
states GetServingEndpointsEndpointState[]
tags GetServingEndpointsEndpointTag[]
Tags to be attached to the serving endpoint and automatically propagated to billing logs.
task string
ai_gateways Sequence[GetServingEndpointsEndpointAiGateway]
A block with AI Gateway configuration for the serving endpoint.
budget_policy_id str
configs Sequence[GetServingEndpointsEndpointConfig]
The model serving endpoint configuration.
creation_timestamp int
creator str
id str
last_updated_timestamp int
name str
The name of the model serving endpoint.
states Sequence[GetServingEndpointsEndpointState]
tags Sequence[GetServingEndpointsEndpointTag]
Tags to be attached to the serving endpoint and automatically propagated to billing logs.
task str
aiGateways List<Property Map>
A block with AI Gateway configuration for the serving endpoint.
budgetPolicyId String
configs List<Property Map>
The model serving endpoint configuration.
creationTimestamp Number
creator String
id String
lastUpdatedTimestamp Number
name String
The name of the model serving endpoint.
states List<Property Map>
tags List<Property Map>
Tags to be attached to the serving endpoint and automatically propagated to billing logs.
task String

GetServingEndpointsEndpointAiGateway

GetServingEndpointsEndpointAiGatewayFallbackConfig

Enabled This property is required. bool
Enabled This property is required. bool
enabled This property is required. Boolean
enabled This property is required. boolean
enabled This property is required. bool
enabled This property is required. Boolean

GetServingEndpointsEndpointAiGatewayGuardrail

GetServingEndpointsEndpointAiGatewayGuardrailInputProperty

GetServingEndpointsEndpointAiGatewayGuardrailInputPropertyPii

Behavior string
Behavior string
behavior String
behavior string
behavior String

GetServingEndpointsEndpointAiGatewayGuardrailOutput

GetServingEndpointsEndpointAiGatewayGuardrailOutputPii

Behavior string
Behavior string
behavior String
behavior string
behavior String

GetServingEndpointsEndpointAiGatewayInferenceTableConfig

catalogName String
enabled Boolean
schemaName String
tableNamePrefix String
catalogName string
enabled boolean
schemaName string
tableNamePrefix string
catalogName String
enabled Boolean
schemaName String
tableNamePrefix String

GetServingEndpointsEndpointAiGatewayRateLimit

Calls This property is required. int
RenewalPeriod This property is required. string
Key string
Calls This property is required. int
RenewalPeriod This property is required. string
Key string
calls This property is required. Integer
renewalPeriod This property is required. String
key String
calls This property is required. number
renewalPeriod This property is required. string
key string
calls This property is required. int
renewal_period This property is required. str
key str
calls This property is required. Number
renewalPeriod This property is required. String
key String

GetServingEndpointsEndpointAiGatewayUsageTrackingConfig

Enabled bool
Enabled bool
enabled Boolean
enabled boolean
enabled bool
enabled Boolean

GetServingEndpointsEndpointConfig

GetServingEndpointsEndpointConfigServedEntity

entityName String
entityVersion String
externalModels List<Property Map>
foundationModels List<Property Map>
name String
The name of the model serving endpoint.

GetServingEndpointsEndpointConfigServedEntityExternalModel

Name This property is required. string
The name of the model serving endpoint.
Provider This property is required. string
Task This property is required. string
Ai21labsConfigs List<GetServingEndpointsEndpointConfigServedEntityExternalModelAi21labsConfig>
AmazonBedrockConfigs List<GetServingEndpointsEndpointConfigServedEntityExternalModelAmazonBedrockConfig>
AnthropicConfigs List<GetServingEndpointsEndpointConfigServedEntityExternalModelAnthropicConfig>
CohereConfigs List<GetServingEndpointsEndpointConfigServedEntityExternalModelCohereConfig>
CustomProviderConfigs List<GetServingEndpointsEndpointConfigServedEntityExternalModelCustomProviderConfig>
DatabricksModelServingConfigs List<GetServingEndpointsEndpointConfigServedEntityExternalModelDatabricksModelServingConfig>
GoogleCloudVertexAiConfigs List<GetServingEndpointsEndpointConfigServedEntityExternalModelGoogleCloudVertexAiConfig>
OpenaiConfigs List<GetServingEndpointsEndpointConfigServedEntityExternalModelOpenaiConfig>
PalmConfigs List<GetServingEndpointsEndpointConfigServedEntityExternalModelPalmConfig>
Name This property is required. string
The name of the model serving endpoint.
Provider This property is required. string
Task This property is required. string
Ai21labsConfigs []GetServingEndpointsEndpointConfigServedEntityExternalModelAi21labsConfig
AmazonBedrockConfigs []GetServingEndpointsEndpointConfigServedEntityExternalModelAmazonBedrockConfig
AnthropicConfigs []GetServingEndpointsEndpointConfigServedEntityExternalModelAnthropicConfig
CohereConfigs []GetServingEndpointsEndpointConfigServedEntityExternalModelCohereConfig
CustomProviderConfigs []GetServingEndpointsEndpointConfigServedEntityExternalModelCustomProviderConfig
DatabricksModelServingConfigs []GetServingEndpointsEndpointConfigServedEntityExternalModelDatabricksModelServingConfig
GoogleCloudVertexAiConfigs []GetServingEndpointsEndpointConfigServedEntityExternalModelGoogleCloudVertexAiConfig
OpenaiConfigs []GetServingEndpointsEndpointConfigServedEntityExternalModelOpenaiConfig
PalmConfigs []GetServingEndpointsEndpointConfigServedEntityExternalModelPalmConfig
name This property is required. String
The name of the model serving endpoint.
provider This property is required. String
task This property is required. String
ai21labsConfigs List<GetServingEndpointsEndpointConfigServedEntityExternalModelAi21labsConfig>
amazonBedrockConfigs List<GetServingEndpointsEndpointConfigServedEntityExternalModelAmazonBedrockConfig>
anthropicConfigs List<GetServingEndpointsEndpointConfigServedEntityExternalModelAnthropicConfig>
cohereConfigs List<GetServingEndpointsEndpointConfigServedEntityExternalModelCohereConfig>
customProviderConfigs List<GetServingEndpointsEndpointConfigServedEntityExternalModelCustomProviderConfig>
databricksModelServingConfigs List<GetServingEndpointsEndpointConfigServedEntityExternalModelDatabricksModelServingConfig>
googleCloudVertexAiConfigs List<GetServingEndpointsEndpointConfigServedEntityExternalModelGoogleCloudVertexAiConfig>
openaiConfigs List<GetServingEndpointsEndpointConfigServedEntityExternalModelOpenaiConfig>
palmConfigs List<GetServingEndpointsEndpointConfigServedEntityExternalModelPalmConfig>
name This property is required. str
The name of the model serving endpoint.
provider This property is required. str
task This property is required. str
ai21labs_configs Sequence[GetServingEndpointsEndpointConfigServedEntityExternalModelAi21labsConfig]
amazon_bedrock_configs Sequence[GetServingEndpointsEndpointConfigServedEntityExternalModelAmazonBedrockConfig]
anthropic_configs Sequence[GetServingEndpointsEndpointConfigServedEntityExternalModelAnthropicConfig]
cohere_configs Sequence[GetServingEndpointsEndpointConfigServedEntityExternalModelCohereConfig]
custom_provider_configs Sequence[GetServingEndpointsEndpointConfigServedEntityExternalModelCustomProviderConfig]
databricks_model_serving_configs Sequence[GetServingEndpointsEndpointConfigServedEntityExternalModelDatabricksModelServingConfig]
google_cloud_vertex_ai_configs Sequence[GetServingEndpointsEndpointConfigServedEntityExternalModelGoogleCloudVertexAiConfig]
openai_configs Sequence[GetServingEndpointsEndpointConfigServedEntityExternalModelOpenaiConfig]
palm_configs Sequence[GetServingEndpointsEndpointConfigServedEntityExternalModelPalmConfig]

GetServingEndpointsEndpointConfigServedEntityExternalModelAi21labsConfig

GetServingEndpointsEndpointConfigServedEntityExternalModelAmazonBedrockConfig

AwsRegion This property is required. string
BedrockProvider This property is required. string
AwsAccessKeyId string
AwsAccessKeyIdPlaintext string
AwsSecretAccessKey string
AwsSecretAccessKeyPlaintext string
InstanceProfileArn string
AwsRegion This property is required. string
BedrockProvider This property is required. string
AwsAccessKeyId string
AwsAccessKeyIdPlaintext string
AwsSecretAccessKey string
AwsSecretAccessKeyPlaintext string
InstanceProfileArn string
awsRegion This property is required. String
bedrockProvider This property is required. String
awsAccessKeyId String
awsAccessKeyIdPlaintext String
awsSecretAccessKey String
awsSecretAccessKeyPlaintext String
instanceProfileArn String
awsRegion This property is required. string
bedrockProvider This property is required. string
awsAccessKeyId string
awsAccessKeyIdPlaintext string
awsSecretAccessKey string
awsSecretAccessKeyPlaintext string
instanceProfileArn string
awsRegion This property is required. String
bedrockProvider This property is required. String
awsAccessKeyId String
awsAccessKeyIdPlaintext String
awsSecretAccessKey String
awsSecretAccessKeyPlaintext String
instanceProfileArn String

GetServingEndpointsEndpointConfigServedEntityExternalModelAnthropicConfig

GetServingEndpointsEndpointConfigServedEntityExternalModelCohereConfig

GetServingEndpointsEndpointConfigServedEntityExternalModelCustomProviderConfig

GetServingEndpointsEndpointConfigServedEntityExternalModelCustomProviderConfigApiKeyAuth

Key This property is required. string
Value string
ValuePlaintext string
Key This property is required. string
Value string
ValuePlaintext string
key This property is required. String
value String
valuePlaintext String
key This property is required. string
value string
valuePlaintext string
key This property is required. str
value str
value_plaintext str
key This property is required. String
value String
valuePlaintext String

GetServingEndpointsEndpointConfigServedEntityExternalModelCustomProviderConfigBearerTokenAuth

Token string
TokenPlaintext string
Token string
TokenPlaintext string
token String
tokenPlaintext String
token string
tokenPlaintext string
token String
tokenPlaintext String

GetServingEndpointsEndpointConfigServedEntityExternalModelDatabricksModelServingConfig

DatabricksWorkspaceUrl This property is required. string
DatabricksApiToken string
DatabricksApiTokenPlaintext string
DatabricksWorkspaceUrl This property is required. string
DatabricksApiToken string
DatabricksApiTokenPlaintext string
databricksWorkspaceUrl This property is required. String
databricksApiToken String
databricksApiTokenPlaintext String
databricksWorkspaceUrl This property is required. string
databricksApiToken string
databricksApiTokenPlaintext string
databricksWorkspaceUrl This property is required. String
databricksApiToken String
databricksApiTokenPlaintext String

GetServingEndpointsEndpointConfigServedEntityExternalModelGoogleCloudVertexAiConfig

ProjectId This property is required. string
Region This property is required. string
PrivateKey string
PrivateKeyPlaintext string
ProjectId This property is required. string
Region This property is required. string
PrivateKey string
PrivateKeyPlaintext string
projectId This property is required. String
region This property is required. String
privateKey String
privateKeyPlaintext String
projectId This property is required. string
region This property is required. string
privateKey string
privateKeyPlaintext string
project_id This property is required. str
region This property is required. str
private_key str
private_key_plaintext str
projectId This property is required. String
region This property is required. String
privateKey String
privateKeyPlaintext String

GetServingEndpointsEndpointConfigServedEntityExternalModelOpenaiConfig

GetServingEndpointsEndpointConfigServedEntityExternalModelPalmConfig

GetServingEndpointsEndpointConfigServedEntityFoundationModel

Description string
DisplayName string
Docs string
Name string
The name of the model serving endpoint.
Description string
DisplayName string
Docs string
Name string
The name of the model serving endpoint.
description String
displayName String
docs String
name String
The name of the model serving endpoint.
description string
displayName string
docs string
name string
The name of the model serving endpoint.
description str
display_name str
docs str
name str
The name of the model serving endpoint.
description String
displayName String
docs String
name String
The name of the model serving endpoint.

GetServingEndpointsEndpointConfigServedModel

ModelName string
ModelVersion string
Name string
The name of the model serving endpoint.
ModelName string
ModelVersion string
Name string
The name of the model serving endpoint.
modelName String
modelVersion String
name String
The name of the model serving endpoint.
modelName string
modelVersion string
name string
The name of the model serving endpoint.
model_name str
model_version str
name str
The name of the model serving endpoint.
modelName String
modelVersion String
name String
The name of the model serving endpoint.

GetServingEndpointsEndpointState

ConfigUpdate string
Ready string
ConfigUpdate string
Ready string
configUpdate String
ready String
configUpdate string
ready string
configUpdate String
ready String

GetServingEndpointsEndpointTag

Key This property is required. string
Value string
Key This property is required. string
Value string
key This property is required. String
value String
key This property is required. string
value string
key This property is required. str
value str
key This property is required. String
value String

Package Details

Repository
databricks pulumi/pulumi-databricks
License
Apache-2.0
Notes
This Pulumi package is based on the databricks Terraform Provider.