@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.
- package/app.d.ts +3 -0
- package/app.js +2 -0
- package/app.js.map +1 -1
- package/appsSpace.d.ts +207 -0
- package/appsSpace.js +86 -0
- package/appsSpace.js.map +1 -0
- package/clusterPolicy.d.ts +3 -0
- package/clusterPolicy.js +2 -0
- package/clusterPolicy.js.map +1 -1
- package/dbfsFile.d.ts +14 -0
- package/dbfsFile.js +2 -0
- package/dbfsFile.js.map +1 -1
- package/endpoint.d.ts +159 -0
- package/endpoint.js +102 -0
- package/endpoint.js.map +1 -0
- package/entitlements.d.ts +14 -0
- package/entitlements.js +2 -0
- package/entitlements.js.map +1 -1
- package/entityTagAssignment.d.ts +24 -0
- package/entityTagAssignment.js +6 -0
- package/entityTagAssignment.js.map +1 -1
- package/getAppsSpace.d.ts +117 -0
- package/getAppsSpace.js +30 -0
- package/getAppsSpace.js.map +1 -0
- package/getAppsSpaces.d.ts +49 -0
- package/getAppsSpaces.js +32 -0
- package/getAppsSpaces.js.map +1 -0
- package/getDatabaseInstances.d.ts +2 -2
- package/getEndpoint.d.ts +94 -0
- package/getEndpoint.js +46 -0
- package/getEndpoint.js.map +1 -0
- package/getEndpoints.d.ts +54 -0
- package/getEndpoints.js +48 -0
- package/getEndpoints.js.map +1 -0
- package/getEntityTagAssignment.d.ts +12 -0
- package/getEntityTagAssignment.js.map +1 -1
- package/getPostgresProjects.d.ts +2 -2
- package/index.d.ts +18 -0
- package/index.js +30 -8
- package/index.js.map +1 -1
- package/instancePool.d.ts +3 -0
- package/instancePool.js +2 -0
- package/instancePool.js.map +1 -1
- package/instanceProfile.d.ts +14 -0
- package/instanceProfile.js +2 -0
- package/instanceProfile.js.map +1 -1
- package/metastoreProvider.d.ts +14 -0
- package/metastoreProvider.js +2 -0
- package/metastoreProvider.js.map +1 -1
- package/mount.d.ts +6 -0
- package/mount.js +5 -0
- package/mount.js.map +1 -1
- package/mwsWorkspaces.d.ts +3 -3
- package/notificationDestination.d.ts +12 -0
- package/notificationDestination.js +2 -0
- package/notificationDestination.js.map +1 -1
- package/oboToken.d.ts +14 -0
- package/oboToken.js +2 -0
- package/oboToken.js.map +1 -1
- package/package.json +2 -2
- package/permissions.d.ts +3 -0
- package/permissions.js +2 -0
- package/permissions.js.map +1 -1
- package/pipeline.d.ts +3 -0
- package/pipeline.js +2 -0
- package/pipeline.js.map +1 -1
- package/repo.d.ts +3 -0
- package/repo.js +2 -0
- package/repo.js.map +1 -1
- package/secretScope.d.ts +12 -0
- package/secretScope.js +2 -0
- package/secretScope.js.map +1 -1
- package/servicePrincipalSecret.d.ts +14 -0
- package/servicePrincipalSecret.js +2 -0
- package/servicePrincipalSecret.js.map +1 -1
- package/sqlDashboard.d.ts +14 -0
- package/sqlDashboard.js +2 -0
- package/sqlDashboard.js.map +1 -1
- package/sqlGlobalConfig.d.ts +14 -0
- package/sqlGlobalConfig.js +2 -0
- package/sqlGlobalConfig.js.map +1 -1
- package/sqlQuery.d.ts +3 -0
- package/sqlQuery.js +2 -0
- package/sqlQuery.js.map +1 -1
- package/sqlVisualization.d.ts +14 -0
- package/sqlVisualization.js +2 -0
- package/sqlVisualization.js.map +1 -1
- package/sqlWidget.d.ts +12 -0
- package/sqlWidget.js +2 -0
- package/sqlWidget.js.map +1 -1
- package/table.d.ts +3 -0
- package/table.js +2 -0
- package/table.js.map +1 -1
- package/token.d.ts +17 -3
- package/token.js +2 -0
- package/token.js.map +1 -1
- package/types/input.d.ts +312 -6
- package/types/output.d.ts +863 -21
- package/workspaceConf.d.ts +14 -0
- package/workspaceConf.js +2 -0
- package/workspaceConf.js.map +1 -1
package/types/input.d.ts
CHANGED
|
@@ -812,6 +812,100 @@ export interface AppsSettingsCustomTemplateProviderConfig {
|
|
|
812
812
|
*/
|
|
813
813
|
workspaceId: pulumi.Input<string>;
|
|
814
814
|
}
|
|
815
|
+
export interface AppsSpaceProviderConfig {
|
|
816
|
+
/**
|
|
817
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
818
|
+
*/
|
|
819
|
+
workspaceId: pulumi.Input<string>;
|
|
820
|
+
}
|
|
821
|
+
export interface AppsSpaceResource {
|
|
822
|
+
database?: pulumi.Input<inputs.AppsSpaceResourceDatabase>;
|
|
823
|
+
/**
|
|
824
|
+
* The description of the app space
|
|
825
|
+
*/
|
|
826
|
+
description?: pulumi.Input<string>;
|
|
827
|
+
experiment?: pulumi.Input<inputs.AppsSpaceResourceExperiment>;
|
|
828
|
+
genieSpace?: pulumi.Input<inputs.AppsSpaceResourceGenieSpace>;
|
|
829
|
+
job?: pulumi.Input<inputs.AppsSpaceResourceJob>;
|
|
830
|
+
/**
|
|
831
|
+
* (string) - The name of the app space. The name must contain only lowercase alphanumeric characters and hyphens.
|
|
832
|
+
* It must be unique within the workspace
|
|
833
|
+
*/
|
|
834
|
+
name: pulumi.Input<string>;
|
|
835
|
+
secret?: pulumi.Input<inputs.AppsSpaceResourceSecret>;
|
|
836
|
+
servingEndpoint?: pulumi.Input<inputs.AppsSpaceResourceServingEndpoint>;
|
|
837
|
+
sqlWarehouse?: pulumi.Input<inputs.AppsSpaceResourceSqlWarehouse>;
|
|
838
|
+
ucSecurable?: pulumi.Input<inputs.AppsSpaceResourceUcSecurable>;
|
|
839
|
+
}
|
|
840
|
+
export interface AppsSpaceResourceDatabase {
|
|
841
|
+
databaseName: pulumi.Input<string>;
|
|
842
|
+
instanceName: pulumi.Input<string>;
|
|
843
|
+
permission: pulumi.Input<string>;
|
|
844
|
+
}
|
|
845
|
+
export interface AppsSpaceResourceExperiment {
|
|
846
|
+
experimentId: pulumi.Input<string>;
|
|
847
|
+
permission: pulumi.Input<string>;
|
|
848
|
+
}
|
|
849
|
+
export interface AppsSpaceResourceGenieSpace {
|
|
850
|
+
/**
|
|
851
|
+
* (string) - The name of the app space. The name must contain only lowercase alphanumeric characters and hyphens.
|
|
852
|
+
* It must be unique within the workspace
|
|
853
|
+
*/
|
|
854
|
+
name: pulumi.Input<string>;
|
|
855
|
+
permission: pulumi.Input<string>;
|
|
856
|
+
spaceId: pulumi.Input<string>;
|
|
857
|
+
}
|
|
858
|
+
export interface AppsSpaceResourceJob {
|
|
859
|
+
/**
|
|
860
|
+
* (string) - The unique identifier of the app space
|
|
861
|
+
*/
|
|
862
|
+
id: pulumi.Input<string>;
|
|
863
|
+
permission: pulumi.Input<string>;
|
|
864
|
+
}
|
|
865
|
+
export interface AppsSpaceResourceSecret {
|
|
866
|
+
/**
|
|
867
|
+
* Key of the secret to grant permission on
|
|
868
|
+
*/
|
|
869
|
+
key: pulumi.Input<string>;
|
|
870
|
+
permission: pulumi.Input<string>;
|
|
871
|
+
/**
|
|
872
|
+
* Scope of the secret to grant permission on
|
|
873
|
+
*/
|
|
874
|
+
scope: pulumi.Input<string>;
|
|
875
|
+
}
|
|
876
|
+
export interface AppsSpaceResourceServingEndpoint {
|
|
877
|
+
/**
|
|
878
|
+
* (string) - The name of the app space. The name must contain only lowercase alphanumeric characters and hyphens.
|
|
879
|
+
* It must be unique within the workspace
|
|
880
|
+
*/
|
|
881
|
+
name: pulumi.Input<string>;
|
|
882
|
+
permission: pulumi.Input<string>;
|
|
883
|
+
}
|
|
884
|
+
export interface AppsSpaceResourceSqlWarehouse {
|
|
885
|
+
/**
|
|
886
|
+
* (string) - The unique identifier of the app space
|
|
887
|
+
*/
|
|
888
|
+
id: pulumi.Input<string>;
|
|
889
|
+
permission: pulumi.Input<string>;
|
|
890
|
+
}
|
|
891
|
+
export interface AppsSpaceResourceUcSecurable {
|
|
892
|
+
permission: pulumi.Input<string>;
|
|
893
|
+
securableFullName: pulumi.Input<string>;
|
|
894
|
+
/**
|
|
895
|
+
* Possible values are: `CONNECTION`, `FUNCTION`, `TABLE`, `VOLUME`
|
|
896
|
+
*/
|
|
897
|
+
securableType: pulumi.Input<string>;
|
|
898
|
+
}
|
|
899
|
+
export interface AppsSpaceStatus {
|
|
900
|
+
/**
|
|
901
|
+
* (string) - Message providing context about the current state
|
|
902
|
+
*/
|
|
903
|
+
message?: pulumi.Input<string>;
|
|
904
|
+
/**
|
|
905
|
+
* (string) - The state of the app space. Possible values are: `SPACE_ACTIVE`, `SPACE_CREATING`, `SPACE_DELETED`, `SPACE_DELETING`, `SPACE_ERROR`, `SPACE_UPDATING`
|
|
906
|
+
*/
|
|
907
|
+
state?: pulumi.Input<string>;
|
|
908
|
+
}
|
|
815
909
|
export interface ArtifactAllowlistArtifactMatcher {
|
|
816
910
|
/**
|
|
817
911
|
* The artifact path or maven coordinate.
|
|
@@ -1328,6 +1422,9 @@ export interface ClusterPolicyLibrary {
|
|
|
1328
1422
|
egg?: pulumi.Input<string>;
|
|
1329
1423
|
jar?: pulumi.Input<string>;
|
|
1330
1424
|
maven?: pulumi.Input<inputs.ClusterPolicyLibraryMaven>;
|
|
1425
|
+
/**
|
|
1426
|
+
* Configure the provider for management through account provider. This block consists of the following fields:
|
|
1427
|
+
*/
|
|
1331
1428
|
providerConfig?: pulumi.Input<inputs.ClusterPolicyLibraryProviderConfig>;
|
|
1332
1429
|
pypi?: pulumi.Input<inputs.ClusterPolicyLibraryPypi>;
|
|
1333
1430
|
requirements?: pulumi.Input<string>;
|
|
@@ -1343,12 +1440,21 @@ export interface ClusterPolicyLibraryMaven {
|
|
|
1343
1440
|
repo?: pulumi.Input<string>;
|
|
1344
1441
|
}
|
|
1345
1442
|
export interface ClusterPolicyLibraryProviderConfig {
|
|
1443
|
+
/**
|
|
1444
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
1445
|
+
*/
|
|
1346
1446
|
workspaceId: pulumi.Input<string>;
|
|
1347
1447
|
}
|
|
1348
1448
|
export interface ClusterPolicyLibraryPypi {
|
|
1349
1449
|
package: pulumi.Input<string>;
|
|
1350
1450
|
repo?: pulumi.Input<string>;
|
|
1351
1451
|
}
|
|
1452
|
+
export interface ClusterPolicyProviderConfig {
|
|
1453
|
+
/**
|
|
1454
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
1455
|
+
*/
|
|
1456
|
+
workspaceId: pulumi.Input<string>;
|
|
1457
|
+
}
|
|
1352
1458
|
export interface ClusterProviderConfig {
|
|
1353
1459
|
/**
|
|
1354
1460
|
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
@@ -2013,6 +2119,12 @@ export interface DatabaseSyncedDatabaseTableSpecNewPipelineSpec {
|
|
|
2013
2119
|
*/
|
|
2014
2120
|
storageSchema?: pulumi.Input<string>;
|
|
2015
2121
|
}
|
|
2122
|
+
export interface DbfsFileProviderConfig {
|
|
2123
|
+
/**
|
|
2124
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
2125
|
+
*/
|
|
2126
|
+
workspaceId: pulumi.Input<string>;
|
|
2127
|
+
}
|
|
2016
2128
|
export interface DefaultNamespaceSettingNamespace {
|
|
2017
2129
|
/**
|
|
2018
2130
|
* The value for the setting.
|
|
@@ -2064,12 +2176,37 @@ export interface DisableLegacyFeaturesSettingDisableLegacyFeatures {
|
|
|
2064
2176
|
export interface DisableLegacyFeaturesSettingProviderConfig {
|
|
2065
2177
|
workspaceId: pulumi.Input<string>;
|
|
2066
2178
|
}
|
|
2179
|
+
export interface EndpointAzurePrivateEndpointInfo {
|
|
2180
|
+
/**
|
|
2181
|
+
* The name of the Private Endpoint in the Azure subscription
|
|
2182
|
+
*/
|
|
2183
|
+
privateEndpointName: pulumi.Input<string>;
|
|
2184
|
+
/**
|
|
2185
|
+
* The GUID of the Private Endpoint resource in the Azure subscription.
|
|
2186
|
+
* This is assigned by Azure when the user sets up the Private Endpoint
|
|
2187
|
+
*/
|
|
2188
|
+
privateEndpointResourceGuid: pulumi.Input<string>;
|
|
2189
|
+
/**
|
|
2190
|
+
* (string) - The full resource ID of the Private Endpoint
|
|
2191
|
+
*/
|
|
2192
|
+
privateEndpointResourceId?: pulumi.Input<string>;
|
|
2193
|
+
/**
|
|
2194
|
+
* (string) - The resource ID of the Databricks Private Link Service that this Private Endpoint connects to
|
|
2195
|
+
*/
|
|
2196
|
+
privateLinkServiceId?: pulumi.Input<string>;
|
|
2197
|
+
}
|
|
2067
2198
|
export interface EnhancedSecurityMonitoringWorkspaceSettingEnhancedSecurityMonitoringWorkspace {
|
|
2068
2199
|
isEnabled: pulumi.Input<boolean>;
|
|
2069
2200
|
}
|
|
2070
2201
|
export interface EnhancedSecurityMonitoringWorkspaceSettingProviderConfig {
|
|
2071
2202
|
workspaceId: pulumi.Input<string>;
|
|
2072
2203
|
}
|
|
2204
|
+
export interface EntitlementsProviderConfig {
|
|
2205
|
+
/**
|
|
2206
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
2207
|
+
*/
|
|
2208
|
+
workspaceId: pulumi.Input<string>;
|
|
2209
|
+
}
|
|
2073
2210
|
export interface EntityTagAssignmentProviderConfig {
|
|
2074
2211
|
/**
|
|
2075
2212
|
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
@@ -2451,6 +2588,30 @@ export interface GetAppsSettingsCustomTemplatesProviderConfigArgs {
|
|
|
2451
2588
|
*/
|
|
2452
2589
|
workspaceId: pulumi.Input<string>;
|
|
2453
2590
|
}
|
|
2591
|
+
export interface GetAppsSpaceProviderConfig {
|
|
2592
|
+
/**
|
|
2593
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
2594
|
+
*/
|
|
2595
|
+
workspaceId: string;
|
|
2596
|
+
}
|
|
2597
|
+
export interface GetAppsSpaceProviderConfigArgs {
|
|
2598
|
+
/**
|
|
2599
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
2600
|
+
*/
|
|
2601
|
+
workspaceId: pulumi.Input<string>;
|
|
2602
|
+
}
|
|
2603
|
+
export interface GetAppsSpacesProviderConfig {
|
|
2604
|
+
/**
|
|
2605
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
2606
|
+
*/
|
|
2607
|
+
workspaceId: string;
|
|
2608
|
+
}
|
|
2609
|
+
export interface GetAppsSpacesProviderConfigArgs {
|
|
2610
|
+
/**
|
|
2611
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
2612
|
+
*/
|
|
2613
|
+
workspaceId: pulumi.Input<string>;
|
|
2614
|
+
}
|
|
2454
2615
|
export interface GetBudgetPoliciesFilterBy {
|
|
2455
2616
|
/**
|
|
2456
2617
|
* The policy creator user id to be filtered on.
|
|
@@ -11369,6 +11530,18 @@ export interface InstancePoolPreloadedDockerImageBasicAuth {
|
|
|
11369
11530
|
password: pulumi.Input<string>;
|
|
11370
11531
|
username: pulumi.Input<string>;
|
|
11371
11532
|
}
|
|
11533
|
+
export interface InstancePoolProviderConfig {
|
|
11534
|
+
/**
|
|
11535
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
11536
|
+
*/
|
|
11537
|
+
workspaceId: pulumi.Input<string>;
|
|
11538
|
+
}
|
|
11539
|
+
export interface InstanceProfileProviderConfig {
|
|
11540
|
+
/**
|
|
11541
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
11542
|
+
*/
|
|
11543
|
+
workspaceId: pulumi.Input<string>;
|
|
11544
|
+
}
|
|
11372
11545
|
export interface IpAccessListProviderConfig {
|
|
11373
11546
|
/**
|
|
11374
11547
|
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
@@ -11491,6 +11664,7 @@ export interface JobGitSource {
|
|
|
11491
11664
|
* 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`.
|
|
11492
11665
|
*/
|
|
11493
11666
|
provider?: pulumi.Input<string>;
|
|
11667
|
+
sparseCheckout?: pulumi.Input<inputs.JobGitSourceSparseCheckout>;
|
|
11494
11668
|
/**
|
|
11495
11669
|
* name of the Git branch to use. Conflicts with `branch` and `commit`.
|
|
11496
11670
|
*/
|
|
@@ -11508,6 +11682,9 @@ export interface JobGitSourceJobSource {
|
|
|
11508
11682
|
importFromGitBranch: pulumi.Input<string>;
|
|
11509
11683
|
jobConfigPath: pulumi.Input<string>;
|
|
11510
11684
|
}
|
|
11685
|
+
export interface JobGitSourceSparseCheckout {
|
|
11686
|
+
patterns?: pulumi.Input<pulumi.Input<string>[]>;
|
|
11687
|
+
}
|
|
11511
11688
|
export interface JobHealth {
|
|
11512
11689
|
/**
|
|
11513
11690
|
* list of rules that are represented as objects with the following attributes:
|
|
@@ -14431,6 +14608,12 @@ export interface MetastoreDataAccessGcpServiceAccountKey {
|
|
|
14431
14608
|
privateKey: pulumi.Input<string>;
|
|
14432
14609
|
privateKeyId: pulumi.Input<string>;
|
|
14433
14610
|
}
|
|
14611
|
+
export interface MetastoreProviderProviderConfig {
|
|
14612
|
+
/**
|
|
14613
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
14614
|
+
*/
|
|
14615
|
+
workspaceId: pulumi.Input<string>;
|
|
14616
|
+
}
|
|
14434
14617
|
export interface MlflowExperimentProviderConfig {
|
|
14435
14618
|
/**
|
|
14436
14619
|
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
@@ -15264,6 +15447,9 @@ export interface MountGs {
|
|
|
15264
15447
|
bucketName: pulumi.Input<string>;
|
|
15265
15448
|
serviceAccount?: pulumi.Input<string>;
|
|
15266
15449
|
}
|
|
15450
|
+
export interface MountProviderConfig {
|
|
15451
|
+
workspaceId: pulumi.Input<string>;
|
|
15452
|
+
}
|
|
15267
15453
|
export interface MountS3 {
|
|
15268
15454
|
bucketName: pulumi.Input<string>;
|
|
15269
15455
|
instanceProfile?: pulumi.Input<string>;
|
|
@@ -15404,11 +15590,11 @@ export interface MwsNetworksGcpNetworkInfo {
|
|
|
15404
15590
|
*/
|
|
15405
15591
|
networkProjectId: pulumi.Input<string>;
|
|
15406
15592
|
/**
|
|
15407
|
-
* @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.
|
|
15593
|
+
* @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
|
|
15408
15594
|
*/
|
|
15409
15595
|
podIpRangeName?: pulumi.Input<string>;
|
|
15410
15596
|
/**
|
|
15411
|
-
* @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.
|
|
15597
|
+
* @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
|
|
15412
15598
|
*/
|
|
15413
15599
|
serviceIpRangeName?: pulumi.Input<string>;
|
|
15414
15600
|
/**
|
|
@@ -15469,11 +15655,11 @@ export interface MwsWorkspacesExternalCustomerInfo {
|
|
|
15469
15655
|
}
|
|
15470
15656
|
export interface MwsWorkspacesGcpManagedNetworkConfig {
|
|
15471
15657
|
/**
|
|
15472
|
-
* @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.
|
|
15658
|
+
* @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
|
|
15473
15659
|
*/
|
|
15474
15660
|
gkeClusterPodIpRange?: pulumi.Input<string>;
|
|
15475
15661
|
/**
|
|
15476
|
-
* @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.
|
|
15662
|
+
* @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
|
|
15477
15663
|
*/
|
|
15478
15664
|
gkeClusterServiceIpRange?: pulumi.Input<string>;
|
|
15479
15665
|
subnetCidr: pulumi.Input<string>;
|
|
@@ -15531,8 +15717,6 @@ export interface NotificationDestinationConfigEmail {
|
|
|
15531
15717
|
export interface NotificationDestinationConfigGenericWebhook {
|
|
15532
15718
|
/**
|
|
15533
15719
|
* The password for basic authentication.
|
|
15534
|
-
*
|
|
15535
|
-
* > **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.
|
|
15536
15720
|
*/
|
|
15537
15721
|
password?: pulumi.Input<string>;
|
|
15538
15722
|
passwordSet?: pulumi.Input<boolean>;
|
|
@@ -15598,6 +15782,20 @@ export interface NotificationDestinationConfigSlack {
|
|
|
15598
15782
|
url?: pulumi.Input<string>;
|
|
15599
15783
|
urlSet?: pulumi.Input<boolean>;
|
|
15600
15784
|
}
|
|
15785
|
+
export interface NotificationDestinationProviderConfig {
|
|
15786
|
+
/**
|
|
15787
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
15788
|
+
*
|
|
15789
|
+
* > **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.
|
|
15790
|
+
*/
|
|
15791
|
+
workspaceId: pulumi.Input<string>;
|
|
15792
|
+
}
|
|
15793
|
+
export interface OboTokenProviderConfig {
|
|
15794
|
+
/**
|
|
15795
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
15796
|
+
*/
|
|
15797
|
+
workspaceId: pulumi.Input<string>;
|
|
15798
|
+
}
|
|
15601
15799
|
export interface OnlineStoreProviderConfig {
|
|
15602
15800
|
/**
|
|
15603
15801
|
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
@@ -15722,6 +15920,12 @@ export interface PermissionsAccessControl {
|
|
|
15722
15920
|
*/
|
|
15723
15921
|
userName?: pulumi.Input<string>;
|
|
15724
15922
|
}
|
|
15923
|
+
export interface PermissionsProviderConfig {
|
|
15924
|
+
/**
|
|
15925
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
15926
|
+
*/
|
|
15927
|
+
workspaceId: pulumi.Input<string>;
|
|
15928
|
+
}
|
|
15725
15929
|
export interface PipelineCluster {
|
|
15726
15930
|
applyPolicyDefaultValues?: pulumi.Input<boolean>;
|
|
15727
15931
|
autoscale?: pulumi.Input<inputs.PipelineClusterAutoscale>;
|
|
@@ -16180,6 +16384,9 @@ export interface PipelineNotification {
|
|
|
16180
16384
|
*/
|
|
16181
16385
|
emailRecipients?: pulumi.Input<pulumi.Input<string>[]>;
|
|
16182
16386
|
}
|
|
16387
|
+
export interface PipelineProviderConfig {
|
|
16388
|
+
workspaceId: pulumi.Input<string>;
|
|
16389
|
+
}
|
|
16183
16390
|
export interface PipelineRestartWindow {
|
|
16184
16391
|
daysOfWeeks?: pulumi.Input<pulumi.Input<string>[]>;
|
|
16185
16392
|
startHour: pulumi.Input<number>;
|
|
@@ -16449,6 +16656,14 @@ export interface PostgresProjectProviderConfig {
|
|
|
16449
16656
|
workspaceId: pulumi.Input<string>;
|
|
16450
16657
|
}
|
|
16451
16658
|
export interface PostgresProjectSpec {
|
|
16659
|
+
/**
|
|
16660
|
+
* (string) - The budget policy that is applied to the project
|
|
16661
|
+
*/
|
|
16662
|
+
budgetPolicyId?: pulumi.Input<string>;
|
|
16663
|
+
/**
|
|
16664
|
+
* (list of ProjectCustomTag) - The effective custom tags associated with the project
|
|
16665
|
+
*/
|
|
16666
|
+
customTags?: pulumi.Input<pulumi.Input<inputs.PostgresProjectSpecCustomTag>[]>;
|
|
16452
16667
|
/**
|
|
16453
16668
|
* (ProjectDefaultEndpointSettings) - The effective default endpoint settings
|
|
16454
16669
|
*/
|
|
@@ -16466,6 +16681,16 @@ export interface PostgresProjectSpec {
|
|
|
16466
16681
|
*/
|
|
16467
16682
|
pgVersion?: pulumi.Input<number>;
|
|
16468
16683
|
}
|
|
16684
|
+
export interface PostgresProjectSpecCustomTag {
|
|
16685
|
+
/**
|
|
16686
|
+
* The key of the custom tag
|
|
16687
|
+
*/
|
|
16688
|
+
key?: pulumi.Input<string>;
|
|
16689
|
+
/**
|
|
16690
|
+
* The value of the custom tag
|
|
16691
|
+
*/
|
|
16692
|
+
value?: pulumi.Input<string>;
|
|
16693
|
+
}
|
|
16469
16694
|
export interface PostgresProjectSpecDefaultEndpointSettings {
|
|
16470
16695
|
/**
|
|
16471
16696
|
* The maximum number of Compute Units. Minimum value is 0.5
|
|
@@ -16497,6 +16722,14 @@ export interface PostgresProjectStatus {
|
|
|
16497
16722
|
* (integer) - The logical size limit for a branch
|
|
16498
16723
|
*/
|
|
16499
16724
|
branchLogicalSizeLimitBytes?: pulumi.Input<number>;
|
|
16725
|
+
/**
|
|
16726
|
+
* (string) - The budget policy that is applied to the project
|
|
16727
|
+
*/
|
|
16728
|
+
budgetPolicyId?: pulumi.Input<string>;
|
|
16729
|
+
/**
|
|
16730
|
+
* (list of ProjectCustomTag) - The effective custom tags associated with the project
|
|
16731
|
+
*/
|
|
16732
|
+
customTags?: pulumi.Input<pulumi.Input<inputs.PostgresProjectStatusCustomTag>[]>;
|
|
16500
16733
|
/**
|
|
16501
16734
|
* (ProjectDefaultEndpointSettings) - The effective default endpoint settings
|
|
16502
16735
|
*/
|
|
@@ -16522,6 +16755,16 @@ export interface PostgresProjectStatus {
|
|
|
16522
16755
|
*/
|
|
16523
16756
|
syntheticStorageSizeBytes?: pulumi.Input<number>;
|
|
16524
16757
|
}
|
|
16758
|
+
export interface PostgresProjectStatusCustomTag {
|
|
16759
|
+
/**
|
|
16760
|
+
* The key of the custom tag
|
|
16761
|
+
*/
|
|
16762
|
+
key?: pulumi.Input<string>;
|
|
16763
|
+
/**
|
|
16764
|
+
* The value of the custom tag
|
|
16765
|
+
*/
|
|
16766
|
+
value?: pulumi.Input<string>;
|
|
16767
|
+
}
|
|
16525
16768
|
export interface PostgresProjectStatusDefaultEndpointSettings {
|
|
16526
16769
|
/**
|
|
16527
16770
|
* The maximum number of Compute Units. Minimum value is 0.5
|
|
@@ -16918,6 +17161,12 @@ export interface RegisteredModelProviderConfig {
|
|
|
16918
17161
|
*/
|
|
16919
17162
|
workspaceId: pulumi.Input<string>;
|
|
16920
17163
|
}
|
|
17164
|
+
export interface RepoProviderConfig {
|
|
17165
|
+
/**
|
|
17166
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
17167
|
+
*/
|
|
17168
|
+
workspaceId: pulumi.Input<string>;
|
|
17169
|
+
}
|
|
16921
17170
|
export interface RepoSparseCheckout {
|
|
16922
17171
|
/**
|
|
16923
17172
|
* array of paths (directories) that will be used for sparse checkout. List of patterns could be updated in-place.
|
|
@@ -17017,6 +17266,12 @@ export interface SecretScopeKeyvaultMetadata {
|
|
|
17017
17266
|
dnsName: pulumi.Input<string>;
|
|
17018
17267
|
resourceId: pulumi.Input<string>;
|
|
17019
17268
|
}
|
|
17269
|
+
export interface SecretScopeProviderConfig {
|
|
17270
|
+
/**
|
|
17271
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
17272
|
+
*/
|
|
17273
|
+
workspaceId: pulumi.Input<string>;
|
|
17274
|
+
}
|
|
17020
17275
|
export interface ServicePrincipalFederationPolicyOidcPolicy {
|
|
17021
17276
|
/**
|
|
17022
17277
|
* The allowed token audiences, as specified in the 'aud' claim of federated tokens.
|
|
@@ -17059,6 +17314,12 @@ export interface ServicePrincipalFederationPolicyOidcPolicy {
|
|
|
17059
17314
|
*/
|
|
17060
17315
|
subjectClaim?: pulumi.Input<string>;
|
|
17061
17316
|
}
|
|
17317
|
+
export interface ServicePrincipalSecretProviderConfig {
|
|
17318
|
+
/**
|
|
17319
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
17320
|
+
*/
|
|
17321
|
+
workspaceId: pulumi.Input<string>;
|
|
17322
|
+
}
|
|
17062
17323
|
export interface ShareObject {
|
|
17063
17324
|
addedAt?: pulumi.Input<number>;
|
|
17064
17325
|
addedBy?: pulumi.Input<string>;
|
|
@@ -17177,6 +17438,12 @@ export interface SqlAlertOptions {
|
|
|
17177
17438
|
export interface SqlAlertProviderConfig {
|
|
17178
17439
|
workspaceId: pulumi.Input<string>;
|
|
17179
17440
|
}
|
|
17441
|
+
export interface SqlDashboardProviderConfig {
|
|
17442
|
+
/**
|
|
17443
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
17444
|
+
*/
|
|
17445
|
+
workspaceId: pulumi.Input<string>;
|
|
17446
|
+
}
|
|
17180
17447
|
export interface SqlEndpointChannel {
|
|
17181
17448
|
dbsqlVersion?: pulumi.Input<string>;
|
|
17182
17449
|
/**
|
|
@@ -17217,6 +17484,12 @@ export interface SqlEndpointTagsCustomTag {
|
|
|
17217
17484
|
key: pulumi.Input<string>;
|
|
17218
17485
|
value: pulumi.Input<string>;
|
|
17219
17486
|
}
|
|
17487
|
+
export interface SqlGlobalConfigProviderConfig {
|
|
17488
|
+
/**
|
|
17489
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
17490
|
+
*/
|
|
17491
|
+
workspaceId: pulumi.Input<string>;
|
|
17492
|
+
}
|
|
17220
17493
|
export interface SqlPermissionsPrivilegeAssignment {
|
|
17221
17494
|
/**
|
|
17222
17495
|
* `displayName` for a databricks.Group or databricks_user, `applicationId` for a databricks_service_principal.
|
|
@@ -17368,6 +17641,12 @@ export interface SqlQueryParameterText {
|
|
|
17368
17641
|
*/
|
|
17369
17642
|
value: pulumi.Input<string>;
|
|
17370
17643
|
}
|
|
17644
|
+
export interface SqlQueryProviderConfig {
|
|
17645
|
+
/**
|
|
17646
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
17647
|
+
*/
|
|
17648
|
+
workspaceId: pulumi.Input<string>;
|
|
17649
|
+
}
|
|
17371
17650
|
export interface SqlQuerySchedule {
|
|
17372
17651
|
continuous?: pulumi.Input<inputs.SqlQueryScheduleContinuous>;
|
|
17373
17652
|
daily?: pulumi.Input<inputs.SqlQueryScheduleDaily>;
|
|
@@ -17417,6 +17696,12 @@ export interface SqlTableProviderConfig {
|
|
|
17417
17696
|
*/
|
|
17418
17697
|
workspaceId: pulumi.Input<string>;
|
|
17419
17698
|
}
|
|
17699
|
+
export interface SqlVisualizationProviderConfig {
|
|
17700
|
+
/**
|
|
17701
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
17702
|
+
*/
|
|
17703
|
+
workspaceId: pulumi.Input<string>;
|
|
17704
|
+
}
|
|
17420
17705
|
export interface SqlWidgetParameter {
|
|
17421
17706
|
mapTo?: pulumi.Input<string>;
|
|
17422
17707
|
name: pulumi.Input<string>;
|
|
@@ -17432,6 +17717,12 @@ export interface SqlWidgetPosition {
|
|
|
17432
17717
|
sizeX: pulumi.Input<number>;
|
|
17433
17718
|
sizeY: pulumi.Input<number>;
|
|
17434
17719
|
}
|
|
17720
|
+
export interface SqlWidgetProviderConfig {
|
|
17721
|
+
/**
|
|
17722
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
17723
|
+
*/
|
|
17724
|
+
workspaceId: pulumi.Input<string>;
|
|
17725
|
+
}
|
|
17435
17726
|
export interface StorageCredentialAwsIamRole {
|
|
17436
17727
|
/**
|
|
17437
17728
|
* The external ID used in role assumption to prevent the confused deputy problem.
|
|
@@ -17529,6 +17820,9 @@ export interface TableColumn {
|
|
|
17529
17820
|
typeScale?: pulumi.Input<number>;
|
|
17530
17821
|
typeText: pulumi.Input<string>;
|
|
17531
17822
|
}
|
|
17823
|
+
export interface TableProviderConfig {
|
|
17824
|
+
workspaceId: pulumi.Input<string>;
|
|
17825
|
+
}
|
|
17532
17826
|
export interface TagPolicyProviderConfig {
|
|
17533
17827
|
/**
|
|
17534
17828
|
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
@@ -17538,6 +17832,12 @@ export interface TagPolicyProviderConfig {
|
|
|
17538
17832
|
export interface TagPolicyValue {
|
|
17539
17833
|
name: pulumi.Input<string>;
|
|
17540
17834
|
}
|
|
17835
|
+
export interface TokenProviderConfig {
|
|
17836
|
+
/**
|
|
17837
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
17838
|
+
*/
|
|
17839
|
+
workspaceId: pulumi.Input<string>;
|
|
17840
|
+
}
|
|
17541
17841
|
export interface VectorSearchEndpointEndpointStatus {
|
|
17542
17842
|
/**
|
|
17543
17843
|
* Additional status message.
|
|
@@ -17686,6 +17986,12 @@ export interface WorkspaceBindingProviderConfig {
|
|
|
17686
17986
|
*/
|
|
17687
17987
|
workspaceId: pulumi.Input<string>;
|
|
17688
17988
|
}
|
|
17989
|
+
export interface WorkspaceConfProviderConfig {
|
|
17990
|
+
/**
|
|
17991
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
17992
|
+
*/
|
|
17993
|
+
workspaceId: pulumi.Input<string>;
|
|
17994
|
+
}
|
|
17689
17995
|
export interface WorkspaceEntityTagAssignmentProviderConfig {
|
|
17690
17996
|
/**
|
|
17691
17997
|
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|