@pulumi/databricks 1.99.0-alpha.1783234126 → 1.99.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. package/budget.d.ts +35 -0
  2. package/budget.d.ts.map +1 -1
  3. package/budget.js +35 -0
  4. package/budget.js.map +1 -1
  5. package/cluster.d.ts +12 -0
  6. package/cluster.d.ts.map +1 -1
  7. package/cluster.js +2 -0
  8. package/cluster.js.map +1 -1
  9. package/dataClassificationCatalogConfig.d.ts +21 -0
  10. package/dataClassificationCatalogConfig.d.ts.map +1 -1
  11. package/dataClassificationCatalogConfig.js +2 -0
  12. package/dataClassificationCatalogConfig.js.map +1 -1
  13. package/getDataClassificationCatalogConfig.d.ts +7 -0
  14. package/getDataClassificationCatalogConfig.d.ts.map +1 -1
  15. package/getDataClassificationCatalogConfig.js.map +1 -1
  16. package/getGroup.d.ts +23 -5
  17. package/getGroup.d.ts.map +1 -1
  18. package/getGroup.js +4 -2
  19. package/getGroup.js.map +1 -1
  20. package/getSecretUc.d.ts +42 -11
  21. package/getSecretUc.d.ts.map +1 -1
  22. package/getSecretUc.js +42 -2
  23. package/getSecretUc.js.map +1 -1
  24. package/getSecretUcs.d.ts +50 -19
  25. package/getSecretUcs.d.ts.map +1 -1
  26. package/getSecretUcs.js +44 -4
  27. package/getSecretUcs.js.map +1 -1
  28. package/mwsNccPrivateEndpointRule.d.ts +25 -45
  29. package/mwsNccPrivateEndpointRule.d.ts.map +1 -1
  30. package/mwsNccPrivateEndpointRule.js +14 -10
  31. package/mwsNccPrivateEndpointRule.js.map +1 -1
  32. package/mwsWorkspaces.d.ts +3 -3
  33. package/package.json +2 -2
  34. package/postgresDatabase.d.ts +65 -0
  35. package/postgresDatabase.d.ts.map +1 -1
  36. package/postgresDatabase.js +65 -0
  37. package/postgresDatabase.js.map +1 -1
  38. package/postgresRole.d.ts +82 -0
  39. package/postgresRole.d.ts.map +1 -1
  40. package/postgresRole.js +82 -0
  41. package/postgresRole.js.map +1 -1
  42. package/secretUc.d.ts +3 -19
  43. package/secretUc.d.ts.map +1 -1
  44. package/secretUc.js +3 -5
  45. package/secretUc.js.map +1 -1
  46. package/types/input.d.ts +318 -42
  47. package/types/input.d.ts.map +1 -1
  48. package/types/output.d.ts +840 -199
  49. package/types/output.d.ts.map +1 -1
package/types/input.d.ts CHANGED
@@ -156,8 +156,8 @@ export interface AccountNetworkPolicyEgressNetworkAccessPolicyEnforcement {
156
156
  export interface AccountNetworkPolicyIngress {
157
157
  crossWorkspaceAccess?: pulumi.Input<inputs.AccountNetworkPolicyIngressCrossWorkspaceAccess | undefined>;
158
158
  /**
159
- * The network policy restrictions for private access to the workspace.
160
- * Configures how registered private endpoints are allowed or denied access
159
+ * The network policy restrictions for private access.
160
+ * Configures how requests arriving over private connectivity are governed
161
161
  */
162
162
  privateAccess?: pulumi.Input<inputs.AccountNetworkPolicyIngressPrivateAccess | undefined>;
163
163
  /**
@@ -195,12 +195,19 @@ export interface AccountNetworkPolicyIngressCrossWorkspaceAccessAllowRuleAuthent
195
195
  principalType?: pulumi.Input<string | undefined>;
196
196
  }
197
197
  export interface AccountNetworkPolicyIngressCrossWorkspaceAccessAllowRuleDestination {
198
+ /**
199
+ * Matches requests to account-level APIs.
200
+ * Can only be used in the account-level network policy
201
+ */
198
202
  accountApi?: pulumi.Input<inputs.AccountNetworkPolicyIngressCrossWorkspaceAccessAllowRuleDestinationAccountApi | undefined>;
199
203
  /**
200
- * Account DatabricksOne destination is not supported.
201
- * DO NOT change the stage of this destination past PRIVATE_PREVIEW
204
+ * Account DatabricksOne destination is not supported
202
205
  */
203
206
  accountDatabricksOne?: pulumi.Input<inputs.AccountNetworkPolicyIngressCrossWorkspaceAccessAllowRuleDestinationAccountDatabricksOne | undefined>;
207
+ /**
208
+ * Matches requests to the account console UI.
209
+ * Can only be used in the account-level network policy
210
+ */
204
211
  accountUi?: pulumi.Input<inputs.AccountNetworkPolicyIngressCrossWorkspaceAccessAllowRuleDestinationAccountUi | undefined>;
205
212
  allDestinations?: pulumi.Input<boolean | undefined>;
206
213
  appsRuntime?: pulumi.Input<inputs.AccountNetworkPolicyIngressCrossWorkspaceAccessAllowRuleDestinationAppsRuntime | undefined>;
@@ -268,12 +275,19 @@ export interface AccountNetworkPolicyIngressCrossWorkspaceAccessDenyRuleAuthenti
268
275
  principalType?: pulumi.Input<string | undefined>;
269
276
  }
270
277
  export interface AccountNetworkPolicyIngressCrossWorkspaceAccessDenyRuleDestination {
278
+ /**
279
+ * Matches requests to account-level APIs.
280
+ * Can only be used in the account-level network policy
281
+ */
271
282
  accountApi?: pulumi.Input<inputs.AccountNetworkPolicyIngressCrossWorkspaceAccessDenyRuleDestinationAccountApi | undefined>;
272
283
  /**
273
- * Account DatabricksOne destination is not supported.
274
- * DO NOT change the stage of this destination past PRIVATE_PREVIEW
284
+ * Account DatabricksOne destination is not supported
275
285
  */
276
286
  accountDatabricksOne?: pulumi.Input<inputs.AccountNetworkPolicyIngressCrossWorkspaceAccessDenyRuleDestinationAccountDatabricksOne | undefined>;
287
+ /**
288
+ * Matches requests to the account console UI.
289
+ * Can only be used in the account-level network policy
290
+ */
277
291
  accountUi?: pulumi.Input<inputs.AccountNetworkPolicyIngressCrossWorkspaceAccessDenyRuleDestinationAccountUi | undefined>;
278
292
  allDestinations?: pulumi.Input<boolean | undefined>;
279
293
  appsRuntime?: pulumi.Input<inputs.AccountNetworkPolicyIngressCrossWorkspaceAccessDenyRuleDestinationAppsRuntime | undefined>;
@@ -320,8 +334,8 @@ export interface AccountNetworkPolicyIngressCrossWorkspaceAccessDenyRuleOriginSe
320
334
  export interface AccountNetworkPolicyIngressDryRun {
321
335
  crossWorkspaceAccess?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunCrossWorkspaceAccess | undefined>;
322
336
  /**
323
- * The network policy restrictions for private access to the workspace.
324
- * Configures how registered private endpoints are allowed or denied access
337
+ * The network policy restrictions for private access.
338
+ * Configures how requests arriving over private connectivity are governed
325
339
  */
326
340
  privateAccess?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunPrivateAccess | undefined>;
327
341
  /**
@@ -359,12 +373,19 @@ export interface AccountNetworkPolicyIngressDryRunCrossWorkspaceAccessAllowRuleA
359
373
  principalType?: pulumi.Input<string | undefined>;
360
374
  }
361
375
  export interface AccountNetworkPolicyIngressDryRunCrossWorkspaceAccessAllowRuleDestination {
376
+ /**
377
+ * Matches requests to account-level APIs.
378
+ * Can only be used in the account-level network policy
379
+ */
362
380
  accountApi?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountApi | undefined>;
363
381
  /**
364
- * Account DatabricksOne destination is not supported.
365
- * DO NOT change the stage of this destination past PRIVATE_PREVIEW
382
+ * Account DatabricksOne destination is not supported
366
383
  */
367
384
  accountDatabricksOne?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountDatabricksOne | undefined>;
385
+ /**
386
+ * Matches requests to the account console UI.
387
+ * Can only be used in the account-level network policy
388
+ */
368
389
  accountUi?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAccountUi | undefined>;
369
390
  allDestinations?: pulumi.Input<boolean | undefined>;
370
391
  appsRuntime?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunCrossWorkspaceAccessAllowRuleDestinationAppsRuntime | undefined>;
@@ -432,12 +453,19 @@ export interface AccountNetworkPolicyIngressDryRunCrossWorkspaceAccessDenyRuleAu
432
453
  principalType?: pulumi.Input<string | undefined>;
433
454
  }
434
455
  export interface AccountNetworkPolicyIngressDryRunCrossWorkspaceAccessDenyRuleDestination {
456
+ /**
457
+ * Matches requests to account-level APIs.
458
+ * Can only be used in the account-level network policy
459
+ */
435
460
  accountApi?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountApi | undefined>;
436
461
  /**
437
- * Account DatabricksOne destination is not supported.
438
- * DO NOT change the stage of this destination past PRIVATE_PREVIEW
462
+ * Account DatabricksOne destination is not supported
439
463
  */
440
464
  accountDatabricksOne?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountDatabricksOne | undefined>;
465
+ /**
466
+ * Matches requests to the account console UI.
467
+ * Can only be used in the account-level network policy
468
+ */
441
469
  accountUi?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAccountUi | undefined>;
442
470
  allDestinations?: pulumi.Input<boolean | undefined>;
443
471
  appsRuntime?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunCrossWorkspaceAccessDenyRuleDestinationAppsRuntime | undefined>;
@@ -510,12 +538,19 @@ export interface AccountNetworkPolicyIngressDryRunPrivateAccessAllowRuleAuthenti
510
538
  principalType?: pulumi.Input<string | undefined>;
511
539
  }
512
540
  export interface AccountNetworkPolicyIngressDryRunPrivateAccessAllowRuleDestination {
541
+ /**
542
+ * Matches requests to account-level APIs.
543
+ * Can only be used in the account-level network policy
544
+ */
513
545
  accountApi?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunPrivateAccessAllowRuleDestinationAccountApi | undefined>;
514
546
  /**
515
- * Account DatabricksOne destination is not supported.
516
- * DO NOT change the stage of this destination past PRIVATE_PREVIEW
547
+ * Account DatabricksOne destination is not supported
517
548
  */
518
549
  accountDatabricksOne?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunPrivateAccessAllowRuleDestinationAccountDatabricksOne | undefined>;
550
+ /**
551
+ * Matches requests to the account console UI.
552
+ * Can only be used in the account-level network policy
553
+ */
519
554
  accountUi?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunPrivateAccessAllowRuleDestinationAccountUi | undefined>;
520
555
  allDestinations?: pulumi.Input<boolean | undefined>;
521
556
  appsRuntime?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunPrivateAccessAllowRuleDestinationAppsRuntime | undefined>;
@@ -547,12 +582,33 @@ export interface AccountNetworkPolicyIngressDryRunPrivateAccessAllowRuleDestinat
547
582
  allDestinations?: pulumi.Input<boolean | undefined>;
548
583
  }
549
584
  export interface AccountNetworkPolicyIngressDryRunPrivateAccessAllowRuleOrigin {
585
+ /**
586
+ * Matches requests arriving over any private connectivity, including registered
587
+ * endpoints and the workspace's Azure Private Link (ui-api) endpoints.
588
+ * Can only be used in deny rules of workspace-level network policies.
589
+ * Must be set to true when specified
590
+ */
550
591
  allPrivateAccess?: pulumi.Input<boolean | undefined>;
592
+ /**
593
+ * Matches requests arriving through any endpoint registered to the account.
594
+ * Must be set to true when specified
595
+ */
551
596
  allRegisteredEndpoints?: pulumi.Input<boolean | undefined>;
597
+ /**
598
+ * Matches requests arriving through the workspace's Azure Private Link (ui-api)
599
+ * endpoints. Can only be used in deny rules of workspace-level network policies.
600
+ * Must be set to true when specified
601
+ */
552
602
  azureWorkspacePrivateLink?: pulumi.Input<boolean | undefined>;
603
+ /**
604
+ * Matches requests arriving through any of the specified registered endpoints
605
+ */
553
606
  endpoints?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunPrivateAccessAllowRuleOriginEndpoints | undefined>;
554
607
  }
555
608
  export interface AccountNetworkPolicyIngressDryRunPrivateAccessAllowRuleOriginEndpoints {
609
+ /**
610
+ * The IDs of the registered endpoints. Must contain at least one endpoint ID
611
+ */
556
612
  endpointIds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
557
613
  }
558
614
  export interface AccountNetworkPolicyIngressDryRunPrivateAccessDenyRule {
@@ -579,12 +635,19 @@ export interface AccountNetworkPolicyIngressDryRunPrivateAccessDenyRuleAuthentic
579
635
  principalType?: pulumi.Input<string | undefined>;
580
636
  }
581
637
  export interface AccountNetworkPolicyIngressDryRunPrivateAccessDenyRuleDestination {
638
+ /**
639
+ * Matches requests to account-level APIs.
640
+ * Can only be used in the account-level network policy
641
+ */
582
642
  accountApi?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunPrivateAccessDenyRuleDestinationAccountApi | undefined>;
583
643
  /**
584
- * Account DatabricksOne destination is not supported.
585
- * DO NOT change the stage of this destination past PRIVATE_PREVIEW
644
+ * Account DatabricksOne destination is not supported
586
645
  */
587
646
  accountDatabricksOne?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunPrivateAccessDenyRuleDestinationAccountDatabricksOne | undefined>;
647
+ /**
648
+ * Matches requests to the account console UI.
649
+ * Can only be used in the account-level network policy
650
+ */
588
651
  accountUi?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunPrivateAccessDenyRuleDestinationAccountUi | undefined>;
589
652
  allDestinations?: pulumi.Input<boolean | undefined>;
590
653
  appsRuntime?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunPrivateAccessDenyRuleDestinationAppsRuntime | undefined>;
@@ -616,12 +679,33 @@ export interface AccountNetworkPolicyIngressDryRunPrivateAccessDenyRuleDestinati
616
679
  allDestinations?: pulumi.Input<boolean | undefined>;
617
680
  }
618
681
  export interface AccountNetworkPolicyIngressDryRunPrivateAccessDenyRuleOrigin {
682
+ /**
683
+ * Matches requests arriving over any private connectivity, including registered
684
+ * endpoints and the workspace's Azure Private Link (ui-api) endpoints.
685
+ * Can only be used in deny rules of workspace-level network policies.
686
+ * Must be set to true when specified
687
+ */
619
688
  allPrivateAccess?: pulumi.Input<boolean | undefined>;
689
+ /**
690
+ * Matches requests arriving through any endpoint registered to the account.
691
+ * Must be set to true when specified
692
+ */
620
693
  allRegisteredEndpoints?: pulumi.Input<boolean | undefined>;
694
+ /**
695
+ * Matches requests arriving through the workspace's Azure Private Link (ui-api)
696
+ * endpoints. Can only be used in deny rules of workspace-level network policies.
697
+ * Must be set to true when specified
698
+ */
621
699
  azureWorkspacePrivateLink?: pulumi.Input<boolean | undefined>;
700
+ /**
701
+ * Matches requests arriving through any of the specified registered endpoints
702
+ */
622
703
  endpoints?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunPrivateAccessDenyRuleOriginEndpoints | undefined>;
623
704
  }
624
705
  export interface AccountNetworkPolicyIngressDryRunPrivateAccessDenyRuleOriginEndpoints {
706
+ /**
707
+ * The IDs of the registered endpoints. Must contain at least one endpoint ID
708
+ */
625
709
  endpointIds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
626
710
  }
627
711
  export interface AccountNetworkPolicyIngressDryRunPublicAccess {
@@ -653,12 +737,19 @@ export interface AccountNetworkPolicyIngressDryRunPublicAccessAllowRuleAuthentic
653
737
  principalType?: pulumi.Input<string | undefined>;
654
738
  }
655
739
  export interface AccountNetworkPolicyIngressDryRunPublicAccessAllowRuleDestination {
740
+ /**
741
+ * Matches requests to account-level APIs.
742
+ * Can only be used in the account-level network policy
743
+ */
656
744
  accountApi?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunPublicAccessAllowRuleDestinationAccountApi | undefined>;
657
745
  /**
658
- * Account DatabricksOne destination is not supported.
659
- * DO NOT change the stage of this destination past PRIVATE_PREVIEW
746
+ * Account DatabricksOne destination is not supported
660
747
  */
661
748
  accountDatabricksOne?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunPublicAccessAllowRuleDestinationAccountDatabricksOne | undefined>;
749
+ /**
750
+ * Matches requests to the account console UI.
751
+ * Can only be used in the account-level network policy
752
+ */
662
753
  accountUi?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunPublicAccessAllowRuleDestinationAccountUi | undefined>;
663
754
  allDestinations?: pulumi.Input<boolean | undefined>;
664
755
  appsRuntime?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunPublicAccessAllowRuleDestinationAppsRuntime | undefined>;
@@ -739,12 +830,19 @@ export interface AccountNetworkPolicyIngressDryRunPublicAccessDenyRuleAuthentica
739
830
  principalType?: pulumi.Input<string | undefined>;
740
831
  }
741
832
  export interface AccountNetworkPolicyIngressDryRunPublicAccessDenyRuleDestination {
833
+ /**
834
+ * Matches requests to account-level APIs.
835
+ * Can only be used in the account-level network policy
836
+ */
742
837
  accountApi?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunPublicAccessDenyRuleDestinationAccountApi | undefined>;
743
838
  /**
744
- * Account DatabricksOne destination is not supported.
745
- * DO NOT change the stage of this destination past PRIVATE_PREVIEW
839
+ * Account DatabricksOne destination is not supported
746
840
  */
747
841
  accountDatabricksOne?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunPublicAccessDenyRuleDestinationAccountDatabricksOne | undefined>;
842
+ /**
843
+ * Matches requests to the account console UI.
844
+ * Can only be used in the account-level network policy
845
+ */
748
846
  accountUi?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunPublicAccessDenyRuleDestinationAccountUi | undefined>;
749
847
  allDestinations?: pulumi.Input<boolean | undefined>;
750
848
  appsRuntime?: pulumi.Input<inputs.AccountNetworkPolicyIngressDryRunPublicAccessDenyRuleDestinationAppsRuntime | undefined>;
@@ -830,12 +928,19 @@ export interface AccountNetworkPolicyIngressPrivateAccessAllowRuleAuthentication
830
928
  principalType?: pulumi.Input<string | undefined>;
831
929
  }
832
930
  export interface AccountNetworkPolicyIngressPrivateAccessAllowRuleDestination {
931
+ /**
932
+ * Matches requests to account-level APIs.
933
+ * Can only be used in the account-level network policy
934
+ */
833
935
  accountApi?: pulumi.Input<inputs.AccountNetworkPolicyIngressPrivateAccessAllowRuleDestinationAccountApi | undefined>;
834
936
  /**
835
- * Account DatabricksOne destination is not supported.
836
- * DO NOT change the stage of this destination past PRIVATE_PREVIEW
937
+ * Account DatabricksOne destination is not supported
837
938
  */
838
939
  accountDatabricksOne?: pulumi.Input<inputs.AccountNetworkPolicyIngressPrivateAccessAllowRuleDestinationAccountDatabricksOne | undefined>;
940
+ /**
941
+ * Matches requests to the account console UI.
942
+ * Can only be used in the account-level network policy
943
+ */
839
944
  accountUi?: pulumi.Input<inputs.AccountNetworkPolicyIngressPrivateAccessAllowRuleDestinationAccountUi | undefined>;
840
945
  allDestinations?: pulumi.Input<boolean | undefined>;
841
946
  appsRuntime?: pulumi.Input<inputs.AccountNetworkPolicyIngressPrivateAccessAllowRuleDestinationAppsRuntime | undefined>;
@@ -867,12 +972,33 @@ export interface AccountNetworkPolicyIngressPrivateAccessAllowRuleDestinationWor
867
972
  allDestinations?: pulumi.Input<boolean | undefined>;
868
973
  }
869
974
  export interface AccountNetworkPolicyIngressPrivateAccessAllowRuleOrigin {
975
+ /**
976
+ * Matches requests arriving over any private connectivity, including registered
977
+ * endpoints and the workspace's Azure Private Link (ui-api) endpoints.
978
+ * Can only be used in deny rules of workspace-level network policies.
979
+ * Must be set to true when specified
980
+ */
870
981
  allPrivateAccess?: pulumi.Input<boolean | undefined>;
982
+ /**
983
+ * Matches requests arriving through any endpoint registered to the account.
984
+ * Must be set to true when specified
985
+ */
871
986
  allRegisteredEndpoints?: pulumi.Input<boolean | undefined>;
987
+ /**
988
+ * Matches requests arriving through the workspace's Azure Private Link (ui-api)
989
+ * endpoints. Can only be used in deny rules of workspace-level network policies.
990
+ * Must be set to true when specified
991
+ */
872
992
  azureWorkspacePrivateLink?: pulumi.Input<boolean | undefined>;
993
+ /**
994
+ * Matches requests arriving through any of the specified registered endpoints
995
+ */
873
996
  endpoints?: pulumi.Input<inputs.AccountNetworkPolicyIngressPrivateAccessAllowRuleOriginEndpoints | undefined>;
874
997
  }
875
998
  export interface AccountNetworkPolicyIngressPrivateAccessAllowRuleOriginEndpoints {
999
+ /**
1000
+ * The IDs of the registered endpoints. Must contain at least one endpoint ID
1001
+ */
876
1002
  endpointIds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
877
1003
  }
878
1004
  export interface AccountNetworkPolicyIngressPrivateAccessDenyRule {
@@ -899,12 +1025,19 @@ export interface AccountNetworkPolicyIngressPrivateAccessDenyRuleAuthenticationI
899
1025
  principalType?: pulumi.Input<string | undefined>;
900
1026
  }
901
1027
  export interface AccountNetworkPolicyIngressPrivateAccessDenyRuleDestination {
1028
+ /**
1029
+ * Matches requests to account-level APIs.
1030
+ * Can only be used in the account-level network policy
1031
+ */
902
1032
  accountApi?: pulumi.Input<inputs.AccountNetworkPolicyIngressPrivateAccessDenyRuleDestinationAccountApi | undefined>;
903
1033
  /**
904
- * Account DatabricksOne destination is not supported.
905
- * DO NOT change the stage of this destination past PRIVATE_PREVIEW
1034
+ * Account DatabricksOne destination is not supported
906
1035
  */
907
1036
  accountDatabricksOne?: pulumi.Input<inputs.AccountNetworkPolicyIngressPrivateAccessDenyRuleDestinationAccountDatabricksOne | undefined>;
1037
+ /**
1038
+ * Matches requests to the account console UI.
1039
+ * Can only be used in the account-level network policy
1040
+ */
908
1041
  accountUi?: pulumi.Input<inputs.AccountNetworkPolicyIngressPrivateAccessDenyRuleDestinationAccountUi | undefined>;
909
1042
  allDestinations?: pulumi.Input<boolean | undefined>;
910
1043
  appsRuntime?: pulumi.Input<inputs.AccountNetworkPolicyIngressPrivateAccessDenyRuleDestinationAppsRuntime | undefined>;
@@ -936,12 +1069,33 @@ export interface AccountNetworkPolicyIngressPrivateAccessDenyRuleDestinationWork
936
1069
  allDestinations?: pulumi.Input<boolean | undefined>;
937
1070
  }
938
1071
  export interface AccountNetworkPolicyIngressPrivateAccessDenyRuleOrigin {
1072
+ /**
1073
+ * Matches requests arriving over any private connectivity, including registered
1074
+ * endpoints and the workspace's Azure Private Link (ui-api) endpoints.
1075
+ * Can only be used in deny rules of workspace-level network policies.
1076
+ * Must be set to true when specified
1077
+ */
939
1078
  allPrivateAccess?: pulumi.Input<boolean | undefined>;
1079
+ /**
1080
+ * Matches requests arriving through any endpoint registered to the account.
1081
+ * Must be set to true when specified
1082
+ */
940
1083
  allRegisteredEndpoints?: pulumi.Input<boolean | undefined>;
1084
+ /**
1085
+ * Matches requests arriving through the workspace's Azure Private Link (ui-api)
1086
+ * endpoints. Can only be used in deny rules of workspace-level network policies.
1087
+ * Must be set to true when specified
1088
+ */
941
1089
  azureWorkspacePrivateLink?: pulumi.Input<boolean | undefined>;
1090
+ /**
1091
+ * Matches requests arriving through any of the specified registered endpoints
1092
+ */
942
1093
  endpoints?: pulumi.Input<inputs.AccountNetworkPolicyIngressPrivateAccessDenyRuleOriginEndpoints | undefined>;
943
1094
  }
944
1095
  export interface AccountNetworkPolicyIngressPrivateAccessDenyRuleOriginEndpoints {
1096
+ /**
1097
+ * The IDs of the registered endpoints. Must contain at least one endpoint ID
1098
+ */
945
1099
  endpointIds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
946
1100
  }
947
1101
  export interface AccountNetworkPolicyIngressPublicAccess {
@@ -973,12 +1127,19 @@ export interface AccountNetworkPolicyIngressPublicAccessAllowRuleAuthenticationI
973
1127
  principalType?: pulumi.Input<string | undefined>;
974
1128
  }
975
1129
  export interface AccountNetworkPolicyIngressPublicAccessAllowRuleDestination {
1130
+ /**
1131
+ * Matches requests to account-level APIs.
1132
+ * Can only be used in the account-level network policy
1133
+ */
976
1134
  accountApi?: pulumi.Input<inputs.AccountNetworkPolicyIngressPublicAccessAllowRuleDestinationAccountApi | undefined>;
977
1135
  /**
978
- * Account DatabricksOne destination is not supported.
979
- * DO NOT change the stage of this destination past PRIVATE_PREVIEW
1136
+ * Account DatabricksOne destination is not supported
980
1137
  */
981
1138
  accountDatabricksOne?: pulumi.Input<inputs.AccountNetworkPolicyIngressPublicAccessAllowRuleDestinationAccountDatabricksOne | undefined>;
1139
+ /**
1140
+ * Matches requests to the account console UI.
1141
+ * Can only be used in the account-level network policy
1142
+ */
982
1143
  accountUi?: pulumi.Input<inputs.AccountNetworkPolicyIngressPublicAccessAllowRuleDestinationAccountUi | undefined>;
983
1144
  allDestinations?: pulumi.Input<boolean | undefined>;
984
1145
  appsRuntime?: pulumi.Input<inputs.AccountNetworkPolicyIngressPublicAccessAllowRuleDestinationAppsRuntime | undefined>;
@@ -1059,12 +1220,19 @@ export interface AccountNetworkPolicyIngressPublicAccessDenyRuleAuthenticationId
1059
1220
  principalType?: pulumi.Input<string | undefined>;
1060
1221
  }
1061
1222
  export interface AccountNetworkPolicyIngressPublicAccessDenyRuleDestination {
1223
+ /**
1224
+ * Matches requests to account-level APIs.
1225
+ * Can only be used in the account-level network policy
1226
+ */
1062
1227
  accountApi?: pulumi.Input<inputs.AccountNetworkPolicyIngressPublicAccessDenyRuleDestinationAccountApi | undefined>;
1063
1228
  /**
1064
- * Account DatabricksOne destination is not supported.
1065
- * DO NOT change the stage of this destination past PRIVATE_PREVIEW
1229
+ * Account DatabricksOne destination is not supported
1066
1230
  */
1067
1231
  accountDatabricksOne?: pulumi.Input<inputs.AccountNetworkPolicyIngressPublicAccessDenyRuleDestinationAccountDatabricksOne | undefined>;
1232
+ /**
1233
+ * Matches requests to the account console UI.
1234
+ * Can only be used in the account-level network policy
1235
+ */
1068
1236
  accountUi?: pulumi.Input<inputs.AccountNetworkPolicyIngressPublicAccessDenyRuleDestinationAccountUi | undefined>;
1069
1237
  allDestinations?: pulumi.Input<boolean | undefined>;
1070
1238
  appsRuntime?: pulumi.Input<inputs.AccountNetworkPolicyIngressPublicAccessDenyRuleDestinationAppsRuntime | undefined>;
@@ -3022,6 +3190,12 @@ export interface DataClassificationCatalogConfigAutoTagConfig {
3022
3190
  */
3023
3191
  classificationTag: pulumi.Input<string>;
3024
3192
  }
3193
+ export interface DataClassificationCatalogConfigExcludedSchemas {
3194
+ /**
3195
+ * Schema names, each relative to the parent catalog. Must not be empty
3196
+ */
3197
+ names: pulumi.Input<pulumi.Input<string>[]>;
3198
+ }
3025
3199
  export interface DataClassificationCatalogConfigIncludedSchemas {
3026
3200
  /**
3027
3201
  * Schema names, each relative to the parent catalog. Must not be empty
@@ -3567,7 +3741,7 @@ export interface DatabaseSyncedDatabaseTableSpecTypeOverride {
3567
3741
  pgType: pulumi.Input<string>;
3568
3742
  /**
3569
3743
  * Size parameter for the target type. Required when pgType is PG_SPECIFIC_TYPE_VECTOR
3570
- * (specifies the vector dimension, e.g., 1024)
3744
+ * or PG_SPECIFIC_TYPE_HALFVEC (specifies the vector dimension, e.g., 1024)
3571
3745
  */
3572
3746
  size?: pulumi.Input<number | undefined>;
3573
3747
  }
@@ -3979,7 +4153,11 @@ export interface FeatureEngineeringFeatureFunctionAggregationFunction {
3979
4153
  avg?: pulumi.Input<inputs.FeatureEngineeringFeatureFunctionAggregationFunctionAvg | undefined>;
3980
4154
  countFunction?: pulumi.Input<inputs.FeatureEngineeringFeatureFunctionAggregationFunctionCountFunction | undefined>;
3981
4155
  first?: pulumi.Input<inputs.FeatureEngineeringFeatureFunctionAggregationFunctionFirst | undefined>;
4156
+ firstDistinct?: pulumi.Input<inputs.FeatureEngineeringFeatureFunctionAggregationFunctionFirstDistinct | undefined>;
4157
+ firstN?: pulumi.Input<inputs.FeatureEngineeringFeatureFunctionAggregationFunctionFirstN | undefined>;
3982
4158
  last?: pulumi.Input<inputs.FeatureEngineeringFeatureFunctionAggregationFunctionLast | undefined>;
4159
+ lastDistinct?: pulumi.Input<inputs.FeatureEngineeringFeatureFunctionAggregationFunctionLastDistinct | undefined>;
4160
+ lastN?: pulumi.Input<inputs.FeatureEngineeringFeatureFunctionAggregationFunctionLastN | undefined>;
3983
4161
  max?: pulumi.Input<inputs.FeatureEngineeringFeatureFunctionAggregationFunctionMax | undefined>;
3984
4162
  min?: pulumi.Input<inputs.FeatureEngineeringFeatureFunctionAggregationFunctionMin | undefined>;
3985
4163
  stddevPop?: pulumi.Input<inputs.FeatureEngineeringFeatureFunctionAggregationFunctionStddevPop | undefined>;
@@ -4020,9 +4198,25 @@ export interface FeatureEngineeringFeatureFunctionAggregationFunctionCountFuncti
4020
4198
  export interface FeatureEngineeringFeatureFunctionAggregationFunctionFirst {
4021
4199
  input: pulumi.Input<string>;
4022
4200
  }
4201
+ export interface FeatureEngineeringFeatureFunctionAggregationFunctionFirstDistinct {
4202
+ input: pulumi.Input<string>;
4203
+ n: pulumi.Input<number>;
4204
+ }
4205
+ export interface FeatureEngineeringFeatureFunctionAggregationFunctionFirstN {
4206
+ input: pulumi.Input<string>;
4207
+ n: pulumi.Input<number>;
4208
+ }
4023
4209
  export interface FeatureEngineeringFeatureFunctionAggregationFunctionLast {
4024
4210
  input: pulumi.Input<string>;
4025
4211
  }
4212
+ export interface FeatureEngineeringFeatureFunctionAggregationFunctionLastDistinct {
4213
+ input: pulumi.Input<string>;
4214
+ n: pulumi.Input<number>;
4215
+ }
4216
+ export interface FeatureEngineeringFeatureFunctionAggregationFunctionLastN {
4217
+ input: pulumi.Input<string>;
4218
+ n: pulumi.Input<number>;
4219
+ }
4026
4220
  export interface FeatureEngineeringFeatureFunctionAggregationFunctionMax {
4027
4221
  input: pulumi.Input<string>;
4028
4222
  }
@@ -4040,6 +4234,10 @@ export interface FeatureEngineeringFeatureFunctionAggregationFunctionSum {
4040
4234
  }
4041
4235
  export interface FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindow {
4042
4236
  continuous?: pulumi.Input<inputs.FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowContinuous | undefined>;
4237
+ /**
4238
+ * A long (multi-day) rolling window served via the hybrid batch + streaming path
4239
+ */
4240
+ longRolling?: pulumi.Input<inputs.FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowLongRolling | undefined>;
4043
4241
  rolling?: pulumi.Input<inputs.FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowRolling | undefined>;
4044
4242
  sliding?: pulumi.Input<inputs.FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowSliding | undefined>;
4045
4243
  tumbling?: pulumi.Input<inputs.FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowTumbling | undefined>;
@@ -4051,11 +4249,11 @@ export interface FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowC
4051
4249
  offset?: pulumi.Input<string | undefined>;
4052
4250
  windowDuration: pulumi.Input<string>;
4053
4251
  }
4252
+ export interface FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowLongRolling {
4253
+ delay?: pulumi.Input<string | undefined>;
4254
+ windowDuration: pulumi.Input<string>;
4255
+ }
4054
4256
  export interface FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowRolling {
4055
- /**
4056
- * The delay applied to the end of the rolling window (must be non-negative).
4057
- * For example, delay=1d shifts the window end 1 day before the evaluation time
4058
- */
4059
4257
  delay?: pulumi.Input<string | undefined>;
4060
4258
  windowDuration: pulumi.Input<string>;
4061
4259
  }
@@ -4241,6 +4439,10 @@ export interface FeatureEngineeringFeatureSourceStreamSource {
4241
4439
  }
4242
4440
  export interface FeatureEngineeringFeatureTimeWindow {
4243
4441
  continuous?: pulumi.Input<inputs.FeatureEngineeringFeatureTimeWindowContinuous | undefined>;
4442
+ /**
4443
+ * A long (multi-day) rolling window served via the hybrid batch + streaming path
4444
+ */
4445
+ longRolling?: pulumi.Input<inputs.FeatureEngineeringFeatureTimeWindowLongRolling | undefined>;
4244
4446
  rolling?: pulumi.Input<inputs.FeatureEngineeringFeatureTimeWindowRolling | undefined>;
4245
4447
  sliding?: pulumi.Input<inputs.FeatureEngineeringFeatureTimeWindowSliding | undefined>;
4246
4448
  tumbling?: pulumi.Input<inputs.FeatureEngineeringFeatureTimeWindowTumbling | undefined>;
@@ -4252,11 +4454,11 @@ export interface FeatureEngineeringFeatureTimeWindowContinuous {
4252
4454
  offset?: pulumi.Input<string | undefined>;
4253
4455
  windowDuration: pulumi.Input<string>;
4254
4456
  }
4457
+ export interface FeatureEngineeringFeatureTimeWindowLongRolling {
4458
+ delay?: pulumi.Input<string | undefined>;
4459
+ windowDuration: pulumi.Input<string>;
4460
+ }
4255
4461
  export interface FeatureEngineeringFeatureTimeWindowRolling {
4256
- /**
4257
- * The delay applied to the end of the rolling window (must be non-negative).
4258
- * For example, delay=1d shifts the window end 1 day before the evaluation time
4259
- */
4260
4462
  delay?: pulumi.Input<string | undefined>;
4261
4463
  windowDuration: pulumi.Input<string>;
4262
4464
  }
@@ -4474,10 +4676,32 @@ export interface FeatureEngineeringKafkaConfigIngestionConfigIngestionDestinatio
4474
4676
  deltaTableName?: pulumi.Input<string | undefined>;
4475
4677
  }
4476
4678
  export interface FeatureEngineeringKafkaConfigKeySchema {
4679
+ /**
4680
+ * Avro schema in JSON format (https://avro.apache.org/docs/current/specification/)
4681
+ */
4682
+ avroSchema?: pulumi.Input<string | undefined>;
4477
4683
  /**
4478
4684
  * Schema of the JSON object in standard IETF JSON schema format (https://json-schema.org/)
4479
4685
  */
4480
4686
  jsonSchema?: pulumi.Input<string | undefined>;
4687
+ /**
4688
+ * Protocol Buffer schema with its payload message name
4689
+ */
4690
+ protoSchema?: pulumi.Input<inputs.FeatureEngineeringKafkaConfigKeySchemaProtoSchema | undefined>;
4691
+ }
4692
+ export interface FeatureEngineeringKafkaConfigKeySchemaProtoSchema {
4693
+ /**
4694
+ * The fully-qualified name of the message within schemaText that describes the Kafka payload
4695
+ * (e.g. "Event" or "com.example.Event" if schemaText declares a package). Identifies which
4696
+ * message is used to decode each Kafka record — a .proto file may declare multiple messages
4697
+ * but only one represents the payload. Must not be empty
4698
+ */
4699
+ messageName: pulumi.Input<string>;
4700
+ /**
4701
+ * The raw .proto file text (proto2 and proto3 syntax supported, see
4702
+ * https://protobuf.dev/programming-guides/proto3/ and https://protobuf.dev/programming-guides/proto2/)
4703
+ */
4704
+ schemaText: pulumi.Input<string>;
4481
4705
  }
4482
4706
  export interface FeatureEngineeringKafkaConfigProviderConfig {
4483
4707
  /**
@@ -4501,10 +4725,32 @@ export interface FeatureEngineeringKafkaConfigSubscriptionMode {
4501
4725
  subscribePattern?: pulumi.Input<string | undefined>;
4502
4726
  }
4503
4727
  export interface FeatureEngineeringKafkaConfigValueSchema {
4728
+ /**
4729
+ * Avro schema in JSON format (https://avro.apache.org/docs/current/specification/)
4730
+ */
4731
+ avroSchema?: pulumi.Input<string | undefined>;
4504
4732
  /**
4505
4733
  * Schema of the JSON object in standard IETF JSON schema format (https://json-schema.org/)
4506
4734
  */
4507
4735
  jsonSchema?: pulumi.Input<string | undefined>;
4736
+ /**
4737
+ * Protocol Buffer schema with its payload message name
4738
+ */
4739
+ protoSchema?: pulumi.Input<inputs.FeatureEngineeringKafkaConfigValueSchemaProtoSchema | undefined>;
4740
+ }
4741
+ export interface FeatureEngineeringKafkaConfigValueSchemaProtoSchema {
4742
+ /**
4743
+ * The fully-qualified name of the message within schemaText that describes the Kafka payload
4744
+ * (e.g. "Event" or "com.example.Event" if schemaText declares a package). Identifies which
4745
+ * message is used to decode each Kafka record — a .proto file may declare multiple messages
4746
+ * but only one represents the payload. Must not be empty
4747
+ */
4748
+ messageName: pulumi.Input<string>;
4749
+ /**
4750
+ * The raw .proto file text (proto2 and proto3 syntax supported, see
4751
+ * https://protobuf.dev/programming-guides/proto3/ and https://protobuf.dev/programming-guides/proto2/)
4752
+ */
4753
+ schemaText: pulumi.Input<string>;
4508
4754
  }
4509
4755
  export interface FeatureEngineeringMaterializedFeatureCronScheduleTrigger {
4510
4756
  /**
@@ -4533,6 +4779,11 @@ export interface FeatureEngineeringMaterializedFeatureProviderConfig {
4533
4779
  workspaceId?: pulumi.Input<string | undefined>;
4534
4780
  }
4535
4781
  export interface FeatureEngineeringMaterializedFeatureStreamingMode {
4782
+ /**
4783
+ * The desired data freshness for feature materialization, expressed as a
4784
+ * duration string (e.g. "1 minute")
4785
+ */
4786
+ freshnessTarget?: pulumi.Input<string | undefined>;
4536
4787
  /**
4537
4788
  * The type of streaming mode used by the materialization pipeline. Possible values are: `STREAMING_MODE_TYPE_MBM`, `STREAMING_MODE_TYPE_RTM`
4538
4789
  */
@@ -14860,11 +15111,17 @@ export interface JobSchedule {
14860
15111
  * A [Cron expression using Quartz syntax](http://www.quartz-scheduler.org/documentation/quartz-2.3.0/tutorials/crontrigger.html) that describes the schedule for a job. This field is required.
14861
15112
  */
14862
15113
  quartzCronExpression: pulumi.Input<string>;
15114
+ sqlCondition?: pulumi.Input<inputs.JobScheduleSqlCondition | undefined>;
14863
15115
  /**
14864
15116
  * A Java timezone ID. The schedule for a job will be resolved with respect to this timezone. See Java TimeZone for details. This field is required.
14865
15117
  */
14866
15118
  timezoneId: pulumi.Input<string>;
14867
15119
  }
15120
+ export interface JobScheduleSqlCondition {
15121
+ sqlQueryId: pulumi.Input<string>;
15122
+ triggerMode?: pulumi.Input<string | undefined>;
15123
+ warehouseId: pulumi.Input<string>;
15124
+ }
14868
15125
  export interface JobSparkJarTask {
14869
15126
  jarUri?: pulumi.Input<string | undefined>;
14870
15127
  /**
@@ -16998,6 +17255,7 @@ export interface JobTrigger {
16998
17255
  * configuration block to define a trigger for Periodic Triggers consisting of the following attributes:
16999
17256
  */
17000
17257
  periodic?: pulumi.Input<inputs.JobTriggerPeriodic | undefined>;
17258
+ sqlCondition?: pulumi.Input<inputs.JobTriggerSqlCondition | undefined>;
17001
17259
  /**
17002
17260
  * configuration block to define a trigger for [Table Updates](https://docs.databricks.com/aws/en/jobs/trigger-table-update) consisting of following attributes:
17003
17261
  */
@@ -17037,6 +17295,11 @@ export interface JobTriggerPeriodic {
17037
17295
  */
17038
17296
  unit: pulumi.Input<string>;
17039
17297
  }
17298
+ export interface JobTriggerSqlCondition {
17299
+ sqlQueryId: pulumi.Input<string>;
17300
+ triggerMode?: pulumi.Input<string | undefined>;
17301
+ warehouseId: pulumi.Input<string>;
17302
+ }
17040
17303
  export interface JobTriggerTableUpdate {
17041
17304
  /**
17042
17305
  * The table(s) condition based on which to trigger a job run. Possible values are `ANY_UPDATED`, `ALL_UPDATED`.
@@ -18345,11 +18608,11 @@ export interface MwsNetworksGcpNetworkInfo {
18345
18608
  */
18346
18609
  networkProjectId: pulumi.Input<string>;
18347
18610
  /**
18348
- * @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.120.0/docs/guides/gcp-workspace#creating-a-vpc
18611
+ * @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.121.0/docs/guides/gcp-workspace#creating-a-vpc
18349
18612
  */
18350
18613
  podIpRangeName?: pulumi.Input<string | undefined>;
18351
18614
  /**
18352
- * @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.120.0/docs/guides/gcp-workspace#creating-a-vpc
18615
+ * @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.121.0/docs/guides/gcp-workspace#creating-a-vpc
18353
18616
  */
18354
18617
  serviceIpRangeName?: pulumi.Input<string | undefined>;
18355
18618
  /**
@@ -18410,11 +18673,11 @@ export interface MwsWorkspacesExternalCustomerInfo {
18410
18673
  }
18411
18674
  export interface MwsWorkspacesGcpManagedNetworkConfig {
18412
18675
  /**
18413
- * @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.120.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
18676
+ * @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.121.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
18414
18677
  */
18415
18678
  gkeClusterPodIpRange?: pulumi.Input<string | undefined>;
18416
18679
  /**
18417
- * @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.120.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
18680
+ * @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.121.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
18418
18681
  */
18419
18682
  gkeClusterServiceIpRange?: pulumi.Input<string | undefined>;
18420
18683
  subnetCidr: pulumi.Input<string>;
@@ -19912,6 +20175,10 @@ export interface PostgresEndpointStatus {
19912
20175
  * (EndpointHosts) - Contains host information for connecting to the endpoint
19913
20176
  */
19914
20177
  hosts?: pulumi.Input<inputs.PostgresEndpointStatusHosts | undefined>;
20178
+ /**
20179
+ * (string) - A timestamp indicating when the compute endpoint was last active
20180
+ */
20181
+ lastActiveTime?: pulumi.Input<string | undefined>;
19915
20182
  /**
19916
20183
  * (string) - Possible values are: `ACTIVE`, `DEGRADED`, `IDLE`, `INIT`
19917
20184
  */
@@ -19946,6 +20213,15 @@ export interface PostgresEndpointStatusHosts {
19946
20213
  * if the enclosing endpoint is a group with greater than 1 computes configured, and has readable secondaries enabled
19947
20214
  */
19948
20215
  readOnlyHost?: pulumi.Input<string | undefined>;
20216
+ /**
20217
+ * (string) - The read-only hostname of the compute endpoint, with pooling. This attribute is always defined for read-only endpoints,
20218
+ * and may be defined for read-write endpoints if configured with read replicas and allow read-only connections
20219
+ */
20220
+ readOnlyPooledHost?: pulumi.Input<string | undefined>;
20221
+ /**
20222
+ * (string) - The read-write hostname of the compute endpoint, with pooling. This attribute is only defined for read-write endpoints
20223
+ */
20224
+ readWritePooledHost?: pulumi.Input<string | undefined>;
19949
20225
  }
19950
20226
  export interface PostgresEndpointStatusSettings {
19951
20227
  /**
@@ -20265,7 +20541,7 @@ export interface PostgresSyncedTableSpecTypeOverride {
20265
20541
  pgType: pulumi.Input<string>;
20266
20542
  /**
20267
20543
  * Size parameter for the target type. Required when pgType is PG_SPECIFIC_TYPE_VECTOR
20268
- * (specifies the vector dimension, e.g., 1024)
20544
+ * or PG_SPECIFIC_TYPE_HALFVEC (specifies the vector dimension, e.g., 1024)
20269
20545
  */
20270
20546
  size?: pulumi.Input<number | undefined>;
20271
20547
  }