@pulumi/databricks 1.52.0-alpha.1729195979 → 1.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/getAwsBucketPolicy.d.ts +44 -0
- package/getAwsBucketPolicy.js +44 -0
- package/getAwsBucketPolicy.js.map +1 -1
- package/getAwsUnityCatalogPolicy.d.ts +2 -2
- package/getAwsUnityCatalogPolicy.js +2 -2
- package/getCluster.d.ts +4 -4
- package/getCluster.js +4 -4
- package/getInstancePool.d.ts +2 -2
- package/getInstancePool.js +2 -2
- package/getMetastore.d.ts +12 -2
- package/getMetastore.js +12 -2
- package/getMetastore.js.map +1 -1
- package/getNotificationDestinations.d.ts +132 -0
- package/getNotificationDestinations.js +96 -0
- package/getNotificationDestinations.js.map +1 -0
- package/getRegisteredModel.d.ts +114 -0
- package/getRegisteredModel.js +76 -0
- package/getRegisteredModel.js.map +1 -0
- package/getSqlWarehouse.d.ts +4 -4
- package/getSqlWarehouse.js +4 -4
- package/getViews.d.ts +72 -0
- package/getViews.js +72 -0
- package/getViews.js.map +1 -1
- package/getVolume.d.ts +72 -0
- package/getVolume.js +72 -0
- package/getVolume.js.map +1 -1
- package/index.d.ts +6 -0
- package/index.js +10 -4
- package/index.js.map +1 -1
- package/job.d.ts +12 -0
- package/job.js +2 -0
- package/job.js.map +1 -1
- package/lakehouseMonitor.d.ts +43 -0
- package/lakehouseMonitor.js +43 -0
- package/lakehouseMonitor.js.map +1 -1
- package/modelServing.d.ts +18 -9
- package/modelServing.js.map +1 -1
- package/mwsCredentials.d.ts +2 -0
- package/mwsCredentials.js +2 -0
- package/mwsCredentials.js.map +1 -1
- package/mwsCustomerManagedKeys.d.ts +3 -2
- package/mwsCustomerManagedKeys.js +3 -2
- package/mwsCustomerManagedKeys.js.map +1 -1
- package/onlineTable.d.ts +8 -0
- package/onlineTable.js +2 -0
- package/onlineTable.js.map +1 -1
- package/package.json +2 -2
- package/permissions.d.ts +3 -2
- package/permissions.js +3 -2
- package/permissions.js.map +1 -1
- package/pipeline.d.ts +9 -0
- package/pipeline.js.map +1 -1
- package/qualityMonitor.d.ts +43 -0
- package/qualityMonitor.js +43 -0
- package/qualityMonitor.js.map +1 -1
- package/types/input.d.ts +282 -15
- package/types/output.d.ts +203 -15
package/types/input.d.ts
CHANGED
|
@@ -4812,6 +4812,164 @@ export interface GetMlflowModelTagArgs {
|
|
|
4812
4812
|
key?: pulumi.Input<string>;
|
|
4813
4813
|
value?: pulumi.Input<string>;
|
|
4814
4814
|
}
|
|
4815
|
+
export interface GetNotificationDestinationsNotificationDestination {
|
|
4816
|
+
/**
|
|
4817
|
+
* The type of the notification destination. Possible values are `EMAIL`, `MICROSOFT_TEAMS`, `PAGERDUTY`, `SLACK`, or `WEBHOOK`.
|
|
4818
|
+
*/
|
|
4819
|
+
destinationType?: string;
|
|
4820
|
+
/**
|
|
4821
|
+
* The display name of the Notification Destination.
|
|
4822
|
+
*/
|
|
4823
|
+
displayName?: string;
|
|
4824
|
+
/**
|
|
4825
|
+
* The unique ID of the Notification Destination.
|
|
4826
|
+
*/
|
|
4827
|
+
id?: string;
|
|
4828
|
+
}
|
|
4829
|
+
export interface GetNotificationDestinationsNotificationDestinationArgs {
|
|
4830
|
+
/**
|
|
4831
|
+
* The type of the notification destination. Possible values are `EMAIL`, `MICROSOFT_TEAMS`, `PAGERDUTY`, `SLACK`, or `WEBHOOK`.
|
|
4832
|
+
*/
|
|
4833
|
+
destinationType?: pulumi.Input<string>;
|
|
4834
|
+
/**
|
|
4835
|
+
* The display name of the Notification Destination.
|
|
4836
|
+
*/
|
|
4837
|
+
displayName?: pulumi.Input<string>;
|
|
4838
|
+
/**
|
|
4839
|
+
* The unique ID of the Notification Destination.
|
|
4840
|
+
*/
|
|
4841
|
+
id?: pulumi.Input<string>;
|
|
4842
|
+
}
|
|
4843
|
+
export interface GetRegisteredModelModelInfo {
|
|
4844
|
+
/**
|
|
4845
|
+
* the list of aliases associated with this model. Each item is object consisting of following attributes:
|
|
4846
|
+
*/
|
|
4847
|
+
aliases?: inputs.GetRegisteredModelModelInfoAlias[];
|
|
4848
|
+
browseOnly?: boolean;
|
|
4849
|
+
/**
|
|
4850
|
+
* The name of the catalog where the schema and the registered model reside.
|
|
4851
|
+
*/
|
|
4852
|
+
catalogName?: string;
|
|
4853
|
+
/**
|
|
4854
|
+
* The comment attached to the registered model.
|
|
4855
|
+
*/
|
|
4856
|
+
comment?: string;
|
|
4857
|
+
/**
|
|
4858
|
+
* the Unix timestamp at the model's creation
|
|
4859
|
+
*/
|
|
4860
|
+
createdAt?: number;
|
|
4861
|
+
/**
|
|
4862
|
+
* the identifier of the user who created the model
|
|
4863
|
+
*/
|
|
4864
|
+
createdBy?: string;
|
|
4865
|
+
/**
|
|
4866
|
+
* The fully-qualified name of the registered model (`catalog_name.schema_name.name`).
|
|
4867
|
+
*/
|
|
4868
|
+
fullName?: string;
|
|
4869
|
+
/**
|
|
4870
|
+
* the unique identifier of the metastore
|
|
4871
|
+
*/
|
|
4872
|
+
metastoreId?: string;
|
|
4873
|
+
/**
|
|
4874
|
+
* The name of the registered model.
|
|
4875
|
+
*/
|
|
4876
|
+
name?: string;
|
|
4877
|
+
/**
|
|
4878
|
+
* Name of the registered model owner.
|
|
4879
|
+
*/
|
|
4880
|
+
owner?: string;
|
|
4881
|
+
/**
|
|
4882
|
+
* The name of the schema where the registered model resides.
|
|
4883
|
+
*/
|
|
4884
|
+
schemaName?: string;
|
|
4885
|
+
/**
|
|
4886
|
+
* The storage location under which model version data files are stored.
|
|
4887
|
+
*/
|
|
4888
|
+
storageLocation?: string;
|
|
4889
|
+
/**
|
|
4890
|
+
* the timestamp of the last time changes were made to the model
|
|
4891
|
+
*/
|
|
4892
|
+
updatedAt?: number;
|
|
4893
|
+
/**
|
|
4894
|
+
* the identifier of the user who updated the model last time
|
|
4895
|
+
*/
|
|
4896
|
+
updatedBy?: string;
|
|
4897
|
+
}
|
|
4898
|
+
export interface GetRegisteredModelModelInfoArgs {
|
|
4899
|
+
/**
|
|
4900
|
+
* the list of aliases associated with this model. Each item is object consisting of following attributes:
|
|
4901
|
+
*/
|
|
4902
|
+
aliases?: pulumi.Input<pulumi.Input<inputs.GetRegisteredModelModelInfoAliasArgs>[]>;
|
|
4903
|
+
browseOnly?: pulumi.Input<boolean>;
|
|
4904
|
+
/**
|
|
4905
|
+
* The name of the catalog where the schema and the registered model reside.
|
|
4906
|
+
*/
|
|
4907
|
+
catalogName?: pulumi.Input<string>;
|
|
4908
|
+
/**
|
|
4909
|
+
* The comment attached to the registered model.
|
|
4910
|
+
*/
|
|
4911
|
+
comment?: pulumi.Input<string>;
|
|
4912
|
+
/**
|
|
4913
|
+
* the Unix timestamp at the model's creation
|
|
4914
|
+
*/
|
|
4915
|
+
createdAt?: pulumi.Input<number>;
|
|
4916
|
+
/**
|
|
4917
|
+
* the identifier of the user who created the model
|
|
4918
|
+
*/
|
|
4919
|
+
createdBy?: pulumi.Input<string>;
|
|
4920
|
+
/**
|
|
4921
|
+
* The fully-qualified name of the registered model (`catalog_name.schema_name.name`).
|
|
4922
|
+
*/
|
|
4923
|
+
fullName?: pulumi.Input<string>;
|
|
4924
|
+
/**
|
|
4925
|
+
* the unique identifier of the metastore
|
|
4926
|
+
*/
|
|
4927
|
+
metastoreId?: pulumi.Input<string>;
|
|
4928
|
+
/**
|
|
4929
|
+
* The name of the registered model.
|
|
4930
|
+
*/
|
|
4931
|
+
name?: pulumi.Input<string>;
|
|
4932
|
+
/**
|
|
4933
|
+
* Name of the registered model owner.
|
|
4934
|
+
*/
|
|
4935
|
+
owner?: pulumi.Input<string>;
|
|
4936
|
+
/**
|
|
4937
|
+
* The name of the schema where the registered model resides.
|
|
4938
|
+
*/
|
|
4939
|
+
schemaName?: pulumi.Input<string>;
|
|
4940
|
+
/**
|
|
4941
|
+
* The storage location under which model version data files are stored.
|
|
4942
|
+
*/
|
|
4943
|
+
storageLocation?: pulumi.Input<string>;
|
|
4944
|
+
/**
|
|
4945
|
+
* the timestamp of the last time changes were made to the model
|
|
4946
|
+
*/
|
|
4947
|
+
updatedAt?: pulumi.Input<number>;
|
|
4948
|
+
/**
|
|
4949
|
+
* the identifier of the user who updated the model last time
|
|
4950
|
+
*/
|
|
4951
|
+
updatedBy?: pulumi.Input<string>;
|
|
4952
|
+
}
|
|
4953
|
+
export interface GetRegisteredModelModelInfoAlias {
|
|
4954
|
+
/**
|
|
4955
|
+
* string with the name of alias
|
|
4956
|
+
*/
|
|
4957
|
+
aliasName?: string;
|
|
4958
|
+
/**
|
|
4959
|
+
* associated model version
|
|
4960
|
+
*/
|
|
4961
|
+
versionNum?: number;
|
|
4962
|
+
}
|
|
4963
|
+
export interface GetRegisteredModelModelInfoAliasArgs {
|
|
4964
|
+
/**
|
|
4965
|
+
* string with the name of alias
|
|
4966
|
+
*/
|
|
4967
|
+
aliasName?: pulumi.Input<string>;
|
|
4968
|
+
/**
|
|
4969
|
+
* associated model version
|
|
4970
|
+
*/
|
|
4971
|
+
versionNum?: pulumi.Input<number>;
|
|
4972
|
+
}
|
|
4815
4973
|
export interface GetSchemaSchemaInfo {
|
|
4816
4974
|
/**
|
|
4817
4975
|
* indicates whether the principal is limited to retrieving metadata for the schema through the BROWSE privilege.
|
|
@@ -8341,34 +8499,79 @@ export interface MlflowWebhookJobSpec {
|
|
|
8341
8499
|
workspaceUrl?: pulumi.Input<string>;
|
|
8342
8500
|
}
|
|
8343
8501
|
export interface ModelServingAiGateway {
|
|
8502
|
+
/**
|
|
8503
|
+
* Block with configuration for AI Guardrails to prevent unwanted data and unsafe data in requests and responses. Consists of the following attributes:
|
|
8504
|
+
*/
|
|
8344
8505
|
guardrails?: pulumi.Input<inputs.ModelServingAiGatewayGuardrails>;
|
|
8506
|
+
/**
|
|
8507
|
+
* Block describing the configuration of usage tracking. Consists of the following attributes:
|
|
8508
|
+
*/
|
|
8345
8509
|
inferenceTableConfig?: pulumi.Input<inputs.ModelServingAiGatewayInferenceTableConfig>;
|
|
8346
8510
|
/**
|
|
8347
|
-
*
|
|
8511
|
+
* Block describing rate limits for AI gateway. For details see the description of `rateLimits` block above.
|
|
8348
8512
|
*/
|
|
8349
8513
|
rateLimits?: pulumi.Input<pulumi.Input<inputs.ModelServingAiGatewayRateLimit>[]>;
|
|
8514
|
+
/**
|
|
8515
|
+
* Block with configuration for payload logging using inference tables. For details see the description of `autoCaptureConfig` block above.
|
|
8516
|
+
*/
|
|
8350
8517
|
usageTrackingConfig?: pulumi.Input<inputs.ModelServingAiGatewayUsageTrackingConfig>;
|
|
8351
8518
|
}
|
|
8352
8519
|
export interface ModelServingAiGatewayGuardrails {
|
|
8520
|
+
/**
|
|
8521
|
+
* A block with configuration for input guardrail filters:
|
|
8522
|
+
*/
|
|
8353
8523
|
input?: pulumi.Input<inputs.ModelServingAiGatewayGuardrailsInput>;
|
|
8524
|
+
/**
|
|
8525
|
+
* A block with configuration for output guardrail filters. Has the same structure as `input` block.
|
|
8526
|
+
*/
|
|
8354
8527
|
output?: pulumi.Input<inputs.ModelServingAiGatewayGuardrailsOutput>;
|
|
8355
8528
|
}
|
|
8356
8529
|
export interface ModelServingAiGatewayGuardrailsInput {
|
|
8530
|
+
/**
|
|
8531
|
+
* List of invalid keywords. AI guardrail uses keyword or string matching to decide if the keyword exists in the request or response content.
|
|
8532
|
+
*/
|
|
8357
8533
|
invalidKeywords?: pulumi.Input<pulumi.Input<string>[]>;
|
|
8534
|
+
/**
|
|
8535
|
+
* Block with configuration for guardrail PII filter:
|
|
8536
|
+
*/
|
|
8358
8537
|
pii?: pulumi.Input<inputs.ModelServingAiGatewayGuardrailsInputPii>;
|
|
8538
|
+
/**
|
|
8539
|
+
* the boolean flag that indicates whether the safety filter is enabled.
|
|
8540
|
+
*/
|
|
8359
8541
|
safety?: pulumi.Input<boolean>;
|
|
8542
|
+
/**
|
|
8543
|
+
* The list of allowed topics. Given a chat request, this guardrail flags the request if its topic is not in the allowed topics.
|
|
8544
|
+
*/
|
|
8360
8545
|
validTopics?: pulumi.Input<pulumi.Input<string>[]>;
|
|
8361
8546
|
}
|
|
8362
8547
|
export interface ModelServingAiGatewayGuardrailsInputPii {
|
|
8548
|
+
/**
|
|
8549
|
+
* a string that describes the behavior for PII filter. Currently only `BLOCK` value is supported.
|
|
8550
|
+
*/
|
|
8363
8551
|
behavior: pulumi.Input<string>;
|
|
8364
8552
|
}
|
|
8365
8553
|
export interface ModelServingAiGatewayGuardrailsOutput {
|
|
8554
|
+
/**
|
|
8555
|
+
* List of invalid keywords. AI guardrail uses keyword or string matching to decide if the keyword exists in the request or response content.
|
|
8556
|
+
*/
|
|
8366
8557
|
invalidKeywords?: pulumi.Input<pulumi.Input<string>[]>;
|
|
8558
|
+
/**
|
|
8559
|
+
* Block with configuration for guardrail PII filter:
|
|
8560
|
+
*/
|
|
8367
8561
|
pii?: pulumi.Input<inputs.ModelServingAiGatewayGuardrailsOutputPii>;
|
|
8562
|
+
/**
|
|
8563
|
+
* the boolean flag that indicates whether the safety filter is enabled.
|
|
8564
|
+
*/
|
|
8368
8565
|
safety?: pulumi.Input<boolean>;
|
|
8566
|
+
/**
|
|
8567
|
+
* The list of allowed topics. Given a chat request, this guardrail flags the request if its topic is not in the allowed topics.
|
|
8568
|
+
*/
|
|
8369
8569
|
validTopics?: pulumi.Input<pulumi.Input<string>[]>;
|
|
8370
8570
|
}
|
|
8371
8571
|
export interface ModelServingAiGatewayGuardrailsOutputPii {
|
|
8572
|
+
/**
|
|
8573
|
+
* a string that describes the behavior for PII filter. Currently only `BLOCK` value is supported.
|
|
8574
|
+
*/
|
|
8372
8575
|
behavior: pulumi.Input<string>;
|
|
8373
8576
|
}
|
|
8374
8577
|
export interface ModelServingAiGatewayInferenceTableConfig {
|
|
@@ -8377,7 +8580,7 @@ export interface ModelServingAiGatewayInferenceTableConfig {
|
|
|
8377
8580
|
*/
|
|
8378
8581
|
catalogName?: pulumi.Input<string>;
|
|
8379
8582
|
/**
|
|
8380
|
-
*
|
|
8583
|
+
* boolean flag specifying if usage tracking is enabled.
|
|
8381
8584
|
*/
|
|
8382
8585
|
enabled?: pulumi.Input<boolean>;
|
|
8383
8586
|
/**
|
|
@@ -8404,9 +8607,6 @@ export interface ModelServingAiGatewayRateLimit {
|
|
|
8404
8607
|
renewalPeriod: pulumi.Input<string>;
|
|
8405
8608
|
}
|
|
8406
8609
|
export interface ModelServingAiGatewayUsageTrackingConfig {
|
|
8407
|
-
/**
|
|
8408
|
-
* If inference tables are enabled or not. NOTE: If you have already disabled payload logging once, you cannot enable again.
|
|
8409
|
-
*/
|
|
8410
8610
|
enabled?: pulumi.Input<boolean>;
|
|
8411
8611
|
}
|
|
8412
8612
|
export interface ModelServingConfig {
|
|
@@ -8435,7 +8635,7 @@ export interface ModelServingConfigAutoCaptureConfig {
|
|
|
8435
8635
|
*/
|
|
8436
8636
|
catalogName?: pulumi.Input<string>;
|
|
8437
8637
|
/**
|
|
8438
|
-
* If inference tables are enabled or not. NOTE: If you have already disabled payload logging once, you cannot enable again.
|
|
8638
|
+
* If inference tables are enabled or not. NOTE: If you have already disabled payload logging once, you cannot enable it again.
|
|
8439
8639
|
*/
|
|
8440
8640
|
enabled?: pulumi.Input<boolean>;
|
|
8441
8641
|
/**
|
|
@@ -8457,13 +8657,13 @@ export interface ModelServingConfigServedEntity {
|
|
|
8457
8657
|
*/
|
|
8458
8658
|
entityVersion?: pulumi.Input<string>;
|
|
8459
8659
|
/**
|
|
8460
|
-
* An object containing a set of optional, user-specified environment variable key-value pairs used for serving this entity. Note: this is an experimental feature and subject to change. Example entity environment variables that refer to Databricks secrets: ```{"OPENAI_API_KEY": "{{secrets/my_scope/my_key}}", "DATABRICKS_TOKEN": "{{secrets/my_scope2/my_key2}}"}```
|
|
8660
|
+
* An object containing a set of optional, user-specified environment variable key-value pairs used for serving this entity. Note: this is an experimental feature and is subject to change. Example entity environment variables that refer to Databricks secrets: ```{"OPENAI_API_KEY": "{{secrets/my_scope/my_key}}", "DATABRICKS_TOKEN": "{{secrets/my_scope2/my_key2}}"}```
|
|
8461
8661
|
*/
|
|
8462
8662
|
environmentVars?: pulumi.Input<{
|
|
8463
8663
|
[key: string]: pulumi.Input<string>;
|
|
8464
8664
|
}>;
|
|
8465
8665
|
/**
|
|
8466
|
-
* The external model to be served. NOTE: Only one of `externalModel` and (`entityName`, `entityVersion`, `workloadSize`, `workloadType`, and `scaleToZeroEnabled`) can be specified with the latter set being used for custom model serving for a Databricks registered model. When an `externalModel` is present, the served entities list can only have one `servedEntity` object.
|
|
8666
|
+
* The external model to be served. NOTE: Only one of `externalModel` and (`entityName`, `entityVersion`, `workloadSize`, `workloadType`, and `scaleToZeroEnabled`) can be specified with the latter set being used for custom model serving for a Databricks registered model. When an `externalModel` is present, the served entities list can only have one `servedEntity` object. An existing endpoint with `externalModel` can not be updated to an endpoint without `externalModel`. If the endpoint is created without `externalModel`, users cannot update it to add `externalModel` later.
|
|
8467
8667
|
*/
|
|
8468
8668
|
externalModel?: pulumi.Input<inputs.ModelServingConfigServedEntityExternalModel>;
|
|
8469
8669
|
/**
|
|
@@ -8516,6 +8716,9 @@ export interface ModelServingConfigServedEntityExternalModel {
|
|
|
8516
8716
|
* Databricks Model Serving Config
|
|
8517
8717
|
*/
|
|
8518
8718
|
databricksModelServingConfig?: pulumi.Input<inputs.ModelServingConfigServedEntityExternalModelDatabricksModelServingConfig>;
|
|
8719
|
+
/**
|
|
8720
|
+
* Google Cloud Vertex AI Config.
|
|
8721
|
+
*/
|
|
8519
8722
|
googleCloudVertexAiConfig?: pulumi.Input<inputs.ModelServingConfigServedEntityExternalModelGoogleCloudVertexAiConfig>;
|
|
8520
8723
|
/**
|
|
8521
8724
|
* The name of the external model.
|
|
@@ -8530,7 +8733,7 @@ export interface ModelServingConfigServedEntityExternalModel {
|
|
|
8530
8733
|
*/
|
|
8531
8734
|
palmConfig?: pulumi.Input<inputs.ModelServingConfigServedEntityExternalModelPalmConfig>;
|
|
8532
8735
|
/**
|
|
8533
|
-
* The name of the provider for the external model. Currently, the supported providers are `ai21labs`, `anthropic`, `amazon-bedrock`, `cohere`, `databricks-model-serving`, `openai`, and `palm`.
|
|
8736
|
+
* The name of the provider for the external model. Currently, the supported providers are `ai21labs`, `anthropic`, `amazon-bedrock`, `cohere`, `databricks-model-serving`, `google-cloud-vertex-ai`, `openai`, and `palm`.
|
|
8534
8737
|
*/
|
|
8535
8738
|
provider: pulumi.Input<string>;
|
|
8536
8739
|
/**
|
|
@@ -8543,6 +8746,9 @@ export interface ModelServingConfigServedEntityExternalModelAi21labsConfig {
|
|
|
8543
8746
|
* The Databricks secret key reference for an AI21Labs API key.
|
|
8544
8747
|
*/
|
|
8545
8748
|
ai21labsApiKey?: pulumi.Input<string>;
|
|
8749
|
+
/**
|
|
8750
|
+
* An AI21 Labs API key provided as a plaintext string.
|
|
8751
|
+
*/
|
|
8546
8752
|
ai21labsApiKeyPlaintext?: pulumi.Input<string>;
|
|
8547
8753
|
}
|
|
8548
8754
|
export interface ModelServingConfigServedEntityExternalModelAmazonBedrockConfig {
|
|
@@ -8550,6 +8756,9 @@ export interface ModelServingConfigServedEntityExternalModelAmazonBedrockConfig
|
|
|
8550
8756
|
* The Databricks secret key reference for an AWS Access Key ID with permissions to interact with Bedrock services.
|
|
8551
8757
|
*/
|
|
8552
8758
|
awsAccessKeyId?: pulumi.Input<string>;
|
|
8759
|
+
/**
|
|
8760
|
+
* An AWS access key ID with permissions to interact with Bedrock services provided as a plaintext string.
|
|
8761
|
+
*/
|
|
8553
8762
|
awsAccessKeyIdPlaintext?: pulumi.Input<string>;
|
|
8554
8763
|
/**
|
|
8555
8764
|
* The AWS region to use. Bedrock has to be enabled there.
|
|
@@ -8559,6 +8768,9 @@ export interface ModelServingConfigServedEntityExternalModelAmazonBedrockConfig
|
|
|
8559
8768
|
* The Databricks secret key reference for an AWS Secret Access Key paired with the access key ID, with permissions to interact with Bedrock services.
|
|
8560
8769
|
*/
|
|
8561
8770
|
awsSecretAccessKey?: pulumi.Input<string>;
|
|
8771
|
+
/**
|
|
8772
|
+
* An AWS secret access key paired with the access key ID, with permissions to interact with Bedrock services provided as a plaintext string.
|
|
8773
|
+
*/
|
|
8562
8774
|
awsSecretAccessKeyPlaintext?: pulumi.Input<string>;
|
|
8563
8775
|
/**
|
|
8564
8776
|
* The underlying provider in Amazon Bedrock. Supported values (case insensitive) include: `Anthropic`, `Cohere`, `AI21Labs`, `Amazon`.
|
|
@@ -8567,10 +8779,12 @@ export interface ModelServingConfigServedEntityExternalModelAmazonBedrockConfig
|
|
|
8567
8779
|
}
|
|
8568
8780
|
export interface ModelServingConfigServedEntityExternalModelAnthropicConfig {
|
|
8569
8781
|
/**
|
|
8570
|
-
* The Databricks secret key reference for an Anthropic API key.
|
|
8571
8782
|
* The Databricks secret key reference for an Anthropic API key.
|
|
8572
8783
|
*/
|
|
8573
8784
|
anthropicApiKey?: pulumi.Input<string>;
|
|
8785
|
+
/**
|
|
8786
|
+
* The Anthropic API key provided as a plaintext string.
|
|
8787
|
+
*/
|
|
8574
8788
|
anthropicApiKeyPlaintext?: pulumi.Input<string>;
|
|
8575
8789
|
}
|
|
8576
8790
|
export interface ModelServingConfigServedEntityExternalModelCohereConfig {
|
|
@@ -8579,6 +8793,9 @@ export interface ModelServingConfigServedEntityExternalModelCohereConfig {
|
|
|
8579
8793
|
* The Databricks secret key reference for a Cohere API key.
|
|
8580
8794
|
*/
|
|
8581
8795
|
cohereApiKey?: pulumi.Input<string>;
|
|
8796
|
+
/**
|
|
8797
|
+
* The Cohere API key provided as a plaintext string.
|
|
8798
|
+
*/
|
|
8582
8799
|
cohereApiKeyPlaintext?: pulumi.Input<string>;
|
|
8583
8800
|
}
|
|
8584
8801
|
export interface ModelServingConfigServedEntityExternalModelDatabricksModelServingConfig {
|
|
@@ -8586,6 +8803,9 @@ export interface ModelServingConfigServedEntityExternalModelDatabricksModelServi
|
|
|
8586
8803
|
* The Databricks secret key reference for a Databricks API token that corresponds to a user or service principal with Can Query access to the model serving endpoint pointed to by this external model.
|
|
8587
8804
|
*/
|
|
8588
8805
|
databricksApiToken?: pulumi.Input<string>;
|
|
8806
|
+
/**
|
|
8807
|
+
* The Databricks API token that corresponds to a user or service principal with Can Query access to the model serving endpoint pointed to by this external model provided as a plaintext string.
|
|
8808
|
+
*/
|
|
8589
8809
|
databricksApiTokenPlaintext?: pulumi.Input<string>;
|
|
8590
8810
|
/**
|
|
8591
8811
|
* The URL of the Databricks workspace containing the model serving endpoint pointed to by this external model.
|
|
@@ -8593,31 +8813,58 @@ export interface ModelServingConfigServedEntityExternalModelDatabricksModelServi
|
|
|
8593
8813
|
databricksWorkspaceUrl: pulumi.Input<string>;
|
|
8594
8814
|
}
|
|
8595
8815
|
export interface ModelServingConfigServedEntityExternalModelGoogleCloudVertexAiConfig {
|
|
8816
|
+
/**
|
|
8817
|
+
* The Databricks secret key reference for a private key for the service account that has access to the Google Cloud Vertex AI Service.
|
|
8818
|
+
*/
|
|
8596
8819
|
privateKey?: pulumi.Input<string>;
|
|
8820
|
+
/**
|
|
8821
|
+
* The private key for the service account that has access to the Google Cloud Vertex AI Service is provided as a plaintext secret.
|
|
8822
|
+
*/
|
|
8597
8823
|
privateKeyPlaintext?: pulumi.Input<string>;
|
|
8824
|
+
/**
|
|
8825
|
+
* This is the Google Cloud project id that the service account is associated with.
|
|
8826
|
+
*/
|
|
8598
8827
|
projectId?: pulumi.Input<string>;
|
|
8828
|
+
/**
|
|
8829
|
+
* This is the region for the Google Cloud Vertex AI Service.
|
|
8830
|
+
*/
|
|
8599
8831
|
region?: pulumi.Input<string>;
|
|
8600
8832
|
}
|
|
8601
8833
|
export interface ModelServingConfigServedEntityExternalModelOpenaiConfig {
|
|
8834
|
+
/**
|
|
8835
|
+
* This field is only required for Azure AD OpenAI and is the Microsoft Entra Client ID.
|
|
8836
|
+
*/
|
|
8602
8837
|
microsoftEntraClientId?: pulumi.Input<string>;
|
|
8838
|
+
/**
|
|
8839
|
+
* The Databricks secret key reference for a client secret used for Microsoft Entra ID authentication.
|
|
8840
|
+
*/
|
|
8603
8841
|
microsoftEntraClientSecret?: pulumi.Input<string>;
|
|
8842
|
+
/**
|
|
8843
|
+
* The client secret used for Microsoft Entra ID authentication provided as a plaintext string.
|
|
8844
|
+
*/
|
|
8604
8845
|
microsoftEntraClientSecretPlaintext?: pulumi.Input<string>;
|
|
8846
|
+
/**
|
|
8847
|
+
* This field is only required for Azure AD OpenAI and is the Microsoft Entra Tenant ID.
|
|
8848
|
+
*/
|
|
8605
8849
|
microsoftEntraTenantId?: pulumi.Input<string>;
|
|
8606
8850
|
/**
|
|
8607
|
-
* This is the base URL for the OpenAI API (default: "https://api.openai.com/v1"). For Azure OpenAI, this field is required
|
|
8851
|
+
* This is the base URL for the OpenAI API (default: "https://api.openai.com/v1"). For Azure OpenAI, this field is required and is the base URL for the Azure OpenAI API service provided by Azure.
|
|
8608
8852
|
*/
|
|
8609
8853
|
openaiApiBase?: pulumi.Input<string>;
|
|
8610
8854
|
/**
|
|
8611
8855
|
* The Databricks secret key reference for an OpenAI or Azure OpenAI API key.
|
|
8612
8856
|
*/
|
|
8613
8857
|
openaiApiKey?: pulumi.Input<string>;
|
|
8858
|
+
/**
|
|
8859
|
+
* The OpenAI API key using the OpenAI or Azure service provided as a plaintext string.
|
|
8860
|
+
*/
|
|
8614
8861
|
openaiApiKeyPlaintext?: pulumi.Input<string>;
|
|
8615
8862
|
/**
|
|
8616
|
-
* This is an optional field to specify the type of OpenAI API to use. For Azure OpenAI, this field is required, and
|
|
8863
|
+
* This is an optional field to specify the type of OpenAI API to use. For Azure OpenAI, this field is required, and this parameter represents the preferred security access validation protocol. For access token validation, use `azure`. For authentication using Azure Active Directory (Azure AD) use, `azuread`.
|
|
8617
8864
|
*/
|
|
8618
8865
|
openaiApiType?: pulumi.Input<string>;
|
|
8619
8866
|
/**
|
|
8620
|
-
* This is an optional field to specify the OpenAI API version. For Azure OpenAI, this field is required
|
|
8867
|
+
* This is an optional field to specify the OpenAI API version. For Azure OpenAI, this field is required and is the version of the Azure OpenAI service to utilize, specified by a date.
|
|
8621
8868
|
*/
|
|
8622
8869
|
openaiApiVersion?: pulumi.Input<string>;
|
|
8623
8870
|
/**
|
|
@@ -8634,11 +8881,14 @@ export interface ModelServingConfigServedEntityExternalModelPalmConfig {
|
|
|
8634
8881
|
* The Databricks secret key reference for a PaLM API key.
|
|
8635
8882
|
*/
|
|
8636
8883
|
palmApiKey?: pulumi.Input<string>;
|
|
8884
|
+
/**
|
|
8885
|
+
* The PaLM API key provided as a plaintext string.
|
|
8886
|
+
*/
|
|
8637
8887
|
palmApiKeyPlaintext?: pulumi.Input<string>;
|
|
8638
8888
|
}
|
|
8639
8889
|
export interface ModelServingConfigServedModel {
|
|
8640
8890
|
/**
|
|
8641
|
-
* a map of environment variable
|
|
8891
|
+
* a map of environment variable names/values that will be used for serving this model. Environment variables may refer to Databricks secrets using the standard syntax: `{{secrets/secret_scope/secret_key}}`.
|
|
8642
8892
|
*/
|
|
8643
8893
|
environmentVars?: pulumi.Input<{
|
|
8644
8894
|
[key: string]: pulumi.Input<string>;
|
|
@@ -8676,7 +8926,7 @@ export interface ModelServingConfigServedModel {
|
|
|
8676
8926
|
*/
|
|
8677
8927
|
workloadSize?: pulumi.Input<string>;
|
|
8678
8928
|
/**
|
|
8679
|
-
* The workload type of the served model. The workload type selects which type of compute to use in the endpoint. For deep learning workloads, GPU acceleration is available by selecting workload types like `GPU_SMALL` and others. See documentation for all options. The default value is `CPU`.
|
|
8929
|
+
* The workload type of the served model. The workload type selects which type of compute to use in the endpoint. For deep learning workloads, GPU acceleration is available by selecting workload types like `GPU_SMALL` and others. See the documentation for all options. The default value is `CPU`.
|
|
8680
8930
|
*/
|
|
8681
8931
|
workloadType?: pulumi.Input<string>;
|
|
8682
8932
|
}
|
|
@@ -9267,9 +9517,23 @@ export interface PipelineIngestionDefinition {
|
|
|
9267
9517
|
tableConfiguration?: pulumi.Input<inputs.PipelineIngestionDefinitionTableConfiguration>;
|
|
9268
9518
|
}
|
|
9269
9519
|
export interface PipelineIngestionDefinitionObject {
|
|
9520
|
+
report?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectReport>;
|
|
9270
9521
|
schema?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectSchema>;
|
|
9271
9522
|
table?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectTable>;
|
|
9272
9523
|
}
|
|
9524
|
+
export interface PipelineIngestionDefinitionObjectReport {
|
|
9525
|
+
destinationCatalog?: pulumi.Input<string>;
|
|
9526
|
+
destinationSchema?: pulumi.Input<string>;
|
|
9527
|
+
destinationTable?: pulumi.Input<string>;
|
|
9528
|
+
sourceUrl?: pulumi.Input<string>;
|
|
9529
|
+
tableConfiguration?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectReportTableConfiguration>;
|
|
9530
|
+
}
|
|
9531
|
+
export interface PipelineIngestionDefinitionObjectReportTableConfiguration {
|
|
9532
|
+
primaryKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
9533
|
+
salesforceIncludeFormulaFields?: pulumi.Input<boolean>;
|
|
9534
|
+
scdType?: pulumi.Input<string>;
|
|
9535
|
+
sequenceBies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
9536
|
+
}
|
|
9273
9537
|
export interface PipelineIngestionDefinitionObjectSchema {
|
|
9274
9538
|
destinationCatalog?: pulumi.Input<string>;
|
|
9275
9539
|
destinationSchema?: pulumi.Input<string>;
|
|
@@ -9281,6 +9545,7 @@ export interface PipelineIngestionDefinitionObjectSchemaTableConfiguration {
|
|
|
9281
9545
|
primaryKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
9282
9546
|
salesforceIncludeFormulaFields?: pulumi.Input<boolean>;
|
|
9283
9547
|
scdType?: pulumi.Input<string>;
|
|
9548
|
+
sequenceBies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
9284
9549
|
}
|
|
9285
9550
|
export interface PipelineIngestionDefinitionObjectTable {
|
|
9286
9551
|
destinationCatalog?: pulumi.Input<string>;
|
|
@@ -9295,11 +9560,13 @@ export interface PipelineIngestionDefinitionObjectTableTableConfiguration {
|
|
|
9295
9560
|
primaryKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
9296
9561
|
salesforceIncludeFormulaFields?: pulumi.Input<boolean>;
|
|
9297
9562
|
scdType?: pulumi.Input<string>;
|
|
9563
|
+
sequenceBies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
9298
9564
|
}
|
|
9299
9565
|
export interface PipelineIngestionDefinitionTableConfiguration {
|
|
9300
9566
|
primaryKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
9301
9567
|
salesforceIncludeFormulaFields?: pulumi.Input<boolean>;
|
|
9302
9568
|
scdType?: pulumi.Input<string>;
|
|
9569
|
+
sequenceBies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
9303
9570
|
}
|
|
9304
9571
|
export interface PipelineLatestUpdate {
|
|
9305
9572
|
creationTime?: pulumi.Input<string>;
|