@pulumi/databricks 1.100.0-alpha.1783666488 → 1.100.0-alpha.1783751192

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/alertV2.d.ts CHANGED
@@ -120,7 +120,7 @@ export declare class AlertV2 extends pulumi.CustomResource {
120
120
  * This field allows you to configure alerts to run as a specific user or service principal.
121
121
  * - For user identity: Set `userName` to the email of an active workspace user. Users can only set this to their own email.
122
122
  * - For service principal: Set `servicePrincipalName` to the application ID. Requires the `servicePrincipal/user` role.
123
- * If not specified, the alert will run as the request user
123
+ * If not specified, the alert will run as the request user
124
124
  */
125
125
  readonly runAs: pulumi.Output<outputs.AlertV2RunAs | undefined>;
126
126
  /**
@@ -203,7 +203,7 @@ export interface AlertV2State {
203
203
  * This field allows you to configure alerts to run as a specific user or service principal.
204
204
  * - For user identity: Set `userName` to the email of an active workspace user. Users can only set this to their own email.
205
205
  * - For service principal: Set `servicePrincipalName` to the application ID. Requires the `servicePrincipal/user` role.
206
- * If not specified, the alert will run as the request user
206
+ * If not specified, the alert will run as the request user
207
207
  */
208
208
  runAs?: pulumi.Input<inputs.AlertV2RunAs | undefined>;
209
209
  /**
@@ -260,7 +260,7 @@ export interface AlertV2Args {
260
260
  * This field allows you to configure alerts to run as a specific user or service principal.
261
261
  * - For user identity: Set `userName` to the email of an active workspace user. Users can only set this to their own email.
262
262
  * - For service principal: Set `servicePrincipalName` to the application ID. Requires the `servicePrincipal/user` role.
263
- * If not specified, the alert will run as the request user
263
+ * If not specified, the alert will run as the request user
264
264
  */
265
265
  runAs?: pulumi.Input<inputs.AlertV2RunAs | undefined>;
266
266
  /**
package/getAlertV2.d.ts CHANGED
@@ -98,7 +98,7 @@ export interface GetAlertV2Result {
98
98
  * This field allows you to configure alerts to run as a specific user or service principal.
99
99
  * - For user identity: Set `userName` to the email of an active workspace user. Users can only set this to their own email.
100
100
  * - For service principal: Set `servicePrincipalName` to the application ID. Requires the `servicePrincipal/user` role.
101
- * If not specified, the alert will run as the request user
101
+ * If not specified, the alert will run as the request user
102
102
  */
103
103
  readonly runAs: outputs.GetAlertV2RunAs;
104
104
  /**
@@ -28,9 +28,9 @@ export interface GetDisasterRecoveryFailoverGroupsArgs {
28
28
  /**
29
29
  * Maximum number of failover groups to return per page:
30
30
  * - when set to a value greater than 0, the page length is the minimum of this value
31
- * and a server configured value;
31
+ * and a server configured value;
32
32
  * - when set to 0 or unset, the page length is set to a server configured value
33
- * (recommended);
33
+ * (recommended);
34
34
  * - when set to a value less than 0, an invalid parameter error is returned
35
35
  */
36
36
  pageSize?: number;
@@ -79,9 +79,9 @@ export interface GetDisasterRecoveryFailoverGroupsOutputArgs {
79
79
  /**
80
80
  * Maximum number of failover groups to return per page:
81
81
  * - when set to a value greater than 0, the page length is the minimum of this value
82
- * and a server configured value;
82
+ * and a server configured value;
83
83
  * - when set to 0 or unset, the page length is set to a server configured value
84
- * (recommended);
84
+ * (recommended);
85
85
  * - when set to a value less than 0, an invalid parameter error is returned
86
86
  */
87
87
  pageSize?: pulumi.Input<number | undefined>;
@@ -28,9 +28,9 @@ export interface GetDisasterRecoveryStableUrlsArgs {
28
28
  /**
29
29
  * Maximum number of stable URLs to return per page:
30
30
  * - when set to a value greater than 0, the page length is the minimum of this value
31
- * and a server configured value;
31
+ * and a server configured value;
32
32
  * - when set to 0 or unset, the page length is set to a server configured value
33
- * (recommended);
33
+ * (recommended);
34
34
  * - when set to a value less than 0, an invalid parameter error is returned
35
35
  */
36
36
  pageSize?: number;
@@ -79,9 +79,9 @@ export interface GetDisasterRecoveryStableUrlsOutputArgs {
79
79
  /**
80
80
  * Maximum number of stable URLs to return per page:
81
81
  * - when set to a value greater than 0, the page length is the minimum of this value
82
- * and a server configured value;
82
+ * and a server configured value;
83
83
  * - when set to 0 or unset, the page length is set to a server configured value
84
- * (recommended);
84
+ * (recommended);
85
85
  * - when set to a value less than 0, an invalid parameter error is returned
86
86
  */
87
87
  pageSize?: pulumi.Input<number | undefined>;
@@ -14,8 +14,8 @@ import * as outputs from "./types/output";
14
14
  *
15
15
  * const all = databricks.getServingEndpoints({});
16
16
  * const mlServingUsage: databricks.Permissions[] = [];
17
- * for (const range = {value: 0}; range.value < allDatabricksServingEndpoints.endpoints; range.value++) {
18
- * mlServingUsage.push(new databricks.Permissions(`ml_serving_usage-${range.value}`, {
17
+ * for (let range = 0; range < allDatabricksServingEndpoints.endpoints; range++) {
18
+ * mlServingUsage.push(new databricks.Permissions(`ml_serving_usage-${range}`, {
19
19
  * servingEndpointId: range.value.id,
20
20
  * accessControls: [
21
21
  * {
@@ -79,8 +79,8 @@ export interface GetServingEndpointsResult {
79
79
  *
80
80
  * const all = databricks.getServingEndpoints({});
81
81
  * const mlServingUsage: databricks.Permissions[] = [];
82
- * for (const range = {value: 0}; range.value < allDatabricksServingEndpoints.endpoints; range.value++) {
83
- * mlServingUsage.push(new databricks.Permissions(`ml_serving_usage-${range.value}`, {
82
+ * for (let range = 0; range < allDatabricksServingEndpoints.endpoints; range++) {
83
+ * mlServingUsage.push(new databricks.Permissions(`ml_serving_usage-${range}`, {
84
84
  * servingEndpointId: range.value.id,
85
85
  * accessControls: [
86
86
  * {
@@ -41,8 +41,8 @@ const utilities = __importStar(require("./utilities"));
41
41
  *
42
42
  * const all = databricks.getServingEndpoints({});
43
43
  * const mlServingUsage: databricks.Permissions[] = [];
44
- * for (const range = {value: 0}; range.value < allDatabricksServingEndpoints.endpoints; range.value++) {
45
- * mlServingUsage.push(new databricks.Permissions(`ml_serving_usage-${range.value}`, {
44
+ * for (let range = 0; range < allDatabricksServingEndpoints.endpoints; range++) {
45
+ * mlServingUsage.push(new databricks.Permissions(`ml_serving_usage-${range}`, {
46
46
  * servingEndpointId: range.value.id,
47
47
  * accessControls: [
48
48
  * {
@@ -90,8 +90,8 @@ exports.getServingEndpoints = getServingEndpoints;
90
90
  *
91
91
  * const all = databricks.getServingEndpoints({});
92
92
  * const mlServingUsage: databricks.Permissions[] = [];
93
- * for (const range = {value: 0}; range.value < allDatabricksServingEndpoints.endpoints; range.value++) {
94
- * mlServingUsage.push(new databricks.Permissions(`ml_serving_usage-${range.value}`, {
93
+ * for (let range = 0; range < allDatabricksServingEndpoints.endpoints; range++) {
94
+ * mlServingUsage.push(new databricks.Permissions(`ml_serving_usage-${range}`, {
95
95
  * servingEndpointId: range.value.id,
96
96
  * accessControls: [
97
97
  * {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/databricks",
3
- "version": "1.100.0-alpha.1783666488",
3
+ "version": "1.100.0-alpha.1783751192",
4
4
  "description": "A Pulumi package for creating and managing databricks cloud resources.",
5
5
  "keywords": [
6
6
  "pulumi",
@@ -24,6 +24,6 @@
24
24
  "pulumi": {
25
25
  "resource": true,
26
26
  "name": "databricks",
27
- "version": "1.100.0-alpha.1783666488"
27
+ "version": "1.100.0-alpha.1783751192"
28
28
  }
29
29
  }
package/types/input.d.ts CHANGED
@@ -2568,7 +2568,7 @@ export interface BudgetPolicyCustomTag {
2568
2568
  * The key of the tag.
2569
2569
  * - Must be unique among all custom tags of the same policy
2570
2570
  * - Cannot be “budget-policy-name”, “budget-policy-id” or "budget-policy-resolution-result" -
2571
- * these tags are preserved
2571
+ * these tags are preserved
2572
2572
  */
2573
2573
  key: pulumi.Input<string>;
2574
2574
  /**
@@ -21360,11 +21360,9 @@ export interface SqlPermissionsPrivilegeAssignment {
21360
21360
  /**
21361
21361
  * set of available privilege names in upper case.
21362
21362
  *
21363
- *
21364
21363
  * [Available](https://docs.databricks.com/security/access-control/table-acls/object-privileges.html) privilege names are:
21365
21364
  * [Available](https://docs.databricks.com/security/access-control/table-acls/object-privileges.html) privilege names are:
21366
21365
  *
21367
- *
21368
21366
  * * `SELECT` - gives read access to an object.
21369
21367
  * * `SELECT` - gives read access to an object.
21370
21368
  * * `CREATE` - gives the ability to create an object (for example, a table in a database).
@@ -21380,9 +21378,8 @@ export interface SqlPermissionsPrivilegeAssignment {
21380
21378
  * * `MODIFY_CLASSPATH` - gives the ability to add files to the Spark classpath.
21381
21379
  * * `MODIFY_CLASSPATH` - gives the ability to add files to the Spark classpath.
21382
21380
  *
21383
- *
21384
- * > Even though the value `ALL PRIVILEGES` is mentioned in Table ACL documentation, it's not recommended to use it from Pulumi, as it may result in unnecessary state updates.
21385
21381
  * > Even though the value `ALL PRIVILEGES` is mentioned in Table ACL documentation, it's not recommended to use it from Pulumi, as it may result in unnecessary state updates.
21382
+ * Even though the value `ALL PRIVILEGES` is mentioned in Table ACL documentation, it's not recommended to use it from Pulumi, as it may result in unnecessary state updates.
21386
21383
  */
21387
21384
  privileges: pulumi.Input<pulumi.Input<string>[]>;
21388
21385
  }