@ryan-pip/pulumi-fivetran 1.9.44 → 1.9.46

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/types/input.d.ts CHANGED
@@ -8436,6 +8436,7 @@ export interface DestinationConfig {
8436
8436
  * - Service `postgresGcpWarehouse`: Specifies whether TLS is required. Must be populated if `connectionType` is set to `SshTunnel`.
8437
8437
  * - Service `postgresRdsWarehouse`: Specifies whether TLS is required. Must be populated if `connectionType` is set to `SshTunnel`.
8438
8438
  * - Service `postgresWarehouse`: Specifies whether TLS is required. Must be populated if `connectionType` is set to `SshTunnel`.
8439
+ * - Service `postgresWh`: Specifies whether TLS is required. Must be set when using `SshTunnel` connection
8439
8440
  * - Service `redshift`: Require TLS through Tunnel
8440
8441
  * - Service `sqlServerRdsWarehouse`: Specifies whether TLS is required. Must be populated if `connectionType` is set to `SshTunnel`.
8441
8442
  * - Service `sqlServerWarehouse`: Specifies whether TLS is required. Must be populated if `connectionType` is set to `SshTunnel`.
@@ -8459,6 +8460,7 @@ export interface DestinationConfig {
8459
8460
  * - Service `postgresGcpWarehouse`: Authentication method. Default value: `PASSWORD`.
8460
8461
  * - Service `postgresRdsWarehouse`: Authentication method. Default value: `PASSWORD`.
8461
8462
  * - Service `postgresWarehouse`: Authentication method. Default value: `PASSWORD`.
8463
+ * - Service `postgresWh`: Authentication method. Supported values: `PASSWORD`, `AWS_IAM`. Default: `PASSWORD`.
8462
8464
  */
8463
8465
  authMethod?: pulumi.Input<string | undefined>;
8464
8466
  /**
@@ -8493,6 +8495,7 @@ export interface DestinationConfig {
8493
8495
  * - Service `postgresGcpWarehouse`: AWS region code. Required when `authMethod` is set to `AWS_IAM`.
8494
8496
  * - Service `postgresRdsWarehouse`: AWS region where the RDS instance is located. Required when `authMethod` is set to `AWS_IAM`.
8495
8497
  * - Service `postgresWarehouse`: AWS region code. Required when `authMethod` is set to `AWS_IAM`.
8498
+ * - Service `postgresWh`: AWS region code. Required when `authMethod` is set to `AWS_IAM`
8496
8499
  */
8497
8500
  awsRegionCode?: pulumi.Input<string | undefined>;
8498
8501
  /**
@@ -8503,11 +8506,26 @@ export interface DestinationConfig {
8503
8506
  * - Service `snowflake`: The secret access key of the S3 bucket you want to use to stage your data. Use this parameter only if you are using Hybrid Deployment , want to use an S3 bucket to stage your data, and `awsBucketAuthType` is set to `IAM_USER`.
8504
8507
  */
8505
8508
  awsSecretAccessKey?: pulumi.Input<string | undefined>;
8509
+ /**
8510
+ * Field usage depends on `service` value:
8511
+ * - Service `databricks`: Your Azure AD application (client) ID for Client Credentials authentication to the Azure container used as external staging for Hybrid Deployment.
8512
+ */
8513
+ azureClientId?: pulumi.Input<string | undefined>;
8514
+ /**
8515
+ * Field usage depends on `service` value:
8516
+ * - Service `databricks`: Your Azure AD application client secret for Client Credentials authentication to the Azure container used as external staging for Hybrid Deployment.
8517
+ */
8518
+ azureClientSecret?: pulumi.Input<string | undefined>;
8506
8519
  /**
8507
8520
  * Field usage depends on `service` value:
8508
8521
  * - Service `databricks`: Authentication method for the Azure container you want to use as the external staging for Hybrid Deployment.
8509
8522
  */
8510
8523
  azureStorageAccountAuthType?: pulumi.Input<string | undefined>;
8524
+ /**
8525
+ * Field usage depends on `service` value:
8526
+ * - Service `databricks`: Your Azure AD tenant ID for Client Credentials authentication to the Azure container used as external staging for Hybrid Deployment.
8527
+ */
8528
+ azureTenantId?: pulumi.Input<string | undefined>;
8511
8529
  /**
8512
8530
  * Field usage depends on `service` value:
8513
8531
  * - Service `confluentCloudWh`: Comma-separated list of Confluent Cloud servers in the `server:port` format.
@@ -8596,6 +8614,7 @@ export interface DestinationConfig {
8596
8614
  * - Service `postgresGcpWarehouse`: Connection method. Default value: `Directly`.
8597
8615
  * - Service `postgresRdsWarehouse`: Connection method. Default value: `Directly`.
8598
8616
  * - Service `postgresWarehouse`: Connection method. Default value: `Directly`.
8617
+ * - Service `postgresWh`: Connection method. Supported values: `Directly`, `SshTunnel`, `ProxyAgent`, `PrivateLink`. Default: `Directly`. Note: PrivateLink is only supported for cloud-hosted PostgreSQL (RDS, Aurora, Azure, GCP).
8599
8618
  * - Service `redshift`: Connection method. Default value: `Directly`.
8600
8619
  * - Service `snowflake`: Connection method. Default value: `Directly`.
8601
8620
  * - Service `sqlServerRdsWarehouse`: Connection method. Default value: `Directly`.
@@ -8653,6 +8672,7 @@ export interface DestinationConfig {
8653
8672
  * - Service `postgresGcpWarehouse`: Database name
8654
8673
  * - Service `postgresRdsWarehouse`: Database name
8655
8674
  * - Service `postgresWarehouse`: Database name
8675
+ * - Service `postgresWh`: Database name
8656
8676
  * - Service `redshift`: Database name
8657
8677
  * - Service `snowflake`: Database name
8658
8678
  * - Service `sqlServerRdsWarehouse`: Database name
@@ -8709,6 +8729,7 @@ export interface DestinationConfig {
8709
8729
  * - Service `postgresGcpWarehouse`: AWS external ID for authentication. Required when `authMethod` is set to `AWS_IAM`.
8710
8730
  * - Service `postgresRdsWarehouse`: AWS external ID for authentication. Required when `authMethod` is set to `AWS_IAM`.
8711
8731
  * - Service `postgresWarehouse`: AWS external ID for authentication. Required when `authMethod` is set to `AWS_IAM`.
8732
+ * - Service `postgresWh`: AWS external ID for authentication. Auto-generated from group ID when `authMethod` is set to `AWS_IAM`
8712
8733
  * - Service `redshift`: Fivetran generated External ID
8713
8734
  */
8714
8735
  externalId?: pulumi.Input<string | undefined>;
@@ -8757,6 +8778,7 @@ export interface DestinationConfig {
8757
8778
  * - Service `managedDataLake`: GCS Project ID of your Google Cloud Storage bucket. Use this parameter only if you want to deploy your data lake on GCS.
8758
8779
  */
8759
8780
  gcsProjectId?: pulumi.Input<string | undefined>;
8781
+ gcsServiceAccountCredentials?: pulumi.Input<inputs.DestinationConfigGcsServiceAccountCredentials | undefined>;
8760
8782
  /**
8761
8783
  * Field usage depends on `service` value:
8762
8784
  * - Service `snowflake`: The path to the JSON file that contains the service account credentials for the GCS bucket you want to use to stage your data. Use this parameter only if you are using Hybrid Deployment and want to use a GCS bucket to stage your data.
@@ -8783,6 +8805,7 @@ export interface DestinationConfig {
8783
8805
  * - Service `postgresGcpWarehouse`: Server name
8784
8806
  * - Service `postgresRdsWarehouse`: Server name
8785
8807
  * - Service `postgresWarehouse`: Server name
8808
+ * - Service `postgresWh`: Server hostname or IP address
8786
8809
  * - Service `redshift`: Server name
8787
8810
  * - Service `snowflake`: Server name
8788
8811
  * - Service `sqlServerRdsWarehouse`: Server name
@@ -8902,6 +8925,7 @@ export interface DestinationConfig {
8902
8925
  * - Service `postgresGcpWarehouse`: Database user password
8903
8926
  * - Service `postgresRdsWarehouse`: Database user password
8904
8927
  * - Service `postgresWarehouse`: Database user password
8928
+ * - Service `postgresWh`: Database user password. Required for PASSWORD authentication
8905
8929
  * - Service `redshift`: Database user password. Required if authentication type is `PASSWORD`.
8906
8930
  * - Service `snowflake`: Database user password. The field should be specified if authentication type is `PASSWORD`.
8907
8931
  * - Service `sqlServerRdsWarehouse`: Database user password
@@ -8918,6 +8942,7 @@ export interface DestinationConfig {
8918
8942
  * - Service `onelake`: Personal access token
8919
8943
  */
8920
8944
  personalAccessToken?: pulumi.Input<string | undefined>;
8945
+ polarisCatalogConfiguration?: pulumi.Input<inputs.DestinationConfigPolarisCatalogConfiguration | undefined>;
8921
8946
  /**
8922
8947
  * Field usage depends on `service` value:
8923
8948
  * - Service `adls`: Server port number
@@ -8945,6 +8970,7 @@ export interface DestinationConfig {
8945
8970
  * - Service `postgresGcpWarehouse`: Server port number
8946
8971
  * - Service `postgresRdsWarehouse`: Server port number
8947
8972
  * - Service `postgresWarehouse`: Server port number
8973
+ * - Service `postgresWh`: Server port number (default: 5432)
8948
8974
  * - Service `redshift`: Server port number
8949
8975
  * - Service `snowflake`: Server port number
8950
8976
  * - Service `sqlServerRdsWarehouse`: Server port number
@@ -9043,6 +9069,7 @@ export interface DestinationConfig {
9043
9069
  * - Service `postgresGcpWarehouse`: AWS IAM role ARN for authentication. Required when `authMethod` is set to `AWS_IAM`.
9044
9070
  * - Service `postgresRdsWarehouse`: AWS IAM role ARN for authentication. Required when `authMethod` is set to `AWS_IAM`.
9045
9071
  * - Service `postgresWarehouse`: AWS IAM role ARN for authentication. Required when `authMethod` is set to `AWS_IAM`.
9072
+ * - Service `postgresWh`: AWS IAM role ARN for authentication. Required when `authMethod` is set to `AWS_IAM`
9046
9073
  * - Service `redshift`: Role ARN with Redshift permissions. Required if authentication type is `IAM`.
9047
9074
  */
9048
9075
  roleArn?: pulumi.Input<string | undefined>;
@@ -9145,6 +9172,12 @@ export interface DestinationConfig {
9145
9172
  * - Service `managedDataLake`: Specifies whether you want to create shortcut for you table in OneLake. Use this parameter only if you want to deploy your data lake on ADLS.
9146
9173
  */
9147
9174
  shouldMaintainTablesInOneLake?: pulumi.Input<boolean | undefined>;
9175
+ /**
9176
+ * Field usage depends on `service` value:
9177
+ * - Service `databricksViaManagedDataLake`: Specifies whether Fivetran writes Delta Lake metadata in addition to Iceberg tables. Databricks via Managed Data Lake requires Delta Lake metadata, so Fivetran always uses `true` for this destination.
9178
+ * - Service `managedDataLake`: Specifies whether Fivetran writes Delta Lake metadata in addition to Iceberg tables. Default value: `false` for new destinations and `true` for existing destinations. Destinations with Unity Catalog or OneLake catalog enabled always write Delta Lake metadata.
9179
+ */
9180
+ shouldWriteDelta?: pulumi.Input<boolean | undefined>;
9148
9181
  /**
9149
9182
  * Field usage depends on `service` value:
9150
9183
  * - Service `adls`: Snapshots older than the retention period are deleted every week. Default value: `ONE_WEEK`.
@@ -9219,6 +9252,7 @@ export interface DestinationConfig {
9219
9252
  * - Service `postgresGcpWarehouse`: SSH server name. Must be populated if `connectionType` is set to `SshTunnel`.
9220
9253
  * - Service `postgresRdsWarehouse`: SSH server name. Must be populated if `connectionType` is set to `SshTunnel`.
9221
9254
  * - Service `postgresWarehouse`: SSH server name. Must be populated if `connectionType` is set to `SshTunnel`.
9255
+ * - Service `postgresWh`: SSH server hostname. Required when `connectionType` is set to `SshTunnel`
9222
9256
  * - Service `redshift`: SSH server name. Must be populated if `connectionType` is set to `SshTunnel`.
9223
9257
  * - Service `sqlServerRdsWarehouse`: SSH server name. Must be populated if `connectionType` is set to `SshTunnel`.
9224
9258
  * - Service `sqlServerWarehouse`: SSH server name. Must be populated if `connectionType` is set to `SshTunnel`.
@@ -9245,6 +9279,7 @@ export interface DestinationConfig {
9245
9279
  * - Service `postgresGcpWarehouse`: SSH server port name. Must be populated if `connectionType` is set to `SshTunnel`.
9246
9280
  * - Service `postgresRdsWarehouse`: SSH server port name. Must be populated if `connectionType` is set to `SshTunnel`.
9247
9281
  * - Service `postgresWarehouse`: SSH server port name. Must be populated if `connectionType` is set to `SshTunnel`.
9282
+ * - Service `postgresWh`: SSH server port. Required when `connectionType` is set to `SshTunnel`
9248
9283
  * - Service `redshift`: SSH server port name. Must be populated if `connectionType` is set to `SshTunnel`.
9249
9284
  * - Service `sqlServerRdsWarehouse`: SSH server port name. Must be populated if `connectionType` is set to `SshTunnel`.
9250
9285
  * - Service `sqlServerWarehouse`: SSH server port name. Must be populated if `connectionType` is set to `SshTunnel`.
@@ -9271,6 +9306,7 @@ export interface DestinationConfig {
9271
9306
  * - Service `postgresGcpWarehouse`: SSH user name. Must be populated if `connectionType` is set to `SshTunnel`.
9272
9307
  * - Service `postgresRdsWarehouse`: SSH user name. Must be populated if `connectionType` is set to `SshTunnel`.
9273
9308
  * - Service `postgresWarehouse`: SSH user name. Must be populated if `connectionType` is set to `SshTunnel`.
9309
+ * - Service `postgresWh`: SSH user name. Required when `connectionType` is set to `SshTunnel`
9274
9310
  * - Service `redshift`: SSH user name. Must be populated if `connectionType` is set to `SshTunnel`.
9275
9311
  * - Service `sqlServerRdsWarehouse`: SSH user name. Must be populated if `connectionType` is set to `SshTunnel`.
9276
9312
  * - Service `sqlServerWarehouse`: SSH user name. Must be populated if `connectionType` is set to `SshTunnel`.
@@ -9302,6 +9338,7 @@ export interface DestinationConfig {
9302
9338
  * - Service `postgresGcpWarehouse`: Database user name
9303
9339
  * - Service `postgresRdsWarehouse`: Database user name
9304
9340
  * - Service `postgresWarehouse`: Database user name
9341
+ * - Service `postgresWh`: Database user name. Required for PASSWORD authentication
9305
9342
  * - Service `redshift`: Database user name
9306
9343
  * - Service `snowflake`: Database user name
9307
9344
  * - Service `sqlServerRdsWarehouse`: Database user name
@@ -9321,6 +9358,34 @@ export interface DestinationConfig {
9321
9358
  */
9322
9359
  workspaceName?: pulumi.Input<string | undefined>;
9323
9360
  }
9361
+ export interface DestinationConfigGcsServiceAccountCredentials {
9362
+ }
9363
+ export interface DestinationConfigPolarisCatalogConfiguration {
9364
+ /**
9365
+ * Field usage depends on `service` value:
9366
+ * - Service `databricksViaManagedDataLake`: Client ID
9367
+ * - Service `managedDataLake`: Client ID
9368
+ */
9369
+ clientId?: pulumi.Input<string | undefined>;
9370
+ /**
9371
+ * Field usage depends on `service` value:
9372
+ * - Service `databricksViaManagedDataLake`: Client Secret
9373
+ * - Service `managedDataLake`: Client Secret
9374
+ */
9375
+ clientSecret?: pulumi.Input<string | undefined>;
9376
+ /**
9377
+ * Field usage depends on `service` value:
9378
+ * - Service `databricksViaManagedDataLake`: Polaris Catalog
9379
+ * - Service `managedDataLake`: Polaris Catalog
9380
+ */
9381
+ polarisCatalog?: pulumi.Input<string | undefined>;
9382
+ /**
9383
+ * Field usage depends on `service` value:
9384
+ * - Service `databricksViaManagedDataLake`: Polaris Server Endpoint
9385
+ * - Service `managedDataLake`: Polaris Server Endpoint
9386
+ */
9387
+ polarisServerEndpoint?: pulumi.Input<string | undefined>;
9388
+ }
9324
9389
  export interface DestinationFingerprintsFingerprint {
9325
9390
  /**
9326
9391
  * Hash of the fingerprint.
@@ -9352,27 +9417,69 @@ export interface DestinationTimeouts {
9352
9417
  export interface ExternalLoggingConfig {
9353
9418
  accessKeyId?: pulumi.Input<string | undefined>;
9354
9419
  accessKeySecret?: pulumi.Input<string | undefined>;
9420
+ accessToken?: pulumi.Input<string | undefined>;
9355
9421
  apiKey?: pulumi.Input<string | undefined>;
9356
9422
  channel?: pulumi.Input<string | undefined>;
9423
+ /**
9424
+ * Field usage depends on `service` value:
9425
+ * - Service `azureMonitorLog`: For Logs Ingestion API authentication. Your application (client) ID.
9426
+ */
9427
+ clientId?: pulumi.Input<string | undefined>;
9428
+ /**
9429
+ * Field usage depends on `service` value:
9430
+ * - Service `azureMonitorLog`: For Logs Ingestion API authentication. Your application client secret.
9431
+ */
9432
+ clientSecret?: pulumi.Input<string | undefined>;
9433
+ /**
9434
+ * Field usage depends on `service` value:
9435
+ * - Service `azureMonitorLog`: For Logs Ingestion API authentication. The endpoint URL for your Data Collection Endpoint.
9436
+ */
9437
+ dataCollectionEndpoint?: pulumi.Input<string | undefined>;
9438
+ /**
9439
+ * Field usage depends on `service` value:
9440
+ * - Service `azureMonitorLog`: For Logs Ingestion API authentication. The immutable ID of your Data Collection Rule.
9441
+ */
9442
+ dcrImmutableId?: pulumi.Input<string | undefined>;
9443
+ /**
9444
+ * Field usage depends on `service` value:
9445
+ * - Service `azureMonitorLog`: For Logs Ingestion API authentication. The stream name of your Data Collection Rule.
9446
+ */
9447
+ dcrStreamName?: pulumi.Input<string | undefined>;
9357
9448
  /**
9358
9449
  * Enable SSL
9359
9450
  */
9360
9451
  enableSsl?: pulumi.Input<boolean | undefined>;
9452
+ environmentId?: pulumi.Input<string | undefined>;
9361
9453
  externalId?: pulumi.Input<string | undefined>;
9362
9454
  host?: pulumi.Input<string | undefined>;
9363
9455
  hostname?: pulumi.Input<string | undefined>;
9364
9456
  logGroupName?: pulumi.Input<string | undefined>;
9457
+ lokiUrl?: pulumi.Input<string | undefined>;
9365
9458
  /**
9366
9459
  * Port
9367
9460
  */
9368
9461
  port?: pulumi.Input<number | undefined>;
9462
+ /**
9463
+ * Field usage depends on `service` value:
9464
+ * - Service `azureMonitorLog`: For HTTP Data Collector API authentication. Your Log Analytics primary key.
9465
+ */
9369
9466
  primaryKey?: pulumi.Input<string | undefined>;
9370
9467
  projectId?: pulumi.Input<string | undefined>;
9371
9468
  region?: pulumi.Input<string | undefined>;
9372
9469
  roleArn?: pulumi.Input<string | undefined>;
9373
9470
  serviceAccountKey?: pulumi.Input<string | undefined>;
9374
9471
  subDomain?: pulumi.Input<string | undefined>;
9472
+ /**
9473
+ * Field usage depends on `service` value:
9474
+ * - Service `azureMonitorLog`: For Logs Ingestion API authentication. Your Microsoft Entra directory (tenant) ID.
9475
+ */
9476
+ tenantId?: pulumi.Input<string | undefined>;
9375
9477
  token?: pulumi.Input<string | undefined>;
9478
+ username?: pulumi.Input<string | undefined>;
9479
+ /**
9480
+ * Field usage depends on `service` value:
9481
+ * - Service `azureMonitorLog`: For HTTP Data Collector API authentication. Your Log Analytics workspace ID.
9482
+ */
9376
9483
  workspaceId?: pulumi.Input<string | undefined>;
9377
9484
  }
9378
9485
  export interface GetConnectionCertificatesCertificate {
@@ -25883,6 +25990,7 @@ export interface GetDestinationConfig {
25883
25990
  * - Service `postgresGcpWarehouse`: Specifies whether TLS is required. Must be populated if `connectionType` is set to `SshTunnel`.
25884
25991
  * - Service `postgresRdsWarehouse`: Specifies whether TLS is required. Must be populated if `connectionType` is set to `SshTunnel`.
25885
25992
  * - Service `postgresWarehouse`: Specifies whether TLS is required. Must be populated if `connectionType` is set to `SshTunnel`.
25993
+ * - Service `postgresWh`: Specifies whether TLS is required. Must be set when using `SshTunnel` connection
25886
25994
  * - Service `redshift`: Require TLS through Tunnel
25887
25995
  * - Service `sqlServerRdsWarehouse`: Specifies whether TLS is required. Must be populated if `connectionType` is set to `SshTunnel`.
25888
25996
  * - Service `sqlServerWarehouse`: Specifies whether TLS is required. Must be populated if `connectionType` is set to `SshTunnel`.
@@ -25906,6 +26014,7 @@ export interface GetDestinationConfig {
25906
26014
  * - Service `postgresGcpWarehouse`: Authentication method. Default value: `PASSWORD`.
25907
26015
  * - Service `postgresRdsWarehouse`: Authentication method. Default value: `PASSWORD`.
25908
26016
  * - Service `postgresWarehouse`: Authentication method. Default value: `PASSWORD`.
26017
+ * - Service `postgresWh`: Authentication method. Supported values: `PASSWORD`, `AWS_IAM`. Default: `PASSWORD`.
25909
26018
  */
25910
26019
  authMethod?: string;
25911
26020
  /**
@@ -25940,6 +26049,7 @@ export interface GetDestinationConfig {
25940
26049
  * - Service `postgresGcpWarehouse`: AWS region code. Required when `authMethod` is set to `AWS_IAM`.
25941
26050
  * - Service `postgresRdsWarehouse`: AWS region where the RDS instance is located. Required when `authMethod` is set to `AWS_IAM`.
25942
26051
  * - Service `postgresWarehouse`: AWS region code. Required when `authMethod` is set to `AWS_IAM`.
26052
+ * - Service `postgresWh`: AWS region code. Required when `authMethod` is set to `AWS_IAM`
25943
26053
  */
25944
26054
  awsRegionCode?: string;
25945
26055
  /**
@@ -25950,11 +26060,26 @@ export interface GetDestinationConfig {
25950
26060
  * - Service `snowflake`: The secret access key of the S3 bucket you want to use to stage your data. Use this parameter only if you are using Hybrid Deployment , want to use an S3 bucket to stage your data, and `awsBucketAuthType` is set to `IAM_USER`.
25951
26061
  */
25952
26062
  awsSecretAccessKey?: string;
26063
+ /**
26064
+ * Field usage depends on `service` value:
26065
+ * - Service `databricks`: Your Azure AD application (client) ID for Client Credentials authentication to the Azure container used as external staging for Hybrid Deployment.
26066
+ */
26067
+ azureClientId?: string;
26068
+ /**
26069
+ * Field usage depends on `service` value:
26070
+ * - Service `databricks`: Your Azure AD application client secret for Client Credentials authentication to the Azure container used as external staging for Hybrid Deployment.
26071
+ */
26072
+ azureClientSecret?: string;
25953
26073
  /**
25954
26074
  * Field usage depends on `service` value:
25955
26075
  * - Service `databricks`: Authentication method for the Azure container you want to use as the external staging for Hybrid Deployment.
25956
26076
  */
25957
26077
  azureStorageAccountAuthType?: string;
26078
+ /**
26079
+ * Field usage depends on `service` value:
26080
+ * - Service `databricks`: Your Azure AD tenant ID for Client Credentials authentication to the Azure container used as external staging for Hybrid Deployment.
26081
+ */
26082
+ azureTenantId?: string;
25958
26083
  /**
25959
26084
  * Field usage depends on `service` value:
25960
26085
  * - Service `confluentCloudWh`: Comma-separated list of Confluent Cloud servers in the `server:port` format.
@@ -26043,6 +26168,7 @@ export interface GetDestinationConfig {
26043
26168
  * - Service `postgresGcpWarehouse`: Connection method. Default value: `Directly`.
26044
26169
  * - Service `postgresRdsWarehouse`: Connection method. Default value: `Directly`.
26045
26170
  * - Service `postgresWarehouse`: Connection method. Default value: `Directly`.
26171
+ * - Service `postgresWh`: Connection method. Supported values: `Directly`, `SshTunnel`, `ProxyAgent`, `PrivateLink`. Default: `Directly`. Note: PrivateLink is only supported for cloud-hosted PostgreSQL (RDS, Aurora, Azure, GCP).
26046
26172
  * - Service `redshift`: Connection method. Default value: `Directly`.
26047
26173
  * - Service `snowflake`: Connection method. Default value: `Directly`.
26048
26174
  * - Service `sqlServerRdsWarehouse`: Connection method. Default value: `Directly`.
@@ -26100,6 +26226,7 @@ export interface GetDestinationConfig {
26100
26226
  * - Service `postgresGcpWarehouse`: Database name
26101
26227
  * - Service `postgresRdsWarehouse`: Database name
26102
26228
  * - Service `postgresWarehouse`: Database name
26229
+ * - Service `postgresWh`: Database name
26103
26230
  * - Service `redshift`: Database name
26104
26231
  * - Service `snowflake`: Database name
26105
26232
  * - Service `sqlServerRdsWarehouse`: Database name
@@ -26156,6 +26283,7 @@ export interface GetDestinationConfig {
26156
26283
  * - Service `postgresGcpWarehouse`: AWS external ID for authentication. Required when `authMethod` is set to `AWS_IAM`.
26157
26284
  * - Service `postgresRdsWarehouse`: AWS external ID for authentication. Required when `authMethod` is set to `AWS_IAM`.
26158
26285
  * - Service `postgresWarehouse`: AWS external ID for authentication. Required when `authMethod` is set to `AWS_IAM`.
26286
+ * - Service `postgresWh`: AWS external ID for authentication. Auto-generated from group ID when `authMethod` is set to `AWS_IAM`
26159
26287
  * - Service `redshift`: Fivetran generated External ID
26160
26288
  */
26161
26289
  externalId?: string;
@@ -26204,6 +26332,11 @@ export interface GetDestinationConfig {
26204
26332
  * - Service `managedDataLake`: GCS Project ID of your Google Cloud Storage bucket. Use this parameter only if you want to deploy your data lake on GCS.
26205
26333
  */
26206
26334
  gcsProjectId?: string;
26335
+ /**
26336
+ * Field usage depends on `service` value:
26337
+ * - Service `snowflake`: The service account credentials for the Google Cloud Storage (GCS) bucket you want to use to stage your data. Use this parameter only if you are using Hybrid Deployment and want to use a GCS bucket to stage your data.
26338
+ */
26339
+ gcsServiceAccountCredentials?: inputs.GetDestinationConfigGcsServiceAccountCredentials;
26207
26340
  /**
26208
26341
  * Field usage depends on `service` value:
26209
26342
  * - Service `snowflake`: The path to the JSON file that contains the service account credentials for the GCS bucket you want to use to stage your data. Use this parameter only if you are using Hybrid Deployment and want to use a GCS bucket to stage your data.
@@ -26230,6 +26363,7 @@ export interface GetDestinationConfig {
26230
26363
  * - Service `postgresGcpWarehouse`: Server name
26231
26364
  * - Service `postgresRdsWarehouse`: Server name
26232
26365
  * - Service `postgresWarehouse`: Server name
26366
+ * - Service `postgresWh`: Server hostname or IP address
26233
26367
  * - Service `redshift`: Server name
26234
26368
  * - Service `snowflake`: Server name
26235
26369
  * - Service `sqlServerRdsWarehouse`: Server name
@@ -26349,6 +26483,7 @@ export interface GetDestinationConfig {
26349
26483
  * - Service `postgresGcpWarehouse`: Database user password
26350
26484
  * - Service `postgresRdsWarehouse`: Database user password
26351
26485
  * - Service `postgresWarehouse`: Database user password
26486
+ * - Service `postgresWh`: Database user password. Required for PASSWORD authentication
26352
26487
  * - Service `redshift`: Database user password. Required if authentication type is `PASSWORD`.
26353
26488
  * - Service `snowflake`: Database user password. The field should be specified if authentication type is `PASSWORD`.
26354
26489
  * - Service `sqlServerRdsWarehouse`: Database user password
@@ -26365,6 +26500,12 @@ export interface GetDestinationConfig {
26365
26500
  * - Service `onelake`: Personal access token
26366
26501
  */
26367
26502
  personalAccessToken?: string;
26503
+ /**
26504
+ * Field usage depends on `service` value:
26505
+ * - Service `databricksViaManagedDataLake`: Polaris Catalog Base Configuration. Universal connection settings for any query engine or analytics tool.
26506
+ * - Service `managedDataLake`: Polaris Catalog Base Configuration. Universal connection settings for any query engine or analytics tool.
26507
+ */
26508
+ polarisCatalogConfiguration?: inputs.GetDestinationConfigPolarisCatalogConfiguration;
26368
26509
  /**
26369
26510
  * Field usage depends on `service` value:
26370
26511
  * - Service `adls`: Server port number
@@ -26392,6 +26533,7 @@ export interface GetDestinationConfig {
26392
26533
  * - Service `postgresGcpWarehouse`: Server port number
26393
26534
  * - Service `postgresRdsWarehouse`: Server port number
26394
26535
  * - Service `postgresWarehouse`: Server port number
26536
+ * - Service `postgresWh`: Server port number (default: 5432)
26395
26537
  * - Service `redshift`: Server port number
26396
26538
  * - Service `snowflake`: Server port number
26397
26539
  * - Service `sqlServerRdsWarehouse`: Server port number
@@ -26490,6 +26632,7 @@ export interface GetDestinationConfig {
26490
26632
  * - Service `postgresGcpWarehouse`: AWS IAM role ARN for authentication. Required when `authMethod` is set to `AWS_IAM`.
26491
26633
  * - Service `postgresRdsWarehouse`: AWS IAM role ARN for authentication. Required when `authMethod` is set to `AWS_IAM`.
26492
26634
  * - Service `postgresWarehouse`: AWS IAM role ARN for authentication. Required when `authMethod` is set to `AWS_IAM`.
26635
+ * - Service `postgresWh`: AWS IAM role ARN for authentication. Required when `authMethod` is set to `AWS_IAM`
26493
26636
  * - Service `redshift`: Role ARN with Redshift permissions. Required if authentication type is `IAM`.
26494
26637
  */
26495
26638
  roleArn?: string;
@@ -26592,6 +26735,12 @@ export interface GetDestinationConfig {
26592
26735
  * - Service `managedDataLake`: Specifies whether you want to create shortcut for you table in OneLake. Use this parameter only if you want to deploy your data lake on ADLS.
26593
26736
  */
26594
26737
  shouldMaintainTablesInOneLake?: boolean;
26738
+ /**
26739
+ * Field usage depends on `service` value:
26740
+ * - Service `databricksViaManagedDataLake`: Specifies whether Fivetran writes Delta Lake metadata in addition to Iceberg tables. Databricks via Managed Data Lake requires Delta Lake metadata, so Fivetran always uses `true` for this destination.
26741
+ * - Service `managedDataLake`: Specifies whether Fivetran writes Delta Lake metadata in addition to Iceberg tables. Default value: `false` for new destinations and `true` for existing destinations. Destinations with Unity Catalog or OneLake catalog enabled always write Delta Lake metadata.
26742
+ */
26743
+ shouldWriteDelta?: boolean;
26595
26744
  /**
26596
26745
  * Field usage depends on `service` value:
26597
26746
  * - Service `adls`: Snapshots older than the retention period are deleted every week. Default value: `ONE_WEEK`.
@@ -26666,6 +26815,7 @@ export interface GetDestinationConfig {
26666
26815
  * - Service `postgresGcpWarehouse`: SSH server name. Must be populated if `connectionType` is set to `SshTunnel`.
26667
26816
  * - Service `postgresRdsWarehouse`: SSH server name. Must be populated if `connectionType` is set to `SshTunnel`.
26668
26817
  * - Service `postgresWarehouse`: SSH server name. Must be populated if `connectionType` is set to `SshTunnel`.
26818
+ * - Service `postgresWh`: SSH server hostname. Required when `connectionType` is set to `SshTunnel`
26669
26819
  * - Service `redshift`: SSH server name. Must be populated if `connectionType` is set to `SshTunnel`.
26670
26820
  * - Service `sqlServerRdsWarehouse`: SSH server name. Must be populated if `connectionType` is set to `SshTunnel`.
26671
26821
  * - Service `sqlServerWarehouse`: SSH server name. Must be populated if `connectionType` is set to `SshTunnel`.
@@ -26692,6 +26842,7 @@ export interface GetDestinationConfig {
26692
26842
  * - Service `postgresGcpWarehouse`: SSH server port name. Must be populated if `connectionType` is set to `SshTunnel`.
26693
26843
  * - Service `postgresRdsWarehouse`: SSH server port name. Must be populated if `connectionType` is set to `SshTunnel`.
26694
26844
  * - Service `postgresWarehouse`: SSH server port name. Must be populated if `connectionType` is set to `SshTunnel`.
26845
+ * - Service `postgresWh`: SSH server port. Required when `connectionType` is set to `SshTunnel`
26695
26846
  * - Service `redshift`: SSH server port name. Must be populated if `connectionType` is set to `SshTunnel`.
26696
26847
  * - Service `sqlServerRdsWarehouse`: SSH server port name. Must be populated if `connectionType` is set to `SshTunnel`.
26697
26848
  * - Service `sqlServerWarehouse`: SSH server port name. Must be populated if `connectionType` is set to `SshTunnel`.
@@ -26718,6 +26869,7 @@ export interface GetDestinationConfig {
26718
26869
  * - Service `postgresGcpWarehouse`: SSH user name. Must be populated if `connectionType` is set to `SshTunnel`.
26719
26870
  * - Service `postgresRdsWarehouse`: SSH user name. Must be populated if `connectionType` is set to `SshTunnel`.
26720
26871
  * - Service `postgresWarehouse`: SSH user name. Must be populated if `connectionType` is set to `SshTunnel`.
26872
+ * - Service `postgresWh`: SSH user name. Required when `connectionType` is set to `SshTunnel`
26721
26873
  * - Service `redshift`: SSH user name. Must be populated if `connectionType` is set to `SshTunnel`.
26722
26874
  * - Service `sqlServerRdsWarehouse`: SSH user name. Must be populated if `connectionType` is set to `SshTunnel`.
26723
26875
  * - Service `sqlServerWarehouse`: SSH user name. Must be populated if `connectionType` is set to `SshTunnel`.
@@ -26749,6 +26901,7 @@ export interface GetDestinationConfig {
26749
26901
  * - Service `postgresGcpWarehouse`: Database user name
26750
26902
  * - Service `postgresRdsWarehouse`: Database user name
26751
26903
  * - Service `postgresWarehouse`: Database user name
26904
+ * - Service `postgresWh`: Database user name. Required for PASSWORD authentication
26752
26905
  * - Service `redshift`: Database user name
26753
26906
  * - Service `snowflake`: Database user name
26754
26907
  * - Service `sqlServerRdsWarehouse`: Database user name
@@ -26790,6 +26943,7 @@ export interface GetDestinationConfigArgs {
26790
26943
  * - Service `postgresGcpWarehouse`: Specifies whether TLS is required. Must be populated if `connectionType` is set to `SshTunnel`.
26791
26944
  * - Service `postgresRdsWarehouse`: Specifies whether TLS is required. Must be populated if `connectionType` is set to `SshTunnel`.
26792
26945
  * - Service `postgresWarehouse`: Specifies whether TLS is required. Must be populated if `connectionType` is set to `SshTunnel`.
26946
+ * - Service `postgresWh`: Specifies whether TLS is required. Must be set when using `SshTunnel` connection
26793
26947
  * - Service `redshift`: Require TLS through Tunnel
26794
26948
  * - Service `sqlServerRdsWarehouse`: Specifies whether TLS is required. Must be populated if `connectionType` is set to `SshTunnel`.
26795
26949
  * - Service `sqlServerWarehouse`: Specifies whether TLS is required. Must be populated if `connectionType` is set to `SshTunnel`.
@@ -26813,6 +26967,7 @@ export interface GetDestinationConfigArgs {
26813
26967
  * - Service `postgresGcpWarehouse`: Authentication method. Default value: `PASSWORD`.
26814
26968
  * - Service `postgresRdsWarehouse`: Authentication method. Default value: `PASSWORD`.
26815
26969
  * - Service `postgresWarehouse`: Authentication method. Default value: `PASSWORD`.
26970
+ * - Service `postgresWh`: Authentication method. Supported values: `PASSWORD`, `AWS_IAM`. Default: `PASSWORD`.
26816
26971
  */
26817
26972
  authMethod?: pulumi.Input<string | undefined>;
26818
26973
  /**
@@ -26847,6 +27002,7 @@ export interface GetDestinationConfigArgs {
26847
27002
  * - Service `postgresGcpWarehouse`: AWS region code. Required when `authMethod` is set to `AWS_IAM`.
26848
27003
  * - Service `postgresRdsWarehouse`: AWS region where the RDS instance is located. Required when `authMethod` is set to `AWS_IAM`.
26849
27004
  * - Service `postgresWarehouse`: AWS region code. Required when `authMethod` is set to `AWS_IAM`.
27005
+ * - Service `postgresWh`: AWS region code. Required when `authMethod` is set to `AWS_IAM`
26850
27006
  */
26851
27007
  awsRegionCode?: pulumi.Input<string | undefined>;
26852
27008
  /**
@@ -26857,11 +27013,26 @@ export interface GetDestinationConfigArgs {
26857
27013
  * - Service `snowflake`: The secret access key of the S3 bucket you want to use to stage your data. Use this parameter only if you are using Hybrid Deployment , want to use an S3 bucket to stage your data, and `awsBucketAuthType` is set to `IAM_USER`.
26858
27014
  */
26859
27015
  awsSecretAccessKey?: pulumi.Input<string | undefined>;
27016
+ /**
27017
+ * Field usage depends on `service` value:
27018
+ * - Service `databricks`: Your Azure AD application (client) ID for Client Credentials authentication to the Azure container used as external staging for Hybrid Deployment.
27019
+ */
27020
+ azureClientId?: pulumi.Input<string | undefined>;
27021
+ /**
27022
+ * Field usage depends on `service` value:
27023
+ * - Service `databricks`: Your Azure AD application client secret for Client Credentials authentication to the Azure container used as external staging for Hybrid Deployment.
27024
+ */
27025
+ azureClientSecret?: pulumi.Input<string | undefined>;
26860
27026
  /**
26861
27027
  * Field usage depends on `service` value:
26862
27028
  * - Service `databricks`: Authentication method for the Azure container you want to use as the external staging for Hybrid Deployment.
26863
27029
  */
26864
27030
  azureStorageAccountAuthType?: pulumi.Input<string | undefined>;
27031
+ /**
27032
+ * Field usage depends on `service` value:
27033
+ * - Service `databricks`: Your Azure AD tenant ID for Client Credentials authentication to the Azure container used as external staging for Hybrid Deployment.
27034
+ */
27035
+ azureTenantId?: pulumi.Input<string | undefined>;
26865
27036
  /**
26866
27037
  * Field usage depends on `service` value:
26867
27038
  * - Service `confluentCloudWh`: Comma-separated list of Confluent Cloud servers in the `server:port` format.
@@ -26950,6 +27121,7 @@ export interface GetDestinationConfigArgs {
26950
27121
  * - Service `postgresGcpWarehouse`: Connection method. Default value: `Directly`.
26951
27122
  * - Service `postgresRdsWarehouse`: Connection method. Default value: `Directly`.
26952
27123
  * - Service `postgresWarehouse`: Connection method. Default value: `Directly`.
27124
+ * - Service `postgresWh`: Connection method. Supported values: `Directly`, `SshTunnel`, `ProxyAgent`, `PrivateLink`. Default: `Directly`. Note: PrivateLink is only supported for cloud-hosted PostgreSQL (RDS, Aurora, Azure, GCP).
26953
27125
  * - Service `redshift`: Connection method. Default value: `Directly`.
26954
27126
  * - Service `snowflake`: Connection method. Default value: `Directly`.
26955
27127
  * - Service `sqlServerRdsWarehouse`: Connection method. Default value: `Directly`.
@@ -27007,6 +27179,7 @@ export interface GetDestinationConfigArgs {
27007
27179
  * - Service `postgresGcpWarehouse`: Database name
27008
27180
  * - Service `postgresRdsWarehouse`: Database name
27009
27181
  * - Service `postgresWarehouse`: Database name
27182
+ * - Service `postgresWh`: Database name
27010
27183
  * - Service `redshift`: Database name
27011
27184
  * - Service `snowflake`: Database name
27012
27185
  * - Service `sqlServerRdsWarehouse`: Database name
@@ -27063,6 +27236,7 @@ export interface GetDestinationConfigArgs {
27063
27236
  * - Service `postgresGcpWarehouse`: AWS external ID for authentication. Required when `authMethod` is set to `AWS_IAM`.
27064
27237
  * - Service `postgresRdsWarehouse`: AWS external ID for authentication. Required when `authMethod` is set to `AWS_IAM`.
27065
27238
  * - Service `postgresWarehouse`: AWS external ID for authentication. Required when `authMethod` is set to `AWS_IAM`.
27239
+ * - Service `postgresWh`: AWS external ID for authentication. Auto-generated from group ID when `authMethod` is set to `AWS_IAM`
27066
27240
  * - Service `redshift`: Fivetran generated External ID
27067
27241
  */
27068
27242
  externalId?: pulumi.Input<string | undefined>;
@@ -27111,6 +27285,11 @@ export interface GetDestinationConfigArgs {
27111
27285
  * - Service `managedDataLake`: GCS Project ID of your Google Cloud Storage bucket. Use this parameter only if you want to deploy your data lake on GCS.
27112
27286
  */
27113
27287
  gcsProjectId?: pulumi.Input<string | undefined>;
27288
+ /**
27289
+ * Field usage depends on `service` value:
27290
+ * - Service `snowflake`: The service account credentials for the Google Cloud Storage (GCS) bucket you want to use to stage your data. Use this parameter only if you are using Hybrid Deployment and want to use a GCS bucket to stage your data.
27291
+ */
27292
+ gcsServiceAccountCredentials?: pulumi.Input<inputs.GetDestinationConfigGcsServiceAccountCredentialsArgs | undefined>;
27114
27293
  /**
27115
27294
  * Field usage depends on `service` value:
27116
27295
  * - Service `snowflake`: The path to the JSON file that contains the service account credentials for the GCS bucket you want to use to stage your data. Use this parameter only if you are using Hybrid Deployment and want to use a GCS bucket to stage your data.
@@ -27137,6 +27316,7 @@ export interface GetDestinationConfigArgs {
27137
27316
  * - Service `postgresGcpWarehouse`: Server name
27138
27317
  * - Service `postgresRdsWarehouse`: Server name
27139
27318
  * - Service `postgresWarehouse`: Server name
27319
+ * - Service `postgresWh`: Server hostname or IP address
27140
27320
  * - Service `redshift`: Server name
27141
27321
  * - Service `snowflake`: Server name
27142
27322
  * - Service `sqlServerRdsWarehouse`: Server name
@@ -27256,6 +27436,7 @@ export interface GetDestinationConfigArgs {
27256
27436
  * - Service `postgresGcpWarehouse`: Database user password
27257
27437
  * - Service `postgresRdsWarehouse`: Database user password
27258
27438
  * - Service `postgresWarehouse`: Database user password
27439
+ * - Service `postgresWh`: Database user password. Required for PASSWORD authentication
27259
27440
  * - Service `redshift`: Database user password. Required if authentication type is `PASSWORD`.
27260
27441
  * - Service `snowflake`: Database user password. The field should be specified if authentication type is `PASSWORD`.
27261
27442
  * - Service `sqlServerRdsWarehouse`: Database user password
@@ -27272,6 +27453,12 @@ export interface GetDestinationConfigArgs {
27272
27453
  * - Service `onelake`: Personal access token
27273
27454
  */
27274
27455
  personalAccessToken?: pulumi.Input<string | undefined>;
27456
+ /**
27457
+ * Field usage depends on `service` value:
27458
+ * - Service `databricksViaManagedDataLake`: Polaris Catalog Base Configuration. Universal connection settings for any query engine or analytics tool.
27459
+ * - Service `managedDataLake`: Polaris Catalog Base Configuration. Universal connection settings for any query engine or analytics tool.
27460
+ */
27461
+ polarisCatalogConfiguration?: pulumi.Input<inputs.GetDestinationConfigPolarisCatalogConfigurationArgs | undefined>;
27275
27462
  /**
27276
27463
  * Field usage depends on `service` value:
27277
27464
  * - Service `adls`: Server port number
@@ -27299,6 +27486,7 @@ export interface GetDestinationConfigArgs {
27299
27486
  * - Service `postgresGcpWarehouse`: Server port number
27300
27487
  * - Service `postgresRdsWarehouse`: Server port number
27301
27488
  * - Service `postgresWarehouse`: Server port number
27489
+ * - Service `postgresWh`: Server port number (default: 5432)
27302
27490
  * - Service `redshift`: Server port number
27303
27491
  * - Service `snowflake`: Server port number
27304
27492
  * - Service `sqlServerRdsWarehouse`: Server port number
@@ -27397,6 +27585,7 @@ export interface GetDestinationConfigArgs {
27397
27585
  * - Service `postgresGcpWarehouse`: AWS IAM role ARN for authentication. Required when `authMethod` is set to `AWS_IAM`.
27398
27586
  * - Service `postgresRdsWarehouse`: AWS IAM role ARN for authentication. Required when `authMethod` is set to `AWS_IAM`.
27399
27587
  * - Service `postgresWarehouse`: AWS IAM role ARN for authentication. Required when `authMethod` is set to `AWS_IAM`.
27588
+ * - Service `postgresWh`: AWS IAM role ARN for authentication. Required when `authMethod` is set to `AWS_IAM`
27400
27589
  * - Service `redshift`: Role ARN with Redshift permissions. Required if authentication type is `IAM`.
27401
27590
  */
27402
27591
  roleArn?: pulumi.Input<string | undefined>;
@@ -27499,6 +27688,12 @@ export interface GetDestinationConfigArgs {
27499
27688
  * - Service `managedDataLake`: Specifies whether you want to create shortcut for you table in OneLake. Use this parameter only if you want to deploy your data lake on ADLS.
27500
27689
  */
27501
27690
  shouldMaintainTablesInOneLake?: pulumi.Input<boolean | undefined>;
27691
+ /**
27692
+ * Field usage depends on `service` value:
27693
+ * - Service `databricksViaManagedDataLake`: Specifies whether Fivetran writes Delta Lake metadata in addition to Iceberg tables. Databricks via Managed Data Lake requires Delta Lake metadata, so Fivetran always uses `true` for this destination.
27694
+ * - Service `managedDataLake`: Specifies whether Fivetran writes Delta Lake metadata in addition to Iceberg tables. Default value: `false` for new destinations and `true` for existing destinations. Destinations with Unity Catalog or OneLake catalog enabled always write Delta Lake metadata.
27695
+ */
27696
+ shouldWriteDelta?: pulumi.Input<boolean | undefined>;
27502
27697
  /**
27503
27698
  * Field usage depends on `service` value:
27504
27699
  * - Service `adls`: Snapshots older than the retention period are deleted every week. Default value: `ONE_WEEK`.
@@ -27573,6 +27768,7 @@ export interface GetDestinationConfigArgs {
27573
27768
  * - Service `postgresGcpWarehouse`: SSH server name. Must be populated if `connectionType` is set to `SshTunnel`.
27574
27769
  * - Service `postgresRdsWarehouse`: SSH server name. Must be populated if `connectionType` is set to `SshTunnel`.
27575
27770
  * - Service `postgresWarehouse`: SSH server name. Must be populated if `connectionType` is set to `SshTunnel`.
27771
+ * - Service `postgresWh`: SSH server hostname. Required when `connectionType` is set to `SshTunnel`
27576
27772
  * - Service `redshift`: SSH server name. Must be populated if `connectionType` is set to `SshTunnel`.
27577
27773
  * - Service `sqlServerRdsWarehouse`: SSH server name. Must be populated if `connectionType` is set to `SshTunnel`.
27578
27774
  * - Service `sqlServerWarehouse`: SSH server name. Must be populated if `connectionType` is set to `SshTunnel`.
@@ -27599,6 +27795,7 @@ export interface GetDestinationConfigArgs {
27599
27795
  * - Service `postgresGcpWarehouse`: SSH server port name. Must be populated if `connectionType` is set to `SshTunnel`.
27600
27796
  * - Service `postgresRdsWarehouse`: SSH server port name. Must be populated if `connectionType` is set to `SshTunnel`.
27601
27797
  * - Service `postgresWarehouse`: SSH server port name. Must be populated if `connectionType` is set to `SshTunnel`.
27798
+ * - Service `postgresWh`: SSH server port. Required when `connectionType` is set to `SshTunnel`
27602
27799
  * - Service `redshift`: SSH server port name. Must be populated if `connectionType` is set to `SshTunnel`.
27603
27800
  * - Service `sqlServerRdsWarehouse`: SSH server port name. Must be populated if `connectionType` is set to `SshTunnel`.
27604
27801
  * - Service `sqlServerWarehouse`: SSH server port name. Must be populated if `connectionType` is set to `SshTunnel`.
@@ -27625,6 +27822,7 @@ export interface GetDestinationConfigArgs {
27625
27822
  * - Service `postgresGcpWarehouse`: SSH user name. Must be populated if `connectionType` is set to `SshTunnel`.
27626
27823
  * - Service `postgresRdsWarehouse`: SSH user name. Must be populated if `connectionType` is set to `SshTunnel`.
27627
27824
  * - Service `postgresWarehouse`: SSH user name. Must be populated if `connectionType` is set to `SshTunnel`.
27825
+ * - Service `postgresWh`: SSH user name. Required when `connectionType` is set to `SshTunnel`
27628
27826
  * - Service `redshift`: SSH user name. Must be populated if `connectionType` is set to `SshTunnel`.
27629
27827
  * - Service `sqlServerRdsWarehouse`: SSH user name. Must be populated if `connectionType` is set to `SshTunnel`.
27630
27828
  * - Service `sqlServerWarehouse`: SSH user name. Must be populated if `connectionType` is set to `SshTunnel`.
@@ -27656,6 +27854,7 @@ export interface GetDestinationConfigArgs {
27656
27854
  * - Service `postgresGcpWarehouse`: Database user name
27657
27855
  * - Service `postgresRdsWarehouse`: Database user name
27658
27856
  * - Service `postgresWarehouse`: Database user name
27857
+ * - Service `postgresWh`: Database user name. Required for PASSWORD authentication
27659
27858
  * - Service `redshift`: Database user name
27660
27859
  * - Service `snowflake`: Database user name
27661
27860
  * - Service `sqlServerRdsWarehouse`: Database user name
@@ -27675,6 +27874,62 @@ export interface GetDestinationConfigArgs {
27675
27874
  */
27676
27875
  workspaceName?: pulumi.Input<string | undefined>;
27677
27876
  }
27877
+ export interface GetDestinationConfigGcsServiceAccountCredentials {
27878
+ }
27879
+ export interface GetDestinationConfigGcsServiceAccountCredentialsArgs {
27880
+ }
27881
+ export interface GetDestinationConfigPolarisCatalogConfiguration {
27882
+ /**
27883
+ * Field usage depends on `service` value:
27884
+ * - Service `databricksViaManagedDataLake`: Client ID
27885
+ * - Service `managedDataLake`: Client ID
27886
+ */
27887
+ clientId?: string;
27888
+ /**
27889
+ * Field usage depends on `service` value:
27890
+ * - Service `databricksViaManagedDataLake`: Client Secret
27891
+ * - Service `managedDataLake`: Client Secret
27892
+ */
27893
+ clientSecret?: string;
27894
+ /**
27895
+ * Field usage depends on `service` value:
27896
+ * - Service `databricksViaManagedDataLake`: Polaris Catalog
27897
+ * - Service `managedDataLake`: Polaris Catalog
27898
+ */
27899
+ polarisCatalog?: string;
27900
+ /**
27901
+ * Field usage depends on `service` value:
27902
+ * - Service `databricksViaManagedDataLake`: Polaris Server Endpoint
27903
+ * - Service `managedDataLake`: Polaris Server Endpoint
27904
+ */
27905
+ polarisServerEndpoint?: string;
27906
+ }
27907
+ export interface GetDestinationConfigPolarisCatalogConfigurationArgs {
27908
+ /**
27909
+ * Field usage depends on `service` value:
27910
+ * - Service `databricksViaManagedDataLake`: Client ID
27911
+ * - Service `managedDataLake`: Client ID
27912
+ */
27913
+ clientId?: pulumi.Input<string | undefined>;
27914
+ /**
27915
+ * Field usage depends on `service` value:
27916
+ * - Service `databricksViaManagedDataLake`: Client Secret
27917
+ * - Service `managedDataLake`: Client Secret
27918
+ */
27919
+ clientSecret?: pulumi.Input<string | undefined>;
27920
+ /**
27921
+ * Field usage depends on `service` value:
27922
+ * - Service `databricksViaManagedDataLake`: Polaris Catalog
27923
+ * - Service `managedDataLake`: Polaris Catalog
27924
+ */
27925
+ polarisCatalog?: pulumi.Input<string | undefined>;
27926
+ /**
27927
+ * Field usage depends on `service` value:
27928
+ * - Service `databricksViaManagedDataLake`: Polaris Server Endpoint
27929
+ * - Service `managedDataLake`: Polaris Server Endpoint
27930
+ */
27931
+ polarisServerEndpoint?: pulumi.Input<string | undefined>;
27932
+ }
27678
27933
  export interface GetDestinationFingerprintsFingerprint {
27679
27934
  /**
27680
27935
  * Hash of the fingerprint.
@@ -27806,41 +28061,125 @@ export interface GetDestinationsDestinationArgs {
27806
28061
  export interface GetExternalLoggingConfig {
27807
28062
  accessKeyId?: string;
27808
28063
  accessKeySecret?: string;
28064
+ accessToken?: string;
27809
28065
  apiKey?: string;
27810
28066
  channel?: string;
28067
+ /**
28068
+ * Field usage depends on `service` value:
28069
+ * - Service `azureMonitorLog`: For Logs Ingestion API authentication. Your application (client) ID.
28070
+ */
28071
+ clientId?: string;
28072
+ /**
28073
+ * Field usage depends on `service` value:
28074
+ * - Service `azureMonitorLog`: For Logs Ingestion API authentication. Your application client secret.
28075
+ */
28076
+ clientSecret?: string;
28077
+ /**
28078
+ * Field usage depends on `service` value:
28079
+ * - Service `azureMonitorLog`: For Logs Ingestion API authentication. The endpoint URL for your Data Collection Endpoint.
28080
+ */
28081
+ dataCollectionEndpoint?: string;
28082
+ /**
28083
+ * Field usage depends on `service` value:
28084
+ * - Service `azureMonitorLog`: For Logs Ingestion API authentication. The immutable ID of your Data Collection Rule.
28085
+ */
28086
+ dcrImmutableId?: string;
28087
+ /**
28088
+ * Field usage depends on `service` value:
28089
+ * - Service `azureMonitorLog`: For Logs Ingestion API authentication. The stream name of your Data Collection Rule.
28090
+ */
28091
+ dcrStreamName?: string;
27811
28092
  enableSsl?: boolean;
28093
+ environmentId?: string;
27812
28094
  externalId?: string;
27813
28095
  host?: string;
27814
28096
  hostname?: string;
27815
28097
  logGroupName?: string;
28098
+ lokiUrl?: string;
27816
28099
  port?: number;
28100
+ /**
28101
+ * Field usage depends on `service` value:
28102
+ * - Service `azureMonitorLog`: For HTTP Data Collector API authentication. Your Log Analytics primary key.
28103
+ */
27817
28104
  primaryKey?: string;
27818
28105
  projectId?: string;
27819
28106
  region?: string;
27820
28107
  roleArn?: string;
27821
28108
  serviceAccountKey?: string;
27822
28109
  subDomain?: string;
28110
+ /**
28111
+ * Field usage depends on `service` value:
28112
+ * - Service `azureMonitorLog`: For Logs Ingestion API authentication. Your Microsoft Entra directory (tenant) ID.
28113
+ */
28114
+ tenantId?: string;
27823
28115
  token?: string;
28116
+ username?: string;
28117
+ /**
28118
+ * Field usage depends on `service` value:
28119
+ * - Service `azureMonitorLog`: For HTTP Data Collector API authentication. Your Log Analytics workspace ID.
28120
+ */
27824
28121
  workspaceId?: string;
27825
28122
  }
27826
28123
  export interface GetExternalLoggingConfigArgs {
27827
28124
  accessKeyId?: pulumi.Input<string | undefined>;
27828
28125
  accessKeySecret?: pulumi.Input<string | undefined>;
28126
+ accessToken?: pulumi.Input<string | undefined>;
27829
28127
  apiKey?: pulumi.Input<string | undefined>;
27830
28128
  channel?: pulumi.Input<string | undefined>;
28129
+ /**
28130
+ * Field usage depends on `service` value:
28131
+ * - Service `azureMonitorLog`: For Logs Ingestion API authentication. Your application (client) ID.
28132
+ */
28133
+ clientId?: pulumi.Input<string | undefined>;
28134
+ /**
28135
+ * Field usage depends on `service` value:
28136
+ * - Service `azureMonitorLog`: For Logs Ingestion API authentication. Your application client secret.
28137
+ */
28138
+ clientSecret?: pulumi.Input<string | undefined>;
28139
+ /**
28140
+ * Field usage depends on `service` value:
28141
+ * - Service `azureMonitorLog`: For Logs Ingestion API authentication. The endpoint URL for your Data Collection Endpoint.
28142
+ */
28143
+ dataCollectionEndpoint?: pulumi.Input<string | undefined>;
28144
+ /**
28145
+ * Field usage depends on `service` value:
28146
+ * - Service `azureMonitorLog`: For Logs Ingestion API authentication. The immutable ID of your Data Collection Rule.
28147
+ */
28148
+ dcrImmutableId?: pulumi.Input<string | undefined>;
28149
+ /**
28150
+ * Field usage depends on `service` value:
28151
+ * - Service `azureMonitorLog`: For Logs Ingestion API authentication. The stream name of your Data Collection Rule.
28152
+ */
28153
+ dcrStreamName?: pulumi.Input<string | undefined>;
27831
28154
  enableSsl?: pulumi.Input<boolean | undefined>;
28155
+ environmentId?: pulumi.Input<string | undefined>;
27832
28156
  externalId?: pulumi.Input<string | undefined>;
27833
28157
  host?: pulumi.Input<string | undefined>;
27834
28158
  hostname?: pulumi.Input<string | undefined>;
27835
28159
  logGroupName?: pulumi.Input<string | undefined>;
28160
+ lokiUrl?: pulumi.Input<string | undefined>;
27836
28161
  port?: pulumi.Input<number | undefined>;
28162
+ /**
28163
+ * Field usage depends on `service` value:
28164
+ * - Service `azureMonitorLog`: For HTTP Data Collector API authentication. Your Log Analytics primary key.
28165
+ */
27837
28166
  primaryKey?: pulumi.Input<string | undefined>;
27838
28167
  projectId?: pulumi.Input<string | undefined>;
27839
28168
  region?: pulumi.Input<string | undefined>;
27840
28169
  roleArn?: pulumi.Input<string | undefined>;
27841
28170
  serviceAccountKey?: pulumi.Input<string | undefined>;
27842
28171
  subDomain?: pulumi.Input<string | undefined>;
28172
+ /**
28173
+ * Field usage depends on `service` value:
28174
+ * - Service `azureMonitorLog`: For Logs Ingestion API authentication. Your Microsoft Entra directory (tenant) ID.
28175
+ */
28176
+ tenantId?: pulumi.Input<string | undefined>;
27843
28177
  token?: pulumi.Input<string | undefined>;
28178
+ username?: pulumi.Input<string | undefined>;
28179
+ /**
28180
+ * Field usage depends on `service` value:
28181
+ * - Service `azureMonitorLog`: For HTTP Data Collector API authentication. Your Log Analytics workspace ID.
28182
+ */
27844
28183
  workspaceId?: pulumi.Input<string | undefined>;
27845
28184
  }
27846
28185
  export interface GetExternalLogsLog {