@pulumi/databricks 1.52.0 → 1.53.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/types/output.d.ts CHANGED
@@ -16,6 +16,56 @@ export interface AccessControlRuleSetGrantRule {
16
16
  */
17
17
  role: string;
18
18
  }
19
+ export interface AlertCondition {
20
+ /**
21
+ * Alert state if the result is empty (`UNKNOWN`, `OK`, `TRIGGERED`)
22
+ */
23
+ emptyResultState?: string;
24
+ /**
25
+ * Operator used for comparison in alert evaluation. (Enum: `GREATER_THAN`, `GREATER_THAN_OR_EQUAL`, `LESS_THAN`, `LESS_THAN_OR_EQUAL`, `EQUAL`, `NOT_EQUAL`, `IS_NULL`)
26
+ */
27
+ op: string;
28
+ /**
29
+ * Name of the column from the query result to use for comparison in alert evaluation:
30
+ */
31
+ operand: outputs.AlertConditionOperand;
32
+ /**
33
+ * Threshold value used for comparison in alert evaluation:
34
+ */
35
+ threshold?: outputs.AlertConditionThreshold;
36
+ }
37
+ export interface AlertConditionOperand {
38
+ /**
39
+ * Block describing the column from the query result to use for comparison in alert evaluation:
40
+ */
41
+ column: outputs.AlertConditionOperandColumn;
42
+ }
43
+ export interface AlertConditionOperandColumn {
44
+ /**
45
+ * Name of the column.
46
+ */
47
+ name: string;
48
+ }
49
+ export interface AlertConditionThreshold {
50
+ /**
51
+ * actual value used in comparison (one of the attributes is required):
52
+ */
53
+ value: outputs.AlertConditionThresholdValue;
54
+ }
55
+ export interface AlertConditionThresholdValue {
56
+ /**
57
+ * boolean value (`true` or `false`) to compare against boolean results.
58
+ */
59
+ boolValue?: boolean;
60
+ /**
61
+ * double value to compare against integer and double results.
62
+ */
63
+ doubleValue?: number;
64
+ /**
65
+ * string value to compare against string results.
66
+ */
67
+ stringValue?: string;
68
+ }
19
69
  export interface ArtifactAllowlistArtifactMatcher {
20
70
  /**
21
71
  * The artifact path or maven coordinate.
@@ -521,6 +571,16 @@ export interface ComplianceSecurityProfileWorkspaceSettingComplianceSecurityProf
521
571
  complianceStandards: string[];
522
572
  isEnabled: boolean;
523
573
  }
574
+ export interface CustomAppIntegrationTokenAccessPolicy {
575
+ /**
576
+ * access token time to live (TTL) in minutes.
577
+ */
578
+ accessTokenTtlInMinutes?: number;
579
+ /**
580
+ * refresh token TTL in minutes. The TTL of refresh token cannot be lower than TTL of access token.
581
+ */
582
+ refreshTokenTtlInMinutes?: number;
583
+ }
524
584
  export interface DefaultNamespaceSettingNamespace {
525
585
  /**
526
586
  * The value for the setting.
@@ -4806,7 +4866,7 @@ export interface JobTaskForEachTaskTaskSqlTask {
4806
4866
  [key: string]: string;
4807
4867
  };
4808
4868
  /**
4809
- * block consisting of single string field: `queryId` - identifier of the Databricks SQL Query (databricks_sql_query).
4869
+ * block consisting of single string field: `queryId` - identifier of the Databricks Query (databricks_query).
4810
4870
  */
4811
4871
  query?: outputs.JobTaskForEachTaskTaskSqlTaskQuery;
4812
4872
  /**
@@ -4816,7 +4876,7 @@ export interface JobTaskForEachTaskTaskSqlTask {
4816
4876
  }
4817
4877
  export interface JobTaskForEachTaskTaskSqlTaskAlert {
4818
4878
  /**
4819
- * (String) identifier of the Databricks SQL Alert.
4879
+ * (String) identifier of the Databricks Alert (databricks_alert).
4820
4880
  */
4821
4881
  alertId: string;
4822
4882
  /**
@@ -5352,7 +5412,7 @@ export interface JobTaskSqlTask {
5352
5412
  [key: string]: string;
5353
5413
  };
5354
5414
  /**
5355
- * block consisting of single string field: `queryId` - identifier of the Databricks SQL Query (databricks_sql_query).
5415
+ * block consisting of single string field: `queryId` - identifier of the Databricks Query (databricks_query).
5356
5416
  */
5357
5417
  query?: outputs.JobTaskSqlTaskQuery;
5358
5418
  /**
@@ -5362,7 +5422,7 @@ export interface JobTaskSqlTask {
5362
5422
  }
5363
5423
  export interface JobTaskSqlTaskAlert {
5364
5424
  /**
5365
- * (String) identifier of the Databricks SQL Alert.
5425
+ * (String) identifier of the Databricks Alert (databricks_alert).
5366
5426
  */
5367
5427
  alertId: string;
5368
5428
  /**
@@ -6830,6 +6890,9 @@ export interface PipelineIngestionDefinition {
6830
6890
  }
6831
6891
  export interface PipelineIngestionDefinitionObject {
6832
6892
  report?: outputs.PipelineIngestionDefinitionObjectReport;
6893
+ /**
6894
+ * The default schema (database) where tables are read from or published to. The presence of this attribute implies that the pipeline is in direct publishing mode.
6895
+ */
6833
6896
  schema?: outputs.PipelineIngestionDefinitionObjectSchema;
6834
6897
  table?: outputs.PipelineIngestionDefinitionObjectTable;
6835
6898
  }
@@ -7024,6 +7087,150 @@ export interface QualityMonitorTimeSeries {
7024
7087
  */
7025
7088
  timestampCol: string;
7026
7089
  }
7090
+ export interface QueryParameter {
7091
+ /**
7092
+ * Date-range query parameter value. Consists of following attributes (Can only specify one of `dynamicDateRangeValue` or `dateRangeValue`):
7093
+ */
7094
+ dateRangeValue?: outputs.QueryParameterDateRangeValue;
7095
+ /**
7096
+ * Date query parameter value. Consists of following attributes (Can only specify one of `dynamicDateValue` or `dateValue`):
7097
+ */
7098
+ dateValue?: outputs.QueryParameterDateValue;
7099
+ /**
7100
+ * Dropdown parameter value. Consists of following attributes:
7101
+ */
7102
+ enumValue?: outputs.QueryParameterEnumValue;
7103
+ /**
7104
+ * Literal parameter marker that appears between double curly braces in the query text.
7105
+ */
7106
+ name: string;
7107
+ /**
7108
+ * Numeric parameter value. Consists of following attributes:
7109
+ */
7110
+ numericValue?: outputs.QueryParameterNumericValue;
7111
+ /**
7112
+ * Query-based dropdown parameter value. Consists of following attributes:
7113
+ */
7114
+ queryBackedValue?: outputs.QueryParameterQueryBackedValue;
7115
+ /**
7116
+ * Text parameter value. Consists of following attributes:
7117
+ */
7118
+ textValue?: outputs.QueryParameterTextValue;
7119
+ /**
7120
+ * Text displayed in the user-facing parameter widget in the UI.
7121
+ */
7122
+ title?: string;
7123
+ }
7124
+ export interface QueryParameterDateRangeValue {
7125
+ /**
7126
+ * Manually specified date-time range value. Consists of the following attributes:
7127
+ */
7128
+ dateRangeValue?: outputs.QueryParameterDateRangeValueDateRangeValue;
7129
+ /**
7130
+ * Dynamic date-time range value based on current date-time. Possible values are `TODAY`, `YESTERDAY`, `THIS_WEEK`, `THIS_MONTH`, `THIS_YEAR`, `LAST_WEEK`, `LAST_MONTH`, `LAST_YEAR`, `LAST_HOUR`, `LAST_8_HOURS`, `LAST_24_HOURS`, `LAST_7_DAYS`, `LAST_14_DAYS`, `LAST_30_DAYS`, `LAST_60_DAYS`, `LAST_90_DAYS`, `LAST_12_MONTHS`.
7131
+ */
7132
+ dynamicDateRangeValue?: string;
7133
+ /**
7134
+ * Date-time precision to format the value into when the query is run. Possible values are `DAY_PRECISION`, `MINUTE_PRECISION`, `SECOND_PRECISION`. Defaults to `DAY_PRECISION` (`YYYY-MM-DD`).
7135
+ */
7136
+ precision?: string;
7137
+ /**
7138
+ * Specify what day that starts the week.
7139
+ */
7140
+ startDayOfWeek?: number;
7141
+ }
7142
+ export interface QueryParameterDateRangeValueDateRangeValue {
7143
+ /**
7144
+ * end of the date range.
7145
+ */
7146
+ end: string;
7147
+ /**
7148
+ * begin of the date range.
7149
+ */
7150
+ start: string;
7151
+ }
7152
+ export interface QueryParameterDateValue {
7153
+ /**
7154
+ * Manually specified date-time value
7155
+ */
7156
+ dateValue?: string;
7157
+ /**
7158
+ * Dynamic date-time value based on current date-time. Possible values are `NOW`, `YESTERDAY`.
7159
+ */
7160
+ dynamicDateValue?: string;
7161
+ /**
7162
+ * Date-time precision to format the value into when the query is run. Possible values are `DAY_PRECISION`, `MINUTE_PRECISION`, `SECOND_PRECISION`. Defaults to `DAY_PRECISION` (`YYYY-MM-DD`).
7163
+ */
7164
+ precision?: string;
7165
+ }
7166
+ export interface QueryParameterEnumValue {
7167
+ /**
7168
+ * List of valid query parameter values, newline delimited.
7169
+ */
7170
+ enumOptions?: string;
7171
+ /**
7172
+ * If specified, allows multiple values to be selected for this parameter. Consists of following attributes:
7173
+ */
7174
+ multiValuesOptions?: outputs.QueryParameterEnumValueMultiValuesOptions;
7175
+ /**
7176
+ * List of selected query parameter values.
7177
+ */
7178
+ values?: string[];
7179
+ }
7180
+ export interface QueryParameterEnumValueMultiValuesOptions {
7181
+ /**
7182
+ * Character that prefixes each selected parameter value.
7183
+ */
7184
+ prefix?: string;
7185
+ /**
7186
+ * Character that separates each selected parameter value. Defaults to a comma.
7187
+ */
7188
+ separator?: string;
7189
+ /**
7190
+ * Character that suffixes each selected parameter value.
7191
+ */
7192
+ suffix?: string;
7193
+ }
7194
+ export interface QueryParameterNumericValue {
7195
+ /**
7196
+ * actual numeric value.
7197
+ */
7198
+ value: number;
7199
+ }
7200
+ export interface QueryParameterQueryBackedValue {
7201
+ /**
7202
+ * If specified, allows multiple values to be selected for this parameter. Consists of following attributes:
7203
+ */
7204
+ multiValuesOptions?: outputs.QueryParameterQueryBackedValueMultiValuesOptions;
7205
+ /**
7206
+ * ID of the query that provides the parameter values.
7207
+ */
7208
+ queryId: string;
7209
+ /**
7210
+ * List of selected query parameter values.
7211
+ */
7212
+ values?: string[];
7213
+ }
7214
+ export interface QueryParameterQueryBackedValueMultiValuesOptions {
7215
+ /**
7216
+ * Character that prefixes each selected parameter value.
7217
+ */
7218
+ prefix?: string;
7219
+ /**
7220
+ * Character that separates each selected parameter value. Defaults to a comma.
7221
+ */
7222
+ separator?: string;
7223
+ /**
7224
+ * Character that suffixes each selected parameter value.
7225
+ */
7226
+ suffix?: string;
7227
+ }
7228
+ export interface QueryParameterTextValue {
7229
+ /**
7230
+ * actual text value.
7231
+ */
7232
+ value: string;
7233
+ }
7027
7234
  export interface RecipientIpAccessList {
7028
7235
  /**
7029
7236
  * Allowed IP Addresses in CIDR notation. Limit of 100.