@pulumi/databricks 1.72.0-alpha.1750139016 → 1.72.0-alpha.1752500848

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 (84) hide show
  1. package/accountNetworkPolicy.d.ts +2 -2
  2. package/accountNetworkPolicy.js +2 -2
  3. package/alertV2.d.ts +10 -4
  4. package/alertV2.js +8 -2
  5. package/alertV2.js.map +1 -1
  6. package/budgetPolicy.d.ts +2 -2
  7. package/budgetPolicy.js +2 -2
  8. package/cluster.d.ts +6 -0
  9. package/cluster.js +4 -0
  10. package/cluster.js.map +1 -1
  11. package/connection.d.ts +24 -29
  12. package/connection.js +3 -17
  13. package/connection.js.map +1 -1
  14. package/databaseInstance.d.ts +33 -31
  15. package/databaseInstance.js +18 -6
  16. package/databaseInstance.js.map +1 -1
  17. package/entitlements.d.ts +3 -3
  18. package/getAlertV2.d.ts +23 -1
  19. package/getAlertV2.js +22 -0
  20. package/getAlertV2.js.map +1 -1
  21. package/getAlertsV2.d.ts +38 -0
  22. package/getAlertsV2.js +38 -0
  23. package/getAlertsV2.js.map +1 -1
  24. package/getDatabaseInstance.d.ts +42 -28
  25. package/getDatabaseInstance.js +32 -4
  26. package/getDatabaseInstance.js.map +1 -1
  27. package/getDatabaseInstances.d.ts +32 -0
  28. package/getDatabaseInstances.js +32 -0
  29. package/getDatabaseInstances.js.map +1 -1
  30. package/getJobs.d.ts +63 -10
  31. package/getJobs.js +56 -10
  32. package/getJobs.js.map +1 -1
  33. package/getOnlineStore.d.ts +58 -0
  34. package/getOnlineStore.js +24 -0
  35. package/getOnlineStore.js.map +1 -0
  36. package/getOnlineStores.d.ts +14 -0
  37. package/getOnlineStores.js +18 -0
  38. package/getOnlineStores.js.map +1 -0
  39. package/getQualityMonitorV2.d.ts +95 -0
  40. package/getQualityMonitorV2.js +68 -0
  41. package/getQualityMonitorV2.js.map +1 -0
  42. package/getQualityMonitorsV2.d.ts +46 -0
  43. package/getQualityMonitorsV2.js +50 -0
  44. package/getQualityMonitorsV2.js.map +1 -0
  45. package/group.d.ts +3 -3
  46. package/index.d.ts +18 -0
  47. package/index.js +26 -4
  48. package/index.js.map +1 -1
  49. package/instancePool.d.ts +2 -0
  50. package/instancePool.js +2 -0
  51. package/instancePool.js.map +1 -1
  52. package/mwsNccPrivateEndpointRule.d.ts +91 -5
  53. package/mwsNccPrivateEndpointRule.js +37 -7
  54. package/mwsNccPrivateEndpointRule.js.map +1 -1
  55. package/mwsWorkspaces.d.ts +9 -9
  56. package/mwsWorkspaces.js +0 -6
  57. package/mwsWorkspaces.js.map +1 -1
  58. package/onlineStore.d.ts +105 -0
  59. package/onlineStore.js +78 -0
  60. package/onlineStore.js.map +1 -0
  61. package/package.json +2 -2
  62. package/pipeline.d.ts +21 -0
  63. package/pipeline.js +4 -0
  64. package/pipeline.js.map +1 -1
  65. package/qualityMonitorV2.d.ts +111 -0
  66. package/qualityMonitorV2.js +100 -0
  67. package/qualityMonitorV2.js.map +1 -0
  68. package/recipientFederationPolicy.d.ts +2 -2
  69. package/recipientFederationPolicy.js +2 -2
  70. package/schema.d.ts +8 -0
  71. package/schema.js +2 -0
  72. package/schema.js.map +1 -1
  73. package/servicePrincipal.d.ts +3 -3
  74. package/servicePrincipalRole.d.ts +19 -3
  75. package/servicePrincipalRole.js +16 -0
  76. package/servicePrincipalRole.js.map +1 -1
  77. package/servicePrincipalSecret.d.ts +29 -3
  78. package/servicePrincipalSecret.js +16 -0
  79. package/servicePrincipalSecret.js.map +1 -1
  80. package/types/input.d.ts +238 -51
  81. package/types/output.d.ts +284 -70
  82. package/user.d.ts +3 -3
  83. package/workspaceNetworkOption.d.ts +2 -2
  84. package/workspaceNetworkOption.js +2 -2
package/user.d.ts CHANGED
@@ -187,7 +187,7 @@ export declare class User extends pulumi.CustomResource {
187
187
  */
188
188
  readonly workspaceAccess: pulumi.Output<boolean | undefined>;
189
189
  /**
190
- * This is a field to allow the user to have access to a Databricks Workspace as consumer, with limited access to workspace UI.
190
+ * This is a field to allow the user to have access to a Databricks Workspace as consumer, with limited access to workspace UI. Couldn't be used with `workspaceAccess` or `databricksSqlAccess`.
191
191
  */
192
192
  readonly workspaceConsume: pulumi.Output<boolean | undefined>;
193
193
  /**
@@ -264,7 +264,7 @@ export interface UserState {
264
264
  */
265
265
  workspaceAccess?: pulumi.Input<boolean>;
266
266
  /**
267
- * This is a field to allow the user to have access to a Databricks Workspace as consumer, with limited access to workspace UI.
267
+ * This is a field to allow the user to have access to a Databricks Workspace as consumer, with limited access to workspace UI. Couldn't be used with `workspaceAccess` or `databricksSqlAccess`.
268
268
  */
269
269
  workspaceConsume?: pulumi.Input<boolean>;
270
270
  }
@@ -333,7 +333,7 @@ export interface UserArgs {
333
333
  */
334
334
  workspaceAccess?: pulumi.Input<boolean>;
335
335
  /**
336
- * This is a field to allow the user to have access to a Databricks Workspace as consumer, with limited access to workspace UI.
336
+ * This is a field to allow the user to have access to a Databricks Workspace as consumer, with limited access to workspace UI. Couldn't be used with `workspaceAccess` or `databricksSqlAccess`.
337
337
  */
338
338
  workspaceConsume?: pulumi.Input<boolean>;
339
339
  }
@@ -2,7 +2,7 @@ import * as pulumi from "@pulumi/pulumi";
2
2
  /**
3
3
  * ## Import
4
4
  *
5
- * As of terraform v1.5, resources can be imported through configuration.
5
+ * As of Pulumi v1.5, resources can be imported through configuration.
6
6
  *
7
7
  * hcl
8
8
  *
@@ -14,7 +14,7 @@ import * as pulumi from "@pulumi/pulumi";
14
14
  *
15
15
  * }
16
16
  *
17
- * If you are using an older version of terraform, you can import the resource using cli as follows:
17
+ * If you are using an older version of Pulumi, import the resource using the `pulumi import` command as follows:
18
18
  *
19
19
  * ```sh
20
20
  * $ pulumi import databricks:index/workspaceNetworkOption:WorkspaceNetworkOption databricks_workspace_network_option workspace_id
@@ -8,7 +8,7 @@ const utilities = require("./utilities");
8
8
  /**
9
9
  * ## Import
10
10
  *
11
- * As of terraform v1.5, resources can be imported through configuration.
11
+ * As of Pulumi v1.5, resources can be imported through configuration.
12
12
  *
13
13
  * hcl
14
14
  *
@@ -20,7 +20,7 @@ const utilities = require("./utilities");
20
20
  *
21
21
  * }
22
22
  *
23
- * If you are using an older version of terraform, you can import the resource using cli as follows:
23
+ * If you are using an older version of Pulumi, import the resource using the `pulumi import` command as follows:
24
24
  *
25
25
  * ```sh
26
26
  * $ pulumi import databricks:index/workspaceNetworkOption:WorkspaceNetworkOption databricks_workspace_network_option workspace_id