@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.
- package/dist/package.js +7 -0
- package/dist/package.js.map +1 -0
- package/dist/v1/client.d.ts +39 -35
- package/dist/v1/client.d.ts.map +1 -1
- package/dist/v1/client.js +139 -176
- package/dist/v1/client.js.map +1 -1
- package/dist/v1/index.d.ts +3 -7
- package/dist/v1/index.js +4 -7
- package/dist/v1/model.d.ts +208 -214
- package/dist/v1/model.d.ts.map +1 -1
- package/dist/v1/model.js +233 -392
- package/dist/v1/model.js.map +1 -1
- package/dist/v1/transport.d.ts +21 -17
- package/dist/v1/transport.d.ts.map +1 -1
- package/dist/v1/transport.js +60 -69
- package/dist/v1/transport.js.map +1 -1
- package/dist/v1/utils.d.ts +21 -18
- package/dist/v1/utils.d.ts.map +1 -1
- package/dist/v1/utils.js +90 -118
- package/dist/v1/utils.js.map +1 -1
- package/package.json +5 -5
- package/dist/v1/index.d.ts.map +0 -1
- package/dist/v1/index.js.map +0 -1
package/dist/v1/model.d.ts
CHANGED
|
@@ -1,253 +1,247 @@
|
|
|
1
|
-
import { Temporal } from
|
|
2
|
-
import { z } from
|
|
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
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
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
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
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
|
-
|
|
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
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
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
|
-
|
|
83
|
-
|
|
84
|
-
|
|
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
|
-
|
|
88
|
-
|
|
89
|
-
|
|
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
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
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
|
-
|
|
110
|
-
|
|
111
|
-
|
|
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
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
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
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
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
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
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
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
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
|
-
|
|
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
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
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
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
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
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
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
|
package/dist/v1/model.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model.d.ts","
|
|
1
|
+
{"version":3,"file":"model.d.ts","names":[],"sources":["../../src/v1/model.ts"],"mappings":";;;;;cAOa,gBAAA;EAAA;;;;;;;;;;;;;;EAgDD;;;;EAAA;EAKC;;;;EAAA;;;;;;;;AAUb;;;;;EAQiB;;;;EAAA;;KAvBL,gBAAA,WACA,gBAAA,eAA+B,gBAAA;AAAA,cAI9B,sBAAA;EAAA;;;;;;;;KAUD,sBAAA,WACA,sBAAA,eAAqC,sBAAA;AA6BjD;;;;AAAA,UAtBiB,sBAAA;EA+BA;;;;EA1Bf,0BAAA;EAqCA;;;;EAhCA,SAAA,GAAY,QAAA,CAAS,OAAA;EAoCN;EAlCf,2BAAA,GAA8B,gBAAA;AAAA;;UAIf,wBAAA;EAoCA;EAlCf,KAAA,GAAQ,WAAA;AAAA;;UAIO,wBAAA;EA4CiB;EA1ChC,IAAA;AAAA;;;;;UAOe,YAAA;EA6Bf;;;;;EAvBA,0BAAA;EAiC8B;;;;EA5B9B,SAAA,GAAY,QAAA,CAAS,OAAA;AAAA;;UAIN,qBAAA;EAmCT;EAjCN,IAAA;AAAA;;UAIe,WAAA;EA8Cf;EA5CA,IAAA;EA8CU;EA5CV,IAAA,GAAO,eAAA;EAgDQ;EA9Cf,MAAA,GAAS,iBAAA;;EAET,eAAA;EA4CyD;AAG3D;;;;EAzCE,6BAAA,GAAgC,sBAAA;AAAA;;UAIjB,eAAA;EA0CC;EAxChB,gBAAA;IAEM,KAAA,qBAkDuB;IAhDvB,eAAA,EAAiB,0CAAA;EAAA;IAGjB,KAAA,kBAiCN;IA/BM,YAAA,EAAc,yCAAA;EAAA;EAmCpB;EA/BA,mBAAA;EAgCkC;EA9BlC,iBAAA;EAgCM;EA9BN,aAAA;EA+B8B;;;;;;;;EAtB9B,eAAA;EAiCe;EA/Bf,UAAA;AAAA;AAAA,UAIe,0CAAA;AAAA,UAGA,yCAAA;;UAGA,iBAAA;EAkCe;EAhC9B,aAAA,GAAgB,gBAAA;EAqCD;EAnCf,OAAA;;EAEA,cAAA;IACK,KAAA;IAA6B,kBAAA,EAAoB,kBAAA;EAAA;IAEhD,KAAA;IACA,sBAAA,EAAwB,sBAAA;EAAA;IAGxB,KAAA;IACA,qBAAA,EAAuB,qBAAA;EAAA;IAExB,KAAA;IAAuB,YAAA,EAAc,YAAA;EAAA;AAAA;;UAK3B,gBAAA;EAgDW;;;AAG5B;EA9CE,gCAAA;;EAEA,cAAA;EA4CkD;EA1ClD,aAAA;EA0C4D;EAxC5D,sBAAA;EAwCkF;EAtClF,8BAAA;AAAA;;UAKe,gBAAA;;;;;UAMA,kBAAA;EA8EZ;;;;EAzEH,2BAAA,GAA8B,gBAAA;AAAA;;;AA2EhC;;UApEiB,qBAAA;EAoEqC;;;;EA/DpD,0BAAA;EA+DoE;AAgCtE;;;EA1FE,SAAA,GAAY,QAAA,CAAS,OAAA;EA0FiD;EAxFtE,uBAAA,GAA0B,gBAAA;AAAA;AAAA,cAGf,qCAAA,EAAuC,CAAA,CAAE,OAAA,CAAQ,sBAAA;AAAA,cAqBjD,2BAAA,EAA6B,CAAA,CAAE,OAAA,CAAQ,YAAA;AAAA,cAgBvC,0BAAA,EAA4B,CAAA,CAAE,OAAA,CAAQ,WAAA;AAAA,cAgBtC,8BAAA,EAAgC,CAAA,CAAE,OAAA,CAAQ,eAAA;AAAA,cAgC1C,yDAAA,EAA2D,CAAA,CAAE,OAAA,CAAQ,0CAAA;AAAA,cAIrE,wDAAA,EAA0D,CAAA,CAAE,OAAA,CAAQ,yCAAA;AAAA,cAGpE,gCAAA,EAAkC,CAAA,CAAE,OAAA,CAAQ,iBAAA;AAAA,cAuC5C,+BAAA,EAAiC,CAAA,CAAE,OAAA,CAAQ,gBAAA;AAAA,cAyB3C,iCAAA,EAAmC,CAAA,CAAE,OAAA,CAAQ,kBAAA;AAAA,cAW7C,oCAAA,EAAsC,CAAA,CAAE,OAAA,CAAQ,qBAAA;AAAA,cAqBhD,mCAAA,EAAqC,CAAA,CAAE,OAAA;AAAA,cAiBvC,yBAAA,EAA2B,CAAA,CAAE,OAAA;AAAA,cAa7B,wBAAA,EAA0B,CAAA,CAAE,OAAA;AAAA,cAgB5B,4BAAA,EAA8B,CAAA,CAAE,OAAA;AAAA,cAuChC,uDAAA,EAAyD,CAAA,CAAE,OAAA;AAAA,cAI3D,sDAAA,EAAwD,CAAA,CAAE,OAAA;AAAA,cAG1D,8BAAA,EAAgC,CAAA,CAAE,OAAA;AAAA,cA8ClC,6BAAA,EAA+B,CAAA,CAAE,OAAA;AAAA,cAgBjC,+BAAA,EAAiC,CAAA,CAAE,OAAA;AAAA,cAUnC,kCAAA,EAAoC,CAAA,CAAE,OAAA"}
|