File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -231,7 +231,7 @@ export interface DatabaseCatalog {
231231 name ?: string | undefined ;
232232 /** The name of the DatabaseInstance housing the database. */
233233 databaseInstanceName ?: string | undefined ;
234- /** The name of the database (in a instance) associated with the catalog. */
234+ /** The name of the database (in an instance) associated with the catalog. */
235235 databaseName ?: string | undefined ;
236236 uid ?: string | undefined ;
237237 createDatabaseIfNotExists ?: boolean | undefined ;
@@ -455,7 +455,7 @@ export interface DeleteDatabaseInstanceRequest {
455455 /** Name of the instance to delete. */
456456 name ?: string | undefined ;
457457 /**
458- * By default, a instance cannot be deleted if it has descendant instances created via PITR. If
458+ * By default, an instance cannot be deleted if it has descendant instances created via PITR. If
459459 * this flag is specified as true, all descendent instances will be deleted as well.
460460 */
461461 force ?: boolean | undefined ;
Original file line number Diff line number Diff line change @@ -602,9 +602,18 @@ export interface KafkaStreamConfig {
602602 /** Options to configure which Kafka topics to pull data from. */
603603 subscriptionMode ?: KafkaSubscriptionMode | undefined ;
604604 /**
605- * Miscellaneous source options. Accepted keys are source options or Kafka consumer options (kafka.*),
606- * validated against an allow-list at request time.
607- * All auth configuration goes through the underlying UC Connection(s) or configs and should not be stored here.
605+ * Optional Kafka source or consumer options, validated against a server-side
606+ * allowlist at request time. Allowed keys:
607+ * - `maxOffsetsPerTrigger`
608+ * - `startingOffsets`
609+ * - `includeHeaders`
610+ * - `kafka.request.timeout.ms`
611+ * - `kafka.session.timeout.ms`
612+ * - `kafka.max.partition.fetch.bytes`
613+ * The following keys are ingestion-only and are stripped before being forwarded to the materialization pipeline:
614+ * - `maxOffsetsPerTrigger`
615+ * - `startingOffsets`
616+ * Auth and connection details belong on the parent Stream's `connection_config`, not here.
608617 */
609618 extraOptions ?: Record < string , string > | undefined ;
610619}
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ export const ConnectionType = {
2525 TERADATA : 'TERADATA' ,
2626 HTTP : 'HTTP' ,
2727 POWER_BI : 'POWER_BI' ,
28+ DYNAMICS365 : 'DYNAMICS365' ,
2829 CONFLUENCE : 'CONFLUENCE' ,
2930 META_MARKETING : 'META_MARKETING' ,
3031 HUBSPOT : 'HUBSPOT' ,
You can’t perform that action at this time.
0 commit comments