@databricks/sdk-uc-onlinetables 0.34.0 → 0.35.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.
@@ -1,253 +1,247 @@
1
- import { Temporal } from '@js-temporal/polyfill';
2
- import { z } from 'zod';
1
+ import { Temporal } from "@js-temporal/polyfill";
2
+ import { z } from "zod";
3
+
4
+ //#region src/v1/model.d.ts
3
5
  /** The state of an online table. */
4
- export declare const OnlineTableState: {
5
- /** The default state. It should not be reported by any online tables. */
6
- readonly ONLINE_TABLE_STATE_UNSPECIFIED: "ONLINE_TABLE_STATE_UNSPECIFIED";
7
- /**
8
- * The online table has just been created and resources are being provisioned. This is also the
9
- * catch-all state if there is not a more suitable state to report for the online table.
10
- */
11
- readonly PROVISIONING: "PROVISIONING";
12
- /** The online table is provisioning resources for the data synchronization pipeline. */
13
- readonly PROVISIONING_PIPELINE_RESOURCES: "PROVISIONING_PIPELINE_RESOURCES";
14
- /** The online table is executing the initial data synchronization. */
15
- readonly PROVISIONING_INITIAL_SNAPSHOT: "PROVISIONING_INITIAL_SNAPSHOT";
16
- /** The online table is ready to serve data. */
17
- readonly ONLINE: "ONLINE";
18
- /**
19
- * The online table is ready to serve data and is continuously updating. Only shown for online
20
- * tables using the "Continuous" sync mode.
21
- */
22
- readonly ONLINE_CONTINUOUS_UPDATE: "ONLINE_CONTINUOUS_UPDATE";
23
- /**
24
- * The online table is ready to serve data and an active update is in progress. Only shown for
25
- * online tables using the "Triggered" sync mode.
26
- */
27
- readonly ONLINE_TRIGGERED_UPDATE: "ONLINE_TRIGGERED_UPDATE";
28
- /**
29
- * The online table is ready to serve data and there are no active updates. Only shown for online
30
- * tables using the "Triggered" sync mode.
31
- */
32
- readonly ONLINE_NO_PENDING_UPDATE: "ONLINE_NO_PENDING_UPDATE";
33
- /** The online table has encountered an internal error and is not available for serving. */
34
- readonly OFFLINE: "OFFLINE";
35
- /**
36
- * The online table is not available for serving because the data synchronization pipeline has
37
- * failed. Please review the pipeline event logs to troubleshoot.
38
- */
39
- readonly OFFLINE_FAILED: "OFFLINE_FAILED";
40
- /**
41
- * The data synchronization pipeline has encountered an error but the online table is still
42
- * available for serving (potentially stale) data. Please review the pipeline event logs to
43
- * troubleshoot.
44
- */
45
- readonly ONLINE_PIPELINE_FAILED: "ONLINE_PIPELINE_FAILED";
46
- /**
47
- * The online table is available for serving, and is provisioning resources for a newly started
48
- * data synchronization pipeline.
49
- */
50
- readonly ONLINE_UPDATING_PIPELINE_RESOURCES: "ONLINE_UPDATING_PIPELINE_RESOURCES";
6
+ declare const OnlineTableState: {
7
+ /** The default state. It should not be reported by any online tables. */readonly ONLINE_TABLE_STATE_UNSPECIFIED: "ONLINE_TABLE_STATE_UNSPECIFIED";
8
+ /**
9
+ * The online table has just been created and resources are being provisioned. This is also the
10
+ * catch-all state if there is not a more suitable state to report for the online table.
11
+ */
12
+ readonly PROVISIONING: "PROVISIONING"; /** The online table is provisioning resources for the data synchronization pipeline. */
13
+ readonly PROVISIONING_PIPELINE_RESOURCES: "PROVISIONING_PIPELINE_RESOURCES"; /** The online table is executing the initial data synchronization. */
14
+ readonly PROVISIONING_INITIAL_SNAPSHOT: "PROVISIONING_INITIAL_SNAPSHOT"; /** The online table is ready to serve data. */
15
+ readonly ONLINE: "ONLINE";
16
+ /**
17
+ * The online table is ready to serve data and is continuously updating. Only shown for online
18
+ * tables using the "Continuous" sync mode.
19
+ */
20
+ readonly ONLINE_CONTINUOUS_UPDATE: "ONLINE_CONTINUOUS_UPDATE";
21
+ /**
22
+ * The online table is ready to serve data and an active update is in progress. Only shown for
23
+ * online tables using the "Triggered" sync mode.
24
+ */
25
+ readonly ONLINE_TRIGGERED_UPDATE: "ONLINE_TRIGGERED_UPDATE";
26
+ /**
27
+ * The online table is ready to serve data and there are no active updates. Only shown for online
28
+ * tables using the "Triggered" sync mode.
29
+ */
30
+ readonly ONLINE_NO_PENDING_UPDATE: "ONLINE_NO_PENDING_UPDATE"; /** The online table has encountered an internal error and is not available for serving. */
31
+ readonly OFFLINE: "OFFLINE";
32
+ /**
33
+ * The online table is not available for serving because the data synchronization pipeline has
34
+ * failed. Please review the pipeline event logs to troubleshoot.
35
+ */
36
+ readonly OFFLINE_FAILED: "OFFLINE_FAILED";
37
+ /**
38
+ * The data synchronization pipeline has encountered an error but the online table is still
39
+ * available for serving (potentially stale) data. Please review the pipeline event logs to
40
+ * troubleshoot.
41
+ */
42
+ readonly ONLINE_PIPELINE_FAILED: "ONLINE_PIPELINE_FAILED";
43
+ /**
44
+ * The online table is available for serving, and is provisioning resources for a newly started
45
+ * data synchronization pipeline.
46
+ */
47
+ readonly ONLINE_UPDATING_PIPELINE_RESOURCES: "ONLINE_UPDATING_PIPELINE_RESOURCES";
51
48
  };
52
- export type OnlineTableState = (typeof OnlineTableState)[keyof typeof OnlineTableState] | (string & {});
53
- export declare const ProvisioningInfo_State: {
54
- readonly STATE_UNSPECIFIED: "STATE_UNSPECIFIED";
55
- readonly PROVISIONING: "PROVISIONING";
56
- readonly ACTIVE: "ACTIVE";
57
- readonly FAILED: "FAILED";
58
- readonly DELETING: "DELETING";
59
- readonly UPDATING: "UPDATING";
60
- readonly DEGRADED: "DEGRADED";
49
+ type OnlineTableState = (typeof OnlineTableState)[keyof typeof OnlineTableState] | (string & {});
50
+ declare const ProvisioningInfo_State: {
51
+ readonly STATE_UNSPECIFIED: "STATE_UNSPECIFIED";
52
+ readonly PROVISIONING: "PROVISIONING";
53
+ readonly ACTIVE: "ACTIVE";
54
+ readonly FAILED: "FAILED";
55
+ readonly DELETING: "DELETING";
56
+ readonly UPDATING: "UPDATING";
57
+ readonly DEGRADED: "DEGRADED";
61
58
  };
62
- export type ProvisioningInfo_State = (typeof ProvisioningInfo_State)[keyof typeof ProvisioningInfo_State] | (string & {});
59
+ type ProvisioningInfo_State = (typeof ProvisioningInfo_State)[keyof typeof ProvisioningInfo_State] | (string & {});
63
60
  /**
64
61
  * Detailed status of an online table. Shown if the online table is in the ONLINE_CONTINUOUS_UPDATE
65
62
  * or the ONLINE_UPDATING_PIPELINE_RESOURCES state.
66
63
  */
67
- export interface ContinuousUpdateStatus {
68
- /**
69
- * The last source table Delta version that was synced to the online table. Note that this Delta
70
- * version may not be completely synced to the online table yet.
71
- */
72
- lastProcessedCommitVersion?: bigint | undefined;
73
- /**
74
- * The timestamp of the last time any data was synchronized from the source table to the online
75
- * table.
76
- */
77
- timestamp?: Temporal.Instant | undefined;
78
- /** Progress of the initial data synchronization. */
79
- initialPipelineSyncProgress?: PipelineProgress | undefined;
64
+ interface ContinuousUpdateStatus {
65
+ /**
66
+ * The last source table Delta version that was synced to the online table. Note that this Delta
67
+ * version may not be completely synced to the online table yet.
68
+ */
69
+ lastProcessedCommitVersion?: bigint | undefined;
70
+ /**
71
+ * The timestamp of the last time any data was synchronized from the source table to the online
72
+ * table.
73
+ */
74
+ timestamp?: Temporal.Instant | undefined;
75
+ /** Progress of the initial data synchronization. */
76
+ initialPipelineSyncProgress?: PipelineProgress | undefined;
80
77
  }
81
78
  /** Create an online table */
82
- export interface CreateOnlineTableRequest {
83
- /** Specification of the online table to be created. */
84
- table?: OnlineTable | undefined;
79
+ interface CreateOnlineTableRequest {
80
+ /** Specification of the online table to be created. */
81
+ table?: OnlineTable | undefined;
85
82
  }
86
83
  /** Delete an online table. */
87
- export interface DeleteOnlineTableRequest {
88
- /** Full three-part (catalog, schema, table) name of the table. */
89
- name?: string | undefined;
84
+ interface DeleteOnlineTableRequest {
85
+ /** Full three-part (catalog, schema, table) name of the table. */
86
+ name?: string | undefined;
90
87
  }
91
88
  /**
92
89
  * Detailed status of an online table. Shown if the online table is in the OFFLINE_FAILED or the
93
90
  * ONLINE_PIPELINE_FAILED state.
94
91
  */
95
- export interface FailedStatus {
96
- /**
97
- * The last source table Delta version that was synced to the online table. Note that this Delta
98
- * version may only be partially synced to the online table. Only populated if the table is still
99
- * online and available for serving.
100
- */
101
- lastProcessedCommitVersion?: bigint | undefined;
102
- /**
103
- * The timestamp of the last time any data was synchronized from the source table to the online
104
- * table. Only populated if the table is still online and available for serving.
105
- */
106
- timestamp?: Temporal.Instant | undefined;
92
+ interface FailedStatus {
93
+ /**
94
+ * The last source table Delta version that was synced to the online table. Note that this Delta
95
+ * version may only be partially synced to the online table. Only populated if the table is still
96
+ * online and available for serving.
97
+ */
98
+ lastProcessedCommitVersion?: bigint | undefined;
99
+ /**
100
+ * The timestamp of the last time any data was synchronized from the source table to the online
101
+ * table. Only populated if the table is still online and available for serving.
102
+ */
103
+ timestamp?: Temporal.Instant | undefined;
107
104
  }
108
105
  /** Get information about an online table. */
109
- export interface GetOnlineTableRequest {
110
- /** Full three-part (catalog, schema, table) name of the table. */
111
- name?: string | undefined;
106
+ interface GetOnlineTableRequest {
107
+ /** Full three-part (catalog, schema, table) name of the table. */
108
+ name?: string | undefined;
112
109
  }
113
110
  /** Online Table information. */
114
- export interface OnlineTable {
115
- /** Full three-part (catalog, schema, table) name of the table. */
116
- name?: string | undefined;
117
- /** Specification of the online table. */
118
- spec?: OnlineTableSpec | undefined;
119
- /** Online Table data synchronization status */
120
- status?: OnlineTableStatus | undefined;
121
- /** Data serving REST API URL for this table */
122
- tableServingUrl?: string | undefined;
123
- /**
124
- * The provisioning state of the online table entity in Unity Catalog. This is distinct from the
125
- * state of the data synchronization pipeline (i.e. the table may be in "ACTIVE" but the pipeline
126
- * may be in "PROVISIONING" as it runs asynchronously).
127
- */
128
- unityCatalogProvisioningState?: ProvisioningInfo_State | undefined;
111
+ interface OnlineTable {
112
+ /** Full three-part (catalog, schema, table) name of the table. */
113
+ name?: string | undefined;
114
+ /** Specification of the online table. */
115
+ spec?: OnlineTableSpec | undefined;
116
+ /** Online Table data synchronization status */
117
+ status?: OnlineTableStatus | undefined;
118
+ /** Data serving REST API URL for this table */
119
+ tableServingUrl?: string | undefined;
120
+ /**
121
+ * The provisioning state of the online table entity in Unity Catalog. This is distinct from the
122
+ * state of the data synchronization pipeline (i.e. the table may be in "ACTIVE" but the pipeline
123
+ * may be in "PROVISIONING" as it runs asynchronously).
124
+ */
125
+ unityCatalogProvisioningState?: ProvisioningInfo_State | undefined;
129
126
  }
130
127
  /** Specification of an online table. */
131
- export interface OnlineTableSpec {
132
- /** Exactly one type of scheduling policy should be applied. */
133
- schedulingPolicy?: {
134
- $case: 'runContinuously';
135
- /** Pipeline runs continuously after generating the initial data. */
136
- runContinuously: OnlineTableSpec_ContinuousSchedulingPolicy;
137
- } | {
138
- $case: 'runTriggered';
139
- /** Pipeline stops after generating the initial data and can be triggered later (manually, through a cron job or through data triggers) */
140
- runTriggered: OnlineTableSpec_TriggeredSchedulingPolicy;
141
- } | undefined;
142
- /** Three-part (catalog, schema, table) name of the source Delta table. */
143
- sourceTableFullName?: string | undefined;
144
- /** Primary Key columns to be used for data insert/update in the destination. */
145
- primaryKeyColumns?: string[] | undefined;
146
- /** Time series key to deduplicate (tie-break) rows with the same primary key. */
147
- timeseriesKey?: string | undefined;
148
- /**
149
- * Whether to create a full-copy pipeline -- a pipeline that stops after creates a full copy of
150
- * the source table upon initialization and does not process any change data feeds (CDFs)
151
- * afterwards. The pipeline can still be manually triggered afterwards, but it always perform a
152
- * full copy of the source table and there are no incremental updates. This mode is useful for
153
- * syncing views or tables without CDFs to online tables.
154
- * Note that the full-copy pipeline only supports "triggered" scheduling policy.
155
- */
156
- performFullCopy?: boolean | undefined;
157
- /** ID of the associated pipeline. Generated by the server - cannot be set by the caller. */
158
- pipelineId?: string | undefined;
159
- }
160
- export interface OnlineTableSpec_ContinuousSchedulingPolicy {
161
- }
162
- export interface OnlineTableSpec_TriggeredSchedulingPolicy {
128
+ interface OnlineTableSpec {
129
+ /** Exactly one type of scheduling policy should be applied. */
130
+ schedulingPolicy?: {
131
+ $case: 'runContinuously'; /** Pipeline runs continuously after generating the initial data. */
132
+ runContinuously: OnlineTableSpec_ContinuousSchedulingPolicy;
133
+ } | {
134
+ $case: 'runTriggered'; /** Pipeline stops after generating the initial data and can be triggered later (manually, through a cron job or through data triggers) */
135
+ runTriggered: OnlineTableSpec_TriggeredSchedulingPolicy;
136
+ } | undefined;
137
+ /** Three-part (catalog, schema, table) name of the source Delta table. */
138
+ sourceTableFullName?: string | undefined;
139
+ /** Primary Key columns to be used for data insert/update in the destination. */
140
+ primaryKeyColumns?: string[] | undefined;
141
+ /** Time series key to deduplicate (tie-break) rows with the same primary key. */
142
+ timeseriesKey?: string | undefined;
143
+ /**
144
+ * Whether to create a full-copy pipeline -- a pipeline that stops after creates a full copy of
145
+ * the source table upon initialization and does not process any change data feeds (CDFs)
146
+ * afterwards. The pipeline can still be manually triggered afterwards, but it always perform a
147
+ * full copy of the source table and there are no incremental updates. This mode is useful for
148
+ * syncing views or tables without CDFs to online tables.
149
+ * Note that the full-copy pipeline only supports "triggered" scheduling policy.
150
+ */
151
+ performFullCopy?: boolean | undefined;
152
+ /** ID of the associated pipeline. Generated by the server - cannot be set by the caller. */
153
+ pipelineId?: string | undefined;
163
154
  }
155
+ interface OnlineTableSpec_ContinuousSchedulingPolicy {}
156
+ interface OnlineTableSpec_TriggeredSchedulingPolicy {}
164
157
  /** Status of an online table. */
165
- export interface OnlineTableStatus {
166
- /** The state of the online table. */
167
- detailedState?: OnlineTableState | undefined;
168
- /** A text description of the current state of the online table. */
169
- message?: string | undefined;
170
- /** The detailed status based on the online table state. */
171
- detailedStatus?: {
172
- $case: 'provisioningStatus';
173
- provisioningStatus: ProvisioningStatus;
174
- } | {
175
- $case: 'continuousUpdateStatus';
176
- continuousUpdateStatus: ContinuousUpdateStatus;
177
- } | {
178
- $case: 'triggeredUpdateStatus';
179
- triggeredUpdateStatus: TriggeredUpdateStatus;
180
- } | {
181
- $case: 'failedStatus';
182
- failedStatus: FailedStatus;
183
- } | undefined;
158
+ interface OnlineTableStatus {
159
+ /** The state of the online table. */
160
+ detailedState?: OnlineTableState | undefined;
161
+ /** A text description of the current state of the online table. */
162
+ message?: string | undefined;
163
+ /** The detailed status based on the online table state. */
164
+ detailedStatus?: {
165
+ $case: 'provisioningStatus';
166
+ provisioningStatus: ProvisioningStatus;
167
+ } | {
168
+ $case: 'continuousUpdateStatus';
169
+ continuousUpdateStatus: ContinuousUpdateStatus;
170
+ } | {
171
+ $case: 'triggeredUpdateStatus';
172
+ triggeredUpdateStatus: TriggeredUpdateStatus;
173
+ } | {
174
+ $case: 'failedStatus';
175
+ failedStatus: FailedStatus;
176
+ } | undefined;
184
177
  }
185
178
  /** Progress information of the Online Table data synchronization pipeline. */
186
- export interface PipelineProgress {
187
- /**
188
- * The source table Delta version that was last processed by the pipeline. The pipeline may not
189
- * have completely processed this version yet.
190
- */
191
- latestVersionCurrentlyProcessing?: bigint | undefined;
192
- /** The number of rows that have been synced in this update. */
193
- syncedRowCount?: bigint | undefined;
194
- /** The total number of rows that need to be synced in this update. This number may be an estimate. */
195
- totalRowCount?: bigint | undefined;
196
- /** The completion ratio of this update. This is a number between 0 and 1. */
197
- syncProgressCompletion?: number | undefined;
198
- /** The estimated time remaining to complete this update in seconds. */
199
- estimatedCompletionTimeSeconds?: number | undefined;
179
+ interface PipelineProgress {
180
+ /**
181
+ * The source table Delta version that was last processed by the pipeline. The pipeline may not
182
+ * have completely processed this version yet.
183
+ */
184
+ latestVersionCurrentlyProcessing?: bigint | undefined;
185
+ /** The number of rows that have been synced in this update. */
186
+ syncedRowCount?: bigint | undefined;
187
+ /** The total number of rows that need to be synced in this update. This number may be an estimate. */
188
+ totalRowCount?: bigint | undefined;
189
+ /** The completion ratio of this update. This is a number between 0 and 1. */
190
+ syncProgressCompletion?: number | undefined;
191
+ /** The estimated time remaining to complete this update in seconds. */
192
+ estimatedCompletionTimeSeconds?: number | undefined;
200
193
  }
201
194
  /** Status of an asynchronously provisioned resource. */
202
- export interface ProvisioningInfo {
203
- }
195
+ interface ProvisioningInfo {}
204
196
  /**
205
197
  * Detailed status of an online table. Shown if the online table is in the
206
198
  * PROVISIONING_PIPELINE_RESOURCES or the PROVISIONING_INITIAL_SNAPSHOT state.
207
199
  */
208
- export interface ProvisioningStatus {
209
- /**
210
- * Details about initial data synchronization. Only populated when in the
211
- * PROVISIONING_INITIAL_SNAPSHOT state.
212
- */
213
- initialPipelineSyncProgress?: PipelineProgress | undefined;
200
+ interface ProvisioningStatus {
201
+ /**
202
+ * Details about initial data synchronization. Only populated when in the
203
+ * PROVISIONING_INITIAL_SNAPSHOT state.
204
+ */
205
+ initialPipelineSyncProgress?: PipelineProgress | undefined;
214
206
  }
215
207
  /**
216
208
  * Detailed status of an online table. Shown if the online table is in the ONLINE_TRIGGERED_UPDATE
217
209
  * or the ONLINE_NO_PENDING_UPDATE state.
218
210
  */
219
- export interface TriggeredUpdateStatus {
220
- /**
221
- * The last source table Delta version that was synced to the online table. Note that this Delta
222
- * version may not be completely synced to the online table yet.
223
- */
224
- lastProcessedCommitVersion?: bigint | undefined;
225
- /**
226
- * The timestamp of the last time any data was synchronized from the source table to the online
227
- * table.
228
- */
229
- timestamp?: Temporal.Instant | undefined;
230
- /** Progress of the active data synchronization pipeline. */
231
- triggeredUpdateProgress?: PipelineProgress | undefined;
211
+ interface TriggeredUpdateStatus {
212
+ /**
213
+ * The last source table Delta version that was synced to the online table. Note that this Delta
214
+ * version may not be completely synced to the online table yet.
215
+ */
216
+ lastProcessedCommitVersion?: bigint | undefined;
217
+ /**
218
+ * The timestamp of the last time any data was synchronized from the source table to the online
219
+ * table.
220
+ */
221
+ timestamp?: Temporal.Instant | undefined;
222
+ /** Progress of the active data synchronization pipeline. */
223
+ triggeredUpdateProgress?: PipelineProgress | undefined;
232
224
  }
233
- export declare const unmarshalContinuousUpdateStatusSchema: z.ZodType<ContinuousUpdateStatus>;
234
- export declare const unmarshalFailedStatusSchema: z.ZodType<FailedStatus>;
235
- export declare const unmarshalOnlineTableSchema: z.ZodType<OnlineTable>;
236
- export declare const unmarshalOnlineTableSpecSchema: z.ZodType<OnlineTableSpec>;
237
- export declare const unmarshalOnlineTableSpec_ContinuousSchedulingPolicySchema: z.ZodType<OnlineTableSpec_ContinuousSchedulingPolicy>;
238
- export declare const unmarshalOnlineTableSpec_TriggeredSchedulingPolicySchema: z.ZodType<OnlineTableSpec_TriggeredSchedulingPolicy>;
239
- export declare const unmarshalOnlineTableStatusSchema: z.ZodType<OnlineTableStatus>;
240
- export declare const unmarshalPipelineProgressSchema: z.ZodType<PipelineProgress>;
241
- export declare const unmarshalProvisioningStatusSchema: z.ZodType<ProvisioningStatus>;
242
- export declare const unmarshalTriggeredUpdateStatusSchema: z.ZodType<TriggeredUpdateStatus>;
243
- export declare const marshalContinuousUpdateStatusSchema: z.ZodType;
244
- export declare const marshalFailedStatusSchema: z.ZodType;
245
- export declare const marshalOnlineTableSchema: z.ZodType;
246
- export declare const marshalOnlineTableSpecSchema: z.ZodType;
247
- export declare const marshalOnlineTableSpec_ContinuousSchedulingPolicySchema: z.ZodType;
248
- export declare const marshalOnlineTableSpec_TriggeredSchedulingPolicySchema: z.ZodType;
249
- export declare const marshalOnlineTableStatusSchema: z.ZodType;
250
- export declare const marshalPipelineProgressSchema: z.ZodType;
251
- export declare const marshalProvisioningStatusSchema: z.ZodType;
252
- export declare const marshalTriggeredUpdateStatusSchema: z.ZodType;
225
+ declare const unmarshalContinuousUpdateStatusSchema: z.ZodType<ContinuousUpdateStatus>;
226
+ declare const unmarshalFailedStatusSchema: z.ZodType<FailedStatus>;
227
+ declare const unmarshalOnlineTableSchema: z.ZodType<OnlineTable>;
228
+ declare const unmarshalOnlineTableSpecSchema: z.ZodType<OnlineTableSpec>;
229
+ declare const unmarshalOnlineTableSpec_ContinuousSchedulingPolicySchema: z.ZodType<OnlineTableSpec_ContinuousSchedulingPolicy>;
230
+ declare const unmarshalOnlineTableSpec_TriggeredSchedulingPolicySchema: z.ZodType<OnlineTableSpec_TriggeredSchedulingPolicy>;
231
+ declare const unmarshalOnlineTableStatusSchema: z.ZodType<OnlineTableStatus>;
232
+ declare const unmarshalPipelineProgressSchema: z.ZodType<PipelineProgress>;
233
+ declare const unmarshalProvisioningStatusSchema: z.ZodType<ProvisioningStatus>;
234
+ declare const unmarshalTriggeredUpdateStatusSchema: z.ZodType<TriggeredUpdateStatus>;
235
+ declare const marshalContinuousUpdateStatusSchema: z.ZodType;
236
+ declare const marshalFailedStatusSchema: z.ZodType;
237
+ declare const marshalOnlineTableSchema: z.ZodType;
238
+ declare const marshalOnlineTableSpecSchema: z.ZodType;
239
+ declare const marshalOnlineTableSpec_ContinuousSchedulingPolicySchema: z.ZodType;
240
+ declare const marshalOnlineTableSpec_TriggeredSchedulingPolicySchema: z.ZodType;
241
+ declare const marshalOnlineTableStatusSchema: z.ZodType;
242
+ declare const marshalPipelineProgressSchema: z.ZodType;
243
+ declare const marshalProvisioningStatusSchema: z.ZodType;
244
+ declare const marshalTriggeredUpdateStatusSchema: z.ZodType;
245
+ //#endregion
246
+ export { ContinuousUpdateStatus, CreateOnlineTableRequest, DeleteOnlineTableRequest, FailedStatus, GetOnlineTableRequest, OnlineTable, OnlineTableSpec, OnlineTableSpec_ContinuousSchedulingPolicy, OnlineTableSpec_TriggeredSchedulingPolicy, OnlineTableState, OnlineTableStatus, PipelineProgress, ProvisioningInfo, ProvisioningInfo_State, ProvisioningStatus, TriggeredUpdateStatus, marshalContinuousUpdateStatusSchema, marshalFailedStatusSchema, marshalOnlineTableSchema, marshalOnlineTableSpecSchema, marshalOnlineTableSpec_ContinuousSchedulingPolicySchema, marshalOnlineTableSpec_TriggeredSchedulingPolicySchema, marshalOnlineTableStatusSchema, marshalPipelineProgressSchema, marshalProvisioningStatusSchema, marshalTriggeredUpdateStatusSchema, unmarshalContinuousUpdateStatusSchema, unmarshalFailedStatusSchema, unmarshalOnlineTableSchema, unmarshalOnlineTableSpecSchema, unmarshalOnlineTableSpec_ContinuousSchedulingPolicySchema, unmarshalOnlineTableSpec_TriggeredSchedulingPolicySchema, unmarshalOnlineTableStatusSchema, unmarshalPipelineProgressSchema, unmarshalProvisioningStatusSchema, unmarshalTriggeredUpdateStatusSchema };
253
247
  //# sourceMappingURL=model.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"model.d.ts","sourceRoot":"","sources":["../../src/v1/model.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"model.d.ts","names":[],"sources":["../../src/v1/model.ts"],"mappings":"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"}