@pulumi/databricks 1.83.0-alpha.1768541665 → 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.
- package/accountSettingUserPreferenceV2.d.ts +143 -0
- package/accountSettingUserPreferenceV2.js +118 -0
- package/accountSettingUserPreferenceV2.js.map +1 -0
- package/cluster.d.ts +6 -0
- package/cluster.js +4 -0
- package/cluster.js.map +1 -1
- package/getAccountSettingUserPreferenceV2.d.ts +73 -0
- package/getAccountSettingUserPreferenceV2.js +34 -0
- package/getAccountSettingUserPreferenceV2.js.map +1 -0
- package/getPostgresBranch.d.ts +43 -11
- package/getPostgresBranch.js +34 -2
- package/getPostgresBranch.js.map +1 -1
- package/getPostgresBranches.d.ts +37 -5
- package/getPostgresBranches.js +34 -2
- package/getPostgresBranches.js.map +1 -1
- package/getPostgresEndpoint.d.ts +44 -12
- package/getPostgresEndpoint.js +34 -2
- package/getPostgresEndpoint.js.map +1 -1
- package/getPostgresEndpoints.d.ts +39 -5
- package/getPostgresEndpoints.js +36 -2
- package/getPostgresEndpoints.js.map +1 -1
- package/getPostgresProject.d.ts +46 -10
- package/getPostgresProject.js +38 -2
- package/getPostgresProject.js.map +1 -1
- package/getPostgresProjects.d.ts +32 -4
- package/getPostgresProjects.js +30 -2
- package/getPostgresProjects.js.map +1 -1
- package/getQualityMonitorV2.d.ts +8 -0
- package/getQualityMonitorV2.js +8 -0
- package/getQualityMonitorV2.js.map +1 -1
- package/getQualityMonitorsV2.d.ts +8 -0
- package/getQualityMonitorsV2.js +8 -0
- package/getQualityMonitorsV2.js.map +1 -1
- package/getWarehousesDefaultWarehouseOverride.d.ts +78 -0
- package/getWarehousesDefaultWarehouseOverride.js +50 -0
- package/getWarehousesDefaultWarehouseOverride.js.map +1 -0
- package/getWarehousesDefaultWarehouseOverrides.d.ts +57 -0
- package/getWarehousesDefaultWarehouseOverrides.js +42 -0
- package/getWarehousesDefaultWarehouseOverrides.js.map +1 -0
- package/gitCredential.d.ts +3 -0
- package/gitCredential.js +2 -0
- package/gitCredential.js.map +1 -1
- package/index.d.ts +15 -0
- package/index.js +27 -8
- package/index.js.map +1 -1
- package/mwsWorkspaces.d.ts +3 -3
- package/package.json +2 -2
- package/postgresBranch.d.ts +92 -25
- package/postgresBranch.js +56 -1
- package/postgresBranch.js.map +1 -1
- package/postgresEndpoint.d.ts +176 -27
- package/postgresEndpoint.js +147 -1
- package/postgresEndpoint.js.map +1 -1
- package/postgresProject.d.ts +85 -22
- package/postgresProject.js +61 -1
- package/postgresProject.js.map +1 -1
- package/qualityMonitorV2.d.ts +4 -0
- package/qualityMonitorV2.js +4 -0
- package/qualityMonitorV2.js.map +1 -1
- package/types/input.d.ts +161 -56
- package/types/output.d.ts +300 -173
- package/warehousesDefaultWarehouseOverride.d.ts +146 -0
- package/warehousesDefaultWarehouseOverride.js +122 -0
- package/warehousesDefaultWarehouseOverride.js.map +1 -0
package/types/input.d.ts
CHANGED
|
@@ -135,6 +135,18 @@ export interface AccountNetworkPolicyEgressNetworkAccessPolicyEnforcement {
|
|
|
135
135
|
*/
|
|
136
136
|
enforcementMode?: pulumi.Input<string>;
|
|
137
137
|
}
|
|
138
|
+
export interface AccountSettingUserPreferenceV2BooleanVal {
|
|
139
|
+
value?: pulumi.Input<boolean>;
|
|
140
|
+
}
|
|
141
|
+
export interface AccountSettingUserPreferenceV2EffectiveBooleanVal {
|
|
142
|
+
value?: pulumi.Input<boolean>;
|
|
143
|
+
}
|
|
144
|
+
export interface AccountSettingUserPreferenceV2EffectiveStringVal {
|
|
145
|
+
value?: pulumi.Input<string>;
|
|
146
|
+
}
|
|
147
|
+
export interface AccountSettingUserPreferenceV2StringVal {
|
|
148
|
+
value?: pulumi.Input<string>;
|
|
149
|
+
}
|
|
138
150
|
export interface AccountSettingV2AibiDashboardEmbeddingAccessPolicy {
|
|
139
151
|
/**
|
|
140
152
|
* Possible values are: `ALLOW_ALL_DOMAINS`, `ALLOW_APPROVED_DOMAINS`, `DENY_ALL_DOMAINS`
|
|
@@ -1114,6 +1126,9 @@ export interface ClusterDockerImageBasicAuth {
|
|
|
1114
1126
|
password: pulumi.Input<string>;
|
|
1115
1127
|
username: pulumi.Input<string>;
|
|
1116
1128
|
}
|
|
1129
|
+
export interface ClusterDriverNodeTypeFlexibility {
|
|
1130
|
+
alternateNodeTypeIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1131
|
+
}
|
|
1117
1132
|
export interface ClusterGcpAttributes {
|
|
1118
1133
|
/**
|
|
1119
1134
|
* Availability type used for all nodes. Valid values are `PREEMPTIBLE_GCP`, `PREEMPTIBLE_WITH_FALLBACK_GCP` and `ON_DEMAND_GCP`, default: `ON_DEMAND_GCP`.
|
|
@@ -1314,6 +1329,9 @@ export interface ClusterProviderConfig {
|
|
|
1314
1329
|
*/
|
|
1315
1330
|
workspaceId: pulumi.Input<string>;
|
|
1316
1331
|
}
|
|
1332
|
+
export interface ClusterWorkerNodeTypeFlexibility {
|
|
1333
|
+
alternateNodeTypeIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1334
|
+
}
|
|
1317
1335
|
export interface ClusterWorkloadType {
|
|
1318
1336
|
clients: pulumi.Input<inputs.ClusterWorkloadTypeClients>;
|
|
1319
1337
|
}
|
|
@@ -2512,6 +2530,7 @@ export interface GetClusterClusterInfo {
|
|
|
2512
2530
|
* similar to `instancePoolId`, but for driver node.
|
|
2513
2531
|
*/
|
|
2514
2532
|
driverInstancePoolId?: string;
|
|
2533
|
+
driverNodeTypeFlexibility?: inputs.GetClusterClusterInfoDriverNodeTypeFlexibility;
|
|
2515
2534
|
/**
|
|
2516
2535
|
* The node type of the Spark driver.
|
|
2517
2536
|
*/
|
|
@@ -2583,6 +2602,7 @@ export interface GetClusterClusterInfo {
|
|
|
2583
2602
|
terminationReason?: inputs.GetClusterClusterInfoTerminationReason;
|
|
2584
2603
|
totalInitialRemoteDiskSize?: number;
|
|
2585
2604
|
useMlRuntime?: boolean;
|
|
2605
|
+
workerNodeTypeFlexibility?: inputs.GetClusterClusterInfoWorkerNodeTypeFlexibility;
|
|
2586
2606
|
workloadType?: inputs.GetClusterClusterInfoWorkloadType;
|
|
2587
2607
|
}
|
|
2588
2608
|
export interface GetClusterClusterInfoArgs {
|
|
@@ -2626,6 +2646,7 @@ export interface GetClusterClusterInfoArgs {
|
|
|
2626
2646
|
* similar to `instancePoolId`, but for driver node.
|
|
2627
2647
|
*/
|
|
2628
2648
|
driverInstancePoolId?: pulumi.Input<string>;
|
|
2649
|
+
driverNodeTypeFlexibility?: pulumi.Input<inputs.GetClusterClusterInfoDriverNodeTypeFlexibilityArgs>;
|
|
2629
2650
|
/**
|
|
2630
2651
|
* The node type of the Spark driver.
|
|
2631
2652
|
*/
|
|
@@ -2697,6 +2718,7 @@ export interface GetClusterClusterInfoArgs {
|
|
|
2697
2718
|
terminationReason?: pulumi.Input<inputs.GetClusterClusterInfoTerminationReasonArgs>;
|
|
2698
2719
|
totalInitialRemoteDiskSize?: pulumi.Input<number>;
|
|
2699
2720
|
useMlRuntime?: pulumi.Input<boolean>;
|
|
2721
|
+
workerNodeTypeFlexibility?: pulumi.Input<inputs.GetClusterClusterInfoWorkerNodeTypeFlexibilityArgs>;
|
|
2700
2722
|
workloadType?: pulumi.Input<inputs.GetClusterClusterInfoWorkloadTypeArgs>;
|
|
2701
2723
|
}
|
|
2702
2724
|
export interface GetClusterClusterInfoAutoscale {
|
|
@@ -2839,6 +2861,12 @@ export interface GetClusterClusterInfoDriverNodeAwsAttributes {
|
|
|
2839
2861
|
export interface GetClusterClusterInfoDriverNodeAwsAttributesArgs {
|
|
2840
2862
|
isSpot?: pulumi.Input<boolean>;
|
|
2841
2863
|
}
|
|
2864
|
+
export interface GetClusterClusterInfoDriverNodeTypeFlexibility {
|
|
2865
|
+
alternateNodeTypeIds?: string[];
|
|
2866
|
+
}
|
|
2867
|
+
export interface GetClusterClusterInfoDriverNodeTypeFlexibilityArgs {
|
|
2868
|
+
alternateNodeTypeIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2869
|
+
}
|
|
2842
2870
|
export interface GetClusterClusterInfoExecutor {
|
|
2843
2871
|
hostPrivateIp?: string;
|
|
2844
2872
|
instanceId?: string;
|
|
@@ -2983,6 +3011,7 @@ export interface GetClusterClusterInfoSpec {
|
|
|
2983
3011
|
* similar to `instancePoolId`, but for driver node.
|
|
2984
3012
|
*/
|
|
2985
3013
|
driverInstancePoolId?: string;
|
|
3014
|
+
driverNodeTypeFlexibility?: inputs.GetClusterClusterInfoSpecDriverNodeTypeFlexibility;
|
|
2986
3015
|
/**
|
|
2987
3016
|
* The node type of the Spark driver.
|
|
2988
3017
|
*/
|
|
@@ -3052,6 +3081,7 @@ export interface GetClusterClusterInfoSpec {
|
|
|
3052
3081
|
sshPublicKeys?: string[];
|
|
3053
3082
|
totalInitialRemoteDiskSize?: number;
|
|
3054
3083
|
useMlRuntime?: boolean;
|
|
3084
|
+
workerNodeTypeFlexibility?: inputs.GetClusterClusterInfoSpecWorkerNodeTypeFlexibility;
|
|
3055
3085
|
workloadType?: inputs.GetClusterClusterInfoSpecWorkloadType;
|
|
3056
3086
|
}
|
|
3057
3087
|
export interface GetClusterClusterInfoSpecArgs {
|
|
@@ -3084,6 +3114,7 @@ export interface GetClusterClusterInfoSpecArgs {
|
|
|
3084
3114
|
* similar to `instancePoolId`, but for driver node.
|
|
3085
3115
|
*/
|
|
3086
3116
|
driverInstancePoolId?: pulumi.Input<string>;
|
|
3117
|
+
driverNodeTypeFlexibility?: pulumi.Input<inputs.GetClusterClusterInfoSpecDriverNodeTypeFlexibilityArgs>;
|
|
3087
3118
|
/**
|
|
3088
3119
|
* The node type of the Spark driver.
|
|
3089
3120
|
*/
|
|
@@ -3153,6 +3184,7 @@ export interface GetClusterClusterInfoSpecArgs {
|
|
|
3153
3184
|
sshPublicKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
3154
3185
|
totalInitialRemoteDiskSize?: pulumi.Input<number>;
|
|
3155
3186
|
useMlRuntime?: pulumi.Input<boolean>;
|
|
3187
|
+
workerNodeTypeFlexibility?: pulumi.Input<inputs.GetClusterClusterInfoSpecWorkerNodeTypeFlexibilityArgs>;
|
|
3156
3188
|
workloadType?: pulumi.Input<inputs.GetClusterClusterInfoSpecWorkloadTypeArgs>;
|
|
3157
3189
|
}
|
|
3158
3190
|
export interface GetClusterClusterInfoSpecAutoscale {
|
|
@@ -3281,6 +3313,12 @@ export interface GetClusterClusterInfoSpecDockerImageBasicAuthArgs {
|
|
|
3281
3313
|
password: pulumi.Input<string>;
|
|
3282
3314
|
username: pulumi.Input<string>;
|
|
3283
3315
|
}
|
|
3316
|
+
export interface GetClusterClusterInfoSpecDriverNodeTypeFlexibility {
|
|
3317
|
+
alternateNodeTypeIds?: string[];
|
|
3318
|
+
}
|
|
3319
|
+
export interface GetClusterClusterInfoSpecDriverNodeTypeFlexibilityArgs {
|
|
3320
|
+
alternateNodeTypeIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
3321
|
+
}
|
|
3284
3322
|
export interface GetClusterClusterInfoSpecGcpAttributes {
|
|
3285
3323
|
availability?: string;
|
|
3286
3324
|
bootDiskSize?: number;
|
|
@@ -3459,6 +3497,12 @@ export interface GetClusterClusterInfoSpecProviderConfigArgs {
|
|
|
3459
3497
|
*/
|
|
3460
3498
|
workspaceId: pulumi.Input<string>;
|
|
3461
3499
|
}
|
|
3500
|
+
export interface GetClusterClusterInfoSpecWorkerNodeTypeFlexibility {
|
|
3501
|
+
alternateNodeTypeIds?: string[];
|
|
3502
|
+
}
|
|
3503
|
+
export interface GetClusterClusterInfoSpecWorkerNodeTypeFlexibilityArgs {
|
|
3504
|
+
alternateNodeTypeIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
3505
|
+
}
|
|
3462
3506
|
export interface GetClusterClusterInfoSpecWorkloadType {
|
|
3463
3507
|
clients: inputs.GetClusterClusterInfoSpecWorkloadTypeClients;
|
|
3464
3508
|
}
|
|
@@ -3487,6 +3531,12 @@ export interface GetClusterClusterInfoTerminationReasonArgs {
|
|
|
3487
3531
|
}>;
|
|
3488
3532
|
type?: pulumi.Input<string>;
|
|
3489
3533
|
}
|
|
3534
|
+
export interface GetClusterClusterInfoWorkerNodeTypeFlexibility {
|
|
3535
|
+
alternateNodeTypeIds?: string[];
|
|
3536
|
+
}
|
|
3537
|
+
export interface GetClusterClusterInfoWorkerNodeTypeFlexibilityArgs {
|
|
3538
|
+
alternateNodeTypeIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
3539
|
+
}
|
|
3490
3540
|
export interface GetClusterClusterInfoWorkloadType {
|
|
3491
3541
|
clients: inputs.GetClusterClusterInfoWorkloadTypeClients;
|
|
3492
3542
|
}
|
|
@@ -10525,6 +10575,7 @@ export interface JobJobClusterNewCluster {
|
|
|
10525
10575
|
dataSecurityMode?: pulumi.Input<string>;
|
|
10526
10576
|
dockerImage?: pulumi.Input<inputs.JobJobClusterNewClusterDockerImage>;
|
|
10527
10577
|
driverInstancePoolId?: pulumi.Input<string>;
|
|
10578
|
+
driverNodeTypeFlexibility?: pulumi.Input<inputs.JobJobClusterNewClusterDriverNodeTypeFlexibility>;
|
|
10528
10579
|
driverNodeTypeId?: pulumi.Input<string>;
|
|
10529
10580
|
enableElasticDisk?: pulumi.Input<boolean>;
|
|
10530
10581
|
enableLocalDiskEncryption?: pulumi.Input<boolean>;
|
|
@@ -10558,6 +10609,7 @@ export interface JobJobClusterNewCluster {
|
|
|
10558
10609
|
sshPublicKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
10559
10610
|
totalInitialRemoteDiskSize?: pulumi.Input<number>;
|
|
10560
10611
|
useMlRuntime?: pulumi.Input<boolean>;
|
|
10612
|
+
workerNodeTypeFlexibility?: pulumi.Input<inputs.JobJobClusterNewClusterWorkerNodeTypeFlexibility>;
|
|
10561
10613
|
/**
|
|
10562
10614
|
* isn't supported
|
|
10563
10615
|
*/
|
|
@@ -10629,6 +10681,9 @@ export interface JobJobClusterNewClusterDockerImageBasicAuth {
|
|
|
10629
10681
|
password: pulumi.Input<string>;
|
|
10630
10682
|
username: pulumi.Input<string>;
|
|
10631
10683
|
}
|
|
10684
|
+
export interface JobJobClusterNewClusterDriverNodeTypeFlexibility {
|
|
10685
|
+
alternateNodeTypeIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
10686
|
+
}
|
|
10632
10687
|
export interface JobJobClusterNewClusterGcpAttributes {
|
|
10633
10688
|
availability?: pulumi.Input<string>;
|
|
10634
10689
|
bootDiskSize?: pulumi.Input<number>;
|
|
@@ -10721,6 +10776,9 @@ export interface JobJobClusterNewClusterProviderConfig {
|
|
|
10721
10776
|
*/
|
|
10722
10777
|
workspaceId: pulumi.Input<string>;
|
|
10723
10778
|
}
|
|
10779
|
+
export interface JobJobClusterNewClusterWorkerNodeTypeFlexibility {
|
|
10780
|
+
alternateNodeTypeIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
10781
|
+
}
|
|
10724
10782
|
export interface JobJobClusterNewClusterWorkloadType {
|
|
10725
10783
|
clients: pulumi.Input<inputs.JobJobClusterNewClusterWorkloadTypeClients>;
|
|
10726
10784
|
}
|
|
@@ -10778,6 +10836,7 @@ export interface JobNewCluster {
|
|
|
10778
10836
|
dataSecurityMode?: pulumi.Input<string>;
|
|
10779
10837
|
dockerImage?: pulumi.Input<inputs.JobNewClusterDockerImage>;
|
|
10780
10838
|
driverInstancePoolId?: pulumi.Input<string>;
|
|
10839
|
+
driverNodeTypeFlexibility?: pulumi.Input<inputs.JobNewClusterDriverNodeTypeFlexibility>;
|
|
10781
10840
|
driverNodeTypeId?: pulumi.Input<string>;
|
|
10782
10841
|
enableElasticDisk?: pulumi.Input<boolean>;
|
|
10783
10842
|
enableLocalDiskEncryption?: pulumi.Input<boolean>;
|
|
@@ -10811,6 +10870,7 @@ export interface JobNewCluster {
|
|
|
10811
10870
|
sshPublicKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
10812
10871
|
totalInitialRemoteDiskSize?: pulumi.Input<number>;
|
|
10813
10872
|
useMlRuntime?: pulumi.Input<boolean>;
|
|
10873
|
+
workerNodeTypeFlexibility?: pulumi.Input<inputs.JobNewClusterWorkerNodeTypeFlexibility>;
|
|
10814
10874
|
/**
|
|
10815
10875
|
* isn't supported
|
|
10816
10876
|
*/
|
|
@@ -10882,6 +10942,9 @@ export interface JobNewClusterDockerImageBasicAuth {
|
|
|
10882
10942
|
password: pulumi.Input<string>;
|
|
10883
10943
|
username: pulumi.Input<string>;
|
|
10884
10944
|
}
|
|
10945
|
+
export interface JobNewClusterDriverNodeTypeFlexibility {
|
|
10946
|
+
alternateNodeTypeIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
10947
|
+
}
|
|
10885
10948
|
export interface JobNewClusterGcpAttributes {
|
|
10886
10949
|
availability?: pulumi.Input<string>;
|
|
10887
10950
|
bootDiskSize?: pulumi.Input<number>;
|
|
@@ -10974,6 +11037,9 @@ export interface JobNewClusterProviderConfig {
|
|
|
10974
11037
|
*/
|
|
10975
11038
|
workspaceId: pulumi.Input<string>;
|
|
10976
11039
|
}
|
|
11040
|
+
export interface JobNewClusterWorkerNodeTypeFlexibility {
|
|
11041
|
+
alternateNodeTypeIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
11042
|
+
}
|
|
10977
11043
|
export interface JobNewClusterWorkloadType {
|
|
10978
11044
|
clients: pulumi.Input<inputs.JobNewClusterWorkloadTypeClients>;
|
|
10979
11045
|
}
|
|
@@ -11762,6 +11828,7 @@ export interface JobTaskForEachTaskTaskNewCluster {
|
|
|
11762
11828
|
dataSecurityMode?: pulumi.Input<string>;
|
|
11763
11829
|
dockerImage?: pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterDockerImage>;
|
|
11764
11830
|
driverInstancePoolId?: pulumi.Input<string>;
|
|
11831
|
+
driverNodeTypeFlexibility?: pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterDriverNodeTypeFlexibility>;
|
|
11765
11832
|
driverNodeTypeId?: pulumi.Input<string>;
|
|
11766
11833
|
enableElasticDisk?: pulumi.Input<boolean>;
|
|
11767
11834
|
enableLocalDiskEncryption?: pulumi.Input<boolean>;
|
|
@@ -11795,6 +11862,7 @@ export interface JobTaskForEachTaskTaskNewCluster {
|
|
|
11795
11862
|
sshPublicKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
11796
11863
|
totalInitialRemoteDiskSize?: pulumi.Input<number>;
|
|
11797
11864
|
useMlRuntime?: pulumi.Input<boolean>;
|
|
11865
|
+
workerNodeTypeFlexibility?: pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterWorkerNodeTypeFlexibility>;
|
|
11798
11866
|
/**
|
|
11799
11867
|
* isn't supported
|
|
11800
11868
|
*/
|
|
@@ -11866,6 +11934,9 @@ export interface JobTaskForEachTaskTaskNewClusterDockerImageBasicAuth {
|
|
|
11866
11934
|
password: pulumi.Input<string>;
|
|
11867
11935
|
username: pulumi.Input<string>;
|
|
11868
11936
|
}
|
|
11937
|
+
export interface JobTaskForEachTaskTaskNewClusterDriverNodeTypeFlexibility {
|
|
11938
|
+
alternateNodeTypeIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
11939
|
+
}
|
|
11869
11940
|
export interface JobTaskForEachTaskTaskNewClusterGcpAttributes {
|
|
11870
11941
|
availability?: pulumi.Input<string>;
|
|
11871
11942
|
bootDiskSize?: pulumi.Input<number>;
|
|
@@ -11958,6 +12029,9 @@ export interface JobTaskForEachTaskTaskNewClusterProviderConfig {
|
|
|
11958
12029
|
*/
|
|
11959
12030
|
workspaceId: pulumi.Input<string>;
|
|
11960
12031
|
}
|
|
12032
|
+
export interface JobTaskForEachTaskTaskNewClusterWorkerNodeTypeFlexibility {
|
|
12033
|
+
alternateNodeTypeIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
12034
|
+
}
|
|
11961
12035
|
export interface JobTaskForEachTaskTaskNewClusterWorkloadType {
|
|
11962
12036
|
clients: pulumi.Input<inputs.JobTaskForEachTaskTaskNewClusterWorkloadTypeClients>;
|
|
11963
12037
|
}
|
|
@@ -12438,6 +12512,7 @@ export interface JobTaskNewCluster {
|
|
|
12438
12512
|
dataSecurityMode?: pulumi.Input<string>;
|
|
12439
12513
|
dockerImage?: pulumi.Input<inputs.JobTaskNewClusterDockerImage>;
|
|
12440
12514
|
driverInstancePoolId?: pulumi.Input<string>;
|
|
12515
|
+
driverNodeTypeFlexibility?: pulumi.Input<inputs.JobTaskNewClusterDriverNodeTypeFlexibility>;
|
|
12441
12516
|
driverNodeTypeId?: pulumi.Input<string>;
|
|
12442
12517
|
enableElasticDisk?: pulumi.Input<boolean>;
|
|
12443
12518
|
enableLocalDiskEncryption?: pulumi.Input<boolean>;
|
|
@@ -12471,6 +12546,7 @@ export interface JobTaskNewCluster {
|
|
|
12471
12546
|
sshPublicKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
12472
12547
|
totalInitialRemoteDiskSize?: pulumi.Input<number>;
|
|
12473
12548
|
useMlRuntime?: pulumi.Input<boolean>;
|
|
12549
|
+
workerNodeTypeFlexibility?: pulumi.Input<inputs.JobTaskNewClusterWorkerNodeTypeFlexibility>;
|
|
12474
12550
|
/**
|
|
12475
12551
|
* isn't supported
|
|
12476
12552
|
*/
|
|
@@ -12542,6 +12618,9 @@ export interface JobTaskNewClusterDockerImageBasicAuth {
|
|
|
12542
12618
|
password: pulumi.Input<string>;
|
|
12543
12619
|
username: pulumi.Input<string>;
|
|
12544
12620
|
}
|
|
12621
|
+
export interface JobTaskNewClusterDriverNodeTypeFlexibility {
|
|
12622
|
+
alternateNodeTypeIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
12623
|
+
}
|
|
12545
12624
|
export interface JobTaskNewClusterGcpAttributes {
|
|
12546
12625
|
availability?: pulumi.Input<string>;
|
|
12547
12626
|
bootDiskSize?: pulumi.Input<number>;
|
|
@@ -12634,6 +12713,9 @@ export interface JobTaskNewClusterProviderConfig {
|
|
|
12634
12713
|
*/
|
|
12635
12714
|
workspaceId: pulumi.Input<string>;
|
|
12636
12715
|
}
|
|
12716
|
+
export interface JobTaskNewClusterWorkerNodeTypeFlexibility {
|
|
12717
|
+
alternateNodeTypeIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
12718
|
+
}
|
|
12637
12719
|
export interface JobTaskNewClusterWorkloadType {
|
|
12638
12720
|
clients: pulumi.Input<inputs.JobTaskNewClusterWorkloadTypeClients>;
|
|
12639
12721
|
}
|
|
@@ -14262,11 +14344,11 @@ export interface MwsNetworksGcpNetworkInfo {
|
|
|
14262
14344
|
*/
|
|
14263
14345
|
networkProjectId: pulumi.Input<string>;
|
|
14264
14346
|
/**
|
|
14265
|
-
* @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.
|
|
14347
|
+
* @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
|
|
14266
14348
|
*/
|
|
14267
14349
|
podIpRangeName?: pulumi.Input<string>;
|
|
14268
14350
|
/**
|
|
14269
|
-
* @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.
|
|
14351
|
+
* @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
|
|
14270
14352
|
*/
|
|
14271
14353
|
serviceIpRangeName?: pulumi.Input<string>;
|
|
14272
14354
|
/**
|
|
@@ -14327,11 +14409,11 @@ export interface MwsWorkspacesExternalCustomerInfo {
|
|
|
14327
14409
|
}
|
|
14328
14410
|
export interface MwsWorkspacesGcpManagedNetworkConfig {
|
|
14329
14411
|
/**
|
|
14330
|
-
* @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.
|
|
14412
|
+
* @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
|
|
14331
14413
|
*/
|
|
14332
14414
|
gkeClusterPodIpRange?: pulumi.Input<string>;
|
|
14333
14415
|
/**
|
|
14334
|
-
* @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.
|
|
14416
|
+
* @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
|
|
14335
14417
|
*/
|
|
14336
14418
|
gkeClusterServiceIpRange?: pulumi.Input<string>;
|
|
14337
14419
|
subnetCidr: pulumi.Input<string>;
|
|
@@ -14780,6 +14862,7 @@ export interface PipelineGatewayDefinitionConnectionParameters {
|
|
|
14780
14862
|
}
|
|
14781
14863
|
export interface PipelineIngestionDefinition {
|
|
14782
14864
|
connectionName?: pulumi.Input<string>;
|
|
14865
|
+
fullRefreshWindow?: pulumi.Input<inputs.PipelineIngestionDefinitionFullRefreshWindow>;
|
|
14783
14866
|
ingestFromUcForeignCatalog?: pulumi.Input<boolean>;
|
|
14784
14867
|
ingestionGatewayId?: pulumi.Input<string>;
|
|
14785
14868
|
netsuiteJarPath?: pulumi.Input<string>;
|
|
@@ -14788,6 +14871,11 @@ export interface PipelineIngestionDefinition {
|
|
|
14788
14871
|
sourceType?: pulumi.Input<string>;
|
|
14789
14872
|
tableConfiguration?: pulumi.Input<inputs.PipelineIngestionDefinitionTableConfiguration>;
|
|
14790
14873
|
}
|
|
14874
|
+
export interface PipelineIngestionDefinitionFullRefreshWindow {
|
|
14875
|
+
daysOfWeeks?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14876
|
+
startHour: pulumi.Input<number>;
|
|
14877
|
+
timeZoneId?: pulumi.Input<string>;
|
|
14878
|
+
}
|
|
14791
14879
|
export interface PipelineIngestionDefinitionObject {
|
|
14792
14880
|
report?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectReport>;
|
|
14793
14881
|
/**
|
|
@@ -14804,6 +14892,7 @@ export interface PipelineIngestionDefinitionObjectReport {
|
|
|
14804
14892
|
tableConfiguration?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectReportTableConfiguration>;
|
|
14805
14893
|
}
|
|
14806
14894
|
export interface PipelineIngestionDefinitionObjectReportTableConfiguration {
|
|
14895
|
+
autoFullRefreshPolicy?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectReportTableConfigurationAutoFullRefreshPolicy>;
|
|
14807
14896
|
excludeColumns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14808
14897
|
includeColumns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14809
14898
|
primaryKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
@@ -14814,6 +14903,10 @@ export interface PipelineIngestionDefinitionObjectReportTableConfiguration {
|
|
|
14814
14903
|
sequenceBies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14815
14904
|
workdayReportParameters?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectReportTableConfigurationWorkdayReportParameters>;
|
|
14816
14905
|
}
|
|
14906
|
+
export interface PipelineIngestionDefinitionObjectReportTableConfigurationAutoFullRefreshPolicy {
|
|
14907
|
+
enabled: pulumi.Input<boolean>;
|
|
14908
|
+
minIntervalHours?: pulumi.Input<number>;
|
|
14909
|
+
}
|
|
14817
14910
|
export interface PipelineIngestionDefinitionObjectReportTableConfigurationQueryBasedConnectorConfig {
|
|
14818
14911
|
cursorColumns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14819
14912
|
deletionCondition?: pulumi.Input<string>;
|
|
@@ -14838,6 +14931,7 @@ export interface PipelineIngestionDefinitionObjectSchema {
|
|
|
14838
14931
|
tableConfiguration?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectSchemaTableConfiguration>;
|
|
14839
14932
|
}
|
|
14840
14933
|
export interface PipelineIngestionDefinitionObjectSchemaTableConfiguration {
|
|
14934
|
+
autoFullRefreshPolicy?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectSchemaTableConfigurationAutoFullRefreshPolicy>;
|
|
14841
14935
|
excludeColumns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14842
14936
|
includeColumns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14843
14937
|
primaryKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
@@ -14848,6 +14942,10 @@ export interface PipelineIngestionDefinitionObjectSchemaTableConfiguration {
|
|
|
14848
14942
|
sequenceBies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14849
14943
|
workdayReportParameters?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectSchemaTableConfigurationWorkdayReportParameters>;
|
|
14850
14944
|
}
|
|
14945
|
+
export interface PipelineIngestionDefinitionObjectSchemaTableConfigurationAutoFullRefreshPolicy {
|
|
14946
|
+
enabled: pulumi.Input<boolean>;
|
|
14947
|
+
minIntervalHours?: pulumi.Input<number>;
|
|
14948
|
+
}
|
|
14851
14949
|
export interface PipelineIngestionDefinitionObjectSchemaTableConfigurationQueryBasedConnectorConfig {
|
|
14852
14950
|
cursorColumns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14853
14951
|
deletionCondition?: pulumi.Input<string>;
|
|
@@ -14874,6 +14972,7 @@ export interface PipelineIngestionDefinitionObjectTable {
|
|
|
14874
14972
|
tableConfiguration?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectTableTableConfiguration>;
|
|
14875
14973
|
}
|
|
14876
14974
|
export interface PipelineIngestionDefinitionObjectTableTableConfiguration {
|
|
14975
|
+
autoFullRefreshPolicy?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectTableTableConfigurationAutoFullRefreshPolicy>;
|
|
14877
14976
|
excludeColumns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14878
14977
|
includeColumns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14879
14978
|
primaryKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
@@ -14884,6 +14983,10 @@ export interface PipelineIngestionDefinitionObjectTableTableConfiguration {
|
|
|
14884
14983
|
sequenceBies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14885
14984
|
workdayReportParameters?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectTableTableConfigurationWorkdayReportParameters>;
|
|
14886
14985
|
}
|
|
14986
|
+
export interface PipelineIngestionDefinitionObjectTableTableConfigurationAutoFullRefreshPolicy {
|
|
14987
|
+
enabled: pulumi.Input<boolean>;
|
|
14988
|
+
minIntervalHours?: pulumi.Input<number>;
|
|
14989
|
+
}
|
|
14887
14990
|
export interface PipelineIngestionDefinitionObjectTableTableConfigurationQueryBasedConnectorConfig {
|
|
14888
14991
|
cursorColumns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14889
14992
|
deletionCondition?: pulumi.Input<string>;
|
|
@@ -14918,6 +15021,7 @@ export interface PipelineIngestionDefinitionSourceConfigurationCatalogPostgresSl
|
|
|
14918
15021
|
slotName?: pulumi.Input<string>;
|
|
14919
15022
|
}
|
|
14920
15023
|
export interface PipelineIngestionDefinitionTableConfiguration {
|
|
15024
|
+
autoFullRefreshPolicy?: pulumi.Input<inputs.PipelineIngestionDefinitionTableConfigurationAutoFullRefreshPolicy>;
|
|
14921
15025
|
excludeColumns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14922
15026
|
includeColumns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14923
15027
|
primaryKeys?: pulumi.Input<pulumi.Input<string>[]>;
|
|
@@ -14928,6 +15032,10 @@ export interface PipelineIngestionDefinitionTableConfiguration {
|
|
|
14928
15032
|
sequenceBies?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14929
15033
|
workdayReportParameters?: pulumi.Input<inputs.PipelineIngestionDefinitionTableConfigurationWorkdayReportParameters>;
|
|
14930
15034
|
}
|
|
15035
|
+
export interface PipelineIngestionDefinitionTableConfigurationAutoFullRefreshPolicy {
|
|
15036
|
+
enabled: pulumi.Input<boolean>;
|
|
15037
|
+
minIntervalHours?: pulumi.Input<number>;
|
|
15038
|
+
}
|
|
14931
15039
|
export interface PipelineIngestionDefinitionTableConfigurationQueryBasedConnectorConfig {
|
|
14932
15040
|
cursorColumns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
14933
15041
|
deletionCondition?: pulumi.Input<string>;
|
|
@@ -15056,13 +15164,18 @@ export interface PolicyInfoRowFilterUsing {
|
|
|
15056
15164
|
}
|
|
15057
15165
|
export interface PostgresBranchSpec {
|
|
15058
15166
|
/**
|
|
15059
|
-
* (
|
|
15167
|
+
* (string) - Absolute expiration time for the branch. Empty if expiration is disabled
|
|
15060
15168
|
*/
|
|
15061
|
-
|
|
15169
|
+
expireTime?: pulumi.Input<string>;
|
|
15062
15170
|
/**
|
|
15063
15171
|
* (boolean) - Whether the branch is protected
|
|
15064
15172
|
*/
|
|
15065
15173
|
isProtected?: pulumi.Input<boolean>;
|
|
15174
|
+
/**
|
|
15175
|
+
* Explicitly disable expiration. When set to true, the branch will not expire.
|
|
15176
|
+
* If set to false, the request is invalid; provide either ttl or expireTime instead
|
|
15177
|
+
*/
|
|
15178
|
+
noExpiry?: pulumi.Input<boolean>;
|
|
15066
15179
|
/**
|
|
15067
15180
|
* (string) - The name of the source branch from which this branch was created.
|
|
15068
15181
|
* Format: projects/{project_id}/branches/{branch_id}
|
|
@@ -15076,6 +15189,10 @@ export interface PostgresBranchSpec {
|
|
|
15076
15189
|
* (string) - The point in time on the source branch from which this branch was created
|
|
15077
15190
|
*/
|
|
15078
15191
|
sourceBranchTime?: pulumi.Input<string>;
|
|
15192
|
+
/**
|
|
15193
|
+
* Relative time-to-live duration. When set, the branch will expire at creationTime + ttl
|
|
15194
|
+
*/
|
|
15195
|
+
ttl?: pulumi.Input<string>;
|
|
15079
15196
|
}
|
|
15080
15197
|
export interface PostgresBranchStatus {
|
|
15081
15198
|
/**
|
|
@@ -15086,6 +15203,10 @@ export interface PostgresBranchStatus {
|
|
|
15086
15203
|
* (boolean) - Whether the branch is the project's default branch
|
|
15087
15204
|
*/
|
|
15088
15205
|
default?: pulumi.Input<boolean>;
|
|
15206
|
+
/**
|
|
15207
|
+
* (string) - Absolute expiration time for the branch. Empty if expiration is disabled
|
|
15208
|
+
*/
|
|
15209
|
+
expireTime?: pulumi.Input<string>;
|
|
15089
15210
|
/**
|
|
15090
15211
|
* (boolean) - Whether the branch is protected
|
|
15091
15212
|
*/
|
|
@@ -15133,9 +15254,14 @@ export interface PostgresEndpointSpec {
|
|
|
15133
15254
|
*/
|
|
15134
15255
|
disabled?: pulumi.Input<boolean>;
|
|
15135
15256
|
/**
|
|
15136
|
-
* (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `
|
|
15257
|
+
* (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `ENDPOINT_TYPE_READ_ONLY`, `ENDPOINT_TYPE_READ_WRITE`
|
|
15137
15258
|
*/
|
|
15138
15259
|
endpointType: pulumi.Input<string>;
|
|
15260
|
+
/**
|
|
15261
|
+
* When set to true, explicitly disables automatic suspension (never suspend).
|
|
15262
|
+
* Should be set to true when provided
|
|
15263
|
+
*/
|
|
15264
|
+
noSuspension?: pulumi.Input<boolean>;
|
|
15139
15265
|
/**
|
|
15140
15266
|
* (EndpointSettings)
|
|
15141
15267
|
*/
|
|
@@ -15174,17 +15300,13 @@ export interface PostgresEndpointStatus {
|
|
|
15174
15300
|
*/
|
|
15175
15301
|
disabled?: pulumi.Input<boolean>;
|
|
15176
15302
|
/**
|
|
15177
|
-
* (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `
|
|
15303
|
+
* (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `ENDPOINT_TYPE_READ_ONLY`, `ENDPOINT_TYPE_READ_WRITE`
|
|
15178
15304
|
*/
|
|
15179
15305
|
endpointType?: pulumi.Input<string>;
|
|
15180
15306
|
/**
|
|
15181
|
-
* (
|
|
15307
|
+
* (EndpointHosts) - Contains host information for connecting to the endpoint
|
|
15182
15308
|
*/
|
|
15183
|
-
|
|
15184
|
-
/**
|
|
15185
|
-
* (string) - A timestamp indicating when the compute endpoint was last active
|
|
15186
|
-
*/
|
|
15187
|
-
lastActiveTime?: pulumi.Input<string>;
|
|
15309
|
+
hosts?: pulumi.Input<inputs.PostgresEndpointStatusHosts>;
|
|
15188
15310
|
/**
|
|
15189
15311
|
* (string) - Possible values are: `ACTIVE`, `IDLE`, `INIT`
|
|
15190
15312
|
*/
|
|
@@ -15193,19 +15315,18 @@ export interface PostgresEndpointStatus {
|
|
|
15193
15315
|
* (EndpointSettings)
|
|
15194
15316
|
*/
|
|
15195
15317
|
settings?: pulumi.Input<inputs.PostgresEndpointStatusSettings>;
|
|
15196
|
-
/**
|
|
15197
|
-
* (string) - A timestamp indicating when the compute endpoint was last started
|
|
15198
|
-
*/
|
|
15199
|
-
startTime?: pulumi.Input<string>;
|
|
15200
|
-
/**
|
|
15201
|
-
* (string) - A timestamp indicating when the compute endpoint was last suspended
|
|
15202
|
-
*/
|
|
15203
|
-
suspendTime?: pulumi.Input<string>;
|
|
15204
15318
|
/**
|
|
15205
15319
|
* (string) - Duration of inactivity after which the compute endpoint is automatically suspended
|
|
15206
15320
|
*/
|
|
15207
15321
|
suspendTimeoutDuration?: pulumi.Input<string>;
|
|
15208
15322
|
}
|
|
15323
|
+
export interface PostgresEndpointStatusHosts {
|
|
15324
|
+
/**
|
|
15325
|
+
* (string) - The hostname to connect to this endpoint. For read-write endpoints, this is a read-write hostname which connects
|
|
15326
|
+
* to the primary compute. For read-only endpoints, this is a read-only hostname which allows read-only operations
|
|
15327
|
+
*/
|
|
15328
|
+
host?: pulumi.Input<string>;
|
|
15329
|
+
}
|
|
15209
15330
|
export interface PostgresEndpointStatusSettings {
|
|
15210
15331
|
/**
|
|
15211
15332
|
* A raw representation of Postgres settings
|
|
@@ -15231,20 +15352,21 @@ export interface PostgresProjectSpec {
|
|
|
15231
15352
|
* (integer) - The effective major Postgres version number
|
|
15232
15353
|
*/
|
|
15233
15354
|
pgVersion?: pulumi.Input<number>;
|
|
15234
|
-
/**
|
|
15235
|
-
* (ProjectSettings) - The effective project settings
|
|
15236
|
-
*/
|
|
15237
|
-
settings?: pulumi.Input<inputs.PostgresProjectSpecSettings>;
|
|
15238
15355
|
}
|
|
15239
15356
|
export interface PostgresProjectSpecDefaultEndpointSettings {
|
|
15240
15357
|
/**
|
|
15241
|
-
* The maximum number of Compute Units
|
|
15358
|
+
* The maximum number of Compute Units. Minimum value is 0.5
|
|
15242
15359
|
*/
|
|
15243
15360
|
autoscalingLimitMaxCu?: pulumi.Input<number>;
|
|
15244
15361
|
/**
|
|
15245
|
-
* The minimum number of Compute Units
|
|
15362
|
+
* The minimum number of Compute Units. Minimum value is 0.5
|
|
15246
15363
|
*/
|
|
15247
15364
|
autoscalingLimitMinCu?: pulumi.Input<number>;
|
|
15365
|
+
/**
|
|
15366
|
+
* When set to true, explicitly disables automatic suspension (never suspend).
|
|
15367
|
+
* Should be set to true when provided
|
|
15368
|
+
*/
|
|
15369
|
+
noSuspension?: pulumi.Input<boolean>;
|
|
15248
15370
|
/**
|
|
15249
15371
|
* A raw representation of Postgres settings
|
|
15250
15372
|
*/
|
|
@@ -15252,27 +15374,16 @@ export interface PostgresProjectSpecDefaultEndpointSettings {
|
|
|
15252
15374
|
[key: string]: pulumi.Input<string>;
|
|
15253
15375
|
}>;
|
|
15254
15376
|
/**
|
|
15255
|
-
* Duration of inactivity after which the compute endpoint is automatically suspended
|
|
15377
|
+
* Duration of inactivity after which the compute endpoint is automatically suspended.
|
|
15378
|
+
* If specified should be between 60s and 604800s (1 minute to 1 week)
|
|
15256
15379
|
*/
|
|
15257
15380
|
suspendTimeoutDuration?: pulumi.Input<string>;
|
|
15258
15381
|
}
|
|
15259
|
-
export interface PostgresProjectSpecSettings {
|
|
15260
|
-
/**
|
|
15261
|
-
* Sets wal_level=logical for all compute endpoints in this project.
|
|
15262
|
-
* All active endpoints will be suspended.
|
|
15263
|
-
* Once enabled, logical replication cannot be disabled
|
|
15264
|
-
*/
|
|
15265
|
-
enableLogicalReplication?: pulumi.Input<boolean>;
|
|
15266
|
-
}
|
|
15267
15382
|
export interface PostgresProjectStatus {
|
|
15268
15383
|
/**
|
|
15269
15384
|
* (integer) - The logical size limit for a branch
|
|
15270
15385
|
*/
|
|
15271
15386
|
branchLogicalSizeLimitBytes?: pulumi.Input<number>;
|
|
15272
|
-
/**
|
|
15273
|
-
* (string) - The most recent time when any endpoint of this project was active
|
|
15274
|
-
*/
|
|
15275
|
-
computeLastActiveTime?: pulumi.Input<string>;
|
|
15276
15387
|
/**
|
|
15277
15388
|
* (ProjectDefaultEndpointSettings) - The effective default endpoint settings
|
|
15278
15389
|
*/
|
|
@@ -15293,10 +15404,6 @@ export interface PostgresProjectStatus {
|
|
|
15293
15404
|
* (integer) - The effective major Postgres version number
|
|
15294
15405
|
*/
|
|
15295
15406
|
pgVersion?: pulumi.Input<number>;
|
|
15296
|
-
/**
|
|
15297
|
-
* (ProjectSettings) - The effective project settings
|
|
15298
|
-
*/
|
|
15299
|
-
settings?: pulumi.Input<inputs.PostgresProjectStatusSettings>;
|
|
15300
15407
|
/**
|
|
15301
15408
|
* (integer) - The current space occupied by the project in storage
|
|
15302
15409
|
*/
|
|
@@ -15304,13 +15411,18 @@ export interface PostgresProjectStatus {
|
|
|
15304
15411
|
}
|
|
15305
15412
|
export interface PostgresProjectStatusDefaultEndpointSettings {
|
|
15306
15413
|
/**
|
|
15307
|
-
* The maximum number of Compute Units
|
|
15414
|
+
* The maximum number of Compute Units. Minimum value is 0.5
|
|
15308
15415
|
*/
|
|
15309
15416
|
autoscalingLimitMaxCu?: pulumi.Input<number>;
|
|
15310
15417
|
/**
|
|
15311
|
-
* The minimum number of Compute Units
|
|
15418
|
+
* The minimum number of Compute Units. Minimum value is 0.5
|
|
15312
15419
|
*/
|
|
15313
15420
|
autoscalingLimitMinCu?: pulumi.Input<number>;
|
|
15421
|
+
/**
|
|
15422
|
+
* When set to true, explicitly disables automatic suspension (never suspend).
|
|
15423
|
+
* Should be set to true when provided
|
|
15424
|
+
*/
|
|
15425
|
+
noSuspension?: pulumi.Input<boolean>;
|
|
15314
15426
|
/**
|
|
15315
15427
|
* A raw representation of Postgres settings
|
|
15316
15428
|
*/
|
|
@@ -15318,18 +15430,11 @@ export interface PostgresProjectStatusDefaultEndpointSettings {
|
|
|
15318
15430
|
[key: string]: pulumi.Input<string>;
|
|
15319
15431
|
}>;
|
|
15320
15432
|
/**
|
|
15321
|
-
* Duration of inactivity after which the compute endpoint is automatically suspended
|
|
15433
|
+
* Duration of inactivity after which the compute endpoint is automatically suspended.
|
|
15434
|
+
* If specified should be between 60s and 604800s (1 minute to 1 week)
|
|
15322
15435
|
*/
|
|
15323
15436
|
suspendTimeoutDuration?: pulumi.Input<string>;
|
|
15324
15437
|
}
|
|
15325
|
-
export interface PostgresProjectStatusSettings {
|
|
15326
|
-
/**
|
|
15327
|
-
* Sets wal_level=logical for all compute endpoints in this project.
|
|
15328
|
-
* All active endpoints will be suspended.
|
|
15329
|
-
* Once enabled, logical replication cannot be disabled
|
|
15330
|
-
*/
|
|
15331
|
-
enableLogicalReplication?: pulumi.Input<boolean>;
|
|
15332
|
-
}
|
|
15333
15438
|
export interface QualityMonitorCustomMetric {
|
|
15334
15439
|
/**
|
|
15335
15440
|
* [create metric definition](https://docs.databricks.com/en/lakehouse-monitoring/custom-metrics.html#create-definition)
|