@pulumi/databricks 1.48.0-alpha.1723008506 → 1.48.0-alpha.1723806379

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.
Files changed (48) hide show
  1. package/getAwsUnityCatalogAssumeRolePolicy.d.ts +2 -2
  2. package/getAwsUnityCatalogAssumeRolePolicy.js +2 -2
  3. package/getAwsUnityCatalogPolicy.d.ts +4 -4
  4. package/getAwsUnityCatalogPolicy.js +2 -2
  5. package/getNotebook.d.ts +4 -0
  6. package/getNotebook.js.map +1 -1
  7. package/getSchema.d.ts +68 -0
  8. package/getSchema.js +68 -0
  9. package/getSchema.js.map +1 -1
  10. package/getUser.d.ts +4 -0
  11. package/getUser.js.map +1 -1
  12. package/index.d.ts +3 -0
  13. package/index.js +6 -1
  14. package/index.js.map +1 -1
  15. package/metastoreAssignment.d.ts +3 -3
  16. package/metastoreDataAccess.d.ts +3 -0
  17. package/metastoreDataAccess.js +2 -0
  18. package/metastoreDataAccess.js.map +1 -1
  19. package/notebook.d.ts +8 -0
  20. package/notebook.js +2 -0
  21. package/notebook.js.map +1 -1
  22. package/notificationDestination.d.ts +157 -0
  23. package/notificationDestination.js +139 -0
  24. package/notificationDestination.js.map +1 -0
  25. package/package.json +2 -2
  26. package/permissions.d.ts +70 -5
  27. package/permissions.js +70 -5
  28. package/permissions.js.map +1 -1
  29. package/pipeline.d.ts +79 -3
  30. package/pipeline.js +25 -1
  31. package/pipeline.js.map +1 -1
  32. package/sqlDashboard.d.ts +4 -2
  33. package/sqlDashboard.js +4 -2
  34. package/sqlDashboard.js.map +1 -1
  35. package/sqlTable.d.ts +3 -3
  36. package/sqlWidget.d.ts +5 -3
  37. package/sqlWidget.js +5 -3
  38. package/sqlWidget.js.map +1 -1
  39. package/storageCredential.d.ts +3 -0
  40. package/storageCredential.js +2 -0
  41. package/storageCredential.js.map +1 -1
  42. package/types/input.d.ts +233 -25
  43. package/types/output.d.ts +233 -25
  44. package/volume.d.ts +1 -1
  45. package/volume.js +1 -1
  46. package/workspaceConf.d.ts +7 -5
  47. package/workspaceConf.js +7 -5
  48. package/workspaceConf.js.map +1 -1
@@ -103,6 +103,7 @@ export declare class StorageCredential extends pulumi.CustomResource {
103
103
  readonly awsIamRole: pulumi.Output<outputs.StorageCredentialAwsIamRole | undefined>;
104
104
  readonly azureManagedIdentity: pulumi.Output<outputs.StorageCredentialAzureManagedIdentity | undefined>;
105
105
  readonly azureServicePrincipal: pulumi.Output<outputs.StorageCredentialAzureServicePrincipal | undefined>;
106
+ readonly cloudflareApiToken: pulumi.Output<outputs.StorageCredentialCloudflareApiToken | undefined>;
106
107
  readonly comment: pulumi.Output<string | undefined>;
107
108
  readonly databricksGcpServiceAccount: pulumi.Output<outputs.StorageCredentialDatabricksGcpServiceAccount>;
108
109
  /**
@@ -160,6 +161,7 @@ export interface StorageCredentialState {
160
161
  awsIamRole?: pulumi.Input<inputs.StorageCredentialAwsIamRole>;
161
162
  azureManagedIdentity?: pulumi.Input<inputs.StorageCredentialAzureManagedIdentity>;
162
163
  azureServicePrincipal?: pulumi.Input<inputs.StorageCredentialAzureServicePrincipal>;
164
+ cloudflareApiToken?: pulumi.Input<inputs.StorageCredentialCloudflareApiToken>;
163
165
  comment?: pulumi.Input<string>;
164
166
  databricksGcpServiceAccount?: pulumi.Input<inputs.StorageCredentialDatabricksGcpServiceAccount>;
165
167
  /**
@@ -209,6 +211,7 @@ export interface StorageCredentialArgs {
209
211
  awsIamRole?: pulumi.Input<inputs.StorageCredentialAwsIamRole>;
210
212
  azureManagedIdentity?: pulumi.Input<inputs.StorageCredentialAzureManagedIdentity>;
211
213
  azureServicePrincipal?: pulumi.Input<inputs.StorageCredentialAzureServicePrincipal>;
214
+ cloudflareApiToken?: pulumi.Input<inputs.StorageCredentialCloudflareApiToken>;
212
215
  comment?: pulumi.Input<string>;
213
216
  databricksGcpServiceAccount?: pulumi.Input<inputs.StorageCredentialDatabricksGcpServiceAccount>;
214
217
  /**
@@ -119,6 +119,7 @@ class StorageCredential extends pulumi.CustomResource {
119
119
  resourceInputs["awsIamRole"] = state ? state.awsIamRole : undefined;
120
120
  resourceInputs["azureManagedIdentity"] = state ? state.azureManagedIdentity : undefined;
121
121
  resourceInputs["azureServicePrincipal"] = state ? state.azureServicePrincipal : undefined;
122
+ resourceInputs["cloudflareApiToken"] = state ? state.cloudflareApiToken : undefined;
122
123
  resourceInputs["comment"] = state ? state.comment : undefined;
123
124
  resourceInputs["databricksGcpServiceAccount"] = state ? state.databricksGcpServiceAccount : undefined;
124
125
  resourceInputs["forceDestroy"] = state ? state.forceDestroy : undefined;
@@ -137,6 +138,7 @@ class StorageCredential extends pulumi.CustomResource {
137
138
  resourceInputs["awsIamRole"] = args ? args.awsIamRole : undefined;
138
139
  resourceInputs["azureManagedIdentity"] = args ? args.azureManagedIdentity : undefined;
139
140
  resourceInputs["azureServicePrincipal"] = args ? args.azureServicePrincipal : undefined;
141
+ resourceInputs["cloudflareApiToken"] = args ? args.cloudflareApiToken : undefined;
140
142
  resourceInputs["comment"] = args ? args.comment : undefined;
141
143
  resourceInputs["databricksGcpServiceAccount"] = args ? args.databricksGcpServiceAccount : undefined;
142
144
  resourceInputs["forceDestroy"] = args ? args.forceDestroy : undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"storageCredential.js","sourceRoot":"","sources":["../storageCredential.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"storageCredential.js","sourceRoot":"","sources":["../storageCredential.ts"],"names":[],"mappings":"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"}
package/types/input.d.ts CHANGED
@@ -144,7 +144,7 @@ export interface ClusterAzureAttributes {
144
144
  firstOnDemand?: pulumi.Input<number>;
145
145
  logAnalyticsInfo?: pulumi.Input<inputs.ClusterAzureAttributesLogAnalyticsInfo>;
146
146
  /**
147
- * The max price for Azure spot instances. Use `-1` to specify the lowest price.
147
+ * The max bid price used for Azure spot instances. You can set this to greater than or equal to the current spot price. You can also set this to `-1`, which specifies that the instance cannot be evicted on the basis of price. The price for the instance will be the current price for spot instances or the price for a standard instance.
148
148
  */
149
149
  spotBidMaxPrice?: pulumi.Input<number>;
150
150
  }
@@ -5686,7 +5686,7 @@ export interface InstancePoolAzureAttributes {
5686
5686
  */
5687
5687
  availability?: pulumi.Input<string>;
5688
5688
  /**
5689
- * The max price for Azure spot instances. Use `-1` to specify the lowest price.
5689
+ * The max bid price used for Azure spot instances. You can set this to greater than or equal to the current spot price. You can also set this to `-1`, which specifies that the instance cannot be evicted on the basis of price. The price for the instance will be the current price for spot instances or the price for a standard instance.
5690
5690
  */
5691
5691
  spotBidMaxPrice?: pulumi.Input<number>;
5692
5692
  }
@@ -6481,12 +6481,15 @@ export interface JobTask {
6481
6481
  */
6482
6482
  dependsOns?: pulumi.Input<pulumi.Input<inputs.JobTaskDependsOn>[]>;
6483
6483
  /**
6484
- * An optional description for the job. The maximum length is 1024 characters in UTF-8 encoding.
6484
+ * description for this task.
6485
6485
  */
6486
6486
  description?: pulumi.Input<string>;
6487
+ /**
6488
+ * A flag to disable auto optimization in serverless tasks.
6489
+ */
6487
6490
  disableAutoOptimization?: pulumi.Input<boolean>;
6488
6491
  /**
6489
- * (List) An optional set of email addresses notified when this task begins, completes or fails. The default behavior is to not send any emails. This field is a block and is documented below.
6492
+ * An optional block to specify a set of email addresses notified when this task begins, completes or fails. The default behavior is to not send any emails. This block is documented below.
6490
6493
  */
6491
6494
  emailNotifications?: pulumi.Input<inputs.JobTaskEmailNotifications>;
6492
6495
  /**
@@ -6500,8 +6503,6 @@ export interface JobTask {
6500
6503
  forEachTask?: pulumi.Input<inputs.JobTaskForEachTask>;
6501
6504
  /**
6502
6505
  * block described below that specifies health conditions for a given task.
6503
- *
6504
- * > **Note** If no `jobClusterKey`, `existingClusterId`, or `newCluster` were specified in task definition, then task will executed using serverless compute.
6505
6506
  */
6506
6507
  health?: pulumi.Input<inputs.JobTaskHealth>;
6507
6508
  /**
@@ -6555,6 +6556,8 @@ export interface JobTask {
6555
6556
  timeoutSeconds?: pulumi.Input<number>;
6556
6557
  /**
6557
6558
  * (List) An optional set of system destinations (for example, webhook destinations or Slack) to be notified when runs of this task begins, completes or fails. The default behavior is to not send any notifications. This field is a block and is documented below.
6559
+ *
6560
+ * > **Note** If no `jobClusterKey`, `existingClusterId`, or `newCluster` were specified in task definition, then task will executed using serverless compute.
6558
6561
  */
6559
6562
  webhookNotifications?: pulumi.Input<inputs.JobTaskWebhookNotifications>;
6560
6563
  }
@@ -6667,12 +6670,15 @@ export interface JobTaskForEachTaskTask {
6667
6670
  */
6668
6671
  dependsOns?: pulumi.Input<pulumi.Input<inputs.JobTaskForEachTaskTaskDependsOn>[]>;
6669
6672
  /**
6670
- * An optional description for the job. The maximum length is 1024 characters in UTF-8 encoding.
6673
+ * description for this task.
6671
6674
  */
6672
6675
  description?: pulumi.Input<string>;
6676
+ /**
6677
+ * A flag to disable auto optimization in serverless tasks.
6678
+ */
6673
6679
  disableAutoOptimization?: pulumi.Input<boolean>;
6674
6680
  /**
6675
- * (List) An optional set of email addresses notified when this task begins, completes or fails. The default behavior is to not send any emails. This field is a block and is documented below.
6681
+ * An optional block to specify a set of email addresses notified when this task begins, completes or fails. The default behavior is to not send any emails. This block is documented below.
6676
6682
  */
6677
6683
  emailNotifications?: pulumi.Input<inputs.JobTaskForEachTaskTaskEmailNotifications>;
6678
6684
  /**
@@ -6685,8 +6691,6 @@ export interface JobTaskForEachTaskTask {
6685
6691
  existingClusterId?: pulumi.Input<string>;
6686
6692
  /**
6687
6693
  * block described below that specifies health conditions for a given task.
6688
- *
6689
- * > **Note** If no `jobClusterKey`, `existingClusterId`, or `newCluster` were specified in task definition, then task will executed using serverless compute.
6690
6694
  */
6691
6695
  health?: pulumi.Input<inputs.JobTaskForEachTaskTaskHealth>;
6692
6696
  /**
@@ -6740,6 +6744,8 @@ export interface JobTaskForEachTaskTask {
6740
6744
  timeoutSeconds?: pulumi.Input<number>;
6741
6745
  /**
6742
6746
  * (List) An optional set of system destinations (for example, webhook destinations or Slack) to be notified when runs of this task begins, completes or fails. The default behavior is to not send any notifications. This field is a block and is documented below.
6747
+ *
6748
+ * > **Note** If no `jobClusterKey`, `existingClusterId`, or `newCluster` were specified in task definition, then task will executed using serverless compute.
6743
6749
  */
6744
6750
  webhookNotifications?: pulumi.Input<inputs.JobTaskForEachTaskTaskWebhookNotifications>;
6745
6751
  }
@@ -8164,6 +8170,11 @@ export interface MetastoreDataAccessAzureServicePrincipal {
8164
8170
  clientSecret: pulumi.Input<string>;
8165
8171
  directoryId: pulumi.Input<string>;
8166
8172
  }
8173
+ export interface MetastoreDataAccessCloudflareApiToken {
8174
+ accessKeyId: pulumi.Input<string>;
8175
+ accountId: pulumi.Input<string>;
8176
+ secretAccessKey: pulumi.Input<string>;
8177
+ }
8167
8178
  export interface MetastoreDataAccessDatabricksGcpServiceAccount {
8168
8179
  credentialId?: pulumi.Input<string>;
8169
8180
  email?: pulumi.Input<string>;
@@ -8316,6 +8327,7 @@ export interface ModelServingConfigServedEntityExternalModel {
8316
8327
  * Databricks Model Serving Config
8317
8328
  */
8318
8329
  databricksModelServingConfig?: pulumi.Input<inputs.ModelServingConfigServedEntityExternalModelDatabricksModelServingConfig>;
8330
+ googleCloudVertexAiConfig?: pulumi.Input<inputs.ModelServingConfigServedEntityExternalModelGoogleCloudVertexAiConfig>;
8319
8331
  /**
8320
8332
  * The name of the external model.
8321
8333
  */
@@ -8341,13 +8353,15 @@ export interface ModelServingConfigServedEntityExternalModelAi21labsConfig {
8341
8353
  /**
8342
8354
  * The Databricks secret key reference for an AI21Labs API key.
8343
8355
  */
8344
- ai21labsApiKey: pulumi.Input<string>;
8356
+ ai21labsApiKey?: pulumi.Input<string>;
8357
+ ai21labsApiKeyPlaintext?: pulumi.Input<string>;
8345
8358
  }
8346
8359
  export interface ModelServingConfigServedEntityExternalModelAmazonBedrockConfig {
8347
8360
  /**
8348
8361
  * The Databricks secret key reference for an AWS Access Key ID with permissions to interact with Bedrock services.
8349
8362
  */
8350
- awsAccessKeyId: pulumi.Input<string>;
8363
+ awsAccessKeyId?: pulumi.Input<string>;
8364
+ awsAccessKeyIdPlaintext?: pulumi.Input<string>;
8351
8365
  /**
8352
8366
  * The AWS region to use. Bedrock has to be enabled there.
8353
8367
  */
@@ -8355,7 +8369,8 @@ export interface ModelServingConfigServedEntityExternalModelAmazonBedrockConfig
8355
8369
  /**
8356
8370
  * The Databricks secret key reference for an AWS Secret Access Key paired with the access key ID, with permissions to interact with Bedrock services.
8357
8371
  */
8358
- awsSecretAccessKey: pulumi.Input<string>;
8372
+ awsSecretAccessKey?: pulumi.Input<string>;
8373
+ awsSecretAccessKeyPlaintext?: pulumi.Input<string>;
8359
8374
  /**
8360
8375
  * The underlying provider in Amazon Bedrock. Supported values (case insensitive) include: `Anthropic`, `Cohere`, `AI21Labs`, `Amazon`.
8361
8376
  */
@@ -8366,27 +8381,38 @@ export interface ModelServingConfigServedEntityExternalModelAnthropicConfig {
8366
8381
  * The Databricks secret key reference for an Anthropic API key.
8367
8382
  * The Databricks secret key reference for an Anthropic API key.
8368
8383
  */
8369
- anthropicApiKey: pulumi.Input<string>;
8384
+ anthropicApiKey?: pulumi.Input<string>;
8385
+ anthropicApiKeyPlaintext?: pulumi.Input<string>;
8370
8386
  }
8371
8387
  export interface ModelServingConfigServedEntityExternalModelCohereConfig {
8388
+ cohereApiBase?: pulumi.Input<string>;
8372
8389
  /**
8373
8390
  * The Databricks secret key reference for a Cohere API key.
8374
8391
  */
8375
- cohereApiKey: pulumi.Input<string>;
8392
+ cohereApiKey?: pulumi.Input<string>;
8393
+ cohereApiKeyPlaintext?: pulumi.Input<string>;
8376
8394
  }
8377
8395
  export interface ModelServingConfigServedEntityExternalModelDatabricksModelServingConfig {
8378
8396
  /**
8379
8397
  * 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.
8380
8398
  */
8381
- databricksApiToken: pulumi.Input<string>;
8399
+ databricksApiToken?: pulumi.Input<string>;
8400
+ databricksApiTokenPlaintext?: pulumi.Input<string>;
8382
8401
  /**
8383
8402
  * The URL of the Databricks workspace containing the model serving endpoint pointed to by this external model.
8384
8403
  */
8385
8404
  databricksWorkspaceUrl: pulumi.Input<string>;
8386
8405
  }
8406
+ export interface ModelServingConfigServedEntityExternalModelGoogleCloudVertexAiConfig {
8407
+ privateKey?: pulumi.Input<string>;
8408
+ privateKeyPlaintext?: pulumi.Input<string>;
8409
+ projectId?: pulumi.Input<string>;
8410
+ region?: pulumi.Input<string>;
8411
+ }
8387
8412
  export interface ModelServingConfigServedEntityExternalModelOpenaiConfig {
8388
8413
  microsoftEntraClientId?: pulumi.Input<string>;
8389
8414
  microsoftEntraClientSecret?: pulumi.Input<string>;
8415
+ microsoftEntraClientSecretPlaintext?: pulumi.Input<string>;
8390
8416
  microsoftEntraTenantId?: pulumi.Input<string>;
8391
8417
  /**
8392
8418
  * 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.
@@ -8396,6 +8422,7 @@ export interface ModelServingConfigServedEntityExternalModelOpenaiConfig {
8396
8422
  * The Databricks secret key reference for an OpenAI or Azure OpenAI API key.
8397
8423
  */
8398
8424
  openaiApiKey?: pulumi.Input<string>;
8425
+ openaiApiKeyPlaintext?: pulumi.Input<string>;
8399
8426
  /**
8400
8427
  * This is an optional field to specify the type of OpenAI API to use. For Azure OpenAI, this field is required, and adjust this parameter to represent the preferred security access validation protocol. For access token validation, use azure. For authentication using Azure Active Directory (Azure AD) use, azuread.
8401
8428
  */
@@ -8417,7 +8444,8 @@ export interface ModelServingConfigServedEntityExternalModelPalmConfig {
8417
8444
  /**
8418
8445
  * The Databricks secret key reference for a PaLM API key.
8419
8446
  */
8420
- palmApiKey: pulumi.Input<string>;
8447
+ palmApiKey?: pulumi.Input<string>;
8448
+ palmApiKeyPlaintext?: pulumi.Input<string>;
8421
8449
  }
8422
8450
  export interface ModelServingConfigServedModel {
8423
8451
  /**
@@ -8708,6 +8736,74 @@ export interface MwsWorkspacesToken {
8708
8736
  tokenId?: pulumi.Input<string>;
8709
8737
  tokenValue?: pulumi.Input<string>;
8710
8738
  }
8739
+ export interface NotificationDestinationConfig {
8740
+ /**
8741
+ * The email configuration of the Notification Destination. It must contain the following:
8742
+ */
8743
+ email?: pulumi.Input<inputs.NotificationDestinationConfigEmail>;
8744
+ /**
8745
+ * The Generic Webhook configuration of the Notification Destination. It must contain the following:
8746
+ */
8747
+ genericWebhook?: pulumi.Input<inputs.NotificationDestinationConfigGenericWebhook>;
8748
+ /**
8749
+ * The Microsoft Teams configuration of the Notification Destination. It must contain the following:
8750
+ */
8751
+ microsoftTeams?: pulumi.Input<inputs.NotificationDestinationConfigMicrosoftTeams>;
8752
+ /**
8753
+ * The PagerDuty configuration of the Notification Destination. It must contain the following:
8754
+ */
8755
+ pagerduty?: pulumi.Input<inputs.NotificationDestinationConfigPagerduty>;
8756
+ /**
8757
+ * The Slack configuration of the Notification Destination. It must contain the following:
8758
+ */
8759
+ slack?: pulumi.Input<inputs.NotificationDestinationConfigSlack>;
8760
+ }
8761
+ export interface NotificationDestinationConfigEmail {
8762
+ /**
8763
+ * The list of email addresses to send notifications to.
8764
+ */
8765
+ addresses?: pulumi.Input<pulumi.Input<string>[]>;
8766
+ }
8767
+ export interface NotificationDestinationConfigGenericWebhook {
8768
+ /**
8769
+ * The password for basic authentication.
8770
+ *
8771
+ * > **NOTE** If the type of notification destination is changed, the existing notification destination will be deleted and a new notification destination will be created with the new type.
8772
+ */
8773
+ password?: pulumi.Input<string>;
8774
+ passwordSet?: pulumi.Input<boolean>;
8775
+ /**
8776
+ * The Generic Webhook URL.
8777
+ */
8778
+ url?: pulumi.Input<string>;
8779
+ urlSet?: pulumi.Input<boolean>;
8780
+ /**
8781
+ * The username for basic authentication.
8782
+ */
8783
+ username?: pulumi.Input<string>;
8784
+ usernameSet?: pulumi.Input<boolean>;
8785
+ }
8786
+ export interface NotificationDestinationConfigMicrosoftTeams {
8787
+ /**
8788
+ * The Microsoft Teams webhook URL.
8789
+ */
8790
+ url?: pulumi.Input<string>;
8791
+ urlSet?: pulumi.Input<boolean>;
8792
+ }
8793
+ export interface NotificationDestinationConfigPagerduty {
8794
+ /**
8795
+ * The PagerDuty integration key.
8796
+ */
8797
+ integrationKey?: pulumi.Input<string>;
8798
+ integrationKeySet?: pulumi.Input<boolean>;
8799
+ }
8800
+ export interface NotificationDestinationConfigSlack {
8801
+ /**
8802
+ * The Slack webhook URL.
8803
+ */
8804
+ url?: pulumi.Input<string>;
8805
+ urlSet?: pulumi.Input<boolean>;
8806
+ }
8711
8807
  export interface OnlineTableSpec {
8712
8808
  /**
8713
8809
  * Whether to create a full-copy pipeline -- a pipeline that stops after creates a full copy of the source table upon initialization and does not process any change data feeds (CDFs) afterwards. The pipeline can still be manually triggered afterwards, but it always perform a full copy of the source table and there are no incremental updates. This mode is useful for syncing views or tables without CDFs to online tables. Note that the full-copy pipeline only supports "triggered" scheduling policy.
@@ -8842,14 +8938,16 @@ export interface PipelineCluster {
8842
8938
  sshPublicKeys?: pulumi.Input<pulumi.Input<string>[]>;
8843
8939
  }
8844
8940
  export interface PipelineClusterAutoscale {
8845
- maxWorkers?: pulumi.Input<number>;
8846
- minWorkers?: pulumi.Input<number>;
8941
+ maxWorkers: pulumi.Input<number>;
8942
+ minWorkers: pulumi.Input<number>;
8847
8943
  mode?: pulumi.Input<string>;
8848
8944
  }
8849
8945
  export interface PipelineClusterAwsAttributes {
8850
8946
  availability?: pulumi.Input<string>;
8851
8947
  ebsVolumeCount?: pulumi.Input<number>;
8948
+ ebsVolumeIops?: pulumi.Input<number>;
8852
8949
  ebsVolumeSize?: pulumi.Input<number>;
8950
+ ebsVolumeThroughput?: pulumi.Input<number>;
8853
8951
  ebsVolumeType?: pulumi.Input<string>;
8854
8952
  firstOnDemand?: pulumi.Input<number>;
8855
8953
  instanceProfileArn?: pulumi.Input<string>;
@@ -8859,8 +8957,13 @@ export interface PipelineClusterAwsAttributes {
8859
8957
  export interface PipelineClusterAzureAttributes {
8860
8958
  availability?: pulumi.Input<string>;
8861
8959
  firstOnDemand?: pulumi.Input<number>;
8960
+ logAnalyticsInfo?: pulumi.Input<inputs.PipelineClusterAzureAttributesLogAnalyticsInfo>;
8862
8961
  spotBidMaxPrice?: pulumi.Input<number>;
8863
8962
  }
8963
+ export interface PipelineClusterAzureAttributesLogAnalyticsInfo {
8964
+ logAnalyticsPrimaryKey?: pulumi.Input<string>;
8965
+ logAnalyticsWorkspaceId?: pulumi.Input<string>;
8966
+ }
8864
8967
  export interface PipelineClusterClusterLogConf {
8865
8968
  dbfs?: pulumi.Input<inputs.PipelineClusterClusterLogConfDbfs>;
8866
8969
  s3?: pulumi.Input<inputs.PipelineClusterClusterLogConfS3>;
@@ -8923,22 +9026,101 @@ export interface PipelineClusterInitScriptWorkspace {
8923
9026
  destination: pulumi.Input<string>;
8924
9027
  }
8925
9028
  export interface PipelineDeployment {
9029
+ /**
9030
+ * The deployment method that manages the pipeline.
9031
+ */
8926
9032
  kind?: pulumi.Input<string>;
9033
+ /**
9034
+ * The path to the file containing metadata about the deployment.
9035
+ */
8927
9036
  metadataFilePath?: pulumi.Input<string>;
8928
9037
  }
8929
9038
  export interface PipelineFilters {
9039
+ /**
9040
+ * Paths to exclude.
9041
+ */
8930
9042
  excludes?: pulumi.Input<pulumi.Input<string>[]>;
9043
+ /**
9044
+ * Paths to include.
9045
+ */
8931
9046
  includes?: pulumi.Input<pulumi.Input<string>[]>;
8932
9047
  }
9048
+ export interface PipelineGatewayDefinition {
9049
+ /**
9050
+ * Immutable. The Unity Catalog connection this gateway pipeline uses to communicate with the source.
9051
+ */
9052
+ connectionId?: pulumi.Input<string>;
9053
+ /**
9054
+ * Required, Immutable. The name of the catalog for the gateway pipeline's storage location.
9055
+ */
9056
+ gatewayStorageCatalog?: pulumi.Input<string>;
9057
+ /**
9058
+ * Required. The Unity Catalog-compatible naming for the gateway storage location. This is the destination to use for the data that is extracted by the gateway. Delta Live Tables system will automatically create the storage location under the catalog and schema.
9059
+ */
9060
+ gatewayStorageName?: pulumi.Input<string>;
9061
+ /**
9062
+ * Required, Immutable. The name of the schema for the gateway pipelines's storage location.
9063
+ */
9064
+ gatewayStorageSchema?: pulumi.Input<string>;
9065
+ }
9066
+ export interface PipelineIngestionDefinition {
9067
+ connectionName?: pulumi.Input<string>;
9068
+ ingestionGatewayId?: pulumi.Input<string>;
9069
+ objects?: pulumi.Input<pulumi.Input<inputs.PipelineIngestionDefinitionObject>[]>;
9070
+ tableConfiguration?: pulumi.Input<inputs.PipelineIngestionDefinitionTableConfiguration>;
9071
+ }
9072
+ export interface PipelineIngestionDefinitionObject {
9073
+ schema?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectSchema>;
9074
+ table?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectTable>;
9075
+ }
9076
+ export interface PipelineIngestionDefinitionObjectSchema {
9077
+ destinationCatalog?: pulumi.Input<string>;
9078
+ destinationSchema?: pulumi.Input<string>;
9079
+ sourceCatalog?: pulumi.Input<string>;
9080
+ sourceSchema?: pulumi.Input<string>;
9081
+ tableConfiguration?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectSchemaTableConfiguration>;
9082
+ }
9083
+ export interface PipelineIngestionDefinitionObjectSchemaTableConfiguration {
9084
+ primaryKeys?: pulumi.Input<pulumi.Input<string>[]>;
9085
+ salesforceIncludeFormulaFields?: pulumi.Input<boolean>;
9086
+ scdType?: pulumi.Input<string>;
9087
+ }
9088
+ export interface PipelineIngestionDefinitionObjectTable {
9089
+ destinationCatalog?: pulumi.Input<string>;
9090
+ destinationSchema?: pulumi.Input<string>;
9091
+ destinationTable?: pulumi.Input<string>;
9092
+ sourceCatalog?: pulumi.Input<string>;
9093
+ sourceSchema?: pulumi.Input<string>;
9094
+ sourceTable?: pulumi.Input<string>;
9095
+ tableConfiguration?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectTableTableConfiguration>;
9096
+ }
9097
+ export interface PipelineIngestionDefinitionObjectTableTableConfiguration {
9098
+ primaryKeys?: pulumi.Input<pulumi.Input<string>[]>;
9099
+ salesforceIncludeFormulaFields?: pulumi.Input<boolean>;
9100
+ scdType?: pulumi.Input<string>;
9101
+ }
9102
+ export interface PipelineIngestionDefinitionTableConfiguration {
9103
+ primaryKeys?: pulumi.Input<pulumi.Input<string>[]>;
9104
+ salesforceIncludeFormulaFields?: pulumi.Input<boolean>;
9105
+ scdType?: pulumi.Input<string>;
9106
+ }
9107
+ export interface PipelineLatestUpdate {
9108
+ creationTime?: pulumi.Input<string>;
9109
+ state?: pulumi.Input<string>;
9110
+ updateId?: pulumi.Input<string>;
9111
+ }
8933
9112
  export interface PipelineLibrary {
8934
9113
  file?: pulumi.Input<inputs.PipelineLibraryFile>;
8935
9114
  jar?: pulumi.Input<string>;
8936
9115
  maven?: pulumi.Input<inputs.PipelineLibraryMaven>;
8937
9116
  notebook?: pulumi.Input<inputs.PipelineLibraryNotebook>;
9117
+ /**
9118
+ * @deprecated The 'whl' field is deprecated
9119
+ */
8938
9120
  whl?: pulumi.Input<string>;
8939
9121
  }
8940
9122
  export interface PipelineLibraryFile {
8941
- path: pulumi.Input<string>;
9123
+ path?: pulumi.Input<string>;
8942
9124
  }
8943
9125
  export interface PipelineLibraryMaven {
8944
9126
  coordinates: pulumi.Input<string>;
@@ -8946,7 +9128,7 @@ export interface PipelineLibraryMaven {
8946
9128
  repo?: pulumi.Input<string>;
8947
9129
  }
8948
9130
  export interface PipelineLibraryNotebook {
8949
- path: pulumi.Input<string>;
9131
+ path?: pulumi.Input<string>;
8950
9132
  }
8951
9133
  export interface PipelineNotification {
8952
9134
  /**
@@ -8956,11 +9138,21 @@ export interface PipelineNotification {
8956
9138
  * * `on-update-fatal-failure` - a pipeline update fails with a non-retryable (fatal) error.
8957
9139
  * * `on-flow-failure` - a single data flow fails.
8958
9140
  */
8959
- alerts: pulumi.Input<pulumi.Input<string>[]>;
9141
+ alerts?: pulumi.Input<pulumi.Input<string>[]>;
8960
9142
  /**
8961
9143
  * non-empty list of emails to notify.
8962
9144
  */
8963
- emailRecipients: pulumi.Input<pulumi.Input<string>[]>;
9145
+ emailRecipients?: pulumi.Input<pulumi.Input<string>[]>;
9146
+ }
9147
+ export interface PipelineTrigger {
9148
+ cron?: pulumi.Input<inputs.PipelineTriggerCron>;
9149
+ manual?: pulumi.Input<inputs.PipelineTriggerManual>;
9150
+ }
9151
+ export interface PipelineTriggerCron {
9152
+ quartzCronSchedule?: pulumi.Input<string>;
9153
+ timezoneId?: pulumi.Input<string>;
9154
+ }
9155
+ export interface PipelineTriggerManual {
8964
9156
  }
8965
9157
  export interface QualityMonitorCustomMetric {
8966
9158
  /**
@@ -9459,12 +9651,28 @@ export interface StorageCredentialAzureServicePrincipal {
9459
9651
  */
9460
9652
  directoryId: pulumi.Input<string>;
9461
9653
  }
9654
+ export interface StorageCredentialCloudflareApiToken {
9655
+ /**
9656
+ * R2 API token access key ID
9657
+ */
9658
+ accessKeyId: pulumi.Input<string>;
9659
+ /**
9660
+ * R2 account ID
9661
+ */
9662
+ accountId: pulumi.Input<string>;
9663
+ /**
9664
+ * R2 API token secret access key
9665
+ *
9666
+ * `azureServicePrincipal` optional configuration block to use service principal as credential details for Azure (Legacy):
9667
+ */
9668
+ secretAccessKey: pulumi.Input<string>;
9669
+ }
9462
9670
  export interface StorageCredentialDatabricksGcpServiceAccount {
9463
9671
  credentialId?: pulumi.Input<string>;
9464
9672
  /**
9465
9673
  * The email of the GCP service account created, to be granted access to relevant buckets.
9466
9674
  *
9467
- * `azureServicePrincipal` optional configuration block to use service principal as credential details for Azure (Legacy):
9675
+ * `cloudflareApiToken` optional configuration block for using a Cloudflare API Token as credential details. This requires account admin access:
9468
9676
  */
9469
9677
  email?: pulumi.Input<string>;
9470
9678
  }
@@ -9472,7 +9680,7 @@ export interface StorageCredentialGcpServiceAccountKey {
9472
9680
  /**
9473
9681
  * The email of the GCP service account created, to be granted access to relevant buckets.
9474
9682
  *
9475
- * `azureServicePrincipal` optional configuration block to use service principal as credential details for Azure (Legacy):
9683
+ * `cloudflareApiToken` optional configuration block for using a Cloudflare API Token as credential details. This requires account admin access:
9476
9684
  */
9477
9685
  email: pulumi.Input<string>;
9478
9686
  privateKey: pulumi.Input<string>;