@pulumi/databricks 1.100.0-alpha.1784183363 → 1.100.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/accountNetworkPolicy.d.ts +23 -0
- package/accountNetworkPolicy.d.ts.map +1 -1
- package/accountNetworkPolicy.js +23 -0
- package/accountNetworkPolicy.js.map +1 -1
- package/aiSearchEndpoint.d.ts +1 -1
- package/aiSearchEndpoint.js +1 -1
- package/aiSearchIndex.d.ts +1 -1
- package/aiSearchIndex.js +1 -1
- package/alertV2.d.ts +1 -1
- package/alertV2.js +1 -1
- package/disasterRecoveryFailoverGroup.d.ts +1 -1
- package/disasterRecoveryFailoverGroup.js +1 -1
- package/disasterRecoveryStableUrl.d.ts +33 -1
- package/disasterRecoveryStableUrl.d.ts.map +1 -1
- package/disasterRecoveryStableUrl.js +5 -1
- package/disasterRecoveryStableUrl.js.map +1 -1
- package/getAiSearchEndpoint.d.ts +2 -2
- package/getAiSearchEndpoint.js +2 -2
- package/getAiSearchEndpoints.d.ts +2 -2
- package/getAiSearchEndpoints.js +2 -2
- package/getAiSearchIndex.d.ts +2 -2
- package/getAiSearchIndex.js +2 -2
- package/getAiSearchIndexes.d.ts +2 -2
- package/getAiSearchIndexes.js +2 -2
- package/getAlertV2.d.ts +2 -2
- package/getAlertV2.js +2 -2
- package/getAlertsV2.d.ts +2 -2
- package/getAlertsV2.js +2 -2
- package/getDisasterRecoveryFailoverGroup.d.ts +2 -2
- package/getDisasterRecoveryFailoverGroup.js +2 -2
- package/getDisasterRecoveryFailoverGroups.d.ts +2 -2
- package/getDisasterRecoveryFailoverGroups.js +2 -2
- package/getDisasterRecoveryStableUrl.d.ts +18 -2
- package/getDisasterRecoveryStableUrl.d.ts.map +1 -1
- package/getDisasterRecoveryStableUrl.js +2 -2
- package/getDisasterRecoveryStableUrl.js.map +1 -1
- package/getDisasterRecoveryStableUrls.d.ts +2 -2
- package/getDisasterRecoveryStableUrls.js +2 -2
- package/getMlflowExperiment.d.ts +3 -0
- package/getMlflowExperiment.d.ts.map +1 -1
- package/getMlflowExperiment.js +2 -0
- package/getMlflowExperiment.js.map +1 -1
- package/getPostgresCdfConfig.d.ts +115 -0
- package/getPostgresCdfConfig.d.ts.map +1 -0
- package/getPostgresCdfConfig.js +89 -0
- package/getPostgresCdfConfig.js.map +1 -0
- package/getPostgresCdfConfigs.d.ts +97 -0
- package/getPostgresCdfConfigs.d.ts.map +1 -0
- package/getPostgresCdfConfigs.js +91 -0
- package/getPostgresCdfConfigs.js.map +1 -0
- package/getPostgresCdfStatus.d.ts +123 -0
- package/getPostgresCdfStatus.d.ts.map +1 -0
- package/getPostgresCdfStatus.js +89 -0
- package/getPostgresCdfStatus.js.map +1 -0
- package/getPostgresCdfStatuses.d.ts +97 -0
- package/getPostgresCdfStatuses.d.ts.map +1 -0
- package/getPostgresCdfStatuses.js +91 -0
- package/getPostgresCdfStatuses.js.map +1 -0
- package/getSupervisorAgentTool.d.ts +1 -1
- package/index.d.ts +15 -0
- package/index.d.ts.map +1 -1
- package/index.js +22 -5
- package/index.js.map +1 -1
- package/job.d.ts +3 -0
- package/job.d.ts.map +1 -1
- package/job.js +2 -0
- package/job.js.map +1 -1
- package/mlflowExperiment.d.ts +3 -0
- package/mlflowExperiment.d.ts.map +1 -1
- package/mlflowExperiment.js +2 -0
- package/mlflowExperiment.js.map +1 -1
- package/mwsWorkspaces.d.ts +3 -3
- package/package.json +2 -2
- package/postgresCdfConfig.d.ts +188 -0
- package/postgresCdfConfig.d.ts.map +1 -0
- package/postgresCdfConfig.js +142 -0
- package/postgresCdfConfig.js.map +1 -0
- package/supervisorAgentTool.d.ts +3 -3
- package/types/input.d.ts +149 -13
- package/types/input.d.ts.map +1 -1
- package/types/output.d.ts +265 -17
- package/types/output.d.ts.map +1 -1
package/types/output.d.ts
CHANGED
|
@@ -4233,6 +4233,10 @@ export interface FeatureEngineeringFeatureFunctionAggregationFunctionSum {
|
|
|
4233
4233
|
}
|
|
4234
4234
|
export interface FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindow {
|
|
4235
4235
|
continuous?: outputs.FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowContinuous;
|
|
4236
|
+
/**
|
|
4237
|
+
* A window that spans the entire lifetime of the data source
|
|
4238
|
+
*/
|
|
4239
|
+
lifetime?: outputs.FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowLifetime;
|
|
4236
4240
|
/**
|
|
4237
4241
|
* A long (multi-day) rolling window served via the hybrid batch + streaming path
|
|
4238
4242
|
*/
|
|
@@ -4248,6 +4252,9 @@ export interface FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowC
|
|
|
4248
4252
|
offset?: string;
|
|
4249
4253
|
windowDuration: string;
|
|
4250
4254
|
}
|
|
4255
|
+
export interface FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowLifetime {
|
|
4256
|
+
slideDuration?: string;
|
|
4257
|
+
}
|
|
4251
4258
|
export interface FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowLongRolling {
|
|
4252
4259
|
delay?: string;
|
|
4253
4260
|
windowDuration: string;
|
|
@@ -4257,9 +4264,6 @@ export interface FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowR
|
|
|
4257
4264
|
windowDuration: string;
|
|
4258
4265
|
}
|
|
4259
4266
|
export interface FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowSliding {
|
|
4260
|
-
/**
|
|
4261
|
-
* The slide duration (interval by which windows advance, must be positive and less than duration)
|
|
4262
|
-
*/
|
|
4263
4267
|
slideDuration: string;
|
|
4264
4268
|
windowDuration: string;
|
|
4265
4269
|
}
|
|
@@ -4438,6 +4442,10 @@ export interface FeatureEngineeringFeatureSourceStreamSource {
|
|
|
4438
4442
|
}
|
|
4439
4443
|
export interface FeatureEngineeringFeatureTimeWindow {
|
|
4440
4444
|
continuous?: outputs.FeatureEngineeringFeatureTimeWindowContinuous;
|
|
4445
|
+
/**
|
|
4446
|
+
* A window that spans the entire lifetime of the data source
|
|
4447
|
+
*/
|
|
4448
|
+
lifetime?: outputs.FeatureEngineeringFeatureTimeWindowLifetime;
|
|
4441
4449
|
/**
|
|
4442
4450
|
* A long (multi-day) rolling window served via the hybrid batch + streaming path
|
|
4443
4451
|
*/
|
|
@@ -4453,6 +4461,9 @@ export interface FeatureEngineeringFeatureTimeWindowContinuous {
|
|
|
4453
4461
|
offset?: string;
|
|
4454
4462
|
windowDuration: string;
|
|
4455
4463
|
}
|
|
4464
|
+
export interface FeatureEngineeringFeatureTimeWindowLifetime {
|
|
4465
|
+
slideDuration?: string;
|
|
4466
|
+
}
|
|
4456
4467
|
export interface FeatureEngineeringFeatureTimeWindowLongRolling {
|
|
4457
4468
|
delay?: string;
|
|
4458
4469
|
windowDuration: string;
|
|
@@ -4462,9 +4473,6 @@ export interface FeatureEngineeringFeatureTimeWindowRolling {
|
|
|
4462
4473
|
windowDuration: string;
|
|
4463
4474
|
}
|
|
4464
4475
|
export interface FeatureEngineeringFeatureTimeWindowSliding {
|
|
4465
|
-
/**
|
|
4466
|
-
* The slide duration (interval by which windows advance, must be positive and less than duration)
|
|
4467
|
-
*/
|
|
4468
4476
|
slideDuration: string;
|
|
4469
4477
|
windowDuration: string;
|
|
4470
4478
|
}
|
|
@@ -14462,6 +14470,15 @@ export interface GetDisasterRecoveryFailoverGroupsFailoverGroupWorkspaceSet {
|
|
|
14462
14470
|
workspaceIds: string[];
|
|
14463
14471
|
}
|
|
14464
14472
|
export interface GetDisasterRecoveryStableUrlsStableUrl {
|
|
14473
|
+
/**
|
|
14474
|
+
* (string) - The workspace this stable URL currently routes to. Set to
|
|
14475
|
+
* `initialWorkspaceId` at creation, advanced to the failover group's primary
|
|
14476
|
+
* while attached (including across a failover), and preserved when the stable
|
|
14477
|
+
* URL is detached from its failover group. Read this to see where an unattached
|
|
14478
|
+
* stable URL points: after a failover followed by a detach it reflects the
|
|
14479
|
+
* post-failover primary, not `initialWorkspaceId`
|
|
14480
|
+
*/
|
|
14481
|
+
effectiveWorkspaceId: string;
|
|
14465
14482
|
/**
|
|
14466
14483
|
* (string) - Fully qualified resource name of the FailoverGroup this stable URL is
|
|
14467
14484
|
* currently linked to, in the format
|
|
@@ -14480,6 +14497,13 @@ export interface GetDisasterRecoveryStableUrlsStableUrl {
|
|
|
14480
14497
|
* Format: accounts/{account_id}/stable-urls/{stable_url_id}
|
|
14481
14498
|
*/
|
|
14482
14499
|
name: string;
|
|
14500
|
+
/**
|
|
14501
|
+
* (string) - The stable workspace ID for this stable URL. Generated on creation and
|
|
14502
|
+
* immutable thereafter; identifies the URL across failovers and is the same
|
|
14503
|
+
* value embedded in the `url` (as the `w=` query parameter for SPOG URLs,
|
|
14504
|
+
* or in the `conn-<id>` hostname for Private-Link URLs)
|
|
14505
|
+
*/
|
|
14506
|
+
stableWorkspaceId: string;
|
|
14483
14507
|
/**
|
|
14484
14508
|
* (string) - The stable URL endpoint. Generated on creation and
|
|
14485
14509
|
* immutable thereafter. For non-Private-Link workspaces this is
|
|
@@ -15198,6 +15222,10 @@ export interface GetFeatureEngineeringFeatureFunctionAggregationFunctionTimeWind
|
|
|
15198
15222
|
* (ContinuousWindow, deprecated)
|
|
15199
15223
|
*/
|
|
15200
15224
|
continuous?: outputs.GetFeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowContinuous;
|
|
15225
|
+
/**
|
|
15226
|
+
* (LifetimeWindow) - A window that spans the entire lifetime of the data source
|
|
15227
|
+
*/
|
|
15228
|
+
lifetime?: outputs.GetFeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowLifetime;
|
|
15201
15229
|
/**
|
|
15202
15230
|
* (LongRollingWindow) - A long (multi-day) rolling window served via the hybrid batch + streaming path
|
|
15203
15231
|
*/
|
|
@@ -15225,6 +15253,12 @@ export interface GetFeatureEngineeringFeatureFunctionAggregationFunctionTimeWind
|
|
|
15225
15253
|
*/
|
|
15226
15254
|
windowDuration: string;
|
|
15227
15255
|
}
|
|
15256
|
+
export interface GetFeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowLifetime {
|
|
15257
|
+
/**
|
|
15258
|
+
* (string) - The slide duration (interval by which windows advance, must be positive and less than duration)
|
|
15259
|
+
*/
|
|
15260
|
+
slideDuration?: string;
|
|
15261
|
+
}
|
|
15228
15262
|
export interface GetFeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowLongRolling {
|
|
15229
15263
|
/**
|
|
15230
15264
|
* (string) - The delay applied to the end of the rolling window (must be non-negative).
|
|
@@ -15452,6 +15486,10 @@ export interface GetFeatureEngineeringFeatureTimeWindow {
|
|
|
15452
15486
|
* (ContinuousWindow, deprecated)
|
|
15453
15487
|
*/
|
|
15454
15488
|
continuous?: outputs.GetFeatureEngineeringFeatureTimeWindowContinuous;
|
|
15489
|
+
/**
|
|
15490
|
+
* (LifetimeWindow) - A window that spans the entire lifetime of the data source
|
|
15491
|
+
*/
|
|
15492
|
+
lifetime?: outputs.GetFeatureEngineeringFeatureTimeWindowLifetime;
|
|
15455
15493
|
/**
|
|
15456
15494
|
* (LongRollingWindow) - A long (multi-day) rolling window served via the hybrid batch + streaming path
|
|
15457
15495
|
*/
|
|
@@ -15479,6 +15517,12 @@ export interface GetFeatureEngineeringFeatureTimeWindowContinuous {
|
|
|
15479
15517
|
*/
|
|
15480
15518
|
windowDuration: string;
|
|
15481
15519
|
}
|
|
15520
|
+
export interface GetFeatureEngineeringFeatureTimeWindowLifetime {
|
|
15521
|
+
/**
|
|
15522
|
+
* (string) - The slide duration (interval by which windows advance, must be positive and less than duration)
|
|
15523
|
+
*/
|
|
15524
|
+
slideDuration?: string;
|
|
15525
|
+
}
|
|
15482
15526
|
export interface GetFeatureEngineeringFeatureTimeWindowLongRolling {
|
|
15483
15527
|
/**
|
|
15484
15528
|
* (string) - The delay applied to the end of the rolling window (must be non-negative).
|
|
@@ -15833,6 +15877,10 @@ export interface GetFeatureEngineeringFeaturesFeatureFunctionAggregationFunction
|
|
|
15833
15877
|
* (ContinuousWindow, deprecated)
|
|
15834
15878
|
*/
|
|
15835
15879
|
continuous?: outputs.GetFeatureEngineeringFeaturesFeatureFunctionAggregationFunctionTimeWindowContinuous;
|
|
15880
|
+
/**
|
|
15881
|
+
* (LifetimeWindow) - A window that spans the entire lifetime of the data source
|
|
15882
|
+
*/
|
|
15883
|
+
lifetime?: outputs.GetFeatureEngineeringFeaturesFeatureFunctionAggregationFunctionTimeWindowLifetime;
|
|
15836
15884
|
/**
|
|
15837
15885
|
* (LongRollingWindow) - A long (multi-day) rolling window served via the hybrid batch + streaming path
|
|
15838
15886
|
*/
|
|
@@ -15860,6 +15908,12 @@ export interface GetFeatureEngineeringFeaturesFeatureFunctionAggregationFunction
|
|
|
15860
15908
|
*/
|
|
15861
15909
|
windowDuration: string;
|
|
15862
15910
|
}
|
|
15911
|
+
export interface GetFeatureEngineeringFeaturesFeatureFunctionAggregationFunctionTimeWindowLifetime {
|
|
15912
|
+
/**
|
|
15913
|
+
* (string) - The slide duration (interval by which windows advance, must be positive and less than duration)
|
|
15914
|
+
*/
|
|
15915
|
+
slideDuration?: string;
|
|
15916
|
+
}
|
|
15863
15917
|
export interface GetFeatureEngineeringFeaturesFeatureFunctionAggregationFunctionTimeWindowLongRolling {
|
|
15864
15918
|
/**
|
|
15865
15919
|
* (string) - The delay applied to the end of the rolling window (must be non-negative).
|
|
@@ -16083,6 +16137,10 @@ export interface GetFeatureEngineeringFeaturesFeatureTimeWindow {
|
|
|
16083
16137
|
* (ContinuousWindow, deprecated)
|
|
16084
16138
|
*/
|
|
16085
16139
|
continuous?: outputs.GetFeatureEngineeringFeaturesFeatureTimeWindowContinuous;
|
|
16140
|
+
/**
|
|
16141
|
+
* (LifetimeWindow) - A window that spans the entire lifetime of the data source
|
|
16142
|
+
*/
|
|
16143
|
+
lifetime?: outputs.GetFeatureEngineeringFeaturesFeatureTimeWindowLifetime;
|
|
16086
16144
|
/**
|
|
16087
16145
|
* (LongRollingWindow) - A long (multi-day) rolling window served via the hybrid batch + streaming path
|
|
16088
16146
|
*/
|
|
@@ -16110,6 +16168,12 @@ export interface GetFeatureEngineeringFeaturesFeatureTimeWindowContinuous {
|
|
|
16110
16168
|
*/
|
|
16111
16169
|
windowDuration: string;
|
|
16112
16170
|
}
|
|
16171
|
+
export interface GetFeatureEngineeringFeaturesFeatureTimeWindowLifetime {
|
|
16172
|
+
/**
|
|
16173
|
+
* (string) - The slide duration (interval by which windows advance, must be positive and less than duration)
|
|
16174
|
+
*/
|
|
16175
|
+
slideDuration?: string;
|
|
16176
|
+
}
|
|
16113
16177
|
export interface GetFeatureEngineeringFeaturesFeatureTimeWindowLongRolling {
|
|
16114
16178
|
/**
|
|
16115
16179
|
* (string) - The delay applied to the end of the rolling window (must be non-negative).
|
|
@@ -19043,6 +19107,14 @@ export interface GetMlflowExperimentTag {
|
|
|
19043
19107
|
key?: string;
|
|
19044
19108
|
value?: string;
|
|
19045
19109
|
}
|
|
19110
|
+
export interface GetMlflowExperimentTraceLocation {
|
|
19111
|
+
ucTraceLocation?: outputs.GetMlflowExperimentTraceLocationUcTraceLocation;
|
|
19112
|
+
}
|
|
19113
|
+
export interface GetMlflowExperimentTraceLocationUcTraceLocation {
|
|
19114
|
+
catalog: string;
|
|
19115
|
+
schema: string;
|
|
19116
|
+
tablePrefix?: string;
|
|
19117
|
+
}
|
|
19046
19118
|
export interface GetMlflowModelLatestVersion {
|
|
19047
19119
|
creationTimestamp?: number;
|
|
19048
19120
|
currentStage?: string;
|
|
@@ -19843,6 +19915,118 @@ export interface GetPostgresCatalogStatus {
|
|
|
19843
19915
|
*/
|
|
19844
19916
|
project: string;
|
|
19845
19917
|
}
|
|
19918
|
+
export interface GetPostgresCdfConfigProviderConfig {
|
|
19919
|
+
/**
|
|
19920
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
19921
|
+
*/
|
|
19922
|
+
workspaceId: string;
|
|
19923
|
+
}
|
|
19924
|
+
export interface GetPostgresCdfConfigsCdfConfig {
|
|
19925
|
+
/**
|
|
19926
|
+
* (string) - The Unity Catalog catalog that replicated tables are written into.
|
|
19927
|
+
* Set at creation; the CdfConfig is immutable
|
|
19928
|
+
*/
|
|
19929
|
+
catalog: string;
|
|
19930
|
+
/**
|
|
19931
|
+
* (string) - The user-specified id; equals the final segment of `name`. Defaults to the
|
|
19932
|
+
* Postgres schema name for configs without an explicit id
|
|
19933
|
+
*/
|
|
19934
|
+
cdfConfigId: string;
|
|
19935
|
+
/**
|
|
19936
|
+
* (string) - When the CdfConfig was created
|
|
19937
|
+
*/
|
|
19938
|
+
createTime: string;
|
|
19939
|
+
/**
|
|
19940
|
+
* (string) - Output only. The full resource name of the CdfConfig.
|
|
19941
|
+
* Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}
|
|
19942
|
+
*/
|
|
19943
|
+
name: string;
|
|
19944
|
+
/**
|
|
19945
|
+
* (string) - The Postgres schema this CdfConfig replicates from. Unique within the
|
|
19946
|
+
* parent database. Set at creation; the CdfConfig is immutable
|
|
19947
|
+
*/
|
|
19948
|
+
postgresSchema: string;
|
|
19949
|
+
/**
|
|
19950
|
+
* Configure the provider for management through account provider.
|
|
19951
|
+
*/
|
|
19952
|
+
providerConfig?: outputs.GetPostgresCdfConfigsCdfConfigProviderConfig;
|
|
19953
|
+
/**
|
|
19954
|
+
* (string) - The Unity Catalog schema that replicated tables are written into.
|
|
19955
|
+
* Set at creation; the CdfConfig is immutable
|
|
19956
|
+
*/
|
|
19957
|
+
schema: string;
|
|
19958
|
+
}
|
|
19959
|
+
export interface GetPostgresCdfConfigsCdfConfigProviderConfig {
|
|
19960
|
+
/**
|
|
19961
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
19962
|
+
*/
|
|
19963
|
+
workspaceId: string;
|
|
19964
|
+
}
|
|
19965
|
+
export interface GetPostgresCdfConfigsProviderConfig {
|
|
19966
|
+
/**
|
|
19967
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
19968
|
+
*/
|
|
19969
|
+
workspaceId: string;
|
|
19970
|
+
}
|
|
19971
|
+
export interface GetPostgresCdfStatusProviderConfig {
|
|
19972
|
+
/**
|
|
19973
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
19974
|
+
*/
|
|
19975
|
+
workspaceId: string;
|
|
19976
|
+
}
|
|
19977
|
+
export interface GetPostgresCdfStatusesCdfStatus {
|
|
19978
|
+
/**
|
|
19979
|
+
* (string) - The high-watermark Log Sequence Number (LSN) committed to Delta Lake
|
|
19980
|
+
*/
|
|
19981
|
+
committedLsn: string;
|
|
19982
|
+
/**
|
|
19983
|
+
* (string) - When replication for this table was first established
|
|
19984
|
+
*/
|
|
19985
|
+
createTime: string;
|
|
19986
|
+
/**
|
|
19987
|
+
* (string) - The last time changes for this table were written to Delta Lake
|
|
19988
|
+
*/
|
|
19989
|
+
lastSyncTime: string;
|
|
19990
|
+
/**
|
|
19991
|
+
* (string) - Output only. The full resource name of the CdfStatus.
|
|
19992
|
+
* Format: projects/{project}/branches/{branch}/databases/{database}/cdf-configs/{cdf_config}/cdf-statuses/{cdf_status}
|
|
19993
|
+
* The {cdf_status} segment is the Postgres table name
|
|
19994
|
+
*/
|
|
19995
|
+
name: string;
|
|
19996
|
+
/**
|
|
19997
|
+
* (string) - The Postgres table being replicated
|
|
19998
|
+
*/
|
|
19999
|
+
postgresTable: string;
|
|
20000
|
+
/**
|
|
20001
|
+
* Configure the provider for management through account provider.
|
|
20002
|
+
*/
|
|
20003
|
+
providerConfig?: outputs.GetPostgresCdfStatusesCdfStatusProviderConfig;
|
|
20004
|
+
/**
|
|
20005
|
+
* (string) - The current replication state of this table. Possible values are: `CDF_STATE_SKIPPED`, `CDF_STATE_SNAPSHOTTING`, `CDF_STATE_STREAMING`, `CDF_STATE_TERMINATED`
|
|
20006
|
+
*/
|
|
20007
|
+
state: string;
|
|
20008
|
+
/**
|
|
20009
|
+
* (string) - Human-readable detail for the current state (e.g. the skip/error reason).
|
|
20010
|
+
* Empty for healthy states
|
|
20011
|
+
*/
|
|
20012
|
+
statusDetail: string;
|
|
20013
|
+
/**
|
|
20014
|
+
* (string) - The Unity Catalog table receiving replicated data
|
|
20015
|
+
*/
|
|
20016
|
+
ucTable: string;
|
|
20017
|
+
}
|
|
20018
|
+
export interface GetPostgresCdfStatusesCdfStatusProviderConfig {
|
|
20019
|
+
/**
|
|
20020
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
20021
|
+
*/
|
|
20022
|
+
workspaceId: string;
|
|
20023
|
+
}
|
|
20024
|
+
export interface GetPostgresCdfStatusesProviderConfig {
|
|
20025
|
+
/**
|
|
20026
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
20027
|
+
*/
|
|
20028
|
+
workspaceId: string;
|
|
20029
|
+
}
|
|
19846
20030
|
export interface GetPostgresDataApiProviderConfig {
|
|
19847
20031
|
/**
|
|
19848
20032
|
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
@@ -19948,7 +20132,7 @@ export interface GetPostgresDatabaseSpec {
|
|
|
19948
20132
|
* (string) - The name of the role that owns the database.
|
|
19949
20133
|
* Format: projects/{project_id}/branches/{branch_id}/roles/{role_id}
|
|
19950
20134
|
*/
|
|
19951
|
-
role
|
|
20135
|
+
role: string;
|
|
19952
20136
|
}
|
|
19953
20137
|
export interface GetPostgresDatabaseStatus {
|
|
19954
20138
|
/**
|
|
@@ -20016,7 +20200,7 @@ export interface GetPostgresDatabasesDatabaseSpec {
|
|
|
20016
20200
|
* (string) - The name of the role that owns the database.
|
|
20017
20201
|
* Format: projects/{project_id}/branches/{branch_id}/roles/{role_id}
|
|
20018
20202
|
*/
|
|
20019
|
-
role
|
|
20203
|
+
role: string;
|
|
20020
20204
|
}
|
|
20021
20205
|
export interface GetPostgresDatabasesDatabaseStatus {
|
|
20022
20206
|
/**
|
|
@@ -21497,7 +21681,7 @@ export interface GetRegisteredModelModelInfo {
|
|
|
21497
21681
|
* the list of aliases associated with this model. Each item is object consisting of following attributes:
|
|
21498
21682
|
*/
|
|
21499
21683
|
aliases?: outputs.GetRegisteredModelModelInfoAlias[];
|
|
21500
|
-
browseOnly
|
|
21684
|
+
browseOnly: boolean;
|
|
21501
21685
|
/**
|
|
21502
21686
|
* The name of the catalog where the schema and the registered model reside.
|
|
21503
21687
|
*/
|
|
@@ -22652,7 +22836,7 @@ export interface GetSupervisorAgentToolsTool {
|
|
|
22652
22836
|
*/
|
|
22653
22837
|
toolId: string;
|
|
22654
22838
|
/**
|
|
22655
|
-
* (string) - Tool type. Must be one of: "genieSpace", "knowledgeAssistant", "ucFunction", "ucConnection", "ucMcp", "app", "volume", "dashboard", "servingEndpoint", "table", "vectorSearchIndex", "catalog", "schema", "supervisorAgent", "
|
|
22839
|
+
* (string) - Tool type. Must be one of: "genieSpace", "knowledgeAssistant", "ucFunction", "ucConnection", "ucMcp", "app", "volume", "dashboard", "servingEndpoint", "table", "vectorSearchIndex", "catalog", "schema", "supervisorAgent", "databricksWebSearch", "skill". The legacy values "lakeviewDashboard", "ucTable", and "webSearch" are also accepted and remain equivalent to "dashboard", "table", and "databricksWebSearch" respectively. The "databricksWebSearch" toolType maps to the `webSearch` spec field
|
|
22656
22840
|
*/
|
|
22657
22841
|
toolType: string;
|
|
22658
22842
|
/**
|
|
@@ -24692,7 +24876,6 @@ export interface JobTask {
|
|
|
24692
24876
|
webhookNotifications?: outputs.JobTaskWebhookNotifications;
|
|
24693
24877
|
}
|
|
24694
24878
|
export interface JobTaskAiRuntimeTask {
|
|
24695
|
-
codeSourcePath?: string;
|
|
24696
24879
|
deployments: outputs.JobTaskAiRuntimeTaskDeployment[];
|
|
24697
24880
|
experiment: string;
|
|
24698
24881
|
mlflowExperimentDirectory?: string;
|
|
@@ -25026,7 +25209,6 @@ export interface JobTaskForEachTaskTask {
|
|
|
25026
25209
|
webhookNotifications?: outputs.JobTaskForEachTaskTaskWebhookNotifications;
|
|
25027
25210
|
}
|
|
25028
25211
|
export interface JobTaskForEachTaskTaskAiRuntimeTask {
|
|
25029
|
-
codeSourcePath?: string;
|
|
25030
25212
|
deployments: outputs.JobTaskForEachTaskTaskAiRuntimeTaskDeployment[];
|
|
25031
25213
|
experiment: string;
|
|
25032
25214
|
mlflowExperimentDirectory?: string;
|
|
@@ -27056,6 +27238,14 @@ export interface MlflowExperimentTag {
|
|
|
27056
27238
|
key?: string;
|
|
27057
27239
|
value?: string;
|
|
27058
27240
|
}
|
|
27241
|
+
export interface MlflowExperimentTraceLocation {
|
|
27242
|
+
ucTraceLocation?: outputs.MlflowExperimentTraceLocationUcTraceLocation;
|
|
27243
|
+
}
|
|
27244
|
+
export interface MlflowExperimentTraceLocationUcTraceLocation {
|
|
27245
|
+
catalog: string;
|
|
27246
|
+
schema: string;
|
|
27247
|
+
tablePrefix?: string;
|
|
27248
|
+
}
|
|
27059
27249
|
export interface MlflowModelProviderConfig {
|
|
27060
27250
|
/**
|
|
27061
27251
|
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
@@ -28039,11 +28229,11 @@ export interface MwsNetworksGcpNetworkInfo {
|
|
|
28039
28229
|
*/
|
|
28040
28230
|
networkProjectId: string;
|
|
28041
28231
|
/**
|
|
28042
|
-
* @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.
|
|
28232
|
+
* @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.122.0/docs/guides/gcp-workspace#creating-a-vpc
|
|
28043
28233
|
*/
|
|
28044
28234
|
podIpRangeName?: string;
|
|
28045
28235
|
/**
|
|
28046
|
-
* @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.
|
|
28236
|
+
* @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.122.0/docs/guides/gcp-workspace#creating-a-vpc
|
|
28047
28237
|
*/
|
|
28048
28238
|
serviceIpRangeName?: string;
|
|
28049
28239
|
/**
|
|
@@ -28104,11 +28294,11 @@ export interface MwsWorkspacesExternalCustomerInfo {
|
|
|
28104
28294
|
}
|
|
28105
28295
|
export interface MwsWorkspacesGcpManagedNetworkConfig {
|
|
28106
28296
|
/**
|
|
28107
|
-
* @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.
|
|
28297
|
+
* @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.122.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
|
|
28108
28298
|
*/
|
|
28109
28299
|
gkeClusterPodIpRange?: string;
|
|
28110
28300
|
/**
|
|
28111
|
-
* @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.
|
|
28301
|
+
* @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.122.0/docs/guides/gcp-workspace#creating-a-databricks-workspace
|
|
28112
28302
|
*/
|
|
28113
28303
|
gkeClusterServiceIpRange?: string;
|
|
28114
28304
|
subnetCidr: string;
|
|
@@ -28640,6 +28830,7 @@ export interface PipelineIngestionDefinitionObjectReportTableConfiguration {
|
|
|
28640
28830
|
salesforceIncludeFormulaFields?: boolean;
|
|
28641
28831
|
scdType?: string;
|
|
28642
28832
|
sequenceBies?: string[];
|
|
28833
|
+
sourceMetadataColumn?: string;
|
|
28643
28834
|
tableProperties?: {
|
|
28644
28835
|
[key: string]: string;
|
|
28645
28836
|
};
|
|
@@ -28718,10 +28909,17 @@ export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsGdriveOp
|
|
|
28718
28909
|
pathFilter?: string;
|
|
28719
28910
|
}
|
|
28720
28911
|
export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsGoogleAdsOptions {
|
|
28912
|
+
customReportOptions?: outputs.PipelineIngestionDefinitionObjectSchemaConnectorOptionsGoogleAdsOptionsCustomReportOptions;
|
|
28721
28913
|
lookbackWindowDays?: number;
|
|
28722
28914
|
managerAccountId: string;
|
|
28723
28915
|
syncStartDate?: string;
|
|
28724
28916
|
}
|
|
28917
|
+
export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsGoogleAdsOptionsCustomReportOptions {
|
|
28918
|
+
metrics?: string[];
|
|
28919
|
+
resource: string;
|
|
28920
|
+
resourceFields?: string[];
|
|
28921
|
+
segments?: string[];
|
|
28922
|
+
}
|
|
28725
28923
|
export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsJiraOptions {
|
|
28726
28924
|
includeJiraSpaces?: string[];
|
|
28727
28925
|
}
|
|
@@ -28770,10 +28968,19 @@ export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsMetaAdsO
|
|
|
28770
28968
|
actionReportTime?: string;
|
|
28771
28969
|
breakdowns?: string[];
|
|
28772
28970
|
customInsightsLookbackWindow?: number;
|
|
28971
|
+
customReportOptions?: outputs.PipelineIngestionDefinitionObjectSchemaConnectorOptionsMetaAdsOptionsCustomReportOptions;
|
|
28773
28972
|
level?: string;
|
|
28774
28973
|
startDate?: string;
|
|
28775
28974
|
timeIncrement?: string;
|
|
28776
28975
|
}
|
|
28976
|
+
export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsMetaAdsOptionsCustomReportOptions {
|
|
28977
|
+
actionAttributionWindows?: string[];
|
|
28978
|
+
actionBreakdowns?: string[];
|
|
28979
|
+
actionReportTime?: string;
|
|
28980
|
+
breakdowns?: string[];
|
|
28981
|
+
level?: string;
|
|
28982
|
+
timeIncrement?: string;
|
|
28983
|
+
}
|
|
28777
28984
|
export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsOutlookOptions {
|
|
28778
28985
|
attachmentMode?: string;
|
|
28779
28986
|
bodyFormat?: string;
|
|
@@ -28818,6 +29025,7 @@ export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsSmartshe
|
|
|
28818
29025
|
enforceSchema?: boolean;
|
|
28819
29026
|
}
|
|
28820
29027
|
export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsTiktokAdsOptions {
|
|
29028
|
+
customReportOptions?: outputs.PipelineIngestionDefinitionObjectSchemaConnectorOptionsTiktokAdsOptionsCustomReportOptions;
|
|
28821
29029
|
dataLevel?: string;
|
|
28822
29030
|
dimensions?: string[];
|
|
28823
29031
|
lookbackWindowDays?: number;
|
|
@@ -28826,6 +29034,13 @@ export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsTiktokAd
|
|
|
28826
29034
|
reportType?: string;
|
|
28827
29035
|
syncStartDate?: string;
|
|
28828
29036
|
}
|
|
29037
|
+
export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsTiktokAdsOptionsCustomReportOptions {
|
|
29038
|
+
dataLevel?: string;
|
|
29039
|
+
dimensions?: string[];
|
|
29040
|
+
metrics?: string[];
|
|
29041
|
+
queryLifetime?: boolean;
|
|
29042
|
+
reportType?: string;
|
|
29043
|
+
}
|
|
28829
29044
|
export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsZendeskSupportOptions {
|
|
28830
29045
|
startDate?: string;
|
|
28831
29046
|
}
|
|
@@ -28841,6 +29056,7 @@ export interface PipelineIngestionDefinitionObjectSchemaTableConfiguration {
|
|
|
28841
29056
|
salesforceIncludeFormulaFields?: boolean;
|
|
28842
29057
|
scdType?: string;
|
|
28843
29058
|
sequenceBies?: string[];
|
|
29059
|
+
sourceMetadataColumn?: string;
|
|
28844
29060
|
tableProperties?: {
|
|
28845
29061
|
[key: string]: string;
|
|
28846
29062
|
};
|
|
@@ -28921,10 +29137,17 @@ export interface PipelineIngestionDefinitionObjectTableConnectorOptionsGdriveOpt
|
|
|
28921
29137
|
pathFilter?: string;
|
|
28922
29138
|
}
|
|
28923
29139
|
export interface PipelineIngestionDefinitionObjectTableConnectorOptionsGoogleAdsOptions {
|
|
29140
|
+
customReportOptions?: outputs.PipelineIngestionDefinitionObjectTableConnectorOptionsGoogleAdsOptionsCustomReportOptions;
|
|
28924
29141
|
lookbackWindowDays?: number;
|
|
28925
29142
|
managerAccountId: string;
|
|
28926
29143
|
syncStartDate?: string;
|
|
28927
29144
|
}
|
|
29145
|
+
export interface PipelineIngestionDefinitionObjectTableConnectorOptionsGoogleAdsOptionsCustomReportOptions {
|
|
29146
|
+
metrics?: string[];
|
|
29147
|
+
resource: string;
|
|
29148
|
+
resourceFields?: string[];
|
|
29149
|
+
segments?: string[];
|
|
29150
|
+
}
|
|
28928
29151
|
export interface PipelineIngestionDefinitionObjectTableConnectorOptionsJiraOptions {
|
|
28929
29152
|
includeJiraSpaces?: string[];
|
|
28930
29153
|
}
|
|
@@ -28973,10 +29196,19 @@ export interface PipelineIngestionDefinitionObjectTableConnectorOptionsMetaAdsOp
|
|
|
28973
29196
|
actionReportTime?: string;
|
|
28974
29197
|
breakdowns?: string[];
|
|
28975
29198
|
customInsightsLookbackWindow?: number;
|
|
29199
|
+
customReportOptions?: outputs.PipelineIngestionDefinitionObjectTableConnectorOptionsMetaAdsOptionsCustomReportOptions;
|
|
28976
29200
|
level?: string;
|
|
28977
29201
|
startDate?: string;
|
|
28978
29202
|
timeIncrement?: string;
|
|
28979
29203
|
}
|
|
29204
|
+
export interface PipelineIngestionDefinitionObjectTableConnectorOptionsMetaAdsOptionsCustomReportOptions {
|
|
29205
|
+
actionAttributionWindows?: string[];
|
|
29206
|
+
actionBreakdowns?: string[];
|
|
29207
|
+
actionReportTime?: string;
|
|
29208
|
+
breakdowns?: string[];
|
|
29209
|
+
level?: string;
|
|
29210
|
+
timeIncrement?: string;
|
|
29211
|
+
}
|
|
28980
29212
|
export interface PipelineIngestionDefinitionObjectTableConnectorOptionsOutlookOptions {
|
|
28981
29213
|
attachmentMode?: string;
|
|
28982
29214
|
bodyFormat?: string;
|
|
@@ -29021,6 +29253,7 @@ export interface PipelineIngestionDefinitionObjectTableConnectorOptionsSmartshee
|
|
|
29021
29253
|
enforceSchema?: boolean;
|
|
29022
29254
|
}
|
|
29023
29255
|
export interface PipelineIngestionDefinitionObjectTableConnectorOptionsTiktokAdsOptions {
|
|
29256
|
+
customReportOptions?: outputs.PipelineIngestionDefinitionObjectTableConnectorOptionsTiktokAdsOptionsCustomReportOptions;
|
|
29024
29257
|
dataLevel?: string;
|
|
29025
29258
|
dimensions?: string[];
|
|
29026
29259
|
lookbackWindowDays?: number;
|
|
@@ -29029,6 +29262,13 @@ export interface PipelineIngestionDefinitionObjectTableConnectorOptionsTiktokAds
|
|
|
29029
29262
|
reportType?: string;
|
|
29030
29263
|
syncStartDate?: string;
|
|
29031
29264
|
}
|
|
29265
|
+
export interface PipelineIngestionDefinitionObjectTableConnectorOptionsTiktokAdsOptionsCustomReportOptions {
|
|
29266
|
+
dataLevel?: string;
|
|
29267
|
+
dimensions?: string[];
|
|
29268
|
+
metrics?: string[];
|
|
29269
|
+
queryLifetime?: boolean;
|
|
29270
|
+
reportType?: string;
|
|
29271
|
+
}
|
|
29032
29272
|
export interface PipelineIngestionDefinitionObjectTableConnectorOptionsZendeskSupportOptions {
|
|
29033
29273
|
startDate?: string;
|
|
29034
29274
|
}
|
|
@@ -29044,6 +29284,7 @@ export interface PipelineIngestionDefinitionObjectTableTableConfiguration {
|
|
|
29044
29284
|
salesforceIncludeFormulaFields?: boolean;
|
|
29045
29285
|
scdType?: string;
|
|
29046
29286
|
sequenceBies?: string[];
|
|
29287
|
+
sourceMetadataColumn?: string;
|
|
29047
29288
|
tableProperties?: {
|
|
29048
29289
|
[key: string]: string;
|
|
29049
29290
|
};
|
|
@@ -29102,6 +29343,7 @@ export interface PipelineIngestionDefinitionTableConfiguration {
|
|
|
29102
29343
|
salesforceIncludeFormulaFields?: boolean;
|
|
29103
29344
|
scdType?: string;
|
|
29104
29345
|
sequenceBies?: string[];
|
|
29346
|
+
sourceMetadataColumn?: string;
|
|
29105
29347
|
tableProperties?: {
|
|
29106
29348
|
[key: string]: string;
|
|
29107
29349
|
};
|
|
@@ -29398,6 +29640,12 @@ export interface PostgresCatalogStatus {
|
|
|
29398
29640
|
*/
|
|
29399
29641
|
project: string;
|
|
29400
29642
|
}
|
|
29643
|
+
export interface PostgresCdfConfigProviderConfig {
|
|
29644
|
+
/**
|
|
29645
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
29646
|
+
*/
|
|
29647
|
+
workspaceId: string;
|
|
29648
|
+
}
|
|
29401
29649
|
export interface PostgresDataApiProviderConfig {
|
|
29402
29650
|
/**
|
|
29403
29651
|
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
@@ -29496,7 +29744,7 @@ export interface PostgresDatabaseProviderConfig {
|
|
|
29496
29744
|
}
|
|
29497
29745
|
export interface PostgresDatabaseSpec {
|
|
29498
29746
|
postgresDatabase?: string;
|
|
29499
|
-
role
|
|
29747
|
+
role: string;
|
|
29500
29748
|
}
|
|
29501
29749
|
export interface PostgresDatabaseStatus {
|
|
29502
29750
|
/**
|