@osdk/client.unstable 2.8.0-beta.10 → 2.8.0-beta.12
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/CHANGELOG.md +8 -0
- package/api.d.ts +17 -0
- package/build/browser/public/api.js +3 -0
- package/build/browser/public/api.js.map +1 -0
- package/build/cjs/index.d.cts +8 -1
- package/build/cjs/public/api.cjs +4 -0
- package/build/cjs/public/api.cjs.map +1 -0
- package/build/cjs/public/api.d.cts +3272 -0
- package/build/esm/public/api.js +3 -0
- package/build/esm/public/api.js.map +1 -0
- package/build/types/blockDataIr.d.ts +8 -1
- package/build/types/blockDataIr.d.ts.map +1 -1
- package/build/types/generated/marketplace/api/__components.d.ts +3207 -0
- package/build/types/generated/marketplace/api/__components.d.ts.map +1 -0
- package/build/types/generated/marketplace/api/index.d.ts +1 -0
- package/build/types/generated/marketplace/api/index.d.ts.map +1 -0
- package/build/types/generated/marketplace/index.d.ts +1 -0
- package/build/types/generated/marketplace/index.d.ts.map +1 -0
- package/build/types/index.d.ts +2 -2
- package/build/types/index.d.ts.map +1 -1
- package/build/types/public/api.d.ts +1 -0
- package/build/types/public/api.d.ts.map +1 -0
- package/package.json +10 -1
|
@@ -0,0 +1,3272 @@
|
|
|
1
|
+
type _api_eddie_transformations_api_InputParameterType = _api_eddie_transformations_api_InputParameterType_primitive | _api_eddie_transformations_api_InputParameterType_composite;
|
|
2
|
+
interface _api_eddie_transformations_api_InputParameterType_primitive {
|
|
3
|
+
type: "primitive";
|
|
4
|
+
primitive: _api_eddie_transformations_api_PrimitiveInputParameterType;
|
|
5
|
+
}
|
|
6
|
+
interface _api_eddie_transformations_api_InputParameterType_composite {
|
|
7
|
+
type: "composite";
|
|
8
|
+
composite: unknown;
|
|
9
|
+
}
|
|
10
|
+
type _api_eddie_transformations_api_PrimitiveInputParameterType = unknown;
|
|
11
|
+
interface _api_eddie_transformations_api_LiteralConstraint_columnName {
|
|
12
|
+
type: "columnName";
|
|
13
|
+
columnName: _api_eddie_transformations_api_ColumnNameLiteralConstraint;
|
|
14
|
+
}
|
|
15
|
+
type _api_eddie_transformations_api_LiteralConstraint = _api_eddie_transformations_api_LiteralConstraint_columnName;
|
|
16
|
+
interface _api_eddie_transformations_api_ColumnNameLiteralConstraint {
|
|
17
|
+
}
|
|
18
|
+
interface _api_eddie_transformations_api_RegexParameterType {
|
|
19
|
+
}
|
|
20
|
+
interface _api_eddie_transformations_api_ExplicitType {
|
|
21
|
+
types: Array<_api_eddie_transformations_api_LogicalType>;
|
|
22
|
+
}
|
|
23
|
+
interface _api_eddie_transformations_api_LogicalType {
|
|
24
|
+
physicalType: unknown;
|
|
25
|
+
}
|
|
26
|
+
interface _api_functions_CustomType {
|
|
27
|
+
about?: LocalizedTitleAndDescription | null | undefined;
|
|
28
|
+
fields: Record<_api_functions_CustomTypeFieldName, _api_functions_DataType>;
|
|
29
|
+
id: _api_functions_CustomTypeId;
|
|
30
|
+
}
|
|
31
|
+
type _api_functions_CustomTypeFieldName = string;
|
|
32
|
+
type _api_functions_CustomTypeId = string;
|
|
33
|
+
type _api_functions_DataType = {
|
|
34
|
+
type: string;
|
|
35
|
+
[key: string]: unknown;
|
|
36
|
+
};
|
|
37
|
+
type ActionLogRuleEditedObjectRelations = Record<ObjectTypeReference, LinkTypeReference>;
|
|
38
|
+
type ActionLogRulePropertyValues = Record<ObjectTypePropertyReference, ActionLogValue>;
|
|
39
|
+
interface ActionLogRuleShape {
|
|
40
|
+
actionLogObjectTypeId: ObjectTypeReference;
|
|
41
|
+
editedObjectRelations: ActionLogRuleEditedObjectRelations;
|
|
42
|
+
propertyValues: ActionLogRulePropertyValues;
|
|
43
|
+
}
|
|
44
|
+
interface ActionLogValue_parameterValue {
|
|
45
|
+
type: "parameterValue";
|
|
46
|
+
parameterValue: ActionTypeParameterReference;
|
|
47
|
+
}
|
|
48
|
+
interface ActionLogValue_objectParameterPropertyValue {
|
|
49
|
+
type: "objectParameterPropertyValue";
|
|
50
|
+
objectParameterPropertyValue: ObjectParameterPropertyValue;
|
|
51
|
+
}
|
|
52
|
+
interface ActionLogValue_interfaceParameterPropertyValue {
|
|
53
|
+
type: "interfaceParameterPropertyValue";
|
|
54
|
+
interfaceParameterPropertyValue: InterfaceParameterPropertyValue;
|
|
55
|
+
}
|
|
56
|
+
interface ActionLogValue_editedObjects {
|
|
57
|
+
type: "editedObjects";
|
|
58
|
+
editedObjects: ObjectTypeReference;
|
|
59
|
+
}
|
|
60
|
+
interface ActionLogValue_actionTypeRid {
|
|
61
|
+
type: "actionTypeRid";
|
|
62
|
+
actionTypeRid: Empty;
|
|
63
|
+
}
|
|
64
|
+
interface ActionLogValue_actionRid {
|
|
65
|
+
type: "actionRid";
|
|
66
|
+
actionRid: Empty;
|
|
67
|
+
}
|
|
68
|
+
interface ActionLogValue_actionTypeVersion {
|
|
69
|
+
type: "actionTypeVersion";
|
|
70
|
+
actionTypeVersion: Empty;
|
|
71
|
+
}
|
|
72
|
+
interface ActionLogValue_actionTimestamp {
|
|
73
|
+
type: "actionTimestamp";
|
|
74
|
+
actionTimestamp: Empty;
|
|
75
|
+
}
|
|
76
|
+
interface ActionLogValue_actionUser {
|
|
77
|
+
type: "actionUser";
|
|
78
|
+
actionUser: Empty;
|
|
79
|
+
}
|
|
80
|
+
interface ActionLogValue_isReverted {
|
|
81
|
+
type: "isReverted";
|
|
82
|
+
isReverted: Empty;
|
|
83
|
+
}
|
|
84
|
+
interface ActionLogValue_revertUser {
|
|
85
|
+
type: "revertUser";
|
|
86
|
+
revertUser: Empty;
|
|
87
|
+
}
|
|
88
|
+
interface ActionLogValue_revertTimestamp {
|
|
89
|
+
type: "revertTimestamp";
|
|
90
|
+
revertTimestamp: Empty;
|
|
91
|
+
}
|
|
92
|
+
interface ActionLogValue_synchronousWebhookInstanceId {
|
|
93
|
+
type: "synchronousWebhookInstanceId";
|
|
94
|
+
synchronousWebhookInstanceId: Empty;
|
|
95
|
+
}
|
|
96
|
+
interface ActionLogValue_asynchronousWebhookInstanceIds {
|
|
97
|
+
type: "asynchronousWebhookInstanceIds";
|
|
98
|
+
asynchronousWebhookInstanceIds: Empty;
|
|
99
|
+
}
|
|
100
|
+
interface ActionLogValue_notifiedUsers {
|
|
101
|
+
type: "notifiedUsers";
|
|
102
|
+
notifiedUsers: Empty;
|
|
103
|
+
}
|
|
104
|
+
interface ActionLogValue_notificationIds {
|
|
105
|
+
type: "notificationIds";
|
|
106
|
+
notificationIds: Empty;
|
|
107
|
+
}
|
|
108
|
+
interface ActionLogValue_scenarioRid {
|
|
109
|
+
type: "scenarioRid";
|
|
110
|
+
scenarioRid: Empty;
|
|
111
|
+
}
|
|
112
|
+
interface ActionLogValue_summary {
|
|
113
|
+
type: "summary";
|
|
114
|
+
summary: Array<ActionTypeRichTextComponent>;
|
|
115
|
+
}
|
|
116
|
+
type ActionLogValue = ActionLogValue_parameterValue | ActionLogValue_objectParameterPropertyValue | ActionLogValue_interfaceParameterPropertyValue | ActionLogValue_editedObjects | ActionLogValue_actionTypeRid | ActionLogValue_actionRid | ActionLogValue_actionTypeVersion | ActionLogValue_actionTimestamp | ActionLogValue_actionUser | ActionLogValue_isReverted | ActionLogValue_revertUser | ActionLogValue_revertTimestamp | ActionLogValue_synchronousWebhookInstanceId | ActionLogValue_asynchronousWebhookInstanceIds | ActionLogValue_notifiedUsers | ActionLogValue_notificationIds | ActionLogValue_scenarioRid | ActionLogValue_summary;
|
|
117
|
+
type ActionParameterShapeId = string;
|
|
118
|
+
/**
|
|
119
|
+
* DEPRECATED. Use `ActionTypeParameterShape` instead.
|
|
120
|
+
*/
|
|
121
|
+
interface ActionParameterTypeShape {
|
|
122
|
+
about: LocalizedTitleAndDescription;
|
|
123
|
+
type: BaseParameterType;
|
|
124
|
+
}
|
|
125
|
+
type ActionTypeParameterReference = BlockInternalId;
|
|
126
|
+
interface ActionTypeParameterShape {
|
|
127
|
+
about: LocalizedTitleAndDescription;
|
|
128
|
+
actionType: ActionTypeReference;
|
|
129
|
+
type: BaseParameterType;
|
|
130
|
+
}
|
|
131
|
+
type ActionTypeReference = BlockInternalId;
|
|
132
|
+
interface ActionTypeRichTextComponent_message {
|
|
133
|
+
type: "message";
|
|
134
|
+
message: Empty;
|
|
135
|
+
}
|
|
136
|
+
interface ActionTypeRichTextComponent_parameter {
|
|
137
|
+
type: "parameter";
|
|
138
|
+
parameter: ActionTypeParameterReference;
|
|
139
|
+
}
|
|
140
|
+
interface ActionTypeRichTextComponent_parameterProperty {
|
|
141
|
+
type: "parameterProperty";
|
|
142
|
+
parameterProperty: ObjectParameterPropertyValue;
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* Generic type that can used to define a string that should have Action execution details injected into it when
|
|
146
|
+
* it is rendered.
|
|
147
|
+
*/
|
|
148
|
+
type ActionTypeRichTextComponent = ActionTypeRichTextComponent_message | ActionTypeRichTextComponent_parameter | ActionTypeRichTextComponent_parameterProperty;
|
|
149
|
+
type ActionTypeRid = string;
|
|
150
|
+
interface ActionTypeShape {
|
|
151
|
+
about: LocalizedTitleAndDescription;
|
|
152
|
+
actionLogRule?: ActionLogRuleShape | null | undefined;
|
|
153
|
+
parameters: Record<ActionParameterShapeId, ActionParameterTypeShape>;
|
|
154
|
+
parametersV2: Array<ActionTypeParameterReference>;
|
|
155
|
+
}
|
|
156
|
+
interface AipAgentShape {
|
|
157
|
+
about: LocalizedTitleAndDescription;
|
|
158
|
+
}
|
|
159
|
+
interface AllowedObjectPropertyType_objectPropertyType {
|
|
160
|
+
type: "objectPropertyType";
|
|
161
|
+
objectPropertyType: ObjectPropertyType;
|
|
162
|
+
}
|
|
163
|
+
/**
|
|
164
|
+
* Wrapper which refers to an property type and could support set of allowed types or more flexible constraints
|
|
165
|
+
*/
|
|
166
|
+
type AllowedObjectPropertyType = AllowedObjectPropertyType_objectPropertyType;
|
|
167
|
+
/**
|
|
168
|
+
* Profile name must be one of the specified names
|
|
169
|
+
*/
|
|
170
|
+
interface AllowedProfileNamesConstraint {
|
|
171
|
+
names: Array<SparkProfileName>;
|
|
172
|
+
}
|
|
173
|
+
/**
|
|
174
|
+
* This shape represents a user-provided acknowledgement of letting OMS infer and apply any schema migrations
|
|
175
|
+
* needed to perform a Marketplace installation. Specifically, if the installation requires dropping properties,
|
|
176
|
+
* changing the type of a property, or any other breaking schema modification that requires schema migrations,
|
|
177
|
+
* user acknowledgement of the risk of potential failing cast schema migrations or automatically applied drop
|
|
178
|
+
* migrations is required to proceed with the installation. For more information on schema migrations, refer to
|
|
179
|
+
* the docs on Managing Schema Changes in the Ontology.
|
|
180
|
+
*/
|
|
181
|
+
interface AllowOntologySchemaMigrationsShape {
|
|
182
|
+
about: LocalizedTitleAndDescription;
|
|
183
|
+
}
|
|
184
|
+
interface AnySchema {
|
|
185
|
+
}
|
|
186
|
+
interface AppConfigOutputShape {
|
|
187
|
+
about: LocalizedTitleAndDescription;
|
|
188
|
+
}
|
|
189
|
+
interface ArrayBaseType {
|
|
190
|
+
elementType: PrimitiveBaseType;
|
|
191
|
+
}
|
|
192
|
+
/**
|
|
193
|
+
* Represents an Array property type.
|
|
194
|
+
*/
|
|
195
|
+
interface ArrayObjectPropertyType {
|
|
196
|
+
elementType: PrimitiveObjectPropertyType;
|
|
197
|
+
}
|
|
198
|
+
interface ArtifactsRepositoryShape {
|
|
199
|
+
about: LocalizedTitleAndDescription;
|
|
200
|
+
}
|
|
201
|
+
/**
|
|
202
|
+
* AttachmentListType specifies that this parameter must be a list of Attachment rids.
|
|
203
|
+
*/
|
|
204
|
+
interface AttachmentListType {
|
|
205
|
+
}
|
|
206
|
+
/**
|
|
207
|
+
* AttachmentType specifies that this parameter must be the rid of an Attachment.
|
|
208
|
+
*/
|
|
209
|
+
interface AttachmentType {
|
|
210
|
+
}
|
|
211
|
+
interface AudioDecodeFormat_flac {
|
|
212
|
+
type: "flac";
|
|
213
|
+
flac: FlacFormat;
|
|
214
|
+
}
|
|
215
|
+
interface AudioDecodeFormat_mp2 {
|
|
216
|
+
type: "mp2";
|
|
217
|
+
mp2: Mp2Format;
|
|
218
|
+
}
|
|
219
|
+
interface AudioDecodeFormat_mp3 {
|
|
220
|
+
type: "mp3";
|
|
221
|
+
mp3: Mp3Format;
|
|
222
|
+
}
|
|
223
|
+
interface AudioDecodeFormat_mp4 {
|
|
224
|
+
type: "mp4";
|
|
225
|
+
mp4: Mp4AudioContainerFormat;
|
|
226
|
+
}
|
|
227
|
+
interface AudioDecodeFormat_nistSphere {
|
|
228
|
+
type: "nistSphere";
|
|
229
|
+
nistSphere: NistSphereFormat;
|
|
230
|
+
}
|
|
231
|
+
interface AudioDecodeFormat_ogg {
|
|
232
|
+
type: "ogg";
|
|
233
|
+
ogg: OggAudioContainerFormat;
|
|
234
|
+
}
|
|
235
|
+
interface AudioDecodeFormat_wav {
|
|
236
|
+
type: "wav";
|
|
237
|
+
wav: WavFormat;
|
|
238
|
+
}
|
|
239
|
+
interface AudioDecodeFormat_webm {
|
|
240
|
+
type: "webm";
|
|
241
|
+
webm: WebmAudioContainerFormat;
|
|
242
|
+
}
|
|
243
|
+
type AudioDecodeFormat = AudioDecodeFormat_flac | AudioDecodeFormat_mp2 | AudioDecodeFormat_mp3 | AudioDecodeFormat_mp4 | AudioDecodeFormat_nistSphere | AudioDecodeFormat_ogg | AudioDecodeFormat_wav | AudioDecodeFormat_webm;
|
|
244
|
+
interface AudioSchema {
|
|
245
|
+
format: AudioDecodeFormat;
|
|
246
|
+
}
|
|
247
|
+
/**
|
|
248
|
+
* This shape is used to refer to libraries that are produced by repositories created in Authoring.
|
|
249
|
+
*/
|
|
250
|
+
interface AuthoringLibraryShape {
|
|
251
|
+
about: LocalizedTitleAndDescription;
|
|
252
|
+
}
|
|
253
|
+
interface AuthoringRepositoryShape {
|
|
254
|
+
about: LocalizedTitleAndDescription;
|
|
255
|
+
}
|
|
256
|
+
interface AutomationShape {
|
|
257
|
+
about: LocalizedTitleAndDescription;
|
|
258
|
+
}
|
|
259
|
+
interface BaseParameterType_boolean {
|
|
260
|
+
type: "boolean";
|
|
261
|
+
boolean: BooleanType;
|
|
262
|
+
}
|
|
263
|
+
interface BaseParameterType_booleanList {
|
|
264
|
+
type: "booleanList";
|
|
265
|
+
booleanList: BooleanListType;
|
|
266
|
+
}
|
|
267
|
+
interface BaseParameterType_integer {
|
|
268
|
+
type: "integer";
|
|
269
|
+
integer: IntegerType;
|
|
270
|
+
}
|
|
271
|
+
interface BaseParameterType_integerList {
|
|
272
|
+
type: "integerList";
|
|
273
|
+
integerList: IntegerListType;
|
|
274
|
+
}
|
|
275
|
+
interface BaseParameterType_long {
|
|
276
|
+
type: "long";
|
|
277
|
+
long: LongType;
|
|
278
|
+
}
|
|
279
|
+
interface BaseParameterType_longList {
|
|
280
|
+
type: "longList";
|
|
281
|
+
longList: LongListType;
|
|
282
|
+
}
|
|
283
|
+
interface BaseParameterType_double {
|
|
284
|
+
type: "double";
|
|
285
|
+
double: DoubleType;
|
|
286
|
+
}
|
|
287
|
+
interface BaseParameterType_doubleList {
|
|
288
|
+
type: "doubleList";
|
|
289
|
+
doubleList: DoubleListType;
|
|
290
|
+
}
|
|
291
|
+
interface BaseParameterType_string {
|
|
292
|
+
type: "string";
|
|
293
|
+
string: StringType;
|
|
294
|
+
}
|
|
295
|
+
interface BaseParameterType_stringList {
|
|
296
|
+
type: "stringList";
|
|
297
|
+
stringList: StringListType;
|
|
298
|
+
}
|
|
299
|
+
interface BaseParameterType_decimal {
|
|
300
|
+
type: "decimal";
|
|
301
|
+
decimal: DecimalType;
|
|
302
|
+
}
|
|
303
|
+
interface BaseParameterType_decimalList {
|
|
304
|
+
type: "decimalList";
|
|
305
|
+
decimalList: DecimalListType;
|
|
306
|
+
}
|
|
307
|
+
interface BaseParameterType_geohash {
|
|
308
|
+
type: "geohash";
|
|
309
|
+
geohash: GeohashType;
|
|
310
|
+
}
|
|
311
|
+
interface BaseParameterType_geohashList {
|
|
312
|
+
type: "geohashList";
|
|
313
|
+
geohashList: GeohashListType;
|
|
314
|
+
}
|
|
315
|
+
interface BaseParameterType_geoshape {
|
|
316
|
+
type: "geoshape";
|
|
317
|
+
geoshape: GeoshapeType;
|
|
318
|
+
}
|
|
319
|
+
interface BaseParameterType_geoshapeList {
|
|
320
|
+
type: "geoshapeList";
|
|
321
|
+
geoshapeList: GeoshapeListType;
|
|
322
|
+
}
|
|
323
|
+
interface BaseParameterType_timeSeriesReference {
|
|
324
|
+
type: "timeSeriesReference";
|
|
325
|
+
timeSeriesReference: TimeSeriesReferenceType;
|
|
326
|
+
}
|
|
327
|
+
interface BaseParameterType_timestamp {
|
|
328
|
+
type: "timestamp";
|
|
329
|
+
timestamp: TimestampType;
|
|
330
|
+
}
|
|
331
|
+
interface BaseParameterType_timestampList {
|
|
332
|
+
type: "timestampList";
|
|
333
|
+
timestampList: TimestampListType;
|
|
334
|
+
}
|
|
335
|
+
interface BaseParameterType_date {
|
|
336
|
+
type: "date";
|
|
337
|
+
date: DateType;
|
|
338
|
+
}
|
|
339
|
+
interface BaseParameterType_dateList {
|
|
340
|
+
type: "dateList";
|
|
341
|
+
dateList: DateListType;
|
|
342
|
+
}
|
|
343
|
+
interface BaseParameterType_objectReference {
|
|
344
|
+
type: "objectReference";
|
|
345
|
+
objectReference: ObjectReferenceType;
|
|
346
|
+
}
|
|
347
|
+
interface BaseParameterType_objectReferenceList {
|
|
348
|
+
type: "objectReferenceList";
|
|
349
|
+
objectReferenceList: ObjectReferenceListType;
|
|
350
|
+
}
|
|
351
|
+
interface BaseParameterType_objectSetRid {
|
|
352
|
+
type: "objectSetRid";
|
|
353
|
+
objectSetRid: ObjectSetRidType;
|
|
354
|
+
}
|
|
355
|
+
interface BaseParameterType_interfaceReference {
|
|
356
|
+
type: "interfaceReference";
|
|
357
|
+
interfaceReference: InterfaceReferenceType;
|
|
358
|
+
}
|
|
359
|
+
interface BaseParameterType_interfaceReferenceList {
|
|
360
|
+
type: "interfaceReferenceList";
|
|
361
|
+
interfaceReferenceList: InterfaceReferenceListType;
|
|
362
|
+
}
|
|
363
|
+
interface BaseParameterType_interfaceObjectSetRid {
|
|
364
|
+
type: "interfaceObjectSetRid";
|
|
365
|
+
interfaceObjectSetRid: InterfaceObjectSetRidType;
|
|
366
|
+
}
|
|
367
|
+
interface BaseParameterType_objectTypeReference {
|
|
368
|
+
type: "objectTypeReference";
|
|
369
|
+
objectTypeReference: ObjectTypeReferenceType;
|
|
370
|
+
}
|
|
371
|
+
interface BaseParameterType_attachment {
|
|
372
|
+
type: "attachment";
|
|
373
|
+
attachment: AttachmentType;
|
|
374
|
+
}
|
|
375
|
+
interface BaseParameterType_attachmentList {
|
|
376
|
+
type: "attachmentList";
|
|
377
|
+
attachmentList: AttachmentListType;
|
|
378
|
+
}
|
|
379
|
+
interface BaseParameterType_marking {
|
|
380
|
+
type: "marking";
|
|
381
|
+
marking: MarkingType;
|
|
382
|
+
}
|
|
383
|
+
interface BaseParameterType_markingList {
|
|
384
|
+
type: "markingList";
|
|
385
|
+
markingList: MarkingListType;
|
|
386
|
+
}
|
|
387
|
+
interface BaseParameterType_mediaReference {
|
|
388
|
+
type: "mediaReference";
|
|
389
|
+
mediaReference: MediaReferenceType;
|
|
390
|
+
}
|
|
391
|
+
interface BaseParameterType_geotimeSeriesReference {
|
|
392
|
+
type: "geotimeSeriesReference";
|
|
393
|
+
geotimeSeriesReference: GeotimeSeriesReferenceType;
|
|
394
|
+
}
|
|
395
|
+
interface BaseParameterType_geotimeSeriesReferenceList {
|
|
396
|
+
type: "geotimeSeriesReferenceList";
|
|
397
|
+
geotimeSeriesReferenceList: GeotimeSeriesReferenceListType;
|
|
398
|
+
}
|
|
399
|
+
interface BaseParameterType_struct {
|
|
400
|
+
type: "struct";
|
|
401
|
+
struct: StructType;
|
|
402
|
+
}
|
|
403
|
+
interface BaseParameterType_structList {
|
|
404
|
+
type: "structList";
|
|
405
|
+
structList: StructListType;
|
|
406
|
+
}
|
|
407
|
+
/**
|
|
408
|
+
* All of the possible types for Parameters.
|
|
409
|
+
*/
|
|
410
|
+
type BaseParameterType = BaseParameterType_boolean | BaseParameterType_booleanList | BaseParameterType_integer | BaseParameterType_integerList | BaseParameterType_long | BaseParameterType_longList | BaseParameterType_double | BaseParameterType_doubleList | BaseParameterType_string | BaseParameterType_stringList | BaseParameterType_decimal | BaseParameterType_decimalList | BaseParameterType_geohash | BaseParameterType_geohashList | BaseParameterType_geoshape | BaseParameterType_geoshapeList | BaseParameterType_timeSeriesReference | BaseParameterType_timestamp | BaseParameterType_timestampList | BaseParameterType_date | BaseParameterType_dateList | BaseParameterType_objectReference | BaseParameterType_objectReferenceList | BaseParameterType_objectSetRid | BaseParameterType_interfaceReference | BaseParameterType_interfaceReferenceList | BaseParameterType_interfaceObjectSetRid | BaseParameterType_objectTypeReference | BaseParameterType_attachment | BaseParameterType_attachmentList | BaseParameterType_marking | BaseParameterType_markingList | BaseParameterType_mediaReference | BaseParameterType_geotimeSeriesReference | BaseParameterType_geotimeSeriesReferenceList | BaseParameterType_struct | BaseParameterType_structList;
|
|
411
|
+
interface BaseType_primitive {
|
|
412
|
+
type: "primitive";
|
|
413
|
+
primitive: PrimitiveBaseType;
|
|
414
|
+
}
|
|
415
|
+
interface BaseType_array {
|
|
416
|
+
type: "array";
|
|
417
|
+
array: ArrayBaseType;
|
|
418
|
+
}
|
|
419
|
+
interface BaseType_structV2 {
|
|
420
|
+
type: "structV2";
|
|
421
|
+
structV2: StructV2BaseType;
|
|
422
|
+
}
|
|
423
|
+
type BaseType = BaseType_primitive | BaseType_array | BaseType_structV2;
|
|
424
|
+
interface BlobsterResourceInputShape {
|
|
425
|
+
about: LocalizedTitleAndDescription;
|
|
426
|
+
allowedTypes: Array<BlobsterResourceType>;
|
|
427
|
+
}
|
|
428
|
+
interface BlobsterResourceOutputShape {
|
|
429
|
+
about: LocalizedTitleAndDescription;
|
|
430
|
+
type?: BlobsterResourceType | null | undefined;
|
|
431
|
+
}
|
|
432
|
+
/**
|
|
433
|
+
* Represents the type of a Blobster resource. Should be the type from the RID in UPPERCASE. E.g. for an image
|
|
434
|
+
* resource with RID `ri.blobster.main.image.<uuid>`, the resource type would be `IMAGE`.
|
|
435
|
+
*/
|
|
436
|
+
type BlobsterResourceType = "IMAGE" | "DOCUMENT" | "CODE" | "BLOB";
|
|
437
|
+
/**
|
|
438
|
+
* Internal identifiers with no meaning outside of the block they're found in.
|
|
439
|
+
*/
|
|
440
|
+
type BlockInternalId = string;
|
|
441
|
+
type BlockSetVersion = string;
|
|
442
|
+
/**
|
|
443
|
+
* Matches ranges of versions. Use an `x` instead of a version number to represent wildcards. Once one level
|
|
444
|
+
* has a wildcard, all subsequent ones must be as well (i.e. `1.x.4` is not supported, while `1.x.x` is). Any
|
|
445
|
+
* missing levels are assumed to be wildcards (i.e. `1.x` is equivalent to `1.x.x`).
|
|
446
|
+
*/
|
|
447
|
+
type BlockSetVersionMatcher = string;
|
|
448
|
+
/**
|
|
449
|
+
* Range of versions. Contains all version from `from` (inclusive), to `until` (inclusive). For example, a
|
|
450
|
+
* version range from version `1.3.4` to all versions with a major version of 2 would be:
|
|
451
|
+
*
|
|
452
|
+
* `{ from: "1.3.4", until: "2.x.x" }`
|
|
453
|
+
*
|
|
454
|
+
* This example will match versions such as `1.3.4`, `1.3.7`, `1.4.0`, `2.0.0`, `2.9.3`, but not `3.0.0`.
|
|
455
|
+
*/
|
|
456
|
+
interface BlockSetVersionRange {
|
|
457
|
+
from: BlockSetVersion;
|
|
458
|
+
until: BlockSetVersionMatcher;
|
|
459
|
+
}
|
|
460
|
+
/**
|
|
461
|
+
* Mirror enum for the `BlockSpecificConfiguration` union.
|
|
462
|
+
*/
|
|
463
|
+
type BlockType = "AIP_AGENT" | "APP_CONFIG_APP_BAR" | "APP_CONFIG_AUTHORIZATION_CHOOSER_PRESETS" | "APP_CONFIG_AUTHORIZATION_CHOOSER_RULES" | "APP_CONFIG_COSMOS" | "APP_CONFIG_GAIA" | "APP_CONFIG_TITANIUM" | "AUTHORING_REPOSITORY" | "AUTOMATION" | "BLOBSTER" | "CARBON" | "CHECKPOINT_CONFIG" | "CIPHER_CHANNEL" | "CIPHER_LICENSE" | "CODE_WORKSPACE" | "COMPASS" | "CONTOUR" | "DATA_HEALTH" | "DEPLOYED_APP" | "DIRECT_DATASOURCE" | "EDDIE_EDGE_PIPELINE" | "EDDIE_GROUP" | "EDITS_VIEW" | "EVALUATION_SUITE" | "FUNCTION_CONFIGURATIONS" | "FUNCTIONS" | "LOGIC" | "MACHINERY" | "MAGRITTE_CONNECTOR" | "MAGRITTE_EXPORT" | "MAGRITTE_SOURCE" | "MEDIA_SET" | "MODEL" | "MONITORING_VIEW" | "NAMED_CREDENTIAL" | "NETWORK_EGRESS_POLICY" | "NOTEPAD" | "OBJECT_SET" | "OBJECT_VIEW" | "MAP_RENDERING_SERVICE" | "ONTOLOGY" | "POD_MODEL" | "QUIVER" | "RESOURCE_UPDATES" | "RESTRICTED_VIEW" | "ROSETTA" | "SATELLITE_IMAGERY_MODEL" | "SCHEDULE" | "ONTOLOGY_SDK" | "SLATE" | "SOLUTION_DESIGN" | "STATIC_DATASET" | "STREAM_DATASET" | "TAURUS_WORKFLOW" | "TEMPLATES" | "TIME_SERIES_SYNC" | "THIRD_PARTY_APPLICATION" | "TRANSFORMS" | "VALUE_TYPE" | "VERTEX" | "VIRTUAL_TABLE" | "VORTEX" | "WALKTHROUGH" | "WEBHOOKS" | "WIDGET_SET" | "WORKFLOW_GRAPH" | "WORKSHOP" | "WRITEBACK";
|
|
464
|
+
interface BmpFormat {
|
|
465
|
+
}
|
|
466
|
+
/**
|
|
467
|
+
* BooleanListType specifies that this parameter must be a list of Booleans.
|
|
468
|
+
*/
|
|
469
|
+
interface BooleanListType {
|
|
470
|
+
}
|
|
471
|
+
/**
|
|
472
|
+
* BooleanType specifies that this parameter must be a Boolean.
|
|
473
|
+
*/
|
|
474
|
+
interface BooleanType {
|
|
475
|
+
}
|
|
476
|
+
interface CarbonWorkspaceInputShape {
|
|
477
|
+
about: LocalizedTitleAndDescription;
|
|
478
|
+
}
|
|
479
|
+
interface CarbonWorkspaceOutputShape {
|
|
480
|
+
about: LocalizedTitleAndDescription;
|
|
481
|
+
}
|
|
482
|
+
interface Changelog_markdown {
|
|
483
|
+
type: "markdown";
|
|
484
|
+
markdown: MarkdownText;
|
|
485
|
+
}
|
|
486
|
+
type Changelog = Changelog_markdown;
|
|
487
|
+
interface CheckpointConfigOutputShape {
|
|
488
|
+
about: LocalizedTitleAndDescription;
|
|
489
|
+
}
|
|
490
|
+
interface CipherAlgorithm_aesGcmSiv {
|
|
491
|
+
type: "aesGcmSiv";
|
|
492
|
+
aesGcmSiv: Void;
|
|
493
|
+
}
|
|
494
|
+
interface CipherAlgorithm_aesSiv {
|
|
495
|
+
type: "aesSiv";
|
|
496
|
+
aesSiv: Void;
|
|
497
|
+
}
|
|
498
|
+
interface CipherAlgorithm_sha512 {
|
|
499
|
+
type: "sha512";
|
|
500
|
+
sha512: Void;
|
|
501
|
+
}
|
|
502
|
+
interface CipherAlgorithm_sha256 {
|
|
503
|
+
type: "sha256";
|
|
504
|
+
sha256: Void;
|
|
505
|
+
}
|
|
506
|
+
interface CipherAlgorithm_imageScrambling {
|
|
507
|
+
type: "imageScrambling";
|
|
508
|
+
imageScrambling: Void;
|
|
509
|
+
}
|
|
510
|
+
type CipherAlgorithm = CipherAlgorithm_aesGcmSiv | CipherAlgorithm_aesSiv | CipherAlgorithm_sha512 | CipherAlgorithm_sha256 | CipherAlgorithm_imageScrambling;
|
|
511
|
+
interface CipherChannelInputShape {
|
|
512
|
+
about: LocalizedTitleAndDescription;
|
|
513
|
+
allowedAlgorithms: Array<CipherAlgorithm>;
|
|
514
|
+
}
|
|
515
|
+
interface CipherChannelOutputShape {
|
|
516
|
+
about: LocalizedTitleAndDescription;
|
|
517
|
+
algorithm: CipherAlgorithm;
|
|
518
|
+
}
|
|
519
|
+
interface CipherLicenseInputShape {
|
|
520
|
+
about: LocalizedTitleAndDescription;
|
|
521
|
+
requiredPermits: Array<CipherLicensePermit>;
|
|
522
|
+
}
|
|
523
|
+
interface CipherLicenseInputShapeV2 {
|
|
524
|
+
about: LocalizedTitleAndDescription;
|
|
525
|
+
allowedAlgorithms: Array<CipherAlgorithm>;
|
|
526
|
+
allowedLicenseTypes: Array<CipherLicenseType>;
|
|
527
|
+
requiredOperations: Array<CipherOperationType>;
|
|
528
|
+
}
|
|
529
|
+
interface CipherLicenseOutputShape {
|
|
530
|
+
about: LocalizedTitleAndDescription;
|
|
531
|
+
algorithm: CipherAlgorithm;
|
|
532
|
+
licenseType: CipherLicenseType;
|
|
533
|
+
operations: Array<CipherOperationType>;
|
|
534
|
+
}
|
|
535
|
+
interface CipherLicensePermit_rateLimitedRequestPermit {
|
|
536
|
+
type: "rateLimitedRequestPermit";
|
|
537
|
+
rateLimitedRequestPermit: RateLimitedRequestPermit;
|
|
538
|
+
}
|
|
539
|
+
interface CipherLicensePermit_transformsRequestPermit {
|
|
540
|
+
type: "transformsRequestPermit";
|
|
541
|
+
transformsRequestPermit: TransformsRequestPermit;
|
|
542
|
+
}
|
|
543
|
+
interface CipherLicensePermit_highTrustRequestPermit {
|
|
544
|
+
type: "highTrustRequestPermit";
|
|
545
|
+
highTrustRequestPermit: HighTrustRequestPermit;
|
|
546
|
+
}
|
|
547
|
+
type CipherLicensePermit = CipherLicensePermit_rateLimitedRequestPermit | CipherLicensePermit_transformsRequestPermit | CipherLicensePermit_highTrustRequestPermit;
|
|
548
|
+
interface CipherLicenseType_operationalUserLicense {
|
|
549
|
+
type: "operationalUserLicense";
|
|
550
|
+
operationalUserLicense: Void;
|
|
551
|
+
}
|
|
552
|
+
interface CipherLicenseType_dataManagerLicense {
|
|
553
|
+
type: "dataManagerLicense";
|
|
554
|
+
dataManagerLicense: Void;
|
|
555
|
+
}
|
|
556
|
+
interface CipherLicenseType_adminLicense {
|
|
557
|
+
type: "adminLicense";
|
|
558
|
+
adminLicense: Void;
|
|
559
|
+
}
|
|
560
|
+
type CipherLicenseType = CipherLicenseType_operationalUserLicense | CipherLicenseType_dataManagerLicense | CipherLicenseType_adminLicense;
|
|
561
|
+
interface CipherOperationType_encrypt {
|
|
562
|
+
type: "encrypt";
|
|
563
|
+
encrypt: Void;
|
|
564
|
+
}
|
|
565
|
+
interface CipherOperationType_decrypt {
|
|
566
|
+
type: "decrypt";
|
|
567
|
+
decrypt: Void;
|
|
568
|
+
}
|
|
569
|
+
interface CipherOperationType_hash {
|
|
570
|
+
type: "hash";
|
|
571
|
+
hash: Void;
|
|
572
|
+
}
|
|
573
|
+
type CipherOperationType = CipherOperationType_encrypt | CipherOperationType_decrypt | CipherOperationType_hash;
|
|
574
|
+
/**
|
|
575
|
+
* Represents an encrypted property, generated by Cipher. It can essentially be treated as a string.
|
|
576
|
+
*/
|
|
577
|
+
interface CipherTextPropertyType {
|
|
578
|
+
plainTextType: PrimitiveObjectPropertyType;
|
|
579
|
+
}
|
|
580
|
+
interface CodeWorkspaceInputShape {
|
|
581
|
+
about: LocalizedTitleAndDescription;
|
|
582
|
+
imageType: ContainerImageType;
|
|
583
|
+
}
|
|
584
|
+
interface CodeWorkspaceLicenseInputShape {
|
|
585
|
+
about: LocalizedTitleAndDescription;
|
|
586
|
+
licenseProductType: LicenseProductType;
|
|
587
|
+
}
|
|
588
|
+
interface CodeWorkspaceOutputShape {
|
|
589
|
+
about: LocalizedTitleAndDescription;
|
|
590
|
+
imageType: ContainerImageType;
|
|
591
|
+
}
|
|
592
|
+
interface CompassFolderType {
|
|
593
|
+
}
|
|
594
|
+
/**
|
|
595
|
+
* represents the intended purpose of the input. An INSTALL_LOCATION will require INSTALL_IN permissions.
|
|
596
|
+
* A REFERENCE would require USE_AS_INPUT permissions.
|
|
597
|
+
*/
|
|
598
|
+
type CompassFolderTypeConstraint = "INSTALL_LOCATION" | "REFERENCE";
|
|
599
|
+
interface CompassFolderTypeConstraints {
|
|
600
|
+
constraints: Array<CompassFolderTypeConstraint>;
|
|
601
|
+
}
|
|
602
|
+
interface CompassResourceInputShape {
|
|
603
|
+
about: LocalizedTitleAndDescription;
|
|
604
|
+
allowedTypes: Array<CompassResourceType>;
|
|
605
|
+
typeConstraints: Array<CompassResourceTypeConstraints>;
|
|
606
|
+
}
|
|
607
|
+
interface CompassResourceOutputShape {
|
|
608
|
+
about: LocalizedTitleAndDescription;
|
|
609
|
+
type: CompassResourceType;
|
|
610
|
+
}
|
|
611
|
+
interface CompassResourceType_compassFolderType {
|
|
612
|
+
type: "compassFolderType";
|
|
613
|
+
compassFolderType: CompassFolderType;
|
|
614
|
+
}
|
|
615
|
+
type CompassResourceType = CompassResourceType_compassFolderType;
|
|
616
|
+
interface CompassResourceTypeConstraints_compassFolderTypeConstraints {
|
|
617
|
+
type: "compassFolderTypeConstraints";
|
|
618
|
+
compassFolderTypeConstraints: CompassFolderTypeConstraints;
|
|
619
|
+
}
|
|
620
|
+
type CompassResourceTypeConstraints = CompassResourceTypeConstraints_compassFolderTypeConstraints;
|
|
621
|
+
/**
|
|
622
|
+
* A user-written application hosted in Compute Modules.
|
|
623
|
+
*/
|
|
624
|
+
interface ComputeModuleType {
|
|
625
|
+
}
|
|
626
|
+
interface ConcreteArrayType {
|
|
627
|
+
elementType: ConcreteDataType;
|
|
628
|
+
}
|
|
629
|
+
interface ConcreteDataType_primitive {
|
|
630
|
+
type: "primitive";
|
|
631
|
+
primitive: ConcretePrimitiveDataType;
|
|
632
|
+
}
|
|
633
|
+
interface ConcreteDataType_array {
|
|
634
|
+
type: "array";
|
|
635
|
+
array: ConcreteArrayType;
|
|
636
|
+
}
|
|
637
|
+
interface ConcreteDataType_map {
|
|
638
|
+
type: "map";
|
|
639
|
+
map: ConcreteMapType;
|
|
640
|
+
}
|
|
641
|
+
interface ConcreteDataType_struct {
|
|
642
|
+
type: "struct";
|
|
643
|
+
struct: ConcreteStructType;
|
|
644
|
+
}
|
|
645
|
+
/**
|
|
646
|
+
* Concrete types (still correspond 1:1 with types of columns of foundry datasets) but including higher
|
|
647
|
+
* order types such as arrays, maps, structs.
|
|
648
|
+
*/
|
|
649
|
+
type ConcreteDataType = ConcreteDataType_primitive | ConcreteDataType_array | ConcreteDataType_map | ConcreteDataType_struct;
|
|
650
|
+
interface ConcreteDecimalType {
|
|
651
|
+
precision: number;
|
|
652
|
+
scale: number;
|
|
653
|
+
}
|
|
654
|
+
interface ConcreteMapType {
|
|
655
|
+
keyType: ConcreteDataType;
|
|
656
|
+
valueType: ConcreteDataType;
|
|
657
|
+
}
|
|
658
|
+
interface ConcretePrimitiveDataType_binary {
|
|
659
|
+
type: "binary";
|
|
660
|
+
binary: Void;
|
|
661
|
+
}
|
|
662
|
+
interface ConcretePrimitiveDataType_boolean {
|
|
663
|
+
type: "boolean";
|
|
664
|
+
boolean: Void;
|
|
665
|
+
}
|
|
666
|
+
interface ConcretePrimitiveDataType_byte {
|
|
667
|
+
type: "byte";
|
|
668
|
+
byte: Void;
|
|
669
|
+
}
|
|
670
|
+
interface ConcretePrimitiveDataType_date {
|
|
671
|
+
type: "date";
|
|
672
|
+
date: Void;
|
|
673
|
+
}
|
|
674
|
+
interface ConcretePrimitiveDataType_decimal {
|
|
675
|
+
type: "decimal";
|
|
676
|
+
decimal: ConcreteDecimalType;
|
|
677
|
+
}
|
|
678
|
+
interface ConcretePrimitiveDataType_double {
|
|
679
|
+
type: "double";
|
|
680
|
+
double: Void;
|
|
681
|
+
}
|
|
682
|
+
interface ConcretePrimitiveDataType_float {
|
|
683
|
+
type: "float";
|
|
684
|
+
float: Void;
|
|
685
|
+
}
|
|
686
|
+
interface ConcretePrimitiveDataType_integer {
|
|
687
|
+
type: "integer";
|
|
688
|
+
integer: Void;
|
|
689
|
+
}
|
|
690
|
+
interface ConcretePrimitiveDataType_long {
|
|
691
|
+
type: "long";
|
|
692
|
+
long: Void;
|
|
693
|
+
}
|
|
694
|
+
interface ConcretePrimitiveDataType_short {
|
|
695
|
+
type: "short";
|
|
696
|
+
short: Void;
|
|
697
|
+
}
|
|
698
|
+
interface ConcretePrimitiveDataType_string {
|
|
699
|
+
type: "string";
|
|
700
|
+
string: Void;
|
|
701
|
+
}
|
|
702
|
+
interface ConcretePrimitiveDataType_timestamp {
|
|
703
|
+
type: "timestamp";
|
|
704
|
+
timestamp: Void;
|
|
705
|
+
}
|
|
706
|
+
/**
|
|
707
|
+
* These types are not composite (reference other types), or generic. They represent (nullable) primitive types.
|
|
708
|
+
*/
|
|
709
|
+
type ConcretePrimitiveDataType = ConcretePrimitiveDataType_binary | ConcretePrimitiveDataType_boolean | ConcretePrimitiveDataType_byte | ConcretePrimitiveDataType_date | ConcretePrimitiveDataType_decimal | ConcretePrimitiveDataType_double | ConcretePrimitiveDataType_float | ConcretePrimitiveDataType_integer | ConcretePrimitiveDataType_long | ConcretePrimitiveDataType_short | ConcretePrimitiveDataType_string | ConcretePrimitiveDataType_timestamp;
|
|
710
|
+
interface ConcreteStructElement {
|
|
711
|
+
name: string;
|
|
712
|
+
type: ConcreteDataType;
|
|
713
|
+
}
|
|
714
|
+
interface ConcreteStructType {
|
|
715
|
+
fields: Array<ConcreteStructElement>;
|
|
716
|
+
}
|
|
717
|
+
type CondaExtension = "TAR_BZ2" | "CONDA";
|
|
718
|
+
/**
|
|
719
|
+
* DEPRECATED - use CondaLocatorV2.
|
|
720
|
+
* Reference a file in a conda files layout.
|
|
721
|
+
*/
|
|
722
|
+
interface CondaLocator {
|
|
723
|
+
path: string;
|
|
724
|
+
}
|
|
725
|
+
/**
|
|
726
|
+
* Reference a file in a conda files layout. It's a copy of com.palantir.artifacts.api.conda.CondaLocator.
|
|
727
|
+
*/
|
|
728
|
+
interface CondaLocatorV2 {
|
|
729
|
+
buildString: string;
|
|
730
|
+
extension: CondaExtension;
|
|
731
|
+
name: string;
|
|
732
|
+
platform: string;
|
|
733
|
+
version: string;
|
|
734
|
+
}
|
|
735
|
+
/**
|
|
736
|
+
* Represents the type of image used by the workspace.
|
|
737
|
+
* A RSTUDIO workspace type will require a license to be provided.
|
|
738
|
+
*/
|
|
739
|
+
type ContainerImageType = "JUPYTER" | "RSTUDIO" | "DASH" | "STREAMLIT" | "RSHINY";
|
|
740
|
+
interface ContourAnalysisShape {
|
|
741
|
+
about: LocalizedTitleAndDescription;
|
|
742
|
+
}
|
|
743
|
+
type CreationTimestamp = string;
|
|
744
|
+
interface DataHealthCheckGroupShape {
|
|
745
|
+
about: LocalizedTitleAndDescription;
|
|
746
|
+
}
|
|
747
|
+
interface DataHealthCheckShape {
|
|
748
|
+
about: LocalizedTitleAndDescription;
|
|
749
|
+
}
|
|
750
|
+
interface DatasetLocator {
|
|
751
|
+
branch: string;
|
|
752
|
+
rid: string;
|
|
753
|
+
}
|
|
754
|
+
interface DatasourceBuildRequirements {
|
|
755
|
+
isBuildable: boolean;
|
|
756
|
+
}
|
|
757
|
+
type DatasourceColumnReference = BlockInternalId;
|
|
758
|
+
interface DatasourceColumnShape {
|
|
759
|
+
about: LocalizedTitleAndDescription;
|
|
760
|
+
datasource: TabularDatasourceReference;
|
|
761
|
+
type: DatasourceColumnType;
|
|
762
|
+
typeclasses: Array<DatasourceColumnTypeClass>;
|
|
763
|
+
}
|
|
764
|
+
interface DatasourceColumnType_concrete {
|
|
765
|
+
type: "concrete";
|
|
766
|
+
concrete: ConcreteDataType;
|
|
767
|
+
}
|
|
768
|
+
interface DatasourceColumnType_generic {
|
|
769
|
+
type: "generic";
|
|
770
|
+
generic: GenericDataType;
|
|
771
|
+
}
|
|
772
|
+
type DatasourceColumnType = DatasourceColumnType_concrete | DatasourceColumnType_generic;
|
|
773
|
+
interface DatasourceColumnTypeClass_eddieDefined {
|
|
774
|
+
type: "eddieDefined";
|
|
775
|
+
eddieDefined: EddieDefinedTypeClass;
|
|
776
|
+
}
|
|
777
|
+
interface DatasourceColumnTypeClass_valueType {
|
|
778
|
+
type: "valueType";
|
|
779
|
+
valueType: ValueTypeReference;
|
|
780
|
+
}
|
|
781
|
+
type DatasourceColumnTypeClass = DatasourceColumnTypeClass_eddieDefined | DatasourceColumnTypeClass_valueType;
|
|
782
|
+
interface DatasourceLocator_stream {
|
|
783
|
+
type: "stream";
|
|
784
|
+
stream: StreamLocator;
|
|
785
|
+
}
|
|
786
|
+
interface DatasourceLocator_dataset {
|
|
787
|
+
type: "dataset";
|
|
788
|
+
dataset: DatasetLocator;
|
|
789
|
+
}
|
|
790
|
+
interface DatasourceLocator_restrictedView {
|
|
791
|
+
type: "restrictedView";
|
|
792
|
+
restrictedView: RestrictedViewLocator;
|
|
793
|
+
}
|
|
794
|
+
interface DatasourceLocator_virtualTable {
|
|
795
|
+
type: "virtualTable";
|
|
796
|
+
virtualTable: VirtualTableLocator;
|
|
797
|
+
}
|
|
798
|
+
type DatasourceLocator = DatasourceLocator_stream | DatasourceLocator_dataset | DatasourceLocator_restrictedView | DatasourceLocator_virtualTable;
|
|
799
|
+
interface DataType_stringType {
|
|
800
|
+
type: "stringType";
|
|
801
|
+
stringType: Void;
|
|
802
|
+
}
|
|
803
|
+
interface DataType_booleanType {
|
|
804
|
+
type: "booleanType";
|
|
805
|
+
booleanType: Void;
|
|
806
|
+
}
|
|
807
|
+
interface DataType_integerType {
|
|
808
|
+
type: "integerType";
|
|
809
|
+
integerType: Void;
|
|
810
|
+
}
|
|
811
|
+
interface DataType_cronWithTimeZoneType {
|
|
812
|
+
type: "cronWithTimeZoneType";
|
|
813
|
+
cronWithTimeZoneType: Void;
|
|
814
|
+
}
|
|
815
|
+
type DataType = DataType_stringType | DataType_booleanType | DataType_integerType | DataType_cronWithTimeZoneType;
|
|
816
|
+
/**
|
|
817
|
+
* DateListType specifies that this parameter must be a list of Dates.
|
|
818
|
+
*/
|
|
819
|
+
interface DateListType {
|
|
820
|
+
}
|
|
821
|
+
/**
|
|
822
|
+
* DateType specifies that this parameter must be a Date.
|
|
823
|
+
*/
|
|
824
|
+
interface DateType {
|
|
825
|
+
}
|
|
826
|
+
/**
|
|
827
|
+
* DecimalListType specifies that this parameter must be a list of Decimals.
|
|
828
|
+
*/
|
|
829
|
+
interface DecimalListType {
|
|
830
|
+
precision?: number | null | undefined;
|
|
831
|
+
scale?: number | null | undefined;
|
|
832
|
+
}
|
|
833
|
+
/**
|
|
834
|
+
* DecimalType specifies that this parameter must be a Decimal.
|
|
835
|
+
*/
|
|
836
|
+
interface DecimalType {
|
|
837
|
+
precision?: number | null | undefined;
|
|
838
|
+
scale?: number | null | undefined;
|
|
839
|
+
}
|
|
840
|
+
interface DeployedAppShape {
|
|
841
|
+
about: LocalizedTitleAndDescription;
|
|
842
|
+
}
|
|
843
|
+
interface DicomSchema {
|
|
844
|
+
}
|
|
845
|
+
interface DocumentDecodeFormat_pdf {
|
|
846
|
+
type: "pdf";
|
|
847
|
+
pdf: PdfFormat;
|
|
848
|
+
}
|
|
849
|
+
interface DocumentDecodeFormat_docx {
|
|
850
|
+
type: "docx";
|
|
851
|
+
docx: DocxFormat;
|
|
852
|
+
}
|
|
853
|
+
interface DocumentDecodeFormat_txt {
|
|
854
|
+
type: "txt";
|
|
855
|
+
txt: TxtFormat;
|
|
856
|
+
}
|
|
857
|
+
interface DocumentDecodeFormat_pptx {
|
|
858
|
+
type: "pptx";
|
|
859
|
+
pptx: PptxFormat;
|
|
860
|
+
}
|
|
861
|
+
type DocumentDecodeFormat = DocumentDecodeFormat_pdf | DocumentDecodeFormat_docx | DocumentDecodeFormat_txt | DocumentDecodeFormat_pptx;
|
|
862
|
+
interface DocumentSchema {
|
|
863
|
+
format: DocumentDecodeFormat;
|
|
864
|
+
}
|
|
865
|
+
interface DocxFormat {
|
|
866
|
+
}
|
|
867
|
+
/**
|
|
868
|
+
* DoubleListType specifies that this parameter must be a list of Doubles.
|
|
869
|
+
*/
|
|
870
|
+
interface DoubleListType {
|
|
871
|
+
}
|
|
872
|
+
/**
|
|
873
|
+
* DoubleType specifies that this parameter must be a Double.
|
|
874
|
+
*/
|
|
875
|
+
interface DoubleType {
|
|
876
|
+
}
|
|
877
|
+
/**
|
|
878
|
+
* Describes the built-in eddie logical type from the logical types in the Eddie registry. Must be an exact
|
|
879
|
+
* match with all the defined fields. The metadata field is ignored for now.
|
|
880
|
+
*/
|
|
881
|
+
interface EddieDefinedTypeClass {
|
|
882
|
+
kind: string;
|
|
883
|
+
name: string;
|
|
884
|
+
version?: EddieDefinedTypeClassVersion | null | undefined;
|
|
885
|
+
}
|
|
886
|
+
/**
|
|
887
|
+
* Describes the version of a column typeclass.
|
|
888
|
+
*/
|
|
889
|
+
interface EddieDefinedTypeClassVersion {
|
|
890
|
+
major: number;
|
|
891
|
+
minor?: number | null | undefined;
|
|
892
|
+
patch?: number | null | undefined;
|
|
893
|
+
}
|
|
894
|
+
/**
|
|
895
|
+
* There are a number of valid parameter types in Eddie, from simple parameters like literals to more complex
|
|
896
|
+
* parameters like list<expression>.
|
|
897
|
+
* The shape parameter type describes which parameter must be passed when resolving this shape.
|
|
898
|
+
*/
|
|
899
|
+
interface EddieEdgeParameterInputShape {
|
|
900
|
+
about: LocalizedTitleAndDescription;
|
|
901
|
+
type: EddieInputParameterType;
|
|
902
|
+
}
|
|
903
|
+
/**
|
|
904
|
+
* The RID of a dataset input to a pipeline.
|
|
905
|
+
*/
|
|
906
|
+
type EddieEdgePipelineInputDatasetRid = string;
|
|
907
|
+
/**
|
|
908
|
+
* Never consumed by any downstream blocks but indicates that a block creates an Eddie pipeline.
|
|
909
|
+
*/
|
|
910
|
+
interface EddieEdgePipelineOutputShape {
|
|
911
|
+
about?: LocalizedTitleAndDescription | null | undefined;
|
|
912
|
+
}
|
|
913
|
+
/**
|
|
914
|
+
* This will allow users to configure destination and spec options for a Geotime Target in Pipeline Builder.
|
|
915
|
+
*/
|
|
916
|
+
interface EddieGeotimeConfigurationInputShape {
|
|
917
|
+
about: LocalizedTitleAndDescription;
|
|
918
|
+
}
|
|
919
|
+
interface EddieInputParameterType_primitive {
|
|
920
|
+
type: "primitive";
|
|
921
|
+
primitive: EddiePrimitiveParameterType;
|
|
922
|
+
}
|
|
923
|
+
/**
|
|
924
|
+
* A list of renderable parameter types that marketplace <-> eddie supports.
|
|
925
|
+
*/
|
|
926
|
+
type EddieInputParameterType = EddieInputParameterType_primitive;
|
|
927
|
+
/**
|
|
928
|
+
* Parameter that represents literal value of a given type.
|
|
929
|
+
* Instance type: LiteralParameter
|
|
930
|
+
*/
|
|
931
|
+
interface EddieLiteralParameterType {
|
|
932
|
+
additionalConstraints: Array<_api_eddie_transformations_api_LiteralConstraint>;
|
|
933
|
+
requiredType: EddieTypeReference;
|
|
934
|
+
}
|
|
935
|
+
/**
|
|
936
|
+
* DEPRECATED - Prefer EddieParameterShapeV2 as it contains only supported in the UI parameter types.
|
|
937
|
+
*
|
|
938
|
+
* Specifies an input parameter to an Eddie group.
|
|
939
|
+
* There are a number of valid parameter types in Eddie, from simple parameters like literals to more complex
|
|
940
|
+
* parameters like list<expression>.
|
|
941
|
+
* The shape parameter type describes which parameter must be passed when resolving this shape.
|
|
942
|
+
*/
|
|
943
|
+
interface EddieParameterShape {
|
|
944
|
+
about: LocalizedTitleAndDescription;
|
|
945
|
+
isOptional: boolean;
|
|
946
|
+
type: _api_eddie_transformations_api_InputParameterType;
|
|
947
|
+
}
|
|
948
|
+
/**
|
|
949
|
+
* There are a number of valid parameter types in Eddie, from simple parameters like literals to more complex
|
|
950
|
+
* parameters like list<expression>.
|
|
951
|
+
* The shape parameter type describes which parameter must be passed when resolving this shape.
|
|
952
|
+
*/
|
|
953
|
+
interface EddieParameterShapeV2 {
|
|
954
|
+
about: LocalizedTitleAndDescription;
|
|
955
|
+
type: EddieInputParameterType;
|
|
956
|
+
}
|
|
957
|
+
/**
|
|
958
|
+
* Never consumed by any downstream blocks but indicates that a block creates an Eddie pipeline.
|
|
959
|
+
*/
|
|
960
|
+
interface EddiePipelineShape {
|
|
961
|
+
about?: LocalizedTitleAndDescription | null | undefined;
|
|
962
|
+
}
|
|
963
|
+
/**
|
|
964
|
+
* An Eddie Pipeline that may contain various UDFs.
|
|
965
|
+
*/
|
|
966
|
+
interface EddiePipelineType {
|
|
967
|
+
}
|
|
968
|
+
interface EddiePrimitiveParameterType_literal {
|
|
969
|
+
type: "literal";
|
|
970
|
+
literal: EddieLiteralParameterType;
|
|
971
|
+
}
|
|
972
|
+
interface EddiePrimitiveParameterType_regex {
|
|
973
|
+
type: "regex";
|
|
974
|
+
regex: _api_eddie_transformations_api_RegexParameterType;
|
|
975
|
+
}
|
|
976
|
+
/**
|
|
977
|
+
* This is a subset union of EddieInputParameterType
|
|
978
|
+
*/
|
|
979
|
+
type EddiePrimitiveParameterType = EddiePrimitiveParameterType_literal | EddiePrimitiveParameterType_regex;
|
|
980
|
+
interface EddieReplayOptionShape {
|
|
981
|
+
about: LocalizedTitleAndDescription;
|
|
982
|
+
supportedReplayOptions: Array<EddieReplayOptionType>;
|
|
983
|
+
}
|
|
984
|
+
type EddieReplayOptionType = "RESET_AND_REPLAY_FROM_OFFSET" | "RESET";
|
|
985
|
+
interface EddieTypeReference_explicit {
|
|
986
|
+
type: "explicit";
|
|
987
|
+
explicit: _api_eddie_transformations_api_ExplicitType;
|
|
988
|
+
}
|
|
989
|
+
type EddieTypeReference = EddieTypeReference_explicit;
|
|
990
|
+
/**
|
|
991
|
+
* Magritte task type (also used to represent sync types)
|
|
992
|
+
*/
|
|
993
|
+
type EdgeMagritteTaskType = string;
|
|
994
|
+
/**
|
|
995
|
+
* This will allow users to configure magritte source configuration for the edge pipeline
|
|
996
|
+
*/
|
|
997
|
+
interface EdgePipelineMagritteSourceInputShape {
|
|
998
|
+
about: LocalizedTitleAndDescription;
|
|
999
|
+
datasetRid?: EddieEdgePipelineInputDatasetRid | null | undefined;
|
|
1000
|
+
magritteSourceType: MagritteSourceType;
|
|
1001
|
+
magritteTaskType?: EdgeMagritteTaskType | null | undefined;
|
|
1002
|
+
}
|
|
1003
|
+
interface Empty {
|
|
1004
|
+
}
|
|
1005
|
+
interface EvaluationSuiteShape {
|
|
1006
|
+
about: LocalizedTitleAndDescription;
|
|
1007
|
+
}
|
|
1008
|
+
interface FilesDatasourceInputShape {
|
|
1009
|
+
about: LocalizedTitleAndDescription;
|
|
1010
|
+
supportedTypes?: Array<FilesDatasourceInputType> | null | undefined;
|
|
1011
|
+
}
|
|
1012
|
+
interface FilesDatasourceInputType_dataset {
|
|
1013
|
+
type: "dataset";
|
|
1014
|
+
dataset: Void;
|
|
1015
|
+
}
|
|
1016
|
+
interface FilesDatasourceInputType_mediaSet {
|
|
1017
|
+
type: "mediaSet";
|
|
1018
|
+
mediaSet: MediaSetDatasourceType;
|
|
1019
|
+
}
|
|
1020
|
+
type FilesDatasourceInputType = FilesDatasourceInputType_dataset | FilesDatasourceInputType_mediaSet;
|
|
1021
|
+
interface FilesDatasourceLocator_dataset {
|
|
1022
|
+
type: "dataset";
|
|
1023
|
+
dataset: DatasetLocator;
|
|
1024
|
+
}
|
|
1025
|
+
interface FilesDatasourceLocator_mediaSet {
|
|
1026
|
+
type: "mediaSet";
|
|
1027
|
+
mediaSet: MediaSetLocator;
|
|
1028
|
+
}
|
|
1029
|
+
type FilesDatasourceLocator = FilesDatasourceLocator_dataset | FilesDatasourceLocator_mediaSet;
|
|
1030
|
+
interface FilesDatasourceOutputShape {
|
|
1031
|
+
about: LocalizedTitleAndDescription;
|
|
1032
|
+
buildRequirements?: DatasourceBuildRequirements | null | undefined;
|
|
1033
|
+
datasourceType?: FilesDatasourceOutputType | null | undefined;
|
|
1034
|
+
}
|
|
1035
|
+
interface FilesDatasourceOutputType_dataset {
|
|
1036
|
+
type: "dataset";
|
|
1037
|
+
dataset: Void;
|
|
1038
|
+
}
|
|
1039
|
+
interface FilesDatasourceOutputType_mediaSet {
|
|
1040
|
+
type: "mediaSet";
|
|
1041
|
+
mediaSet: MediaSetDatasourceType;
|
|
1042
|
+
}
|
|
1043
|
+
type FilesDatasourceOutputType = FilesDatasourceOutputType_dataset | FilesDatasourceOutputType_mediaSet;
|
|
1044
|
+
/**
|
|
1045
|
+
* Reference a file in an artifacts files layout.
|
|
1046
|
+
*/
|
|
1047
|
+
interface FilesLocator {
|
|
1048
|
+
path: string;
|
|
1049
|
+
}
|
|
1050
|
+
interface FlacFormat {
|
|
1051
|
+
}
|
|
1052
|
+
interface FlinkProfileShape {
|
|
1053
|
+
about: LocalizedTitleAndDescription;
|
|
1054
|
+
}
|
|
1055
|
+
interface FunctionConfigurationShape {
|
|
1056
|
+
about: LocalizedTitleAndDescription;
|
|
1057
|
+
function: FunctionReference;
|
|
1058
|
+
}
|
|
1059
|
+
type FunctionContractApiName = string;
|
|
1060
|
+
type FunctionContractReference = BlockInternalId;
|
|
1061
|
+
interface FunctionContractShape {
|
|
1062
|
+
about: LocalizedTitleAndDescription;
|
|
1063
|
+
apiName: FunctionContractApiName;
|
|
1064
|
+
version: FunctionContractVersion;
|
|
1065
|
+
}
|
|
1066
|
+
/**
|
|
1067
|
+
* This version is enforced to be a semver string.
|
|
1068
|
+
*/
|
|
1069
|
+
type FunctionContractVersion = string;
|
|
1070
|
+
type FunctionInputName = string;
|
|
1071
|
+
interface FunctionInputType {
|
|
1072
|
+
about: LocalizedTitleAndDescription;
|
|
1073
|
+
dataType: _api_functions_DataType;
|
|
1074
|
+
inputName?: FunctionInputName | null | undefined;
|
|
1075
|
+
required: boolean;
|
|
1076
|
+
}
|
|
1077
|
+
interface FunctionOutputType_singleOutputType {
|
|
1078
|
+
type: "singleOutputType";
|
|
1079
|
+
singleOutputType: SingleOutputType;
|
|
1080
|
+
}
|
|
1081
|
+
type FunctionOutputType = FunctionOutputType_singleOutputType;
|
|
1082
|
+
type FunctionReference = BlockInternalId;
|
|
1083
|
+
interface FunctionShape {
|
|
1084
|
+
about: LocalizedTitleAndDescription;
|
|
1085
|
+
contracts: Array<FunctionContractReference>;
|
|
1086
|
+
customTypes: Record<_api_functions_CustomTypeId, _api_functions_CustomType>;
|
|
1087
|
+
inputs: Array<FunctionInputType>;
|
|
1088
|
+
output: FunctionOutputType;
|
|
1089
|
+
}
|
|
1090
|
+
interface FusionDocumentShape {
|
|
1091
|
+
about: LocalizedTitleAndDescription;
|
|
1092
|
+
}
|
|
1093
|
+
interface GenericDataType_any {
|
|
1094
|
+
type: "any";
|
|
1095
|
+
any: Void;
|
|
1096
|
+
}
|
|
1097
|
+
interface GenericDataType_anyDecimal {
|
|
1098
|
+
type: "anyDecimal";
|
|
1099
|
+
anyDecimal: Void;
|
|
1100
|
+
}
|
|
1101
|
+
interface GenericDataType_oneOf {
|
|
1102
|
+
type: "oneOf";
|
|
1103
|
+
oneOf: Array<ConcreteDataType>;
|
|
1104
|
+
}
|
|
1105
|
+
/**
|
|
1106
|
+
* Describes generic types - i.e. multiple possibilities.
|
|
1107
|
+
* We can answer the question of whether a particular concrete type satisfies one of these generic types.
|
|
1108
|
+
*/
|
|
1109
|
+
type GenericDataType = GenericDataType_any | GenericDataType_anyDecimal | GenericDataType_oneOf;
|
|
1110
|
+
/**
|
|
1111
|
+
* GeohashListType specifies that this parameter must be a list of Geohashes.
|
|
1112
|
+
*/
|
|
1113
|
+
interface GeohashListType {
|
|
1114
|
+
}
|
|
1115
|
+
/**
|
|
1116
|
+
* GeohashType specifies that this parameter must be a Geohash.
|
|
1117
|
+
*/
|
|
1118
|
+
interface GeohashType {
|
|
1119
|
+
}
|
|
1120
|
+
/**
|
|
1121
|
+
* GeoshapeListType specifies that this parameter must be a list of Geoshapes.
|
|
1122
|
+
*/
|
|
1123
|
+
interface GeoshapeListType {
|
|
1124
|
+
}
|
|
1125
|
+
/**
|
|
1126
|
+
* GeoshapeType specifies that this parameter must be a Geoshape.
|
|
1127
|
+
*/
|
|
1128
|
+
interface GeoshapeType {
|
|
1129
|
+
}
|
|
1130
|
+
type GeotimeSeriesIntegrationRid = string;
|
|
1131
|
+
interface GeotimeSeriesIntegrationShape {
|
|
1132
|
+
about: LocalizedTitleAndDescription;
|
|
1133
|
+
}
|
|
1134
|
+
/**
|
|
1135
|
+
* GeotimeSeriesReferenceListType specifies that this parameter must be a list of GeotimeSeriesReferences.
|
|
1136
|
+
* valid allowedParameterValues: ParameterGeotimeSeriesReferenceOrEmpty
|
|
1137
|
+
* valid prefill DataValues: None
|
|
1138
|
+
*/
|
|
1139
|
+
interface GeotimeSeriesReferenceListType {
|
|
1140
|
+
}
|
|
1141
|
+
/**
|
|
1142
|
+
* GeotimeSeriesReferenceType specifies that this parameter must be a GeotimeSeriesReference.
|
|
1143
|
+
* valid allowedParameterValues: ParameterGeotimeSeriesReferenceOrEmpty
|
|
1144
|
+
* valid prefill DataValues: None
|
|
1145
|
+
*/
|
|
1146
|
+
interface GeotimeSeriesReferenceType {
|
|
1147
|
+
}
|
|
1148
|
+
type GroupId = string;
|
|
1149
|
+
/**
|
|
1150
|
+
* If included in a Cipher License, the user has the ability to perform Cipher operations without any limit and
|
|
1151
|
+
* without needing justification in high trust environments. This is the permit to use for using Cipher in Apps
|
|
1152
|
+
* like Pipelines Builder.
|
|
1153
|
+
*/
|
|
1154
|
+
interface HighTrustRequestPermit {
|
|
1155
|
+
requestType: RequestType;
|
|
1156
|
+
}
|
|
1157
|
+
interface ImageryDecodeFormat_tiff {
|
|
1158
|
+
type: "tiff";
|
|
1159
|
+
tiff: TiffFormat;
|
|
1160
|
+
}
|
|
1161
|
+
interface ImageryDecodeFormat_nitf {
|
|
1162
|
+
type: "nitf";
|
|
1163
|
+
nitf: NitfFormat;
|
|
1164
|
+
}
|
|
1165
|
+
interface ImageryDecodeFormat_jp2k {
|
|
1166
|
+
type: "jp2k";
|
|
1167
|
+
jp2k: Jpeg2000Format;
|
|
1168
|
+
}
|
|
1169
|
+
interface ImageryDecodeFormat_jpg {
|
|
1170
|
+
type: "jpg";
|
|
1171
|
+
jpg: JpgFormat;
|
|
1172
|
+
}
|
|
1173
|
+
interface ImageryDecodeFormat_png {
|
|
1174
|
+
type: "png";
|
|
1175
|
+
png: PngFormat;
|
|
1176
|
+
}
|
|
1177
|
+
interface ImageryDecodeFormat_bmp {
|
|
1178
|
+
type: "bmp";
|
|
1179
|
+
bmp: BmpFormat;
|
|
1180
|
+
}
|
|
1181
|
+
interface ImageryDecodeFormat_webp {
|
|
1182
|
+
type: "webp";
|
|
1183
|
+
webp: WebpFormat;
|
|
1184
|
+
}
|
|
1185
|
+
type ImageryDecodeFormat = ImageryDecodeFormat_tiff | ImageryDecodeFormat_nitf | ImageryDecodeFormat_jp2k | ImageryDecodeFormat_jpg | ImageryDecodeFormat_png | ImageryDecodeFormat_bmp | ImageryDecodeFormat_webp;
|
|
1186
|
+
interface ImagerySchema {
|
|
1187
|
+
format: ImageryDecodeFormat;
|
|
1188
|
+
}
|
|
1189
|
+
type InputEditsSupport = "ANY" | "REQUIRED";
|
|
1190
|
+
type InputObjectBackendVersion = "V1_OR_V2" | "V2";
|
|
1191
|
+
interface InputShape_action {
|
|
1192
|
+
type: "action";
|
|
1193
|
+
action: ActionTypeShape;
|
|
1194
|
+
}
|
|
1195
|
+
interface InputShape_actionParameter {
|
|
1196
|
+
type: "actionParameter";
|
|
1197
|
+
actionParameter: ActionTypeParameterShape;
|
|
1198
|
+
}
|
|
1199
|
+
interface InputShape_allowOntologySchemaMigrations {
|
|
1200
|
+
type: "allowOntologySchemaMigrations";
|
|
1201
|
+
allowOntologySchemaMigrations: AllowOntologySchemaMigrationsShape;
|
|
1202
|
+
}
|
|
1203
|
+
interface InputShape_aipAgent {
|
|
1204
|
+
type: "aipAgent";
|
|
1205
|
+
aipAgent: AipAgentShape;
|
|
1206
|
+
}
|
|
1207
|
+
interface InputShape_artifactsRepository {
|
|
1208
|
+
type: "artifactsRepository";
|
|
1209
|
+
artifactsRepository: ArtifactsRepositoryShape;
|
|
1210
|
+
}
|
|
1211
|
+
interface InputShape_authoringLibrary {
|
|
1212
|
+
type: "authoringLibrary";
|
|
1213
|
+
authoringLibrary: AuthoringLibraryShape;
|
|
1214
|
+
}
|
|
1215
|
+
interface InputShape_authoringRepository {
|
|
1216
|
+
type: "authoringRepository";
|
|
1217
|
+
authoringRepository: AuthoringRepositoryShape;
|
|
1218
|
+
}
|
|
1219
|
+
interface InputShape_automation {
|
|
1220
|
+
type: "automation";
|
|
1221
|
+
automation: AutomationShape;
|
|
1222
|
+
}
|
|
1223
|
+
interface InputShape_carbonWorkspace {
|
|
1224
|
+
type: "carbonWorkspace";
|
|
1225
|
+
carbonWorkspace: CarbonWorkspaceInputShape;
|
|
1226
|
+
}
|
|
1227
|
+
interface InputShape_cipherLicense {
|
|
1228
|
+
type: "cipherLicense";
|
|
1229
|
+
cipherLicense: CipherLicenseInputShape;
|
|
1230
|
+
}
|
|
1231
|
+
interface InputShape_cipherLicenseV2 {
|
|
1232
|
+
type: "cipherLicenseV2";
|
|
1233
|
+
cipherLicenseV2: CipherLicenseInputShapeV2;
|
|
1234
|
+
}
|
|
1235
|
+
interface InputShape_blobsterResource {
|
|
1236
|
+
type: "blobsterResource";
|
|
1237
|
+
blobsterResource: BlobsterResourceInputShape;
|
|
1238
|
+
}
|
|
1239
|
+
interface InputShape_cipherChannel {
|
|
1240
|
+
type: "cipherChannel";
|
|
1241
|
+
cipherChannel: CipherChannelInputShape;
|
|
1242
|
+
}
|
|
1243
|
+
interface InputShape_codeWorkspace {
|
|
1244
|
+
type: "codeWorkspace";
|
|
1245
|
+
codeWorkspace: CodeWorkspaceInputShape;
|
|
1246
|
+
}
|
|
1247
|
+
interface InputShape_codeWorkspaceLicense {
|
|
1248
|
+
type: "codeWorkspaceLicense";
|
|
1249
|
+
codeWorkspaceLicense: CodeWorkspaceLicenseInputShape;
|
|
1250
|
+
}
|
|
1251
|
+
interface InputShape_compassResource {
|
|
1252
|
+
type: "compassResource";
|
|
1253
|
+
compassResource: CompassResourceInputShape;
|
|
1254
|
+
}
|
|
1255
|
+
interface InputShape_contourAnalysis {
|
|
1256
|
+
type: "contourAnalysis";
|
|
1257
|
+
contourAnalysis: ContourAnalysisShape;
|
|
1258
|
+
}
|
|
1259
|
+
interface InputShape_dataHealthCheck {
|
|
1260
|
+
type: "dataHealthCheck";
|
|
1261
|
+
dataHealthCheck: DataHealthCheckShape;
|
|
1262
|
+
}
|
|
1263
|
+
interface InputShape_dataHealthCheckGroup {
|
|
1264
|
+
type: "dataHealthCheckGroup";
|
|
1265
|
+
dataHealthCheckGroup: DataHealthCheckGroupShape;
|
|
1266
|
+
}
|
|
1267
|
+
interface InputShape_datasourceColumn {
|
|
1268
|
+
type: "datasourceColumn";
|
|
1269
|
+
datasourceColumn: DatasourceColumnShape;
|
|
1270
|
+
}
|
|
1271
|
+
interface InputShape_deployedApp {
|
|
1272
|
+
type: "deployedApp";
|
|
1273
|
+
deployedApp: DeployedAppShape;
|
|
1274
|
+
}
|
|
1275
|
+
interface InputShape_eddieParameter {
|
|
1276
|
+
type: "eddieParameter";
|
|
1277
|
+
eddieParameter: EddieParameterShape;
|
|
1278
|
+
}
|
|
1279
|
+
interface InputShape_eddieParameterV2 {
|
|
1280
|
+
type: "eddieParameterV2";
|
|
1281
|
+
eddieParameterV2: EddieParameterShapeV2;
|
|
1282
|
+
}
|
|
1283
|
+
interface InputShape_eddiePipeline {
|
|
1284
|
+
type: "eddiePipeline";
|
|
1285
|
+
eddiePipeline: EddiePipelineShape;
|
|
1286
|
+
}
|
|
1287
|
+
interface InputShape_eddieReplayOption {
|
|
1288
|
+
type: "eddieReplayOption";
|
|
1289
|
+
eddieReplayOption: EddieReplayOptionShape;
|
|
1290
|
+
}
|
|
1291
|
+
interface InputShape_eddieGeotimeConfiguration {
|
|
1292
|
+
type: "eddieGeotimeConfiguration";
|
|
1293
|
+
eddieGeotimeConfiguration: EddieGeotimeConfigurationInputShape;
|
|
1294
|
+
}
|
|
1295
|
+
interface InputShape_eddieEdgeParameter {
|
|
1296
|
+
type: "eddieEdgeParameter";
|
|
1297
|
+
eddieEdgeParameter: EddieEdgeParameterInputShape;
|
|
1298
|
+
}
|
|
1299
|
+
interface InputShape_edgePipelineMagritteSource {
|
|
1300
|
+
type: "edgePipelineMagritteSource";
|
|
1301
|
+
edgePipelineMagritteSource: EdgePipelineMagritteSourceInputShape;
|
|
1302
|
+
}
|
|
1303
|
+
interface InputShape_evaluationSuite {
|
|
1304
|
+
type: "evaluationSuite";
|
|
1305
|
+
evaluationSuite: EvaluationSuiteShape;
|
|
1306
|
+
}
|
|
1307
|
+
interface InputShape_filesDatasource {
|
|
1308
|
+
type: "filesDatasource";
|
|
1309
|
+
filesDatasource: FilesDatasourceInputShape;
|
|
1310
|
+
}
|
|
1311
|
+
interface InputShape_flinkProfile {
|
|
1312
|
+
type: "flinkProfile";
|
|
1313
|
+
flinkProfile: FlinkProfileShape;
|
|
1314
|
+
}
|
|
1315
|
+
interface InputShape_function {
|
|
1316
|
+
type: "function";
|
|
1317
|
+
function: FunctionShape;
|
|
1318
|
+
}
|
|
1319
|
+
interface InputShape_functionContract {
|
|
1320
|
+
type: "functionContract";
|
|
1321
|
+
functionContract: FunctionContractShape;
|
|
1322
|
+
}
|
|
1323
|
+
interface InputShape_fusionDocument {
|
|
1324
|
+
type: "fusionDocument";
|
|
1325
|
+
fusionDocument: FusionDocumentShape;
|
|
1326
|
+
}
|
|
1327
|
+
interface InputShape_geotimeSeriesIntegration {
|
|
1328
|
+
type: "geotimeSeriesIntegration";
|
|
1329
|
+
geotimeSeriesIntegration: GeotimeSeriesIntegrationShape;
|
|
1330
|
+
}
|
|
1331
|
+
interface InputShape_interfaceType {
|
|
1332
|
+
type: "interfaceType";
|
|
1333
|
+
interfaceType: InterfaceTypeInputShape;
|
|
1334
|
+
}
|
|
1335
|
+
interface InputShape_interfaceLinkType {
|
|
1336
|
+
type: "interfaceLinkType";
|
|
1337
|
+
interfaceLinkType: InterfaceLinkTypeInputShape;
|
|
1338
|
+
}
|
|
1339
|
+
interface InputShape_interfacePropertyType {
|
|
1340
|
+
type: "interfacePropertyType";
|
|
1341
|
+
interfacePropertyType: InterfacePropertyTypeInputShape;
|
|
1342
|
+
}
|
|
1343
|
+
interface InputShape_installPrefix {
|
|
1344
|
+
type: "installPrefix";
|
|
1345
|
+
installPrefix: InstallPrefixShape;
|
|
1346
|
+
}
|
|
1347
|
+
interface InputShape_linkType {
|
|
1348
|
+
type: "linkType";
|
|
1349
|
+
linkType: LinkTypeInputShape;
|
|
1350
|
+
}
|
|
1351
|
+
interface InputShape_languageModel {
|
|
1352
|
+
type: "languageModel";
|
|
1353
|
+
languageModel: LanguageModelShape;
|
|
1354
|
+
}
|
|
1355
|
+
interface InputShape_logic {
|
|
1356
|
+
type: "logic";
|
|
1357
|
+
logic: LogicShape;
|
|
1358
|
+
}
|
|
1359
|
+
interface InputShape_logicFunction {
|
|
1360
|
+
type: "logicFunction";
|
|
1361
|
+
logicFunction: LogicFunctionShape;
|
|
1362
|
+
}
|
|
1363
|
+
interface InputShape_machinery {
|
|
1364
|
+
type: "machinery";
|
|
1365
|
+
machinery: MachineryProcessShape;
|
|
1366
|
+
}
|
|
1367
|
+
interface InputShape_magritteConnection {
|
|
1368
|
+
type: "magritteConnection";
|
|
1369
|
+
magritteConnection: MagritteConnectionInputShape;
|
|
1370
|
+
}
|
|
1371
|
+
interface InputShape_magritteExport {
|
|
1372
|
+
type: "magritteExport";
|
|
1373
|
+
magritteExport: MagritteExportShape;
|
|
1374
|
+
}
|
|
1375
|
+
interface InputShape_magritteSource {
|
|
1376
|
+
type: "magritteSource";
|
|
1377
|
+
magritteSource: MagritteSourceInputShape;
|
|
1378
|
+
}
|
|
1379
|
+
interface InputShape_magritteSourceConfigOverrides {
|
|
1380
|
+
type: "magritteSourceConfigOverrides";
|
|
1381
|
+
magritteSourceConfigOverrides: MagritteSourceConfigOverridesInputShape;
|
|
1382
|
+
}
|
|
1383
|
+
interface InputShape_magritteStreamingExtractConfigOverrides {
|
|
1384
|
+
type: "magritteStreamingExtractConfigOverrides";
|
|
1385
|
+
magritteStreamingExtractConfigOverrides: MagritteStreamingExtractConfigOverridesInputShape;
|
|
1386
|
+
}
|
|
1387
|
+
interface InputShape_markings {
|
|
1388
|
+
type: "markings";
|
|
1389
|
+
markings: MarkingsShape;
|
|
1390
|
+
}
|
|
1391
|
+
interface InputShape_model {
|
|
1392
|
+
type: "model";
|
|
1393
|
+
model: ModelInputShape;
|
|
1394
|
+
}
|
|
1395
|
+
interface InputShape_monitorView {
|
|
1396
|
+
type: "monitorView";
|
|
1397
|
+
monitorView: MonitorViewShape;
|
|
1398
|
+
}
|
|
1399
|
+
interface InputShape_monocleGraph {
|
|
1400
|
+
type: "monocleGraph";
|
|
1401
|
+
monocleGraph: MonocleGraphShape;
|
|
1402
|
+
}
|
|
1403
|
+
interface InputShape_multipassUserAttribute {
|
|
1404
|
+
type: "multipassUserAttribute";
|
|
1405
|
+
multipassUserAttribute: MultipassUserAttributeShape;
|
|
1406
|
+
}
|
|
1407
|
+
interface InputShape_multipassGroup {
|
|
1408
|
+
type: "multipassGroup";
|
|
1409
|
+
multipassGroup: MultipassGroupShape;
|
|
1410
|
+
}
|
|
1411
|
+
interface InputShape_namedCredential {
|
|
1412
|
+
type: "namedCredential";
|
|
1413
|
+
namedCredential: NamedCredentialShape;
|
|
1414
|
+
}
|
|
1415
|
+
interface InputShape_networkEgressPolicy {
|
|
1416
|
+
type: "networkEgressPolicy";
|
|
1417
|
+
networkEgressPolicy: NetworkEgressPolicyShape;
|
|
1418
|
+
}
|
|
1419
|
+
interface InputShape_notepadDocument {
|
|
1420
|
+
type: "notepadDocument";
|
|
1421
|
+
notepadDocument: NotepadDocumentShape;
|
|
1422
|
+
}
|
|
1423
|
+
interface InputShape_notepadTemplate {
|
|
1424
|
+
type: "notepadTemplate";
|
|
1425
|
+
notepadTemplate: NotepadTemplateShape;
|
|
1426
|
+
}
|
|
1427
|
+
interface InputShape_notepadTemplateParameter {
|
|
1428
|
+
type: "notepadTemplateParameter";
|
|
1429
|
+
notepadTemplateParameter: NotepadTemplateParameterShape;
|
|
1430
|
+
}
|
|
1431
|
+
interface InputShape_objectInstance {
|
|
1432
|
+
type: "objectInstance";
|
|
1433
|
+
objectInstance: ObjectInstanceInputShape;
|
|
1434
|
+
}
|
|
1435
|
+
interface InputShape_objectSet {
|
|
1436
|
+
type: "objectSet";
|
|
1437
|
+
objectSet: ObjectSetShape;
|
|
1438
|
+
}
|
|
1439
|
+
interface InputShape_objectType {
|
|
1440
|
+
type: "objectType";
|
|
1441
|
+
objectType: ObjectTypeInputShape;
|
|
1442
|
+
}
|
|
1443
|
+
interface InputShape_objectView {
|
|
1444
|
+
type: "objectView";
|
|
1445
|
+
objectView: ObjectViewShape;
|
|
1446
|
+
}
|
|
1447
|
+
interface InputShape_objectViewTab {
|
|
1448
|
+
type: "objectViewTab";
|
|
1449
|
+
objectViewTab: ObjectViewTabShape;
|
|
1450
|
+
}
|
|
1451
|
+
interface InputShape_ontologyDatasource {
|
|
1452
|
+
type: "ontologyDatasource";
|
|
1453
|
+
ontologyDatasource: OntologyDatasourceShape;
|
|
1454
|
+
}
|
|
1455
|
+
interface InputShape_ontologyDatasourceRetention {
|
|
1456
|
+
type: "ontologyDatasourceRetention";
|
|
1457
|
+
ontologyDatasourceRetention: OntologyDatasourceRetentionShape;
|
|
1458
|
+
}
|
|
1459
|
+
interface InputShape_ontologySdk {
|
|
1460
|
+
type: "ontologySdk";
|
|
1461
|
+
ontologySdk: OntologySdkShape;
|
|
1462
|
+
}
|
|
1463
|
+
interface InputShape_overrideOntologyEntityApiNames {
|
|
1464
|
+
type: "overrideOntologyEntityApiNames";
|
|
1465
|
+
overrideOntologyEntityApiNames: OverrideOntologyEntityApiNamesShape;
|
|
1466
|
+
}
|
|
1467
|
+
interface InputShape_parameter {
|
|
1468
|
+
type: "parameter";
|
|
1469
|
+
parameter: ParameterInputShape;
|
|
1470
|
+
}
|
|
1471
|
+
interface InputShape_property {
|
|
1472
|
+
type: "property";
|
|
1473
|
+
property: PropertyInputShape;
|
|
1474
|
+
}
|
|
1475
|
+
interface InputShape_quiverDashboard {
|
|
1476
|
+
type: "quiverDashboard";
|
|
1477
|
+
quiverDashboard: QuiverDashboardShape;
|
|
1478
|
+
}
|
|
1479
|
+
interface InputShape_schedule {
|
|
1480
|
+
type: "schedule";
|
|
1481
|
+
schedule: ScheduleShape;
|
|
1482
|
+
}
|
|
1483
|
+
interface InputShape_sharedPropertyType {
|
|
1484
|
+
type: "sharedPropertyType";
|
|
1485
|
+
sharedPropertyType: SharedPropertyTypeInputShape;
|
|
1486
|
+
}
|
|
1487
|
+
interface InputShape_slateApplication {
|
|
1488
|
+
type: "slateApplication";
|
|
1489
|
+
slateApplication: SlateApplicationInputShape;
|
|
1490
|
+
}
|
|
1491
|
+
interface InputShape_solutionDesign {
|
|
1492
|
+
type: "solutionDesign";
|
|
1493
|
+
solutionDesign: SolutionDesignShape;
|
|
1494
|
+
}
|
|
1495
|
+
interface InputShape_sparkProfile {
|
|
1496
|
+
type: "sparkProfile";
|
|
1497
|
+
sparkProfile: SparkProfileShape;
|
|
1498
|
+
}
|
|
1499
|
+
interface InputShape_tabularDatasource {
|
|
1500
|
+
type: "tabularDatasource";
|
|
1501
|
+
tabularDatasource: TabularDatasourceInputShape;
|
|
1502
|
+
}
|
|
1503
|
+
interface InputShape_taurusWorkflow {
|
|
1504
|
+
type: "taurusWorkflow";
|
|
1505
|
+
taurusWorkflow: TaurusWorkflowShape;
|
|
1506
|
+
}
|
|
1507
|
+
interface InputShape_thirdPartyApplication {
|
|
1508
|
+
type: "thirdPartyApplication";
|
|
1509
|
+
thirdPartyApplication: ThirdPartyApplicationShape;
|
|
1510
|
+
}
|
|
1511
|
+
interface InputShape_timeSeriesSync {
|
|
1512
|
+
type: "timeSeriesSync";
|
|
1513
|
+
timeSeriesSync: TimeSeriesSyncShape;
|
|
1514
|
+
}
|
|
1515
|
+
interface InputShape_valueType {
|
|
1516
|
+
type: "valueType";
|
|
1517
|
+
valueType: ValueTypeShape;
|
|
1518
|
+
}
|
|
1519
|
+
interface InputShape_vectorWorkbook {
|
|
1520
|
+
type: "vectorWorkbook";
|
|
1521
|
+
vectorWorkbook: VectorWorkbookShape;
|
|
1522
|
+
}
|
|
1523
|
+
interface InputShape_vertexTemplate {
|
|
1524
|
+
type: "vertexTemplate";
|
|
1525
|
+
vertexTemplate: VertexTemplateShape;
|
|
1526
|
+
}
|
|
1527
|
+
interface InputShape_vortexTemplate {
|
|
1528
|
+
type: "vortexTemplate";
|
|
1529
|
+
vortexTemplate: VortexTemplateShape;
|
|
1530
|
+
}
|
|
1531
|
+
interface InputShape_walkthrough {
|
|
1532
|
+
type: "walkthrough";
|
|
1533
|
+
walkthrough: WalkthroughShape;
|
|
1534
|
+
}
|
|
1535
|
+
interface InputShape_webhook {
|
|
1536
|
+
type: "webhook";
|
|
1537
|
+
webhook: WebhookShape;
|
|
1538
|
+
}
|
|
1539
|
+
interface InputShape_widget {
|
|
1540
|
+
type: "widget";
|
|
1541
|
+
widget: WidgetShape;
|
|
1542
|
+
}
|
|
1543
|
+
interface InputShape_widgetSet {
|
|
1544
|
+
type: "widgetSet";
|
|
1545
|
+
widgetSet: WidgetSetShape;
|
|
1546
|
+
}
|
|
1547
|
+
interface InputShape_workshopApplication {
|
|
1548
|
+
type: "workshopApplication";
|
|
1549
|
+
workshopApplication: WorkshopApplicationInputShape;
|
|
1550
|
+
}
|
|
1551
|
+
interface InputShape_workshopApplicationSaveLocation {
|
|
1552
|
+
type: "workshopApplicationSaveLocation";
|
|
1553
|
+
workshopApplicationSaveLocation: WorkshopApplicationSaveLocationInputShape;
|
|
1554
|
+
}
|
|
1555
|
+
/**
|
|
1556
|
+
* An input must have an about field of type `LocalizedTitleAndDescription`. This is what the FE uses to render
|
|
1557
|
+
* the input. Users may override this default about about using `updatePendingInputShapeAbout`.
|
|
1558
|
+
*/
|
|
1559
|
+
type InputShape = InputShape_action | InputShape_actionParameter | InputShape_allowOntologySchemaMigrations | InputShape_aipAgent | InputShape_artifactsRepository | InputShape_authoringLibrary | InputShape_authoringRepository | InputShape_automation | InputShape_carbonWorkspace | InputShape_cipherLicense | InputShape_cipherLicenseV2 | InputShape_blobsterResource | InputShape_cipherChannel | InputShape_codeWorkspace | InputShape_codeWorkspaceLicense | InputShape_compassResource | InputShape_contourAnalysis | InputShape_dataHealthCheck | InputShape_dataHealthCheckGroup | InputShape_datasourceColumn | InputShape_deployedApp | InputShape_eddieParameter | InputShape_eddieParameterV2 | InputShape_eddiePipeline | InputShape_eddieReplayOption | InputShape_eddieGeotimeConfiguration | InputShape_eddieEdgeParameter | InputShape_edgePipelineMagritteSource | InputShape_evaluationSuite | InputShape_filesDatasource | InputShape_flinkProfile | InputShape_function | InputShape_functionContract | InputShape_fusionDocument | InputShape_geotimeSeriesIntegration | InputShape_interfaceType | InputShape_interfaceLinkType | InputShape_interfacePropertyType | InputShape_installPrefix | InputShape_linkType | InputShape_languageModel | InputShape_logic | InputShape_logicFunction | InputShape_machinery | InputShape_magritteConnection | InputShape_magritteExport | InputShape_magritteSource | InputShape_magritteSourceConfigOverrides | InputShape_magritteStreamingExtractConfigOverrides | InputShape_markings | InputShape_model | InputShape_monitorView | InputShape_monocleGraph | InputShape_multipassUserAttribute | InputShape_multipassGroup | InputShape_namedCredential | InputShape_networkEgressPolicy | InputShape_notepadDocument | InputShape_notepadTemplate | InputShape_notepadTemplateParameter | InputShape_objectInstance | InputShape_objectSet | InputShape_objectType | InputShape_objectView | InputShape_objectViewTab | InputShape_ontologyDatasource | InputShape_ontologyDatasourceRetention | InputShape_ontologySdk | InputShape_overrideOntologyEntityApiNames | InputShape_parameter | InputShape_property | InputShape_quiverDashboard | InputShape_schedule | InputShape_sharedPropertyType | InputShape_slateApplication | InputShape_solutionDesign | InputShape_sparkProfile | InputShape_tabularDatasource | InputShape_taurusWorkflow | InputShape_thirdPartyApplication | InputShape_timeSeriesSync | InputShape_valueType | InputShape_vectorWorkbook | InputShape_vertexTemplate | InputShape_vortexTemplate | InputShape_walkthrough | InputShape_webhook | InputShape_widget | InputShape_widgetSet | InputShape_workshopApplication | InputShape_workshopApplicationSaveLocation;
|
|
1560
|
+
interface InputShapeMetadata {
|
|
1561
|
+
isAccessedInReconcile: boolean;
|
|
1562
|
+
isOptional: boolean;
|
|
1563
|
+
preallocateAccessRequirements?: PreallocateAccessRequirementType | null | undefined;
|
|
1564
|
+
reconcileAccessRequirements?: ReconcileAccessRequirementType | null | undefined;
|
|
1565
|
+
}
|
|
1566
|
+
interface InstallationMode_bootstrap {
|
|
1567
|
+
type: "bootstrap";
|
|
1568
|
+
bootstrap: Void;
|
|
1569
|
+
}
|
|
1570
|
+
interface InstallationMode_production {
|
|
1571
|
+
type: "production";
|
|
1572
|
+
production: Void;
|
|
1573
|
+
}
|
|
1574
|
+
interface InstallationMode_singleton {
|
|
1575
|
+
type: "singleton";
|
|
1576
|
+
singleton: Void;
|
|
1577
|
+
}
|
|
1578
|
+
/**
|
|
1579
|
+
* The installation mode associated with the product. The expectation is that integrators do not do anything with
|
|
1580
|
+
* bootstrap or production. For singleton the expectation is that integrations validate and enforce api name
|
|
1581
|
+
* uniqueness in the namespace/ontology.
|
|
1582
|
+
*/
|
|
1583
|
+
type InstallationMode = InstallationMode_bootstrap | InstallationMode_production | InstallationMode_singleton;
|
|
1584
|
+
/**
|
|
1585
|
+
* This shape is intended to represent a user-provided string input that will be applied
|
|
1586
|
+
* as a prefix to display names of output resources. The mechanism for applying this prefix
|
|
1587
|
+
* will depend on the service responsible for creating the resource and the resource type.
|
|
1588
|
+
*
|
|
1589
|
+
* For example a prefix "demo" applied to an Object Type with display name "Passenger" will
|
|
1590
|
+
* result in the display name being "[Demo] Passenger".
|
|
1591
|
+
*
|
|
1592
|
+
* A few constraints that Marketplace will enforce:
|
|
1593
|
+
* - Within a block-set all blocks must use the same prefix. At packaging time the `ResolvedInstallPrefixShape`
|
|
1594
|
+
* should have "" (empty string) prefix so prefix inputs from across blocks will all get
|
|
1595
|
+
* coalesced by Installation Hints.
|
|
1596
|
+
* - For every block there can only be at most one InstallPrefix input, else the mapping of prefix -> output
|
|
1597
|
+
* resource becomes ambiguous.
|
|
1598
|
+
*/
|
|
1599
|
+
interface InstallPrefixShape {
|
|
1600
|
+
about: LocalizedTitleAndDescription;
|
|
1601
|
+
}
|
|
1602
|
+
/**
|
|
1603
|
+
* IntegerListType specifies that this parameter must be a list of Integers.
|
|
1604
|
+
*/
|
|
1605
|
+
interface IntegerListType {
|
|
1606
|
+
}
|
|
1607
|
+
/**
|
|
1608
|
+
* IntegerType specifies that this parameter must be an Integer.
|
|
1609
|
+
*/
|
|
1610
|
+
interface IntegerType {
|
|
1611
|
+
}
|
|
1612
|
+
type InterfaceLinkTypeCardinality = "SINGLE" | "MANY";
|
|
1613
|
+
interface InterfaceLinkTypeInputShape {
|
|
1614
|
+
about: LocalizedTitleAndDescription;
|
|
1615
|
+
cardinality: InterfaceLinkTypeCardinality;
|
|
1616
|
+
interfaceType: InterfaceTypeReference;
|
|
1617
|
+
linkedEntityType: LinkedEntityTypeReference;
|
|
1618
|
+
required: boolean;
|
|
1619
|
+
}
|
|
1620
|
+
interface InterfaceLinkTypeOutputShape {
|
|
1621
|
+
about: LocalizedTitleAndDescription;
|
|
1622
|
+
cardinality: InterfaceLinkTypeCardinality;
|
|
1623
|
+
interfaceType: InterfaceTypeReference;
|
|
1624
|
+
linkedEntityType: LinkedEntityTypeReference;
|
|
1625
|
+
required: boolean;
|
|
1626
|
+
}
|
|
1627
|
+
type InterfaceLinkTypeReference = BlockInternalId;
|
|
1628
|
+
type InterfaceLinkTypeRid = string;
|
|
1629
|
+
/**
|
|
1630
|
+
* InterfaceObjectSetRidType specifies that this parameter must be an ObjectSetRid of ObjectTypes implementing
|
|
1631
|
+
* the specified interface type.
|
|
1632
|
+
*/
|
|
1633
|
+
interface InterfaceObjectSetRidType {
|
|
1634
|
+
interfaceTypeRid: InterfaceTypeReference;
|
|
1635
|
+
}
|
|
1636
|
+
interface InterfaceParameterPropertyValue {
|
|
1637
|
+
parameterId: ActionTypeParameterReference;
|
|
1638
|
+
sharedPropertyTypeRid: SharedPropertyTypeReference;
|
|
1639
|
+
}
|
|
1640
|
+
interface InterfacePropertyTypeInputShape {
|
|
1641
|
+
about: LocalizedTitleAndDescription;
|
|
1642
|
+
interfaceType: InterfaceTypeReference;
|
|
1643
|
+
requireImplementation: boolean;
|
|
1644
|
+
sharedPropertyType?: SharedPropertyTypeReference | null | undefined;
|
|
1645
|
+
type: AllowedObjectPropertyType;
|
|
1646
|
+
}
|
|
1647
|
+
interface InterfacePropertyTypeOutputShape {
|
|
1648
|
+
about: LocalizedTitleAndDescription;
|
|
1649
|
+
interfaceType: InterfaceTypeReference;
|
|
1650
|
+
requireImplementation: boolean;
|
|
1651
|
+
sharedPropertyType?: SharedPropertyTypeReference | null | undefined;
|
|
1652
|
+
type: ObjectPropertyType;
|
|
1653
|
+
}
|
|
1654
|
+
type InterfacePropertyTypeReference = BlockInternalId;
|
|
1655
|
+
type InterfacePropertyTypeRid = string;
|
|
1656
|
+
interface InterfaceReferenceListType {
|
|
1657
|
+
interfaceTypeRid: InterfaceTypeReference;
|
|
1658
|
+
}
|
|
1659
|
+
interface InterfaceReferenceType {
|
|
1660
|
+
interfaceTypeRid: InterfaceTypeReference;
|
|
1661
|
+
}
|
|
1662
|
+
interface InterfaceTypeInputShape {
|
|
1663
|
+
about: LocalizedTitleAndDescription;
|
|
1664
|
+
links: Array<InterfaceLinkTypeReference>;
|
|
1665
|
+
properties: Array<SharedPropertyTypeReference>;
|
|
1666
|
+
propertiesV2: Array<InterfacePropertyTypeReference>;
|
|
1667
|
+
}
|
|
1668
|
+
interface InterfaceTypeOutputShape {
|
|
1669
|
+
about: LocalizedTitleAndDescription;
|
|
1670
|
+
extendsInterfaces: Array<InterfaceTypeReference>;
|
|
1671
|
+
links: Array<InterfaceLinkTypeReference>;
|
|
1672
|
+
properties: Array<SharedPropertyTypeReference>;
|
|
1673
|
+
propertiesV2: Array<InterfacePropertyTypeReference>;
|
|
1674
|
+
}
|
|
1675
|
+
type InterfaceTypeReference = BlockInternalId;
|
|
1676
|
+
type InterfaceTypeRid = string;
|
|
1677
|
+
interface Jpeg2000Format {
|
|
1678
|
+
}
|
|
1679
|
+
interface JpgFormat {
|
|
1680
|
+
}
|
|
1681
|
+
interface LanguageModelShape {
|
|
1682
|
+
about: LocalizedTitleAndDescription;
|
|
1683
|
+
}
|
|
1684
|
+
/**
|
|
1685
|
+
* Represents the type of product the license supports.
|
|
1686
|
+
*/
|
|
1687
|
+
type LicenseProductType = "RSTUDIO";
|
|
1688
|
+
interface LinkedEntityTypeReference_objectType {
|
|
1689
|
+
type: "objectType";
|
|
1690
|
+
objectType: ObjectTypeReference;
|
|
1691
|
+
}
|
|
1692
|
+
interface LinkedEntityTypeReference_interfaceType {
|
|
1693
|
+
type: "interfaceType";
|
|
1694
|
+
interfaceType: InterfaceTypeReference;
|
|
1695
|
+
}
|
|
1696
|
+
type LinkedEntityTypeReference = LinkedEntityTypeReference_objectType | LinkedEntityTypeReference_interfaceType;
|
|
1697
|
+
interface LinkTypeInputShape_oneToMany {
|
|
1698
|
+
type: "oneToMany";
|
|
1699
|
+
oneToMany: LinkTypeOneToManyShape;
|
|
1700
|
+
}
|
|
1701
|
+
interface LinkTypeInputShape_manyToMany {
|
|
1702
|
+
type: "manyToMany";
|
|
1703
|
+
manyToMany: LinkTypeManyToManyInputShape;
|
|
1704
|
+
}
|
|
1705
|
+
interface LinkTypeInputShape_intermediary {
|
|
1706
|
+
type: "intermediary";
|
|
1707
|
+
intermediary: LinkTypeIntermediaryShape;
|
|
1708
|
+
}
|
|
1709
|
+
type LinkTypeInputShape = LinkTypeInputShape_oneToMany | LinkTypeInputShape_manyToMany | LinkTypeInputShape_intermediary;
|
|
1710
|
+
interface LinkTypeIntermediaryShape {
|
|
1711
|
+
about: LocalizedTitleAndDescription;
|
|
1712
|
+
aToIntermediaryLinkTypeShapeId: LinkTypeReference;
|
|
1713
|
+
intermediaryObjectTypeShapeId: ObjectTypeReference;
|
|
1714
|
+
intermediaryToBLinkTypeShapeId: LinkTypeReference;
|
|
1715
|
+
objectTypeAShapeId: ObjectTypeReference;
|
|
1716
|
+
objectTypeAToBLinkMetadata: LocalizedTitleAndDescription;
|
|
1717
|
+
objectTypeBShapeId: ObjectTypeReference;
|
|
1718
|
+
objectTypeBToALinkMetadata: LocalizedTitleAndDescription;
|
|
1719
|
+
}
|
|
1720
|
+
interface LinkTypeManyToManyInputShape {
|
|
1721
|
+
about: LocalizedTitleAndDescription;
|
|
1722
|
+
editsSupport: InputEditsSupport;
|
|
1723
|
+
objectsBackendVersion: InputObjectBackendVersion;
|
|
1724
|
+
objectTypeAToBLinkMetadata: LocalizedTitleAndDescription;
|
|
1725
|
+
objectTypeBToALinkMetadata: LocalizedTitleAndDescription;
|
|
1726
|
+
objectTypeShapeIdA: ObjectTypeReference;
|
|
1727
|
+
objectTypeShapeIdB: ObjectTypeReference;
|
|
1728
|
+
}
|
|
1729
|
+
interface LinkTypeManyToManyOutputShape {
|
|
1730
|
+
about: LocalizedTitleAndDescription;
|
|
1731
|
+
editsSupport: OutputEditsSupport;
|
|
1732
|
+
objectsBackendVersion: OutputObjectBackendVersion;
|
|
1733
|
+
objectTypeAToBLinkMetadata: LocalizedTitleAndDescription;
|
|
1734
|
+
objectTypeBToALinkMetadata: LocalizedTitleAndDescription;
|
|
1735
|
+
objectTypeShapeIdA: ObjectTypeReference;
|
|
1736
|
+
objectTypeShapeIdB: ObjectTypeReference;
|
|
1737
|
+
}
|
|
1738
|
+
interface LinkTypeOneToManyShape {
|
|
1739
|
+
about: LocalizedTitleAndDescription;
|
|
1740
|
+
cardinalityHint?: OneToManyLinkCardinalityHint | null | undefined;
|
|
1741
|
+
manyToOneLinkMetadata: LocalizedTitleAndDescription;
|
|
1742
|
+
objectTypeShapeIdManySide: ObjectTypeReference;
|
|
1743
|
+
objectTypeShapeIdOneSide: ObjectTypeReference;
|
|
1744
|
+
oneToManyLinkMetadata: LocalizedTitleAndDescription;
|
|
1745
|
+
}
|
|
1746
|
+
interface LinkTypeOutputShape_oneToMany {
|
|
1747
|
+
type: "oneToMany";
|
|
1748
|
+
oneToMany: LinkTypeOneToManyShape;
|
|
1749
|
+
}
|
|
1750
|
+
interface LinkTypeOutputShape_manyToMany {
|
|
1751
|
+
type: "manyToMany";
|
|
1752
|
+
manyToMany: LinkTypeManyToManyOutputShape;
|
|
1753
|
+
}
|
|
1754
|
+
interface LinkTypeOutputShape_intermediary {
|
|
1755
|
+
type: "intermediary";
|
|
1756
|
+
intermediary: LinkTypeIntermediaryShape;
|
|
1757
|
+
}
|
|
1758
|
+
type LinkTypeOutputShape = LinkTypeOutputShape_oneToMany | LinkTypeOutputShape_manyToMany | LinkTypeOutputShape_intermediary;
|
|
1759
|
+
type LinkTypeReference = BlockInternalId;
|
|
1760
|
+
type LinkTypeRid = string;
|
|
1761
|
+
/**
|
|
1762
|
+
* A language/locale identifier as per [RFC-5646](https://datatracker.ietf.org/doc/html/rfc5646).
|
|
1763
|
+
*
|
|
1764
|
+
* When matching, will preferentially match the most specific applicable identifier (e.g. `en-GB`
|
|
1765
|
+
* will match to `en` only if `en-GB` isn't available).
|
|
1766
|
+
*/
|
|
1767
|
+
type Locale = string;
|
|
1768
|
+
/**
|
|
1769
|
+
* A localized description for the given resource.
|
|
1770
|
+
*/
|
|
1771
|
+
type LocalizedDescription = string;
|
|
1772
|
+
/**
|
|
1773
|
+
* A localized title for the given resource.
|
|
1774
|
+
*/
|
|
1775
|
+
type LocalizedTitle = string;
|
|
1776
|
+
/**
|
|
1777
|
+
* A localization-aware title and description.
|
|
1778
|
+
*/
|
|
1779
|
+
interface LocalizedTitleAndDescription {
|
|
1780
|
+
fallbackDescription: string;
|
|
1781
|
+
fallbackTitle: string;
|
|
1782
|
+
localizedDescription: Record<Locale, LocalizedDescription>;
|
|
1783
|
+
localizedTitle: Record<Locale, LocalizedTitle>;
|
|
1784
|
+
}
|
|
1785
|
+
/**
|
|
1786
|
+
* / This is the shape of a single LogicFunction pinned at a VersionId within a LogicFile. A LogicFile might have many LogicFunctions, and many versions of each function. The LogicFunctionShape typically has a 1x1 mapping with a function registry function
|
|
1787
|
+
*/
|
|
1788
|
+
interface LogicFunctionShape {
|
|
1789
|
+
about: LocalizedTitleAndDescription;
|
|
1790
|
+
inputs: Array<LogicInputArgument>;
|
|
1791
|
+
logic: LogicReference;
|
|
1792
|
+
output: LogicOutputArgument;
|
|
1793
|
+
}
|
|
1794
|
+
interface LogicInputArgument {
|
|
1795
|
+
about: LocalizedTitleAndDescription;
|
|
1796
|
+
input: LogicInputParameterType;
|
|
1797
|
+
}
|
|
1798
|
+
interface LogicInputParameterType_unspecified {
|
|
1799
|
+
type: "unspecified";
|
|
1800
|
+
unspecified: UnspecifiedParameterType;
|
|
1801
|
+
}
|
|
1802
|
+
/**
|
|
1803
|
+
* A list of renderable parameter types that marketplace <-> eddie supports.
|
|
1804
|
+
* For now we only use
|
|
1805
|
+
*/
|
|
1806
|
+
type LogicInputParameterType = LogicInputParameterType_unspecified;
|
|
1807
|
+
interface LogicOutputArgument {
|
|
1808
|
+
about: LocalizedTitleAndDescription;
|
|
1809
|
+
input: LogicOutputParameterType;
|
|
1810
|
+
}
|
|
1811
|
+
interface LogicOutputParameterType_unspecified {
|
|
1812
|
+
type: "unspecified";
|
|
1813
|
+
unspecified: UnspecifiedParameterType;
|
|
1814
|
+
}
|
|
1815
|
+
/**
|
|
1816
|
+
* A list of renderable output types that marketplace <-> Eddie supports.
|
|
1817
|
+
*/
|
|
1818
|
+
type LogicOutputParameterType = LogicOutputParameterType_unspecified;
|
|
1819
|
+
type LogicReference = BlockInternalId;
|
|
1820
|
+
/**
|
|
1821
|
+
* / This is the shape of the Logic compass resource
|
|
1822
|
+
*/
|
|
1823
|
+
interface LogicShape {
|
|
1824
|
+
about: LocalizedTitleAndDescription;
|
|
1825
|
+
}
|
|
1826
|
+
/**
|
|
1827
|
+
* LongListType specifies that this parameter must be a list of Longs.
|
|
1828
|
+
*/
|
|
1829
|
+
interface LongListType {
|
|
1830
|
+
}
|
|
1831
|
+
/**
|
|
1832
|
+
* LongType specifies that this parameter must be a Long.
|
|
1833
|
+
*/
|
|
1834
|
+
interface LongType {
|
|
1835
|
+
}
|
|
1836
|
+
interface MachineryProcessShape {
|
|
1837
|
+
about: LocalizedTitleAndDescription;
|
|
1838
|
+
}
|
|
1839
|
+
type MagritteApiName = string;
|
|
1840
|
+
interface MagritteConnectionInputShape {
|
|
1841
|
+
about: LocalizedTitleAndDescription;
|
|
1842
|
+
connectionType: MagritteConnectionType;
|
|
1843
|
+
sourceReference: MagritteSourceReference;
|
|
1844
|
+
}
|
|
1845
|
+
/**
|
|
1846
|
+
* The type of connection. e.g. "http".
|
|
1847
|
+
*/
|
|
1848
|
+
type MagritteConnectionType = string;
|
|
1849
|
+
interface MagritteExportShape {
|
|
1850
|
+
about: LocalizedTitleAndDescription;
|
|
1851
|
+
}
|
|
1852
|
+
/**
|
|
1853
|
+
* Output shape representing Magritte batch extracts.
|
|
1854
|
+
*/
|
|
1855
|
+
interface MagritteExtractOutputShape {
|
|
1856
|
+
about: LocalizedTitleAndDescription;
|
|
1857
|
+
}
|
|
1858
|
+
type MagritteSecretName = string;
|
|
1859
|
+
interface MagritteSourceConfigOverridesInputShape {
|
|
1860
|
+
about: LocalizedTitleAndDescription;
|
|
1861
|
+
stableId: StableShapeIdentifier;
|
|
1862
|
+
}
|
|
1863
|
+
interface MagritteSourceInputShape {
|
|
1864
|
+
about: LocalizedTitleAndDescription;
|
|
1865
|
+
requiredApiName?: MagritteApiName | null | undefined;
|
|
1866
|
+
requiredSecrets: Array<MagritteSecretName>;
|
|
1867
|
+
sourceType: MagritteSourceType;
|
|
1868
|
+
sourceUsageRestrictions: Array<MagritteSourceUsageRestriction>;
|
|
1869
|
+
}
|
|
1870
|
+
interface MagritteSourceOutputShape {
|
|
1871
|
+
about: LocalizedTitleAndDescription;
|
|
1872
|
+
sourceType: MagritteSourceType;
|
|
1873
|
+
}
|
|
1874
|
+
type MagritteSourceReference = BlockInternalId;
|
|
1875
|
+
type MagritteSourceType = string;
|
|
1876
|
+
interface MagritteSourceUsageRestriction_stemmaRepository {
|
|
1877
|
+
type: "stemmaRepository";
|
|
1878
|
+
stemmaRepository: StemmaRepositoryType;
|
|
1879
|
+
}
|
|
1880
|
+
interface MagritteSourceUsageRestriction_computeModule {
|
|
1881
|
+
type: "computeModule";
|
|
1882
|
+
computeModule: ComputeModuleType;
|
|
1883
|
+
}
|
|
1884
|
+
interface MagritteSourceUsageRestriction_eddiePipeline {
|
|
1885
|
+
type: "eddiePipeline";
|
|
1886
|
+
eddiePipeline: EddiePipelineType;
|
|
1887
|
+
}
|
|
1888
|
+
type MagritteSourceUsageRestriction = MagritteSourceUsageRestriction_stemmaRepository | MagritteSourceUsageRestriction_computeModule | MagritteSourceUsageRestriction_eddiePipeline;
|
|
1889
|
+
interface MagritteStreamingExtractConfigOverridesInputShape {
|
|
1890
|
+
about: LocalizedTitleAndDescription;
|
|
1891
|
+
stableId: StableShapeIdentifier;
|
|
1892
|
+
}
|
|
1893
|
+
/**
|
|
1894
|
+
* Output shape representing Magritte streaming Extracts.
|
|
1895
|
+
*/
|
|
1896
|
+
interface MagritteStreamingExtractOutputShape {
|
|
1897
|
+
about: LocalizedTitleAndDescription;
|
|
1898
|
+
}
|
|
1899
|
+
interface MapRendererSetOutputShape {
|
|
1900
|
+
about: LocalizedTitleAndDescription;
|
|
1901
|
+
}
|
|
1902
|
+
interface MapRendererSetOutputShapeV2 {
|
|
1903
|
+
about: LocalizedTitleAndDescription;
|
|
1904
|
+
}
|
|
1905
|
+
type MarkdownText = string;
|
|
1906
|
+
/**
|
|
1907
|
+
* MarkingListType specifies that this parameter must be a list of Markings.
|
|
1908
|
+
*/
|
|
1909
|
+
interface MarkingListType {
|
|
1910
|
+
}
|
|
1911
|
+
/**
|
|
1912
|
+
* MarkingOperation defines the level of user permissions required to install a package with this Marking. For
|
|
1913
|
+
* DECLASSIFY, the user must have declassify permissions on the marking. For USE, the user must have use
|
|
1914
|
+
* permissions on the marking. For NONE, no permissions are required to use this marking. NONE should only be set
|
|
1915
|
+
* by integrations that set Marking constraints on resources (e.g. the Ontology integration with Marking property
|
|
1916
|
+
* types).
|
|
1917
|
+
*/
|
|
1918
|
+
type MarkingOperation = "DECLASSIFY" | "USE" | "NONE";
|
|
1919
|
+
interface MarkingsShape {
|
|
1920
|
+
about: LocalizedTitleAndDescription;
|
|
1921
|
+
affectedShapes: Array<BlockInternalId>;
|
|
1922
|
+
operation: MarkingOperation;
|
|
1923
|
+
sizeConstraints?: MarkingsSizeConstraints | null | undefined;
|
|
1924
|
+
stableId?: StableShapeIdentifier | null | undefined;
|
|
1925
|
+
supportedMarkingsType?: SupportedMarkingsType | null | undefined;
|
|
1926
|
+
}
|
|
1927
|
+
interface MarkingsSizeConstraints {
|
|
1928
|
+
maxNumberInclusive: number;
|
|
1929
|
+
minNumberInclusive: number;
|
|
1930
|
+
}
|
|
1931
|
+
/**
|
|
1932
|
+
* MarkingType specifies that this parameter must be a CBAC or Madatory Marking type.
|
|
1933
|
+
*/
|
|
1934
|
+
interface MarkingType {
|
|
1935
|
+
}
|
|
1936
|
+
interface MavenLocator {
|
|
1937
|
+
path: string;
|
|
1938
|
+
}
|
|
1939
|
+
/**
|
|
1940
|
+
* MediaReferenceType specifies that this parameter must be a MediaReference.
|
|
1941
|
+
*/
|
|
1942
|
+
interface MediaReferenceType {
|
|
1943
|
+
}
|
|
1944
|
+
interface MediaSchema_document {
|
|
1945
|
+
type: "document";
|
|
1946
|
+
document: DocumentSchema;
|
|
1947
|
+
}
|
|
1948
|
+
interface MediaSchema_any {
|
|
1949
|
+
type: "any";
|
|
1950
|
+
any: Void;
|
|
1951
|
+
}
|
|
1952
|
+
interface MediaSchema_unspecified {
|
|
1953
|
+
type: "unspecified";
|
|
1954
|
+
unspecified: Void;
|
|
1955
|
+
}
|
|
1956
|
+
/**
|
|
1957
|
+
* deprecated
|
|
1958
|
+
*/
|
|
1959
|
+
type MediaSchema = MediaSchema_document | MediaSchema_any | MediaSchema_unspecified;
|
|
1960
|
+
/**
|
|
1961
|
+
* deprecated
|
|
1962
|
+
*/
|
|
1963
|
+
type MediaSchemaType = "ANY" | "IMAGERY" | "AUDIO" | "VIDEO" | "DOCUMENT" | "DICOM" | "SPREADSHEET" | "MULTIMODAL";
|
|
1964
|
+
interface MediaSchemaTypeV2_any {
|
|
1965
|
+
type: "any";
|
|
1966
|
+
any: AnySchema;
|
|
1967
|
+
}
|
|
1968
|
+
interface MediaSchemaTypeV2_imagery {
|
|
1969
|
+
type: "imagery";
|
|
1970
|
+
imagery: ImagerySchema;
|
|
1971
|
+
}
|
|
1972
|
+
interface MediaSchemaTypeV2_audio {
|
|
1973
|
+
type: "audio";
|
|
1974
|
+
audio: AudioSchema;
|
|
1975
|
+
}
|
|
1976
|
+
interface MediaSchemaTypeV2_document {
|
|
1977
|
+
type: "document";
|
|
1978
|
+
document: DocumentSchema;
|
|
1979
|
+
}
|
|
1980
|
+
interface MediaSchemaTypeV2_dicom {
|
|
1981
|
+
type: "dicom";
|
|
1982
|
+
dicom: DicomSchema;
|
|
1983
|
+
}
|
|
1984
|
+
interface MediaSchemaTypeV2_spreadsheet {
|
|
1985
|
+
type: "spreadsheet";
|
|
1986
|
+
spreadsheet: SpreadsheetSchema;
|
|
1987
|
+
}
|
|
1988
|
+
interface MediaSchemaTypeV2_video {
|
|
1989
|
+
type: "video";
|
|
1990
|
+
video: VideoSchema;
|
|
1991
|
+
}
|
|
1992
|
+
interface MediaSchemaTypeV2_multiModal {
|
|
1993
|
+
type: "multiModal";
|
|
1994
|
+
multiModal: MultiModalSchema;
|
|
1995
|
+
}
|
|
1996
|
+
/**
|
|
1997
|
+
* updated media schema copied from mio-api without additional constraints
|
|
1998
|
+
*/
|
|
1999
|
+
type MediaSchemaTypeV2 = MediaSchemaTypeV2_any | MediaSchemaTypeV2_imagery | MediaSchemaTypeV2_audio | MediaSchemaTypeV2_document | MediaSchemaTypeV2_dicom | MediaSchemaTypeV2_spreadsheet | MediaSchemaTypeV2_video | MediaSchemaTypeV2_multiModal;
|
|
2000
|
+
interface MediaSetDatasourceType {
|
|
2001
|
+
mediaSchema: MediaSchema;
|
|
2002
|
+
mediaSchemaType?: MediaSchemaType | null | undefined;
|
|
2003
|
+
mediaSchemaTypeV2?: MediaSchemaTypeV2 | null | undefined;
|
|
2004
|
+
pathPolicy: PathPolicy;
|
|
2005
|
+
transactionPolicy?: MediaSetTransactionPolicy | null | undefined;
|
|
2006
|
+
}
|
|
2007
|
+
interface MediaSetLocator {
|
|
2008
|
+
branch: string;
|
|
2009
|
+
rid: string;
|
|
2010
|
+
}
|
|
2011
|
+
interface MediaSetTransactionPolicy_any {
|
|
2012
|
+
type: "any";
|
|
2013
|
+
any: Void;
|
|
2014
|
+
}
|
|
2015
|
+
interface MediaSetTransactionPolicy_batchTransactions {
|
|
2016
|
+
type: "batchTransactions";
|
|
2017
|
+
batchTransactions: Void;
|
|
2018
|
+
}
|
|
2019
|
+
interface MediaSetTransactionPolicy_noTransactions {
|
|
2020
|
+
type: "noTransactions";
|
|
2021
|
+
noTransactions: Void;
|
|
2022
|
+
}
|
|
2023
|
+
type MediaSetTransactionPolicy = MediaSetTransactionPolicy_any | MediaSetTransactionPolicy_batchTransactions | MediaSetTransactionPolicy_noTransactions;
|
|
2024
|
+
interface MkvVideoContainerFormat {
|
|
2025
|
+
}
|
|
2026
|
+
interface ModelInputShape {
|
|
2027
|
+
about: LocalizedTitleAndDescription;
|
|
2028
|
+
allowedTypes: Array<ModelType>;
|
|
2029
|
+
type: ModelType;
|
|
2030
|
+
}
|
|
2031
|
+
interface ModelOutputShape {
|
|
2032
|
+
about: LocalizedTitleAndDescription;
|
|
2033
|
+
buildRequirements?: DatasourceBuildRequirements | null | undefined;
|
|
2034
|
+
type: ModelType;
|
|
2035
|
+
}
|
|
2036
|
+
interface ModelType_container {
|
|
2037
|
+
type: "container";
|
|
2038
|
+
container: Void;
|
|
2039
|
+
}
|
|
2040
|
+
interface ModelType_binary {
|
|
2041
|
+
type: "binary";
|
|
2042
|
+
binary: Void;
|
|
2043
|
+
}
|
|
2044
|
+
interface ModelType_modelSourceNotMarketplaceCompatible {
|
|
2045
|
+
type: "modelSourceNotMarketplaceCompatible";
|
|
2046
|
+
modelSourceNotMarketplaceCompatible: Void;
|
|
2047
|
+
}
|
|
2048
|
+
type ModelType = ModelType_container | ModelType_binary | ModelType_modelSourceNotMarketplaceCompatible;
|
|
2049
|
+
interface MonitorShape {
|
|
2050
|
+
about: LocalizedTitleAndDescription;
|
|
2051
|
+
}
|
|
2052
|
+
interface MonitorViewShape {
|
|
2053
|
+
about: LocalizedTitleAndDescription;
|
|
2054
|
+
}
|
|
2055
|
+
interface MonocleGraphShape {
|
|
2056
|
+
about: LocalizedTitleAndDescription;
|
|
2057
|
+
}
|
|
2058
|
+
interface MovVideoContainerFormat {
|
|
2059
|
+
}
|
|
2060
|
+
interface Mp2Format {
|
|
2061
|
+
}
|
|
2062
|
+
interface Mp3Format {
|
|
2063
|
+
}
|
|
2064
|
+
interface Mp4AudioContainerFormat_singleStream {
|
|
2065
|
+
type: "singleStream";
|
|
2066
|
+
singleStream: SingleStreamMp4AudioContainerFormat;
|
|
2067
|
+
}
|
|
2068
|
+
/**
|
|
2069
|
+
* An audio only mp4 container. Does not contain any non-audio streams.
|
|
2070
|
+
*/
|
|
2071
|
+
type Mp4AudioContainerFormat = Mp4AudioContainerFormat_singleStream;
|
|
2072
|
+
interface Mp4VideoContainerFormat {
|
|
2073
|
+
}
|
|
2074
|
+
interface MultiModalSchema {
|
|
2075
|
+
}
|
|
2076
|
+
interface MultipassGroupShape {
|
|
2077
|
+
about: LocalizedTitleAndDescription;
|
|
2078
|
+
}
|
|
2079
|
+
interface MultipassUserAttributeShape {
|
|
2080
|
+
about: LocalizedTitleAndDescription;
|
|
2081
|
+
}
|
|
2082
|
+
interface NamedCredentialShape {
|
|
2083
|
+
about: LocalizedTitleAndDescription;
|
|
2084
|
+
secretNames: Array<SecretName>;
|
|
2085
|
+
}
|
|
2086
|
+
interface NetworkEgressPolicyShape {
|
|
2087
|
+
about: LocalizedTitleAndDescription;
|
|
2088
|
+
}
|
|
2089
|
+
/**
|
|
2090
|
+
* Although this often has the file extension .wav, it's a distinct format.
|
|
2091
|
+
* See https://www1.icsi.berkeley.edu/Speech/faq/wavfile-fmts.html
|
|
2092
|
+
*/
|
|
2093
|
+
interface NistSphereFormat {
|
|
2094
|
+
}
|
|
2095
|
+
interface NitfFormat {
|
|
2096
|
+
}
|
|
2097
|
+
/**
|
|
2098
|
+
* Notepad document that can be opened on its own or referenced in Workshop or Carbon.
|
|
2099
|
+
*/
|
|
2100
|
+
interface NotepadDocumentShape {
|
|
2101
|
+
about: LocalizedTitleAndDescription;
|
|
2102
|
+
}
|
|
2103
|
+
type NotepadTemplateParameterReference = BlockInternalId;
|
|
2104
|
+
interface NotepadTemplateParameterShape {
|
|
2105
|
+
about: LocalizedTitleAndDescription;
|
|
2106
|
+
template: NotepadTemplateReference;
|
|
2107
|
+
type: NotepadTemplateParameterType;
|
|
2108
|
+
}
|
|
2109
|
+
type NotepadTemplateParameterType = "DATE" | "NUMBER" | "OBJECT" | "OBJECT_SET" | "STRING" | "TIMESTAMP";
|
|
2110
|
+
type NotepadTemplateReference = BlockInternalId;
|
|
2111
|
+
/**
|
|
2112
|
+
* Notepad template that serves as a blueprint for generating new documents based on inputs.
|
|
2113
|
+
*/
|
|
2114
|
+
interface NotepadTemplateShape {
|
|
2115
|
+
about: LocalizedTitleAndDescription;
|
|
2116
|
+
parameters: Array<NotepadTemplateParameterReference>;
|
|
2117
|
+
}
|
|
2118
|
+
interface NpmLocator {
|
|
2119
|
+
name: string;
|
|
2120
|
+
version: string;
|
|
2121
|
+
}
|
|
2122
|
+
interface ObjectInstanceInputShape {
|
|
2123
|
+
about: LocalizedTitleAndDescription;
|
|
2124
|
+
objectTypeIdentifier: ObjectTypeReference;
|
|
2125
|
+
}
|
|
2126
|
+
interface ObjectParameterPropertyValue {
|
|
2127
|
+
parameterId: ActionTypeParameterReference;
|
|
2128
|
+
propertyTypeId: ObjectTypePropertyReference;
|
|
2129
|
+
}
|
|
2130
|
+
interface ObjectPropertyType_primitive {
|
|
2131
|
+
type: "primitive";
|
|
2132
|
+
primitive: PrimitiveObjectPropertyType;
|
|
2133
|
+
}
|
|
2134
|
+
interface ObjectPropertyType_array {
|
|
2135
|
+
type: "array";
|
|
2136
|
+
array: ArrayObjectPropertyType;
|
|
2137
|
+
}
|
|
2138
|
+
/**
|
|
2139
|
+
* Wrapper which refers to an Ontology property type and supports describing complex property types (array).
|
|
2140
|
+
*/
|
|
2141
|
+
type ObjectPropertyType = ObjectPropertyType_primitive | ObjectPropertyType_array;
|
|
2142
|
+
/**
|
|
2143
|
+
* ObjectReferenceListType specifies that this parameter must be a list of ObjectLocators.
|
|
2144
|
+
*/
|
|
2145
|
+
interface ObjectReferenceListType {
|
|
2146
|
+
objectTypeId: ObjectTypeReference;
|
|
2147
|
+
}
|
|
2148
|
+
/**
|
|
2149
|
+
* ObjectReferenceType specifies that this parameter must be an ObjectLocator.
|
|
2150
|
+
*/
|
|
2151
|
+
interface ObjectReferenceType {
|
|
2152
|
+
objectTypeId: ObjectTypeReference;
|
|
2153
|
+
}
|
|
2154
|
+
/**
|
|
2155
|
+
* ObjectSetRidType specifies that this parameter must be an ObjectSetRid.
|
|
2156
|
+
*/
|
|
2157
|
+
interface ObjectSetRidType {
|
|
2158
|
+
objectTypeId: ObjectTypeReference;
|
|
2159
|
+
}
|
|
2160
|
+
interface ObjectSetShape {
|
|
2161
|
+
about: LocalizedTitleAndDescription;
|
|
2162
|
+
}
|
|
2163
|
+
interface ObjectTypeInputShape {
|
|
2164
|
+
about: LocalizedTitleAndDescription;
|
|
2165
|
+
editsSupport: InputEditsSupport;
|
|
2166
|
+
objectsBackendVersion: InputObjectBackendVersion;
|
|
2167
|
+
propertyTypes: Array<ObjectTypePropertyReference>;
|
|
2168
|
+
}
|
|
2169
|
+
interface ObjectTypeOutputShape {
|
|
2170
|
+
about: LocalizedTitleAndDescription;
|
|
2171
|
+
editsSupport: OutputEditsSupport;
|
|
2172
|
+
objectsBackendVersion: OutputObjectBackendVersion;
|
|
2173
|
+
propertyTypes: Array<ObjectTypePropertyReference>;
|
|
2174
|
+
}
|
|
2175
|
+
type ObjectTypePropertyReference = BlockInternalId;
|
|
2176
|
+
type ObjectTypeReference = BlockInternalId;
|
|
2177
|
+
/**
|
|
2178
|
+
* An ObjectTypeReferenceType can be used to supply an object type to a function. This is useful for
|
|
2179
|
+
* addInterfaceRule where you need to specify what type of object you're creating.
|
|
2180
|
+
* NOTE: this is NOT an object instance.
|
|
2181
|
+
*/
|
|
2182
|
+
interface ObjectTypeReferenceType {
|
|
2183
|
+
}
|
|
2184
|
+
type ObjectTypeRid = string;
|
|
2185
|
+
type ObjectViewReference = BlockInternalId;
|
|
2186
|
+
interface ObjectViewShape {
|
|
2187
|
+
about: LocalizedTitleAndDescription;
|
|
2188
|
+
objectType: ObjectTypeReference;
|
|
2189
|
+
tabs: Array<ObjectViewTabReference>;
|
|
2190
|
+
}
|
|
2191
|
+
type ObjectViewTabReference = BlockInternalId;
|
|
2192
|
+
interface ObjectViewTabShape {
|
|
2193
|
+
about: LocalizedTitleAndDescription;
|
|
2194
|
+
objectView: ObjectViewReference;
|
|
2195
|
+
}
|
|
2196
|
+
interface OciLocator {
|
|
2197
|
+
name: string;
|
|
2198
|
+
tagOrDigest: TagOrDigest;
|
|
2199
|
+
}
|
|
2200
|
+
interface OggAudioContainerFormat_singleStream {
|
|
2201
|
+
type: "singleStream";
|
|
2202
|
+
singleStream: SingleStreamOggAudioContainerFormat;
|
|
2203
|
+
}
|
|
2204
|
+
/**
|
|
2205
|
+
* An audio-only ogg container.
|
|
2206
|
+
* See https://xiph.org/ogg/doc/oggstream.html
|
|
2207
|
+
*/
|
|
2208
|
+
type OggAudioContainerFormat = OggAudioContainerFormat_singleStream;
|
|
2209
|
+
interface OggAudioFormat_opus {
|
|
2210
|
+
type: "opus";
|
|
2211
|
+
opus: OpusFormat;
|
|
2212
|
+
}
|
|
2213
|
+
interface OggAudioFormat_vorbis {
|
|
2214
|
+
type: "vorbis";
|
|
2215
|
+
vorbis: VorbisFormat;
|
|
2216
|
+
}
|
|
2217
|
+
type OggAudioFormat = OggAudioFormat_opus | OggAudioFormat_vorbis;
|
|
2218
|
+
/**
|
|
2219
|
+
* This hint can be used to inform consumers whether the number of links on the many side of a
|
|
2220
|
+
* OneToManyLinkDefinition is intended to be one or more.
|
|
2221
|
+
*/
|
|
2222
|
+
type OneToManyLinkCardinalityHint = "ONE_TO_ONE" | "ONE_TO_MANY";
|
|
2223
|
+
interface OntologyDatasourceRetentionShape {
|
|
2224
|
+
about: LocalizedTitleAndDescription;
|
|
2225
|
+
id: StableShapeIdentifier;
|
|
2226
|
+
}
|
|
2227
|
+
interface OntologyDatasourceShape {
|
|
2228
|
+
about: LocalizedTitleAndDescription;
|
|
2229
|
+
ontologyEntity: OntologyEntityReference;
|
|
2230
|
+
}
|
|
2231
|
+
interface OntologyEntityReference_objectType {
|
|
2232
|
+
type: "objectType";
|
|
2233
|
+
objectType: ObjectTypeReference;
|
|
2234
|
+
}
|
|
2235
|
+
interface OntologyEntityReference_manyToManyLinkType {
|
|
2236
|
+
type: "manyToManyLinkType";
|
|
2237
|
+
manyToManyLinkType: LinkTypeReference;
|
|
2238
|
+
}
|
|
2239
|
+
type OntologyEntityReference = OntologyEntityReference_objectType | OntologyEntityReference_manyToManyLinkType;
|
|
2240
|
+
interface OntologySdkShape {
|
|
2241
|
+
about: LocalizedTitleAndDescription;
|
|
2242
|
+
}
|
|
2243
|
+
interface OntologySdkShapeV2 {
|
|
2244
|
+
about: LocalizedTitleAndDescription;
|
|
2245
|
+
}
|
|
2246
|
+
interface OpusFormat {
|
|
2247
|
+
}
|
|
2248
|
+
type OutputEditsSupport = "EDITS_ENABLED" | "EDITS_DISABLED";
|
|
2249
|
+
type OutputObjectBackendVersion = "V1" | "V2";
|
|
2250
|
+
interface OutputShape_action {
|
|
2251
|
+
type: "action";
|
|
2252
|
+
action: ActionTypeShape;
|
|
2253
|
+
}
|
|
2254
|
+
interface OutputShape_actionParameter {
|
|
2255
|
+
type: "actionParameter";
|
|
2256
|
+
actionParameter: ActionTypeParameterShape;
|
|
2257
|
+
}
|
|
2258
|
+
interface OutputShape_aipAgent {
|
|
2259
|
+
type: "aipAgent";
|
|
2260
|
+
aipAgent: AipAgentShape;
|
|
2261
|
+
}
|
|
2262
|
+
interface OutputShape_appConfigTitanium {
|
|
2263
|
+
type: "appConfigTitanium";
|
|
2264
|
+
appConfigTitanium: AppConfigOutputShape;
|
|
2265
|
+
}
|
|
2266
|
+
interface OutputShape_appConfig {
|
|
2267
|
+
type: "appConfig";
|
|
2268
|
+
appConfig: AppConfigOutputShape;
|
|
2269
|
+
}
|
|
2270
|
+
interface OutputShape_artifactsRepository {
|
|
2271
|
+
type: "artifactsRepository";
|
|
2272
|
+
artifactsRepository: ArtifactsRepositoryShape;
|
|
2273
|
+
}
|
|
2274
|
+
interface OutputShape_authoringLibrary {
|
|
2275
|
+
type: "authoringLibrary";
|
|
2276
|
+
authoringLibrary: AuthoringLibraryShape;
|
|
2277
|
+
}
|
|
2278
|
+
interface OutputShape_authoringRepository {
|
|
2279
|
+
type: "authoringRepository";
|
|
2280
|
+
authoringRepository: AuthoringRepositoryShape;
|
|
2281
|
+
}
|
|
2282
|
+
interface OutputShape_automation {
|
|
2283
|
+
type: "automation";
|
|
2284
|
+
automation: AutomationShape;
|
|
2285
|
+
}
|
|
2286
|
+
interface OutputShape_blobsterResource {
|
|
2287
|
+
type: "blobsterResource";
|
|
2288
|
+
blobsterResource: BlobsterResourceOutputShape;
|
|
2289
|
+
}
|
|
2290
|
+
interface OutputShape_carbonWorkspace {
|
|
2291
|
+
type: "carbonWorkspace";
|
|
2292
|
+
carbonWorkspace: CarbonWorkspaceOutputShape;
|
|
2293
|
+
}
|
|
2294
|
+
interface OutputShape_checkpointConfig {
|
|
2295
|
+
type: "checkpointConfig";
|
|
2296
|
+
checkpointConfig: CheckpointConfigOutputShape;
|
|
2297
|
+
}
|
|
2298
|
+
interface OutputShape_cipherChannel {
|
|
2299
|
+
type: "cipherChannel";
|
|
2300
|
+
cipherChannel: CipherChannelOutputShape;
|
|
2301
|
+
}
|
|
2302
|
+
interface OutputShape_cipherLicense {
|
|
2303
|
+
type: "cipherLicense";
|
|
2304
|
+
cipherLicense: CipherLicenseOutputShape;
|
|
2305
|
+
}
|
|
2306
|
+
interface OutputShape_codeWorkspace {
|
|
2307
|
+
type: "codeWorkspace";
|
|
2308
|
+
codeWorkspace: CodeWorkspaceOutputShape;
|
|
2309
|
+
}
|
|
2310
|
+
interface OutputShape_compassResource {
|
|
2311
|
+
type: "compassResource";
|
|
2312
|
+
compassResource: CompassResourceOutputShape;
|
|
2313
|
+
}
|
|
2314
|
+
interface OutputShape_contourAnalysis {
|
|
2315
|
+
type: "contourAnalysis";
|
|
2316
|
+
contourAnalysis: ContourAnalysisShape;
|
|
2317
|
+
}
|
|
2318
|
+
interface OutputShape_dataHealthCheck {
|
|
2319
|
+
type: "dataHealthCheck";
|
|
2320
|
+
dataHealthCheck: DataHealthCheckShape;
|
|
2321
|
+
}
|
|
2322
|
+
interface OutputShape_dataHealthCheckGroup {
|
|
2323
|
+
type: "dataHealthCheckGroup";
|
|
2324
|
+
dataHealthCheckGroup: DataHealthCheckGroupShape;
|
|
2325
|
+
}
|
|
2326
|
+
interface OutputShape_deployedApp {
|
|
2327
|
+
type: "deployedApp";
|
|
2328
|
+
deployedApp: DeployedAppShape;
|
|
2329
|
+
}
|
|
2330
|
+
interface OutputShape_datasourceColumn {
|
|
2331
|
+
type: "datasourceColumn";
|
|
2332
|
+
datasourceColumn: DatasourceColumnShape;
|
|
2333
|
+
}
|
|
2334
|
+
interface OutputShape_eddieEdgePipeline {
|
|
2335
|
+
type: "eddieEdgePipeline";
|
|
2336
|
+
eddieEdgePipeline: EddieEdgePipelineOutputShape;
|
|
2337
|
+
}
|
|
2338
|
+
interface OutputShape_eddiePipeline {
|
|
2339
|
+
type: "eddiePipeline";
|
|
2340
|
+
eddiePipeline: EddiePipelineShape;
|
|
2341
|
+
}
|
|
2342
|
+
interface OutputShape_evaluationSuite {
|
|
2343
|
+
type: "evaluationSuite";
|
|
2344
|
+
evaluationSuite: EvaluationSuiteShape;
|
|
2345
|
+
}
|
|
2346
|
+
interface OutputShape_filesDatasource {
|
|
2347
|
+
type: "filesDatasource";
|
|
2348
|
+
filesDatasource: FilesDatasourceOutputShape;
|
|
2349
|
+
}
|
|
2350
|
+
interface OutputShape_function {
|
|
2351
|
+
type: "function";
|
|
2352
|
+
function: FunctionShape;
|
|
2353
|
+
}
|
|
2354
|
+
interface OutputShape_functionConfiguration {
|
|
2355
|
+
type: "functionConfiguration";
|
|
2356
|
+
functionConfiguration: FunctionConfigurationShape;
|
|
2357
|
+
}
|
|
2358
|
+
interface OutputShape_geotimeSeriesIntegration {
|
|
2359
|
+
type: "geotimeSeriesIntegration";
|
|
2360
|
+
geotimeSeriesIntegration: GeotimeSeriesIntegrationShape;
|
|
2361
|
+
}
|
|
2362
|
+
interface OutputShape_interfaceType {
|
|
2363
|
+
type: "interfaceType";
|
|
2364
|
+
interfaceType: InterfaceTypeOutputShape;
|
|
2365
|
+
}
|
|
2366
|
+
interface OutputShape_interfaceLinkType {
|
|
2367
|
+
type: "interfaceLinkType";
|
|
2368
|
+
interfaceLinkType: InterfaceLinkTypeOutputShape;
|
|
2369
|
+
}
|
|
2370
|
+
interface OutputShape_interfacePropertyType {
|
|
2371
|
+
type: "interfacePropertyType";
|
|
2372
|
+
interfacePropertyType: InterfacePropertyTypeOutputShape;
|
|
2373
|
+
}
|
|
2374
|
+
interface OutputShape_linkType {
|
|
2375
|
+
type: "linkType";
|
|
2376
|
+
linkType: LinkTypeOutputShape;
|
|
2377
|
+
}
|
|
2378
|
+
interface OutputShape_logic {
|
|
2379
|
+
type: "logic";
|
|
2380
|
+
logic: LogicShape;
|
|
2381
|
+
}
|
|
2382
|
+
interface OutputShape_logicFunction {
|
|
2383
|
+
type: "logicFunction";
|
|
2384
|
+
logicFunction: LogicFunctionShape;
|
|
2385
|
+
}
|
|
2386
|
+
interface OutputShape_machinery {
|
|
2387
|
+
type: "machinery";
|
|
2388
|
+
machinery: MachineryProcessShape;
|
|
2389
|
+
}
|
|
2390
|
+
interface OutputShape_magritteExport {
|
|
2391
|
+
type: "magritteExport";
|
|
2392
|
+
magritteExport: MagritteExportShape;
|
|
2393
|
+
}
|
|
2394
|
+
interface OutputShape_magritteExtract {
|
|
2395
|
+
type: "magritteExtract";
|
|
2396
|
+
magritteExtract: MagritteExtractOutputShape;
|
|
2397
|
+
}
|
|
2398
|
+
interface OutputShape_magritteSource {
|
|
2399
|
+
type: "magritteSource";
|
|
2400
|
+
magritteSource: MagritteSourceOutputShape;
|
|
2401
|
+
}
|
|
2402
|
+
interface OutputShape_magritteStreamingExtract {
|
|
2403
|
+
type: "magritteStreamingExtract";
|
|
2404
|
+
magritteStreamingExtract: MagritteStreamingExtractOutputShape;
|
|
2405
|
+
}
|
|
2406
|
+
interface OutputShape_model {
|
|
2407
|
+
type: "model";
|
|
2408
|
+
model: ModelOutputShape;
|
|
2409
|
+
}
|
|
2410
|
+
interface OutputShape_monitor {
|
|
2411
|
+
type: "monitor";
|
|
2412
|
+
monitor: MonitorShape;
|
|
2413
|
+
}
|
|
2414
|
+
interface OutputShape_monitorView {
|
|
2415
|
+
type: "monitorView";
|
|
2416
|
+
monitorView: MonitorViewShape;
|
|
2417
|
+
}
|
|
2418
|
+
interface OutputShape_mapRendererSet {
|
|
2419
|
+
type: "mapRendererSet";
|
|
2420
|
+
mapRendererSet: MapRendererSetOutputShape;
|
|
2421
|
+
}
|
|
2422
|
+
interface OutputShape_mapRendererSetV2 {
|
|
2423
|
+
type: "mapRendererSetV2";
|
|
2424
|
+
mapRendererSetV2: MapRendererSetOutputShapeV2;
|
|
2425
|
+
}
|
|
2426
|
+
interface OutputShape_namedCredential {
|
|
2427
|
+
type: "namedCredential";
|
|
2428
|
+
namedCredential: NamedCredentialShape;
|
|
2429
|
+
}
|
|
2430
|
+
interface OutputShape_networkEgressPolicy {
|
|
2431
|
+
type: "networkEgressPolicy";
|
|
2432
|
+
networkEgressPolicy: NetworkEgressPolicyShape;
|
|
2433
|
+
}
|
|
2434
|
+
interface OutputShape_notepadDocument {
|
|
2435
|
+
type: "notepadDocument";
|
|
2436
|
+
notepadDocument: NotepadDocumentShape;
|
|
2437
|
+
}
|
|
2438
|
+
interface OutputShape_notepadTemplate {
|
|
2439
|
+
type: "notepadTemplate";
|
|
2440
|
+
notepadTemplate: NotepadTemplateShape;
|
|
2441
|
+
}
|
|
2442
|
+
interface OutputShape_notepadTemplateParameter {
|
|
2443
|
+
type: "notepadTemplateParameter";
|
|
2444
|
+
notepadTemplateParameter: NotepadTemplateParameterShape;
|
|
2445
|
+
}
|
|
2446
|
+
interface OutputShape_objectSet {
|
|
2447
|
+
type: "objectSet";
|
|
2448
|
+
objectSet: ObjectSetShape;
|
|
2449
|
+
}
|
|
2450
|
+
interface OutputShape_objectType {
|
|
2451
|
+
type: "objectType";
|
|
2452
|
+
objectType: ObjectTypeOutputShape;
|
|
2453
|
+
}
|
|
2454
|
+
interface OutputShape_objectView {
|
|
2455
|
+
type: "objectView";
|
|
2456
|
+
objectView: ObjectViewShape;
|
|
2457
|
+
}
|
|
2458
|
+
interface OutputShape_objectViewTab {
|
|
2459
|
+
type: "objectViewTab";
|
|
2460
|
+
objectViewTab: ObjectViewTabShape;
|
|
2461
|
+
}
|
|
2462
|
+
interface OutputShape_ontologyDatasource {
|
|
2463
|
+
type: "ontologyDatasource";
|
|
2464
|
+
ontologyDatasource: OntologyDatasourceShape;
|
|
2465
|
+
}
|
|
2466
|
+
interface OutputShape_property {
|
|
2467
|
+
type: "property";
|
|
2468
|
+
property: PropertyOutputShape;
|
|
2469
|
+
}
|
|
2470
|
+
interface OutputShape_quiverDashboard {
|
|
2471
|
+
type: "quiverDashboard";
|
|
2472
|
+
quiverDashboard: QuiverDashboardShape;
|
|
2473
|
+
}
|
|
2474
|
+
interface OutputShape_resourceUpdatesContent {
|
|
2475
|
+
type: "resourceUpdatesContent";
|
|
2476
|
+
resourceUpdatesContent: ResourceUpdatesContentOutputShape;
|
|
2477
|
+
}
|
|
2478
|
+
interface OutputShape_rosettaDocsBundle {
|
|
2479
|
+
type: "rosettaDocsBundle";
|
|
2480
|
+
rosettaDocsBundle: RosettaDocsBundleShape;
|
|
2481
|
+
}
|
|
2482
|
+
interface OutputShape_ontologySdk {
|
|
2483
|
+
type: "ontologySdk";
|
|
2484
|
+
ontologySdk: OntologySdkShape;
|
|
2485
|
+
}
|
|
2486
|
+
interface OutputShape_ontologySdkV2 {
|
|
2487
|
+
type: "ontologySdkV2";
|
|
2488
|
+
ontologySdkV2: OntologySdkShapeV2;
|
|
2489
|
+
}
|
|
2490
|
+
interface OutputShape_schedule {
|
|
2491
|
+
type: "schedule";
|
|
2492
|
+
schedule: ScheduleShape;
|
|
2493
|
+
}
|
|
2494
|
+
interface OutputShape_sharedPropertyType {
|
|
2495
|
+
type: "sharedPropertyType";
|
|
2496
|
+
sharedPropertyType: SharedPropertyTypeOutputShape;
|
|
2497
|
+
}
|
|
2498
|
+
interface OutputShape_slateApplication {
|
|
2499
|
+
type: "slateApplication";
|
|
2500
|
+
slateApplication: SlateApplicationOutputShape;
|
|
2501
|
+
}
|
|
2502
|
+
interface OutputShape_solutionDesign {
|
|
2503
|
+
type: "solutionDesign";
|
|
2504
|
+
solutionDesign: SolutionDesignShape;
|
|
2505
|
+
}
|
|
2506
|
+
interface OutputShape_tabularDatasource {
|
|
2507
|
+
type: "tabularDatasource";
|
|
2508
|
+
tabularDatasource: TabularDatasourceOutputShape;
|
|
2509
|
+
}
|
|
2510
|
+
interface OutputShape_taurusWorkflow {
|
|
2511
|
+
type: "taurusWorkflow";
|
|
2512
|
+
taurusWorkflow: TaurusWorkflowShape;
|
|
2513
|
+
}
|
|
2514
|
+
interface OutputShape_thirdPartyApplication {
|
|
2515
|
+
type: "thirdPartyApplication";
|
|
2516
|
+
thirdPartyApplication: ThirdPartyApplicationShape;
|
|
2517
|
+
}
|
|
2518
|
+
interface OutputShape_timeSeriesSync {
|
|
2519
|
+
type: "timeSeriesSync";
|
|
2520
|
+
timeSeriesSync: TimeSeriesSyncShape;
|
|
2521
|
+
}
|
|
2522
|
+
interface OutputShape_transformsJobSpec {
|
|
2523
|
+
type: "transformsJobSpec";
|
|
2524
|
+
transformsJobSpec: TransformsJobSpecShape;
|
|
2525
|
+
}
|
|
2526
|
+
interface OutputShape_valueType {
|
|
2527
|
+
type: "valueType";
|
|
2528
|
+
valueType: ValueTypeShape;
|
|
2529
|
+
}
|
|
2530
|
+
interface OutputShape_vertexTemplate {
|
|
2531
|
+
type: "vertexTemplate";
|
|
2532
|
+
vertexTemplate: VertexTemplateShape;
|
|
2533
|
+
}
|
|
2534
|
+
interface OutputShape_vortexTemplate {
|
|
2535
|
+
type: "vortexTemplate";
|
|
2536
|
+
vortexTemplate: VortexTemplateShape;
|
|
2537
|
+
}
|
|
2538
|
+
interface OutputShape_walkthrough {
|
|
2539
|
+
type: "walkthrough";
|
|
2540
|
+
walkthrough: WalkthroughShape;
|
|
2541
|
+
}
|
|
2542
|
+
interface OutputShape_webhook {
|
|
2543
|
+
type: "webhook";
|
|
2544
|
+
webhook: WebhookShape;
|
|
2545
|
+
}
|
|
2546
|
+
interface OutputShape_widget {
|
|
2547
|
+
type: "widget";
|
|
2548
|
+
widget: WidgetShape;
|
|
2549
|
+
}
|
|
2550
|
+
interface OutputShape_widgetSet {
|
|
2551
|
+
type: "widgetSet";
|
|
2552
|
+
widgetSet: WidgetSetShape;
|
|
2553
|
+
}
|
|
2554
|
+
interface OutputShape_workflowGraph {
|
|
2555
|
+
type: "workflowGraph";
|
|
2556
|
+
workflowGraph: WorkflowGraphShape;
|
|
2557
|
+
}
|
|
2558
|
+
interface OutputShape_workshopApplication {
|
|
2559
|
+
type: "workshopApplication";
|
|
2560
|
+
workshopApplication: WorkshopApplicationOutputShape;
|
|
2561
|
+
}
|
|
2562
|
+
/**
|
|
2563
|
+
* An output must have an about field of type `LocalizedTitleAndDescription`. This is what the FE uses to render
|
|
2564
|
+
* the output.
|
|
2565
|
+
*/
|
|
2566
|
+
type OutputShape = OutputShape_action | OutputShape_actionParameter | OutputShape_aipAgent | OutputShape_appConfigTitanium | OutputShape_appConfig | OutputShape_artifactsRepository | OutputShape_authoringLibrary | OutputShape_authoringRepository | OutputShape_automation | OutputShape_blobsterResource | OutputShape_carbonWorkspace | OutputShape_checkpointConfig | OutputShape_cipherChannel | OutputShape_cipherLicense | OutputShape_codeWorkspace | OutputShape_compassResource | OutputShape_contourAnalysis | OutputShape_dataHealthCheck | OutputShape_dataHealthCheckGroup | OutputShape_deployedApp | OutputShape_datasourceColumn | OutputShape_eddieEdgePipeline | OutputShape_eddiePipeline | OutputShape_evaluationSuite | OutputShape_filesDatasource | OutputShape_function | OutputShape_functionConfiguration | OutputShape_geotimeSeriesIntegration | OutputShape_interfaceType | OutputShape_interfaceLinkType | OutputShape_interfacePropertyType | OutputShape_linkType | OutputShape_logic | OutputShape_logicFunction | OutputShape_machinery | OutputShape_magritteExport | OutputShape_magritteExtract | OutputShape_magritteSource | OutputShape_magritteStreamingExtract | OutputShape_model | OutputShape_monitor | OutputShape_monitorView | OutputShape_mapRendererSet | OutputShape_mapRendererSetV2 | OutputShape_namedCredential | OutputShape_networkEgressPolicy | OutputShape_notepadDocument | OutputShape_notepadTemplate | OutputShape_notepadTemplateParameter | OutputShape_objectSet | OutputShape_objectType | OutputShape_objectView | OutputShape_objectViewTab | OutputShape_ontologyDatasource | OutputShape_property | OutputShape_quiverDashboard | OutputShape_resourceUpdatesContent | OutputShape_rosettaDocsBundle | OutputShape_ontologySdk | OutputShape_ontologySdkV2 | OutputShape_schedule | OutputShape_sharedPropertyType | OutputShape_slateApplication | OutputShape_solutionDesign | OutputShape_tabularDatasource | OutputShape_taurusWorkflow | OutputShape_thirdPartyApplication | OutputShape_timeSeriesSync | OutputShape_transformsJobSpec | OutputShape_valueType | OutputShape_vertexTemplate | OutputShape_vortexTemplate | OutputShape_walkthrough | OutputShape_webhook | OutputShape_widget | OutputShape_widgetSet | OutputShape_workflowGraph | OutputShape_workshopApplication;
|
|
2567
|
+
/**
|
|
2568
|
+
* This shape is intended to represent a boolean config that a user can check if they want to allow their
|
|
2569
|
+
* Marketplace installation upgrade to override existing installed ontology entity API names. This would be
|
|
2570
|
+
* needed if any of the user's packaged entity API names have been modified, and the user wants the corresponding
|
|
2571
|
+
* installed entity API names to be updated to the modified packaged entity API name.
|
|
2572
|
+
*
|
|
2573
|
+
* This configuration should be enabled with caution, as it can break downstream applications that reference
|
|
2574
|
+
* ontology entities by their API names, such as functions and OSDK.
|
|
2575
|
+
*
|
|
2576
|
+
* A few constraints that Marketplace will enforce:
|
|
2577
|
+
* - This config cannot be used together with installation prefixes (enabling and configuring InstallPrefix), and
|
|
2578
|
+
* OMS will return a blocking validation error if both are set. This is because API name prefixing will break
|
|
2579
|
+
* downstream applications (e.g. OSDK, Functions) referencing entities by their API names that are packaged
|
|
2580
|
+
* together
|
|
2581
|
+
* - OMS will return blocking validation errors on API name upgrades if this config is not enabled, and
|
|
2582
|
+
* nonblocking validation errors if this config is enabled.
|
|
2583
|
+
* - Regardless of this configuration, installation will be blocked if the API name of an entity to be installed
|
|
2584
|
+
* is already used in the target ontology, until either is deduplicated to ensure uniqueness.
|
|
2585
|
+
*/
|
|
2586
|
+
interface OverrideOntologyEntityApiNamesShape {
|
|
2587
|
+
about: LocalizedTitleAndDescription;
|
|
2588
|
+
}
|
|
2589
|
+
interface ParameterInputShape {
|
|
2590
|
+
about: LocalizedTitleAndDescription;
|
|
2591
|
+
id?: StableShapeIdentifier | null | undefined;
|
|
2592
|
+
parameterType: DataType;
|
|
2593
|
+
}
|
|
2594
|
+
interface PathPolicy_any {
|
|
2595
|
+
type: "any";
|
|
2596
|
+
any: Void;
|
|
2597
|
+
}
|
|
2598
|
+
interface PathPolicy_pathRequired {
|
|
2599
|
+
type: "pathRequired";
|
|
2600
|
+
pathRequired: Void;
|
|
2601
|
+
}
|
|
2602
|
+
interface PathPolicy_pathNotSupported {
|
|
2603
|
+
type: "pathNotSupported";
|
|
2604
|
+
pathNotSupported: Void;
|
|
2605
|
+
}
|
|
2606
|
+
type PathPolicy = PathPolicy_any | PathPolicy_pathRequired | PathPolicy_pathNotSupported;
|
|
2607
|
+
interface PdfFormat {
|
|
2608
|
+
}
|
|
2609
|
+
interface PngFormat {
|
|
2610
|
+
}
|
|
2611
|
+
interface PptxFormat {
|
|
2612
|
+
}
|
|
2613
|
+
/**
|
|
2614
|
+
* RESOURCE_PREALLOCATION_REQUIRED requires the resource has been preallocated already
|
|
2615
|
+
* by the block that owns it, resulting in the resource being available during preallocation
|
|
2616
|
+
* as a resolved input shape.
|
|
2617
|
+
*/
|
|
2618
|
+
type PreallocateAccessRequirementType = "RESOURCE_PREALLOCATION_REQUIRED";
|
|
2619
|
+
interface PrimitiveBaseType_boolean {
|
|
2620
|
+
type: "boolean";
|
|
2621
|
+
boolean: Void;
|
|
2622
|
+
}
|
|
2623
|
+
interface PrimitiveBaseType_binary {
|
|
2624
|
+
type: "binary";
|
|
2625
|
+
binary: Void;
|
|
2626
|
+
}
|
|
2627
|
+
interface PrimitiveBaseType_byte {
|
|
2628
|
+
type: "byte";
|
|
2629
|
+
byte: Void;
|
|
2630
|
+
}
|
|
2631
|
+
interface PrimitiveBaseType_date {
|
|
2632
|
+
type: "date";
|
|
2633
|
+
date: Void;
|
|
2634
|
+
}
|
|
2635
|
+
interface PrimitiveBaseType_decimal {
|
|
2636
|
+
type: "decimal";
|
|
2637
|
+
decimal: Void;
|
|
2638
|
+
}
|
|
2639
|
+
interface PrimitiveBaseType_double {
|
|
2640
|
+
type: "double";
|
|
2641
|
+
double: Void;
|
|
2642
|
+
}
|
|
2643
|
+
interface PrimitiveBaseType_float {
|
|
2644
|
+
type: "float";
|
|
2645
|
+
float: Void;
|
|
2646
|
+
}
|
|
2647
|
+
interface PrimitiveBaseType_integer {
|
|
2648
|
+
type: "integer";
|
|
2649
|
+
integer: Void;
|
|
2650
|
+
}
|
|
2651
|
+
interface PrimitiveBaseType_long {
|
|
2652
|
+
type: "long";
|
|
2653
|
+
long: Void;
|
|
2654
|
+
}
|
|
2655
|
+
interface PrimitiveBaseType_map {
|
|
2656
|
+
type: "map";
|
|
2657
|
+
map: Void;
|
|
2658
|
+
}
|
|
2659
|
+
interface PrimitiveBaseType_optional {
|
|
2660
|
+
type: "optional";
|
|
2661
|
+
optional: Void;
|
|
2662
|
+
}
|
|
2663
|
+
interface PrimitiveBaseType_short {
|
|
2664
|
+
type: "short";
|
|
2665
|
+
short: Void;
|
|
2666
|
+
}
|
|
2667
|
+
interface PrimitiveBaseType_string {
|
|
2668
|
+
type: "string";
|
|
2669
|
+
string: Void;
|
|
2670
|
+
}
|
|
2671
|
+
interface PrimitiveBaseType_struct {
|
|
2672
|
+
type: "struct";
|
|
2673
|
+
struct: Void;
|
|
2674
|
+
}
|
|
2675
|
+
interface PrimitiveBaseType_structV2 {
|
|
2676
|
+
type: "structV2";
|
|
2677
|
+
structV2: Void;
|
|
2678
|
+
}
|
|
2679
|
+
interface PrimitiveBaseType_timestamp {
|
|
2680
|
+
type: "timestamp";
|
|
2681
|
+
timestamp: Void;
|
|
2682
|
+
}
|
|
2683
|
+
type PrimitiveBaseType = PrimitiveBaseType_boolean | PrimitiveBaseType_binary | PrimitiveBaseType_byte | PrimitiveBaseType_date | PrimitiveBaseType_decimal | PrimitiveBaseType_double | PrimitiveBaseType_float | PrimitiveBaseType_integer | PrimitiveBaseType_long | PrimitiveBaseType_map | PrimitiveBaseType_optional | PrimitiveBaseType_short | PrimitiveBaseType_string | PrimitiveBaseType_struct | PrimitiveBaseType_structV2 | PrimitiveBaseType_timestamp;
|
|
2684
|
+
interface PrimitiveObjectPropertyType_stringType {
|
|
2685
|
+
type: "stringType";
|
|
2686
|
+
stringType: Void;
|
|
2687
|
+
}
|
|
2688
|
+
interface PrimitiveObjectPropertyType_booleanType {
|
|
2689
|
+
type: "booleanType";
|
|
2690
|
+
booleanType: Void;
|
|
2691
|
+
}
|
|
2692
|
+
interface PrimitiveObjectPropertyType_byteType {
|
|
2693
|
+
type: "byteType";
|
|
2694
|
+
byteType: Void;
|
|
2695
|
+
}
|
|
2696
|
+
interface PrimitiveObjectPropertyType_dateType {
|
|
2697
|
+
type: "dateType";
|
|
2698
|
+
dateType: Void;
|
|
2699
|
+
}
|
|
2700
|
+
interface PrimitiveObjectPropertyType_decimalType {
|
|
2701
|
+
type: "decimalType";
|
|
2702
|
+
decimalType: Void;
|
|
2703
|
+
}
|
|
2704
|
+
interface PrimitiveObjectPropertyType_doubleType {
|
|
2705
|
+
type: "doubleType";
|
|
2706
|
+
doubleType: Void;
|
|
2707
|
+
}
|
|
2708
|
+
interface PrimitiveObjectPropertyType_floatType {
|
|
2709
|
+
type: "floatType";
|
|
2710
|
+
floatType: Void;
|
|
2711
|
+
}
|
|
2712
|
+
interface PrimitiveObjectPropertyType_geohashType {
|
|
2713
|
+
type: "geohashType";
|
|
2714
|
+
geohashType: Void;
|
|
2715
|
+
}
|
|
2716
|
+
interface PrimitiveObjectPropertyType_geoshapeType {
|
|
2717
|
+
type: "geoshapeType";
|
|
2718
|
+
geoshapeType: Void;
|
|
2719
|
+
}
|
|
2720
|
+
interface PrimitiveObjectPropertyType_geotimeSeriesReferenceType {
|
|
2721
|
+
type: "geotimeSeriesReferenceType";
|
|
2722
|
+
geotimeSeriesReferenceType: Void;
|
|
2723
|
+
}
|
|
2724
|
+
interface PrimitiveObjectPropertyType_integerType {
|
|
2725
|
+
type: "integerType";
|
|
2726
|
+
integerType: Void;
|
|
2727
|
+
}
|
|
2728
|
+
interface PrimitiveObjectPropertyType_longType {
|
|
2729
|
+
type: "longType";
|
|
2730
|
+
longType: Void;
|
|
2731
|
+
}
|
|
2732
|
+
interface PrimitiveObjectPropertyType_shortType {
|
|
2733
|
+
type: "shortType";
|
|
2734
|
+
shortType: Void;
|
|
2735
|
+
}
|
|
2736
|
+
interface PrimitiveObjectPropertyType_timeDependentType {
|
|
2737
|
+
type: "timeDependentType";
|
|
2738
|
+
timeDependentType: Void;
|
|
2739
|
+
}
|
|
2740
|
+
interface PrimitiveObjectPropertyType_timestampType {
|
|
2741
|
+
type: "timestampType";
|
|
2742
|
+
timestampType: Void;
|
|
2743
|
+
}
|
|
2744
|
+
interface PrimitiveObjectPropertyType_attachmentType {
|
|
2745
|
+
type: "attachmentType";
|
|
2746
|
+
attachmentType: Void;
|
|
2747
|
+
}
|
|
2748
|
+
interface PrimitiveObjectPropertyType_markingType {
|
|
2749
|
+
type: "markingType";
|
|
2750
|
+
markingType: Void;
|
|
2751
|
+
}
|
|
2752
|
+
interface PrimitiveObjectPropertyType_mediaReferenceType {
|
|
2753
|
+
type: "mediaReferenceType";
|
|
2754
|
+
mediaReferenceType: Void;
|
|
2755
|
+
}
|
|
2756
|
+
interface PrimitiveObjectPropertyType_vectorType {
|
|
2757
|
+
type: "vectorType";
|
|
2758
|
+
vectorType: VectorPropertyType;
|
|
2759
|
+
}
|
|
2760
|
+
interface PrimitiveObjectPropertyType_cipherTextType {
|
|
2761
|
+
type: "cipherTextType";
|
|
2762
|
+
cipherTextType: CipherTextPropertyType;
|
|
2763
|
+
}
|
|
2764
|
+
interface PrimitiveObjectPropertyType_structType {
|
|
2765
|
+
type: "structType";
|
|
2766
|
+
structType: StructPropertyType;
|
|
2767
|
+
}
|
|
2768
|
+
/**
|
|
2769
|
+
* Represents the primitive types for Ontology properties.
|
|
2770
|
+
*/
|
|
2771
|
+
type PrimitiveObjectPropertyType = PrimitiveObjectPropertyType_stringType | PrimitiveObjectPropertyType_booleanType | PrimitiveObjectPropertyType_byteType | PrimitiveObjectPropertyType_dateType | PrimitiveObjectPropertyType_decimalType | PrimitiveObjectPropertyType_doubleType | PrimitiveObjectPropertyType_floatType | PrimitiveObjectPropertyType_geohashType | PrimitiveObjectPropertyType_geoshapeType | PrimitiveObjectPropertyType_geotimeSeriesReferenceType | PrimitiveObjectPropertyType_integerType | PrimitiveObjectPropertyType_longType | PrimitiveObjectPropertyType_shortType | PrimitiveObjectPropertyType_timeDependentType | PrimitiveObjectPropertyType_timestampType | PrimitiveObjectPropertyType_attachmentType | PrimitiveObjectPropertyType_markingType | PrimitiveObjectPropertyType_mediaReferenceType | PrimitiveObjectPropertyType_vectorType | PrimitiveObjectPropertyType_cipherTextType | PrimitiveObjectPropertyType_structType;
|
|
2772
|
+
interface PropertyInputShape {
|
|
2773
|
+
about: LocalizedTitleAndDescription;
|
|
2774
|
+
inlineActionType?: ActionTypeReference | null | undefined;
|
|
2775
|
+
objectType: ObjectTypeReference;
|
|
2776
|
+
sharedPropertyType?: SharedPropertyTypeReference | null | undefined;
|
|
2777
|
+
type: AllowedObjectPropertyType;
|
|
2778
|
+
}
|
|
2779
|
+
interface PropertyOutputShape {
|
|
2780
|
+
about: LocalizedTitleAndDescription;
|
|
2781
|
+
inlineActionType?: ActionTypeReference | null | undefined;
|
|
2782
|
+
objectType: ObjectTypeReference;
|
|
2783
|
+
sharedPropertyType?: SharedPropertyTypeReference | null | undefined;
|
|
2784
|
+
type: ObjectPropertyType;
|
|
2785
|
+
}
|
|
2786
|
+
type PropertyTypeRid = string;
|
|
2787
|
+
interface PypiLocator {
|
|
2788
|
+
fileName: string;
|
|
2789
|
+
md5Digest?: string | null | undefined;
|
|
2790
|
+
project: string;
|
|
2791
|
+
requiresPython?: string | null | undefined;
|
|
2792
|
+
sha256Digest?: string | null | undefined;
|
|
2793
|
+
url: string;
|
|
2794
|
+
}
|
|
2795
|
+
/**
|
|
2796
|
+
* Quiver dashboard shape
|
|
2797
|
+
*/
|
|
2798
|
+
interface QuiverDashboardShape {
|
|
2799
|
+
about: LocalizedTitleAndDescription;
|
|
2800
|
+
}
|
|
2801
|
+
/**
|
|
2802
|
+
* If included in a Cipher License, the user has the ability to encrypt or decrypt (depending on the RequestType)
|
|
2803
|
+
* up to the limit specified.
|
|
2804
|
+
*/
|
|
2805
|
+
interface RateLimitedRequestPermit {
|
|
2806
|
+
requestType: RequestType;
|
|
2807
|
+
}
|
|
2808
|
+
/**
|
|
2809
|
+
* Two layers of granularity are provided to specify the access requirements for an input shape: either
|
|
2810
|
+
* RESOURCE_EXISTENCE_REQUIRED, which requires the resource has been created or SCHEMA_UPDATE_REQUIRED, which
|
|
2811
|
+
* will guarantee that the input must be built with the latest schema before reconciliation. Schema existence is
|
|
2812
|
+
* only relevant for dataset types.
|
|
2813
|
+
*
|
|
2814
|
+
* If the output is permissioned based on a given input, RESOURCE_EXISTENCE_REQUIRED should always be specified
|
|
2815
|
+
* so that the upstream input is guaranteed to exist in Gatekeeper.
|
|
2816
|
+
*
|
|
2817
|
+
* Specifying SCHEMA_UPDATE_REQUIRED will also guarantee RESOURCE_EXISTENCE_REQUIRED is fulfilled.
|
|
2818
|
+
* If SCHEMA_UPDATE_REQUIRED is specified, the shape type and block type must be allowlisted in
|
|
2819
|
+
* `SchemaUpdateReconcileAccessValidator`, else we will throw on block creation.
|
|
2820
|
+
*/
|
|
2821
|
+
type ReconcileAccessRequirementType = "RESOURCE_EXISTENCE_REQUIRED" | "SCHEMA_UPDATE_REQUIRED";
|
|
2822
|
+
/**
|
|
2823
|
+
* Reference a patched repodata in a conda layout. It allows to ship patched environments that may not be solvable in destination stacks
|
|
2824
|
+
*/
|
|
2825
|
+
interface RepoDataLocator {
|
|
2826
|
+
platform: string;
|
|
2827
|
+
}
|
|
2828
|
+
type RequestType = "ENCRYPT" | "DECRYPT";
|
|
2829
|
+
interface ResolvedDatasourceColumnShape {
|
|
2830
|
+
datasource: DatasourceLocator;
|
|
2831
|
+
name: string;
|
|
2832
|
+
}
|
|
2833
|
+
/**
|
|
2834
|
+
* Resource Updates refer to the generic concept that represents Product Walkthroughs.
|
|
2835
|
+
* This shape represents the Content of each slide in a Product Walkthrough.
|
|
2836
|
+
* We use this output shape to be able to preallocate ContentRids of a ResourceUpdate and keep it consistent
|
|
2837
|
+
* across installations.
|
|
2838
|
+
*/
|
|
2839
|
+
interface ResourceUpdatesContentOutputShape {
|
|
2840
|
+
about: LocalizedTitleAndDescription;
|
|
2841
|
+
}
|
|
2842
|
+
interface RestrictedViewLocator {
|
|
2843
|
+
rid: string;
|
|
2844
|
+
}
|
|
2845
|
+
/**
|
|
2846
|
+
* Rosetta documentation bundle, which can only be opened in the Rosetta app (never an input to other blocks).
|
|
2847
|
+
*/
|
|
2848
|
+
interface RosettaDocsBundleShape {
|
|
2849
|
+
about: LocalizedTitleAndDescription;
|
|
2850
|
+
}
|
|
2851
|
+
interface ScheduleShape {
|
|
2852
|
+
about: LocalizedTitleAndDescription;
|
|
2853
|
+
}
|
|
2854
|
+
type SecretName = string;
|
|
2855
|
+
interface SerializedDataLocator_conda {
|
|
2856
|
+
type: "conda";
|
|
2857
|
+
conda: CondaLocator;
|
|
2858
|
+
}
|
|
2859
|
+
interface SerializedDataLocator_condaV2 {
|
|
2860
|
+
type: "condaV2";
|
|
2861
|
+
condaV2: CondaLocatorV2;
|
|
2862
|
+
}
|
|
2863
|
+
interface SerializedDataLocator_files {
|
|
2864
|
+
type: "files";
|
|
2865
|
+
files: FilesLocator;
|
|
2866
|
+
}
|
|
2867
|
+
interface SerializedDataLocator_maven {
|
|
2868
|
+
type: "maven";
|
|
2869
|
+
maven: MavenLocator;
|
|
2870
|
+
}
|
|
2871
|
+
interface SerializedDataLocator_npm {
|
|
2872
|
+
type: "npm";
|
|
2873
|
+
npm: NpmLocator;
|
|
2874
|
+
}
|
|
2875
|
+
interface SerializedDataLocator_oci {
|
|
2876
|
+
type: "oci";
|
|
2877
|
+
oci: OciLocator;
|
|
2878
|
+
}
|
|
2879
|
+
interface SerializedDataLocator_pypi {
|
|
2880
|
+
type: "pypi";
|
|
2881
|
+
pypi: PypiLocator;
|
|
2882
|
+
}
|
|
2883
|
+
interface SerializedDataLocator_repoData {
|
|
2884
|
+
type: "repoData";
|
|
2885
|
+
repoData: RepoDataLocator;
|
|
2886
|
+
}
|
|
2887
|
+
/**
|
|
2888
|
+
* A locator to a piece of serialized data.
|
|
2889
|
+
* These correspond to (a subset of) foundry artifacts layouts.
|
|
2890
|
+
*/
|
|
2891
|
+
type SerializedDataLocator = SerializedDataLocator_conda | SerializedDataLocator_condaV2 | SerializedDataLocator_files | SerializedDataLocator_maven | SerializedDataLocator_npm | SerializedDataLocator_oci | SerializedDataLocator_pypi | SerializedDataLocator_repoData;
|
|
2892
|
+
/**
|
|
2893
|
+
* A versioned cross stack identifier for a service managed value type.
|
|
2894
|
+
*/
|
|
2895
|
+
interface ServiceManagedValueTypeIdentifier {
|
|
2896
|
+
apiName: ValueTypeApiName;
|
|
2897
|
+
version: ValueTypeVersion;
|
|
2898
|
+
}
|
|
2899
|
+
interface SharedPropertyTypeInputShape {
|
|
2900
|
+
about: LocalizedTitleAndDescription;
|
|
2901
|
+
type: AllowedObjectPropertyType;
|
|
2902
|
+
}
|
|
2903
|
+
interface SharedPropertyTypeOutputShape {
|
|
2904
|
+
about: LocalizedTitleAndDescription;
|
|
2905
|
+
type: ObjectPropertyType;
|
|
2906
|
+
}
|
|
2907
|
+
type SharedPropertyTypeReference = BlockInternalId;
|
|
2908
|
+
type SharedPropertyTypeRid = string;
|
|
2909
|
+
interface SingleOutputType {
|
|
2910
|
+
about: LocalizedTitleAndDescription;
|
|
2911
|
+
dataType: _api_functions_DataType;
|
|
2912
|
+
}
|
|
2913
|
+
/**
|
|
2914
|
+
* An mp4 container which contains a single audio stream.
|
|
2915
|
+
*/
|
|
2916
|
+
interface SingleStreamMp4AudioContainerFormat {
|
|
2917
|
+
}
|
|
2918
|
+
/**
|
|
2919
|
+
* An ogg container which contains a single audio stream.
|
|
2920
|
+
*/
|
|
2921
|
+
interface SingleStreamOggAudioContainerFormat {
|
|
2922
|
+
oggAudioFormat: OggAudioFormat;
|
|
2923
|
+
}
|
|
2924
|
+
/**
|
|
2925
|
+
* A webm container which contains a single audio stream.
|
|
2926
|
+
*/
|
|
2927
|
+
interface SingleStreamWebmAudioContainerFormat {
|
|
2928
|
+
}
|
|
2929
|
+
interface SlateApplicationInputShape {
|
|
2930
|
+
about: LocalizedTitleAndDescription;
|
|
2931
|
+
}
|
|
2932
|
+
interface SlateApplicationOutputShape {
|
|
2933
|
+
about: LocalizedTitleAndDescription;
|
|
2934
|
+
}
|
|
2935
|
+
/**
|
|
2936
|
+
* Solution Design Diagram created by a user and saved in Compass.
|
|
2937
|
+
*/
|
|
2938
|
+
interface SolutionDesignShape {
|
|
2939
|
+
about: LocalizedTitleAndDescription;
|
|
2940
|
+
}
|
|
2941
|
+
interface SparkProfileConstraint_allowedProfileNames {
|
|
2942
|
+
type: "allowedProfileNames";
|
|
2943
|
+
allowedProfileNames: AllowedProfileNamesConstraint;
|
|
2944
|
+
}
|
|
2945
|
+
type SparkProfileConstraint = SparkProfileConstraint_allowedProfileNames;
|
|
2946
|
+
type SparkProfileName = string;
|
|
2947
|
+
interface SparkProfileShape {
|
|
2948
|
+
about: LocalizedTitleAndDescription;
|
|
2949
|
+
constraints?: SparkProfileConstraint | null | undefined;
|
|
2950
|
+
}
|
|
2951
|
+
interface SpreadsheetDecodeFormat_xlsx {
|
|
2952
|
+
type: "xlsx";
|
|
2953
|
+
xlsx: XlsxFormat;
|
|
2954
|
+
}
|
|
2955
|
+
type SpreadsheetDecodeFormat = SpreadsheetDecodeFormat_xlsx;
|
|
2956
|
+
interface SpreadsheetSchema {
|
|
2957
|
+
format: SpreadsheetDecodeFormat;
|
|
2958
|
+
}
|
|
2959
|
+
/**
|
|
2960
|
+
* A stable identifier for a shape, provided by integrations during packaging.
|
|
2961
|
+
* Typically used for shapes that represent parametrization values, or when integrations want to otherwise
|
|
2962
|
+
* deduplicate shapes explicitly.
|
|
2963
|
+
* Examples include:
|
|
2964
|
+
* - Parameter shapes: Example for workshop would be the variable ID that a parameter
|
|
2965
|
+
* is associated with. In workshop as long as the variable is not deleted its ID remains the same every
|
|
2966
|
+
* time you package a workshop.
|
|
2967
|
+
* - Markings ids: Example include a semantic identifier such as `oms.used-marking.<dataset-locator>` for the
|
|
2968
|
+
* marking. Rather than creating a shape based on the used markings in the source, a shape is created for
|
|
2969
|
+
* each separate marking id.
|
|
2970
|
+
*/
|
|
2971
|
+
type StableShapeIdentifier = string;
|
|
2972
|
+
/**
|
|
2973
|
+
* A stemma code repository. Currently this type should only be used to identify external transforms.
|
|
2974
|
+
*/
|
|
2975
|
+
interface StemmaRepositoryType {
|
|
2976
|
+
}
|
|
2977
|
+
interface StreamLocator {
|
|
2978
|
+
branch: string;
|
|
2979
|
+
rid: string;
|
|
2980
|
+
}
|
|
2981
|
+
/**
|
|
2982
|
+
* StringListType specifies that this parameter must be a list of Strings.
|
|
2983
|
+
*/
|
|
2984
|
+
interface StringListType {
|
|
2985
|
+
}
|
|
2986
|
+
/**
|
|
2987
|
+
* StringType specifies that this parameter must be a String.
|
|
2988
|
+
*/
|
|
2989
|
+
interface StringType {
|
|
2990
|
+
}
|
|
2991
|
+
interface StructFieldBaseParameterType_boolean {
|
|
2992
|
+
type: "boolean";
|
|
2993
|
+
boolean: BooleanType;
|
|
2994
|
+
}
|
|
2995
|
+
interface StructFieldBaseParameterType_integer {
|
|
2996
|
+
type: "integer";
|
|
2997
|
+
integer: IntegerType;
|
|
2998
|
+
}
|
|
2999
|
+
interface StructFieldBaseParameterType_long {
|
|
3000
|
+
type: "long";
|
|
3001
|
+
long: LongType;
|
|
3002
|
+
}
|
|
3003
|
+
interface StructFieldBaseParameterType_double {
|
|
3004
|
+
type: "double";
|
|
3005
|
+
double: DoubleType;
|
|
3006
|
+
}
|
|
3007
|
+
interface StructFieldBaseParameterType_string {
|
|
3008
|
+
type: "string";
|
|
3009
|
+
string: StringType;
|
|
3010
|
+
}
|
|
3011
|
+
interface StructFieldBaseParameterType_geohash {
|
|
3012
|
+
type: "geohash";
|
|
3013
|
+
geohash: GeohashType;
|
|
3014
|
+
}
|
|
3015
|
+
interface StructFieldBaseParameterType_geoshape {
|
|
3016
|
+
type: "geoshape";
|
|
3017
|
+
geoshape: GeoshapeType;
|
|
3018
|
+
}
|
|
3019
|
+
interface StructFieldBaseParameterType_timestamp {
|
|
3020
|
+
type: "timestamp";
|
|
3021
|
+
timestamp: TimestampType;
|
|
3022
|
+
}
|
|
3023
|
+
interface StructFieldBaseParameterType_date {
|
|
3024
|
+
type: "date";
|
|
3025
|
+
date: DateType;
|
|
3026
|
+
}
|
|
3027
|
+
interface StructFieldBaseParameterType_objectReference {
|
|
3028
|
+
type: "objectReference";
|
|
3029
|
+
objectReference: ObjectReferenceType;
|
|
3030
|
+
}
|
|
3031
|
+
/**
|
|
3032
|
+
* All of the possible types for fields of a Struct Parameter. This should be the intersection of allowed struct
|
|
3033
|
+
* property field types (https://www.palantir.com/docs/foundry/object-link-types/structs-overview/), and the
|
|
3034
|
+
* inhabitants of the BaseParameterType union.
|
|
3035
|
+
*/
|
|
3036
|
+
type StructFieldBaseParameterType = StructFieldBaseParameterType_boolean | StructFieldBaseParameterType_integer | StructFieldBaseParameterType_long | StructFieldBaseParameterType_double | StructFieldBaseParameterType_string | StructFieldBaseParameterType_geohash | StructFieldBaseParameterType_geoshape | StructFieldBaseParameterType_timestamp | StructFieldBaseParameterType_date | StructFieldBaseParameterType_objectReference;
|
|
3037
|
+
type StructFieldRid = string;
|
|
3038
|
+
/**
|
|
3039
|
+
* StructListType specifies that this parameter must be a list of Structs.
|
|
3040
|
+
*/
|
|
3041
|
+
interface StructListType {
|
|
3042
|
+
structFieldTypes: Record<StructParameterFieldApiName, StructFieldBaseParameterType>;
|
|
3043
|
+
}
|
|
3044
|
+
/**
|
|
3045
|
+
* An API name that identifies a struct field in a struct parameter. Note that this api name is specific to the
|
|
3046
|
+
* action type and does not need to match the api name on the struct property type.
|
|
3047
|
+
*/
|
|
3048
|
+
type StructParameterFieldApiName = string;
|
|
3049
|
+
/**
|
|
3050
|
+
* Represents a struct property, which is an ordered list of keys and values used to model data
|
|
3051
|
+
* with related components as part of a single entity (closely mimics the composite property type from
|
|
3052
|
+
* the Gotham ontology). Unlike OMS struct property type, we only did not include the struct field API
|
|
3053
|
+
* names as part of the type (similar to how other property types do not include their API names).
|
|
3054
|
+
* This is because we only require the types and the ordering of the struct fields to match.
|
|
3055
|
+
* Additionally, note that certain types are not supported as struct fields, but they are validated
|
|
3056
|
+
* in code even though their corresponding ObjectPropertyTypes might be allowed by the API shape here.
|
|
3057
|
+
* (See the list of supported struct field types here:
|
|
3058
|
+
* https://www.palantir.com/docs/foundry/object-link-types/structs-overview/)
|
|
3059
|
+
*/
|
|
3060
|
+
interface StructPropertyType {
|
|
3061
|
+
structFieldTypes: Array<ObjectPropertyType>;
|
|
3062
|
+
}
|
|
3063
|
+
/**
|
|
3064
|
+
* StructType specifies that this parameter must be a Struct.
|
|
3065
|
+
*/
|
|
3066
|
+
interface StructType {
|
|
3067
|
+
structFieldTypes: Record<StructParameterFieldApiName, StructFieldBaseParameterType>;
|
|
3068
|
+
}
|
|
3069
|
+
/**
|
|
3070
|
+
* Represents the base type of a struct value type, which is an ordered list of keys and base types used to model
|
|
3071
|
+
* data with related components as part of a single entity. Field names are not included as part of this type. As
|
|
3072
|
+
* a result, only the types and the ordering of fields are required to match.
|
|
3073
|
+
*/
|
|
3074
|
+
interface StructV2BaseType {
|
|
3075
|
+
structFieldTypes: Array<BaseType>;
|
|
3076
|
+
}
|
|
3077
|
+
/**
|
|
3078
|
+
* Similar to the `MarkingType` enum in Multipass, but we include a third `ONLY_ORGANIZATION` type that only
|
|
3079
|
+
* supports organization markings. The `MANDATORY` type supports both "normal" mandatory markings and
|
|
3080
|
+
* organization markings, beacuse in the Multipass API, organization markings are treated as a special type of
|
|
3081
|
+
* mandatory markings.
|
|
3082
|
+
*/
|
|
3083
|
+
type SupportedMarkingsType = "MANDATORY" | "CBAC" | "ONLY_ORGANIZATION";
|
|
3084
|
+
interface TabularDatasourceInputShape {
|
|
3085
|
+
about: LocalizedTitleAndDescription;
|
|
3086
|
+
schema: Array<DatasourceColumnReference>;
|
|
3087
|
+
supportedTypes: Array<TabularDatasourceType>;
|
|
3088
|
+
}
|
|
3089
|
+
interface TabularDatasourceOutputShape {
|
|
3090
|
+
about: LocalizedTitleAndDescription;
|
|
3091
|
+
buildRequirements?: DatasourceBuildRequirements | null | undefined;
|
|
3092
|
+
schema: Array<DatasourceColumnReference>;
|
|
3093
|
+
type: TabularDatasourceType;
|
|
3094
|
+
}
|
|
3095
|
+
type TabularDatasourceReference = BlockInternalId;
|
|
3096
|
+
type TabularDatasourceType = "DATASET" | "RESTRICTED_VIEW" | "STREAM" | "VIRTUAL_TABLE";
|
|
3097
|
+
interface TagOrDigest_tag {
|
|
3098
|
+
type: "tag";
|
|
3099
|
+
tag: string;
|
|
3100
|
+
}
|
|
3101
|
+
interface TagOrDigest_digest {
|
|
3102
|
+
type: "digest";
|
|
3103
|
+
digest: string;
|
|
3104
|
+
}
|
|
3105
|
+
type TagOrDigest = TagOrDigest_tag | TagOrDigest_digest;
|
|
3106
|
+
/**
|
|
3107
|
+
* Taurus workflow that is referenced by taurus workshop widget.
|
|
3108
|
+
*/
|
|
3109
|
+
interface TaurusWorkflowShape {
|
|
3110
|
+
about: LocalizedTitleAndDescription;
|
|
3111
|
+
}
|
|
3112
|
+
interface ThirdPartyApplicationShape {
|
|
3113
|
+
about: LocalizedTitleAndDescription;
|
|
3114
|
+
}
|
|
3115
|
+
interface TiffFormat {
|
|
3116
|
+
}
|
|
3117
|
+
/**
|
|
3118
|
+
* TimeSeriesReferenceType specifies that this parameter must be a TimeSeriesReference.
|
|
3119
|
+
*/
|
|
3120
|
+
interface TimeSeriesReferenceType {
|
|
3121
|
+
}
|
|
3122
|
+
type TimeSeriesSyncRid = string;
|
|
3123
|
+
interface TimeSeriesSyncShape {
|
|
3124
|
+
about: LocalizedTitleAndDescription;
|
|
3125
|
+
type?: TimeSeriesSyncType | null | undefined;
|
|
3126
|
+
}
|
|
3127
|
+
type TimeSeriesSyncType = "NUMERIC" | "CATEGORICAL";
|
|
3128
|
+
/**
|
|
3129
|
+
* TimestampListType specifies that this parameter must be a list of Timestamps.
|
|
3130
|
+
*/
|
|
3131
|
+
interface TimestampListType {
|
|
3132
|
+
}
|
|
3133
|
+
/**
|
|
3134
|
+
* TimestampType specifies that this parameter must be a Timestamp.
|
|
3135
|
+
*/
|
|
3136
|
+
interface TimestampType {
|
|
3137
|
+
}
|
|
3138
|
+
interface TransformsJobSpecShape {
|
|
3139
|
+
about: LocalizedTitleAndDescription;
|
|
3140
|
+
}
|
|
3141
|
+
/**
|
|
3142
|
+
* If included in a Cipher License, the user has the ability to encrypt or decrypt (depending on the RequestType)
|
|
3143
|
+
* in Transforms as an input parameter. This effectively grants access to the keys.
|
|
3144
|
+
*/
|
|
3145
|
+
interface TransformsRequestPermit {
|
|
3146
|
+
requestType: RequestType;
|
|
3147
|
+
}
|
|
3148
|
+
interface TsVideoContainerFormat {
|
|
3149
|
+
}
|
|
3150
|
+
interface TxtFormat {
|
|
3151
|
+
}
|
|
3152
|
+
/**
|
|
3153
|
+
* This is a placeholder type for when we don't care about the specific type of a parameter, simply representing
|
|
3154
|
+
* the presence of an argument. We use this as a minimal way to express compatibility between input and
|
|
3155
|
+
* output function shapes, mostly to allow for more complex types to be used in the future without breaking
|
|
3156
|
+
* existing stored shapes.
|
|
3157
|
+
*/
|
|
3158
|
+
interface UnspecifiedParameterType {
|
|
3159
|
+
}
|
|
3160
|
+
/**
|
|
3161
|
+
* A string representing a value type's api name. Used as a stable, cross-stack identifier for service managed value types.
|
|
3162
|
+
*/
|
|
3163
|
+
type ValueTypeApiName = string;
|
|
3164
|
+
type ValueTypeReference = BlockInternalId;
|
|
3165
|
+
interface ValueTypeShape {
|
|
3166
|
+
about: LocalizedTitleAndDescription;
|
|
3167
|
+
baseType: BaseType;
|
|
3168
|
+
serviceTypeIdentifier?: ServiceManagedValueTypeIdentifier | null | undefined;
|
|
3169
|
+
}
|
|
3170
|
+
/**
|
|
3171
|
+
* A string representing a value type's version. Enforced to be a semantic version.
|
|
3172
|
+
*/
|
|
3173
|
+
type ValueTypeVersion = string;
|
|
3174
|
+
/**
|
|
3175
|
+
* Marketplace dependencies for a vector property
|
|
3176
|
+
*/
|
|
3177
|
+
interface VectorPropertyType {
|
|
3178
|
+
dimension?: number | null | undefined;
|
|
3179
|
+
supportsSearchWith: Array<VectorSimilarityFunction>;
|
|
3180
|
+
}
|
|
3181
|
+
type VectorSimilarityFunction = "COSINE_SIMILARITY" | "DOT_PRODUCT" | "EUCLIDEAN_DISTANCE";
|
|
3182
|
+
interface VectorWorkbookShape {
|
|
3183
|
+
about: LocalizedTitleAndDescription;
|
|
3184
|
+
}
|
|
3185
|
+
/**
|
|
3186
|
+
* Vertex Template that can be used to generate Graphs.
|
|
3187
|
+
*/
|
|
3188
|
+
interface VertexTemplateShape {
|
|
3189
|
+
about: LocalizedTitleAndDescription;
|
|
3190
|
+
}
|
|
3191
|
+
interface VideoDecodeFormat_mp4 {
|
|
3192
|
+
type: "mp4";
|
|
3193
|
+
mp4: Mp4VideoContainerFormat;
|
|
3194
|
+
}
|
|
3195
|
+
interface VideoDecodeFormat_ts {
|
|
3196
|
+
type: "ts";
|
|
3197
|
+
ts: TsVideoContainerFormat;
|
|
3198
|
+
}
|
|
3199
|
+
interface VideoDecodeFormat_mov {
|
|
3200
|
+
type: "mov";
|
|
3201
|
+
mov: MovVideoContainerFormat;
|
|
3202
|
+
}
|
|
3203
|
+
interface VideoDecodeFormat_mkv {
|
|
3204
|
+
type: "mkv";
|
|
3205
|
+
mkv: MkvVideoContainerFormat;
|
|
3206
|
+
}
|
|
3207
|
+
type VideoDecodeFormat = VideoDecodeFormat_mp4 | VideoDecodeFormat_ts | VideoDecodeFormat_mov | VideoDecodeFormat_mkv;
|
|
3208
|
+
interface VideoSchema {
|
|
3209
|
+
format: VideoDecodeFormat;
|
|
3210
|
+
}
|
|
3211
|
+
interface VirtualTableLocator {
|
|
3212
|
+
branch: string;
|
|
3213
|
+
rid: string;
|
|
3214
|
+
}
|
|
3215
|
+
interface Void {
|
|
3216
|
+
}
|
|
3217
|
+
interface VorbisFormat {
|
|
3218
|
+
}
|
|
3219
|
+
/**
|
|
3220
|
+
* Vortex Map Template that can be used to generate Maps.
|
|
3221
|
+
*/
|
|
3222
|
+
interface VortexTemplateShape {
|
|
3223
|
+
about: LocalizedTitleAndDescription;
|
|
3224
|
+
}
|
|
3225
|
+
interface WalkthroughShape {
|
|
3226
|
+
about: LocalizedTitleAndDescription;
|
|
3227
|
+
}
|
|
3228
|
+
interface WavFormat {
|
|
3229
|
+
}
|
|
3230
|
+
interface WebhookShape {
|
|
3231
|
+
about: LocalizedTitleAndDescription;
|
|
3232
|
+
}
|
|
3233
|
+
interface WebmAudioContainerFormat_singleStream {
|
|
3234
|
+
type: "singleStream";
|
|
3235
|
+
singleStream: SingleStreamWebmAudioContainerFormat;
|
|
3236
|
+
}
|
|
3237
|
+
type WebmAudioContainerFormat = WebmAudioContainerFormat_singleStream;
|
|
3238
|
+
interface WebpFormat {
|
|
3239
|
+
}
|
|
3240
|
+
type WidgetReference = BlockInternalId;
|
|
3241
|
+
type WidgetSetReference = BlockInternalId;
|
|
3242
|
+
interface WidgetSetShape {
|
|
3243
|
+
about: LocalizedTitleAndDescription;
|
|
3244
|
+
widgets: Array<WidgetReference>;
|
|
3245
|
+
}
|
|
3246
|
+
interface WidgetShape {
|
|
3247
|
+
about: LocalizedTitleAndDescription;
|
|
3248
|
+
widgetSet: WidgetSetReference;
|
|
3249
|
+
}
|
|
3250
|
+
/**
|
|
3251
|
+
* Workflow Graph shape that can be used to generate Workflow Graphs. Never consumed by any downstream blocks.
|
|
3252
|
+
*/
|
|
3253
|
+
interface WorkflowGraphShape {
|
|
3254
|
+
about: LocalizedTitleAndDescription;
|
|
3255
|
+
}
|
|
3256
|
+
interface WorkshopApplicationInputShape {
|
|
3257
|
+
about: LocalizedTitleAndDescription;
|
|
3258
|
+
}
|
|
3259
|
+
interface WorkshopApplicationOutputShape {
|
|
3260
|
+
about: LocalizedTitleAndDescription;
|
|
3261
|
+
}
|
|
3262
|
+
/**
|
|
3263
|
+
* An Input Shape use to provide a Workshop's Saved States SaveLocation
|
|
3264
|
+
*/
|
|
3265
|
+
interface WorkshopApplicationSaveLocationInputShape {
|
|
3266
|
+
about: LocalizedTitleAndDescription;
|
|
3267
|
+
id: StableShapeIdentifier;
|
|
3268
|
+
}
|
|
3269
|
+
interface XlsxFormat {
|
|
3270
|
+
}
|
|
3271
|
+
|
|
3272
|
+
export type { ActionLogRuleEditedObjectRelations, ActionLogRulePropertyValues, ActionLogRuleShape, ActionLogValue, ActionLogValue_actionRid, ActionLogValue_actionTimestamp, ActionLogValue_actionTypeRid, ActionLogValue_actionTypeVersion, ActionLogValue_actionUser, ActionLogValue_asynchronousWebhookInstanceIds, ActionLogValue_editedObjects, ActionLogValue_interfaceParameterPropertyValue, ActionLogValue_isReverted, ActionLogValue_notificationIds, ActionLogValue_notifiedUsers, ActionLogValue_objectParameterPropertyValue, ActionLogValue_parameterValue, ActionLogValue_revertTimestamp, ActionLogValue_revertUser, ActionLogValue_scenarioRid, ActionLogValue_summary, ActionLogValue_synchronousWebhookInstanceId, ActionParameterShapeId, ActionParameterTypeShape, ActionTypeParameterReference, ActionTypeParameterShape, ActionTypeReference, ActionTypeRichTextComponent, ActionTypeRichTextComponent_message, ActionTypeRichTextComponent_parameter, ActionTypeRichTextComponent_parameterProperty, ActionTypeRid, ActionTypeShape, AipAgentShape, AllowOntologySchemaMigrationsShape, AllowedObjectPropertyType, AllowedObjectPropertyType_objectPropertyType, AllowedProfileNamesConstraint, AnySchema, AppConfigOutputShape, ArrayBaseType, ArrayObjectPropertyType, ArtifactsRepositoryShape, AttachmentListType, AttachmentType, AudioDecodeFormat, AudioDecodeFormat_flac, AudioDecodeFormat_mp2, AudioDecodeFormat_mp3, AudioDecodeFormat_mp4, AudioDecodeFormat_nistSphere, AudioDecodeFormat_ogg, AudioDecodeFormat_wav, AudioDecodeFormat_webm, AudioSchema, AuthoringLibraryShape, AuthoringRepositoryShape, AutomationShape, BaseParameterType, BaseParameterType_attachment, BaseParameterType_attachmentList, BaseParameterType_boolean, BaseParameterType_booleanList, BaseParameterType_date, BaseParameterType_dateList, BaseParameterType_decimal, BaseParameterType_decimalList, BaseParameterType_double, BaseParameterType_doubleList, BaseParameterType_geohash, BaseParameterType_geohashList, BaseParameterType_geoshape, BaseParameterType_geoshapeList, BaseParameterType_geotimeSeriesReference, BaseParameterType_geotimeSeriesReferenceList, BaseParameterType_integer, BaseParameterType_integerList, BaseParameterType_interfaceObjectSetRid, BaseParameterType_interfaceReference, BaseParameterType_interfaceReferenceList, BaseParameterType_long, BaseParameterType_longList, BaseParameterType_marking, BaseParameterType_markingList, BaseParameterType_mediaReference, BaseParameterType_objectReference, BaseParameterType_objectReferenceList, BaseParameterType_objectSetRid, BaseParameterType_objectTypeReference, BaseParameterType_string, BaseParameterType_stringList, BaseParameterType_struct, BaseParameterType_structList, BaseParameterType_timeSeriesReference, BaseParameterType_timestamp, BaseParameterType_timestampList, BaseType, BaseType_array, BaseType_primitive, BaseType_structV2, BlobsterResourceInputShape, BlobsterResourceOutputShape, BlobsterResourceType, BlockInternalId, BlockSetVersion, BlockSetVersionMatcher, BlockSetVersionRange, BlockType, BmpFormat, BooleanListType, BooleanType, CarbonWorkspaceInputShape, CarbonWorkspaceOutputShape, Changelog, Changelog_markdown, CheckpointConfigOutputShape, CipherAlgorithm, CipherAlgorithm_aesGcmSiv, CipherAlgorithm_aesSiv, CipherAlgorithm_imageScrambling, CipherAlgorithm_sha256, CipherAlgorithm_sha512, CipherChannelInputShape, CipherChannelOutputShape, CipherLicenseInputShape, CipherLicenseInputShapeV2, CipherLicenseOutputShape, CipherLicensePermit, CipherLicensePermit_highTrustRequestPermit, CipherLicensePermit_rateLimitedRequestPermit, CipherLicensePermit_transformsRequestPermit, CipherLicenseType, CipherLicenseType_adminLicense, CipherLicenseType_dataManagerLicense, CipherLicenseType_operationalUserLicense, CipherOperationType, CipherOperationType_decrypt, CipherOperationType_encrypt, CipherOperationType_hash, CipherTextPropertyType, CodeWorkspaceInputShape, CodeWorkspaceLicenseInputShape, CodeWorkspaceOutputShape, CompassFolderType, CompassFolderTypeConstraint, CompassFolderTypeConstraints, CompassResourceInputShape, CompassResourceOutputShape, CompassResourceType, CompassResourceTypeConstraints, CompassResourceTypeConstraints_compassFolderTypeConstraints, CompassResourceType_compassFolderType, ComputeModuleType, ConcreteArrayType, ConcreteDataType, ConcreteDataType_array, ConcreteDataType_map, ConcreteDataType_primitive, ConcreteDataType_struct, ConcreteDecimalType, ConcreteMapType, ConcretePrimitiveDataType, ConcretePrimitiveDataType_binary, ConcretePrimitiveDataType_boolean, ConcretePrimitiveDataType_byte, ConcretePrimitiveDataType_date, ConcretePrimitiveDataType_decimal, ConcretePrimitiveDataType_double, ConcretePrimitiveDataType_float, ConcretePrimitiveDataType_integer, ConcretePrimitiveDataType_long, ConcretePrimitiveDataType_short, ConcretePrimitiveDataType_string, ConcretePrimitiveDataType_timestamp, ConcreteStructElement, ConcreteStructType, CondaExtension, CondaLocator, CondaLocatorV2, ContainerImageType, ContourAnalysisShape, CreationTimestamp, DataHealthCheckGroupShape, DataHealthCheckShape, DataType, DataType_booleanType, DataType_cronWithTimeZoneType, DataType_integerType, DataType_stringType, DatasetLocator, DatasourceBuildRequirements, DatasourceColumnReference, DatasourceColumnShape, DatasourceColumnType, DatasourceColumnTypeClass, DatasourceColumnTypeClass_eddieDefined, DatasourceColumnTypeClass_valueType, DatasourceColumnType_concrete, DatasourceColumnType_generic, DatasourceLocator, DatasourceLocator_dataset, DatasourceLocator_restrictedView, DatasourceLocator_stream, DatasourceLocator_virtualTable, DateListType, DateType, DecimalListType, DecimalType, DeployedAppShape, DicomSchema, DocumentDecodeFormat, DocumentDecodeFormat_docx, DocumentDecodeFormat_pdf, DocumentDecodeFormat_pptx, DocumentDecodeFormat_txt, DocumentSchema, DocxFormat, DoubleListType, DoubleType, EddieDefinedTypeClass, EddieDefinedTypeClassVersion, EddieEdgeParameterInputShape, EddieEdgePipelineInputDatasetRid, EddieEdgePipelineOutputShape, EddieGeotimeConfigurationInputShape, EddieInputParameterType, EddieInputParameterType_primitive, EddieLiteralParameterType, EddieParameterShape, EddieParameterShapeV2, EddiePipelineShape, EddiePipelineType, EddiePrimitiveParameterType, EddiePrimitiveParameterType_literal, EddiePrimitiveParameterType_regex, EddieReplayOptionShape, EddieReplayOptionType, EddieTypeReference, EddieTypeReference_explicit, EdgeMagritteTaskType, EdgePipelineMagritteSourceInputShape, Empty, EvaluationSuiteShape, FilesDatasourceInputShape, FilesDatasourceInputType, FilesDatasourceInputType_dataset, FilesDatasourceInputType_mediaSet, FilesDatasourceLocator, FilesDatasourceLocator_dataset, FilesDatasourceLocator_mediaSet, FilesDatasourceOutputShape, FilesDatasourceOutputType, FilesDatasourceOutputType_dataset, FilesDatasourceOutputType_mediaSet, FilesLocator, FlacFormat, FlinkProfileShape, FunctionConfigurationShape, FunctionContractApiName, FunctionContractReference, FunctionContractShape, FunctionContractVersion, FunctionInputName, FunctionInputType, FunctionOutputType, FunctionOutputType_singleOutputType, FunctionReference, FunctionShape, FusionDocumentShape, GenericDataType, GenericDataType_any, GenericDataType_anyDecimal, GenericDataType_oneOf, GeohashListType, GeohashType, GeoshapeListType, GeoshapeType, GeotimeSeriesIntegrationRid, GeotimeSeriesIntegrationShape, GeotimeSeriesReferenceListType, GeotimeSeriesReferenceType, GroupId, HighTrustRequestPermit, ImageryDecodeFormat, ImageryDecodeFormat_bmp, ImageryDecodeFormat_jp2k, ImageryDecodeFormat_jpg, ImageryDecodeFormat_nitf, ImageryDecodeFormat_png, ImageryDecodeFormat_tiff, ImageryDecodeFormat_webp, ImagerySchema, InputEditsSupport, InputObjectBackendVersion, InputShape, InputShapeMetadata, InputShape_action, InputShape_actionParameter, InputShape_aipAgent, InputShape_allowOntologySchemaMigrations, InputShape_artifactsRepository, InputShape_authoringLibrary, InputShape_authoringRepository, InputShape_automation, InputShape_blobsterResource, InputShape_carbonWorkspace, InputShape_cipherChannel, InputShape_cipherLicense, InputShape_cipherLicenseV2, InputShape_codeWorkspace, InputShape_codeWorkspaceLicense, InputShape_compassResource, InputShape_contourAnalysis, InputShape_dataHealthCheck, InputShape_dataHealthCheckGroup, InputShape_datasourceColumn, InputShape_deployedApp, InputShape_eddieEdgeParameter, InputShape_eddieGeotimeConfiguration, InputShape_eddieParameter, InputShape_eddieParameterV2, InputShape_eddiePipeline, InputShape_eddieReplayOption, InputShape_edgePipelineMagritteSource, InputShape_evaluationSuite, InputShape_filesDatasource, InputShape_flinkProfile, InputShape_function, InputShape_functionContract, InputShape_fusionDocument, InputShape_geotimeSeriesIntegration, InputShape_installPrefix, InputShape_interfaceLinkType, InputShape_interfacePropertyType, InputShape_interfaceType, InputShape_languageModel, InputShape_linkType, InputShape_logic, InputShape_logicFunction, InputShape_machinery, InputShape_magritteConnection, InputShape_magritteExport, InputShape_magritteSource, InputShape_magritteSourceConfigOverrides, InputShape_magritteStreamingExtractConfigOverrides, InputShape_markings, InputShape_model, InputShape_monitorView, InputShape_monocleGraph, InputShape_multipassGroup, InputShape_multipassUserAttribute, InputShape_namedCredential, InputShape_networkEgressPolicy, InputShape_notepadDocument, InputShape_notepadTemplate, InputShape_notepadTemplateParameter, InputShape_objectInstance, InputShape_objectSet, InputShape_objectType, InputShape_objectView, InputShape_objectViewTab, InputShape_ontologyDatasource, InputShape_ontologyDatasourceRetention, InputShape_ontologySdk, InputShape_overrideOntologyEntityApiNames, InputShape_parameter, InputShape_property, InputShape_quiverDashboard, InputShape_schedule, InputShape_sharedPropertyType, InputShape_slateApplication, InputShape_solutionDesign, InputShape_sparkProfile, InputShape_tabularDatasource, InputShape_taurusWorkflow, InputShape_thirdPartyApplication, InputShape_timeSeriesSync, InputShape_valueType, InputShape_vectorWorkbook, InputShape_vertexTemplate, InputShape_vortexTemplate, InputShape_walkthrough, InputShape_webhook, InputShape_widget, InputShape_widgetSet, InputShape_workshopApplication, InputShape_workshopApplicationSaveLocation, InstallPrefixShape, InstallationMode, InstallationMode_bootstrap, InstallationMode_production, InstallationMode_singleton, IntegerListType, IntegerType, InterfaceLinkTypeCardinality, InterfaceLinkTypeInputShape, InterfaceLinkTypeOutputShape, InterfaceLinkTypeReference, InterfaceLinkTypeRid, InterfaceObjectSetRidType, InterfaceParameterPropertyValue, InterfacePropertyTypeInputShape, InterfacePropertyTypeOutputShape, InterfacePropertyTypeReference, InterfacePropertyTypeRid, InterfaceReferenceListType, InterfaceReferenceType, InterfaceTypeInputShape, InterfaceTypeOutputShape, InterfaceTypeReference, InterfaceTypeRid, Jpeg2000Format, JpgFormat, LanguageModelShape, LicenseProductType, LinkTypeInputShape, LinkTypeInputShape_intermediary, LinkTypeInputShape_manyToMany, LinkTypeInputShape_oneToMany, LinkTypeIntermediaryShape, LinkTypeManyToManyInputShape, LinkTypeManyToManyOutputShape, LinkTypeOneToManyShape, LinkTypeOutputShape, LinkTypeOutputShape_intermediary, LinkTypeOutputShape_manyToMany, LinkTypeOutputShape_oneToMany, LinkTypeReference, LinkTypeRid, LinkedEntityTypeReference, LinkedEntityTypeReference_interfaceType, LinkedEntityTypeReference_objectType, Locale, LocalizedDescription, LocalizedTitle, LocalizedTitleAndDescription, LogicFunctionShape, LogicInputArgument, LogicInputParameterType, LogicInputParameterType_unspecified, LogicOutputArgument, LogicOutputParameterType, LogicOutputParameterType_unspecified, LogicReference, LogicShape, LongListType, LongType, MachineryProcessShape, MagritteApiName, MagritteConnectionInputShape, MagritteConnectionType, MagritteExportShape, MagritteExtractOutputShape, MagritteSecretName, MagritteSourceConfigOverridesInputShape, MagritteSourceInputShape, MagritteSourceOutputShape, MagritteSourceReference, MagritteSourceType, MagritteSourceUsageRestriction, MagritteSourceUsageRestriction_computeModule, MagritteSourceUsageRestriction_eddiePipeline, MagritteSourceUsageRestriction_stemmaRepository, MagritteStreamingExtractConfigOverridesInputShape, MagritteStreamingExtractOutputShape, MapRendererSetOutputShape, MapRendererSetOutputShapeV2, MarkdownText, MarkingListType, MarkingOperation, MarkingType, MarkingsShape, MarkingsSizeConstraints, MavenLocator, MediaReferenceType, MediaSchema, MediaSchemaType, MediaSchemaTypeV2, MediaSchemaTypeV2_any, MediaSchemaTypeV2_audio, MediaSchemaTypeV2_dicom, MediaSchemaTypeV2_document, MediaSchemaTypeV2_imagery, MediaSchemaTypeV2_multiModal, MediaSchemaTypeV2_spreadsheet, MediaSchemaTypeV2_video, MediaSchema_any, MediaSchema_document, MediaSchema_unspecified, MediaSetDatasourceType, MediaSetLocator, MediaSetTransactionPolicy, MediaSetTransactionPolicy_any, MediaSetTransactionPolicy_batchTransactions, MediaSetTransactionPolicy_noTransactions, MkvVideoContainerFormat, ModelInputShape, ModelOutputShape, ModelType, ModelType_binary, ModelType_container, ModelType_modelSourceNotMarketplaceCompatible, MonitorShape, MonitorViewShape, MonocleGraphShape, MovVideoContainerFormat, Mp2Format, Mp3Format, Mp4AudioContainerFormat, Mp4AudioContainerFormat_singleStream, Mp4VideoContainerFormat, MultiModalSchema, MultipassGroupShape, MultipassUserAttributeShape, NamedCredentialShape, NetworkEgressPolicyShape, NistSphereFormat, NitfFormat, NotepadDocumentShape, NotepadTemplateParameterReference, NotepadTemplateParameterShape, NotepadTemplateParameterType, NotepadTemplateReference, NotepadTemplateShape, NpmLocator, ObjectInstanceInputShape, ObjectParameterPropertyValue, ObjectPropertyType, ObjectPropertyType_array, ObjectPropertyType_primitive, ObjectReferenceListType, ObjectReferenceType, ObjectSetRidType, ObjectSetShape, ObjectTypeInputShape, ObjectTypeOutputShape, ObjectTypePropertyReference, ObjectTypeReference, ObjectTypeReferenceType, ObjectTypeRid, ObjectViewReference, ObjectViewShape, ObjectViewTabReference, ObjectViewTabShape, OciLocator, OggAudioContainerFormat, OggAudioContainerFormat_singleStream, OggAudioFormat, OggAudioFormat_opus, OggAudioFormat_vorbis, OneToManyLinkCardinalityHint, OntologyDatasourceRetentionShape, OntologyDatasourceShape, OntologyEntityReference, OntologyEntityReference_manyToManyLinkType, OntologyEntityReference_objectType, OntologySdkShape, OntologySdkShapeV2, OpusFormat, OutputEditsSupport, OutputObjectBackendVersion, OutputShape, OutputShape_action, OutputShape_actionParameter, OutputShape_aipAgent, OutputShape_appConfig, OutputShape_appConfigTitanium, OutputShape_artifactsRepository, OutputShape_authoringLibrary, OutputShape_authoringRepository, OutputShape_automation, OutputShape_blobsterResource, OutputShape_carbonWorkspace, OutputShape_checkpointConfig, OutputShape_cipherChannel, OutputShape_cipherLicense, OutputShape_codeWorkspace, OutputShape_compassResource, OutputShape_contourAnalysis, OutputShape_dataHealthCheck, OutputShape_dataHealthCheckGroup, OutputShape_datasourceColumn, OutputShape_deployedApp, OutputShape_eddieEdgePipeline, OutputShape_eddiePipeline, OutputShape_evaluationSuite, OutputShape_filesDatasource, OutputShape_function, OutputShape_functionConfiguration, OutputShape_geotimeSeriesIntegration, OutputShape_interfaceLinkType, OutputShape_interfacePropertyType, OutputShape_interfaceType, OutputShape_linkType, OutputShape_logic, OutputShape_logicFunction, OutputShape_machinery, OutputShape_magritteExport, OutputShape_magritteExtract, OutputShape_magritteSource, OutputShape_magritteStreamingExtract, OutputShape_mapRendererSet, OutputShape_mapRendererSetV2, OutputShape_model, OutputShape_monitor, OutputShape_monitorView, OutputShape_namedCredential, OutputShape_networkEgressPolicy, OutputShape_notepadDocument, OutputShape_notepadTemplate, OutputShape_notepadTemplateParameter, OutputShape_objectSet, OutputShape_objectType, OutputShape_objectView, OutputShape_objectViewTab, OutputShape_ontologyDatasource, OutputShape_ontologySdk, OutputShape_ontologySdkV2, OutputShape_property, OutputShape_quiverDashboard, OutputShape_resourceUpdatesContent, OutputShape_rosettaDocsBundle, OutputShape_schedule, OutputShape_sharedPropertyType, OutputShape_slateApplication, OutputShape_solutionDesign, OutputShape_tabularDatasource, OutputShape_taurusWorkflow, OutputShape_thirdPartyApplication, OutputShape_timeSeriesSync, OutputShape_transformsJobSpec, OutputShape_valueType, OutputShape_vertexTemplate, OutputShape_vortexTemplate, OutputShape_walkthrough, OutputShape_webhook, OutputShape_widget, OutputShape_widgetSet, OutputShape_workflowGraph, OutputShape_workshopApplication, OverrideOntologyEntityApiNamesShape, ParameterInputShape, PathPolicy, PathPolicy_any, PathPolicy_pathNotSupported, PathPolicy_pathRequired, PdfFormat, PngFormat, PptxFormat, PreallocateAccessRequirementType, PrimitiveBaseType, PrimitiveBaseType_binary, PrimitiveBaseType_boolean, PrimitiveBaseType_byte, PrimitiveBaseType_date, PrimitiveBaseType_decimal, PrimitiveBaseType_double, PrimitiveBaseType_float, PrimitiveBaseType_integer, PrimitiveBaseType_long, PrimitiveBaseType_map, PrimitiveBaseType_optional, PrimitiveBaseType_short, PrimitiveBaseType_string, PrimitiveBaseType_struct, PrimitiveBaseType_structV2, PrimitiveBaseType_timestamp, PrimitiveObjectPropertyType, PrimitiveObjectPropertyType_attachmentType, PrimitiveObjectPropertyType_booleanType, PrimitiveObjectPropertyType_byteType, PrimitiveObjectPropertyType_cipherTextType, PrimitiveObjectPropertyType_dateType, PrimitiveObjectPropertyType_decimalType, PrimitiveObjectPropertyType_doubleType, PrimitiveObjectPropertyType_floatType, PrimitiveObjectPropertyType_geohashType, PrimitiveObjectPropertyType_geoshapeType, PrimitiveObjectPropertyType_geotimeSeriesReferenceType, PrimitiveObjectPropertyType_integerType, PrimitiveObjectPropertyType_longType, PrimitiveObjectPropertyType_markingType, PrimitiveObjectPropertyType_mediaReferenceType, PrimitiveObjectPropertyType_shortType, PrimitiveObjectPropertyType_stringType, PrimitiveObjectPropertyType_structType, PrimitiveObjectPropertyType_timeDependentType, PrimitiveObjectPropertyType_timestampType, PrimitiveObjectPropertyType_vectorType, PropertyInputShape, PropertyOutputShape, PropertyTypeRid, PypiLocator, QuiverDashboardShape, RateLimitedRequestPermit, ReconcileAccessRequirementType, RepoDataLocator, RequestType, ResolvedDatasourceColumnShape, ResourceUpdatesContentOutputShape, RestrictedViewLocator, RosettaDocsBundleShape, ScheduleShape, SecretName, SerializedDataLocator, SerializedDataLocator_conda, SerializedDataLocator_condaV2, SerializedDataLocator_files, SerializedDataLocator_maven, SerializedDataLocator_npm, SerializedDataLocator_oci, SerializedDataLocator_pypi, SerializedDataLocator_repoData, ServiceManagedValueTypeIdentifier, SharedPropertyTypeInputShape, SharedPropertyTypeOutputShape, SharedPropertyTypeReference, SharedPropertyTypeRid, SingleOutputType, SingleStreamMp4AudioContainerFormat, SingleStreamOggAudioContainerFormat, SingleStreamWebmAudioContainerFormat, SlateApplicationInputShape, SlateApplicationOutputShape, SolutionDesignShape, SparkProfileConstraint, SparkProfileConstraint_allowedProfileNames, SparkProfileName, SparkProfileShape, SpreadsheetDecodeFormat, SpreadsheetDecodeFormat_xlsx, SpreadsheetSchema, StableShapeIdentifier, StemmaRepositoryType, StreamLocator, StringListType, StringType, StructFieldBaseParameterType, StructFieldBaseParameterType_boolean, StructFieldBaseParameterType_date, StructFieldBaseParameterType_double, StructFieldBaseParameterType_geohash, StructFieldBaseParameterType_geoshape, StructFieldBaseParameterType_integer, StructFieldBaseParameterType_long, StructFieldBaseParameterType_objectReference, StructFieldBaseParameterType_string, StructFieldBaseParameterType_timestamp, StructFieldRid, StructListType, StructParameterFieldApiName, StructPropertyType, StructType, StructV2BaseType, SupportedMarkingsType, TabularDatasourceInputShape, TabularDatasourceOutputShape, TabularDatasourceReference, TabularDatasourceType, TagOrDigest, TagOrDigest_digest, TagOrDigest_tag, TaurusWorkflowShape, ThirdPartyApplicationShape, TiffFormat, TimeSeriesReferenceType, TimeSeriesSyncRid, TimeSeriesSyncShape, TimeSeriesSyncType, TimestampListType, TimestampType, TransformsJobSpecShape, TransformsRequestPermit, TsVideoContainerFormat, TxtFormat, UnspecifiedParameterType, ValueTypeApiName, ValueTypeReference, ValueTypeShape, ValueTypeVersion, VectorPropertyType, VectorSimilarityFunction, VectorWorkbookShape, VertexTemplateShape, VideoDecodeFormat, VideoDecodeFormat_mkv, VideoDecodeFormat_mov, VideoDecodeFormat_mp4, VideoDecodeFormat_ts, VideoSchema, VirtualTableLocator, Void, VorbisFormat, VortexTemplateShape, WalkthroughShape, WavFormat, WebhookShape, WebmAudioContainerFormat, WebmAudioContainerFormat_singleStream, WebpFormat, WidgetReference, WidgetSetReference, WidgetSetShape, WidgetShape, WorkflowGraphShape, WorkshopApplicationInputShape, WorkshopApplicationOutputShape, WorkshopApplicationSaveLocationInputShape, XlsxFormat };
|