@pulumi/databricks 1.60.0-alpha.1738729335 → 1.60.0-alpha.1738777970

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/types/output.d.ts CHANGED
@@ -16,6 +16,18 @@ export interface AccessControlRuleSetGrantRule {
16
16
  */
17
17
  role: string;
18
18
  }
19
+ export interface AibiDashboardEmbeddingAccessPolicySettingAibiDashboardEmbeddingAccessPolicy {
20
+ /**
21
+ * Configured embedding policy. Possible values are `ALLOW_ALL_DOMAINS`, `ALLOW_APPROVED_DOMAINS`, `DENY_ALL_DOMAINS`.
22
+ */
23
+ accessPolicyType: string;
24
+ }
25
+ export interface AibiDashboardEmbeddingApprovedDomainsSettingAibiDashboardEmbeddingApprovedDomains {
26
+ /**
27
+ * the list of approved domains. To allow all subdomains for a given domain, use a wildcard symbol (`*`) before the domain name, i.e., `*.databricks.com` will allow to embed into any site under the `databricks.com`.
28
+ */
29
+ approvedDomains: string[];
30
+ }
19
31
  export interface AlertCondition {
20
32
  /**
21
33
  * Alert state if the result is empty (`UNKNOWN`, `OK`, `TRIGGERED`)
@@ -761,7 +773,7 @@ export interface CredentialAzureServicePrincipal {
761
773
  /**
762
774
  * The client secret generated for the above app ID in AAD. **This field is redacted on output**
763
775
  *
764
- * `databricksGcpServiceAccount` optional configuration block for creating a Databricks-managed GCP Service Account. Only applicable when purpose is `STORAGE`:
776
+ * `databricksGcpServiceAccount` optional configuration block for creating a Databricks-managed GCP Service Account:
765
777
  */
766
778
  clientSecret: string;
767
779
  /**
@@ -1295,10 +1307,6 @@ export interface GetCatalogCatalogInfo {
1295
1307
  */
1296
1308
  providerName?: string;
1297
1309
  provisioningInfo?: outputs.GetCatalogCatalogInfoProvisioningInfo;
1298
- /**
1299
- * Kind of catalog securable.
1300
- */
1301
- securableKind?: string;
1302
1310
  /**
1303
1311
  * Securable type.
1304
1312
  */
@@ -6682,7 +6690,7 @@ export interface JobTaskSparkJarTask {
6682
6690
  * (List) Parameters passed to the main method.
6683
6691
  */
6684
6692
  parameters?: string[];
6685
- runAsRepl?: boolean;
6693
+ runAsRepl: boolean;
6686
6694
  }
6687
6695
  export interface JobTaskSparkPythonTask {
6688
6696
  /**
@@ -8301,6 +8309,10 @@ export interface PipelineRestartWindow {
8301
8309
  startHour: number;
8302
8310
  timeZoneId?: string;
8303
8311
  }
8312
+ export interface PipelineRunAs {
8313
+ servicePrincipalName?: string;
8314
+ userName?: string;
8315
+ }
8304
8316
  export interface PipelineTrigger {
8305
8317
  cron?: outputs.PipelineTriggerCron;
8306
8318
  manual?: outputs.PipelineTriggerManual;