@pulumi/databricks 1.83.0-alpha.1768973755 → 1.83.0-alpha.1769140245

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 (64) hide show
  1. package/accountSettingUserPreferenceV2.d.ts +143 -0
  2. package/accountSettingUserPreferenceV2.js +118 -0
  3. package/accountSettingUserPreferenceV2.js.map +1 -0
  4. package/cluster.d.ts +6 -0
  5. package/cluster.js +4 -0
  6. package/cluster.js.map +1 -1
  7. package/getAccountSettingUserPreferenceV2.d.ts +73 -0
  8. package/getAccountSettingUserPreferenceV2.js +34 -0
  9. package/getAccountSettingUserPreferenceV2.js.map +1 -0
  10. package/getPostgresBranch.d.ts +43 -11
  11. package/getPostgresBranch.js +34 -2
  12. package/getPostgresBranch.js.map +1 -1
  13. package/getPostgresBranches.d.ts +37 -5
  14. package/getPostgresBranches.js +34 -2
  15. package/getPostgresBranches.js.map +1 -1
  16. package/getPostgresEndpoint.d.ts +44 -12
  17. package/getPostgresEndpoint.js +34 -2
  18. package/getPostgresEndpoint.js.map +1 -1
  19. package/getPostgresEndpoints.d.ts +39 -5
  20. package/getPostgresEndpoints.js +36 -2
  21. package/getPostgresEndpoints.js.map +1 -1
  22. package/getPostgresProject.d.ts +46 -10
  23. package/getPostgresProject.js +38 -2
  24. package/getPostgresProject.js.map +1 -1
  25. package/getPostgresProjects.d.ts +32 -4
  26. package/getPostgresProjects.js +30 -2
  27. package/getPostgresProjects.js.map +1 -1
  28. package/getQualityMonitorV2.d.ts +8 -0
  29. package/getQualityMonitorV2.js +8 -0
  30. package/getQualityMonitorV2.js.map +1 -1
  31. package/getQualityMonitorsV2.d.ts +8 -0
  32. package/getQualityMonitorsV2.js +8 -0
  33. package/getQualityMonitorsV2.js.map +1 -1
  34. package/getWarehousesDefaultWarehouseOverride.d.ts +78 -0
  35. package/getWarehousesDefaultWarehouseOverride.js +50 -0
  36. package/getWarehousesDefaultWarehouseOverride.js.map +1 -0
  37. package/getWarehousesDefaultWarehouseOverrides.d.ts +57 -0
  38. package/getWarehousesDefaultWarehouseOverrides.js +42 -0
  39. package/getWarehousesDefaultWarehouseOverrides.js.map +1 -0
  40. package/gitCredential.d.ts +3 -0
  41. package/gitCredential.js +2 -0
  42. package/gitCredential.js.map +1 -1
  43. package/index.d.ts +15 -0
  44. package/index.js +27 -8
  45. package/index.js.map +1 -1
  46. package/mwsWorkspaces.d.ts +3 -3
  47. package/package.json +2 -2
  48. package/postgresBranch.d.ts +92 -25
  49. package/postgresBranch.js +56 -1
  50. package/postgresBranch.js.map +1 -1
  51. package/postgresEndpoint.d.ts +176 -27
  52. package/postgresEndpoint.js +147 -1
  53. package/postgresEndpoint.js.map +1 -1
  54. package/postgresProject.d.ts +85 -22
  55. package/postgresProject.js +61 -1
  56. package/postgresProject.js.map +1 -1
  57. package/qualityMonitorV2.d.ts +4 -0
  58. package/qualityMonitorV2.js +4 -0
  59. package/qualityMonitorV2.js.map +1 -1
  60. package/types/input.d.ts +161 -56
  61. package/types/output.d.ts +300 -173
  62. package/warehousesDefaultWarehouseOverride.d.ts +146 -0
  63. package/warehousesDefaultWarehouseOverride.js +122 -0
  64. package/warehousesDefaultWarehouseOverride.js.map +1 -0
package/types/output.d.ts CHANGED
@@ -134,6 +134,18 @@ export interface AccountNetworkPolicyEgressNetworkAccessPolicyEnforcement {
134
134
  */
135
135
  enforcementMode?: string;
136
136
  }
137
+ export interface AccountSettingUserPreferenceV2BooleanVal {
138
+ value?: boolean;
139
+ }
140
+ export interface AccountSettingUserPreferenceV2EffectiveBooleanVal {
141
+ value?: boolean;
142
+ }
143
+ export interface AccountSettingUserPreferenceV2EffectiveStringVal {
144
+ value?: string;
145
+ }
146
+ export interface AccountSettingUserPreferenceV2StringVal {
147
+ value?: string;
148
+ }
137
149
  export interface AccountSettingV2AibiDashboardEmbeddingAccessPolicy {
138
150
  /**
139
151
  * Possible values are: `ALLOW_ALL_DOMAINS`, `ALLOW_APPROVED_DOMAINS`, `DENY_ALL_DOMAINS`
@@ -1113,6 +1125,9 @@ export interface ClusterDockerImageBasicAuth {
1113
1125
  password: string;
1114
1126
  username: string;
1115
1127
  }
1128
+ export interface ClusterDriverNodeTypeFlexibility {
1129
+ alternateNodeTypeIds?: string[];
1130
+ }
1116
1131
  export interface ClusterGcpAttributes {
1117
1132
  /**
1118
1133
  * Availability type used for all nodes. Valid values are `PREEMPTIBLE_GCP`, `PREEMPTIBLE_WITH_FALLBACK_GCP` and `ON_DEMAND_GCP`, default: `ON_DEMAND_GCP`.
@@ -1313,6 +1328,9 @@ export interface ClusterProviderConfig {
1313
1328
  */
1314
1329
  workspaceId: string;
1315
1330
  }
1331
+ export interface ClusterWorkerNodeTypeFlexibility {
1332
+ alternateNodeTypeIds?: string[];
1333
+ }
1316
1334
  export interface ClusterWorkloadType {
1317
1335
  clients: outputs.ClusterWorkloadTypeClients;
1318
1336
  }
@@ -2451,6 +2469,30 @@ export interface GetAccountNetworkPolicyEgressNetworkAccessPolicyEnforcement {
2451
2469
  */
2452
2470
  enforcementMode?: string;
2453
2471
  }
2472
+ export interface GetAccountSettingUserPreferenceV2BooleanVal {
2473
+ /**
2474
+ * (string) - Represents a generic string value
2475
+ */
2476
+ value?: boolean;
2477
+ }
2478
+ export interface GetAccountSettingUserPreferenceV2EffectiveBooleanVal {
2479
+ /**
2480
+ * (string) - Represents a generic string value
2481
+ */
2482
+ value?: boolean;
2483
+ }
2484
+ export interface GetAccountSettingUserPreferenceV2EffectiveStringVal {
2485
+ /**
2486
+ * (string) - Represents a generic string value
2487
+ */
2488
+ value?: string;
2489
+ }
2490
+ export interface GetAccountSettingUserPreferenceV2StringVal {
2491
+ /**
2492
+ * (string) - Represents a generic string value
2493
+ */
2494
+ value?: string;
2495
+ }
2454
2496
  export interface GetAccountSettingV2AibiDashboardEmbeddingAccessPolicy {
2455
2497
  /**
2456
2498
  * (string) - Possible values are: `ALLOW_ALL_DOMAINS`, `ALLOW_APPROVED_DOMAINS`, `DENY_ALL_DOMAINS`
@@ -4209,6 +4251,7 @@ export interface GetClusterClusterInfo {
4209
4251
  * similar to `instancePoolId`, but for driver node.
4210
4252
  */
4211
4253
  driverInstancePoolId?: string;
4254
+ driverNodeTypeFlexibility?: outputs.GetClusterClusterInfoDriverNodeTypeFlexibility;
4212
4255
  /**
4213
4256
  * The node type of the Spark driver.
4214
4257
  */
@@ -4280,6 +4323,7 @@ export interface GetClusterClusterInfo {
4280
4323
  terminationReason?: outputs.GetClusterClusterInfoTerminationReason;
4281
4324
  totalInitialRemoteDiskSize?: number;
4282
4325
  useMlRuntime?: boolean;
4326
+ workerNodeTypeFlexibility?: outputs.GetClusterClusterInfoWorkerNodeTypeFlexibility;
4283
4327
  workloadType?: outputs.GetClusterClusterInfoWorkloadType;
4284
4328
  }
4285
4329
  export interface GetClusterClusterInfoAutoscale {
@@ -4352,6 +4396,9 @@ export interface GetClusterClusterInfoDriver {
4352
4396
  export interface GetClusterClusterInfoDriverNodeAwsAttributes {
4353
4397
  isSpot?: boolean;
4354
4398
  }
4399
+ export interface GetClusterClusterInfoDriverNodeTypeFlexibility {
4400
+ alternateNodeTypeIds?: string[];
4401
+ }
4355
4402
  export interface GetClusterClusterInfoExecutor {
4356
4403
  hostPrivateIp?: string;
4357
4404
  instanceId?: string;
@@ -4439,6 +4486,7 @@ export interface GetClusterClusterInfoSpec {
4439
4486
  * similar to `instancePoolId`, but for driver node.
4440
4487
  */
4441
4488
  driverInstancePoolId: string;
4489
+ driverNodeTypeFlexibility?: outputs.GetClusterClusterInfoSpecDriverNodeTypeFlexibility;
4442
4490
  /**
4443
4491
  * The node type of the Spark driver.
4444
4492
  */
@@ -4508,6 +4556,7 @@ export interface GetClusterClusterInfoSpec {
4508
4556
  sshPublicKeys?: string[];
4509
4557
  totalInitialRemoteDiskSize?: number;
4510
4558
  useMlRuntime?: boolean;
4559
+ workerNodeTypeFlexibility?: outputs.GetClusterClusterInfoSpecWorkerNodeTypeFlexibility;
4511
4560
  workloadType?: outputs.GetClusterClusterInfoSpecWorkloadType;
4512
4561
  }
4513
4562
  export interface GetClusterClusterInfoSpecAutoscale {
@@ -4573,6 +4622,9 @@ export interface GetClusterClusterInfoSpecDockerImageBasicAuth {
4573
4622
  password: string;
4574
4623
  username: string;
4575
4624
  }
4625
+ export interface GetClusterClusterInfoSpecDriverNodeTypeFlexibility {
4626
+ alternateNodeTypeIds?: string[];
4627
+ }
4576
4628
  export interface GetClusterClusterInfoSpecGcpAttributes {
4577
4629
  availability?: string;
4578
4630
  bootDiskSize?: number;
@@ -4662,6 +4714,9 @@ export interface GetClusterClusterInfoSpecProviderConfig {
4662
4714
  */
4663
4715
  workspaceId: string;
4664
4716
  }
4717
+ export interface GetClusterClusterInfoSpecWorkerNodeTypeFlexibility {
4718
+ alternateNodeTypeIds?: string[];
4719
+ }
4665
4720
  export interface GetClusterClusterInfoSpecWorkloadType {
4666
4721
  clients: outputs.GetClusterClusterInfoSpecWorkloadTypeClients;
4667
4722
  }
@@ -4676,6 +4731,9 @@ export interface GetClusterClusterInfoTerminationReason {
4676
4731
  };
4677
4732
  type?: string;
4678
4733
  }
4734
+ export interface GetClusterClusterInfoWorkerNodeTypeFlexibility {
4735
+ alternateNodeTypeIds?: string[];
4736
+ }
4679
4737
  export interface GetClusterClusterInfoWorkloadType {
4680
4738
  clients: outputs.GetClusterClusterInfoWorkloadTypeClients;
4681
4739
  }
@@ -9068,13 +9126,18 @@ export interface GetPolicyInfosPolicyRowFilterUsing {
9068
9126
  }
9069
9127
  export interface GetPostgresBranchSpec {
9070
9128
  /**
9071
- * (boolean) - Whether the branch is the project's default branch
9129
+ * (string) - Absolute expiration time for the branch. Empty if expiration is disabled
9072
9130
  */
9073
- default?: boolean;
9131
+ expireTime?: string;
9074
9132
  /**
9075
9133
  * (boolean) - Whether the branch is protected
9076
9134
  */
9077
9135
  isProtected?: boolean;
9136
+ /**
9137
+ * (boolean) - Explicitly disable expiration. When set to true, the branch will not expire.
9138
+ * If set to false, the request is invalid; provide either ttl or expireTime instead
9139
+ */
9140
+ noExpiry?: boolean;
9078
9141
  /**
9079
9142
  * (string) - The name of the source branch from which this branch was created.
9080
9143
  * Format: projects/{project_id}/branches/{branch_id}
@@ -9088,6 +9151,10 @@ export interface GetPostgresBranchSpec {
9088
9151
  * (string) - The point in time on the source branch from which this branch was created
9089
9152
  */
9090
9153
  sourceBranchTime?: string;
9154
+ /**
9155
+ * (string) - Relative time-to-live duration. When set, the branch will expire at creationTime + ttl
9156
+ */
9157
+ ttl?: string;
9091
9158
  }
9092
9159
  export interface GetPostgresBranchStatus {
9093
9160
  /**
@@ -9098,6 +9165,10 @@ export interface GetPostgresBranchStatus {
9098
9165
  * (boolean) - Whether the branch is the project's default branch
9099
9166
  */
9100
9167
  default: boolean;
9168
+ /**
9169
+ * (string) - Absolute expiration time for the branch. Empty if expiration is disabled
9170
+ */
9171
+ expireTime: string;
9101
9172
  /**
9102
9173
  * (boolean) - Whether the branch is protected
9103
9174
  */
@@ -9134,8 +9205,8 @@ export interface GetPostgresBranchesBranch {
9134
9205
  */
9135
9206
  createTime: string;
9136
9207
  /**
9137
- * (string) - The resource name of the branch.
9138
- * Format: projects/{project_id}/branches/{branch_id}
9208
+ * (string) - The resource name of the branch. This field is output-only and constructed by the system.
9209
+ * Format: `projects/{project_id}/branches/{branch_id}`
9139
9210
  */
9140
9211
  name: string;
9141
9212
  /**
@@ -9144,7 +9215,7 @@ export interface GetPostgresBranchesBranch {
9144
9215
  */
9145
9216
  parent: string;
9146
9217
  /**
9147
- * (BranchSpec) - The desired state of a Branch
9218
+ * (BranchSpec) - The spec contains the branch configuration
9148
9219
  */
9149
9220
  spec: outputs.GetPostgresBranchesBranchSpec;
9150
9221
  /**
@@ -9152,7 +9223,7 @@ export interface GetPostgresBranchesBranch {
9152
9223
  */
9153
9224
  status: outputs.GetPostgresBranchesBranchStatus;
9154
9225
  /**
9155
- * (string) - System generated unique ID for the branch
9226
+ * (string) - System-generated unique ID for the branch
9156
9227
  */
9157
9228
  uid: string;
9158
9229
  /**
@@ -9162,13 +9233,18 @@ export interface GetPostgresBranchesBranch {
9162
9233
  }
9163
9234
  export interface GetPostgresBranchesBranchSpec {
9164
9235
  /**
9165
- * (boolean) - Whether the branch is the project's default branch
9236
+ * (string) - Absolute expiration time for the branch. Empty if expiration is disabled
9166
9237
  */
9167
- default?: boolean;
9238
+ expireTime?: string;
9168
9239
  /**
9169
9240
  * (boolean) - Whether the branch is protected
9170
9241
  */
9171
9242
  isProtected?: boolean;
9243
+ /**
9244
+ * (boolean) - Explicitly disable expiration. When set to true, the branch will not expire.
9245
+ * If set to false, the request is invalid; provide either ttl or expireTime instead
9246
+ */
9247
+ noExpiry?: boolean;
9172
9248
  /**
9173
9249
  * (string) - The name of the source branch from which this branch was created.
9174
9250
  * Format: projects/{project_id}/branches/{branch_id}
@@ -9182,6 +9258,10 @@ export interface GetPostgresBranchesBranchSpec {
9182
9258
  * (string) - The point in time on the source branch from which this branch was created
9183
9259
  */
9184
9260
  sourceBranchTime?: string;
9261
+ /**
9262
+ * (string) - Relative time-to-live duration. When set, the branch will expire at creationTime + ttl
9263
+ */
9264
+ ttl?: string;
9185
9265
  }
9186
9266
  export interface GetPostgresBranchesBranchStatus {
9187
9267
  /**
@@ -9192,6 +9272,10 @@ export interface GetPostgresBranchesBranchStatus {
9192
9272
  * (boolean) - Whether the branch is the project's default branch
9193
9273
  */
9194
9274
  default: boolean;
9275
+ /**
9276
+ * (string) - Absolute expiration time for the branch. Empty if expiration is disabled
9277
+ */
9278
+ expireTime: string;
9195
9279
  /**
9196
9280
  * (boolean) - Whether the branch is protected
9197
9281
  */
@@ -9239,9 +9323,14 @@ export interface GetPostgresEndpointSpec {
9239
9323
  */
9240
9324
  disabled?: boolean;
9241
9325
  /**
9242
- * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `READ_ONLY`, `READ_WRITE`
9326
+ * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `ENDPOINT_TYPE_READ_ONLY`, `ENDPOINT_TYPE_READ_WRITE`
9243
9327
  */
9244
9328
  endpointType: string;
9329
+ /**
9330
+ * (boolean) - When set to true, explicitly disables automatic suspension (never suspend).
9331
+ * Should be set to true when provided
9332
+ */
9333
+ noSuspension?: boolean;
9245
9334
  /**
9246
9335
  * (EndpointSettings)
9247
9336
  */
@@ -9280,17 +9369,13 @@ export interface GetPostgresEndpointStatus {
9280
9369
  */
9281
9370
  disabled: boolean;
9282
9371
  /**
9283
- * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `READ_ONLY`, `READ_WRITE`
9372
+ * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `ENDPOINT_TYPE_READ_ONLY`, `ENDPOINT_TYPE_READ_WRITE`
9284
9373
  */
9285
9374
  endpointType: string;
9286
9375
  /**
9287
- * (string) - The hostname of the compute endpoint. This is the hostname specified when connecting to a database
9288
- */
9289
- host: string;
9290
- /**
9291
- * (string) - A timestamp indicating when the compute endpoint was last active
9376
+ * (EndpointHosts) - Contains host information for connecting to the endpoint
9292
9377
  */
9293
- lastActiveTime: string;
9378
+ hosts: outputs.GetPostgresEndpointStatusHosts;
9294
9379
  /**
9295
9380
  * (string) - Possible values are: `ACTIVE`, `IDLE`, `INIT`
9296
9381
  */
@@ -9299,19 +9384,18 @@ export interface GetPostgresEndpointStatus {
9299
9384
  * (EndpointSettings)
9300
9385
  */
9301
9386
  settings: outputs.GetPostgresEndpointStatusSettings;
9302
- /**
9303
- * (string) - A timestamp indicating when the compute endpoint was last started
9304
- */
9305
- startTime: string;
9306
- /**
9307
- * (string) - A timestamp indicating when the compute endpoint was last suspended
9308
- */
9309
- suspendTime: string;
9310
9387
  /**
9311
9388
  * (string) - Duration of inactivity after which the compute endpoint is automatically suspended
9312
9389
  */
9313
9390
  suspendTimeoutDuration: string;
9314
9391
  }
9392
+ export interface GetPostgresEndpointStatusHosts {
9393
+ /**
9394
+ * (string) - The hostname to connect to this endpoint. For read-write endpoints, this is a read-write hostname which connects
9395
+ * to the primary compute. For read-only endpoints, this is a read-only hostname which allows read-only operations
9396
+ */
9397
+ host: string;
9398
+ }
9315
9399
  export interface GetPostgresEndpointStatusSettings {
9316
9400
  /**
9317
9401
  * (object) - A raw representation of Postgres settings
@@ -9326,8 +9410,8 @@ export interface GetPostgresEndpointsEndpoint {
9326
9410
  */
9327
9411
  createTime: string;
9328
9412
  /**
9329
- * (string) - The resource name of the endpoint.
9330
- * Format: projects/{project_id}/branches/{branch_id}/endpoints/{endpoint_id}
9413
+ * (string) - The resource name of the endpoint. This field is output-only and constructed by the system.
9414
+ * Format: `projects/{project_id}/branches/{branch_id}/endpoints/{endpoint_id}`
9331
9415
  */
9332
9416
  name: string;
9333
9417
  /**
@@ -9336,15 +9420,15 @@ export interface GetPostgresEndpointsEndpoint {
9336
9420
  */
9337
9421
  parent: string;
9338
9422
  /**
9339
- * (EndpointSpec) - The desired state of an Endpoint
9423
+ * (EndpointSpec) - The spec contains the compute endpoint configuration, including autoscaling limits, suspend timeout, and disabled state
9340
9424
  */
9341
9425
  spec: outputs.GetPostgresEndpointsEndpointSpec;
9342
9426
  /**
9343
- * (EndpointStatus) - The current status of an Endpoint
9427
+ * (EndpointStatus) - Current operational status of the compute endpoint
9344
9428
  */
9345
9429
  status: outputs.GetPostgresEndpointsEndpointStatus;
9346
9430
  /**
9347
- * (string) - System generated unique ID for the endpoint
9431
+ * (string) - System-generated unique ID for the endpoint
9348
9432
  */
9349
9433
  uid: string;
9350
9434
  /**
@@ -9369,9 +9453,14 @@ export interface GetPostgresEndpointsEndpointSpec {
9369
9453
  */
9370
9454
  disabled?: boolean;
9371
9455
  /**
9372
- * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `READ_ONLY`, `READ_WRITE`
9456
+ * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `ENDPOINT_TYPE_READ_ONLY`, `ENDPOINT_TYPE_READ_WRITE`
9373
9457
  */
9374
9458
  endpointType: string;
9459
+ /**
9460
+ * (boolean) - When set to true, explicitly disables automatic suspension (never suspend).
9461
+ * Should be set to true when provided
9462
+ */
9463
+ noSuspension?: boolean;
9375
9464
  /**
9376
9465
  * (EndpointSettings)
9377
9466
  */
@@ -9410,17 +9499,13 @@ export interface GetPostgresEndpointsEndpointStatus {
9410
9499
  */
9411
9500
  disabled: boolean;
9412
9501
  /**
9413
- * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `READ_ONLY`, `READ_WRITE`
9502
+ * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `ENDPOINT_TYPE_READ_ONLY`, `ENDPOINT_TYPE_READ_WRITE`
9414
9503
  */
9415
9504
  endpointType: string;
9416
9505
  /**
9417
- * (string) - The hostname of the compute endpoint. This is the hostname specified when connecting to a database
9418
- */
9419
- host: string;
9420
- /**
9421
- * (string) - A timestamp indicating when the compute endpoint was last active
9506
+ * (EndpointHosts) - Contains host information for connecting to the endpoint
9422
9507
  */
9423
- lastActiveTime: string;
9508
+ hosts: outputs.GetPostgresEndpointsEndpointStatusHosts;
9424
9509
  /**
9425
9510
  * (string) - Possible values are: `ACTIVE`, `IDLE`, `INIT`
9426
9511
  */
@@ -9429,19 +9514,18 @@ export interface GetPostgresEndpointsEndpointStatus {
9429
9514
  * (EndpointSettings)
9430
9515
  */
9431
9516
  settings: outputs.GetPostgresEndpointsEndpointStatusSettings;
9432
- /**
9433
- * (string) - A timestamp indicating when the compute endpoint was last started
9434
- */
9435
- startTime: string;
9436
- /**
9437
- * (string) - A timestamp indicating when the compute endpoint was last suspended
9438
- */
9439
- suspendTime: string;
9440
9517
  /**
9441
9518
  * (string) - Duration of inactivity after which the compute endpoint is automatically suspended
9442
9519
  */
9443
9520
  suspendTimeoutDuration: string;
9444
9521
  }
9522
+ export interface GetPostgresEndpointsEndpointStatusHosts {
9523
+ /**
9524
+ * (string) - The hostname to connect to this endpoint. For read-write endpoints, this is a read-write hostname which connects
9525
+ * to the primary compute. For read-only endpoints, this is a read-only hostname which allows read-only operations
9526
+ */
9527
+ host: string;
9528
+ }
9445
9529
  export interface GetPostgresEndpointsEndpointStatusSettings {
9446
9530
  /**
9447
9531
  * (object) - A raw representation of Postgres settings
@@ -9467,20 +9551,21 @@ export interface GetPostgresProjectSpec {
9467
9551
  * (integer) - The effective major Postgres version number
9468
9552
  */
9469
9553
  pgVersion?: number;
9470
- /**
9471
- * (ProjectSettings) - The effective project settings
9472
- */
9473
- settings?: outputs.GetPostgresProjectSpecSettings;
9474
9554
  }
9475
9555
  export interface GetPostgresProjectSpecDefaultEndpointSettings {
9476
9556
  /**
9477
- * (number) - The maximum number of Compute Units
9557
+ * (number) - The maximum number of Compute Units. Minimum value is 0.5
9478
9558
  */
9479
9559
  autoscalingLimitMaxCu?: number;
9480
9560
  /**
9481
- * (number) - The minimum number of Compute Units
9561
+ * (number) - The minimum number of Compute Units. Minimum value is 0.5
9482
9562
  */
9483
9563
  autoscalingLimitMinCu?: number;
9564
+ /**
9565
+ * (boolean) - When set to true, explicitly disables automatic suspension (never suspend).
9566
+ * Should be set to true when provided
9567
+ */
9568
+ noSuspension?: boolean;
9484
9569
  /**
9485
9570
  * (object) - A raw representation of Postgres settings
9486
9571
  */
@@ -9488,27 +9573,16 @@ export interface GetPostgresProjectSpecDefaultEndpointSettings {
9488
9573
  [key: string]: string;
9489
9574
  };
9490
9575
  /**
9491
- * (string) - Duration of inactivity after which the compute endpoint is automatically suspended
9576
+ * (string) - Duration of inactivity after which the compute endpoint is automatically suspended.
9577
+ * If specified should be between 60s and 604800s (1 minute to 1 week)
9492
9578
  */
9493
9579
  suspendTimeoutDuration?: string;
9494
9580
  }
9495
- export interface GetPostgresProjectSpecSettings {
9496
- /**
9497
- * (boolean) - Sets wal_level=logical for all compute endpoints in this project.
9498
- * All active endpoints will be suspended.
9499
- * Once enabled, logical replication cannot be disabled
9500
- */
9501
- enableLogicalReplication?: boolean;
9502
- }
9503
9581
  export interface GetPostgresProjectStatus {
9504
9582
  /**
9505
9583
  * (integer) - The logical size limit for a branch
9506
9584
  */
9507
9585
  branchLogicalSizeLimitBytes: number;
9508
- /**
9509
- * (string) - The most recent time when any endpoint of this project was active
9510
- */
9511
- computeLastActiveTime: string;
9512
9586
  /**
9513
9587
  * (ProjectDefaultEndpointSettings) - The effective default endpoint settings
9514
9588
  */
@@ -9529,10 +9603,6 @@ export interface GetPostgresProjectStatus {
9529
9603
  * (integer) - The effective major Postgres version number
9530
9604
  */
9531
9605
  pgVersion: number;
9532
- /**
9533
- * (ProjectSettings) - The effective project settings
9534
- */
9535
- settings: outputs.GetPostgresProjectStatusSettings;
9536
9606
  /**
9537
9607
  * (integer) - The current space occupied by the project in storage
9538
9608
  */
@@ -9540,13 +9610,18 @@ export interface GetPostgresProjectStatus {
9540
9610
  }
9541
9611
  export interface GetPostgresProjectStatusDefaultEndpointSettings {
9542
9612
  /**
9543
- * (number) - The maximum number of Compute Units
9613
+ * (number) - The maximum number of Compute Units. Minimum value is 0.5
9544
9614
  */
9545
9615
  autoscalingLimitMaxCu?: number;
9546
9616
  /**
9547
- * (number) - The minimum number of Compute Units
9617
+ * (number) - The minimum number of Compute Units. Minimum value is 0.5
9548
9618
  */
9549
9619
  autoscalingLimitMinCu?: number;
9620
+ /**
9621
+ * (boolean) - When set to true, explicitly disables automatic suspension (never suspend).
9622
+ * Should be set to true when provided
9623
+ */
9624
+ noSuspension?: boolean;
9550
9625
  /**
9551
9626
  * (object) - A raw representation of Postgres settings
9552
9627
  */
@@ -9554,30 +9629,23 @@ export interface GetPostgresProjectStatusDefaultEndpointSettings {
9554
9629
  [key: string]: string;
9555
9630
  };
9556
9631
  /**
9557
- * (string) - Duration of inactivity after which the compute endpoint is automatically suspended
9632
+ * (string) - Duration of inactivity after which the compute endpoint is automatically suspended.
9633
+ * If specified should be between 60s and 604800s (1 minute to 1 week)
9558
9634
  */
9559
9635
  suspendTimeoutDuration?: string;
9560
9636
  }
9561
- export interface GetPostgresProjectStatusSettings {
9562
- /**
9563
- * (boolean) - Sets wal_level=logical for all compute endpoints in this project.
9564
- * All active endpoints will be suspended.
9565
- * Once enabled, logical replication cannot be disabled
9566
- */
9567
- enableLogicalReplication?: boolean;
9568
- }
9569
9637
  export interface GetPostgresProjectsProject {
9570
9638
  /**
9571
9639
  * (string) - A timestamp indicating when the project was created
9572
9640
  */
9573
9641
  createTime: string;
9574
9642
  /**
9575
- * (string) - The resource name of the project.
9576
- * Format: projects/{project_id}
9643
+ * (string) - The resource name of the project. This field is output-only and constructed by the system.
9644
+ * Format: `projects/{project_id}`
9577
9645
  */
9578
9646
  name: string;
9579
9647
  /**
9580
- * (ProjectSpec) - The desired state of a Project
9648
+ * (ProjectSpec) - The spec contains the project configuration, including display_name, pgVersion (Postgres version), history_retention_duration, and default_endpoint_settings
9581
9649
  */
9582
9650
  spec: outputs.GetPostgresProjectsProjectSpec;
9583
9651
  /**
@@ -9585,7 +9653,7 @@ export interface GetPostgresProjectsProject {
9585
9653
  */
9586
9654
  status: outputs.GetPostgresProjectsProjectStatus;
9587
9655
  /**
9588
- * (string) - System generated unique ID for the project
9656
+ * (string) - System-generated unique ID for the project
9589
9657
  */
9590
9658
  uid: string;
9591
9659
  /**
@@ -9610,20 +9678,21 @@ export interface GetPostgresProjectsProjectSpec {
9610
9678
  * (integer) - The effective major Postgres version number
9611
9679
  */
9612
9680
  pgVersion?: number;
9613
- /**
9614
- * (ProjectSettings) - The effective project settings
9615
- */
9616
- settings?: outputs.GetPostgresProjectsProjectSpecSettings;
9617
9681
  }
9618
9682
  export interface GetPostgresProjectsProjectSpecDefaultEndpointSettings {
9619
9683
  /**
9620
- * (number) - The maximum number of Compute Units
9684
+ * (number) - The maximum number of Compute Units. Minimum value is 0.5
9621
9685
  */
9622
9686
  autoscalingLimitMaxCu?: number;
9623
9687
  /**
9624
- * (number) - The minimum number of Compute Units
9688
+ * (number) - The minimum number of Compute Units. Minimum value is 0.5
9625
9689
  */
9626
9690
  autoscalingLimitMinCu?: number;
9691
+ /**
9692
+ * (boolean) - When set to true, explicitly disables automatic suspension (never suspend).
9693
+ * Should be set to true when provided
9694
+ */
9695
+ noSuspension?: boolean;
9627
9696
  /**
9628
9697
  * (object) - A raw representation of Postgres settings
9629
9698
  */
@@ -9631,27 +9700,16 @@ export interface GetPostgresProjectsProjectSpecDefaultEndpointSettings {
9631
9700
  [key: string]: string;
9632
9701
  };
9633
9702
  /**
9634
- * (string) - Duration of inactivity after which the compute endpoint is automatically suspended
9703
+ * (string) - Duration of inactivity after which the compute endpoint is automatically suspended.
9704
+ * If specified should be between 60s and 604800s (1 minute to 1 week)
9635
9705
  */
9636
9706
  suspendTimeoutDuration?: string;
9637
9707
  }
9638
- export interface GetPostgresProjectsProjectSpecSettings {
9639
- /**
9640
- * (boolean) - Sets wal_level=logical for all compute endpoints in this project.
9641
- * All active endpoints will be suspended.
9642
- * Once enabled, logical replication cannot be disabled
9643
- */
9644
- enableLogicalReplication?: boolean;
9645
- }
9646
9708
  export interface GetPostgresProjectsProjectStatus {
9647
9709
  /**
9648
9710
  * (integer) - The logical size limit for a branch
9649
9711
  */
9650
9712
  branchLogicalSizeLimitBytes: number;
9651
- /**
9652
- * (string) - The most recent time when any endpoint of this project was active
9653
- */
9654
- computeLastActiveTime: string;
9655
9713
  /**
9656
9714
  * (ProjectDefaultEndpointSettings) - The effective default endpoint settings
9657
9715
  */
@@ -9672,10 +9730,6 @@ export interface GetPostgresProjectsProjectStatus {
9672
9730
  * (integer) - The effective major Postgres version number
9673
9731
  */
9674
9732
  pgVersion: number;
9675
- /**
9676
- * (ProjectSettings) - The effective project settings
9677
- */
9678
- settings: outputs.GetPostgresProjectsProjectStatusSettings;
9679
9733
  /**
9680
9734
  * (integer) - The current space occupied by the project in storage
9681
9735
  */
@@ -9683,13 +9737,18 @@ export interface GetPostgresProjectsProjectStatus {
9683
9737
  }
9684
9738
  export interface GetPostgresProjectsProjectStatusDefaultEndpointSettings {
9685
9739
  /**
9686
- * (number) - The maximum number of Compute Units
9740
+ * (number) - The maximum number of Compute Units. Minimum value is 0.5
9687
9741
  */
9688
9742
  autoscalingLimitMaxCu?: number;
9689
9743
  /**
9690
- * (number) - The minimum number of Compute Units
9744
+ * (number) - The minimum number of Compute Units. Minimum value is 0.5
9691
9745
  */
9692
9746
  autoscalingLimitMinCu?: number;
9747
+ /**
9748
+ * (boolean) - When set to true, explicitly disables automatic suspension (never suspend).
9749
+ * Should be set to true when provided
9750
+ */
9751
+ noSuspension?: boolean;
9693
9752
  /**
9694
9753
  * (object) - A raw representation of Postgres settings
9695
9754
  */
@@ -9697,18 +9756,11 @@ export interface GetPostgresProjectsProjectStatusDefaultEndpointSettings {
9697
9756
  [key: string]: string;
9698
9757
  };
9699
9758
  /**
9700
- * (string) - Duration of inactivity after which the compute endpoint is automatically suspended
9759
+ * (string) - Duration of inactivity after which the compute endpoint is automatically suspended.
9760
+ * If specified should be between 60s and 604800s (1 minute to 1 week)
9701
9761
  */
9702
9762
  suspendTimeoutDuration?: string;
9703
9763
  }
9704
- export interface GetPostgresProjectsProjectStatusSettings {
9705
- /**
9706
- * (boolean) - Sets wal_level=logical for all compute endpoints in this project.
9707
- * All active endpoints will be suspended.
9708
- * Once enabled, logical replication cannot be disabled
9709
- */
9710
- enableLogicalReplication?: boolean;
9711
- }
9712
9764
  export interface GetQualityMonitorV2AnomalyDetectionConfig {
9713
9765
  /**
9714
9766
  * (list of string) - List of fully qualified table names to exclude from anomaly detection
@@ -11199,6 +11251,26 @@ export interface GetVolumesProviderConfig {
11199
11251
  */
11200
11252
  workspaceId: string;
11201
11253
  }
11254
+ export interface GetWarehousesDefaultWarehouseOverridesDefaultWarehouseOverride {
11255
+ /**
11256
+ * (string) - The ID component of the resource name (user ID)
11257
+ */
11258
+ defaultWarehouseOverrideId: string;
11259
+ /**
11260
+ * (string) - The resource name of the default warehouse override.
11261
+ * Format: default-warehouse-overrides/{default_warehouse_override_id}
11262
+ */
11263
+ name: string;
11264
+ /**
11265
+ * (string) - The type of override behavior. Possible values are: `CUSTOM`, `LAST_SELECTED`
11266
+ */
11267
+ type: string;
11268
+ /**
11269
+ * (string) - The specific warehouse ID when type is CUSTOM.
11270
+ * Not set for LAST_SELECTED type
11271
+ */
11272
+ warehouseId: string;
11273
+ }
11202
11274
  export interface GetWorkspaceEntityTagAssignmentsTagAssignment {
11203
11275
  /**
11204
11276
  * The identifier of the entity to which the tag is assigned
@@ -11729,6 +11801,7 @@ export interface JobJobClusterNewCluster {
11729
11801
  dataSecurityMode?: string;
11730
11802
  dockerImage?: outputs.JobJobClusterNewClusterDockerImage;
11731
11803
  driverInstancePoolId: string;
11804
+ driverNodeTypeFlexibility?: outputs.JobJobClusterNewClusterDriverNodeTypeFlexibility;
11732
11805
  driverNodeTypeId: string;
11733
11806
  enableElasticDisk: boolean;
11734
11807
  enableLocalDiskEncryption: boolean;
@@ -11762,6 +11835,7 @@ export interface JobJobClusterNewCluster {
11762
11835
  sshPublicKeys?: string[];
11763
11836
  totalInitialRemoteDiskSize?: number;
11764
11837
  useMlRuntime?: boolean;
11838
+ workerNodeTypeFlexibility?: outputs.JobJobClusterNewClusterWorkerNodeTypeFlexibility;
11765
11839
  /**
11766
11840
  * isn't supported
11767
11841
  */
@@ -11833,6 +11907,9 @@ export interface JobJobClusterNewClusterDockerImageBasicAuth {
11833
11907
  password: string;
11834
11908
  username: string;
11835
11909
  }
11910
+ export interface JobJobClusterNewClusterDriverNodeTypeFlexibility {
11911
+ alternateNodeTypeIds?: string[];
11912
+ }
11836
11913
  export interface JobJobClusterNewClusterGcpAttributes {
11837
11914
  availability?: string;
11838
11915
  bootDiskSize?: number;
@@ -11925,6 +12002,9 @@ export interface JobJobClusterNewClusterProviderConfig {
11925
12002
  */
11926
12003
  workspaceId: string;
11927
12004
  }
12005
+ export interface JobJobClusterNewClusterWorkerNodeTypeFlexibility {
12006
+ alternateNodeTypeIds?: string[];
12007
+ }
11928
12008
  export interface JobJobClusterNewClusterWorkloadType {
11929
12009
  clients: outputs.JobJobClusterNewClusterWorkloadTypeClients;
11930
12010
  }
@@ -11982,6 +12062,7 @@ export interface JobNewCluster {
11982
12062
  dataSecurityMode?: string;
11983
12063
  dockerImage?: outputs.JobNewClusterDockerImage;
11984
12064
  driverInstancePoolId: string;
12065
+ driverNodeTypeFlexibility?: outputs.JobNewClusterDriverNodeTypeFlexibility;
11985
12066
  driverNodeTypeId: string;
11986
12067
  enableElasticDisk: boolean;
11987
12068
  enableLocalDiskEncryption: boolean;
@@ -12015,6 +12096,7 @@ export interface JobNewCluster {
12015
12096
  sshPublicKeys?: string[];
12016
12097
  totalInitialRemoteDiskSize?: number;
12017
12098
  useMlRuntime?: boolean;
12099
+ workerNodeTypeFlexibility?: outputs.JobNewClusterWorkerNodeTypeFlexibility;
12018
12100
  /**
12019
12101
  * isn't supported
12020
12102
  */
@@ -12086,6 +12168,9 @@ export interface JobNewClusterDockerImageBasicAuth {
12086
12168
  password: string;
12087
12169
  username: string;
12088
12170
  }
12171
+ export interface JobNewClusterDriverNodeTypeFlexibility {
12172
+ alternateNodeTypeIds?: string[];
12173
+ }
12089
12174
  export interface JobNewClusterGcpAttributes {
12090
12175
  availability?: string;
12091
12176
  bootDiskSize?: number;
@@ -12178,6 +12263,9 @@ export interface JobNewClusterProviderConfig {
12178
12263
  */
12179
12264
  workspaceId: string;
12180
12265
  }
12266
+ export interface JobNewClusterWorkerNodeTypeFlexibility {
12267
+ alternateNodeTypeIds?: string[];
12268
+ }
12181
12269
  export interface JobNewClusterWorkloadType {
12182
12270
  clients: outputs.JobNewClusterWorkloadTypeClients;
12183
12271
  }
@@ -12966,6 +13054,7 @@ export interface JobTaskForEachTaskTaskNewCluster {
12966
13054
  dataSecurityMode?: string;
12967
13055
  dockerImage?: outputs.JobTaskForEachTaskTaskNewClusterDockerImage;
12968
13056
  driverInstancePoolId: string;
13057
+ driverNodeTypeFlexibility?: outputs.JobTaskForEachTaskTaskNewClusterDriverNodeTypeFlexibility;
12969
13058
  driverNodeTypeId: string;
12970
13059
  enableElasticDisk: boolean;
12971
13060
  enableLocalDiskEncryption: boolean;
@@ -12999,6 +13088,7 @@ export interface JobTaskForEachTaskTaskNewCluster {
12999
13088
  sshPublicKeys?: string[];
13000
13089
  totalInitialRemoteDiskSize?: number;
13001
13090
  useMlRuntime?: boolean;
13091
+ workerNodeTypeFlexibility?: outputs.JobTaskForEachTaskTaskNewClusterWorkerNodeTypeFlexibility;
13002
13092
  /**
13003
13093
  * isn't supported
13004
13094
  */
@@ -13070,6 +13160,9 @@ export interface JobTaskForEachTaskTaskNewClusterDockerImageBasicAuth {
13070
13160
  password: string;
13071
13161
  username: string;
13072
13162
  }
13163
+ export interface JobTaskForEachTaskTaskNewClusterDriverNodeTypeFlexibility {
13164
+ alternateNodeTypeIds?: string[];
13165
+ }
13073
13166
  export interface JobTaskForEachTaskTaskNewClusterGcpAttributes {
13074
13167
  availability?: string;
13075
13168
  bootDiskSize?: number;
@@ -13162,6 +13255,9 @@ export interface JobTaskForEachTaskTaskNewClusterProviderConfig {
13162
13255
  */
13163
13256
  workspaceId: string;
13164
13257
  }
13258
+ export interface JobTaskForEachTaskTaskNewClusterWorkerNodeTypeFlexibility {
13259
+ alternateNodeTypeIds?: string[];
13260
+ }
13165
13261
  export interface JobTaskForEachTaskTaskNewClusterWorkloadType {
13166
13262
  clients: outputs.JobTaskForEachTaskTaskNewClusterWorkloadTypeClients;
13167
13263
  }
@@ -13642,6 +13738,7 @@ export interface JobTaskNewCluster {
13642
13738
  dataSecurityMode?: string;
13643
13739
  dockerImage?: outputs.JobTaskNewClusterDockerImage;
13644
13740
  driverInstancePoolId: string;
13741
+ driverNodeTypeFlexibility?: outputs.JobTaskNewClusterDriverNodeTypeFlexibility;
13645
13742
  driverNodeTypeId: string;
13646
13743
  enableElasticDisk: boolean;
13647
13744
  enableLocalDiskEncryption: boolean;
@@ -13675,6 +13772,7 @@ export interface JobTaskNewCluster {
13675
13772
  sshPublicKeys?: string[];
13676
13773
  totalInitialRemoteDiskSize?: number;
13677
13774
  useMlRuntime?: boolean;
13775
+ workerNodeTypeFlexibility?: outputs.JobTaskNewClusterWorkerNodeTypeFlexibility;
13678
13776
  /**
13679
13777
  * isn't supported
13680
13778
  */
@@ -13746,6 +13844,9 @@ export interface JobTaskNewClusterDockerImageBasicAuth {
13746
13844
  password: string;
13747
13845
  username: string;
13748
13846
  }
13847
+ export interface JobTaskNewClusterDriverNodeTypeFlexibility {
13848
+ alternateNodeTypeIds?: string[];
13849
+ }
13749
13850
  export interface JobTaskNewClusterGcpAttributes {
13750
13851
  availability?: string;
13751
13852
  bootDiskSize?: number;
@@ -13838,6 +13939,9 @@ export interface JobTaskNewClusterProviderConfig {
13838
13939
  */
13839
13940
  workspaceId: string;
13840
13941
  }
13942
+ export interface JobTaskNewClusterWorkerNodeTypeFlexibility {
13943
+ alternateNodeTypeIds?: string[];
13944
+ }
13841
13945
  export interface JobTaskNewClusterWorkloadType {
13842
13946
  clients: outputs.JobTaskNewClusterWorkloadTypeClients;
13843
13947
  }
@@ -15466,11 +15570,11 @@ export interface MwsNetworksGcpNetworkInfo {
15466
15570
  */
15467
15571
  networkProjectId: string;
15468
15572
  /**
15469
- * @deprecated gcp_network_info.pod_ip_range_name is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.103.0/docs/guides/gcp-workspace#creating-a-vpc
15573
+ * @deprecated gcp_network_info.pod_ip_range_name is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.104.0/docs/guides/gcp-workspace#creating-a-vpc
15470
15574
  */
15471
15575
  podIpRangeName?: string;
15472
15576
  /**
15473
- * @deprecated gcp_network_info.service_ip_range_name is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.103.0/docs/guides/gcp-workspace#creating-a-vpc
15577
+ * @deprecated gcp_network_info.service_ip_range_name is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.104.0/docs/guides/gcp-workspace#creating-a-vpc
15474
15578
  */
15475
15579
  serviceIpRangeName?: string;
15476
15580
  /**
@@ -15531,11 +15635,11 @@ export interface MwsWorkspacesExternalCustomerInfo {
15531
15635
  }
15532
15636
  export interface MwsWorkspacesGcpManagedNetworkConfig {
15533
15637
  /**
15534
- * @deprecated gcp_managed_network_config.gke_cluster_pod_ip_range is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.103.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
15638
+ * @deprecated gcp_managed_network_config.gke_cluster_pod_ip_range is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.104.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
15535
15639
  */
15536
15640
  gkeClusterPodIpRange?: string;
15537
15641
  /**
15538
- * @deprecated gcp_managed_network_config.gke_cluster_service_ip_range is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.103.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
15642
+ * @deprecated gcp_managed_network_config.gke_cluster_service_ip_range is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.104.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
15539
15643
  */
15540
15644
  gkeClusterServiceIpRange?: string;
15541
15645
  subnetCidr: string;
@@ -15984,6 +16088,7 @@ export interface PipelineGatewayDefinitionConnectionParameters {
15984
16088
  }
15985
16089
  export interface PipelineIngestionDefinition {
15986
16090
  connectionName?: string;
16091
+ fullRefreshWindow?: outputs.PipelineIngestionDefinitionFullRefreshWindow;
15987
16092
  ingestFromUcForeignCatalog?: boolean;
15988
16093
  ingestionGatewayId?: string;
15989
16094
  netsuiteJarPath?: string;
@@ -15992,6 +16097,11 @@ export interface PipelineIngestionDefinition {
15992
16097
  sourceType?: string;
15993
16098
  tableConfiguration?: outputs.PipelineIngestionDefinitionTableConfiguration;
15994
16099
  }
16100
+ export interface PipelineIngestionDefinitionFullRefreshWindow {
16101
+ daysOfWeeks?: string[];
16102
+ startHour: number;
16103
+ timeZoneId?: string;
16104
+ }
15995
16105
  export interface PipelineIngestionDefinitionObject {
15996
16106
  report?: outputs.PipelineIngestionDefinitionObjectReport;
15997
16107
  /**
@@ -16008,6 +16118,7 @@ export interface PipelineIngestionDefinitionObjectReport {
16008
16118
  tableConfiguration?: outputs.PipelineIngestionDefinitionObjectReportTableConfiguration;
16009
16119
  }
16010
16120
  export interface PipelineIngestionDefinitionObjectReportTableConfiguration {
16121
+ autoFullRefreshPolicy?: outputs.PipelineIngestionDefinitionObjectReportTableConfigurationAutoFullRefreshPolicy;
16011
16122
  excludeColumns?: string[];
16012
16123
  includeColumns?: string[];
16013
16124
  primaryKeys?: string[];
@@ -16018,6 +16129,10 @@ export interface PipelineIngestionDefinitionObjectReportTableConfiguration {
16018
16129
  sequenceBies?: string[];
16019
16130
  workdayReportParameters?: outputs.PipelineIngestionDefinitionObjectReportTableConfigurationWorkdayReportParameters;
16020
16131
  }
16132
+ export interface PipelineIngestionDefinitionObjectReportTableConfigurationAutoFullRefreshPolicy {
16133
+ enabled: boolean;
16134
+ minIntervalHours?: number;
16135
+ }
16021
16136
  export interface PipelineIngestionDefinitionObjectReportTableConfigurationQueryBasedConnectorConfig {
16022
16137
  cursorColumns?: string[];
16023
16138
  deletionCondition?: string;
@@ -16042,6 +16157,7 @@ export interface PipelineIngestionDefinitionObjectSchema {
16042
16157
  tableConfiguration?: outputs.PipelineIngestionDefinitionObjectSchemaTableConfiguration;
16043
16158
  }
16044
16159
  export interface PipelineIngestionDefinitionObjectSchemaTableConfiguration {
16160
+ autoFullRefreshPolicy?: outputs.PipelineIngestionDefinitionObjectSchemaTableConfigurationAutoFullRefreshPolicy;
16045
16161
  excludeColumns?: string[];
16046
16162
  includeColumns?: string[];
16047
16163
  primaryKeys?: string[];
@@ -16052,6 +16168,10 @@ export interface PipelineIngestionDefinitionObjectSchemaTableConfiguration {
16052
16168
  sequenceBies?: string[];
16053
16169
  workdayReportParameters?: outputs.PipelineIngestionDefinitionObjectSchemaTableConfigurationWorkdayReportParameters;
16054
16170
  }
16171
+ export interface PipelineIngestionDefinitionObjectSchemaTableConfigurationAutoFullRefreshPolicy {
16172
+ enabled: boolean;
16173
+ minIntervalHours?: number;
16174
+ }
16055
16175
  export interface PipelineIngestionDefinitionObjectSchemaTableConfigurationQueryBasedConnectorConfig {
16056
16176
  cursorColumns?: string[];
16057
16177
  deletionCondition?: string;
@@ -16078,6 +16198,7 @@ export interface PipelineIngestionDefinitionObjectTable {
16078
16198
  tableConfiguration?: outputs.PipelineIngestionDefinitionObjectTableTableConfiguration;
16079
16199
  }
16080
16200
  export interface PipelineIngestionDefinitionObjectTableTableConfiguration {
16201
+ autoFullRefreshPolicy?: outputs.PipelineIngestionDefinitionObjectTableTableConfigurationAutoFullRefreshPolicy;
16081
16202
  excludeColumns?: string[];
16082
16203
  includeColumns?: string[];
16083
16204
  primaryKeys?: string[];
@@ -16088,6 +16209,10 @@ export interface PipelineIngestionDefinitionObjectTableTableConfiguration {
16088
16209
  sequenceBies?: string[];
16089
16210
  workdayReportParameters?: outputs.PipelineIngestionDefinitionObjectTableTableConfigurationWorkdayReportParameters;
16090
16211
  }
16212
+ export interface PipelineIngestionDefinitionObjectTableTableConfigurationAutoFullRefreshPolicy {
16213
+ enabled: boolean;
16214
+ minIntervalHours?: number;
16215
+ }
16091
16216
  export interface PipelineIngestionDefinitionObjectTableTableConfigurationQueryBasedConnectorConfig {
16092
16217
  cursorColumns?: string[];
16093
16218
  deletionCondition?: string;
@@ -16122,6 +16247,7 @@ export interface PipelineIngestionDefinitionSourceConfigurationCatalogPostgresSl
16122
16247
  slotName?: string;
16123
16248
  }
16124
16249
  export interface PipelineIngestionDefinitionTableConfiguration {
16250
+ autoFullRefreshPolicy?: outputs.PipelineIngestionDefinitionTableConfigurationAutoFullRefreshPolicy;
16125
16251
  excludeColumns?: string[];
16126
16252
  includeColumns?: string[];
16127
16253
  primaryKeys?: string[];
@@ -16132,6 +16258,10 @@ export interface PipelineIngestionDefinitionTableConfiguration {
16132
16258
  sequenceBies?: string[];
16133
16259
  workdayReportParameters?: outputs.PipelineIngestionDefinitionTableConfigurationWorkdayReportParameters;
16134
16260
  }
16261
+ export interface PipelineIngestionDefinitionTableConfigurationAutoFullRefreshPolicy {
16262
+ enabled: boolean;
16263
+ minIntervalHours?: number;
16264
+ }
16135
16265
  export interface PipelineIngestionDefinitionTableConfigurationQueryBasedConnectorConfig {
16136
16266
  cursorColumns?: string[];
16137
16267
  deletionCondition?: string;
@@ -16260,13 +16390,18 @@ export interface PolicyInfoRowFilterUsing {
16260
16390
  }
16261
16391
  export interface PostgresBranchSpec {
16262
16392
  /**
16263
- * (boolean) - Whether the branch is the project's default branch
16393
+ * (string) - Absolute expiration time for the branch. Empty if expiration is disabled
16264
16394
  */
16265
- default?: boolean;
16395
+ expireTime?: string;
16266
16396
  /**
16267
16397
  * (boolean) - Whether the branch is protected
16268
16398
  */
16269
16399
  isProtected?: boolean;
16400
+ /**
16401
+ * Explicitly disable expiration. When set to true, the branch will not expire.
16402
+ * If set to false, the request is invalid; provide either ttl or expireTime instead
16403
+ */
16404
+ noExpiry?: boolean;
16270
16405
  /**
16271
16406
  * (string) - The name of the source branch from which this branch was created.
16272
16407
  * Format: projects/{project_id}/branches/{branch_id}
@@ -16280,6 +16415,10 @@ export interface PostgresBranchSpec {
16280
16415
  * (string) - The point in time on the source branch from which this branch was created
16281
16416
  */
16282
16417
  sourceBranchTime?: string;
16418
+ /**
16419
+ * Relative time-to-live duration. When set, the branch will expire at creationTime + ttl
16420
+ */
16421
+ ttl?: string;
16283
16422
  }
16284
16423
  export interface PostgresBranchStatus {
16285
16424
  /**
@@ -16290,6 +16429,10 @@ export interface PostgresBranchStatus {
16290
16429
  * (boolean) - Whether the branch is the project's default branch
16291
16430
  */
16292
16431
  default: boolean;
16432
+ /**
16433
+ * (string) - Absolute expiration time for the branch. Empty if expiration is disabled
16434
+ */
16435
+ expireTime: string;
16293
16436
  /**
16294
16437
  * (boolean) - Whether the branch is protected
16295
16438
  */
@@ -16337,9 +16480,14 @@ export interface PostgresEndpointSpec {
16337
16480
  */
16338
16481
  disabled?: boolean;
16339
16482
  /**
16340
- * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `READ_ONLY`, `READ_WRITE`
16483
+ * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `ENDPOINT_TYPE_READ_ONLY`, `ENDPOINT_TYPE_READ_WRITE`
16341
16484
  */
16342
16485
  endpointType: string;
16486
+ /**
16487
+ * When set to true, explicitly disables automatic suspension (never suspend).
16488
+ * Should be set to true when provided
16489
+ */
16490
+ noSuspension?: boolean;
16343
16491
  /**
16344
16492
  * (EndpointSettings)
16345
16493
  */
@@ -16378,17 +16526,13 @@ export interface PostgresEndpointStatus {
16378
16526
  */
16379
16527
  disabled: boolean;
16380
16528
  /**
16381
- * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `READ_ONLY`, `READ_WRITE`
16529
+ * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `ENDPOINT_TYPE_READ_ONLY`, `ENDPOINT_TYPE_READ_WRITE`
16382
16530
  */
16383
16531
  endpointType: string;
16384
16532
  /**
16385
- * (string) - The hostname of the compute endpoint. This is the hostname specified when connecting to a database
16386
- */
16387
- host: string;
16388
- /**
16389
- * (string) - A timestamp indicating when the compute endpoint was last active
16533
+ * (EndpointHosts) - Contains host information for connecting to the endpoint
16390
16534
  */
16391
- lastActiveTime: string;
16535
+ hosts: outputs.PostgresEndpointStatusHosts;
16392
16536
  /**
16393
16537
  * (string) - Possible values are: `ACTIVE`, `IDLE`, `INIT`
16394
16538
  */
@@ -16397,19 +16541,18 @@ export interface PostgresEndpointStatus {
16397
16541
  * (EndpointSettings)
16398
16542
  */
16399
16543
  settings: outputs.PostgresEndpointStatusSettings;
16400
- /**
16401
- * (string) - A timestamp indicating when the compute endpoint was last started
16402
- */
16403
- startTime: string;
16404
- /**
16405
- * (string) - A timestamp indicating when the compute endpoint was last suspended
16406
- */
16407
- suspendTime: string;
16408
16544
  /**
16409
16545
  * (string) - Duration of inactivity after which the compute endpoint is automatically suspended
16410
16546
  */
16411
16547
  suspendTimeoutDuration: string;
16412
16548
  }
16549
+ export interface PostgresEndpointStatusHosts {
16550
+ /**
16551
+ * (string) - The hostname to connect to this endpoint. For read-write endpoints, this is a read-write hostname which connects
16552
+ * to the primary compute. For read-only endpoints, this is a read-only hostname which allows read-only operations
16553
+ */
16554
+ host: string;
16555
+ }
16413
16556
  export interface PostgresEndpointStatusSettings {
16414
16557
  /**
16415
16558
  * A raw representation of Postgres settings
@@ -16435,20 +16578,21 @@ export interface PostgresProjectSpec {
16435
16578
  * (integer) - The effective major Postgres version number
16436
16579
  */
16437
16580
  pgVersion?: number;
16438
- /**
16439
- * (ProjectSettings) - The effective project settings
16440
- */
16441
- settings?: outputs.PostgresProjectSpecSettings;
16442
16581
  }
16443
16582
  export interface PostgresProjectSpecDefaultEndpointSettings {
16444
16583
  /**
16445
- * The maximum number of Compute Units
16584
+ * The maximum number of Compute Units. Minimum value is 0.5
16446
16585
  */
16447
16586
  autoscalingLimitMaxCu?: number;
16448
16587
  /**
16449
- * The minimum number of Compute Units
16588
+ * The minimum number of Compute Units. Minimum value is 0.5
16450
16589
  */
16451
16590
  autoscalingLimitMinCu?: number;
16591
+ /**
16592
+ * When set to true, explicitly disables automatic suspension (never suspend).
16593
+ * Should be set to true when provided
16594
+ */
16595
+ noSuspension?: boolean;
16452
16596
  /**
16453
16597
  * A raw representation of Postgres settings
16454
16598
  */
@@ -16456,27 +16600,16 @@ export interface PostgresProjectSpecDefaultEndpointSettings {
16456
16600
  [key: string]: string;
16457
16601
  };
16458
16602
  /**
16459
- * Duration of inactivity after which the compute endpoint is automatically suspended
16603
+ * Duration of inactivity after which the compute endpoint is automatically suspended.
16604
+ * If specified should be between 60s and 604800s (1 minute to 1 week)
16460
16605
  */
16461
16606
  suspendTimeoutDuration?: string;
16462
16607
  }
16463
- export interface PostgresProjectSpecSettings {
16464
- /**
16465
- * Sets wal_level=logical for all compute endpoints in this project.
16466
- * All active endpoints will be suspended.
16467
- * Once enabled, logical replication cannot be disabled
16468
- */
16469
- enableLogicalReplication?: boolean;
16470
- }
16471
16608
  export interface PostgresProjectStatus {
16472
16609
  /**
16473
16610
  * (integer) - The logical size limit for a branch
16474
16611
  */
16475
16612
  branchLogicalSizeLimitBytes: number;
16476
- /**
16477
- * (string) - The most recent time when any endpoint of this project was active
16478
- */
16479
- computeLastActiveTime: string;
16480
16613
  /**
16481
16614
  * (ProjectDefaultEndpointSettings) - The effective default endpoint settings
16482
16615
  */
@@ -16497,10 +16630,6 @@ export interface PostgresProjectStatus {
16497
16630
  * (integer) - The effective major Postgres version number
16498
16631
  */
16499
16632
  pgVersion: number;
16500
- /**
16501
- * (ProjectSettings) - The effective project settings
16502
- */
16503
- settings: outputs.PostgresProjectStatusSettings;
16504
16633
  /**
16505
16634
  * (integer) - The current space occupied by the project in storage
16506
16635
  */
@@ -16508,13 +16637,18 @@ export interface PostgresProjectStatus {
16508
16637
  }
16509
16638
  export interface PostgresProjectStatusDefaultEndpointSettings {
16510
16639
  /**
16511
- * The maximum number of Compute Units
16640
+ * The maximum number of Compute Units. Minimum value is 0.5
16512
16641
  */
16513
16642
  autoscalingLimitMaxCu?: number;
16514
16643
  /**
16515
- * The minimum number of Compute Units
16644
+ * The minimum number of Compute Units. Minimum value is 0.5
16516
16645
  */
16517
16646
  autoscalingLimitMinCu?: number;
16647
+ /**
16648
+ * When set to true, explicitly disables automatic suspension (never suspend).
16649
+ * Should be set to true when provided
16650
+ */
16651
+ noSuspension?: boolean;
16518
16652
  /**
16519
16653
  * A raw representation of Postgres settings
16520
16654
  */
@@ -16522,18 +16656,11 @@ export interface PostgresProjectStatusDefaultEndpointSettings {
16522
16656
  [key: string]: string;
16523
16657
  };
16524
16658
  /**
16525
- * Duration of inactivity after which the compute endpoint is automatically suspended
16659
+ * Duration of inactivity after which the compute endpoint is automatically suspended.
16660
+ * If specified should be between 60s and 604800s (1 minute to 1 week)
16526
16661
  */
16527
16662
  suspendTimeoutDuration?: string;
16528
16663
  }
16529
- export interface PostgresProjectStatusSettings {
16530
- /**
16531
- * Sets wal_level=logical for all compute endpoints in this project.
16532
- * All active endpoints will be suspended.
16533
- * Once enabled, logical replication cannot be disabled
16534
- */
16535
- enableLogicalReplication?: boolean;
16536
- }
16537
16664
  export interface QualityMonitorCustomMetric {
16538
16665
  /**
16539
16666
  * [create metric definition](https://docs.databricks.com/en/lakehouse-monitoring/custom-metrics.html#create-definition)