Skip to content

Commit 2827ae7

Browse files
Update SDK API to 0cb9682ba45c67139abe4a8a182efd4d8812cef2 (#214)
This PR updates the SDK to the latest API changes. NO_CHANGELOG=true Co-authored-by: databricks-ci-ghec-2[bot] <184307802+databricks-ci-ghec-2[bot]@users.noreply.github.com>
1 parent b7d885c commit 2827ae7

3 files changed

Lines changed: 15 additions & 5 deletions

File tree

packages/database/src/v1/model.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

packages/features/src/v1/model.ts

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff 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
}

packages/uc/connections/src/v1/model.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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',

0 commit comments

Comments
 (0)