@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/input.d.ts
CHANGED
|
@@ -4234,6 +4234,10 @@ export interface FeatureEngineeringFeatureFunctionAggregationFunctionSum {
|
|
|
4234
4234
|
}
|
|
4235
4235
|
export interface FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindow {
|
|
4236
4236
|
continuous?: pulumi.Input<inputs.FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowContinuous | undefined>;
|
|
4237
|
+
/**
|
|
4238
|
+
* A window that spans the entire lifetime of the data source
|
|
4239
|
+
*/
|
|
4240
|
+
lifetime?: pulumi.Input<inputs.FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowLifetime | undefined>;
|
|
4237
4241
|
/**
|
|
4238
4242
|
* A long (multi-day) rolling window served via the hybrid batch + streaming path
|
|
4239
4243
|
*/
|
|
@@ -4249,6 +4253,9 @@ export interface FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowC
|
|
|
4249
4253
|
offset?: pulumi.Input<string | undefined>;
|
|
4250
4254
|
windowDuration: pulumi.Input<string>;
|
|
4251
4255
|
}
|
|
4256
|
+
export interface FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowLifetime {
|
|
4257
|
+
slideDuration?: pulumi.Input<string | undefined>;
|
|
4258
|
+
}
|
|
4252
4259
|
export interface FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowLongRolling {
|
|
4253
4260
|
delay?: pulumi.Input<string | undefined>;
|
|
4254
4261
|
windowDuration: pulumi.Input<string>;
|
|
@@ -4258,9 +4265,6 @@ export interface FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowR
|
|
|
4258
4265
|
windowDuration: pulumi.Input<string>;
|
|
4259
4266
|
}
|
|
4260
4267
|
export interface FeatureEngineeringFeatureFunctionAggregationFunctionTimeWindowSliding {
|
|
4261
|
-
/**
|
|
4262
|
-
* The slide duration (interval by which windows advance, must be positive and less than duration)
|
|
4263
|
-
*/
|
|
4264
4268
|
slideDuration: pulumi.Input<string>;
|
|
4265
4269
|
windowDuration: pulumi.Input<string>;
|
|
4266
4270
|
}
|
|
@@ -4439,6 +4443,10 @@ export interface FeatureEngineeringFeatureSourceStreamSource {
|
|
|
4439
4443
|
}
|
|
4440
4444
|
export interface FeatureEngineeringFeatureTimeWindow {
|
|
4441
4445
|
continuous?: pulumi.Input<inputs.FeatureEngineeringFeatureTimeWindowContinuous | undefined>;
|
|
4446
|
+
/**
|
|
4447
|
+
* A window that spans the entire lifetime of the data source
|
|
4448
|
+
*/
|
|
4449
|
+
lifetime?: pulumi.Input<inputs.FeatureEngineeringFeatureTimeWindowLifetime | undefined>;
|
|
4442
4450
|
/**
|
|
4443
4451
|
* A long (multi-day) rolling window served via the hybrid batch + streaming path
|
|
4444
4452
|
*/
|
|
@@ -4454,6 +4462,9 @@ export interface FeatureEngineeringFeatureTimeWindowContinuous {
|
|
|
4454
4462
|
offset?: pulumi.Input<string | undefined>;
|
|
4455
4463
|
windowDuration: pulumi.Input<string>;
|
|
4456
4464
|
}
|
|
4465
|
+
export interface FeatureEngineeringFeatureTimeWindowLifetime {
|
|
4466
|
+
slideDuration?: pulumi.Input<string | undefined>;
|
|
4467
|
+
}
|
|
4457
4468
|
export interface FeatureEngineeringFeatureTimeWindowLongRolling {
|
|
4458
4469
|
delay?: pulumi.Input<string | undefined>;
|
|
4459
4470
|
windowDuration: pulumi.Input<string>;
|
|
@@ -4463,9 +4474,6 @@ export interface FeatureEngineeringFeatureTimeWindowRolling {
|
|
|
4463
4474
|
windowDuration: pulumi.Input<string>;
|
|
4464
4475
|
}
|
|
4465
4476
|
export interface FeatureEngineeringFeatureTimeWindowSliding {
|
|
4466
|
-
/**
|
|
4467
|
-
* The slide duration (interval by which windows advance, must be positive and less than duration)
|
|
4468
|
-
*/
|
|
4469
4477
|
slideDuration: pulumi.Input<string>;
|
|
4470
4478
|
windowDuration: pulumi.Input<string>;
|
|
4471
4479
|
}
|
|
@@ -10937,6 +10945,22 @@ export interface GetMlflowExperimentTagArgs {
|
|
|
10937
10945
|
key?: pulumi.Input<string | undefined>;
|
|
10938
10946
|
value?: pulumi.Input<string | undefined>;
|
|
10939
10947
|
}
|
|
10948
|
+
export interface GetMlflowExperimentTraceLocation {
|
|
10949
|
+
ucTraceLocation?: inputs.GetMlflowExperimentTraceLocationUcTraceLocation;
|
|
10950
|
+
}
|
|
10951
|
+
export interface GetMlflowExperimentTraceLocationArgs {
|
|
10952
|
+
ucTraceLocation?: pulumi.Input<inputs.GetMlflowExperimentTraceLocationUcTraceLocationArgs | undefined>;
|
|
10953
|
+
}
|
|
10954
|
+
export interface GetMlflowExperimentTraceLocationUcTraceLocation {
|
|
10955
|
+
catalog: string;
|
|
10956
|
+
schema: string;
|
|
10957
|
+
tablePrefix?: string;
|
|
10958
|
+
}
|
|
10959
|
+
export interface GetMlflowExperimentTraceLocationUcTraceLocationArgs {
|
|
10960
|
+
catalog: pulumi.Input<string>;
|
|
10961
|
+
schema: pulumi.Input<string>;
|
|
10962
|
+
tablePrefix?: pulumi.Input<string | undefined>;
|
|
10963
|
+
}
|
|
10940
10964
|
export interface GetMlflowModelLatestVersion {
|
|
10941
10965
|
creationTimestamp?: number;
|
|
10942
10966
|
currentStage?: string;
|
|
@@ -11463,6 +11487,54 @@ export interface GetPostgresCatalogProviderConfigArgs {
|
|
|
11463
11487
|
*/
|
|
11464
11488
|
workspaceId?: pulumi.Input<string | undefined>;
|
|
11465
11489
|
}
|
|
11490
|
+
export interface GetPostgresCdfConfigProviderConfig {
|
|
11491
|
+
/**
|
|
11492
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
11493
|
+
*/
|
|
11494
|
+
workspaceId?: string;
|
|
11495
|
+
}
|
|
11496
|
+
export interface GetPostgresCdfConfigProviderConfigArgs {
|
|
11497
|
+
/**
|
|
11498
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
11499
|
+
*/
|
|
11500
|
+
workspaceId?: pulumi.Input<string | undefined>;
|
|
11501
|
+
}
|
|
11502
|
+
export interface GetPostgresCdfConfigsProviderConfig {
|
|
11503
|
+
/**
|
|
11504
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
11505
|
+
*/
|
|
11506
|
+
workspaceId?: string;
|
|
11507
|
+
}
|
|
11508
|
+
export interface GetPostgresCdfConfigsProviderConfigArgs {
|
|
11509
|
+
/**
|
|
11510
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
11511
|
+
*/
|
|
11512
|
+
workspaceId?: pulumi.Input<string | undefined>;
|
|
11513
|
+
}
|
|
11514
|
+
export interface GetPostgresCdfStatusProviderConfig {
|
|
11515
|
+
/**
|
|
11516
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
11517
|
+
*/
|
|
11518
|
+
workspaceId?: string;
|
|
11519
|
+
}
|
|
11520
|
+
export interface GetPostgresCdfStatusProviderConfigArgs {
|
|
11521
|
+
/**
|
|
11522
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
11523
|
+
*/
|
|
11524
|
+
workspaceId?: pulumi.Input<string | undefined>;
|
|
11525
|
+
}
|
|
11526
|
+
export interface GetPostgresCdfStatusesProviderConfig {
|
|
11527
|
+
/**
|
|
11528
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
11529
|
+
*/
|
|
11530
|
+
workspaceId?: string;
|
|
11531
|
+
}
|
|
11532
|
+
export interface GetPostgresCdfStatusesProviderConfigArgs {
|
|
11533
|
+
/**
|
|
11534
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
11535
|
+
*/
|
|
11536
|
+
workspaceId?: pulumi.Input<string | undefined>;
|
|
11537
|
+
}
|
|
11466
11538
|
export interface GetPostgresDataApiProviderConfig {
|
|
11467
11539
|
/**
|
|
11468
11540
|
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
@@ -15261,7 +15333,6 @@ export interface JobTask {
|
|
|
15261
15333
|
webhookNotifications?: pulumi.Input<inputs.JobTaskWebhookNotifications | undefined>;
|
|
15262
15334
|
}
|
|
15263
15335
|
export interface JobTaskAiRuntimeTask {
|
|
15264
|
-
codeSourcePath?: pulumi.Input<string | undefined>;
|
|
15265
15336
|
deployments: pulumi.Input<pulumi.Input<inputs.JobTaskAiRuntimeTaskDeployment>[]>;
|
|
15266
15337
|
experiment: pulumi.Input<string>;
|
|
15267
15338
|
mlflowExperimentDirectory?: pulumi.Input<string | undefined>;
|
|
@@ -15595,7 +15666,6 @@ export interface JobTaskForEachTaskTask {
|
|
|
15595
15666
|
webhookNotifications?: pulumi.Input<inputs.JobTaskForEachTaskTaskWebhookNotifications | undefined>;
|
|
15596
15667
|
}
|
|
15597
15668
|
export interface JobTaskForEachTaskTaskAiRuntimeTask {
|
|
15598
|
-
codeSourcePath?: pulumi.Input<string | undefined>;
|
|
15599
15669
|
deployments: pulumi.Input<pulumi.Input<inputs.JobTaskForEachTaskTaskAiRuntimeTaskDeployment>[]>;
|
|
15600
15670
|
experiment: pulumi.Input<string>;
|
|
15601
15671
|
mlflowExperimentDirectory?: pulumi.Input<string | undefined>;
|
|
@@ -17625,6 +17695,14 @@ export interface MlflowExperimentTag {
|
|
|
17625
17695
|
key?: pulumi.Input<string | undefined>;
|
|
17626
17696
|
value?: pulumi.Input<string | undefined>;
|
|
17627
17697
|
}
|
|
17698
|
+
export interface MlflowExperimentTraceLocation {
|
|
17699
|
+
ucTraceLocation?: pulumi.Input<inputs.MlflowExperimentTraceLocationUcTraceLocation | undefined>;
|
|
17700
|
+
}
|
|
17701
|
+
export interface MlflowExperimentTraceLocationUcTraceLocation {
|
|
17702
|
+
catalog: pulumi.Input<string>;
|
|
17703
|
+
schema: pulumi.Input<string>;
|
|
17704
|
+
tablePrefix?: pulumi.Input<string | undefined>;
|
|
17705
|
+
}
|
|
17628
17706
|
export interface MlflowModelProviderConfig {
|
|
17629
17707
|
/**
|
|
17630
17708
|
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
@@ -18608,11 +18686,11 @@ export interface MwsNetworksGcpNetworkInfo {
|
|
|
18608
18686
|
*/
|
|
18609
18687
|
networkProjectId: pulumi.Input<string>;
|
|
18610
18688
|
/**
|
|
18611
|
-
* @deprecated gcp_network_info.pod_ip_range_name is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.
|
|
18689
|
+
* @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
|
|
18612
18690
|
*/
|
|
18613
18691
|
podIpRangeName?: pulumi.Input<string | undefined>;
|
|
18614
18692
|
/**
|
|
18615
|
-
* @deprecated gcp_network_info.service_ip_range_name is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.
|
|
18693
|
+
* @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
|
|
18616
18694
|
*/
|
|
18617
18695
|
serviceIpRangeName?: pulumi.Input<string | undefined>;
|
|
18618
18696
|
/**
|
|
@@ -18673,11 +18751,11 @@ export interface MwsWorkspacesExternalCustomerInfo {
|
|
|
18673
18751
|
}
|
|
18674
18752
|
export interface MwsWorkspacesGcpManagedNetworkConfig {
|
|
18675
18753
|
/**
|
|
18676
|
-
* @deprecated gcp_managed_network_config.gke_cluster_pod_ip_range is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.
|
|
18754
|
+
* @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
|
|
18677
18755
|
*/
|
|
18678
18756
|
gkeClusterPodIpRange?: pulumi.Input<string | undefined>;
|
|
18679
18757
|
/**
|
|
18680
|
-
* @deprecated gcp_managed_network_config.gke_cluster_service_ip_range is deprecated and will be removed in a future release. For more information, review the documentation at https://registry.terraform.io/providers/databricks/databricks/1.
|
|
18758
|
+
* @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
|
|
18681
18759
|
*/
|
|
18682
18760
|
gkeClusterServiceIpRange?: pulumi.Input<string | undefined>;
|
|
18683
18761
|
subnetCidr: pulumi.Input<string>;
|
|
@@ -19209,6 +19287,7 @@ export interface PipelineIngestionDefinitionObjectReportTableConfiguration {
|
|
|
19209
19287
|
salesforceIncludeFormulaFields?: pulumi.Input<boolean | undefined>;
|
|
19210
19288
|
scdType?: pulumi.Input<string | undefined>;
|
|
19211
19289
|
sequenceBies?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19290
|
+
sourceMetadataColumn?: pulumi.Input<string | undefined>;
|
|
19212
19291
|
tableProperties?: pulumi.Input<{
|
|
19213
19292
|
[key: string]: pulumi.Input<string>;
|
|
19214
19293
|
} | undefined>;
|
|
@@ -19287,10 +19366,17 @@ export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsGdriveOp
|
|
|
19287
19366
|
pathFilter?: pulumi.Input<string | undefined>;
|
|
19288
19367
|
}
|
|
19289
19368
|
export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsGoogleAdsOptions {
|
|
19369
|
+
customReportOptions?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectSchemaConnectorOptionsGoogleAdsOptionsCustomReportOptions | undefined>;
|
|
19290
19370
|
lookbackWindowDays?: pulumi.Input<number | undefined>;
|
|
19291
19371
|
managerAccountId: pulumi.Input<string>;
|
|
19292
19372
|
syncStartDate?: pulumi.Input<string | undefined>;
|
|
19293
19373
|
}
|
|
19374
|
+
export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsGoogleAdsOptionsCustomReportOptions {
|
|
19375
|
+
metrics?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19376
|
+
resource: pulumi.Input<string>;
|
|
19377
|
+
resourceFields?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19378
|
+
segments?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19379
|
+
}
|
|
19294
19380
|
export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsJiraOptions {
|
|
19295
19381
|
includeJiraSpaces?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19296
19382
|
}
|
|
@@ -19339,10 +19425,19 @@ export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsMetaAdsO
|
|
|
19339
19425
|
actionReportTime?: pulumi.Input<string | undefined>;
|
|
19340
19426
|
breakdowns?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19341
19427
|
customInsightsLookbackWindow?: pulumi.Input<number | undefined>;
|
|
19428
|
+
customReportOptions?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectSchemaConnectorOptionsMetaAdsOptionsCustomReportOptions | undefined>;
|
|
19342
19429
|
level?: pulumi.Input<string | undefined>;
|
|
19343
19430
|
startDate?: pulumi.Input<string | undefined>;
|
|
19344
19431
|
timeIncrement?: pulumi.Input<string | undefined>;
|
|
19345
19432
|
}
|
|
19433
|
+
export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsMetaAdsOptionsCustomReportOptions {
|
|
19434
|
+
actionAttributionWindows?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19435
|
+
actionBreakdowns?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19436
|
+
actionReportTime?: pulumi.Input<string | undefined>;
|
|
19437
|
+
breakdowns?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19438
|
+
level?: pulumi.Input<string | undefined>;
|
|
19439
|
+
timeIncrement?: pulumi.Input<string | undefined>;
|
|
19440
|
+
}
|
|
19346
19441
|
export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsOutlookOptions {
|
|
19347
19442
|
attachmentMode?: pulumi.Input<string | undefined>;
|
|
19348
19443
|
bodyFormat?: pulumi.Input<string | undefined>;
|
|
@@ -19387,6 +19482,7 @@ export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsSmartshe
|
|
|
19387
19482
|
enforceSchema?: pulumi.Input<boolean | undefined>;
|
|
19388
19483
|
}
|
|
19389
19484
|
export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsTiktokAdsOptions {
|
|
19485
|
+
customReportOptions?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectSchemaConnectorOptionsTiktokAdsOptionsCustomReportOptions | undefined>;
|
|
19390
19486
|
dataLevel?: pulumi.Input<string | undefined>;
|
|
19391
19487
|
dimensions?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19392
19488
|
lookbackWindowDays?: pulumi.Input<number | undefined>;
|
|
@@ -19395,6 +19491,13 @@ export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsTiktokAd
|
|
|
19395
19491
|
reportType?: pulumi.Input<string | undefined>;
|
|
19396
19492
|
syncStartDate?: pulumi.Input<string | undefined>;
|
|
19397
19493
|
}
|
|
19494
|
+
export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsTiktokAdsOptionsCustomReportOptions {
|
|
19495
|
+
dataLevel?: pulumi.Input<string | undefined>;
|
|
19496
|
+
dimensions?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19497
|
+
metrics?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19498
|
+
queryLifetime?: pulumi.Input<boolean | undefined>;
|
|
19499
|
+
reportType?: pulumi.Input<string | undefined>;
|
|
19500
|
+
}
|
|
19398
19501
|
export interface PipelineIngestionDefinitionObjectSchemaConnectorOptionsZendeskSupportOptions {
|
|
19399
19502
|
startDate?: pulumi.Input<string | undefined>;
|
|
19400
19503
|
}
|
|
@@ -19410,6 +19513,7 @@ export interface PipelineIngestionDefinitionObjectSchemaTableConfiguration {
|
|
|
19410
19513
|
salesforceIncludeFormulaFields?: pulumi.Input<boolean | undefined>;
|
|
19411
19514
|
scdType?: pulumi.Input<string | undefined>;
|
|
19412
19515
|
sequenceBies?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19516
|
+
sourceMetadataColumn?: pulumi.Input<string | undefined>;
|
|
19413
19517
|
tableProperties?: pulumi.Input<{
|
|
19414
19518
|
[key: string]: pulumi.Input<string>;
|
|
19415
19519
|
} | undefined>;
|
|
@@ -19490,10 +19594,17 @@ export interface PipelineIngestionDefinitionObjectTableConnectorOptionsGdriveOpt
|
|
|
19490
19594
|
pathFilter?: pulumi.Input<string | undefined>;
|
|
19491
19595
|
}
|
|
19492
19596
|
export interface PipelineIngestionDefinitionObjectTableConnectorOptionsGoogleAdsOptions {
|
|
19597
|
+
customReportOptions?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectTableConnectorOptionsGoogleAdsOptionsCustomReportOptions | undefined>;
|
|
19493
19598
|
lookbackWindowDays?: pulumi.Input<number | undefined>;
|
|
19494
19599
|
managerAccountId: pulumi.Input<string>;
|
|
19495
19600
|
syncStartDate?: pulumi.Input<string | undefined>;
|
|
19496
19601
|
}
|
|
19602
|
+
export interface PipelineIngestionDefinitionObjectTableConnectorOptionsGoogleAdsOptionsCustomReportOptions {
|
|
19603
|
+
metrics?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19604
|
+
resource: pulumi.Input<string>;
|
|
19605
|
+
resourceFields?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19606
|
+
segments?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19607
|
+
}
|
|
19497
19608
|
export interface PipelineIngestionDefinitionObjectTableConnectorOptionsJiraOptions {
|
|
19498
19609
|
includeJiraSpaces?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19499
19610
|
}
|
|
@@ -19542,10 +19653,19 @@ export interface PipelineIngestionDefinitionObjectTableConnectorOptionsMetaAdsOp
|
|
|
19542
19653
|
actionReportTime?: pulumi.Input<string | undefined>;
|
|
19543
19654
|
breakdowns?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19544
19655
|
customInsightsLookbackWindow?: pulumi.Input<number | undefined>;
|
|
19656
|
+
customReportOptions?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectTableConnectorOptionsMetaAdsOptionsCustomReportOptions | undefined>;
|
|
19545
19657
|
level?: pulumi.Input<string | undefined>;
|
|
19546
19658
|
startDate?: pulumi.Input<string | undefined>;
|
|
19547
19659
|
timeIncrement?: pulumi.Input<string | undefined>;
|
|
19548
19660
|
}
|
|
19661
|
+
export interface PipelineIngestionDefinitionObjectTableConnectorOptionsMetaAdsOptionsCustomReportOptions {
|
|
19662
|
+
actionAttributionWindows?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19663
|
+
actionBreakdowns?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19664
|
+
actionReportTime?: pulumi.Input<string | undefined>;
|
|
19665
|
+
breakdowns?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19666
|
+
level?: pulumi.Input<string | undefined>;
|
|
19667
|
+
timeIncrement?: pulumi.Input<string | undefined>;
|
|
19668
|
+
}
|
|
19549
19669
|
export interface PipelineIngestionDefinitionObjectTableConnectorOptionsOutlookOptions {
|
|
19550
19670
|
attachmentMode?: pulumi.Input<string | undefined>;
|
|
19551
19671
|
bodyFormat?: pulumi.Input<string | undefined>;
|
|
@@ -19590,6 +19710,7 @@ export interface PipelineIngestionDefinitionObjectTableConnectorOptionsSmartshee
|
|
|
19590
19710
|
enforceSchema?: pulumi.Input<boolean | undefined>;
|
|
19591
19711
|
}
|
|
19592
19712
|
export interface PipelineIngestionDefinitionObjectTableConnectorOptionsTiktokAdsOptions {
|
|
19713
|
+
customReportOptions?: pulumi.Input<inputs.PipelineIngestionDefinitionObjectTableConnectorOptionsTiktokAdsOptionsCustomReportOptions | undefined>;
|
|
19593
19714
|
dataLevel?: pulumi.Input<string | undefined>;
|
|
19594
19715
|
dimensions?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19595
19716
|
lookbackWindowDays?: pulumi.Input<number | undefined>;
|
|
@@ -19598,6 +19719,13 @@ export interface PipelineIngestionDefinitionObjectTableConnectorOptionsTiktokAds
|
|
|
19598
19719
|
reportType?: pulumi.Input<string | undefined>;
|
|
19599
19720
|
syncStartDate?: pulumi.Input<string | undefined>;
|
|
19600
19721
|
}
|
|
19722
|
+
export interface PipelineIngestionDefinitionObjectTableConnectorOptionsTiktokAdsOptionsCustomReportOptions {
|
|
19723
|
+
dataLevel?: pulumi.Input<string | undefined>;
|
|
19724
|
+
dimensions?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19725
|
+
metrics?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19726
|
+
queryLifetime?: pulumi.Input<boolean | undefined>;
|
|
19727
|
+
reportType?: pulumi.Input<string | undefined>;
|
|
19728
|
+
}
|
|
19601
19729
|
export interface PipelineIngestionDefinitionObjectTableConnectorOptionsZendeskSupportOptions {
|
|
19602
19730
|
startDate?: pulumi.Input<string | undefined>;
|
|
19603
19731
|
}
|
|
@@ -19613,6 +19741,7 @@ export interface PipelineIngestionDefinitionObjectTableTableConfiguration {
|
|
|
19613
19741
|
salesforceIncludeFormulaFields?: pulumi.Input<boolean | undefined>;
|
|
19614
19742
|
scdType?: pulumi.Input<string | undefined>;
|
|
19615
19743
|
sequenceBies?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19744
|
+
sourceMetadataColumn?: pulumi.Input<string | undefined>;
|
|
19616
19745
|
tableProperties?: pulumi.Input<{
|
|
19617
19746
|
[key: string]: pulumi.Input<string>;
|
|
19618
19747
|
} | undefined>;
|
|
@@ -19671,6 +19800,7 @@ export interface PipelineIngestionDefinitionTableConfiguration {
|
|
|
19671
19800
|
salesforceIncludeFormulaFields?: pulumi.Input<boolean | undefined>;
|
|
19672
19801
|
scdType?: pulumi.Input<string | undefined>;
|
|
19673
19802
|
sequenceBies?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
19803
|
+
sourceMetadataColumn?: pulumi.Input<string | undefined>;
|
|
19674
19804
|
tableProperties?: pulumi.Input<{
|
|
19675
19805
|
[key: string]: pulumi.Input<string>;
|
|
19676
19806
|
} | undefined>;
|
|
@@ -19967,6 +20097,12 @@ export interface PostgresCatalogStatus {
|
|
|
19967
20097
|
*/
|
|
19968
20098
|
project?: pulumi.Input<string | undefined>;
|
|
19969
20099
|
}
|
|
20100
|
+
export interface PostgresCdfConfigProviderConfig {
|
|
20101
|
+
/**
|
|
20102
|
+
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
20103
|
+
*/
|
|
20104
|
+
workspaceId?: pulumi.Input<string | undefined>;
|
|
20105
|
+
}
|
|
19970
20106
|
export interface PostgresDataApiProviderConfig {
|
|
19971
20107
|
/**
|
|
19972
20108
|
* Workspace ID which the resource belongs to. This workspace must be part of the account which the provider is configured with.
|
|
@@ -20065,7 +20201,7 @@ export interface PostgresDatabaseProviderConfig {
|
|
|
20065
20201
|
}
|
|
20066
20202
|
export interface PostgresDatabaseSpec {
|
|
20067
20203
|
postgresDatabase?: pulumi.Input<string | undefined>;
|
|
20068
|
-
role
|
|
20204
|
+
role: pulumi.Input<string>;
|
|
20069
20205
|
}
|
|
20070
20206
|
export interface PostgresDatabaseStatus {
|
|
20071
20207
|
/**
|