@pulumi/databricks 1.52.0-alpha.1729187150 → 1.52.0-alpha.1729524608

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/getAwsBucketPolicy.d.ts +44 -0
  2. package/getAwsBucketPolicy.js +44 -0
  3. package/getAwsBucketPolicy.js.map +1 -1
  4. package/getAwsUnityCatalogPolicy.d.ts +2 -2
  5. package/getAwsUnityCatalogPolicy.js +2 -2
  6. package/getCluster.d.ts +4 -4
  7. package/getCluster.js +4 -4
  8. package/getInstancePool.d.ts +2 -2
  9. package/getInstancePool.js +2 -2
  10. package/getMetastore.d.ts +12 -2
  11. package/getMetastore.js +12 -2
  12. package/getMetastore.js.map +1 -1
  13. package/getNotificationDestinations.d.ts +132 -0
  14. package/getNotificationDestinations.js +96 -0
  15. package/getNotificationDestinations.js.map +1 -0
  16. package/getRegisteredModel.d.ts +114 -0
  17. package/getRegisteredModel.js +76 -0
  18. package/getRegisteredModel.js.map +1 -0
  19. package/getSqlWarehouse.d.ts +4 -4
  20. package/getSqlWarehouse.js +4 -4
  21. package/getViews.d.ts +72 -0
  22. package/getViews.js +72 -0
  23. package/getViews.js.map +1 -1
  24. package/getVolume.d.ts +72 -0
  25. package/getVolume.js +72 -0
  26. package/getVolume.js.map +1 -1
  27. package/index.d.ts +6 -0
  28. package/index.js +10 -4
  29. package/index.js.map +1 -1
  30. package/job.d.ts +12 -0
  31. package/job.js +2 -0
  32. package/job.js.map +1 -1
  33. package/lakehouseMonitor.d.ts +43 -0
  34. package/lakehouseMonitor.js +43 -0
  35. package/lakehouseMonitor.js.map +1 -1
  36. package/modelServing.d.ts +18 -9
  37. package/modelServing.js.map +1 -1
  38. package/mwsCredentials.d.ts +2 -0
  39. package/mwsCredentials.js +2 -0
  40. package/mwsCredentials.js.map +1 -1
  41. package/mwsCustomerManagedKeys.d.ts +3 -2
  42. package/mwsCustomerManagedKeys.js +3 -2
  43. package/mwsCustomerManagedKeys.js.map +1 -1
  44. package/onlineTable.d.ts +8 -0
  45. package/onlineTable.js +2 -0
  46. package/onlineTable.js.map +1 -1
  47. package/package.json +2 -2
  48. package/permissions.d.ts +3 -2
  49. package/permissions.js +3 -2
  50. package/permissions.js.map +1 -1
  51. package/pipeline.d.ts +9 -0
  52. package/pipeline.js.map +1 -1
  53. package/qualityMonitor.d.ts +43 -0
  54. package/qualityMonitor.js +43 -0
  55. package/qualityMonitor.js.map +1 -1
  56. package/types/input.d.ts +282 -15
  57. package/types/output.d.ts +203 -15
package/types/output.d.ts CHANGED
@@ -2688,6 +2688,85 @@ export interface GetNotebookPathsNotebookPathList {
2688
2688
  */
2689
2689
  path?: string;
2690
2690
  }
2691
+ export interface GetNotificationDestinationsNotificationDestination {
2692
+ /**
2693
+ * The type of the notification destination. Possible values are `EMAIL`, `MICROSOFT_TEAMS`, `PAGERDUTY`, `SLACK`, or `WEBHOOK`.
2694
+ */
2695
+ destinationType?: string;
2696
+ /**
2697
+ * The display name of the Notification Destination.
2698
+ */
2699
+ displayName?: string;
2700
+ /**
2701
+ * The unique ID of the Notification Destination.
2702
+ */
2703
+ id?: string;
2704
+ }
2705
+ export interface GetRegisteredModelModelInfo {
2706
+ /**
2707
+ * the list of aliases associated with this model. Each item is object consisting of following attributes:
2708
+ */
2709
+ aliases?: outputs.GetRegisteredModelModelInfoAlias[];
2710
+ browseOnly?: boolean;
2711
+ /**
2712
+ * The name of the catalog where the schema and the registered model reside.
2713
+ */
2714
+ catalogName?: string;
2715
+ /**
2716
+ * The comment attached to the registered model.
2717
+ */
2718
+ comment?: string;
2719
+ /**
2720
+ * the Unix timestamp at the model's creation
2721
+ */
2722
+ createdAt?: number;
2723
+ /**
2724
+ * the identifier of the user who created the model
2725
+ */
2726
+ createdBy?: string;
2727
+ /**
2728
+ * The fully-qualified name of the registered model (`catalog_name.schema_name.name`).
2729
+ */
2730
+ fullName?: string;
2731
+ /**
2732
+ * the unique identifier of the metastore
2733
+ */
2734
+ metastoreId?: string;
2735
+ /**
2736
+ * The name of the registered model.
2737
+ */
2738
+ name?: string;
2739
+ /**
2740
+ * Name of the registered model owner.
2741
+ */
2742
+ owner?: string;
2743
+ /**
2744
+ * The name of the schema where the registered model resides.
2745
+ */
2746
+ schemaName?: string;
2747
+ /**
2748
+ * The storage location under which model version data files are stored.
2749
+ */
2750
+ storageLocation?: string;
2751
+ /**
2752
+ * the timestamp of the last time changes were made to the model
2753
+ */
2754
+ updatedAt?: number;
2755
+ /**
2756
+ * the identifier of the user who updated the model last time
2757
+ */
2758
+ updatedBy?: string;
2759
+ }
2760
+ export interface GetRegisteredModelModelInfoAlias {
2761
+ /**
2762
+ * string with the name of alias
2763
+ */
2764
+ aliasName?: string;
2765
+ /**
2766
+ * associated model version
2767
+ */
2768
+ versionNum?: number;
2769
+ }
2691
2770
  export interface GetSchemaSchemaInfo {
2692
2771
  /**
2693
2772
  * indicates whether the principal is limited to retrieving metadata for the schema through the BROWSE privilege.
@@ -5732,34 +5811,79 @@ export interface MlflowWebhookJobSpec {
5732
5811
  workspaceUrl?: string;
5733
5812
  }
5734
5813
  export interface ModelServingAiGateway {
5814
+ /**
5815
+ * Block with configuration for AI Guardrails to prevent unwanted data and unsafe data in requests and responses. Consists of the following attributes:
5816
+ */
5735
5817
  guardrails?: outputs.ModelServingAiGatewayGuardrails;
5818
+ /**
5819
+ * Block describing the configuration of usage tracking. Consists of the following attributes:
5820
+ */
5736
5821
  inferenceTableConfig?: outputs.ModelServingAiGatewayInferenceTableConfig;
5737
5822
  /**
5738
- * A list of rate limits to be applied to the serving endpoint. NOTE: only external and foundation model endpoints are supported as of now.
5823
+ * Block describing rate limits for AI gateway. For details see the description of `rateLimits` block above.
5739
5824
  */
5740
5825
  rateLimits?: outputs.ModelServingAiGatewayRateLimit[];
5826
+ /**
5827
+ * Block with configuration for payload logging using inference tables. For details see the description of `autoCaptureConfig` block above.
5828
+ */
5741
5829
  usageTrackingConfig?: outputs.ModelServingAiGatewayUsageTrackingConfig;
5742
5830
  }
5743
5831
  export interface ModelServingAiGatewayGuardrails {
5832
+ /**
5833
+ * A block with configuration for input guardrail filters:
5834
+ */
5744
5835
  input?: outputs.ModelServingAiGatewayGuardrailsInput;
5836
+ /**
5837
+ * A block with configuration for output guardrail filters. Has the same structure as `input` block.
5838
+ */
5745
5839
  output?: outputs.ModelServingAiGatewayGuardrailsOutput;
5746
5840
  }
5747
5841
  export interface ModelServingAiGatewayGuardrailsInput {
5842
+ /**
5843
+ * List of invalid keywords. AI guardrail uses keyword or string matching to decide if the keyword exists in the request or response content.
5844
+ */
5748
5845
  invalidKeywords?: string[];
5846
+ /**
5847
+ * Block with configuration for guardrail PII filter:
5848
+ */
5749
5849
  pii?: outputs.ModelServingAiGatewayGuardrailsInputPii;
5850
+ /**
5851
+ * the boolean flag that indicates whether the safety filter is enabled.
5852
+ */
5750
5853
  safety?: boolean;
5854
+ /**
5855
+ * The list of allowed topics. Given a chat request, this guardrail flags the request if its topic is not in the allowed topics.
5856
+ */
5751
5857
  validTopics?: string[];
5752
5858
  }
5753
5859
  export interface ModelServingAiGatewayGuardrailsInputPii {
5860
+ /**
5861
+ * a string that describes the behavior for PII filter. Currently only `BLOCK` value is supported.
5862
+ */
5754
5863
  behavior: string;
5755
5864
  }
5756
5865
  export interface ModelServingAiGatewayGuardrailsOutput {
5866
+ /**
5867
+ * List of invalid keywords. AI guardrail uses keyword or string matching to decide if the keyword exists in the request or response content.
5868
+ */
5757
5869
  invalidKeywords?: string[];
5870
+ /**
5871
+ * Block with configuration for guardrail PII filter:
5872
+ */
5758
5873
  pii?: outputs.ModelServingAiGatewayGuardrailsOutputPii;
5874
+ /**
5875
+ * the boolean flag that indicates whether the safety filter is enabled.
5876
+ */
5759
5877
  safety?: boolean;
5878
+ /**
5879
+ * The list of allowed topics. Given a chat request, this guardrail flags the request if its topic is not in the allowed topics.
5880
+ */
5760
5881
  validTopics?: string[];
5761
5882
  }
5762
5883
  export interface ModelServingAiGatewayGuardrailsOutputPii {
5884
+ /**
5885
+ * a string that describes the behavior for PII filter. Currently only `BLOCK` value is supported.
5886
+ */
5763
5887
  behavior: string;
5764
5888
  }
5765
5889
  export interface ModelServingAiGatewayInferenceTableConfig {
@@ -5768,7 +5892,7 @@ export interface ModelServingAiGatewayInferenceTableConfig {
5768
5892
  */
5769
5893
  catalogName?: string;
5770
5894
  /**
5771
- * If inference tables are enabled or not. NOTE: If you have already disabled payload logging once, you cannot enable again.
5895
+ * boolean flag specifying if usage tracking is enabled.
5772
5896
  */
5773
5897
  enabled?: boolean;
5774
5898
  /**
@@ -5795,9 +5919,6 @@ export interface ModelServingAiGatewayRateLimit {
5795
5919
  renewalPeriod: string;
5796
5920
  }
5797
5921
  export interface ModelServingAiGatewayUsageTrackingConfig {
5798
- /**
5799
- * If inference tables are enabled or not. NOTE: If you have already disabled payload logging once, you cannot enable again.
5800
- */
5801
5922
  enabled?: boolean;
5802
5923
  }
5803
5924
  export interface ModelServingConfig {
@@ -5826,7 +5947,7 @@ export interface ModelServingConfigAutoCaptureConfig {
5826
5947
  */
5827
5948
  catalogName?: string;
5828
5949
  /**
5829
- * If inference tables are enabled or not. NOTE: If you have already disabled payload logging once, you cannot enable again.
5950
+ * If inference tables are enabled or not. NOTE: If you have already disabled payload logging once, you cannot enable it again.
5830
5951
  */
5831
5952
  enabled: boolean;
5832
5953
  /**
@@ -5848,13 +5969,13 @@ export interface ModelServingConfigServedEntity {
5848
5969
  */
5849
5970
  entityVersion?: string;
5850
5971
  /**
5851
- * An object containing a set of optional, user-specified environment variable key-value pairs used for serving this entity. Note: this is an experimental feature and subject to change. Example entity environment variables that refer to Databricks secrets: ```{"OPENAI_API_KEY": "{{secrets/my_scope/my_key}}", "DATABRICKS_TOKEN": "{{secrets/my_scope2/my_key2}}"}```
5972
+ * An object containing a set of optional, user-specified environment variable key-value pairs used for serving this entity. Note: this is an experimental feature and is subject to change. Example entity environment variables that refer to Databricks secrets: ```{"OPENAI_API_KEY": "{{secrets/my_scope/my_key}}", "DATABRICKS_TOKEN": "{{secrets/my_scope2/my_key2}}"}```
5852
5973
  */
5853
5974
  environmentVars?: {
5854
5975
  [key: string]: string;
5855
5976
  };
5856
5977
  /**
5857
- * The external model to be served. NOTE: Only one of `externalModel` and (`entityName`, `entityVersion`, `workloadSize`, `workloadType`, and `scaleToZeroEnabled`) can be specified with the latter set being used for custom model serving for a Databricks registered model. When an `externalModel` is present, the served entities list can only have one `servedEntity` object. For an existing endpoint with `externalModel`, it can not be updated to an endpoint without `externalModel`. If the endpoint is created without `externalModel`, users cannot update it to add `externalModel` later.
5978
+ * The external model to be served. NOTE: Only one of `externalModel` and (`entityName`, `entityVersion`, `workloadSize`, `workloadType`, and `scaleToZeroEnabled`) can be specified with the latter set being used for custom model serving for a Databricks registered model. When an `externalModel` is present, the served entities list can only have one `servedEntity` object. An existing endpoint with `externalModel` can not be updated to an endpoint without `externalModel`. If the endpoint is created without `externalModel`, users cannot update it to add `externalModel` later.
5858
5979
  */
5859
5980
  externalModel?: outputs.ModelServingConfigServedEntityExternalModel;
5860
5981
  /**
@@ -5907,6 +6028,9 @@ export interface ModelServingConfigServedEntityExternalModel {
5907
6028
  * Databricks Model Serving Config
5908
6029
  */
5909
6030
  databricksModelServingConfig?: outputs.ModelServingConfigServedEntityExternalModelDatabricksModelServingConfig;
6031
+ /**
6032
+ * Google Cloud Vertex AI Config.
6033
+ */
5910
6034
  googleCloudVertexAiConfig?: outputs.ModelServingConfigServedEntityExternalModelGoogleCloudVertexAiConfig;
5911
6035
  /**
5912
6036
  * The name of the external model.
@@ -5921,7 +6045,7 @@ export interface ModelServingConfigServedEntityExternalModel {
5921
6045
  */
5922
6046
  palmConfig?: outputs.ModelServingConfigServedEntityExternalModelPalmConfig;
5923
6047
  /**
5924
- * The name of the provider for the external model. Currently, the supported providers are `ai21labs`, `anthropic`, `amazon-bedrock`, `cohere`, `databricks-model-serving`, `openai`, and `palm`.
6048
+ * The name of the provider for the external model. Currently, the supported providers are `ai21labs`, `anthropic`, `amazon-bedrock`, `cohere`, `databricks-model-serving`, `google-cloud-vertex-ai`, `openai`, and `palm`.
5925
6049
  */
5926
6050
  provider: string;
5927
6051
  /**
@@ -5934,6 +6058,9 @@ export interface ModelServingConfigServedEntityExternalModelAi21labsConfig {
5934
6058
  * The Databricks secret key reference for an AI21Labs API key.
5935
6059
  */
5936
6060
  ai21labsApiKey?: string;
6061
+ /**
6062
+ * An AI21 Labs API key provided as a plaintext string.
6063
+ */
5937
6064
  ai21labsApiKeyPlaintext?: string;
5938
6065
  }
5939
6066
  export interface ModelServingConfigServedEntityExternalModelAmazonBedrockConfig {
@@ -5941,6 +6068,9 @@ export interface ModelServingConfigServedEntityExternalModelAmazonBedrockConfig
5941
6068
  * The Databricks secret key reference for an AWS Access Key ID with permissions to interact with Bedrock services.
5942
6069
  */
5943
6070
  awsAccessKeyId?: string;
6071
+ /**
6072
+ * An AWS access key ID with permissions to interact with Bedrock services provided as a plaintext string.
6073
+ */
5944
6074
  awsAccessKeyIdPlaintext?: string;
5945
6075
  /**
5946
6076
  * The AWS region to use. Bedrock has to be enabled there.
@@ -5950,6 +6080,9 @@ export interface ModelServingConfigServedEntityExternalModelAmazonBedrockConfig
5950
6080
  * The Databricks secret key reference for an AWS Secret Access Key paired with the access key ID, with permissions to interact with Bedrock services.
5951
6081
  */
5952
6082
  awsSecretAccessKey?: string;
6083
+ /**
6084
+ * An AWS secret access key paired with the access key ID, with permissions to interact with Bedrock services provided as a plaintext string.
6085
+ */
5953
6086
  awsSecretAccessKeyPlaintext?: string;
5954
6087
  /**
5955
6088
  * The underlying provider in Amazon Bedrock. Supported values (case insensitive) include: `Anthropic`, `Cohere`, `AI21Labs`, `Amazon`.
@@ -5958,10 +6091,12 @@ export interface ModelServingConfigServedEntityExternalModelAmazonBedrockConfig
5958
6091
  }
5959
6092
  export interface ModelServingConfigServedEntityExternalModelAnthropicConfig {
5960
6093
  /**
5961
- * The Databricks secret key reference for an Anthropic API key.
5962
6094
  * The Databricks secret key reference for an Anthropic API key.
5963
6095
  */
5964
6096
  anthropicApiKey?: string;
6097
+ /**
6098
+ * The Anthropic API key provided as a plaintext string.
6099
+ */
5965
6100
  anthropicApiKeyPlaintext?: string;
5966
6101
  }
5967
6102
  export interface ModelServingConfigServedEntityExternalModelCohereConfig {
@@ -5970,6 +6105,9 @@ export interface ModelServingConfigServedEntityExternalModelCohereConfig {
5970
6105
  * The Databricks secret key reference for a Cohere API key.
5971
6106
  */
5972
6107
  cohereApiKey?: string;
6108
+ /**
6109
+ * The Cohere API key provided as a plaintext string.
6110
+ */
5973
6111
  cohereApiKeyPlaintext?: string;
5974
6112
  }
5975
6113
  export interface ModelServingConfigServedEntityExternalModelDatabricksModelServingConfig {
@@ -5977,6 +6115,9 @@ export interface ModelServingConfigServedEntityExternalModelDatabricksModelServi
5977
6115
  * The Databricks secret key reference for a Databricks API token that corresponds to a user or service principal with Can Query access to the model serving endpoint pointed to by this external model.
5978
6116
  */
5979
6117
  databricksApiToken?: string;
6118
+ /**
6119
+ * The Databricks API token that corresponds to a user or service principal with Can Query access to the model serving endpoint pointed to by this external model provided as a plaintext string.
6120
+ */
5980
6121
  databricksApiTokenPlaintext?: string;
5981
6122
  /**
5982
6123
  * The URL of the Databricks workspace containing the model serving endpoint pointed to by this external model.
@@ -5984,31 +6125,58 @@ export interface ModelServingConfigServedEntityExternalModelDatabricksModelServi
5984
6125
  databricksWorkspaceUrl: string;
5985
6126
  }
5986
6127
  export interface ModelServingConfigServedEntityExternalModelGoogleCloudVertexAiConfig {
6128
+ /**
6129
+ * The Databricks secret key reference for a private key for the service account that has access to the Google Cloud Vertex AI Service.
6130
+ */
5987
6131
  privateKey?: string;
6132
+ /**
6133
+ * The private key for the service account that has access to the Google Cloud Vertex AI Service is provided as a plaintext secret.
6134
+ */
5988
6135
  privateKeyPlaintext?: string;
6136
+ /**
6137
+ * This is the Google Cloud project id that the service account is associated with.
6138
+ */
5989
6139
  projectId?: string;
6140
+ /**
6141
+ * This is the region for the Google Cloud Vertex AI Service.
6142
+ */
5990
6143
  region?: string;
5991
6144
  }
5992
6145
  export interface ModelServingConfigServedEntityExternalModelOpenaiConfig {
6146
+ /**
6147
+ * This field is only required for Azure AD OpenAI and is the Microsoft Entra Client ID.
6148
+ */
5993
6149
  microsoftEntraClientId?: string;
6150
+ /**
6151
+ * The Databricks secret key reference for a client secret used for Microsoft Entra ID authentication.
6152
+ */
5994
6153
  microsoftEntraClientSecret?: string;
6154
+ /**
6155
+ * The client secret used for Microsoft Entra ID authentication provided as a plaintext string.
6156
+ */
5995
6157
  microsoftEntraClientSecretPlaintext?: string;
6158
+ /**
6159
+ * This field is only required for Azure AD OpenAI and is the Microsoft Entra Tenant ID.
6160
+ */
5996
6161
  microsoftEntraTenantId?: string;
5997
6162
  /**
5998
- * This is the base URL for the OpenAI API (default: "https://api.openai.com/v1"). For Azure OpenAI, this field is required, and is the base URL for the Azure OpenAI API service provided by Azure.
6163
+ * This is the base URL for the OpenAI API (default: "https://api.openai.com/v1"). For Azure OpenAI, this field is required and is the base URL for the Azure OpenAI API service provided by Azure.
5999
6164
  */
6000
6165
  openaiApiBase?: string;
6001
6166
  /**
6002
6167
  * The Databricks secret key reference for an OpenAI or Azure OpenAI API key.
6003
6168
  */
6004
6169
  openaiApiKey?: string;
6170
+ /**
6171
+ * The OpenAI API key using the OpenAI or Azure service provided as a plaintext string.
6172
+ */
6005
6173
  openaiApiKeyPlaintext?: string;
6006
6174
  /**
6007
- * This is an optional field to specify the type of OpenAI API to use. For Azure OpenAI, this field is required, and adjust this parameter to represent the preferred security access validation protocol. For access token validation, use azure. For authentication using Azure Active Directory (Azure AD) use, azuread.
6175
+ * This is an optional field to specify the type of OpenAI API to use. For Azure OpenAI, this field is required, and this parameter represents the preferred security access validation protocol. For access token validation, use `azure`. For authentication using Azure Active Directory (Azure AD) use, `azuread`.
6008
6176
  */
6009
6177
  openaiApiType?: string;
6010
6178
  /**
6011
- * This is an optional field to specify the OpenAI API version. For Azure OpenAI, this field is required, and is the version of the Azure OpenAI service to utilize, specified by a date.
6179
+ * This is an optional field to specify the OpenAI API version. For Azure OpenAI, this field is required and is the version of the Azure OpenAI service to utilize, specified by a date.
6012
6180
  */
6013
6181
  openaiApiVersion?: string;
6014
6182
  /**
@@ -6025,11 +6193,14 @@ export interface ModelServingConfigServedEntityExternalModelPalmConfig {
6025
6193
  * The Databricks secret key reference for a PaLM API key.
6026
6194
  */
6027
6195
  palmApiKey?: string;
6196
+ /**
6197
+ * The PaLM API key provided as a plaintext string.
6198
+ */
6028
6199
  palmApiKeyPlaintext?: string;
6029
6200
  }
6030
6201
  export interface ModelServingConfigServedModel {
6031
6202
  /**
6032
- * a map of environment variable name/values that will be used for serving this model. Environment variables may refer to Databricks secrets using the standard syntax: `{{secrets/secret_scope/secret_key}}`.
6203
+ * a map of environment variable names/values that will be used for serving this model. Environment variables may refer to Databricks secrets using the standard syntax: `{{secrets/secret_scope/secret_key}}`.
6033
6204
  */
6034
6205
  environmentVars?: {
6035
6206
  [key: string]: string;
@@ -6067,7 +6238,7 @@ export interface ModelServingConfigServedModel {
6067
6238
  */
6068
6239
  workloadSize?: string;
6069
6240
  /**
6070
- * The workload type of the served model. The workload type selects which type of compute to use in the endpoint. For deep learning workloads, GPU acceleration is available by selecting workload types like `GPU_SMALL` and others. See documentation for all options. The default value is `CPU`.
6241
+ * The workload type of the served model. The workload type selects which type of compute to use in the endpoint. For deep learning workloads, GPU acceleration is available by selecting workload types like `GPU_SMALL` and others. See the documentation for all options. The default value is `CPU`.
6071
6242
  */
6072
6243
  workloadType: string;
6073
6244
  }
@@ -6658,9 +6829,23 @@ export interface PipelineIngestionDefinition {
6658
6829
  tableConfiguration?: outputs.PipelineIngestionDefinitionTableConfiguration;
6659
6830
  }
6660
6831
  export interface PipelineIngestionDefinitionObject {
6832
+ report?: outputs.PipelineIngestionDefinitionObjectReport;
6661
6833
  schema?: outputs.PipelineIngestionDefinitionObjectSchema;
6662
6834
  table?: outputs.PipelineIngestionDefinitionObjectTable;
6663
6835
  }
6836
+ export interface PipelineIngestionDefinitionObjectReport {
6837
+ destinationCatalog?: string;
6838
+ destinationSchema?: string;
6839
+ destinationTable?: string;
6840
+ sourceUrl?: string;
6841
+ tableConfiguration?: outputs.PipelineIngestionDefinitionObjectReportTableConfiguration;
6842
+ }
6843
+ export interface PipelineIngestionDefinitionObjectReportTableConfiguration {
6844
+ primaryKeys?: string[];
6845
+ salesforceIncludeFormulaFields?: boolean;
6846
+ scdType?: string;
6847
+ sequenceBies?: string[];
6848
+ }
6664
6849
  export interface PipelineIngestionDefinitionObjectSchema {
6665
6850
  destinationCatalog?: string;
6666
6851
  destinationSchema?: string;
@@ -6672,6 +6857,7 @@ export interface PipelineIngestionDefinitionObjectSchemaTableConfiguration {
6672
6857
  primaryKeys?: string[];
6673
6858
  salesforceIncludeFormulaFields?: boolean;
6674
6859
  scdType?: string;
6860
+ sequenceBies?: string[];
6675
6861
  }
6676
6862
  export interface PipelineIngestionDefinitionObjectTable {
6677
6863
  destinationCatalog?: string;
@@ -6686,11 +6872,13 @@ export interface PipelineIngestionDefinitionObjectTableTableConfiguration {
6686
6872
  primaryKeys?: string[];
6687
6873
  salesforceIncludeFormulaFields?: boolean;
6688
6874
  scdType?: string;
6875
+ sequenceBies?: string[];
6689
6876
  }
6690
6877
  export interface PipelineIngestionDefinitionTableConfiguration {
6691
6878
  primaryKeys?: string[];
6692
6879
  salesforceIncludeFormulaFields?: boolean;
6693
6880
  scdType?: string;
6881
+ sequenceBies?: string[];
6694
6882
  }
6695
6883
  export interface PipelineLatestUpdate {
6696
6884
  creationTime?: string;