@pulumi/databricks 1.80.0 → 1.81.0-alpha.1767844100

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 (63) hide show
  1. package/app.d.ts +8 -0
  2. package/app.js +6 -0
  3. package/app.js.map +1 -1
  4. package/config/vars.d.ts +1 -0
  5. package/config/vars.js +6 -0
  6. package/config/vars.js.map +1 -1
  7. package/getOnlineStore.d.ts +4 -0
  8. package/getOnlineStore.js.map +1 -1
  9. package/getPostgresBranch.d.ts +69 -0
  10. package/getPostgresBranch.js +28 -0
  11. package/getPostgresBranch.js.map +1 -0
  12. package/getPostgresBranches.d.ts +54 -0
  13. package/getPostgresBranches.js +30 -0
  14. package/getPostgresBranches.js.map +1 -0
  15. package/getPostgresEndpoint.d.ts +69 -0
  16. package/getPostgresEndpoint.js +28 -0
  17. package/getPostgresEndpoint.js.map +1 -0
  18. package/getPostgresEndpoints.d.ts +54 -0
  19. package/getPostgresEndpoints.js +30 -0
  20. package/getPostgresEndpoints.js.map +1 -0
  21. package/getPostgresProject.d.ts +64 -0
  22. package/getPostgresProject.js +28 -0
  23. package/getPostgresProject.js.map +1 -0
  24. package/getPostgresProjects.d.ts +39 -0
  25. package/getPostgresProjects.js +30 -0
  26. package/getPostgresProjects.js.map +1 -0
  27. package/getRfaAccessRequestDestinations.d.ts +63 -3
  28. package/getRfaAccessRequestDestinations.js +30 -4
  29. package/getRfaAccessRequestDestinations.js.map +1 -1
  30. package/getTagPolicies.d.ts +16 -2
  31. package/getTagPolicies.js +16 -2
  32. package/getTagPolicies.js.map +1 -1
  33. package/getTagPolicy.d.ts +16 -2
  34. package/getTagPolicy.js +16 -2
  35. package/getTagPolicy.js.map +1 -1
  36. package/index.d.ts +28 -1
  37. package/index.js +38 -5
  38. package/index.js.map +1 -1
  39. package/mwsWorkspaces.d.ts +3 -3
  40. package/onlineStore.d.ts +12 -0
  41. package/onlineStore.js +2 -0
  42. package/onlineStore.js.map +1 -1
  43. package/package.json +2 -2
  44. package/postgresBranch.d.ts +151 -0
  45. package/postgresBranch.js +89 -0
  46. package/postgresBranch.js.map +1 -0
  47. package/postgresEndpoint.d.ts +151 -0
  48. package/postgresEndpoint.js +89 -0
  49. package/postgresEndpoint.js.map +1 -0
  50. package/postgresProject.d.ts +136 -0
  51. package/postgresProject.js +84 -0
  52. package/postgresProject.js.map +1 -0
  53. package/provider.d.ts +1 -0
  54. package/provider.js +1 -0
  55. package/provider.js.map +1 -1
  56. package/rfaAccessRequestDestinations.d.ts +31 -5
  57. package/rfaAccessRequestDestinations.js +8 -2
  58. package/rfaAccessRequestDestinations.js.map +1 -1
  59. package/tagPolicy.d.ts +8 -1
  60. package/tagPolicy.js +8 -1
  61. package/tagPolicy.js.map +1 -1
  62. package/types/input.d.ts +412 -5
  63. package/types/output.d.ts +1406 -107
package/types/output.d.ts CHANGED
@@ -440,6 +440,7 @@ export interface AlertV2Schedule {
440
440
  timezoneId: string;
441
441
  }
442
442
  export interface AppActiveDeployment {
443
+ commands?: string[];
443
444
  /**
444
445
  * The creation time of the app.
445
446
  */
@@ -450,6 +451,8 @@ export interface AppActiveDeployment {
450
451
  creator: string;
451
452
  deploymentArtifacts: outputs.AppActiveDeploymentDeploymentArtifacts;
452
453
  deploymentId?: string;
454
+ envVars?: outputs.AppActiveDeploymentEnvVar[];
455
+ gitSource?: outputs.AppActiveDeploymentGitSource;
453
456
  mode?: string;
454
457
  sourceCodePath?: string;
455
458
  status: outputs.AppActiveDeploymentStatus;
@@ -461,6 +464,29 @@ export interface AppActiveDeployment {
461
464
  export interface AppActiveDeploymentDeploymentArtifacts {
462
465
  sourceCodePath?: string;
463
466
  }
467
+ export interface AppActiveDeploymentEnvVar {
468
+ /**
469
+ * The name of the app. The name must contain only lowercase alphanumeric characters and hyphens. It must be unique within the workspace.
470
+ */
471
+ name?: string;
472
+ value?: string;
473
+ valueFrom?: string;
474
+ }
475
+ export interface AppActiveDeploymentGitSource {
476
+ branch?: string;
477
+ commit?: string;
478
+ gitRepository: outputs.AppActiveDeploymentGitSourceGitRepository;
479
+ resolvedCommit: string;
480
+ sourceCodePath?: string;
481
+ tag?: string;
482
+ }
483
+ export interface AppActiveDeploymentGitSourceGitRepository {
484
+ provider: string;
485
+ /**
486
+ * The URL of the app once it is deployed.
487
+ */
488
+ url: string;
489
+ }
464
490
  export interface AppActiveDeploymentStatus {
465
491
  /**
466
492
  * Application status message
@@ -491,7 +517,15 @@ export interface AppComputeStatus {
491
517
  */
492
518
  state: string;
493
519
  }
520
+ export interface AppGitRepository {
521
+ provider: string;
522
+ /**
523
+ * The URL of the app once it is deployed.
524
+ */
525
+ url: string;
526
+ }
494
527
  export interface AppPendingDeployment {
528
+ commands?: string[];
495
529
  /**
496
530
  * The creation time of the app.
497
531
  */
@@ -502,6 +536,8 @@ export interface AppPendingDeployment {
502
536
  creator: string;
503
537
  deploymentArtifacts: outputs.AppPendingDeploymentDeploymentArtifacts;
504
538
  deploymentId?: string;
539
+ envVars?: outputs.AppPendingDeploymentEnvVar[];
540
+ gitSource?: outputs.AppPendingDeploymentGitSource;
505
541
  mode?: string;
506
542
  sourceCodePath?: string;
507
543
  status: outputs.AppPendingDeploymentStatus;
@@ -513,6 +549,29 @@ export interface AppPendingDeployment {
513
549
  export interface AppPendingDeploymentDeploymentArtifacts {
514
550
  sourceCodePath?: string;
515
551
  }
552
+ export interface AppPendingDeploymentEnvVar {
553
+ /**
554
+ * The name of the app. The name must contain only lowercase alphanumeric characters and hyphens. It must be unique within the workspace.
555
+ */
556
+ name?: string;
557
+ value?: string;
558
+ valueFrom?: string;
559
+ }
560
+ export interface AppPendingDeploymentGitSource {
561
+ branch?: string;
562
+ commit?: string;
563
+ gitRepository: outputs.AppPendingDeploymentGitSourceGitRepository;
564
+ resolvedCommit: string;
565
+ sourceCodePath?: string;
566
+ tag?: string;
567
+ }
568
+ export interface AppPendingDeploymentGitSourceGitRepository {
569
+ provider: string;
570
+ /**
571
+ * The URL of the app once it is deployed.
572
+ */
573
+ url: string;
574
+ }
516
575
  export interface AppPendingDeploymentStatus {
517
576
  /**
518
577
  * Application status message
@@ -537,6 +596,7 @@ export interface AppResource {
537
596
  * Exactly one of the following attributes must be provided:
538
597
  */
539
598
  description?: string;
599
+ experiment?: outputs.AppResourceExperiment;
540
600
  /**
541
601
  * attribute
542
602
  */
@@ -580,6 +640,10 @@ export interface AppResourceDatabase {
580
640
  */
581
641
  permission: string;
582
642
  }
643
+ export interface AppResourceExperiment {
644
+ experimentId: string;
645
+ permission: string;
646
+ }
583
647
  export interface AppResourceGenieSpace {
584
648
  /**
585
649
  * The name of Genie Space.
@@ -670,6 +734,7 @@ export interface AppsSettingsCustomTemplateManifestResourceSpec {
670
734
  * The description of the template
671
735
  */
672
736
  description?: string;
737
+ experimentSpec?: outputs.AppsSettingsCustomTemplateManifestResourceSpecExperimentSpec;
673
738
  jobSpec?: outputs.AppsSettingsCustomTemplateManifestResourceSpecJobSpec;
674
739
  /**
675
740
  * The name of the template. It must contain only alphanumeric characters, hyphens, underscores, and whitespaces.
@@ -681,6 +746,9 @@ export interface AppsSettingsCustomTemplateManifestResourceSpec {
681
746
  sqlWarehouseSpec?: outputs.AppsSettingsCustomTemplateManifestResourceSpecSqlWarehouseSpec;
682
747
  ucSecurableSpec?: outputs.AppsSettingsCustomTemplateManifestResourceSpecUcSecurableSpec;
683
748
  }
749
+ export interface AppsSettingsCustomTemplateManifestResourceSpecExperimentSpec {
750
+ permission: string;
751
+ }
684
752
  export interface AppsSettingsCustomTemplateManifestResourceSpecJobSpec {
685
753
  permission: string;
686
754
  }
@@ -696,7 +764,7 @@ export interface AppsSettingsCustomTemplateManifestResourceSpecSqlWarehouseSpec
696
764
  export interface AppsSettingsCustomTemplateManifestResourceSpecUcSecurableSpec {
697
765
  permission: string;
698
766
  /**
699
- * Possible values are: `TABLE`, `VOLUME`
767
+ * Possible values are: `CONNECTION`, `FUNCTION`, `TABLE`, `VOLUME`
700
768
  */
701
769
  securableType: string;
702
770
  }
@@ -1343,6 +1411,10 @@ export interface CustomAppIntegrationTokenAccessPolicy {
1343
1411
  refreshTokenTtlInMinutes?: number;
1344
1412
  }
1345
1413
  export interface DataQualityMonitorAnomalyDetectionConfig {
1414
+ /**
1415
+ * List of fully qualified table names to exclude from anomaly detection
1416
+ */
1417
+ excludedTableFullNames?: string[];
1346
1418
  }
1347
1419
  export interface DataQualityMonitorDataProfilingConfig {
1348
1420
  /**
@@ -2997,10 +3069,12 @@ export interface GetAppApp {
2997
3069
  * The effective budget policy ID.
2998
3070
  */
2999
3071
  effectiveBudgetPolicyId: string;
3072
+ effectiveUsagePolicyId: string;
3000
3073
  /**
3001
3074
  * A list of effective api scopes granted to the user access token.
3002
3075
  */
3003
3076
  effectiveUserApiScopes: string[];
3077
+ gitRepository?: outputs.GetAppAppGitRepository;
3004
3078
  /**
3005
3079
  * Id of the job to grant permission on.
3006
3080
  */
@@ -3040,9 +3114,11 @@ export interface GetAppApp {
3040
3114
  * The URL of the app once it is deployed.
3041
3115
  */
3042
3116
  url: string;
3117
+ usagePolicyId?: string;
3043
3118
  userApiScopes?: string[];
3044
3119
  }
3045
3120
  export interface GetAppAppActiveDeployment {
3121
+ commands?: string[];
3046
3122
  /**
3047
3123
  * The creation time of the app.
3048
3124
  */
@@ -3053,6 +3129,8 @@ export interface GetAppAppActiveDeployment {
3053
3129
  creator: string;
3054
3130
  deploymentArtifacts: outputs.GetAppAppActiveDeploymentDeploymentArtifacts;
3055
3131
  deploymentId?: string;
3132
+ envVars?: outputs.GetAppAppActiveDeploymentEnvVar[];
3133
+ gitSource?: outputs.GetAppAppActiveDeploymentGitSource;
3056
3134
  mode?: string;
3057
3135
  sourceCodePath?: string;
3058
3136
  status: outputs.GetAppAppActiveDeploymentStatus;
@@ -3064,6 +3142,29 @@ export interface GetAppAppActiveDeployment {
3064
3142
  export interface GetAppAppActiveDeploymentDeploymentArtifacts {
3065
3143
  sourceCodePath?: string;
3066
3144
  }
3145
+ export interface GetAppAppActiveDeploymentEnvVar {
3146
+ /**
3147
+ * The name of the app.
3148
+ */
3149
+ name?: string;
3150
+ value?: string;
3151
+ valueFrom?: string;
3152
+ }
3153
+ export interface GetAppAppActiveDeploymentGitSource {
3154
+ branch?: string;
3155
+ commit?: string;
3156
+ gitRepository: outputs.GetAppAppActiveDeploymentGitSourceGitRepository;
3157
+ resolvedCommit: string;
3158
+ sourceCodePath?: string;
3159
+ tag?: string;
3160
+ }
3161
+ export interface GetAppAppActiveDeploymentGitSourceGitRepository {
3162
+ provider: string;
3163
+ /**
3164
+ * The URL of the app once it is deployed.
3165
+ */
3166
+ url: string;
3167
+ }
3067
3168
  export interface GetAppAppActiveDeploymentStatus {
3068
3169
  /**
3069
3170
  * Application status message
@@ -3094,7 +3195,15 @@ export interface GetAppAppComputeStatus {
3094
3195
  */
3095
3196
  state: string;
3096
3197
  }
3198
+ export interface GetAppAppGitRepository {
3199
+ provider: string;
3200
+ /**
3201
+ * The URL of the app once it is deployed.
3202
+ */
3203
+ url: string;
3204
+ }
3097
3205
  export interface GetAppAppPendingDeployment {
3206
+ commands?: string[];
3098
3207
  /**
3099
3208
  * The creation time of the app.
3100
3209
  */
@@ -3105,6 +3214,8 @@ export interface GetAppAppPendingDeployment {
3105
3214
  creator: string;
3106
3215
  deploymentArtifacts: outputs.GetAppAppPendingDeploymentDeploymentArtifacts;
3107
3216
  deploymentId?: string;
3217
+ envVars?: outputs.GetAppAppPendingDeploymentEnvVar[];
3218
+ gitSource?: outputs.GetAppAppPendingDeploymentGitSource;
3108
3219
  mode?: string;
3109
3220
  sourceCodePath?: string;
3110
3221
  status: outputs.GetAppAppPendingDeploymentStatus;
@@ -3116,6 +3227,29 @@ export interface GetAppAppPendingDeployment {
3116
3227
  export interface GetAppAppPendingDeploymentDeploymentArtifacts {
3117
3228
  sourceCodePath?: string;
3118
3229
  }
3230
+ export interface GetAppAppPendingDeploymentEnvVar {
3231
+ /**
3232
+ * The name of the app.
3233
+ */
3234
+ name?: string;
3235
+ value?: string;
3236
+ valueFrom?: string;
3237
+ }
3238
+ export interface GetAppAppPendingDeploymentGitSource {
3239
+ branch?: string;
3240
+ commit?: string;
3241
+ gitRepository: outputs.GetAppAppPendingDeploymentGitSourceGitRepository;
3242
+ resolvedCommit: string;
3243
+ sourceCodePath?: string;
3244
+ tag?: string;
3245
+ }
3246
+ export interface GetAppAppPendingDeploymentGitSourceGitRepository {
3247
+ provider: string;
3248
+ /**
3249
+ * The URL of the app once it is deployed.
3250
+ */
3251
+ url: string;
3252
+ }
3119
3253
  export interface GetAppAppPendingDeploymentStatus {
3120
3254
  /**
3121
3255
  * Application status message
@@ -3135,6 +3269,7 @@ export interface GetAppAppResource {
3135
3269
  * The description of the resource.
3136
3270
  */
3137
3271
  description?: string;
3272
+ experiment?: outputs.GetAppAppResourceExperiment;
3138
3273
  /**
3139
3274
  * attribute
3140
3275
  */
@@ -3178,6 +3313,13 @@ export interface GetAppAppResourceDatabase {
3178
3313
  */
3179
3314
  permission: string;
3180
3315
  }
3316
+ export interface GetAppAppResourceExperiment {
3317
+ experimentId: string;
3318
+ /**
3319
+ * Permission to grant on database. Supported permissions are: `CAN_CONNECT_AND_CREATE`.
3320
+ */
3321
+ permission: string;
3322
+ }
3181
3323
  export interface GetAppAppResourceGenieSpace {
3182
3324
  /**
3183
3325
  * The name of the app.
@@ -3291,10 +3433,12 @@ export interface GetAppsApp {
3291
3433
  * The effective budget policy ID.
3292
3434
  */
3293
3435
  effectiveBudgetPolicyId: string;
3436
+ effectiveUsagePolicyId: string;
3294
3437
  /**
3295
3438
  * A list of effective api scopes granted to the user access token.
3296
3439
  */
3297
3440
  effectiveUserApiScopes: string[];
3441
+ gitRepository?: outputs.GetAppsAppGitRepository;
3298
3442
  /**
3299
3443
  * Id of the job to grant permission on.
3300
3444
  */
@@ -3334,9 +3478,11 @@ export interface GetAppsApp {
3334
3478
  * The URL of the app once it is deployed.
3335
3479
  */
3336
3480
  url: string;
3481
+ usagePolicyId?: string;
3337
3482
  userApiScopes?: string[];
3338
3483
  }
3339
3484
  export interface GetAppsAppActiveDeployment {
3485
+ commands?: string[];
3340
3486
  /**
3341
3487
  * The creation time of the app.
3342
3488
  */
@@ -3347,6 +3493,8 @@ export interface GetAppsAppActiveDeployment {
3347
3493
  creator: string;
3348
3494
  deploymentArtifacts: outputs.GetAppsAppActiveDeploymentDeploymentArtifacts;
3349
3495
  deploymentId?: string;
3496
+ envVars?: outputs.GetAppsAppActiveDeploymentEnvVar[];
3497
+ gitSource?: outputs.GetAppsAppActiveDeploymentGitSource;
3350
3498
  mode?: string;
3351
3499
  sourceCodePath?: string;
3352
3500
  status: outputs.GetAppsAppActiveDeploymentStatus;
@@ -3358,6 +3506,29 @@ export interface GetAppsAppActiveDeployment {
3358
3506
  export interface GetAppsAppActiveDeploymentDeploymentArtifacts {
3359
3507
  sourceCodePath?: string;
3360
3508
  }
3509
+ export interface GetAppsAppActiveDeploymentEnvVar {
3510
+ /**
3511
+ * The name of Genie Space.
3512
+ */
3513
+ name?: string;
3514
+ value?: string;
3515
+ valueFrom?: string;
3516
+ }
3517
+ export interface GetAppsAppActiveDeploymentGitSource {
3518
+ branch?: string;
3519
+ commit?: string;
3520
+ gitRepository: outputs.GetAppsAppActiveDeploymentGitSourceGitRepository;
3521
+ resolvedCommit: string;
3522
+ sourceCodePath?: string;
3523
+ tag?: string;
3524
+ }
3525
+ export interface GetAppsAppActiveDeploymentGitSourceGitRepository {
3526
+ provider: string;
3527
+ /**
3528
+ * The URL of the app once it is deployed.
3529
+ */
3530
+ url: string;
3531
+ }
3361
3532
  export interface GetAppsAppActiveDeploymentStatus {
3362
3533
  /**
3363
3534
  * Application status message
@@ -3388,7 +3559,15 @@ export interface GetAppsAppComputeStatus {
3388
3559
  */
3389
3560
  state: string;
3390
3561
  }
3562
+ export interface GetAppsAppGitRepository {
3563
+ provider: string;
3564
+ /**
3565
+ * The URL of the app once it is deployed.
3566
+ */
3567
+ url: string;
3568
+ }
3391
3569
  export interface GetAppsAppPendingDeployment {
3570
+ commands?: string[];
3392
3571
  /**
3393
3572
  * The creation time of the app.
3394
3573
  */
@@ -3399,6 +3578,8 @@ export interface GetAppsAppPendingDeployment {
3399
3578
  creator: string;
3400
3579
  deploymentArtifacts: outputs.GetAppsAppPendingDeploymentDeploymentArtifacts;
3401
3580
  deploymentId?: string;
3581
+ envVars?: outputs.GetAppsAppPendingDeploymentEnvVar[];
3582
+ gitSource?: outputs.GetAppsAppPendingDeploymentGitSource;
3402
3583
  mode?: string;
3403
3584
  sourceCodePath?: string;
3404
3585
  status: outputs.GetAppsAppPendingDeploymentStatus;
@@ -3410,6 +3591,29 @@ export interface GetAppsAppPendingDeployment {
3410
3591
  export interface GetAppsAppPendingDeploymentDeploymentArtifacts {
3411
3592
  sourceCodePath?: string;
3412
3593
  }
3594
+ export interface GetAppsAppPendingDeploymentEnvVar {
3595
+ /**
3596
+ * The name of Genie Space.
3597
+ */
3598
+ name?: string;
3599
+ value?: string;
3600
+ valueFrom?: string;
3601
+ }
3602
+ export interface GetAppsAppPendingDeploymentGitSource {
3603
+ branch?: string;
3604
+ commit?: string;
3605
+ gitRepository: outputs.GetAppsAppPendingDeploymentGitSourceGitRepository;
3606
+ resolvedCommit: string;
3607
+ sourceCodePath?: string;
3608
+ tag?: string;
3609
+ }
3610
+ export interface GetAppsAppPendingDeploymentGitSourceGitRepository {
3611
+ provider: string;
3612
+ /**
3613
+ * The URL of the app once it is deployed.
3614
+ */
3615
+ url: string;
3616
+ }
3413
3617
  export interface GetAppsAppPendingDeploymentStatus {
3414
3618
  /**
3415
3619
  * Application status message
@@ -3429,6 +3633,7 @@ export interface GetAppsAppResource {
3429
3633
  * The description of the resource.
3430
3634
  */
3431
3635
  description?: string;
3636
+ experiment?: outputs.GetAppsAppResourceExperiment;
3432
3637
  /**
3433
3638
  * attribute
3434
3639
  */
@@ -3472,6 +3677,13 @@ export interface GetAppsAppResourceDatabase {
3472
3677
  */
3473
3678
  permission: string;
3474
3679
  }
3680
+ export interface GetAppsAppResourceExperiment {
3681
+ experimentId: string;
3682
+ /**
3683
+ * Permission to grant on database. Supported permissions are: `CAN_CONNECT_AND_CREATE`.
3684
+ */
3685
+ permission: string;
3686
+ }
3475
3687
  export interface GetAppsAppResourceGenieSpace {
3476
3688
  /**
3477
3689
  * The name of Genie Space.
@@ -3571,6 +3783,10 @@ export interface GetAppsSettingsCustomTemplateManifestResourceSpec {
3571
3783
  * (string) - Description of the App Resource
3572
3784
  */
3573
3785
  description?: string;
3786
+ /**
3787
+ * (AppManifestAppResourceExperimentSpec)
3788
+ */
3789
+ experimentSpec?: outputs.GetAppsSettingsCustomTemplateManifestResourceSpecExperimentSpec;
3574
3790
  /**
3575
3791
  * (AppManifestAppResourceJobSpec)
3576
3792
  */
@@ -3597,37 +3813,43 @@ export interface GetAppsSettingsCustomTemplateManifestResourceSpec {
3597
3813
  */
3598
3814
  ucSecurableSpec?: outputs.GetAppsSettingsCustomTemplateManifestResourceSpecUcSecurableSpec;
3599
3815
  }
3816
+ export interface GetAppsSettingsCustomTemplateManifestResourceSpecExperimentSpec {
3817
+ /**
3818
+ * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
3819
+ */
3820
+ permission: string;
3821
+ }
3600
3822
  export interface GetAppsSettingsCustomTemplateManifestResourceSpecJobSpec {
3601
3823
  /**
3602
- * (string) - Possible values are: `MANAGE`, `READ_VOLUME`, `SELECT`, `WRITE_VOLUME`
3824
+ * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
3603
3825
  */
3604
3826
  permission: string;
3605
3827
  }
3606
3828
  export interface GetAppsSettingsCustomTemplateManifestResourceSpecSecretSpec {
3607
3829
  /**
3608
- * (string) - Possible values are: `MANAGE`, `READ_VOLUME`, `SELECT`, `WRITE_VOLUME`
3830
+ * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
3609
3831
  */
3610
3832
  permission: string;
3611
3833
  }
3612
3834
  export interface GetAppsSettingsCustomTemplateManifestResourceSpecServingEndpointSpec {
3613
3835
  /**
3614
- * (string) - Possible values are: `MANAGE`, `READ_VOLUME`, `SELECT`, `WRITE_VOLUME`
3836
+ * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
3615
3837
  */
3616
3838
  permission: string;
3617
3839
  }
3618
3840
  export interface GetAppsSettingsCustomTemplateManifestResourceSpecSqlWarehouseSpec {
3619
3841
  /**
3620
- * (string) - Possible values are: `MANAGE`, `READ_VOLUME`, `SELECT`, `WRITE_VOLUME`
3842
+ * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
3621
3843
  */
3622
3844
  permission: string;
3623
3845
  }
3624
3846
  export interface GetAppsSettingsCustomTemplateManifestResourceSpecUcSecurableSpec {
3625
3847
  /**
3626
- * (string) - Possible values are: `MANAGE`, `READ_VOLUME`, `SELECT`, `WRITE_VOLUME`
3848
+ * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
3627
3849
  */
3628
3850
  permission: string;
3629
3851
  /**
3630
- * (string) - Possible values are: `TABLE`, `VOLUME`
3852
+ * (string) - Possible values are: `CONNECTION`, `FUNCTION`, `TABLE`, `VOLUME`
3631
3853
  */
3632
3854
  securableType: string;
3633
3855
  }
@@ -3684,6 +3906,10 @@ export interface GetAppsSettingsCustomTemplatesTemplateManifestResourceSpec {
3684
3906
  * (string) - Description of the App Resource
3685
3907
  */
3686
3908
  description?: string;
3909
+ /**
3910
+ * (AppManifestAppResourceExperimentSpec)
3911
+ */
3912
+ experimentSpec?: outputs.GetAppsSettingsCustomTemplatesTemplateManifestResourceSpecExperimentSpec;
3687
3913
  /**
3688
3914
  * (AppManifestAppResourceJobSpec)
3689
3915
  */
@@ -3709,37 +3935,43 @@ export interface GetAppsSettingsCustomTemplatesTemplateManifestResourceSpec {
3709
3935
  */
3710
3936
  ucSecurableSpec?: outputs.GetAppsSettingsCustomTemplatesTemplateManifestResourceSpecUcSecurableSpec;
3711
3937
  }
3938
+ export interface GetAppsSettingsCustomTemplatesTemplateManifestResourceSpecExperimentSpec {
3939
+ /**
3940
+ * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
3941
+ */
3942
+ permission: string;
3943
+ }
3712
3944
  export interface GetAppsSettingsCustomTemplatesTemplateManifestResourceSpecJobSpec {
3713
3945
  /**
3714
- * (string) - Possible values are: `MANAGE`, `READ_VOLUME`, `SELECT`, `WRITE_VOLUME`
3946
+ * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
3715
3947
  */
3716
3948
  permission: string;
3717
3949
  }
3718
3950
  export interface GetAppsSettingsCustomTemplatesTemplateManifestResourceSpecSecretSpec {
3719
3951
  /**
3720
- * (string) - Possible values are: `MANAGE`, `READ_VOLUME`, `SELECT`, `WRITE_VOLUME`
3952
+ * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
3721
3953
  */
3722
3954
  permission: string;
3723
3955
  }
3724
3956
  export interface GetAppsSettingsCustomTemplatesTemplateManifestResourceSpecServingEndpointSpec {
3725
3957
  /**
3726
- * (string) - Possible values are: `MANAGE`, `READ_VOLUME`, `SELECT`, `WRITE_VOLUME`
3958
+ * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
3727
3959
  */
3728
3960
  permission: string;
3729
3961
  }
3730
3962
  export interface GetAppsSettingsCustomTemplatesTemplateManifestResourceSpecSqlWarehouseSpec {
3731
3963
  /**
3732
- * (string) - Possible values are: `MANAGE`, `READ_VOLUME`, `SELECT`, `WRITE_VOLUME`
3964
+ * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
3733
3965
  */
3734
3966
  permission: string;
3735
3967
  }
3736
3968
  export interface GetAppsSettingsCustomTemplatesTemplateManifestResourceSpecUcSecurableSpec {
3737
3969
  /**
3738
- * (string) - Possible values are: `MANAGE`, `READ_VOLUME`, `SELECT`, `WRITE_VOLUME`
3970
+ * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
3739
3971
  */
3740
3972
  permission: string;
3741
3973
  /**
3742
- * (string) - Possible values are: `TABLE`, `VOLUME`
3974
+ * (string) - Possible values are: `CONNECTION`, `FUNCTION`, `TABLE`, `VOLUME`
3743
3975
  */
3744
3976
  securableType: string;
3745
3977
  }
@@ -4586,6 +4818,10 @@ export interface GetDashboardsProviderConfig {
4586
4818
  workspaceId: string;
4587
4819
  }
4588
4820
  export interface GetDataQualityMonitorAnomalyDetectionConfig {
4821
+ /**
4822
+ * (list of string) - List of fully qualified table names to exclude from anomaly detection
4823
+ */
4824
+ excludedTableFullNames?: string[];
4589
4825
  }
4590
4826
  export interface GetDataQualityMonitorDataProfilingConfig {
4591
4827
  /**
@@ -4790,6 +5026,10 @@ export interface GetDataQualityMonitorsMonitor {
4790
5026
  objectType: string;
4791
5027
  }
4792
5028
  export interface GetDataQualityMonitorsMonitorAnomalyDetectionConfig {
5029
+ /**
5030
+ * (list of string) - List of fully qualified table names to exclude from anomaly detection
5031
+ */
5032
+ excludedTableFullNames?: string[];
4793
5033
  }
4794
5034
  export interface GetDataQualityMonitorsMonitorDataProfilingConfig {
4795
5035
  /**
@@ -8454,6 +8694,7 @@ export interface GetMwsNetworkConnectivityConfigEgressConfigTargetRulesAwsPrivat
8454
8694
  domainNames?: string[];
8455
8695
  enabled?: boolean;
8456
8696
  endpointService?: string;
8697
+ errorMessage?: string;
8457
8698
  /**
8458
8699
  * The Databricks network connectivity configuration ID.
8459
8700
  */
@@ -8491,6 +8732,7 @@ export interface GetMwsNetworkConnectivityConfigEgressConfigTargetRulesAzurePriv
8491
8732
  * The name of the Azure private endpoint resource.
8492
8733
  */
8493
8734
  endpointName?: string;
8735
+ errorMessage?: string;
8494
8736
  /**
8495
8737
  * The sub-resource type (group ID) of the target resource.
8496
8738
  */
@@ -8573,6 +8815,10 @@ export interface GetOnlineStoresOnlineStore {
8573
8815
  * (string) - The current state of the online store. Possible values are: `AVAILABLE`, `DELETING`, `FAILING_OVER`, `STARTING`, `STOPPED`, `UPDATING`
8574
8816
  */
8575
8817
  state: string;
8818
+ /**
8819
+ * (string) - The usage policy applied to the online store to track billing
8820
+ */
8821
+ usagePolicyId: string;
8576
8822
  }
8577
8823
  export interface GetPipelinesProviderConfig {
8578
8824
  /**
@@ -8788,168 +9034,875 @@ export interface GetPolicyInfosPolicyRowFilterUsing {
8788
9034
  */
8789
9035
  constant?: string;
8790
9036
  }
8791
- export interface GetQualityMonitorV2AnomalyDetectionConfig {
9037
+ export interface GetPostgresBranchSpec {
8792
9038
  /**
8793
- * (string) - Run id of the last run of the workflow
9039
+ * (boolean) - Whether the branch is the project's default branch
8794
9040
  */
8795
- lastRunId: string;
9041
+ default?: boolean;
8796
9042
  /**
8797
- * (string) - The status of the last run of the workflow. Possible values are: `ANOMALY_DETECTION_RUN_STATUS_CANCELED`, `ANOMALY_DETECTION_RUN_STATUS_FAILED`, `ANOMALY_DETECTION_RUN_STATUS_JOB_DELETED`, `ANOMALY_DETECTION_RUN_STATUS_PENDING`, `ANOMALY_DETECTION_RUN_STATUS_RUNNING`, `ANOMALY_DETECTION_RUN_STATUS_SUCCESS`, `ANOMALY_DETECTION_RUN_STATUS_UNKNOWN`, `ANOMALY_DETECTION_RUN_STATUS_WORKSPACE_MISMATCH_ERROR`
9043
+ * (boolean) - Whether the branch is protected
8798
9044
  */
8799
- latestRunStatus: string;
8800
- }
8801
- export interface GetQualityMonitorsV2QualityMonitor {
9045
+ isProtected?: boolean;
8802
9046
  /**
8803
- * (AnomalyDetectionConfig)
9047
+ * (string) - The name of the source branch from which this branch was created.
9048
+ * Format: projects/{project_id}/branches/{branch_id}
8804
9049
  */
8805
- anomalyDetectionConfig: outputs.GetQualityMonitorsV2QualityMonitorAnomalyDetectionConfig;
9050
+ sourceBranch?: string;
8806
9051
  /**
8807
- * (string) - The uuid of the request object. For example, schema id
9052
+ * (string) - The Log Sequence Number (LSN) on the source branch from which this branch was created
8808
9053
  */
8809
- objectId: string;
9054
+ sourceBranchLsn?: string;
8810
9055
  /**
8811
- * (string) - The type of the monitored object. Can be one of the following: schema
9056
+ * (string) - The point in time on the source branch from which this branch was created
8812
9057
  */
8813
- objectType: string;
9058
+ sourceBranchTime?: string;
8814
9059
  }
8815
- export interface GetQualityMonitorsV2QualityMonitorAnomalyDetectionConfig {
9060
+ export interface GetPostgresBranchStatus {
8816
9061
  /**
8817
- * (string) - Run id of the last run of the workflow
9062
+ * (string) - The branch's state, indicating if it is initializing, ready for use, or archived. Possible values are: `ARCHIVED`, `IMPORTING`, `INIT`, `READY`, `RESETTING`
8818
9063
  */
8819
- lastRunId: string;
9064
+ currentState: string;
8820
9065
  /**
8821
- * (string) - The status of the last run of the workflow. Possible values are: `ANOMALY_DETECTION_RUN_STATUS_CANCELED`, `ANOMALY_DETECTION_RUN_STATUS_FAILED`, `ANOMALY_DETECTION_RUN_STATUS_JOB_DELETED`, `ANOMALY_DETECTION_RUN_STATUS_PENDING`, `ANOMALY_DETECTION_RUN_STATUS_RUNNING`, `ANOMALY_DETECTION_RUN_STATUS_SUCCESS`, `ANOMALY_DETECTION_RUN_STATUS_UNKNOWN`, `ANOMALY_DETECTION_RUN_STATUS_WORKSPACE_MISMATCH_ERROR`
9066
+ * (boolean) - Whether the branch is the project's default branch
8822
9067
  */
8823
- latestRunStatus: string;
8824
- }
8825
- export interface GetRegisteredModelModelInfo {
9068
+ default: boolean;
8826
9069
  /**
8827
- * the list of aliases associated with this model. Each item is object consisting of following attributes:
9070
+ * (boolean) - Whether the branch is protected
8828
9071
  */
8829
- aliases?: outputs.GetRegisteredModelModelInfoAlias[];
8830
- browseOnly?: boolean;
9072
+ isProtected: boolean;
8831
9073
  /**
8832
- * The name of the catalog where the schema and the registered model reside.
9074
+ * (integer) - The logical size of the branch
8833
9075
  */
8834
- catalogName?: string;
9076
+ logicalSizeBytes: number;
8835
9077
  /**
8836
- * The comment attached to the registered model.
9078
+ * (string) - The pending state of the branch, if a state transition is in progress. Possible values are: `ARCHIVED`, `IMPORTING`, `INIT`, `READY`, `RESETTING`
8837
9079
  */
8838
- comment?: string;
9080
+ pendingState: string;
8839
9081
  /**
8840
- * the Unix timestamp at the model's creation
9082
+ * (string) - The name of the source branch from which this branch was created.
9083
+ * Format: projects/{project_id}/branches/{branch_id}
8841
9084
  */
8842
- createdAt?: number;
9085
+ sourceBranch: string;
8843
9086
  /**
8844
- * the identifier of the user who created the model
9087
+ * (string) - The Log Sequence Number (LSN) on the source branch from which this branch was created
8845
9088
  */
8846
- createdBy?: string;
9089
+ sourceBranchLsn: string;
8847
9090
  /**
8848
- * The fully-qualified name of the registered model (`catalog_name.schema_name.name`).
9091
+ * (string) - The point in time on the source branch from which this branch was created
8849
9092
  */
8850
- fullName?: string;
9093
+ sourceBranchTime: string;
8851
9094
  /**
8852
- * the unique identifier of the metastore
9095
+ * (string) - A timestamp indicating when the `currentState` began
8853
9096
  */
8854
- metastoreId?: string;
9097
+ stateChangeTime: string;
9098
+ }
9099
+ export interface GetPostgresBranchesBranch {
8855
9100
  /**
8856
- * The name of the registered model.
9101
+ * (string) - A timestamp indicating when the branch was created
8857
9102
  */
8858
- name?: string;
9103
+ createTime: string;
8859
9104
  /**
8860
- * Name of the registered model owner.
9105
+ * (string) - The resource name of the branch.
9106
+ * Format: projects/{project_id}/branches/{branch_id}
8861
9107
  */
8862
- owner?: string;
9108
+ name: string;
8863
9109
  /**
8864
- * The name of the schema where the registered model resides.
9110
+ * The Project that owns this collection of branches.
9111
+ * Format: projects/{project_id}
8865
9112
  */
8866
- schemaName?: string;
9113
+ parent: string;
8867
9114
  /**
8868
- * The storage location under which model version data files are stored.
9115
+ * (BranchSpec) - The desired state of a Branch
8869
9116
  */
8870
- storageLocation?: string;
9117
+ spec: outputs.GetPostgresBranchesBranchSpec;
8871
9118
  /**
8872
- * the timestamp of the last time changes were made to the model
9119
+ * (BranchStatus) - The current status of a Branch
8873
9120
  */
8874
- updatedAt?: number;
9121
+ status: outputs.GetPostgresBranchesBranchStatus;
8875
9122
  /**
8876
- * the identifier of the user who updated the model last time
9123
+ * (string) - System generated unique ID for the branch
8877
9124
  */
8878
- updatedBy?: string;
9125
+ uid: string;
9126
+ /**
9127
+ * (string) - A timestamp indicating when the branch was last updated
9128
+ */
9129
+ updateTime: string;
8879
9130
  }
8880
- export interface GetRegisteredModelModelInfoAlias {
9131
+ export interface GetPostgresBranchesBranchSpec {
8881
9132
  /**
8882
- * string with the name of alias
9133
+ * (boolean) - Whether the branch is the project's default branch
8883
9134
  */
8884
- aliasName?: string;
9135
+ default?: boolean;
8885
9136
  /**
8886
- * The name of the catalog where the schema and the registered model reside.
9137
+ * (boolean) - Whether the branch is protected
8887
9138
  */
8888
- catalogName?: string;
8889
- id?: string;
8890
- modelName?: string;
9139
+ isProtected?: boolean;
8891
9140
  /**
8892
- * The name of the schema where the registered model resides.
9141
+ * (string) - The name of the source branch from which this branch was created.
9142
+ * Format: projects/{project_id}/branches/{branch_id}
8893
9143
  */
8894
- schemaName?: string;
9144
+ sourceBranch?: string;
8895
9145
  /**
8896
- * associated model version
9146
+ * (string) - The Log Sequence Number (LSN) on the source branch from which this branch was created
8897
9147
  */
8898
- versionNum?: number;
8899
- }
8900
- export interface GetRegisteredModelProviderConfig {
8901
- workspaceId: string;
8902
- }
8903
- export interface GetRegisteredModelVersionsModelVersion {
9148
+ sourceBranchLsn?: string;
8904
9149
  /**
8905
- * the list of aliases associated with this model. Each item is object consisting of following attributes:
9150
+ * (string) - The point in time on the source branch from which this branch was created
8906
9151
  */
8907
- aliases?: outputs.GetRegisteredModelVersionsModelVersionAlias[];
9152
+ sourceBranchTime?: string;
9153
+ }
9154
+ export interface GetPostgresBranchesBranchStatus {
8908
9155
  /**
8909
- * The name of the catalog where the schema and the registered model reside.
9156
+ * (string) - The branch's state, indicating if it is initializing, ready for use, or archived. Possible values are: `ARCHIVED`, `IMPORTING`, `INIT`, `READY`, `RESETTING`
8910
9157
  */
8911
- catalogName?: string;
9158
+ currentState: string;
8912
9159
  /**
8913
- * The comment attached to the registered model.
9160
+ * (boolean) - Whether the branch is the project's default branch
8914
9161
  */
8915
- comment?: string;
9162
+ default: boolean;
8916
9163
  /**
8917
- * the Unix timestamp at the model's creation
9164
+ * (boolean) - Whether the branch is protected
8918
9165
  */
8919
- createdAt?: number;
9166
+ isProtected: boolean;
8920
9167
  /**
8921
- * the identifier of the user who created the model
9168
+ * (integer) - The logical size of the branch
8922
9169
  */
8923
- createdBy?: string;
9170
+ logicalSizeBytes: number;
8924
9171
  /**
8925
- * The unique identifier of the model version
9172
+ * (string) - The pending state of the branch, if a state transition is in progress. Possible values are: `ARCHIVED`, `IMPORTING`, `INIT`, `READY`, `RESETTING`
8926
9173
  */
8927
- id?: string;
9174
+ pendingState: string;
8928
9175
  /**
8929
- * the unique identifier of the metastore
9176
+ * (string) - The name of the source branch from which this branch was created.
9177
+ * Format: projects/{project_id}/branches/{branch_id}
8930
9178
  */
8931
- metastoreId?: string;
8932
- modelName?: string;
9179
+ sourceBranch: string;
8933
9180
  /**
8934
- * block describing model version dependencies, for feature-store packaged models. Consists of following attributes:
9181
+ * (string) - The Log Sequence Number (LSN) on the source branch from which this branch was created
8935
9182
  */
8936
- modelVersionDependencies?: outputs.GetRegisteredModelVersionsModelVersionModelVersionDependency[];
9183
+ sourceBranchLsn: string;
8937
9184
  /**
8938
- * MLflow run ID used when creating the model version, if `source` was generated by an experiment run stored in an MLflow tracking server
9185
+ * (string) - The point in time on the source branch from which this branch was created
8939
9186
  */
8940
- runId?: string;
9187
+ sourceBranchTime: string;
8941
9188
  /**
8942
- * ID of the Databricks workspace containing the MLflow run that generated this model version, if applicable
9189
+ * (string) - A timestamp indicating when the `currentState` began
8943
9190
  */
8944
- runWorkspaceId?: number;
9191
+ stateChangeTime: string;
9192
+ }
9193
+ export interface GetPostgresEndpointSpec {
8945
9194
  /**
8946
- * The name of the schema where the registered model resides.
9195
+ * (number) - The maximum number of Compute Units
8947
9196
  */
8948
- schemaName?: string;
9197
+ autoscalingLimitMaxCu?: number;
8949
9198
  /**
8950
- * URI indicating the location of the source artifacts (files) for the model version.
9199
+ * (number) - The minimum number of Compute Units
8951
9200
  */
8952
- source?: string;
9201
+ autoscalingLimitMinCu?: number;
9202
+ /**
9203
+ * (boolean) - Whether to restrict connections to the compute endpoint.
9204
+ * Enabling this option schedules a suspend compute operation.
9205
+ * A disabled compute endpoint cannot be enabled by a connection or
9206
+ * console action
9207
+ */
9208
+ disabled?: boolean;
9209
+ /**
9210
+ * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `READ_ONLY`, `READ_WRITE`
9211
+ */
9212
+ endpointType: string;
9213
+ /**
9214
+ * (string) - Possible values are: `TRANSACTION`
9215
+ */
9216
+ poolerMode?: string;
9217
+ /**
9218
+ * (EndpointSettings)
9219
+ */
9220
+ settings?: outputs.GetPostgresEndpointSpecSettings;
9221
+ /**
9222
+ * (string) - Duration of inactivity after which the compute endpoint is automatically suspended
9223
+ */
9224
+ suspendTimeoutDuration?: string;
9225
+ }
9226
+ export interface GetPostgresEndpointSpecSettings {
9227
+ /**
9228
+ * (object) - A raw representation of Postgres settings
9229
+ */
9230
+ pgSettings?: {
9231
+ [key: string]: string;
9232
+ };
9233
+ /**
9234
+ * (object) - A raw representation of PgBouncer settings
9235
+ */
9236
+ pgbouncerSettings?: {
9237
+ [key: string]: string;
9238
+ };
9239
+ }
9240
+ export interface GetPostgresEndpointStatus {
9241
+ /**
9242
+ * (number) - The maximum number of Compute Units
9243
+ */
9244
+ autoscalingLimitMaxCu: number;
9245
+ /**
9246
+ * (number) - The minimum number of Compute Units
9247
+ */
9248
+ autoscalingLimitMinCu: number;
9249
+ /**
9250
+ * (string) - Possible values are: `ACTIVE`, `IDLE`, `INIT`
9251
+ */
9252
+ currentState: string;
9253
+ /**
9254
+ * (boolean) - Whether to restrict connections to the compute endpoint.
9255
+ * Enabling this option schedules a suspend compute operation.
9256
+ * A disabled compute endpoint cannot be enabled by a connection or
9257
+ * console action
9258
+ */
9259
+ disabled: boolean;
9260
+ /**
9261
+ * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `READ_ONLY`, `READ_WRITE`
9262
+ */
9263
+ endpointType: string;
9264
+ /**
9265
+ * (string) - The hostname of the compute endpoint. This is the hostname specified when connecting to a database
9266
+ */
9267
+ host: string;
9268
+ /**
9269
+ * (string) - A timestamp indicating when the compute endpoint was last active
9270
+ */
9271
+ lastActiveTime: string;
9272
+ /**
9273
+ * (string) - Possible values are: `ACTIVE`, `IDLE`, `INIT`
9274
+ */
9275
+ pendingState: string;
9276
+ /**
9277
+ * (string) - Possible values are: `TRANSACTION`
9278
+ */
9279
+ poolerMode: string;
9280
+ /**
9281
+ * (EndpointSettings)
9282
+ */
9283
+ settings: outputs.GetPostgresEndpointStatusSettings;
9284
+ /**
9285
+ * (string) - A timestamp indicating when the compute endpoint was last started
9286
+ */
9287
+ startTime: string;
9288
+ /**
9289
+ * (string) - A timestamp indicating when the compute endpoint was last suspended
9290
+ */
9291
+ suspendTime: string;
9292
+ /**
9293
+ * (string) - Duration of inactivity after which the compute endpoint is automatically suspended
9294
+ */
9295
+ suspendTimeoutDuration: string;
9296
+ }
9297
+ export interface GetPostgresEndpointStatusSettings {
9298
+ /**
9299
+ * (object) - A raw representation of Postgres settings
9300
+ */
9301
+ pgSettings?: {
9302
+ [key: string]: string;
9303
+ };
9304
+ /**
9305
+ * (object) - A raw representation of PgBouncer settings
9306
+ */
9307
+ pgbouncerSettings?: {
9308
+ [key: string]: string;
9309
+ };
9310
+ }
9311
+ export interface GetPostgresEndpointsEndpoint {
9312
+ /**
9313
+ * (string) - A timestamp indicating when the compute endpoint was created
9314
+ */
9315
+ createTime: string;
9316
+ /**
9317
+ * (string) - The resource name of the endpoint.
9318
+ * Format: projects/{project_id}/branches/{branch_id}/endpoints/{endpoint_id}
9319
+ */
9320
+ name: string;
9321
+ /**
9322
+ * The Branch that owns this collection of endpoints.
9323
+ * Format: projects/{project_id}/branches/{branch_id}
9324
+ */
9325
+ parent: string;
9326
+ /**
9327
+ * (EndpointSpec) - The desired state of an Endpoint
9328
+ */
9329
+ spec: outputs.GetPostgresEndpointsEndpointSpec;
9330
+ /**
9331
+ * (EndpointStatus) - The current status of an Endpoint
9332
+ */
9333
+ status: outputs.GetPostgresEndpointsEndpointStatus;
9334
+ /**
9335
+ * (string) - System generated unique ID for the endpoint
9336
+ */
9337
+ uid: string;
9338
+ /**
9339
+ * (string) - A timestamp indicating when the compute endpoint was last updated
9340
+ */
9341
+ updateTime: string;
9342
+ }
9343
+ export interface GetPostgresEndpointsEndpointSpec {
9344
+ /**
9345
+ * (number) - The maximum number of Compute Units
9346
+ */
9347
+ autoscalingLimitMaxCu?: number;
9348
+ /**
9349
+ * (number) - The minimum number of Compute Units
9350
+ */
9351
+ autoscalingLimitMinCu?: number;
9352
+ /**
9353
+ * (boolean) - Whether to restrict connections to the compute endpoint.
9354
+ * Enabling this option schedules a suspend compute operation.
9355
+ * A disabled compute endpoint cannot be enabled by a connection or
9356
+ * console action
9357
+ */
9358
+ disabled?: boolean;
9359
+ /**
9360
+ * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `READ_ONLY`, `READ_WRITE`
9361
+ */
9362
+ endpointType: string;
9363
+ /**
9364
+ * (string) - Possible values are: `TRANSACTION`
9365
+ */
9366
+ poolerMode?: string;
9367
+ /**
9368
+ * (EndpointSettings)
9369
+ */
9370
+ settings?: outputs.GetPostgresEndpointsEndpointSpecSettings;
9371
+ /**
9372
+ * (string) - Duration of inactivity after which the compute endpoint is automatically suspended
9373
+ */
9374
+ suspendTimeoutDuration?: string;
9375
+ }
9376
+ export interface GetPostgresEndpointsEndpointSpecSettings {
9377
+ /**
9378
+ * (object) - A raw representation of Postgres settings
9379
+ */
9380
+ pgSettings?: {
9381
+ [key: string]: string;
9382
+ };
9383
+ /**
9384
+ * (object) - A raw representation of PgBouncer settings
9385
+ */
9386
+ pgbouncerSettings?: {
9387
+ [key: string]: string;
9388
+ };
9389
+ }
9390
+ export interface GetPostgresEndpointsEndpointStatus {
9391
+ /**
9392
+ * (number) - The maximum number of Compute Units
9393
+ */
9394
+ autoscalingLimitMaxCu: number;
9395
+ /**
9396
+ * (number) - The minimum number of Compute Units
9397
+ */
9398
+ autoscalingLimitMinCu: number;
9399
+ /**
9400
+ * (string) - Possible values are: `ACTIVE`, `IDLE`, `INIT`
9401
+ */
9402
+ currentState: string;
9403
+ /**
9404
+ * (boolean) - Whether to restrict connections to the compute endpoint.
9405
+ * Enabling this option schedules a suspend compute operation.
9406
+ * A disabled compute endpoint cannot be enabled by a connection or
9407
+ * console action
9408
+ */
9409
+ disabled: boolean;
9410
+ /**
9411
+ * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `READ_ONLY`, `READ_WRITE`
9412
+ */
9413
+ endpointType: string;
9414
+ /**
9415
+ * (string) - The hostname of the compute endpoint. This is the hostname specified when connecting to a database
9416
+ */
9417
+ host: string;
9418
+ /**
9419
+ * (string) - A timestamp indicating when the compute endpoint was last active
9420
+ */
9421
+ lastActiveTime: string;
9422
+ /**
9423
+ * (string) - Possible values are: `ACTIVE`, `IDLE`, `INIT`
9424
+ */
9425
+ pendingState: string;
9426
+ /**
9427
+ * (string) - Possible values are: `TRANSACTION`
9428
+ */
9429
+ poolerMode: string;
9430
+ /**
9431
+ * (EndpointSettings)
9432
+ */
9433
+ settings: outputs.GetPostgresEndpointsEndpointStatusSettings;
9434
+ /**
9435
+ * (string) - A timestamp indicating when the compute endpoint was last started
9436
+ */
9437
+ startTime: string;
9438
+ /**
9439
+ * (string) - A timestamp indicating when the compute endpoint was last suspended
9440
+ */
9441
+ suspendTime: string;
9442
+ /**
9443
+ * (string) - Duration of inactivity after which the compute endpoint is automatically suspended
9444
+ */
9445
+ suspendTimeoutDuration: string;
9446
+ }
9447
+ export interface GetPostgresEndpointsEndpointStatusSettings {
9448
+ /**
9449
+ * (object) - A raw representation of Postgres settings
9450
+ */
9451
+ pgSettings?: {
9452
+ [key: string]: string;
9453
+ };
9454
+ /**
9455
+ * (object) - A raw representation of PgBouncer settings
9456
+ */
9457
+ pgbouncerSettings?: {
9458
+ [key: string]: string;
9459
+ };
9460
+ }
9461
+ export interface GetPostgresProjectSpec {
9462
+ /**
9463
+ * (ProjectDefaultEndpointSettings) - The effective default endpoint settings
9464
+ */
9465
+ defaultEndpointSettings?: outputs.GetPostgresProjectSpecDefaultEndpointSettings;
9466
+ /**
9467
+ * (string) - The effective human-readable project name
9468
+ */
9469
+ displayName?: string;
9470
+ /**
9471
+ * (string) - The effective number of seconds to retain the shared history for point in time recovery
9472
+ */
9473
+ historyRetentionDuration?: string;
9474
+ /**
9475
+ * (integer) - The effective major Postgres version number
9476
+ */
9477
+ pgVersion?: number;
9478
+ /**
9479
+ * (ProjectSettings) - The effective project settings
9480
+ */
9481
+ settings?: outputs.GetPostgresProjectSpecSettings;
9482
+ }
9483
+ export interface GetPostgresProjectSpecDefaultEndpointSettings {
9484
+ /**
9485
+ * (number) - The maximum number of Compute Units
9486
+ */
9487
+ autoscalingLimitMaxCu?: number;
9488
+ /**
9489
+ * (number) - The minimum number of Compute Units
9490
+ */
9491
+ autoscalingLimitMinCu?: number;
9492
+ /**
9493
+ * (object) - A raw representation of Postgres settings
9494
+ */
9495
+ pgSettings?: {
9496
+ [key: string]: string;
9497
+ };
9498
+ /**
9499
+ * (object) - A raw representation of PgBouncer settings
9500
+ */
9501
+ pgbouncerSettings?: {
9502
+ [key: string]: string;
9503
+ };
9504
+ /**
9505
+ * (string) - Duration of inactivity after which the compute endpoint is automatically suspended
9506
+ */
9507
+ suspendTimeoutDuration?: string;
9508
+ }
9509
+ export interface GetPostgresProjectSpecSettings {
9510
+ /**
9511
+ * (boolean) - Sets wal_level=logical for all compute endpoints in this project.
9512
+ * All active endpoints will be suspended.
9513
+ * Once enabled, logical replication cannot be disabled
9514
+ */
9515
+ enableLogicalReplication?: boolean;
9516
+ }
9517
+ export interface GetPostgresProjectStatus {
9518
+ /**
9519
+ * (integer) - The logical size limit for a branch
9520
+ */
9521
+ branchLogicalSizeLimitBytes: number;
9522
+ /**
9523
+ * (string) - The most recent time when any endpoint of this project was active
9524
+ */
9525
+ computeLastActiveTime: string;
9526
+ /**
9527
+ * (ProjectDefaultEndpointSettings) - The effective default endpoint settings
9528
+ */
9529
+ defaultEndpointSettings: outputs.GetPostgresProjectStatusDefaultEndpointSettings;
9530
+ /**
9531
+ * (string) - The effective human-readable project name
9532
+ */
9533
+ displayName: string;
9534
+ /**
9535
+ * (string) - The effective number of seconds to retain the shared history for point in time recovery
9536
+ */
9537
+ historyRetentionDuration: string;
9538
+ /**
9539
+ * (integer) - The effective major Postgres version number
9540
+ */
9541
+ pgVersion: number;
9542
+ /**
9543
+ * (ProjectSettings) - The effective project settings
9544
+ */
9545
+ settings: outputs.GetPostgresProjectStatusSettings;
9546
+ /**
9547
+ * (integer) - The current space occupied by the project in storage
9548
+ */
9549
+ syntheticStorageSizeBytes: number;
9550
+ }
9551
+ export interface GetPostgresProjectStatusDefaultEndpointSettings {
9552
+ /**
9553
+ * (number) - The maximum number of Compute Units
9554
+ */
9555
+ autoscalingLimitMaxCu?: number;
9556
+ /**
9557
+ * (number) - The minimum number of Compute Units
9558
+ */
9559
+ autoscalingLimitMinCu?: number;
9560
+ /**
9561
+ * (object) - A raw representation of Postgres settings
9562
+ */
9563
+ pgSettings?: {
9564
+ [key: string]: string;
9565
+ };
9566
+ /**
9567
+ * (object) - A raw representation of PgBouncer settings
9568
+ */
9569
+ pgbouncerSettings?: {
9570
+ [key: string]: string;
9571
+ };
9572
+ /**
9573
+ * (string) - Duration of inactivity after which the compute endpoint is automatically suspended
9574
+ */
9575
+ suspendTimeoutDuration?: string;
9576
+ }
9577
+ export interface GetPostgresProjectStatusSettings {
9578
+ /**
9579
+ * (boolean) - Sets wal_level=logical for all compute endpoints in this project.
9580
+ * All active endpoints will be suspended.
9581
+ * Once enabled, logical replication cannot be disabled
9582
+ */
9583
+ enableLogicalReplication?: boolean;
9584
+ }
9585
+ export interface GetPostgresProjectsProject {
9586
+ /**
9587
+ * (string) - A timestamp indicating when the project was created
9588
+ */
9589
+ createTime: string;
9590
+ /**
9591
+ * (string) - The resource name of the project.
9592
+ * Format: projects/{project_id}
9593
+ */
9594
+ name: string;
9595
+ /**
9596
+ * (ProjectSpec) - The desired state of a Project
9597
+ */
9598
+ spec: outputs.GetPostgresProjectsProjectSpec;
9599
+ /**
9600
+ * (ProjectStatus) - The current status of a Project
9601
+ */
9602
+ status: outputs.GetPostgresProjectsProjectStatus;
9603
+ /**
9604
+ * (string) - System generated unique ID for the project
9605
+ */
9606
+ uid: string;
9607
+ /**
9608
+ * (string) - A timestamp indicating when the project was last updated
9609
+ */
9610
+ updateTime: string;
9611
+ }
9612
+ export interface GetPostgresProjectsProjectSpec {
9613
+ /**
9614
+ * (ProjectDefaultEndpointSettings) - The effective default endpoint settings
9615
+ */
9616
+ defaultEndpointSettings?: outputs.GetPostgresProjectsProjectSpecDefaultEndpointSettings;
9617
+ /**
9618
+ * (string) - The effective human-readable project name
9619
+ */
9620
+ displayName?: string;
9621
+ /**
9622
+ * (string) - The effective number of seconds to retain the shared history for point in time recovery
9623
+ */
9624
+ historyRetentionDuration?: string;
9625
+ /**
9626
+ * (integer) - The effective major Postgres version number
9627
+ */
9628
+ pgVersion?: number;
9629
+ /**
9630
+ * (ProjectSettings) - The effective project settings
9631
+ */
9632
+ settings?: outputs.GetPostgresProjectsProjectSpecSettings;
9633
+ }
9634
+ export interface GetPostgresProjectsProjectSpecDefaultEndpointSettings {
9635
+ /**
9636
+ * (number) - The maximum number of Compute Units
9637
+ */
9638
+ autoscalingLimitMaxCu?: number;
9639
+ /**
9640
+ * (number) - The minimum number of Compute Units
9641
+ */
9642
+ autoscalingLimitMinCu?: number;
9643
+ /**
9644
+ * (object) - A raw representation of Postgres settings
9645
+ */
9646
+ pgSettings?: {
9647
+ [key: string]: string;
9648
+ };
9649
+ /**
9650
+ * (object) - A raw representation of PgBouncer settings
9651
+ */
9652
+ pgbouncerSettings?: {
9653
+ [key: string]: string;
9654
+ };
9655
+ /**
9656
+ * (string) - Duration of inactivity after which the compute endpoint is automatically suspended
9657
+ */
9658
+ suspendTimeoutDuration?: string;
9659
+ }
9660
+ export interface GetPostgresProjectsProjectSpecSettings {
9661
+ /**
9662
+ * (boolean) - Sets wal_level=logical for all compute endpoints in this project.
9663
+ * All active endpoints will be suspended.
9664
+ * Once enabled, logical replication cannot be disabled
9665
+ */
9666
+ enableLogicalReplication?: boolean;
9667
+ }
9668
+ export interface GetPostgresProjectsProjectStatus {
9669
+ /**
9670
+ * (integer) - The logical size limit for a branch
9671
+ */
9672
+ branchLogicalSizeLimitBytes: number;
9673
+ /**
9674
+ * (string) - The most recent time when any endpoint of this project was active
9675
+ */
9676
+ computeLastActiveTime: string;
9677
+ /**
9678
+ * (ProjectDefaultEndpointSettings) - The effective default endpoint settings
9679
+ */
9680
+ defaultEndpointSettings: outputs.GetPostgresProjectsProjectStatusDefaultEndpointSettings;
9681
+ /**
9682
+ * (string) - The effective human-readable project name
9683
+ */
9684
+ displayName: string;
9685
+ /**
9686
+ * (string) - The effective number of seconds to retain the shared history for point in time recovery
9687
+ */
9688
+ historyRetentionDuration: string;
9689
+ /**
9690
+ * (integer) - The effective major Postgres version number
9691
+ */
9692
+ pgVersion: number;
9693
+ /**
9694
+ * (ProjectSettings) - The effective project settings
9695
+ */
9696
+ settings: outputs.GetPostgresProjectsProjectStatusSettings;
9697
+ /**
9698
+ * (integer) - The current space occupied by the project in storage
9699
+ */
9700
+ syntheticStorageSizeBytes: number;
9701
+ }
9702
+ export interface GetPostgresProjectsProjectStatusDefaultEndpointSettings {
9703
+ /**
9704
+ * (number) - The maximum number of Compute Units
9705
+ */
9706
+ autoscalingLimitMaxCu?: number;
9707
+ /**
9708
+ * (number) - The minimum number of Compute Units
9709
+ */
9710
+ autoscalingLimitMinCu?: number;
9711
+ /**
9712
+ * (object) - A raw representation of Postgres settings
9713
+ */
9714
+ pgSettings?: {
9715
+ [key: string]: string;
9716
+ };
9717
+ /**
9718
+ * (object) - A raw representation of PgBouncer settings
9719
+ */
9720
+ pgbouncerSettings?: {
9721
+ [key: string]: string;
9722
+ };
9723
+ /**
9724
+ * (string) - Duration of inactivity after which the compute endpoint is automatically suspended
9725
+ */
9726
+ suspendTimeoutDuration?: string;
9727
+ }
9728
+ export interface GetPostgresProjectsProjectStatusSettings {
9729
+ /**
9730
+ * (boolean) - Sets wal_level=logical for all compute endpoints in this project.
9731
+ * All active endpoints will be suspended.
9732
+ * Once enabled, logical replication cannot be disabled
9733
+ */
9734
+ enableLogicalReplication?: boolean;
9735
+ }
9736
+ export interface GetQualityMonitorV2AnomalyDetectionConfig {
9737
+ /**
9738
+ * (list of string) - List of fully qualified table names to exclude from anomaly detection
9739
+ */
9740
+ excludedTableFullNames?: string[];
9741
+ /**
9742
+ * (string) - Run id of the last run of the workflow
9743
+ */
9744
+ lastRunId: string;
9745
+ /**
9746
+ * (string) - The status of the last run of the workflow. Possible values are: `ANOMALY_DETECTION_RUN_STATUS_CANCELED`, `ANOMALY_DETECTION_RUN_STATUS_FAILED`, `ANOMALY_DETECTION_RUN_STATUS_JOB_DELETED`, `ANOMALY_DETECTION_RUN_STATUS_PENDING`, `ANOMALY_DETECTION_RUN_STATUS_RUNNING`, `ANOMALY_DETECTION_RUN_STATUS_SUCCESS`, `ANOMALY_DETECTION_RUN_STATUS_UNKNOWN`, `ANOMALY_DETECTION_RUN_STATUS_WORKSPACE_MISMATCH_ERROR`
9747
+ */
9748
+ latestRunStatus: string;
9749
+ }
9750
+ export interface GetQualityMonitorsV2QualityMonitor {
9751
+ /**
9752
+ * (AnomalyDetectionConfig)
9753
+ */
9754
+ anomalyDetectionConfig: outputs.GetQualityMonitorsV2QualityMonitorAnomalyDetectionConfig;
9755
+ /**
9756
+ * (string) - The uuid of the request object. For example, schema id
9757
+ */
9758
+ objectId: string;
9759
+ /**
9760
+ * (string) - The type of the monitored object. Can be one of the following: schema
9761
+ */
9762
+ objectType: string;
9763
+ }
9764
+ export interface GetQualityMonitorsV2QualityMonitorAnomalyDetectionConfig {
9765
+ /**
9766
+ * (list of string) - List of fully qualified table names to exclude from anomaly detection
9767
+ */
9768
+ excludedTableFullNames?: string[];
9769
+ /**
9770
+ * (string) - Run id of the last run of the workflow
9771
+ */
9772
+ lastRunId: string;
9773
+ /**
9774
+ * (string) - The status of the last run of the workflow. Possible values are: `ANOMALY_DETECTION_RUN_STATUS_CANCELED`, `ANOMALY_DETECTION_RUN_STATUS_FAILED`, `ANOMALY_DETECTION_RUN_STATUS_JOB_DELETED`, `ANOMALY_DETECTION_RUN_STATUS_PENDING`, `ANOMALY_DETECTION_RUN_STATUS_RUNNING`, `ANOMALY_DETECTION_RUN_STATUS_SUCCESS`, `ANOMALY_DETECTION_RUN_STATUS_UNKNOWN`, `ANOMALY_DETECTION_RUN_STATUS_WORKSPACE_MISMATCH_ERROR`
9775
+ */
9776
+ latestRunStatus: string;
9777
+ }
9778
+ export interface GetRegisteredModelModelInfo {
9779
+ /**
9780
+ * the list of aliases associated with this model. Each item is object consisting of following attributes:
9781
+ */
9782
+ aliases?: outputs.GetRegisteredModelModelInfoAlias[];
9783
+ browseOnly?: boolean;
9784
+ /**
9785
+ * The name of the catalog where the schema and the registered model reside.
9786
+ */
9787
+ catalogName?: string;
9788
+ /**
9789
+ * The comment attached to the registered model.
9790
+ */
9791
+ comment?: string;
9792
+ /**
9793
+ * the Unix timestamp at the model's creation
9794
+ */
9795
+ createdAt?: number;
9796
+ /**
9797
+ * the identifier of the user who created the model
9798
+ */
9799
+ createdBy?: string;
9800
+ /**
9801
+ * The fully-qualified name of the registered model (`catalog_name.schema_name.name`).
9802
+ */
9803
+ fullName?: string;
9804
+ /**
9805
+ * the unique identifier of the metastore
9806
+ */
9807
+ metastoreId?: string;
9808
+ /**
9809
+ * The name of the registered model.
9810
+ */
9811
+ name?: string;
9812
+ /**
9813
+ * Name of the registered model owner.
9814
+ */
9815
+ owner?: string;
9816
+ /**
9817
+ * The name of the schema where the registered model resides.
9818
+ */
9819
+ schemaName?: string;
9820
+ /**
9821
+ * The storage location under which model version data files are stored.
9822
+ */
9823
+ storageLocation?: string;
9824
+ /**
9825
+ * the timestamp of the last time changes were made to the model
9826
+ */
9827
+ updatedAt?: number;
9828
+ /**
9829
+ * the identifier of the user who updated the model last time
9830
+ */
9831
+ updatedBy?: string;
9832
+ }
9833
+ export interface GetRegisteredModelModelInfoAlias {
9834
+ /**
9835
+ * string with the name of alias
9836
+ */
9837
+ aliasName?: string;
9838
+ /**
9839
+ * The name of the catalog where the schema and the registered model reside.
9840
+ */
9841
+ catalogName?: string;
9842
+ id?: string;
9843
+ modelName?: string;
9844
+ /**
9845
+ * The name of the schema where the registered model resides.
9846
+ */
9847
+ schemaName?: string;
9848
+ /**
9849
+ * associated model version
9850
+ */
9851
+ versionNum?: number;
9852
+ }
9853
+ export interface GetRegisteredModelProviderConfig {
9854
+ workspaceId: string;
9855
+ }
9856
+ export interface GetRegisteredModelVersionsModelVersion {
9857
+ /**
9858
+ * the list of aliases associated with this model. Each item is object consisting of following attributes:
9859
+ */
9860
+ aliases?: outputs.GetRegisteredModelVersionsModelVersionAlias[];
9861
+ /**
9862
+ * The name of the catalog where the schema and the registered model reside.
9863
+ */
9864
+ catalogName?: string;
9865
+ /**
9866
+ * The comment attached to the registered model.
9867
+ */
9868
+ comment?: string;
9869
+ /**
9870
+ * the Unix timestamp at the model's creation
9871
+ */
9872
+ createdAt?: number;
9873
+ /**
9874
+ * the identifier of the user who created the model
9875
+ */
9876
+ createdBy?: string;
9877
+ /**
9878
+ * The unique identifier of the model version
9879
+ */
9880
+ id?: string;
9881
+ /**
9882
+ * the unique identifier of the metastore
9883
+ */
9884
+ metastoreId?: string;
9885
+ modelName?: string;
9886
+ /**
9887
+ * block describing model version dependencies, for feature-store packaged models. Consists of following attributes:
9888
+ */
9889
+ modelVersionDependencies?: outputs.GetRegisteredModelVersionsModelVersionModelVersionDependency[];
9890
+ /**
9891
+ * MLflow run ID used when creating the model version, if `source` was generated by an experiment run stored in an MLflow tracking server
9892
+ */
9893
+ runId?: string;
9894
+ /**
9895
+ * ID of the Databricks workspace containing the MLflow run that generated this model version, if applicable
9896
+ */
9897
+ runWorkspaceId?: number;
9898
+ /**
9899
+ * The name of the schema where the registered model resides.
9900
+ */
9901
+ schemaName?: string;
9902
+ /**
9903
+ * URI indicating the location of the source artifacts (files) for the model version.
9904
+ */
9905
+ source?: string;
8953
9906
  /**
8954
9907
  * Current status of the model version.
8955
9908
  */
@@ -9051,10 +10004,25 @@ export interface GetRfaAccessRequestDestinationsDestination {
9051
10004
  */
9052
10005
  specialDestination?: string;
9053
10006
  }
10007
+ export interface GetRfaAccessRequestDestinationsDestinationSourceSecurable {
10008
+ /**
10009
+ * The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
10010
+ */
10011
+ fullName?: string;
10012
+ /**
10013
+ * (string) - Optional. The name of the Share object that contains the securable when the securable is
10014
+ * getting shared in D2D Delta Sharing
10015
+ */
10016
+ providerShare?: string;
10017
+ /**
10018
+ * (string) - Required. The type of securable (catalog/schema/table).
10019
+ * Optional if resourceName is present. Possible values are: `CATALOG`, `CLEAN_ROOM`, `CONNECTION`, `CREDENTIAL`, `EXTERNAL_LOCATION`, `EXTERNAL_METADATA`, `FUNCTION`, `METASTORE`, `PIPELINE`, `PROVIDER`, `RECIPIENT`, `SCHEMA`, `SHARE`, `STAGING_TABLE`, `STORAGE_CREDENTIAL`, `TABLE`, `VOLUME`
10020
+ */
10021
+ type?: string;
10022
+ }
9054
10023
  export interface GetRfaAccessRequestDestinationsSecurable {
9055
10024
  /**
9056
- * (string) - Required. The full name of the catalog/schema/table.
9057
- * Optional if resourceName is present
10025
+ * The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
9058
10026
  */
9059
10027
  fullName?: string;
9060
10028
  /**
@@ -11230,6 +12198,7 @@ export interface JobQueue {
11230
12198
  enabled: boolean;
11231
12199
  }
11232
12200
  export interface JobRunAs {
12201
+ groupName?: string;
11233
12202
  /**
11234
12203
  * The application ID of an active service principal. Setting this field requires the `servicePrincipal/user` role.
11235
12204
  *
@@ -14374,6 +15343,7 @@ export interface MwsNetworkConnectivityConfigEgressConfigTargetRulesAwsPrivateEn
14374
15343
  domainNames?: string[];
14375
15344
  enabled?: boolean;
14376
15345
  endpointService?: string;
15346
+ errorMessage?: string;
14377
15347
  /**
14378
15348
  * Canonical unique identifier of Network Connectivity Config in Databricks Account
14379
15349
  */
@@ -14396,6 +15366,7 @@ export interface MwsNetworkConnectivityConfigEgressConfigTargetRulesAzurePrivate
14396
15366
  deactivatedAt?: number;
14397
15367
  domainNames?: string[];
14398
15368
  endpointName?: string;
15369
+ errorMessage?: string;
14399
15370
  groupId?: string;
14400
15371
  /**
14401
15372
  * Canonical unique identifier of Network Connectivity Config in Databricks Account
@@ -14418,11 +15389,11 @@ export interface MwsNetworksGcpNetworkInfo {
14418
15389
  */
14419
15390
  networkProjectId: string;
14420
15391
  /**
14421
- * @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.101.0/docs/guides/gcp-workspace#creating-a-vpc
15392
+ * @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.102.0/docs/guides/gcp-workspace#creating-a-vpc
14422
15393
  */
14423
15394
  podIpRangeName?: string;
14424
15395
  /**
14425
- * @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.101.0/docs/guides/gcp-workspace#creating-a-vpc
15396
+ * @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.102.0/docs/guides/gcp-workspace#creating-a-vpc
14426
15397
  */
14427
15398
  serviceIpRangeName?: string;
14428
15399
  /**
@@ -14483,11 +15454,11 @@ export interface MwsWorkspacesExternalCustomerInfo {
14483
15454
  }
14484
15455
  export interface MwsWorkspacesGcpManagedNetworkConfig {
14485
15456
  /**
14486
- * @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.101.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
15457
+ * @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.102.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
14487
15458
  */
14488
15459
  gkeClusterPodIpRange?: string;
14489
15460
  /**
14490
- * @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.101.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
15461
+ * @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.102.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
14491
15462
  */
14492
15463
  gkeClusterServiceIpRange?: string;
14493
15464
  subnetCidr: string;
@@ -14964,6 +15935,7 @@ export interface PipelineIngestionDefinitionObjectReportTableConfiguration {
14964
15935
  includeColumns?: string[];
14965
15936
  primaryKeys?: string[];
14966
15937
  queryBasedConnectorConfig?: outputs.PipelineIngestionDefinitionObjectReportTableConfigurationQueryBasedConnectorConfig;
15938
+ rowFilter?: string;
14967
15939
  salesforceIncludeFormulaFields?: boolean;
14968
15940
  scdType?: string;
14969
15941
  sequenceBies?: string[];
@@ -14997,6 +15969,7 @@ export interface PipelineIngestionDefinitionObjectSchemaTableConfiguration {
14997
15969
  includeColumns?: string[];
14998
15970
  primaryKeys?: string[];
14999
15971
  queryBasedConnectorConfig?: outputs.PipelineIngestionDefinitionObjectSchemaTableConfigurationQueryBasedConnectorConfig;
15972
+ rowFilter?: string;
15000
15973
  salesforceIncludeFormulaFields?: boolean;
15001
15974
  scdType?: string;
15002
15975
  sequenceBies?: string[];
@@ -15032,6 +16005,7 @@ export interface PipelineIngestionDefinitionObjectTableTableConfiguration {
15032
16005
  includeColumns?: string[];
15033
16006
  primaryKeys?: string[];
15034
16007
  queryBasedConnectorConfig?: outputs.PipelineIngestionDefinitionObjectTableTableConfigurationQueryBasedConnectorConfig;
16008
+ rowFilter?: string;
15035
16009
  salesforceIncludeFormulaFields?: boolean;
15036
16010
  scdType?: string;
15037
16011
  sequenceBies?: string[];
@@ -15075,6 +16049,7 @@ export interface PipelineIngestionDefinitionTableConfiguration {
15075
16049
  includeColumns?: string[];
15076
16050
  primaryKeys?: string[];
15077
16051
  queryBasedConnectorConfig?: outputs.PipelineIngestionDefinitionTableConfigurationQueryBasedConnectorConfig;
16052
+ rowFilter?: string;
15078
16053
  salesforceIncludeFormulaFields?: boolean;
15079
16054
  scdType?: string;
15080
16055
  sequenceBies?: string[];
@@ -15206,6 +16181,310 @@ export interface PolicyInfoRowFilterUsing {
15206
16181
  */
15207
16182
  constant?: string;
15208
16183
  }
16184
+ export interface PostgresBranchSpec {
16185
+ /**
16186
+ * (boolean) - Whether the branch is the project's default branch
16187
+ */
16188
+ default?: boolean;
16189
+ /**
16190
+ * (boolean) - Whether the branch is protected
16191
+ */
16192
+ isProtected?: boolean;
16193
+ /**
16194
+ * (string) - The name of the source branch from which this branch was created.
16195
+ * Format: projects/{project_id}/branches/{branch_id}
16196
+ */
16197
+ sourceBranch?: string;
16198
+ /**
16199
+ * (string) - The Log Sequence Number (LSN) on the source branch from which this branch was created
16200
+ */
16201
+ sourceBranchLsn?: string;
16202
+ /**
16203
+ * (string) - The point in time on the source branch from which this branch was created
16204
+ */
16205
+ sourceBranchTime?: string;
16206
+ }
16207
+ export interface PostgresBranchStatus {
16208
+ /**
16209
+ * (string) - The branch's state, indicating if it is initializing, ready for use, or archived. Possible values are: `ARCHIVED`, `IMPORTING`, `INIT`, `READY`, `RESETTING`
16210
+ */
16211
+ currentState: string;
16212
+ /**
16213
+ * (boolean) - Whether the branch is the project's default branch
16214
+ */
16215
+ default: boolean;
16216
+ /**
16217
+ * (boolean) - Whether the branch is protected
16218
+ */
16219
+ isProtected: boolean;
16220
+ /**
16221
+ * (integer) - The logical size of the branch
16222
+ */
16223
+ logicalSizeBytes: number;
16224
+ /**
16225
+ * (string) - The pending state of the branch, if a state transition is in progress. Possible values are: `ARCHIVED`, `IMPORTING`, `INIT`, `READY`, `RESETTING`
16226
+ */
16227
+ pendingState: string;
16228
+ /**
16229
+ * (string) - The name of the source branch from which this branch was created.
16230
+ * Format: projects/{project_id}/branches/{branch_id}
16231
+ */
16232
+ sourceBranch: string;
16233
+ /**
16234
+ * (string) - The Log Sequence Number (LSN) on the source branch from which this branch was created
16235
+ */
16236
+ sourceBranchLsn: string;
16237
+ /**
16238
+ * (string) - The point in time on the source branch from which this branch was created
16239
+ */
16240
+ sourceBranchTime: string;
16241
+ /**
16242
+ * (string) - A timestamp indicating when the `currentState` began
16243
+ */
16244
+ stateChangeTime: string;
16245
+ }
16246
+ export interface PostgresEndpointSpec {
16247
+ /**
16248
+ * (number) - The maximum number of Compute Units
16249
+ */
16250
+ autoscalingLimitMaxCu?: number;
16251
+ /**
16252
+ * (number) - The minimum number of Compute Units
16253
+ */
16254
+ autoscalingLimitMinCu?: number;
16255
+ /**
16256
+ * (boolean) - Whether to restrict connections to the compute endpoint.
16257
+ * Enabling this option schedules a suspend compute operation.
16258
+ * A disabled compute endpoint cannot be enabled by a connection or
16259
+ * console action
16260
+ */
16261
+ disabled?: boolean;
16262
+ /**
16263
+ * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `READ_ONLY`, `READ_WRITE`
16264
+ */
16265
+ endpointType: string;
16266
+ /**
16267
+ * (string) - Possible values are: `TRANSACTION`
16268
+ */
16269
+ poolerMode?: string;
16270
+ /**
16271
+ * (EndpointSettings)
16272
+ */
16273
+ settings?: outputs.PostgresEndpointSpecSettings;
16274
+ /**
16275
+ * (string) - Duration of inactivity after which the compute endpoint is automatically suspended
16276
+ */
16277
+ suspendTimeoutDuration?: string;
16278
+ }
16279
+ export interface PostgresEndpointSpecSettings {
16280
+ /**
16281
+ * A raw representation of Postgres settings
16282
+ */
16283
+ pgSettings?: {
16284
+ [key: string]: string;
16285
+ };
16286
+ /**
16287
+ * A raw representation of PgBouncer settings
16288
+ */
16289
+ pgbouncerSettings?: {
16290
+ [key: string]: string;
16291
+ };
16292
+ }
16293
+ export interface PostgresEndpointStatus {
16294
+ /**
16295
+ * (number) - The maximum number of Compute Units
16296
+ */
16297
+ autoscalingLimitMaxCu: number;
16298
+ /**
16299
+ * (number) - The minimum number of Compute Units
16300
+ */
16301
+ autoscalingLimitMinCu: number;
16302
+ /**
16303
+ * (string) - Possible values are: `ACTIVE`, `IDLE`, `INIT`
16304
+ */
16305
+ currentState: string;
16306
+ /**
16307
+ * (boolean) - Whether to restrict connections to the compute endpoint.
16308
+ * Enabling this option schedules a suspend compute operation.
16309
+ * A disabled compute endpoint cannot be enabled by a connection or
16310
+ * console action
16311
+ */
16312
+ disabled: boolean;
16313
+ /**
16314
+ * (string) - The endpoint type. A branch can only have one READ_WRITE endpoint. Possible values are: `READ_ONLY`, `READ_WRITE`
16315
+ */
16316
+ endpointType: string;
16317
+ /**
16318
+ * (string) - The hostname of the compute endpoint. This is the hostname specified when connecting to a database
16319
+ */
16320
+ host: string;
16321
+ /**
16322
+ * (string) - A timestamp indicating when the compute endpoint was last active
16323
+ */
16324
+ lastActiveTime: string;
16325
+ /**
16326
+ * (string) - Possible values are: `ACTIVE`, `IDLE`, `INIT`
16327
+ */
16328
+ pendingState: string;
16329
+ /**
16330
+ * (string) - Possible values are: `TRANSACTION`
16331
+ */
16332
+ poolerMode: string;
16333
+ /**
16334
+ * (EndpointSettings)
16335
+ */
16336
+ settings: outputs.PostgresEndpointStatusSettings;
16337
+ /**
16338
+ * (string) - A timestamp indicating when the compute endpoint was last started
16339
+ */
16340
+ startTime: string;
16341
+ /**
16342
+ * (string) - A timestamp indicating when the compute endpoint was last suspended
16343
+ */
16344
+ suspendTime: string;
16345
+ /**
16346
+ * (string) - Duration of inactivity after which the compute endpoint is automatically suspended
16347
+ */
16348
+ suspendTimeoutDuration: string;
16349
+ }
16350
+ export interface PostgresEndpointStatusSettings {
16351
+ /**
16352
+ * A raw representation of Postgres settings
16353
+ */
16354
+ pgSettings?: {
16355
+ [key: string]: string;
16356
+ };
16357
+ /**
16358
+ * A raw representation of PgBouncer settings
16359
+ */
16360
+ pgbouncerSettings?: {
16361
+ [key: string]: string;
16362
+ };
16363
+ }
16364
+ export interface PostgresProjectSpec {
16365
+ /**
16366
+ * (ProjectDefaultEndpointSettings) - The effective default endpoint settings
16367
+ */
16368
+ defaultEndpointSettings?: outputs.PostgresProjectSpecDefaultEndpointSettings;
16369
+ /**
16370
+ * (string) - The effective human-readable project name
16371
+ */
16372
+ displayName?: string;
16373
+ /**
16374
+ * (string) - The effective number of seconds to retain the shared history for point in time recovery
16375
+ */
16376
+ historyRetentionDuration?: string;
16377
+ /**
16378
+ * (integer) - The effective major Postgres version number
16379
+ */
16380
+ pgVersion?: number;
16381
+ /**
16382
+ * (ProjectSettings) - The effective project settings
16383
+ */
16384
+ settings?: outputs.PostgresProjectSpecSettings;
16385
+ }
16386
+ export interface PostgresProjectSpecDefaultEndpointSettings {
16387
+ /**
16388
+ * The maximum number of Compute Units
16389
+ */
16390
+ autoscalingLimitMaxCu?: number;
16391
+ /**
16392
+ * The minimum number of Compute Units
16393
+ */
16394
+ autoscalingLimitMinCu?: number;
16395
+ /**
16396
+ * A raw representation of Postgres settings
16397
+ */
16398
+ pgSettings?: {
16399
+ [key: string]: string;
16400
+ };
16401
+ /**
16402
+ * A raw representation of PgBouncer settings
16403
+ */
16404
+ pgbouncerSettings?: {
16405
+ [key: string]: string;
16406
+ };
16407
+ /**
16408
+ * Duration of inactivity after which the compute endpoint is automatically suspended
16409
+ */
16410
+ suspendTimeoutDuration?: string;
16411
+ }
16412
+ export interface PostgresProjectSpecSettings {
16413
+ /**
16414
+ * Sets wal_level=logical for all compute endpoints in this project.
16415
+ * All active endpoints will be suspended.
16416
+ * Once enabled, logical replication cannot be disabled
16417
+ */
16418
+ enableLogicalReplication?: boolean;
16419
+ }
16420
+ export interface PostgresProjectStatus {
16421
+ /**
16422
+ * (integer) - The logical size limit for a branch
16423
+ */
16424
+ branchLogicalSizeLimitBytes: number;
16425
+ /**
16426
+ * (string) - The most recent time when any endpoint of this project was active
16427
+ */
16428
+ computeLastActiveTime: string;
16429
+ /**
16430
+ * (ProjectDefaultEndpointSettings) - The effective default endpoint settings
16431
+ */
16432
+ defaultEndpointSettings: outputs.PostgresProjectStatusDefaultEndpointSettings;
16433
+ /**
16434
+ * (string) - The effective human-readable project name
16435
+ */
16436
+ displayName: string;
16437
+ /**
16438
+ * (string) - The effective number of seconds to retain the shared history for point in time recovery
16439
+ */
16440
+ historyRetentionDuration: string;
16441
+ /**
16442
+ * (integer) - The effective major Postgres version number
16443
+ */
16444
+ pgVersion: number;
16445
+ /**
16446
+ * (ProjectSettings) - The effective project settings
16447
+ */
16448
+ settings: outputs.PostgresProjectStatusSettings;
16449
+ /**
16450
+ * (integer) - The current space occupied by the project in storage
16451
+ */
16452
+ syntheticStorageSizeBytes: number;
16453
+ }
16454
+ export interface PostgresProjectStatusDefaultEndpointSettings {
16455
+ /**
16456
+ * The maximum number of Compute Units
16457
+ */
16458
+ autoscalingLimitMaxCu?: number;
16459
+ /**
16460
+ * The minimum number of Compute Units
16461
+ */
16462
+ autoscalingLimitMinCu?: number;
16463
+ /**
16464
+ * A raw representation of Postgres settings
16465
+ */
16466
+ pgSettings?: {
16467
+ [key: string]: string;
16468
+ };
16469
+ /**
16470
+ * A raw representation of PgBouncer settings
16471
+ */
16472
+ pgbouncerSettings?: {
16473
+ [key: string]: string;
16474
+ };
16475
+ /**
16476
+ * Duration of inactivity after which the compute endpoint is automatically suspended
16477
+ */
16478
+ suspendTimeoutDuration?: string;
16479
+ }
16480
+ export interface PostgresProjectStatusSettings {
16481
+ /**
16482
+ * Sets wal_level=logical for all compute endpoints in this project.
16483
+ * All active endpoints will be suspended.
16484
+ * Once enabled, logical replication cannot be disabled
16485
+ */
16486
+ enableLogicalReplication?: boolean;
16487
+ }
15209
16488
  export interface QualityMonitorCustomMetric {
15210
16489
  /**
15211
16490
  * [create metric definition](https://docs.databricks.com/en/lakehouse-monitoring/custom-metrics.html#create-definition)
@@ -15310,6 +16589,10 @@ export interface QualityMonitorTimeSeries {
15310
16589
  timestampCol: string;
15311
16590
  }
15312
16591
  export interface QualityMonitorV2AnomalyDetectionConfig {
16592
+ /**
16593
+ * List of fully qualified table names to exclude from anomaly detection
16594
+ */
16595
+ excludedTableFullNames?: string[];
15313
16596
  /**
15314
16597
  * (string) - Run id of the last run of the workflow
15315
16598
  */
@@ -15556,6 +16839,22 @@ export interface RfaAccessRequestDestinationsDestination {
15556
16839
  */
15557
16840
  specialDestination?: string;
15558
16841
  }
16842
+ export interface RfaAccessRequestDestinationsDestinationSourceSecurable {
16843
+ /**
16844
+ * (string) - The full name of the securable. Redundant with the name in the securable object, but necessary for Pulumi integration
16845
+ */
16846
+ fullName?: string;
16847
+ /**
16848
+ * Optional. The name of the Share object that contains the securable when the securable is
16849
+ * getting shared in D2D Delta Sharing
16850
+ */
16851
+ providerShare?: string;
16852
+ /**
16853
+ * Required. The type of securable (catalog/schema/table).
16854
+ * Optional if resourceName is present. Possible values are: `CATALOG`, `CLEAN_ROOM`, `CONNECTION`, `CREDENTIAL`, `EXTERNAL_LOCATION`, `EXTERNAL_METADATA`, `FUNCTION`, `METASTORE`, `PIPELINE`, `PROVIDER`, `RECIPIENT`, `SCHEMA`, `SHARE`, `STAGING_TABLE`, `STORAGE_CREDENTIAL`, `TABLE`, `VOLUME`
16855
+ */
16856
+ type?: string;
16857
+ }
15559
16858
  export interface RfaAccessRequestDestinationsSecurable {
15560
16859
  /**
15561
16860
  * Required. The full name of the catalog/schema/table.