@pulumi/databricks 1.85.0 → 1.86.0-alpha.1771301280

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 (101) hide show
  1. package/app.d.ts +3 -0
  2. package/app.js +2 -0
  3. package/app.js.map +1 -1
  4. package/appsSpace.d.ts +207 -0
  5. package/appsSpace.js +86 -0
  6. package/appsSpace.js.map +1 -0
  7. package/clusterPolicy.d.ts +3 -0
  8. package/clusterPolicy.js +2 -0
  9. package/clusterPolicy.js.map +1 -1
  10. package/dbfsFile.d.ts +14 -0
  11. package/dbfsFile.js +2 -0
  12. package/dbfsFile.js.map +1 -1
  13. package/endpoint.d.ts +159 -0
  14. package/endpoint.js +102 -0
  15. package/endpoint.js.map +1 -0
  16. package/entitlements.d.ts +14 -0
  17. package/entitlements.js +2 -0
  18. package/entitlements.js.map +1 -1
  19. package/entityTagAssignment.d.ts +24 -0
  20. package/entityTagAssignment.js +6 -0
  21. package/entityTagAssignment.js.map +1 -1
  22. package/getAppsSpace.d.ts +117 -0
  23. package/getAppsSpace.js +30 -0
  24. package/getAppsSpace.js.map +1 -0
  25. package/getAppsSpaces.d.ts +49 -0
  26. package/getAppsSpaces.js +32 -0
  27. package/getAppsSpaces.js.map +1 -0
  28. package/getDatabaseInstances.d.ts +2 -2
  29. package/getEndpoint.d.ts +94 -0
  30. package/getEndpoint.js +46 -0
  31. package/getEndpoint.js.map +1 -0
  32. package/getEndpoints.d.ts +54 -0
  33. package/getEndpoints.js +48 -0
  34. package/getEndpoints.js.map +1 -0
  35. package/getEntityTagAssignment.d.ts +12 -0
  36. package/getEntityTagAssignment.js.map +1 -1
  37. package/getPostgresProjects.d.ts +2 -2
  38. package/index.d.ts +18 -0
  39. package/index.js +30 -8
  40. package/index.js.map +1 -1
  41. package/instancePool.d.ts +3 -0
  42. package/instancePool.js +2 -0
  43. package/instancePool.js.map +1 -1
  44. package/instanceProfile.d.ts +14 -0
  45. package/instanceProfile.js +2 -0
  46. package/instanceProfile.js.map +1 -1
  47. package/metastoreProvider.d.ts +14 -0
  48. package/metastoreProvider.js +2 -0
  49. package/metastoreProvider.js.map +1 -1
  50. package/mount.d.ts +6 -0
  51. package/mount.js +5 -0
  52. package/mount.js.map +1 -1
  53. package/mwsWorkspaces.d.ts +3 -3
  54. package/notificationDestination.d.ts +12 -0
  55. package/notificationDestination.js +2 -0
  56. package/notificationDestination.js.map +1 -1
  57. package/oboToken.d.ts +14 -0
  58. package/oboToken.js +2 -0
  59. package/oboToken.js.map +1 -1
  60. package/package.json +2 -2
  61. package/permissions.d.ts +3 -0
  62. package/permissions.js +2 -0
  63. package/permissions.js.map +1 -1
  64. package/pipeline.d.ts +3 -0
  65. package/pipeline.js +2 -0
  66. package/pipeline.js.map +1 -1
  67. package/repo.d.ts +3 -0
  68. package/repo.js +2 -0
  69. package/repo.js.map +1 -1
  70. package/secretScope.d.ts +12 -0
  71. package/secretScope.js +2 -0
  72. package/secretScope.js.map +1 -1
  73. package/servicePrincipalSecret.d.ts +14 -0
  74. package/servicePrincipalSecret.js +2 -0
  75. package/servicePrincipalSecret.js.map +1 -1
  76. package/sqlDashboard.d.ts +14 -0
  77. package/sqlDashboard.js +2 -0
  78. package/sqlDashboard.js.map +1 -1
  79. package/sqlGlobalConfig.d.ts +14 -0
  80. package/sqlGlobalConfig.js +2 -0
  81. package/sqlGlobalConfig.js.map +1 -1
  82. package/sqlQuery.d.ts +3 -0
  83. package/sqlQuery.js +2 -0
  84. package/sqlQuery.js.map +1 -1
  85. package/sqlVisualization.d.ts +14 -0
  86. package/sqlVisualization.js +2 -0
  87. package/sqlVisualization.js.map +1 -1
  88. package/sqlWidget.d.ts +12 -0
  89. package/sqlWidget.js +2 -0
  90. package/sqlWidget.js.map +1 -1
  91. package/table.d.ts +3 -0
  92. package/table.js +2 -0
  93. package/table.js.map +1 -1
  94. package/token.d.ts +17 -3
  95. package/token.js +2 -0
  96. package/token.js.map +1 -1
  97. package/types/input.d.ts +312 -6
  98. package/types/output.d.ts +863 -21
  99. package/workspaceConf.d.ts +14 -0
  100. package/workspaceConf.js +2 -0
  101. package/workspaceConf.js.map +1 -1
package/types/output.d.ts CHANGED
@@ -811,6 +811,100 @@ export interface AppsSettingsCustomTemplateProviderConfig {
811
811
  */
812
812
  workspaceId: string;
813
813
  }
814
+ export interface AppsSpaceProviderConfig {
815
+ /**
816
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
817
+ */
818
+ workspaceId: string;
819
+ }
820
+ export interface AppsSpaceResource {
821
+ database?: outputs.AppsSpaceResourceDatabase;
822
+ /**
823
+ * The description of the app space
824
+ */
825
+ description?: string;
826
+ experiment?: outputs.AppsSpaceResourceExperiment;
827
+ genieSpace?: outputs.AppsSpaceResourceGenieSpace;
828
+ job?: outputs.AppsSpaceResourceJob;
829
+ /**
830
+ * (string) - The name of the app space. The name must contain only lowercase alphanumeric characters and hyphens.
831
+ * It must be unique within the workspace
832
+ */
833
+ name: string;
834
+ secret?: outputs.AppsSpaceResourceSecret;
835
+ servingEndpoint?: outputs.AppsSpaceResourceServingEndpoint;
836
+ sqlWarehouse?: outputs.AppsSpaceResourceSqlWarehouse;
837
+ ucSecurable?: outputs.AppsSpaceResourceUcSecurable;
838
+ }
839
+ export interface AppsSpaceResourceDatabase {
840
+ databaseName: string;
841
+ instanceName: string;
842
+ permission: string;
843
+ }
844
+ export interface AppsSpaceResourceExperiment {
845
+ experimentId: string;
846
+ permission: string;
847
+ }
848
+ export interface AppsSpaceResourceGenieSpace {
849
+ /**
850
+ * (string) - The name of the app space. The name must contain only lowercase alphanumeric characters and hyphens.
851
+ * It must be unique within the workspace
852
+ */
853
+ name: string;
854
+ permission: string;
855
+ spaceId: string;
856
+ }
857
+ export interface AppsSpaceResourceJob {
858
+ /**
859
+ * (string) - The unique identifier of the app space
860
+ */
861
+ id: string;
862
+ permission: string;
863
+ }
864
+ export interface AppsSpaceResourceSecret {
865
+ /**
866
+ * Key of the secret to grant permission on
867
+ */
868
+ key: string;
869
+ permission: string;
870
+ /**
871
+ * Scope of the secret to grant permission on
872
+ */
873
+ scope: string;
874
+ }
875
+ export interface AppsSpaceResourceServingEndpoint {
876
+ /**
877
+ * (string) - The name of the app space. The name must contain only lowercase alphanumeric characters and hyphens.
878
+ * It must be unique within the workspace
879
+ */
880
+ name: string;
881
+ permission: string;
882
+ }
883
+ export interface AppsSpaceResourceSqlWarehouse {
884
+ /**
885
+ * (string) - The unique identifier of the app space
886
+ */
887
+ id: string;
888
+ permission: string;
889
+ }
890
+ export interface AppsSpaceResourceUcSecurable {
891
+ permission: string;
892
+ securableFullName: string;
893
+ /**
894
+ * Possible values are: `CONNECTION`, `FUNCTION`, `TABLE`, `VOLUME`
895
+ */
896
+ securableType: string;
897
+ }
898
+ export interface AppsSpaceStatus {
899
+ /**
900
+ * (string) - Message providing context about the current state
901
+ */
902
+ message: string;
903
+ /**
904
+ * (string) - The state of the app space. Possible values are: `SPACE_ACTIVE`, `SPACE_CREATING`, `SPACE_DELETED`, `SPACE_DELETING`, `SPACE_ERROR`, `SPACE_UPDATING`
905
+ */
906
+ state: string;
907
+ }
814
908
  export interface ArtifactAllowlistArtifactMatcher {
815
909
  /**
816
910
  * The artifact path or maven coordinate.
@@ -1327,6 +1421,9 @@ export interface ClusterPolicyLibrary {
1327
1421
  egg?: string;
1328
1422
  jar?: string;
1329
1423
  maven?: outputs.ClusterPolicyLibraryMaven;
1424
+ /**
1425
+ * Configure the provider for management through account provider. This block consists of the following fields:
1426
+ */
1330
1427
  providerConfig?: outputs.ClusterPolicyLibraryProviderConfig;
1331
1428
  pypi?: outputs.ClusterPolicyLibraryPypi;
1332
1429
  requirements?: string;
@@ -1342,12 +1439,21 @@ export interface ClusterPolicyLibraryMaven {
1342
1439
  repo?: string;
1343
1440
  }
1344
1441
  export interface ClusterPolicyLibraryProviderConfig {
1442
+ /**
1443
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
1444
+ */
1345
1445
  workspaceId: string;
1346
1446
  }
1347
1447
  export interface ClusterPolicyLibraryPypi {
1348
1448
  package: string;
1349
1449
  repo?: string;
1350
1450
  }
1451
+ export interface ClusterPolicyProviderConfig {
1452
+ /**
1453
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
1454
+ */
1455
+ workspaceId: string;
1456
+ }
1351
1457
  export interface ClusterProviderConfig {
1352
1458
  /**
1353
1459
  * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
@@ -2012,6 +2118,12 @@ export interface DatabaseSyncedDatabaseTableSpecNewPipelineSpec {
2012
2118
  */
2013
2119
  storageSchema?: string;
2014
2120
  }
2121
+ export interface DbfsFileProviderConfig {
2122
+ /**
2123
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
2124
+ */
2125
+ workspaceId: string;
2126
+ }
2015
2127
  export interface DefaultNamespaceSettingNamespace {
2016
2128
  /**
2017
2129
  * The value for the setting.
@@ -2063,12 +2175,37 @@ export interface DisableLegacyFeaturesSettingDisableLegacyFeatures {
2063
2175
  export interface DisableLegacyFeaturesSettingProviderConfig {
2064
2176
  workspaceId: string;
2065
2177
  }
2178
+ export interface EndpointAzurePrivateEndpointInfo {
2179
+ /**
2180
+ * The name of the Private Endpoint in the Azure subscription
2181
+ */
2182
+ privateEndpointName: string;
2183
+ /**
2184
+ * The GUID of the Private Endpoint resource in the Azure subscription.
2185
+ * This is assigned by Azure when the user sets up the Private Endpoint
2186
+ */
2187
+ privateEndpointResourceGuid: string;
2188
+ /**
2189
+ * (string) - The full resource ID of the Private Endpoint
2190
+ */
2191
+ privateEndpointResourceId: string;
2192
+ /**
2193
+ * (string) - The resource ID of the Databricks Private Link Service that this Private Endpoint connects to
2194
+ */
2195
+ privateLinkServiceId: string;
2196
+ }
2066
2197
  export interface EnhancedSecurityMonitoringWorkspaceSettingEnhancedSecurityMonitoringWorkspace {
2067
2198
  isEnabled: boolean;
2068
2199
  }
2069
2200
  export interface EnhancedSecurityMonitoringWorkspaceSettingProviderConfig {
2070
2201
  workspaceId: string;
2071
2202
  }
2203
+ export interface EntitlementsProviderConfig {
2204
+ /**
2205
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
2206
+ */
2207
+ workspaceId: string;
2208
+ }
2072
2209
  export interface EntityTagAssignmentProviderConfig {
2073
2210
  /**
2074
2211
  * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
@@ -3366,6 +3503,7 @@ export interface GetAppApp {
3366
3503
  * name of the app service principal
3367
3504
  */
3368
3505
  servicePrincipalName: string;
3506
+ space?: string;
3369
3507
  /**
3370
3508
  * The update time of the app.
3371
3509
  */
@@ -3731,6 +3869,7 @@ export interface GetAppsApp {
3731
3869
  * name of the app service principal
3732
3870
  */
3733
3871
  servicePrincipalName: string;
3872
+ space?: string;
3734
3873
  /**
3735
3874
  * The update time of the app.
3736
3875
  */
@@ -4223,45 +4362,440 @@ export interface GetAppsSettingsCustomTemplatesTemplateManifestResourceSpecExper
4223
4362
  */
4224
4363
  permission: string;
4225
4364
  }
4226
- export interface GetAppsSettingsCustomTemplatesTemplateManifestResourceSpecJobSpec {
4365
+ export interface GetAppsSettingsCustomTemplatesTemplateManifestResourceSpecJobSpec {
4366
+ /**
4367
+ * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4368
+ */
4369
+ permission: string;
4370
+ }
4371
+ export interface GetAppsSettingsCustomTemplatesTemplateManifestResourceSpecSecretSpec {
4372
+ /**
4373
+ * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4374
+ */
4375
+ permission: string;
4376
+ }
4377
+ export interface GetAppsSettingsCustomTemplatesTemplateManifestResourceSpecServingEndpointSpec {
4378
+ /**
4379
+ * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4380
+ */
4381
+ permission: string;
4382
+ }
4383
+ export interface GetAppsSettingsCustomTemplatesTemplateManifestResourceSpecSqlWarehouseSpec {
4384
+ /**
4385
+ * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4386
+ */
4387
+ permission: string;
4388
+ }
4389
+ export interface GetAppsSettingsCustomTemplatesTemplateManifestResourceSpecUcSecurableSpec {
4390
+ /**
4391
+ * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4392
+ */
4393
+ permission: string;
4394
+ /**
4395
+ * (string) - Possible values are: `CONNECTION`, `FUNCTION`, `TABLE`, `VOLUME`
4396
+ */
4397
+ securableType: string;
4398
+ }
4399
+ export interface GetAppsSettingsCustomTemplatesTemplateProviderConfig {
4400
+ /**
4401
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
4402
+ */
4403
+ workspaceId: string;
4404
+ }
4405
+ export interface GetAppsSpaceProviderConfig {
4406
+ /**
4407
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
4408
+ */
4409
+ workspaceId: string;
4410
+ }
4411
+ export interface GetAppsSpaceResource {
4412
+ /**
4413
+ * (AppResourceDatabase)
4414
+ */
4415
+ database?: outputs.GetAppsSpaceResourceDatabase;
4416
+ /**
4417
+ * (string) - Description of the App Resource
4418
+ */
4419
+ description?: string;
4420
+ /**
4421
+ * (AppResourceExperiment)
4422
+ */
4423
+ experiment?: outputs.GetAppsSpaceResourceExperiment;
4424
+ /**
4425
+ * (AppResourceGenieSpace)
4426
+ */
4427
+ genieSpace?: outputs.GetAppsSpaceResourceGenieSpace;
4428
+ /**
4429
+ * (AppResourceJob)
4430
+ */
4431
+ job?: outputs.GetAppsSpaceResourceJob;
4432
+ /**
4433
+ * The name of the app space. The name must contain only lowercase alphanumeric characters and hyphens.
4434
+ * It must be unique within the workspace
4435
+ */
4436
+ name: string;
4437
+ /**
4438
+ * (AppResourceSecret)
4439
+ */
4440
+ secret?: outputs.GetAppsSpaceResourceSecret;
4441
+ /**
4442
+ * (AppResourceServingEndpoint)
4443
+ */
4444
+ servingEndpoint?: outputs.GetAppsSpaceResourceServingEndpoint;
4445
+ /**
4446
+ * (AppResourceSqlWarehouse)
4447
+ */
4448
+ sqlWarehouse?: outputs.GetAppsSpaceResourceSqlWarehouse;
4449
+ /**
4450
+ * (AppResourceUcSecurable)
4451
+ */
4452
+ ucSecurable?: outputs.GetAppsSpaceResourceUcSecurable;
4453
+ }
4454
+ export interface GetAppsSpaceResourceDatabase {
4455
+ /**
4456
+ * (string)
4457
+ */
4458
+ databaseName: string;
4459
+ /**
4460
+ * (string)
4461
+ */
4462
+ instanceName: string;
4463
+ /**
4464
+ * (string) - Possible values are: `EXECUTE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4465
+ */
4466
+ permission: string;
4467
+ }
4468
+ export interface GetAppsSpaceResourceExperiment {
4469
+ /**
4470
+ * (string)
4471
+ */
4472
+ experimentId: string;
4473
+ /**
4474
+ * (string) - Possible values are: `EXECUTE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4475
+ */
4476
+ permission: string;
4477
+ }
4478
+ export interface GetAppsSpaceResourceGenieSpace {
4479
+ /**
4480
+ * The name of the app space. The name must contain only lowercase alphanumeric characters and hyphens.
4481
+ * It must be unique within the workspace
4482
+ */
4483
+ name: string;
4484
+ /**
4485
+ * (string) - Possible values are: `EXECUTE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4486
+ */
4487
+ permission: string;
4488
+ /**
4489
+ * (string)
4490
+ */
4491
+ spaceId: string;
4492
+ }
4493
+ export interface GetAppsSpaceResourceJob {
4494
+ /**
4495
+ * (string) - Id of the SQL warehouse to grant permission on
4496
+ */
4497
+ id: string;
4498
+ /**
4499
+ * (string) - Possible values are: `EXECUTE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4500
+ */
4501
+ permission: string;
4502
+ }
4503
+ export interface GetAppsSpaceResourceSecret {
4504
+ /**
4505
+ * (string) - Key of the secret to grant permission on
4506
+ */
4507
+ key: string;
4508
+ /**
4509
+ * (string) - Possible values are: `EXECUTE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4510
+ */
4511
+ permission: string;
4512
+ /**
4513
+ * (string) - Scope of the secret to grant permission on
4514
+ */
4515
+ scope: string;
4516
+ }
4517
+ export interface GetAppsSpaceResourceServingEndpoint {
4518
+ /**
4519
+ * The name of the app space. The name must contain only lowercase alphanumeric characters and hyphens.
4520
+ * It must be unique within the workspace
4521
+ */
4522
+ name: string;
4523
+ /**
4524
+ * (string) - Possible values are: `EXECUTE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4525
+ */
4526
+ permission: string;
4527
+ }
4528
+ export interface GetAppsSpaceResourceSqlWarehouse {
4529
+ /**
4530
+ * (string) - Id of the SQL warehouse to grant permission on
4531
+ */
4532
+ id: string;
4533
+ /**
4534
+ * (string) - Possible values are: `EXECUTE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4535
+ */
4536
+ permission: string;
4537
+ }
4538
+ export interface GetAppsSpaceResourceUcSecurable {
4539
+ /**
4540
+ * (string) - Possible values are: `EXECUTE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4541
+ */
4542
+ permission: string;
4543
+ /**
4544
+ * (string)
4545
+ */
4546
+ securableFullName: string;
4547
+ /**
4548
+ * (string) - Possible values are: `CONNECTION`, `FUNCTION`, `TABLE`, `VOLUME`
4549
+ */
4550
+ securableType: string;
4551
+ }
4552
+ export interface GetAppsSpaceStatus {
4553
+ /**
4554
+ * (string) - Message providing context about the current state
4555
+ */
4556
+ message: string;
4557
+ /**
4558
+ * (string) - The state of the app space. Possible values are: `SPACE_ACTIVE`, `SPACE_CREATING`, `SPACE_DELETED`, `SPACE_DELETING`, `SPACE_ERROR`, `SPACE_UPDATING`
4559
+ */
4560
+ state: string;
4561
+ }
4562
+ export interface GetAppsSpacesProviderConfig {
4563
+ /**
4564
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
4565
+ */
4566
+ workspaceId: string;
4567
+ }
4568
+ export interface GetAppsSpacesSpace {
4569
+ /**
4570
+ * (string) - The creation time of the app space. Formatted timestamp in ISO 6801
4571
+ */
4572
+ createTime: string;
4573
+ /**
4574
+ * (string) - The email of the user that created the app space
4575
+ */
4576
+ creator: string;
4577
+ /**
4578
+ * (string) - Description of the App Resource
4579
+ */
4580
+ description: string;
4581
+ /**
4582
+ * (string) - The effective usage policy ID used by apps in the space
4583
+ */
4584
+ effectiveUsagePolicyId: string;
4585
+ /**
4586
+ * (list of string) - The effective api scopes granted to the user access token
4587
+ */
4588
+ effectiveUserApiScopes: string[];
4589
+ /**
4590
+ * (string) - Id of the SQL warehouse to grant permission on
4591
+ */
4592
+ id: string;
4593
+ /**
4594
+ * (string) - Name of the serving endpoint to grant permission on
4595
+ */
4596
+ name: string;
4597
+ /**
4598
+ * (string) - The OAuth2 app client ID for the app space
4599
+ */
4600
+ oauth2AppClientId: string;
4601
+ /**
4602
+ * (string) - The OAuth2 app integration ID for the app space
4603
+ */
4604
+ oauth2AppIntegrationId: string;
4605
+ /**
4606
+ * Configure the provider for management through account provider.
4607
+ */
4608
+ providerConfig?: outputs.GetAppsSpacesSpaceProviderConfig;
4609
+ /**
4610
+ * (list of AppResource) - Resources for the app space. Resources configured at the space level are available to all apps in the space
4611
+ */
4612
+ resources: outputs.GetAppsSpacesSpaceResource[];
4613
+ /**
4614
+ * (string) - The service principal client ID for the app space
4615
+ */
4616
+ servicePrincipalClientId: string;
4617
+ /**
4618
+ * (integer) - The service principal ID for the app space
4619
+ */
4620
+ servicePrincipalId: number;
4621
+ /**
4622
+ * (string) - The service principal name for the app space
4623
+ */
4624
+ servicePrincipalName: string;
4625
+ /**
4626
+ * (SpaceStatus) - The status of the app space
4627
+ */
4628
+ status: outputs.GetAppsSpacesSpaceStatus;
4629
+ /**
4630
+ * (string) - The update time of the app space. Formatted timestamp in ISO 6801
4631
+ */
4632
+ updateTime: string;
4633
+ /**
4634
+ * (string) - The email of the user that last updated the app space
4635
+ */
4636
+ updater: string;
4637
+ /**
4638
+ * (string) - The usage policy ID for managing cost at the space level
4639
+ */
4640
+ usagePolicyId: string;
4641
+ /**
4642
+ * (list of string) - OAuth scopes for apps in the space
4643
+ */
4644
+ userApiScopes: string[];
4645
+ }
4646
+ export interface GetAppsSpacesSpaceProviderConfig {
4647
+ /**
4648
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
4649
+ */
4650
+ workspaceId: string;
4651
+ }
4652
+ export interface GetAppsSpacesSpaceResource {
4653
+ /**
4654
+ * (AppResourceDatabase)
4655
+ */
4656
+ database?: outputs.GetAppsSpacesSpaceResourceDatabase;
4657
+ /**
4658
+ * (string) - Description of the App Resource
4659
+ */
4660
+ description?: string;
4661
+ /**
4662
+ * (AppResourceExperiment)
4663
+ */
4664
+ experiment?: outputs.GetAppsSpacesSpaceResourceExperiment;
4665
+ /**
4666
+ * (AppResourceGenieSpace)
4667
+ */
4668
+ genieSpace?: outputs.GetAppsSpacesSpaceResourceGenieSpace;
4669
+ /**
4670
+ * (AppResourceJob)
4671
+ */
4672
+ job?: outputs.GetAppsSpacesSpaceResourceJob;
4673
+ /**
4674
+ * (string) - Name of the serving endpoint to grant permission on
4675
+ */
4676
+ name: string;
4677
+ /**
4678
+ * (AppResourceSecret)
4679
+ */
4680
+ secret?: outputs.GetAppsSpacesSpaceResourceSecret;
4681
+ /**
4682
+ * (AppResourceServingEndpoint)
4683
+ */
4684
+ servingEndpoint?: outputs.GetAppsSpacesSpaceResourceServingEndpoint;
4685
+ /**
4686
+ * (AppResourceSqlWarehouse)
4687
+ */
4688
+ sqlWarehouse?: outputs.GetAppsSpacesSpaceResourceSqlWarehouse;
4689
+ /**
4690
+ * (AppResourceUcSecurable)
4691
+ */
4692
+ ucSecurable?: outputs.GetAppsSpacesSpaceResourceUcSecurable;
4693
+ }
4694
+ export interface GetAppsSpacesSpaceResourceDatabase {
4695
+ /**
4696
+ * (string)
4697
+ */
4698
+ databaseName: string;
4699
+ /**
4700
+ * (string)
4701
+ */
4702
+ instanceName: string;
4703
+ /**
4704
+ * (string) - Possible values are: `EXECUTE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4705
+ */
4706
+ permission: string;
4707
+ }
4708
+ export interface GetAppsSpacesSpaceResourceExperiment {
4709
+ /**
4710
+ * (string)
4711
+ */
4712
+ experimentId: string;
4713
+ /**
4714
+ * (string) - Possible values are: `EXECUTE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4715
+ */
4716
+ permission: string;
4717
+ }
4718
+ export interface GetAppsSpacesSpaceResourceGenieSpace {
4719
+ /**
4720
+ * (string) - Name of the serving endpoint to grant permission on
4721
+ */
4722
+ name: string;
4723
+ /**
4724
+ * (string) - Possible values are: `EXECUTE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4725
+ */
4726
+ permission: string;
4727
+ /**
4728
+ * (string)
4729
+ */
4730
+ spaceId: string;
4731
+ }
4732
+ export interface GetAppsSpacesSpaceResourceJob {
4733
+ /**
4734
+ * (string) - Id of the SQL warehouse to grant permission on
4735
+ */
4736
+ id: string;
4737
+ /**
4738
+ * (string) - Possible values are: `EXECUTE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4739
+ */
4740
+ permission: string;
4741
+ }
4742
+ export interface GetAppsSpacesSpaceResourceSecret {
4227
4743
  /**
4228
- * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4744
+ * (string) - Key of the secret to grant permission on
4229
4745
  */
4230
- permission: string;
4231
- }
4232
- export interface GetAppsSettingsCustomTemplatesTemplateManifestResourceSpecSecretSpec {
4746
+ key: string;
4233
4747
  /**
4234
- * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4748
+ * (string) - Possible values are: `EXECUTE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4235
4749
  */
4236
4750
  permission: string;
4751
+ /**
4752
+ * (string) - Scope of the secret to grant permission on
4753
+ */
4754
+ scope: string;
4237
4755
  }
4238
- export interface GetAppsSettingsCustomTemplatesTemplateManifestResourceSpecServingEndpointSpec {
4756
+ export interface GetAppsSpacesSpaceResourceServingEndpoint {
4239
4757
  /**
4240
- * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4758
+ * (string) - Name of the serving endpoint to grant permission on
4759
+ */
4760
+ name: string;
4761
+ /**
4762
+ * (string) - Possible values are: `EXECUTE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4241
4763
  */
4242
4764
  permission: string;
4243
4765
  }
4244
- export interface GetAppsSettingsCustomTemplatesTemplateManifestResourceSpecSqlWarehouseSpec {
4766
+ export interface GetAppsSpacesSpaceResourceSqlWarehouse {
4245
4767
  /**
4246
- * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4768
+ * (string) - Id of the SQL warehouse to grant permission on
4769
+ */
4770
+ id: string;
4771
+ /**
4772
+ * (string) - Possible values are: `EXECUTE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4247
4773
  */
4248
4774
  permission: string;
4249
4775
  }
4250
- export interface GetAppsSettingsCustomTemplatesTemplateManifestResourceSpecUcSecurableSpec {
4776
+ export interface GetAppsSpacesSpaceResourceUcSecurable {
4251
4777
  /**
4252
- * (string) - Possible values are: `EXECUTE`, `MANAGE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4778
+ * (string) - Possible values are: `EXECUTE`, `READ_VOLUME`, `SELECT`, `USE_CONNECTION`, `WRITE_VOLUME`
4253
4779
  */
4254
4780
  permission: string;
4781
+ /**
4782
+ * (string)
4783
+ */
4784
+ securableFullName: string;
4255
4785
  /**
4256
4786
  * (string) - Possible values are: `CONNECTION`, `FUNCTION`, `TABLE`, `VOLUME`
4257
4787
  */
4258
4788
  securableType: string;
4259
4789
  }
4260
- export interface GetAppsSettingsCustomTemplatesTemplateProviderConfig {
4790
+ export interface GetAppsSpacesSpaceStatus {
4261
4791
  /**
4262
- * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
4792
+ * (string) - Message providing context about the current state
4263
4793
  */
4264
- workspaceId: string;
4794
+ message: string;
4795
+ /**
4796
+ * (string) - The state of the app space. Possible values are: `SPACE_ACTIVE`, `SPACE_CREATING`, `SPACE_DELETED`, `SPACE_DELETING`, `SPACE_ERROR`, `SPACE_UPDATING`
4797
+ */
4798
+ state: string;
4265
4799
  }
4266
4800
  export interface GetBudgetPoliciesFilterBy {
4267
4801
  /**
@@ -6555,6 +7089,85 @@ export interface GetDirectoryProviderConfig {
6555
7089
  */
6556
7090
  workspaceId: string;
6557
7091
  }
7092
+ export interface GetEndpointAzurePrivateEndpointInfo {
7093
+ /**
7094
+ * (string) - The name of the Private Endpoint in the Azure subscription
7095
+ */
7096
+ privateEndpointName: string;
7097
+ /**
7098
+ * (string) - The GUID of the Private Endpoint resource in the Azure subscription.
7099
+ * This is assigned by Azure when the user sets up the Private Endpoint
7100
+ */
7101
+ privateEndpointResourceGuid: string;
7102
+ /**
7103
+ * (string) - The full resource ID of the Private Endpoint
7104
+ */
7105
+ privateEndpointResourceId: string;
7106
+ /**
7107
+ * (string) - The resource ID of the Databricks Private Link Service that this Private Endpoint connects to
7108
+ */
7109
+ privateLinkServiceId: string;
7110
+ }
7111
+ export interface GetEndpointsItem {
7112
+ /**
7113
+ * (string) - The Databricks Account in which the endpoint object exists
7114
+ */
7115
+ accountId: string;
7116
+ /**
7117
+ * (AzurePrivateEndpointInfo) - Info for an Azure private endpoint
7118
+ */
7119
+ azurePrivateEndpointInfo: outputs.GetEndpointsItemAzurePrivateEndpointInfo;
7120
+ /**
7121
+ * (string) - The timestamp when the endpoint was created. The timestamp is in RFC 3339 format in UTC timezone
7122
+ */
7123
+ createTime: string;
7124
+ /**
7125
+ * (string) - The human-readable display name of this endpoint.
7126
+ * The input should conform to RFC-1034, which restricts to letters, numbers, and hyphens,
7127
+ * with the first character a letter, the last a letter or a number, and a 63 character maximum
7128
+ */
7129
+ displayName: string;
7130
+ /**
7131
+ * (string) - The unique identifier for this endpoint under the account. This field is a UUID generated by Databricks
7132
+ */
7133
+ endpointId: string;
7134
+ /**
7135
+ * (string) - The resource name of the endpoint, which uniquely identifies the endpoint
7136
+ */
7137
+ name: string;
7138
+ /**
7139
+ * (string) - The cloud provider region where this endpoint is located
7140
+ */
7141
+ region: string;
7142
+ /**
7143
+ * (string) - The state of the endpoint. The endpoint can only be used if the state is `APPROVED`. Possible values are: `APPROVED`, `DISCONNECTED`, `FAILED`, `PENDING`
7144
+ */
7145
+ state: string;
7146
+ /**
7147
+ * (string) - The use case that determines the type of network connectivity this endpoint provides.
7148
+ * This field is automatically determined based on the endpoint configuration and cloud-specific settings. Possible values are: `SERVICE_DIRECT`
7149
+ */
7150
+ useCase: string;
7151
+ }
7152
+ export interface GetEndpointsItemAzurePrivateEndpointInfo {
7153
+ /**
7154
+ * (string) - The name of the Private Endpoint in the Azure subscription
7155
+ */
7156
+ privateEndpointName: string;
7157
+ /**
7158
+ * (string) - The GUID of the Private Endpoint resource in the Azure subscription.
7159
+ * This is assigned by Azure when the user sets up the Private Endpoint
7160
+ */
7161
+ privateEndpointResourceGuid: string;
7162
+ /**
7163
+ * (string) - The full resource ID of the Private Endpoint
7164
+ */
7165
+ privateEndpointResourceId: string;
7166
+ /**
7167
+ * (string) - The resource ID of the Databricks Private Link Service that this Private Endpoint connects to
7168
+ */
7169
+ privateLinkServiceId: string;
7170
+ }
6558
7171
  export interface GetEntityTagAssignmentProviderConfig {
6559
7172
  /**
6560
7173
  * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
@@ -6580,6 +7193,10 @@ export interface GetEntityTagAssignmentsTagAssignment {
6580
7193
  * Configure the provider for management through account provider.
6581
7194
  */
6582
7195
  providerConfig?: outputs.GetEntityTagAssignmentsTagAssignmentProviderConfig;
7196
+ /**
7197
+ * (string) - The source type of the tag assignment, e.g., user-assigned or system-assigned. Possible values are: `TAG_ASSIGNMENT_SOURCE_TYPE_SYSTEM_DATA_CLASSIFICATION`
7198
+ */
7199
+ sourceType: string;
6583
7200
  /**
6584
7201
  * (string) - The key of the tag
6585
7202
  */
@@ -6588,6 +7205,14 @@ export interface GetEntityTagAssignmentsTagAssignment {
6588
7205
  * (string) - The value of the tag
6589
7206
  */
6590
7207
  tagValue: string;
7208
+ /**
7209
+ * (string) - The timestamp when the tag assignment was last updated
7210
+ */
7211
+ updateTime: string;
7212
+ /**
7213
+ * (string) - The user or principal who updated the tag assignment
7214
+ */
7215
+ updatedBy: string;
6591
7216
  }
6592
7217
  export interface GetEntityTagAssignmentsTagAssignmentProviderConfig {
6593
7218
  /**
@@ -10252,6 +10877,14 @@ export interface GetPostgresProjectProviderConfig {
10252
10877
  workspaceId: string;
10253
10878
  }
10254
10879
  export interface GetPostgresProjectSpec {
10880
+ /**
10881
+ * (string) - The budget policy that is applied to the project
10882
+ */
10883
+ budgetPolicyId?: string;
10884
+ /**
10885
+ * (list of ProjectCustomTag) - The effective custom tags associated with the project
10886
+ */
10887
+ customTags?: outputs.GetPostgresProjectSpecCustomTag[];
10255
10888
  /**
10256
10889
  * (ProjectDefaultEndpointSettings) - The effective default endpoint settings
10257
10890
  */
@@ -10269,6 +10902,16 @@ export interface GetPostgresProjectSpec {
10269
10902
  */
10270
10903
  pgVersion?: number;
10271
10904
  }
10905
+ export interface GetPostgresProjectSpecCustomTag {
10906
+ /**
10907
+ * (string) - The key of the custom tag
10908
+ */
10909
+ key?: string;
10910
+ /**
10911
+ * (string) - The value of the custom tag
10912
+ */
10913
+ value?: string;
10914
+ }
10272
10915
  export interface GetPostgresProjectSpecDefaultEndpointSettings {
10273
10916
  /**
10274
10917
  * (number) - The maximum number of Compute Units. Minimum value is 0.5
@@ -10300,6 +10943,14 @@ export interface GetPostgresProjectStatus {
10300
10943
  * (integer) - The logical size limit for a branch
10301
10944
  */
10302
10945
  branchLogicalSizeLimitBytes: number;
10946
+ /**
10947
+ * (string) - The budget policy that is applied to the project
10948
+ */
10949
+ budgetPolicyId: string;
10950
+ /**
10951
+ * (list of ProjectCustomTag) - The effective custom tags associated with the project
10952
+ */
10953
+ customTags: outputs.GetPostgresProjectStatusCustomTag[];
10303
10954
  /**
10304
10955
  * (ProjectDefaultEndpointSettings) - The effective default endpoint settings
10305
10956
  */
@@ -10325,6 +10976,16 @@ export interface GetPostgresProjectStatus {
10325
10976
  */
10326
10977
  syntheticStorageSizeBytes: number;
10327
10978
  }
10979
+ export interface GetPostgresProjectStatusCustomTag {
10980
+ /**
10981
+ * (string) - The key of the custom tag
10982
+ */
10983
+ key?: string;
10984
+ /**
10985
+ * (string) - The value of the custom tag
10986
+ */
10987
+ value?: string;
10988
+ }
10328
10989
  export interface GetPostgresProjectStatusDefaultEndpointSettings {
10329
10990
  /**
10330
10991
  * (number) - The maximum number of Compute Units. Minimum value is 0.5
@@ -10389,6 +11050,14 @@ export interface GetPostgresProjectsProjectProviderConfig {
10389
11050
  workspaceId: string;
10390
11051
  }
10391
11052
  export interface GetPostgresProjectsProjectSpec {
11053
+ /**
11054
+ * (string) - The budget policy that is applied to the project
11055
+ */
11056
+ budgetPolicyId?: string;
11057
+ /**
11058
+ * (list of ProjectCustomTag) - The effective custom tags associated with the project
11059
+ */
11060
+ customTags?: outputs.GetPostgresProjectsProjectSpecCustomTag[];
10392
11061
  /**
10393
11062
  * (ProjectDefaultEndpointSettings) - The effective default endpoint settings
10394
11063
  */
@@ -10406,6 +11075,16 @@ export interface GetPostgresProjectsProjectSpec {
10406
11075
  */
10407
11076
  pgVersion?: number;
10408
11077
  }
11078
+ export interface GetPostgresProjectsProjectSpecCustomTag {
11079
+ /**
11080
+ * (string) - The key of the custom tag
11081
+ */
11082
+ key?: string;
11083
+ /**
11084
+ * (string) - The value of the custom tag
11085
+ */
11086
+ value?: string;
11087
+ }
10409
11088
  export interface GetPostgresProjectsProjectSpecDefaultEndpointSettings {
10410
11089
  /**
10411
11090
  * (number) - The maximum number of Compute Units. Minimum value is 0.5
@@ -10437,6 +11116,14 @@ export interface GetPostgresProjectsProjectStatus {
10437
11116
  * (integer) - The logical size limit for a branch
10438
11117
  */
10439
11118
  branchLogicalSizeLimitBytes: number;
11119
+ /**
11120
+ * (string) - The budget policy that is applied to the project
11121
+ */
11122
+ budgetPolicyId: string;
11123
+ /**
11124
+ * (list of ProjectCustomTag) - The effective custom tags associated with the project
11125
+ */
11126
+ customTags: outputs.GetPostgresProjectsProjectStatusCustomTag[];
10440
11127
  /**
10441
11128
  * (ProjectDefaultEndpointSettings) - The effective default endpoint settings
10442
11129
  */
@@ -10462,6 +11149,16 @@ export interface GetPostgresProjectsProjectStatus {
10462
11149
  */
10463
11150
  syntheticStorageSizeBytes: number;
10464
11151
  }
11152
+ export interface GetPostgresProjectsProjectStatusCustomTag {
11153
+ /**
11154
+ * (string) - The key of the custom tag
11155
+ */
11156
+ key?: string;
11157
+ /**
11158
+ * (string) - The value of the custom tag
11159
+ */
11160
+ value?: string;
11161
+ }
10465
11162
  export interface GetPostgresProjectsProjectStatusDefaultEndpointSettings {
10466
11163
  /**
10467
11164
  * (number) - The maximum number of Compute Units. Minimum value is 0.5
@@ -12492,6 +13189,18 @@ export interface InstancePoolPreloadedDockerImageBasicAuth {
12492
13189
  password: string;
12493
13190
  username: string;
12494
13191
  }
13192
+ export interface InstancePoolProviderConfig {
13193
+ /**
13194
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
13195
+ */
13196
+ workspaceId: string;
13197
+ }
13198
+ export interface InstanceProfileProviderConfig {
13199
+ /**
13200
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
13201
+ */
13202
+ workspaceId: string;
13203
+ }
12495
13204
  export interface IpAccessListProviderConfig {
12496
13205
  /**
12497
13206
  * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
@@ -12614,6 +13323,7 @@ export interface JobGitSource {
12614
13323
  * case insensitive name of the Git provider. Following values are supported right now (could be a subject for change, consult [Repos API documentation](https://docs.databricks.com/dev-tools/api/latest/repos.html)): `gitHub`, `gitHubEnterprise`, `bitbucketCloud`, `bitbucketServer`, `azureDevOpsServices`, `gitLab`, `gitLabEnterpriseEdition`.
12615
13324
  */
12616
13325
  provider?: string;
13326
+ sparseCheckout?: outputs.JobGitSourceSparseCheckout;
12617
13327
  /**
12618
13328
  * name of the Git branch to use. Conflicts with `branch` and `commit`.
12619
13329
  */
@@ -12631,6 +13341,9 @@ export interface JobGitSourceJobSource {
12631
13341
  importFromGitBranch: string;
12632
13342
  jobConfigPath: string;
12633
13343
  }
13344
+ export interface JobGitSourceSparseCheckout {
13345
+ patterns?: string[];
13346
+ }
12634
13347
  export interface JobHealth {
12635
13348
  /**
12636
13349
  * list of rules that are represented as objects with the following attributes:
@@ -15554,6 +16267,12 @@ export interface MetastoreDataAccessGcpServiceAccountKey {
15554
16267
  privateKey: string;
15555
16268
  privateKeyId: string;
15556
16269
  }
16270
+ export interface MetastoreProviderProviderConfig {
16271
+ /**
16272
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
16273
+ */
16274
+ workspaceId: string;
16275
+ }
15557
16276
  export interface MlflowExperimentProviderConfig {
15558
16277
  /**
15559
16278
  * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
@@ -16387,6 +17106,9 @@ export interface MountGs {
16387
17106
  bucketName: string;
16388
17107
  serviceAccount?: string;
16389
17108
  }
17109
+ export interface MountProviderConfig {
17110
+ workspaceId: string;
17111
+ }
16390
17112
  export interface MountS3 {
16391
17113
  bucketName: string;
16392
17114
  instanceProfile?: string;
@@ -16527,11 +17249,11 @@ export interface MwsNetworksGcpNetworkInfo {
16527
17249
  */
16528
17250
  networkProjectId: string;
16529
17251
  /**
16530
- * @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.106.0/docs/guides/gcp-workspace#creating-a-vpc
17252
+ * @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.107.0/docs/guides/gcp-workspace#creating-a-vpc
16531
17253
  */
16532
17254
  podIpRangeName?: string;
16533
17255
  /**
16534
- * @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.106.0/docs/guides/gcp-workspace#creating-a-vpc
17256
+ * @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.107.0/docs/guides/gcp-workspace#creating-a-vpc
16535
17257
  */
16536
17258
  serviceIpRangeName?: string;
16537
17259
  /**
@@ -16592,11 +17314,11 @@ export interface MwsWorkspacesExternalCustomerInfo {
16592
17314
  }
16593
17315
  export interface MwsWorkspacesGcpManagedNetworkConfig {
16594
17316
  /**
16595
- * @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.106.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
17317
+ * @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.107.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
16596
17318
  */
16597
17319
  gkeClusterPodIpRange?: string;
16598
17320
  /**
16599
- * @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.106.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
17321
+ * @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.107.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
16600
17322
  */
16601
17323
  gkeClusterServiceIpRange?: string;
16602
17324
  subnetCidr: string;
@@ -16654,8 +17376,6 @@ export interface NotificationDestinationConfigEmail {
16654
17376
  export interface NotificationDestinationConfigGenericWebhook {
16655
17377
  /**
16656
17378
  * The password for basic authentication.
16657
- *
16658
- * > **NOTE** If the type of notification destination is changed, the existing notification destination will be deleted and a new notification destination will be created with the new type.
16659
17379
  */
16660
17380
  password?: string;
16661
17381
  passwordSet: boolean;
@@ -16721,6 +17441,20 @@ export interface NotificationDestinationConfigSlack {
16721
17441
  url?: string;
16722
17442
  urlSet: boolean;
16723
17443
  }
17444
+ export interface NotificationDestinationProviderConfig {
17445
+ /**
17446
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
17447
+ *
17448
+ * > **NOTE** If the type of notification destination is changed, the existing notification destination will be deleted and a new notification destination will be created with the new type.
17449
+ */
17450
+ workspaceId: string;
17451
+ }
17452
+ export interface OboTokenProviderConfig {
17453
+ /**
17454
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
17455
+ */
17456
+ workspaceId: string;
17457
+ }
16724
17458
  export interface OnlineStoreProviderConfig {
16725
17459
  /**
16726
17460
  * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
@@ -16845,6 +17579,12 @@ export interface PermissionsAccessControl {
16845
17579
  */
16846
17580
  userName?: string;
16847
17581
  }
17582
+ export interface PermissionsProviderConfig {
17583
+ /**
17584
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
17585
+ */
17586
+ workspaceId: string;
17587
+ }
16848
17588
  export interface PipelineCluster {
16849
17589
  applyPolicyDefaultValues?: boolean;
16850
17590
  autoscale?: outputs.PipelineClusterAutoscale;
@@ -17303,6 +18043,9 @@ export interface PipelineNotification {
17303
18043
  */
17304
18044
  emailRecipients?: string[];
17305
18045
  }
18046
+ export interface PipelineProviderConfig {
18047
+ workspaceId: string;
18048
+ }
17306
18049
  export interface PipelineRestartWindow {
17307
18050
  daysOfWeeks?: string[];
17308
18051
  startHour: number;
@@ -17572,6 +18315,14 @@ export interface PostgresProjectProviderConfig {
17572
18315
  workspaceId: string;
17573
18316
  }
17574
18317
  export interface PostgresProjectSpec {
18318
+ /**
18319
+ * (string) - The budget policy that is applied to the project
18320
+ */
18321
+ budgetPolicyId?: string;
18322
+ /**
18323
+ * (list of ProjectCustomTag) - The effective custom tags associated with the project
18324
+ */
18325
+ customTags?: outputs.PostgresProjectSpecCustomTag[];
17575
18326
  /**
17576
18327
  * (ProjectDefaultEndpointSettings) - The effective default endpoint settings
17577
18328
  */
@@ -17589,6 +18340,16 @@ export interface PostgresProjectSpec {
17589
18340
  */
17590
18341
  pgVersion?: number;
17591
18342
  }
18343
+ export interface PostgresProjectSpecCustomTag {
18344
+ /**
18345
+ * The key of the custom tag
18346
+ */
18347
+ key?: string;
18348
+ /**
18349
+ * The value of the custom tag
18350
+ */
18351
+ value?: string;
18352
+ }
17592
18353
  export interface PostgresProjectSpecDefaultEndpointSettings {
17593
18354
  /**
17594
18355
  * The maximum number of Compute Units. Minimum value is 0.5
@@ -17620,6 +18381,14 @@ export interface PostgresProjectStatus {
17620
18381
  * (integer) - The logical size limit for a branch
17621
18382
  */
17622
18383
  branchLogicalSizeLimitBytes: number;
18384
+ /**
18385
+ * (string) - The budget policy that is applied to the project
18386
+ */
18387
+ budgetPolicyId: string;
18388
+ /**
18389
+ * (list of ProjectCustomTag) - The effective custom tags associated with the project
18390
+ */
18391
+ customTags: outputs.PostgresProjectStatusCustomTag[];
17623
18392
  /**
17624
18393
  * (ProjectDefaultEndpointSettings) - The effective default endpoint settings
17625
18394
  */
@@ -17645,6 +18414,16 @@ export interface PostgresProjectStatus {
17645
18414
  */
17646
18415
  syntheticStorageSizeBytes: number;
17647
18416
  }
18417
+ export interface PostgresProjectStatusCustomTag {
18418
+ /**
18419
+ * The key of the custom tag
18420
+ */
18421
+ key?: string;
18422
+ /**
18423
+ * The value of the custom tag
18424
+ */
18425
+ value?: string;
18426
+ }
17648
18427
  export interface PostgresProjectStatusDefaultEndpointSettings {
17649
18428
  /**
17650
18429
  * The maximum number of Compute Units. Minimum value is 0.5
@@ -18041,6 +18820,12 @@ export interface RegisteredModelProviderConfig {
18041
18820
  */
18042
18821
  workspaceId: string;
18043
18822
  }
18823
+ export interface RepoProviderConfig {
18824
+ /**
18825
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
18826
+ */
18827
+ workspaceId: string;
18828
+ }
18044
18829
  export interface RepoSparseCheckout {
18045
18830
  /**
18046
18831
  * array of paths (directories) that will be used for sparse checkout. List of patterns could be updated in-place.
@@ -18140,6 +18925,12 @@ export interface SecretScopeKeyvaultMetadata {
18140
18925
  dnsName: string;
18141
18926
  resourceId: string;
18142
18927
  }
18928
+ export interface SecretScopeProviderConfig {
18929
+ /**
18930
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
18931
+ */
18932
+ workspaceId: string;
18933
+ }
18143
18934
  export interface ServicePrincipalFederationPolicyOidcPolicy {
18144
18935
  /**
18145
18936
  * The allowed token audiences, as specified in the 'aud' claim of federated tokens.
@@ -18182,6 +18973,12 @@ export interface ServicePrincipalFederationPolicyOidcPolicy {
18182
18973
  */
18183
18974
  subjectClaim?: string;
18184
18975
  }
18976
+ export interface ServicePrincipalSecretProviderConfig {
18977
+ /**
18978
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
18979
+ */
18980
+ workspaceId: string;
18981
+ }
18185
18982
  export interface ShareObject {
18186
18983
  addedAt: number;
18187
18984
  addedBy: string;
@@ -18300,6 +19097,12 @@ export interface SqlAlertOptions {
18300
19097
  export interface SqlAlertProviderConfig {
18301
19098
  workspaceId: string;
18302
19099
  }
19100
+ export interface SqlDashboardProviderConfig {
19101
+ /**
19102
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
19103
+ */
19104
+ workspaceId: string;
19105
+ }
18303
19106
  export interface SqlEndpointChannel {
18304
19107
  dbsqlVersion?: string;
18305
19108
  /**
@@ -18340,6 +19143,12 @@ export interface SqlEndpointTagsCustomTag {
18340
19143
  key: string;
18341
19144
  value: string;
18342
19145
  }
19146
+ export interface SqlGlobalConfigProviderConfig {
19147
+ /**
19148
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
19149
+ */
19150
+ workspaceId: string;
19151
+ }
18343
19152
  export interface SqlPermissionsPrivilegeAssignment {
18344
19153
  /**
18345
19154
  * `displayName` for a databricks.Group or databricks_user, `applicationId` for a databricks_service_principal.
@@ -18491,6 +19300,12 @@ export interface SqlQueryParameterText {
18491
19300
  */
18492
19301
  value: string;
18493
19302
  }
19303
+ export interface SqlQueryProviderConfig {
19304
+ /**
19305
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
19306
+ */
19307
+ workspaceId: string;
19308
+ }
18494
19309
  export interface SqlQuerySchedule {
18495
19310
  continuous?: outputs.SqlQueryScheduleContinuous;
18496
19311
  daily?: outputs.SqlQueryScheduleDaily;
@@ -18540,6 +19355,12 @@ export interface SqlTableProviderConfig {
18540
19355
  */
18541
19356
  workspaceId: string;
18542
19357
  }
19358
+ export interface SqlVisualizationProviderConfig {
19359
+ /**
19360
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
19361
+ */
19362
+ workspaceId: string;
19363
+ }
18543
19364
  export interface SqlWidgetParameter {
18544
19365
  mapTo?: string;
18545
19366
  name: string;
@@ -18555,6 +19376,12 @@ export interface SqlWidgetPosition {
18555
19376
  sizeX: number;
18556
19377
  sizeY: number;
18557
19378
  }
19379
+ export interface SqlWidgetProviderConfig {
19380
+ /**
19381
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
19382
+ */
19383
+ workspaceId: string;
19384
+ }
18558
19385
  export interface StorageCredentialAwsIamRole {
18559
19386
  /**
18560
19387
  * The external ID used in role assumption to prevent the confused deputy problem.
@@ -18652,6 +19479,9 @@ export interface TableColumn {
18652
19479
  typeScale?: number;
18653
19480
  typeText: string;
18654
19481
  }
19482
+ export interface TableProviderConfig {
19483
+ workspaceId: string;
19484
+ }
18655
19485
  export interface TagPolicyProviderConfig {
18656
19486
  /**
18657
19487
  * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
@@ -18661,6 +19491,12 @@ export interface TagPolicyProviderConfig {
18661
19491
  export interface TagPolicyValue {
18662
19492
  name: string;
18663
19493
  }
19494
+ export interface TokenProviderConfig {
19495
+ /**
19496
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
19497
+ */
19498
+ workspaceId: string;
19499
+ }
18664
19500
  export interface VectorSearchEndpointEndpointStatus {
18665
19501
  /**
18666
19502
  * Additional status message.
@@ -18809,6 +19645,12 @@ export interface WorkspaceBindingProviderConfig {
18809
19645
  */
18810
19646
  workspaceId: string;
18811
19647
  }
19648
+ export interface WorkspaceConfProviderConfig {
19649
+ /**
19650
+ * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
19651
+ */
19652
+ workspaceId: string;
19653
+ }
18812
19654
  export interface WorkspaceEntityTagAssignmentProviderConfig {
18813
19655
  /**
18814
19656
  * Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.