@databricks/sdk-uc-externallocations 0.0.0-dev → 0.1.0-dev.2

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.
@@ -0,0 +1,304 @@
1
+ import { z } from 'zod';
2
+ export declare enum IsolationMode {
3
+ ISOLATION_MODE_UNSPECIFIED = "ISOLATION_MODE_UNSPECIFIED",
4
+ ISOLATION_MODE_OPEN = "ISOLATION_MODE_OPEN",
5
+ ISOLATION_MODE_ISOLATED = "ISOLATION_MODE_ISOLATED"
6
+ }
7
+ export declare enum SseEncryptionAlgorithm {
8
+ SSE_ENCRYPTION_ALGORITHM_UNSPECIFIED = "SSE_ENCRYPTION_ALGORITHM_UNSPECIFIED",
9
+ AWS_SSE_S3 = "AWS_SSE_S3",
10
+ AWS_SSE_KMS = "AWS_SSE_KMS"
11
+ }
12
+ export interface AwsSqsQueue {
13
+ /**
14
+ * The AQS queue url in the format https://sqs.{region}.amazonaws.com/{account id}/{queue name}.
15
+ * Only required for provided_sqs.
16
+ */
17
+ queueUrl?: string | undefined;
18
+ /** Unique identifier included in the name of file events managed cloud resources. */
19
+ managedResourceId?: string | undefined;
20
+ }
21
+ export interface AzureQueueStorage {
22
+ /**
23
+ * The AQS queue url in the format https://{storage account}.queue.core.windows.net/{queue name}
24
+ * Only required for provided_aqs.
25
+ */
26
+ queueUrl?: string | undefined;
27
+ /**
28
+ * Optional subscription id for the queue, event grid subscription, and external location storage
29
+ * account.
30
+ * Required for locations with a service principal storage credential
31
+ */
32
+ subscriptionId?: string | undefined;
33
+ /**
34
+ * Optional resource group for the queue, event grid subscription, and external location storage
35
+ * account.
36
+ * Only required for locations with a service principal storage credential
37
+ */
38
+ resourceGroup?: string | undefined;
39
+ /** Unique identifier included in the name of file events managed cloud resources. */
40
+ managedResourceId?: string | undefined;
41
+ }
42
+ export interface CreateExternalLocationRequest {
43
+ /** Skips validation of the storage credential associated with the external location. */
44
+ skipValidation?: boolean | undefined;
45
+ /** Name of the external location. */
46
+ name?: string | undefined;
47
+ /** Path URL of the external location. */
48
+ url?: string | undefined;
49
+ /** Name of the storage credential used with this location. */
50
+ credentialName?: string | undefined;
51
+ /** Indicates whether the external location is read-only. */
52
+ readOnly?: boolean | undefined;
53
+ /** User-provided free-form text description. */
54
+ comment?: string | undefined;
55
+ /**
56
+ * Whether to enable file events on this external location. Default to `true`. Set to `false` to disable file events.
57
+ * The actual applied value may differ due to server-side defaults; check `effective_enable_file_events` for the effective state.
58
+ */
59
+ enableFileEvents?: boolean | undefined;
60
+ /** File event queue settings. If `enable_file_events` is not `false`, must be defined and have exactly one of the documented properties. */
61
+ fileEventQueue?: FileEventQueue | undefined;
62
+ /** The owner of the external location. */
63
+ owner?: string | undefined;
64
+ encryptionDetails?: EncryptionDetails | undefined;
65
+ /** Unique identifier of metastore hosting the external location. */
66
+ metastoreId?: string | undefined;
67
+ /** Unique ID of the location's storage credential. */
68
+ credentialId?: string | undefined;
69
+ /** Time at which this external location was created, in epoch milliseconds. */
70
+ createdAt?: bigint | undefined;
71
+ /** Username of external location creator. */
72
+ createdBy?: string | undefined;
73
+ /** Time at which external location this was last modified, in epoch milliseconds. */
74
+ updatedAt?: bigint | undefined;
75
+ /** Username of user who last modified the external location. */
76
+ updatedBy?: string | undefined;
77
+ /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */
78
+ browseOnly?: boolean | undefined;
79
+ isolationMode?: IsolationMode | undefined;
80
+ /** Indicates whether fallback mode is enabled for this external location. When fallback mode is enabled, the access to the location falls back to cluster credentials if UC credentials are not sufficient. */
81
+ fallback?: boolean | undefined;
82
+ /** The effective value of `enable_file_events` after applying server-side defaults. */
83
+ effectiveEnableFileEvents?: boolean | undefined;
84
+ /**
85
+ * The effective file event queue configuration after applying server-side defaults.
86
+ * Always populated when a queue is provisioned, regardless of whether the user explicitly
87
+ * set `enable_file_events`. Use this field instead of `file_event_queue` for reading
88
+ * the actual queue state.
89
+ */
90
+ effectiveFileEventQueue?: FileEventQueue | undefined;
91
+ }
92
+ export interface DeleteExternalLocationRequest {
93
+ /** Name of the external location. */
94
+ nameArg?: string | undefined;
95
+ /** Force deletion even if there are dependent external tables or mounts. */
96
+ force?: boolean | undefined;
97
+ }
98
+ export interface DeleteExternalLocationRequest_Response {
99
+ }
100
+ /** Encryption options that apply to clients connecting to cloud storage. */
101
+ export interface EncryptionDetails {
102
+ encryptionDetailsType?: {
103
+ $case: 'sseEncryptionDetails';
104
+ /** Server-Side Encryption properties for clients communicating with AWS s3. */
105
+ sseEncryptionDetails: SseEncryptionDetails;
106
+ } | undefined;
107
+ }
108
+ export interface ExternalLocationInfo {
109
+ /** Name of the external location. */
110
+ name?: string | undefined;
111
+ /** Path URL of the external location. */
112
+ url?: string | undefined;
113
+ /** Name of the storage credential used with this location. */
114
+ credentialName?: string | undefined;
115
+ /** Indicates whether the external location is read-only. */
116
+ readOnly?: boolean | undefined;
117
+ /** User-provided free-form text description. */
118
+ comment?: string | undefined;
119
+ /**
120
+ * Whether to enable file events on this external location. Default to `true`. Set to `false` to disable file events.
121
+ * The actual applied value may differ due to server-side defaults; check `effective_enable_file_events` for the effective state.
122
+ */
123
+ enableFileEvents?: boolean | undefined;
124
+ /** File event queue settings. If `enable_file_events` is not `false`, must be defined and have exactly one of the documented properties. */
125
+ fileEventQueue?: FileEventQueue | undefined;
126
+ /** The owner of the external location. */
127
+ owner?: string | undefined;
128
+ encryptionDetails?: EncryptionDetails | undefined;
129
+ /** Unique identifier of metastore hosting the external location. */
130
+ metastoreId?: string | undefined;
131
+ /** Unique ID of the location's storage credential. */
132
+ credentialId?: string | undefined;
133
+ /** Time at which this external location was created, in epoch milliseconds. */
134
+ createdAt?: bigint | undefined;
135
+ /** Username of external location creator. */
136
+ createdBy?: string | undefined;
137
+ /** Time at which external location this was last modified, in epoch milliseconds. */
138
+ updatedAt?: bigint | undefined;
139
+ /** Username of user who last modified the external location. */
140
+ updatedBy?: string | undefined;
141
+ /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */
142
+ browseOnly?: boolean | undefined;
143
+ isolationMode?: IsolationMode | undefined;
144
+ /** Indicates whether fallback mode is enabled for this external location. When fallback mode is enabled, the access to the location falls back to cluster credentials if UC credentials are not sufficient. */
145
+ fallback?: boolean | undefined;
146
+ /** The effective value of `enable_file_events` after applying server-side defaults. */
147
+ effectiveEnableFileEvents?: boolean | undefined;
148
+ /**
149
+ * The effective file event queue configuration after applying server-side defaults.
150
+ * Always populated when a queue is provisioned, regardless of whether the user explicitly
151
+ * set `enable_file_events`. Use this field instead of `file_event_queue` for reading
152
+ * the actual queue state.
153
+ */
154
+ effectiveFileEventQueue?: FileEventQueue | undefined;
155
+ }
156
+ export interface FileEventQueue {
157
+ provided?: {
158
+ $case: 'providedAqs';
159
+ providedAqs: AzureQueueStorage;
160
+ } | {
161
+ $case: 'providedSqs';
162
+ providedSqs: AwsSqsQueue;
163
+ } | {
164
+ $case: 'providedPubsub';
165
+ providedPubsub: GcpPubsub;
166
+ } | undefined;
167
+ managed?: {
168
+ $case: 'managedAqs';
169
+ managedAqs: AzureQueueStorage;
170
+ } | {
171
+ $case: 'managedSqs';
172
+ managedSqs: AwsSqsQueue;
173
+ } | {
174
+ $case: 'managedPubsub';
175
+ managedPubsub: GcpPubsub;
176
+ } | undefined;
177
+ }
178
+ export interface GcpPubsub {
179
+ /**
180
+ * The Pub/Sub subscription name in the format projects/{project}/subscriptions/{subscription name}.
181
+ * Only required for provided_pubsub.
182
+ */
183
+ subscriptionName?: string | undefined;
184
+ /** Unique identifier included in the name of file events managed cloud resources. */
185
+ managedResourceId?: string | undefined;
186
+ }
187
+ export interface GetExternalLocationRequest {
188
+ /** Name of the external location. */
189
+ nameArg?: string | undefined;
190
+ /** Whether to include external locations in the response for which the principal can only access selective metadata for */
191
+ includeBrowse?: boolean | undefined;
192
+ }
193
+ export interface ListExternalLocationsRequest {
194
+ /** Whether to include external locations in the response for which the principal can only access selective metadata for */
195
+ includeBrowse?: boolean | undefined;
196
+ /**
197
+ * Maximum number of external locations to return.
198
+ * If not set, all the external locations are returned (not recommended).
199
+ * - when set to a value greater than 0, the page length is the minimum of this value and a server configured value;
200
+ * - when set to 0, the page length is set to a server configured value (recommended);
201
+ * - when set to a value less than 0, an invalid parameter error is returned;
202
+ */
203
+ maxResults?: number | undefined;
204
+ /** Opaque pagination token to go to next page based on previous query. */
205
+ pageToken?: string | undefined;
206
+ /**
207
+ * Whether to include external locations not bound to the workspace.
208
+ * Effective only if the user has permission to update the location–workspace binding.
209
+ */
210
+ includeUnbound?: boolean | undefined;
211
+ }
212
+ export interface ListExternalLocationsRequest_Response {
213
+ /** An array of external locations. */
214
+ externalLocations?: ExternalLocationInfo[] | undefined;
215
+ /**
216
+ * Opaque token to retrieve the next page of results. Absent if there are no more pages.
217
+ * __page_token__ should be set to this value for the next request (for the next page of results).
218
+ */
219
+ nextPageToken?: string | undefined;
220
+ }
221
+ /** Server-Side Encryption properties for clients communicating with AWS s3. */
222
+ export interface SseEncryptionDetails {
223
+ /** Sets the value of the 'x-amz-server-side-encryption' header in S3 request. */
224
+ algorithm?: SseEncryptionAlgorithm | undefined;
225
+ /**
226
+ * Optional. The ARN of the SSE-KMS key used with the S3 location, when algorithm = "SSE-KMS".
227
+ * Sets the value of the 'x-amz-server-side-encryption-aws-kms-key-id' header.
228
+ */
229
+ awsKmsKeyArn?: string | undefined;
230
+ }
231
+ export interface UpdateExternalLocationRequest {
232
+ /** Name of the external location. */
233
+ nameArg?: string | undefined;
234
+ /** New name for the external location. */
235
+ newName?: string | undefined;
236
+ /** Force update even if changing url invalidates dependent external tables or mounts. */
237
+ force?: boolean | undefined;
238
+ /** Skips validation of the storage credential associated with the external location. */
239
+ skipValidation?: boolean | undefined;
240
+ /** Name of the external location. */
241
+ name?: string | undefined;
242
+ /** Path URL of the external location. */
243
+ url?: string | undefined;
244
+ /** Name of the storage credential used with this location. */
245
+ credentialName?: string | undefined;
246
+ /** Indicates whether the external location is read-only. */
247
+ readOnly?: boolean | undefined;
248
+ /** User-provided free-form text description. */
249
+ comment?: string | undefined;
250
+ /**
251
+ * Whether to enable file events on this external location. Default to `true`. Set to `false` to disable file events.
252
+ * The actual applied value may differ due to server-side defaults; check `effective_enable_file_events` for the effective state.
253
+ */
254
+ enableFileEvents?: boolean | undefined;
255
+ /** File event queue settings. If `enable_file_events` is not `false`, must be defined and have exactly one of the documented properties. */
256
+ fileEventQueue?: FileEventQueue | undefined;
257
+ /** The owner of the external location. */
258
+ owner?: string | undefined;
259
+ encryptionDetails?: EncryptionDetails | undefined;
260
+ /** Unique identifier of metastore hosting the external location. */
261
+ metastoreId?: string | undefined;
262
+ /** Unique ID of the location's storage credential. */
263
+ credentialId?: string | undefined;
264
+ /** Time at which this external location was created, in epoch milliseconds. */
265
+ createdAt?: bigint | undefined;
266
+ /** Username of external location creator. */
267
+ createdBy?: string | undefined;
268
+ /** Time at which external location this was last modified, in epoch milliseconds. */
269
+ updatedAt?: bigint | undefined;
270
+ /** Username of user who last modified the external location. */
271
+ updatedBy?: string | undefined;
272
+ /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */
273
+ browseOnly?: boolean | undefined;
274
+ isolationMode?: IsolationMode | undefined;
275
+ /** Indicates whether fallback mode is enabled for this external location. When fallback mode is enabled, the access to the location falls back to cluster credentials if UC credentials are not sufficient. */
276
+ fallback?: boolean | undefined;
277
+ /** The effective value of `enable_file_events` after applying server-side defaults. */
278
+ effectiveEnableFileEvents?: boolean | undefined;
279
+ /**
280
+ * The effective file event queue configuration after applying server-side defaults.
281
+ * Always populated when a queue is provisioned, regardless of whether the user explicitly
282
+ * set `enable_file_events`. Use this field instead of `file_event_queue` for reading
283
+ * the actual queue state.
284
+ */
285
+ effectiveFileEventQueue?: FileEventQueue | undefined;
286
+ }
287
+ export declare const unmarshalAwsSqsQueueSchema: z.ZodType<AwsSqsQueue>;
288
+ export declare const unmarshalAzureQueueStorageSchema: z.ZodType<AzureQueueStorage>;
289
+ export declare const unmarshalDeleteExternalLocationRequest_ResponseSchema: z.ZodType<DeleteExternalLocationRequest_Response>;
290
+ export declare const unmarshalEncryptionDetailsSchema: z.ZodType<EncryptionDetails>;
291
+ export declare const unmarshalExternalLocationInfoSchema: z.ZodType<ExternalLocationInfo>;
292
+ export declare const unmarshalFileEventQueueSchema: z.ZodType<FileEventQueue>;
293
+ export declare const unmarshalGcpPubsubSchema: z.ZodType<GcpPubsub>;
294
+ export declare const unmarshalListExternalLocationsRequest_ResponseSchema: z.ZodType<ListExternalLocationsRequest_Response>;
295
+ export declare const unmarshalSseEncryptionDetailsSchema: z.ZodType<SseEncryptionDetails>;
296
+ export declare const marshalAwsSqsQueueSchema: z.ZodType;
297
+ export declare const marshalAzureQueueStorageSchema: z.ZodType;
298
+ export declare const marshalCreateExternalLocationRequestSchema: z.ZodType;
299
+ export declare const marshalEncryptionDetailsSchema: z.ZodType;
300
+ export declare const marshalFileEventQueueSchema: z.ZodType;
301
+ export declare const marshalGcpPubsubSchema: z.ZodType;
302
+ export declare const marshalSseEncryptionDetailsSchema: z.ZodType;
303
+ export declare const marshalUpdateExternalLocationRequestSchema: z.ZodType;
304
+ //# sourceMappingURL=model.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"model.d.ts","sourceRoot":"","sources":["../../src/v1/model.ts"],"names":[],"mappings":"AAEA,OAAO,EAAC,CAAC,EAAC,MAAM,KAAK,CAAC;AAEtB,oBAAY,aAAa;IACvB,0BAA0B,+BAA+B;IACzD,mBAAmB,wBAAwB;IAC3C,uBAAuB,4BAA4B;CACpD;AAED,oBAAY,sBAAsB;IAChC,oCAAoC,yCAAyC;IAC7E,UAAU,eAAe;IACzB,WAAW,gBAAgB;CAC5B;AAED,MAAM,WAAW,WAAW;IAC1B;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC9B,qFAAqF;IACrF,iBAAiB,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CACxC;AAED,MAAM,WAAW,iBAAiB;IAChC;;;OAGG;IACH,QAAQ,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC9B;;;;OAIG;IACH,cAAc,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACpC;;;;OAIG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACnC,qFAAqF;IACrF,iBAAiB,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CACxC;AAED,MAAM,WAAW,6BAA6B;IAC5C,wFAAwF;IACxF,cAAc,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACrC,qCAAqC;IACrC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,yCAAyC;IACzC,GAAG,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACzB,8DAA8D;IAC9D,cAAc,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACpC,4DAA4D;IAC5D,QAAQ,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC/B,gDAAgD;IAChD,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC7B;;;OAGG;IACH,gBAAgB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACvC,4IAA4I;IAC5I,cAAc,CAAC,EAAE,cAAc,GAAG,SAAS,CAAC;IAC5C,0CAA0C;IAC1C,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,iBAAiB,CAAC,EAAE,iBAAiB,GAAG,SAAS,CAAC;IAClD,oEAAoE;IACpE,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACjC,sDAAsD;IACtD,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAClC,+EAA+E;IAC/E,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,6CAA6C;IAC7C,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,qFAAqF;IACrF,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,gEAAgE;IAChE,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,8KAA8K;IAC9K,UAAU,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACjC,aAAa,CAAC,EAAE,aAAa,GAAG,SAAS,CAAC;IAC1C,+MAA+M;IAC/M,QAAQ,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC/B,uFAAuF;IACvF,yBAAyB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAChD;;;;;OAKG;IACH,uBAAuB,CAAC,EAAE,cAAc,GAAG,SAAS,CAAC;CACtD;AAED,MAAM,WAAW,6BAA6B;IAC5C,qCAAqC;IACrC,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC7B,4EAA4E;IAC5E,KAAK,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;CAC7B;AAGD,MAAM,WAAW,sCAAsC;CAAG;AAE1D,4EAA4E;AAC5E,MAAM,WAAW,iBAAiB;IAChC,qBAAqB,CAAC,EAClB;QACE,KAAK,EAAE,sBAAsB,CAAC;QAC9B,+EAA+E;QAC/E,oBAAoB,EAAE,oBAAoB,CAAC;KAC5C,GACD,SAAS,CAAC;CACf;AAED,MAAM,WAAW,oBAAoB;IACnC,qCAAqC;IACrC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,yCAAyC;IACzC,GAAG,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACzB,8DAA8D;IAC9D,cAAc,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACpC,4DAA4D;IAC5D,QAAQ,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC/B,gDAAgD;IAChD,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC7B;;;OAGG;IACH,gBAAgB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACvC,4IAA4I;IAC5I,cAAc,CAAC,EAAE,cAAc,GAAG,SAAS,CAAC;IAC5C,0CAA0C;IAC1C,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,iBAAiB,CAAC,EAAE,iBAAiB,GAAG,SAAS,CAAC;IAClD,oEAAoE;IACpE,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACjC,sDAAsD;IACtD,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAClC,+EAA+E;IAC/E,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,6CAA6C;IAC7C,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,qFAAqF;IACrF,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,gEAAgE;IAChE,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,8KAA8K;IAC9K,UAAU,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACjC,aAAa,CAAC,EAAE,aAAa,GAAG,SAAS,CAAC;IAC1C,+MAA+M;IAC/M,QAAQ,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC/B,uFAAuF;IACvF,yBAAyB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAChD;;;;;OAKG;IACH,uBAAuB,CAAC,EAAE,cAAc,GAAG,SAAS,CAAC;CACtD;AAED,MAAM,WAAW,cAAc;IAC7B,QAAQ,CAAC,EACL;QAAC,KAAK,EAAE,aAAa,CAAC;QAAC,WAAW,EAAE,iBAAiB,CAAA;KAAC,GACtD;QAAC,KAAK,EAAE,aAAa,CAAC;QAAC,WAAW,EAAE,WAAW,CAAA;KAAC,GAChD;QAAC,KAAK,EAAE,gBAAgB,CAAC;QAAC,cAAc,EAAE,SAAS,CAAA;KAAC,GACpD,SAAS,CAAC;IACd,OAAO,CAAC,EACJ;QAAC,KAAK,EAAE,YAAY,CAAC;QAAC,UAAU,EAAE,iBAAiB,CAAA;KAAC,GACpD;QAAC,KAAK,EAAE,YAAY,CAAC;QAAC,UAAU,EAAE,WAAW,CAAA;KAAC,GAC9C;QAAC,KAAK,EAAE,eAAe,CAAC;QAAC,aAAa,EAAE,SAAS,CAAA;KAAC,GAClD,SAAS,CAAC;CACf;AAED,MAAM,WAAW,SAAS;IACxB;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACtC,qFAAqF;IACrF,iBAAiB,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CACxC;AAED,MAAM,WAAW,0BAA0B;IACzC,qCAAqC;IACrC,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC7B,2HAA2H;IAC3H,aAAa,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;CACrC;AAED,MAAM,WAAW,4BAA4B;IAC3C,2HAA2H;IAC3H,aAAa,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACpC;;;;;;OAMG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAChC,0EAA0E;IAC1E,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B;;;OAGG;IACH,cAAc,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;CACtC;AAGD,MAAM,WAAW,qCAAqC;IACpD,sCAAsC;IACtC,iBAAiB,CAAC,EAAE,oBAAoB,EAAE,GAAG,SAAS,CAAC;IACvD;;;OAGG;IACH,aAAa,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CACpC;AAED,+EAA+E;AAC/E,MAAM,WAAW,oBAAoB;IACnC,iFAAiF;IACjF,SAAS,CAAC,EAAE,sBAAsB,GAAG,SAAS,CAAC;IAC/C;;;OAGG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;CACnC;AAED,MAAM,WAAW,6BAA6B;IAC5C,qCAAqC;IACrC,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC7B,0CAA0C;IAC1C,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC7B,yFAAyF;IACzF,KAAK,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC5B,wFAAwF;IACxF,cAAc,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACrC,qCAAqC;IACrC,IAAI,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC1B,yCAAyC;IACzC,GAAG,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACzB,8DAA8D;IAC9D,cAAc,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACpC,4DAA4D;IAC5D,QAAQ,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC/B,gDAAgD;IAChD,OAAO,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC7B;;;OAGG;IACH,gBAAgB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACvC,4IAA4I;IAC5I,cAAc,CAAC,EAAE,cAAc,GAAG,SAAS,CAAC;IAC5C,0CAA0C;IAC1C,KAAK,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC3B,iBAAiB,CAAC,EAAE,iBAAiB,GAAG,SAAS,CAAC;IAClD,oEAAoE;IACpE,WAAW,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IACjC,sDAAsD;IACtD,YAAY,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAClC,+EAA+E;IAC/E,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,6CAA6C;IAC7C,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,qFAAqF;IACrF,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,gEAAgE;IAChE,SAAS,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;IAC/B,8KAA8K;IAC9K,UAAU,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACjC,aAAa,CAAC,EAAE,aAAa,GAAG,SAAS,CAAC;IAC1C,+MAA+M;IAC/M,QAAQ,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAC/B,uFAAuF;IACvF,yBAAyB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IAChD;;;;;OAKG;IACH,uBAAuB,CAAC,EAAE,cAAc,GAAG,SAAS,CAAC;CACtD;AAED,eAAO,MAAM,0BAA0B,EAAE,CAAC,CAAC,OAAO,CAAC,WAAW,CAQzD,CAAC;AAEN,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,OAAO,CAAC,iBAAiB,CAYrE,CAAC;AAGN,eAAO,MAAM,qDAAqD,EAAE,CAAC,CAAC,OAAO,CAAC,sCAAsC,CACtG,CAAC;AAEf,eAAO,MAAM,gCAAgC,EAAE,CAAC,CAAC,OAAO,CAAC,iBAAiB,CAcrE,CAAC;AAEN,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,OAAO,CAAC,oBAAoB,CAuDzE,CAAC;AAER,eAAO,MAAM,6BAA6B,EAAE,CAAC,CAAC,OAAO,CAAC,cAAc,CA6B/D,CAAC;AAEN,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,OAAO,CAAC,SAAS,CAQrD,CAAC;AAGN,eAAO,MAAM,oDAAoD,EAAE,CAAC,CAAC,OAAO,CAAC,qCAAqC,CAW3G,CAAC;AAER,eAAO,MAAM,mCAAmC,EAAE,CAAC,CAAC,OAAO,CAAC,oBAAoB,CASzE,CAAC;AAER,eAAO,MAAM,wBAAwB,EAAE,CAAC,CAAC,OAQpC,CAAC;AAEN,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,OAY1C,CAAC;AAEN,eAAO,MAAM,0CAA0C,EAAE,CAAC,CAAC,OAgDtD,CAAC;AAEN,eAAO,MAAM,8BAA8B,EAAE,CAAC,CAAC,OAe1C,CAAC;AAEN,eAAO,MAAM,2BAA2B,EAAE,CAAC,CAAC,OAsDvC,CAAC;AAEN,eAAO,MAAM,sBAAsB,EAAE,CAAC,CAAC,OAQlC,CAAC;AAEN,eAAO,MAAM,iCAAiC,EAAE,CAAC,CAAC,OAQ7C,CAAC;AAEN,eAAO,MAAM,0CAA0C,EAAE,CAAC,CAAC,OAsDtD,CAAC"}