@osdk/client.unstable 2.8.0-beta.2 → 2.8.0-beta.21
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 +62 -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 +388 -11
- 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/generated/ontology-metadata/api/__components.d.ts +340 -10
- package/build/types/generated/ontology-metadata/api/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/blockdata/__components.d.ts +10 -2
- package/build/types/generated/ontology-metadata/api/blockdata/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/entitymetadata/__components.d.ts +27 -0
- package/build/types/generated/ontology-metadata/api/entitymetadata/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/entitymetadata/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/api/entitymetadata/index.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/api/index.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/modification/__components.d.ts +143 -3
- package/build/types/generated/ontology-metadata/api/modification/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/modification/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/api/modification/index.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/permissions/__components.d.ts +6 -1
- package/build/types/generated/ontology-metadata/api/permissions/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/permissions/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/api/permissions/index.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/usage/ExperimentalOntologyUsageService/checkActionTypeProvenanceStatus.d.ts +10 -0
- package/build/types/generated/ontology-metadata/api/usage/ExperimentalOntologyUsageService/checkActionTypeProvenanceStatus.d.ts.map +1 -0
- package/build/types/generated/ontology-metadata/api/usage/ExperimentalOntologyUsageService.d.ts +1 -0
- package/build/types/generated/ontology-metadata/api/usage/ExperimentalOntologyUsageService.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/usage/__components.d.ts +40 -0
- package/build/types/generated/ontology-metadata/api/usage/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/usage/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/api/usage/index.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/validation/__components.d.ts +132 -1
- package/build/types/generated/ontology-metadata/api/validation/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/api/validation/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/api/validation/index.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/branch/api/__components.d.ts +48 -2
- package/build/types/generated/ontology-metadata/branch/api/__components.d.ts.map +1 -1
- package/build/types/generated/ontology-metadata/branch/api/index.d.ts +1 -1
- package/build/types/generated/ontology-metadata/branch/api/index.d.ts.map +1 -1
- 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
package/build/cjs/index.d.cts
CHANGED
|
@@ -5262,6 +5262,34 @@ type EntityMigrationCategory = EntityMigrationCategory_objectStorageV1 | EntityM
|
|
|
5262
5262
|
*/
|
|
5263
5263
|
interface ExtraLargeTransformProfile {
|
|
5264
5264
|
}
|
|
5265
|
+
/**
|
|
5266
|
+
* Interface actions are disabled for this ObjectType.
|
|
5267
|
+
*/
|
|
5268
|
+
interface InterfaceActionDisabled {
|
|
5269
|
+
}
|
|
5270
|
+
/**
|
|
5271
|
+
* Interface actions are enabled for this ObjectType.
|
|
5272
|
+
*/
|
|
5273
|
+
interface InterfaceActionEnabled {
|
|
5274
|
+
}
|
|
5275
|
+
interface InterfaceActionSettings_enabled {
|
|
5276
|
+
type: "enabled";
|
|
5277
|
+
enabled: InterfaceActionEnabled;
|
|
5278
|
+
}
|
|
5279
|
+
interface InterfaceActionSettings_disabled {
|
|
5280
|
+
type: "disabled";
|
|
5281
|
+
disabled: InterfaceActionDisabled;
|
|
5282
|
+
}
|
|
5283
|
+
/**
|
|
5284
|
+
* Union type to enable or disable interface actions.
|
|
5285
|
+
*/
|
|
5286
|
+
type InterfaceActionSettings = InterfaceActionSettings_enabled | InterfaceActionSettings_disabled;
|
|
5287
|
+
/**
|
|
5288
|
+
* Settings related to all interfaces for an ObjectType.
|
|
5289
|
+
*/
|
|
5290
|
+
interface InterfaceSettings {
|
|
5291
|
+
enableInterfaceActions: InterfaceActionSettings;
|
|
5292
|
+
}
|
|
5265
5293
|
/**
|
|
5266
5294
|
* Contains additional metadata associated with a LinkType.
|
|
5267
5295
|
*/
|
|
@@ -5351,6 +5379,7 @@ interface ObjectTypeEntityMetadata {
|
|
|
5351
5379
|
editsResolutionStrategies: EditsResolutionStrategies;
|
|
5352
5380
|
entityConfig: EntityConfig;
|
|
5353
5381
|
gothamMapping?: ObjectTypeGothamMapping | null | undefined;
|
|
5382
|
+
interfaceSettings: InterfaceSettings;
|
|
5354
5383
|
objectTypeIndexingSettings?: ObjectTypeIndexingSettings | null | undefined;
|
|
5355
5384
|
patchApplicationStrategy: PatchApplicationStrategy;
|
|
5356
5385
|
provenance?: EntityProvenance | null | undefined;
|
|
@@ -5572,12 +5601,15 @@ interface MarketplaceActionType {
|
|
|
5572
5601
|
metadata: MarketplaceActionTypeMetadata;
|
|
5573
5602
|
}
|
|
5574
5603
|
interface MarketplaceActionTypeDisplayMetadata {
|
|
5604
|
+
applyingMessage: Array<ActionTypeRichTextComponent>;
|
|
5605
|
+
applyingMessageEnabled?: boolean | null | undefined;
|
|
5575
5606
|
configuration?: ActionTypeDisplayMetadataConfiguration | null | undefined;
|
|
5576
5607
|
description: string;
|
|
5577
5608
|
displayName: string;
|
|
5578
5609
|
icon?: Icon | null | undefined;
|
|
5579
5610
|
submitButtonDisplayMetadata?: ButtonDisplayMetadata | null | undefined;
|
|
5580
5611
|
successMessage: Array<ActionTypeRichTextComponent>;
|
|
5612
|
+
successMessageEnabled?: boolean | null | undefined;
|
|
5581
5613
|
toolDescription?: string | null | undefined;
|
|
5582
5614
|
typeClasses: Array<TypeClass>;
|
|
5583
5615
|
undoButtonConfiguration?: boolean | null | undefined;
|
|
@@ -5601,6 +5633,7 @@ interface MarketplaceActionTypeMetadata {
|
|
|
5601
5633
|
parameters: Record<ParameterId, Parameter>;
|
|
5602
5634
|
provenance?: ActionTypeProvenance | null | undefined;
|
|
5603
5635
|
rid: ActionTypeRid;
|
|
5636
|
+
scenarioSettings?: ActionTypeScenarioSettings | null | undefined;
|
|
5604
5637
|
sections: Record<SectionId, Section>;
|
|
5605
5638
|
stagingMediaSetRid?: MediaSetRid | null | undefined;
|
|
5606
5639
|
status: ActionTypeStatus;
|
|
@@ -5709,6 +5742,7 @@ interface MarketplaceObjectTypeEntityMetadata {
|
|
|
5709
5742
|
editsResolutionStrategies?: EditsResolutionStrategies | null | undefined;
|
|
5710
5743
|
entityConfig: EntityConfig;
|
|
5711
5744
|
gothamMapping?: ObjectTypeGothamMapping | null | undefined;
|
|
5745
|
+
interfaceSettings?: InterfaceSettings | null | undefined;
|
|
5712
5746
|
patchApplicationStrategy?: PatchApplicationStrategy | null | undefined;
|
|
5713
5747
|
provenance?: EntityProvenance | null | undefined;
|
|
5714
5748
|
redacted?: boolean | null | undefined;
|
|
@@ -5834,6 +5868,7 @@ interface OntologyIrMarketplaceActionTypeMetadata {
|
|
|
5834
5868
|
formContentOrdering: Array<OntologyIrFormContent>;
|
|
5835
5869
|
parameterOrdering: Array<ParameterId>;
|
|
5836
5870
|
parameters: Record<ParameterId, OntologyIrParameter>;
|
|
5871
|
+
scenarioSettings?: ActionTypeScenarioSettings | null | undefined;
|
|
5837
5872
|
sections: Record<SectionId, OntologyIrSection>;
|
|
5838
5873
|
stagingMediaSetRid?: MediaSetRid | null | undefined;
|
|
5839
5874
|
status: OntologyIrActionTypeStatus;
|
|
@@ -5877,6 +5912,7 @@ interface OntologyIrMarketplaceInterfaceType {
|
|
|
5877
5912
|
apiName: InterfaceTypeApiName;
|
|
5878
5913
|
displayMetadata: MarketplaceInterfaceTypeDisplayMetadata;
|
|
5879
5914
|
extendsInterfaces: Array<InterfaceTypeApiName>;
|
|
5915
|
+
extendsInterfacesMetadata: Array<OntologyIrMarketplaceInterfaceType>;
|
|
5880
5916
|
links: Array<OntologyIrMarketplaceInterfaceLinkType>;
|
|
5881
5917
|
properties: Array<OntologyIrSharedPropertyType>;
|
|
5882
5918
|
propertiesV2: Record<ObjectTypeFieldApiName, OntologyIrInterfaceSharedPropertyType>;
|
|
@@ -5910,6 +5946,7 @@ type OntologyIrMarketplaceInterfaceTypeStatus = OntologyIrMarketplaceInterfaceTy
|
|
|
5910
5946
|
interface OntologyIrMarketplaceObjectTypeEntityMetadata {
|
|
5911
5947
|
aliases: Array<ObjectTypeAlias>;
|
|
5912
5948
|
arePatchesEnabled: boolean;
|
|
5949
|
+
interfaceSettings?: InterfaceSettings | null | undefined;
|
|
5913
5950
|
}
|
|
5914
5951
|
interface OntologyIrMarketplaceSharedPropertyBasedPropertyType {
|
|
5915
5952
|
requireImplementation: boolean;
|
|
@@ -6790,6 +6827,18 @@ type ActionApplyClientPreferences = ActionApplyClientPreferences_disallowedClien
|
|
|
6790
6827
|
interface ActionApplyDisallowedClients {
|
|
6791
6828
|
disallowedFrontendConsumer: Array<ActionTypeFrontendConsumer>;
|
|
6792
6829
|
}
|
|
6830
|
+
/**
|
|
6831
|
+
* Contains the definition for platform effects that are executed as part of running an Action.
|
|
6832
|
+
*/
|
|
6833
|
+
interface ActionEffects {
|
|
6834
|
+
synchronousPreWritebackEffect?: SynchronousPreWritebackEffect | null | undefined;
|
|
6835
|
+
}
|
|
6836
|
+
/**
|
|
6837
|
+
* See ActionEffects docs.
|
|
6838
|
+
*/
|
|
6839
|
+
interface ActionEffectsModification {
|
|
6840
|
+
synchronousPreWritebackEffect?: SynchronousPreWritebackEffectModification | null | undefined;
|
|
6841
|
+
}
|
|
6793
6842
|
interface ActionLogConfiguration {
|
|
6794
6843
|
actionLogSummary: Array<ActionLogSummaryPart>;
|
|
6795
6844
|
}
|
|
@@ -7259,6 +7308,8 @@ interface ActionTypeBranchWebhooksMode_disableWebhooksOnBranches {
|
|
|
7259
7308
|
type ActionTypeBranchWebhooksMode = ActionTypeBranchWebhooksMode_allowWebhooksOnBranches | ActionTypeBranchWebhooksMode_disableWebhooksOnBranches;
|
|
7260
7309
|
/**
|
|
7261
7310
|
* A ActionTypeCreate is used to create ActionTypes.
|
|
7311
|
+
*
|
|
7312
|
+
* Used in OntologyModificationRequest.
|
|
7262
7313
|
*/
|
|
7263
7314
|
interface ActionTypeCreate {
|
|
7264
7315
|
actionApplyClientSettings?: ActionApplyClientPreferences | null | undefined;
|
|
@@ -7266,8 +7317,10 @@ interface ActionTypeCreate {
|
|
|
7266
7317
|
apiName: ActionTypeApiName;
|
|
7267
7318
|
branchSettings?: ActionTypeBranchSettingsModification | null | undefined;
|
|
7268
7319
|
displayMetadata: ActionTypeDisplayMetadataModification;
|
|
7320
|
+
effects?: ActionEffectsModification | null | undefined;
|
|
7269
7321
|
formContentOrdering: Array<FormContent>;
|
|
7270
7322
|
logic: ActionLogicModification;
|
|
7323
|
+
markings: Array<MarkingId>;
|
|
7271
7324
|
notifications: Array<ActionNotificationModification>;
|
|
7272
7325
|
notificationSettings?: ActionNotificationSettings | null | undefined;
|
|
7273
7326
|
packageRid?: OntologyPackageRid | null | undefined;
|
|
@@ -7276,6 +7329,7 @@ interface ActionTypeCreate {
|
|
|
7276
7329
|
projectRid?: CompassFolderRid | null | undefined;
|
|
7277
7330
|
provenance?: ActionTypeProvenanceModification | null | undefined;
|
|
7278
7331
|
revert?: ActionRevert | null | undefined;
|
|
7332
|
+
scenarioSettings?: ActionTypeScenarioSettingsModification | null | undefined;
|
|
7279
7333
|
sections: Record<SectionId, PutSectionRequestModification>;
|
|
7280
7334
|
status?: ActionTypeStatus | null | undefined;
|
|
7281
7335
|
submissionConfiguration?: ActionSubmissionConfiguration | null | undefined;
|
|
@@ -7301,12 +7355,15 @@ interface ActionTypeDeletedEvent {
|
|
|
7301
7355
|
* DisplayMetadata shape used in responses
|
|
7302
7356
|
*/
|
|
7303
7357
|
interface ActionTypeDisplayMetadata {
|
|
7358
|
+
applyingMessage: Array<ActionTypeRichTextComponent>;
|
|
7359
|
+
applyingMessageEnabled: boolean;
|
|
7304
7360
|
configuration: ActionTypeDisplayMetadataConfiguration;
|
|
7305
7361
|
description: string;
|
|
7306
7362
|
displayName: string;
|
|
7307
7363
|
icon?: Icon | null | undefined;
|
|
7308
7364
|
submitButtonDisplayMetadata?: ButtonDisplayMetadata | null | undefined;
|
|
7309
7365
|
successMessage: Array<ActionTypeRichTextComponent>;
|
|
7366
|
+
successMessageEnabled: boolean;
|
|
7310
7367
|
toolDescription?: string | null | undefined;
|
|
7311
7368
|
typeClasses: Array<TypeClass>;
|
|
7312
7369
|
undoButtonConfiguration?: boolean | null | undefined;
|
|
@@ -7323,12 +7380,15 @@ interface ActionTypeDisplayMetadataConfiguration {
|
|
|
7323
7380
|
* DisplayMetadata shape used in requests
|
|
7324
7381
|
*/
|
|
7325
7382
|
interface ActionTypeDisplayMetadataModification {
|
|
7383
|
+
applyingMessage: Array<ActionTypeRichTextComponent>;
|
|
7384
|
+
applyingMessageEnabled?: boolean | null | undefined;
|
|
7326
7385
|
configuration?: ActionTypeDisplayMetadataConfiguration | null | undefined;
|
|
7327
7386
|
description: string;
|
|
7328
7387
|
displayName: string;
|
|
7329
7388
|
icon?: Icon | null | undefined;
|
|
7330
7389
|
submitButtonDisplayMetadata?: ButtonDisplayMetadata | null | undefined;
|
|
7331
7390
|
successMessage: Array<ActionTypeRichTextComponent>;
|
|
7391
|
+
successMessageEnabled?: boolean | null | undefined;
|
|
7332
7392
|
toolDescription?: string | null | undefined;
|
|
7333
7393
|
typeClasses: Array<TypeClass>;
|
|
7334
7394
|
undoButtonConfiguration?: boolean | null | undefined;
|
|
@@ -7485,6 +7545,7 @@ interface ActionTypeLoadVersionedResponse {
|
|
|
7485
7545
|
actionTypes: Array<ActionType>;
|
|
7486
7546
|
}
|
|
7487
7547
|
interface ActionTypeLogic {
|
|
7548
|
+
effects?: ActionEffects | null | undefined;
|
|
7488
7549
|
logic: ActionLogic;
|
|
7489
7550
|
notifications: Array<ActionNotification>;
|
|
7490
7551
|
revert?: ActionRevert | null | undefined;
|
|
@@ -7492,6 +7553,7 @@ interface ActionTypeLogic {
|
|
|
7492
7553
|
webhooks?: ActionWebhooks | null | undefined;
|
|
7493
7554
|
}
|
|
7494
7555
|
interface ActionTypeLogicRequest {
|
|
7556
|
+
effects?: ActionEffects | null | undefined;
|
|
7495
7557
|
logic: ActionLogic;
|
|
7496
7558
|
notifications: Array<ActionNotification>;
|
|
7497
7559
|
revert?: ActionRevert | null | undefined;
|
|
@@ -7514,6 +7576,7 @@ interface ActionTypeMetadata {
|
|
|
7514
7576
|
parameters: Record<ParameterId, Parameter>;
|
|
7515
7577
|
provenance?: ActionTypeProvenance | null | undefined;
|
|
7516
7578
|
rid: ActionTypeRid;
|
|
7579
|
+
scenarioSettings: ActionTypeScenarioSettings;
|
|
7517
7580
|
sections: Record<SectionId, Section>;
|
|
7518
7581
|
stagingMediaSetRid?: MediaSetRid | null | undefined;
|
|
7519
7582
|
status: ActionTypeStatus;
|
|
@@ -7536,6 +7599,7 @@ interface ActionTypeMetadataModification {
|
|
|
7536
7599
|
parameters: Record<ParameterId, Parameter>;
|
|
7537
7600
|
provenance?: ActionTypeProvenance | null | undefined;
|
|
7538
7601
|
rid: ActionTypeRid;
|
|
7602
|
+
scenarioSettings?: ActionTypeScenarioSettingsModification | null | undefined;
|
|
7539
7603
|
sections: Record<SectionId, Section>;
|
|
7540
7604
|
stagingMediaSetRid?: MediaSetRid | null | undefined;
|
|
7541
7605
|
status: ActionTypeStatus;
|
|
@@ -7551,6 +7615,8 @@ interface ActionTypeModificationRequest {
|
|
|
7551
7615
|
}
|
|
7552
7616
|
/**
|
|
7553
7617
|
* Request used to modify ActionTypes.
|
|
7618
|
+
*
|
|
7619
|
+
* Deprecated: Use OntologyModificationRequest with ActionTypeCreate and ActionTypeUpdate instead.
|
|
7554
7620
|
*/
|
|
7555
7621
|
interface ActionTypeModifyRequest {
|
|
7556
7622
|
actionsVersion?: ActionsVersion | null | undefined;
|
|
@@ -7630,6 +7696,21 @@ type ActionTypeRid = string;
|
|
|
7630
7696
|
interface ActionTypesAlreadyExistError {
|
|
7631
7697
|
actionTypeRids: Array<ActionTypeRid>;
|
|
7632
7698
|
}
|
|
7699
|
+
interface ActionTypeScenarioExecutionOnlyMode_allowExecutionOnlyOnScenario {
|
|
7700
|
+
type: "allowExecutionOnlyOnScenario";
|
|
7701
|
+
allowExecutionOnlyOnScenario: AllowExecutionOnlyOnScenario;
|
|
7702
|
+
}
|
|
7703
|
+
interface ActionTypeScenarioExecutionOnlyMode_noExecutionRestriction {
|
|
7704
|
+
type: "noExecutionRestriction";
|
|
7705
|
+
noExecutionRestriction: NoExecutionRestriction;
|
|
7706
|
+
}
|
|
7707
|
+
type ActionTypeScenarioExecutionOnlyMode = ActionTypeScenarioExecutionOnlyMode_allowExecutionOnlyOnScenario | ActionTypeScenarioExecutionOnlyMode_noExecutionRestriction;
|
|
7708
|
+
interface ActionTypeScenarioSettings {
|
|
7709
|
+
scenarioExecutionOnlyMode: ActionTypeScenarioExecutionOnlyMode;
|
|
7710
|
+
}
|
|
7711
|
+
interface ActionTypeScenarioSettingsModification {
|
|
7712
|
+
scenarioExecutionOnlyMode?: ActionTypeScenarioExecutionOnlyMode | null | undefined;
|
|
7713
|
+
}
|
|
7633
7714
|
/**
|
|
7634
7715
|
* Request to associate given set of OrganizationRids with the specified ActionTypeRid(s).
|
|
7635
7716
|
* Users should have permissions to modify the specified ActionTypeRid(s) and also have
|
|
@@ -7671,6 +7752,8 @@ interface ActionTypeStatus_example {
|
|
|
7671
7752
|
type ActionTypeStatus = ActionTypeStatus_experimental | ActionTypeStatus_active | ActionTypeStatus_deprecated | ActionTypeStatus_example;
|
|
7672
7753
|
/**
|
|
7673
7754
|
* Request object to edit existing Action Types.
|
|
7755
|
+
*
|
|
7756
|
+
* Used in OntologyModificationRequest.
|
|
7674
7757
|
*/
|
|
7675
7758
|
interface ActionTypeUpdate {
|
|
7676
7759
|
actionApplyClientSettings?: ActionApplyClientPreferences | null | undefined;
|
|
@@ -7678,6 +7761,7 @@ interface ActionTypeUpdate {
|
|
|
7678
7761
|
apiName: ActionTypeApiName;
|
|
7679
7762
|
branchSettings?: ActionTypeBranchSettingsModification | null | undefined;
|
|
7680
7763
|
displayMetadata: ActionTypeDisplayMetadataModification;
|
|
7764
|
+
effects?: ActionEffectsModification | null | undefined;
|
|
7681
7765
|
formContentOrdering?: Array<FormContent> | null | undefined;
|
|
7682
7766
|
logic: ActionLogicModification;
|
|
7683
7767
|
notifications: Array<ActionNotificationModification>;
|
|
@@ -7688,6 +7772,7 @@ interface ActionTypeUpdate {
|
|
|
7688
7772
|
parametersToUpdate: Record<ParameterRid, EditParameterRequestModification>;
|
|
7689
7773
|
provenance?: ActionTypeProvenanceModification | null | undefined;
|
|
7690
7774
|
revert?: ActionRevert | null | undefined;
|
|
7775
|
+
scenarioSettings?: ActionTypeScenarioSettingsModification | null | undefined;
|
|
7691
7776
|
sectionsToCreate: Record<SectionId, PutSectionRequestModification>;
|
|
7692
7777
|
sectionsToDelete: Array<SectionRid>;
|
|
7693
7778
|
sectionsToUpdate: Record<SectionRid, EditSectionRequestModification>;
|
|
@@ -8274,6 +8359,11 @@ interface AllowedValuesOverrideModification {
|
|
|
8274
8359
|
interface AllowedValuesOverrideRequest {
|
|
8275
8360
|
allowedValues: AllowedParameterValuesRequest;
|
|
8276
8361
|
}
|
|
8362
|
+
/**
|
|
8363
|
+
* When set, the action can only be executed within a Scenario context and not directly on the main ontology.
|
|
8364
|
+
*/
|
|
8365
|
+
interface AllowExecutionOnlyOnScenario {
|
|
8366
|
+
}
|
|
8277
8367
|
interface AllowFunctionsWithExternalCallsOnBranches {
|
|
8278
8368
|
}
|
|
8279
8369
|
interface AllowNotificationsOnBranches {
|
|
@@ -8575,6 +8665,11 @@ interface ButtonDisplayMetadata {
|
|
|
8575
8665
|
}
|
|
8576
8666
|
interface BytePropertyType {
|
|
8577
8667
|
}
|
|
8668
|
+
/**
|
|
8669
|
+
* Specifies the unit of the input byte size value, ensuring that the formatter correctly interprets the number.
|
|
8670
|
+
* All units use binary (base-1024) representation.
|
|
8671
|
+
*/
|
|
8672
|
+
type BytesBaseValue = "BYTES" | "KILOBYTES" | "MEGABYTES" | "GIGABYTES" | "TERABYTES" | "PETABYTES";
|
|
8578
8673
|
type ByteTypeDataValue$1 = number;
|
|
8579
8674
|
interface CarbonWorkspaceComponentUrlTarget_rid {
|
|
8580
8675
|
type: "rid";
|
|
@@ -8604,6 +8699,10 @@ interface CarbonWorkspaceUrlTarget {
|
|
|
8604
8699
|
interface CarbonWorkspaceUrlTargetModification {
|
|
8605
8700
|
resource?: CarbonWorkspaceComponentUrlTargetModification | null | undefined;
|
|
8606
8701
|
}
|
|
8702
|
+
/**
|
|
8703
|
+
* Display name for a marking category.
|
|
8704
|
+
*/
|
|
8705
|
+
type CategoryDisplayName = string | null | undefined;
|
|
8607
8706
|
/**
|
|
8608
8707
|
* Id for a category (group of markings)
|
|
8609
8708
|
*/
|
|
@@ -9397,12 +9496,15 @@ interface DynamicObjectSetInputUnioned {
|
|
|
9397
9496
|
}
|
|
9398
9497
|
/**
|
|
9399
9498
|
* Request object to edit existing Action Types.
|
|
9499
|
+
*
|
|
9500
|
+
* Deprecated: Used in deprecated ActionTypeModifyRequest. Use ActionTypeUpdate with OntologyModificationRequest instead.
|
|
9400
9501
|
*/
|
|
9401
9502
|
interface EditActionTypeRequest {
|
|
9402
9503
|
actionLogConfiguration?: ActionLogConfiguration | null | undefined;
|
|
9403
9504
|
apiName: ActionTypeApiName;
|
|
9404
9505
|
branchSettings?: ActionTypeBranchSettingsModification | null | undefined;
|
|
9405
9506
|
displayMetadata: ActionTypeDisplayMetadataModification;
|
|
9507
|
+
effects?: ActionEffects | null | undefined;
|
|
9406
9508
|
logic: ActionLogic;
|
|
9407
9509
|
notifications: Array<ActionNotification>;
|
|
9408
9510
|
notificationSettings?: ActionNotificationSettings | null | undefined;
|
|
@@ -9411,6 +9513,7 @@ interface EditActionTypeRequest {
|
|
|
9411
9513
|
parametersToDelete: Array<ParameterRid>;
|
|
9412
9514
|
parametersToEdit: Record<ParameterRid, EditParameterRequest>;
|
|
9413
9515
|
revert?: ActionRevert | null | undefined;
|
|
9516
|
+
scenarioSettings?: ActionTypeScenarioSettingsModification | null | undefined;
|
|
9414
9517
|
status?: ActionTypeStatus | null | undefined;
|
|
9415
9518
|
submissionConfiguration?: ActionSubmissionConfiguration | null | undefined;
|
|
9416
9519
|
validationsToAdd: Array<ValidationRule>;
|
|
@@ -9425,6 +9528,8 @@ interface EditOnlyPropertyType {
|
|
|
9425
9528
|
}
|
|
9426
9529
|
/**
|
|
9427
9530
|
* Request to edit an existing parameter
|
|
9531
|
+
*
|
|
9532
|
+
* Deprecated: Used in deprecated ActionTypeModifyRequest. Use EditParameterRequestModification with OntologyModificationRequest instead.
|
|
9428
9533
|
*/
|
|
9429
9534
|
interface EditParameterRequest {
|
|
9430
9535
|
displayMetadata: ParameterDisplayMetadata;
|
|
@@ -9449,6 +9554,8 @@ interface EditsConfiguration {
|
|
|
9449
9554
|
}
|
|
9450
9555
|
/**
|
|
9451
9556
|
* Request to edit an existing Section
|
|
9557
|
+
*
|
|
9558
|
+
* Deprecated: Used in deprecated ActionTypeModifyRequest. Use EditSectionRequestModification with OntologyModificationRequest instead.
|
|
9452
9559
|
*/
|
|
9453
9560
|
interface EditSectionRequest {
|
|
9454
9561
|
content: Array<SectionContent>;
|
|
@@ -9476,6 +9583,9 @@ type EditsHistoryObjectTypeRid = string;
|
|
|
9476
9583
|
* must be a valid Compass project RID. If one is not specified, DatasourceRid will be used.
|
|
9477
9584
|
*/
|
|
9478
9585
|
type EditsOnlyRid = string;
|
|
9586
|
+
/**
|
|
9587
|
+
* Deprecated: Used in deprecated ActionTypeModifyRequest. Use ValidationRuleModification with OntologyModificationRequest instead.
|
|
9588
|
+
*/
|
|
9479
9589
|
interface EditValidationRuleRequest {
|
|
9480
9590
|
condition: Condition;
|
|
9481
9591
|
displayMetadata: ValidationRuleDisplayMetadata;
|
|
@@ -9685,6 +9795,14 @@ interface FunctionAtVersion {
|
|
|
9685
9795
|
functionRid: FunctionRid;
|
|
9686
9796
|
functionVersion: SemanticFunctionVersion;
|
|
9687
9797
|
}
|
|
9798
|
+
/**
|
|
9799
|
+
* An embedding model backed by a function registered in function-registry
|
|
9800
|
+
* and executed via function-executor.
|
|
9801
|
+
*/
|
|
9802
|
+
interface FunctionBackedEmbeddingModel {
|
|
9803
|
+
functionRid: FunctionRid;
|
|
9804
|
+
functionVersion: FunctionVersion;
|
|
9805
|
+
}
|
|
9688
9806
|
interface FunctionExecutionWithRecipientInput_logicRuleValue {
|
|
9689
9807
|
type: "logicRuleValue";
|
|
9690
9808
|
logicRuleValue: LogicRuleValue;
|
|
@@ -10055,6 +10173,41 @@ interface IntegerTypeRangeConstraint$1 {
|
|
|
10055
10173
|
max?: IntegerTypeDataValue$1 | null | undefined;
|
|
10056
10174
|
min?: IntegerTypeDataValue$1 | null | undefined;
|
|
10057
10175
|
}
|
|
10176
|
+
interface InterfaceActionTypeConstraint {
|
|
10177
|
+
metadata: InterfaceActionTypeConstraintMetadata;
|
|
10178
|
+
parameters: Record<InterfaceParameterConstraintRid, InterfaceParameterConstraint>;
|
|
10179
|
+
requireImplementation: boolean;
|
|
10180
|
+
rid: InterfaceActionTypeConstraintRid;
|
|
10181
|
+
}
|
|
10182
|
+
/**
|
|
10183
|
+
* A string indicating the API name to use for the interface action type constraint. This API name will be used to
|
|
10184
|
+
* reference the interface action type constraint in programming languages. The name should be given in
|
|
10185
|
+
* lowerCamelCase and should be unique across the interface and the superset of its parent interfaces.
|
|
10186
|
+
*/
|
|
10187
|
+
type InterfaceActionTypeConstraintApiName = string;
|
|
10188
|
+
/**
|
|
10189
|
+
* Reference to an InterfaceActionTypeConstraint. Used to reference an InterfaceActionTypeConstraint in the same
|
|
10190
|
+
* request it is created in.
|
|
10191
|
+
*/
|
|
10192
|
+
type InterfaceActionTypeConstraintIdInRequest = string;
|
|
10193
|
+
interface InterfaceActionTypeConstraintMetadata {
|
|
10194
|
+
apiName: InterfaceActionTypeConstraintApiName;
|
|
10195
|
+
description: string;
|
|
10196
|
+
displayName: string;
|
|
10197
|
+
}
|
|
10198
|
+
/**
|
|
10199
|
+
* ResourceIdentifier for an InterfaceActionTypeConstraint.
|
|
10200
|
+
*/
|
|
10201
|
+
type InterfaceActionTypeConstraintRid = string;
|
|
10202
|
+
interface InterfaceActionTypeConstraintRidOrIdInRequest_rid {
|
|
10203
|
+
type: "rid";
|
|
10204
|
+
rid: InterfaceActionTypeConstraintRid;
|
|
10205
|
+
}
|
|
10206
|
+
interface InterfaceActionTypeConstraintRidOrIdInRequest_idInRequest {
|
|
10207
|
+
type: "idInRequest";
|
|
10208
|
+
idInRequest: InterfaceActionTypeConstraintIdInRequest;
|
|
10209
|
+
}
|
|
10210
|
+
type InterfaceActionTypeConstraintRidOrIdInRequest = InterfaceActionTypeConstraintRidOrIdInRequest_rid | InterfaceActionTypeConstraintRidOrIdInRequest_idInRequest;
|
|
10058
10211
|
interface InterfaceArrayPropertyType {
|
|
10059
10212
|
subtype: InterfacePropertyTypeType;
|
|
10060
10213
|
}
|
|
@@ -10145,6 +10298,28 @@ interface InterfaceObjectParameterStructListFieldValueModification {
|
|
|
10145
10298
|
parameterId: ParameterId;
|
|
10146
10299
|
structFieldApiNameOrRid: StructFieldApiNameOrRid;
|
|
10147
10300
|
}
|
|
10301
|
+
/**
|
|
10302
|
+
* Parameter constraint of an InterfaceActionTypeConstraint
|
|
10303
|
+
*/
|
|
10304
|
+
interface InterfaceParameterConstraint {
|
|
10305
|
+
displayMetadata: InterfaceParameterConstraintDisplayMetadata;
|
|
10306
|
+
requireImplementation: boolean;
|
|
10307
|
+
type: BaseParameterType;
|
|
10308
|
+
}
|
|
10309
|
+
interface InterfaceParameterConstraintDisplayMetadata {
|
|
10310
|
+
displayName: string;
|
|
10311
|
+
}
|
|
10312
|
+
type InterfaceParameterConstraintIdInRequest = string;
|
|
10313
|
+
type InterfaceParameterConstraintRid = string;
|
|
10314
|
+
interface InterfaceParameterConstraintRidOrIdInRequest_rid {
|
|
10315
|
+
type: "rid";
|
|
10316
|
+
rid: InterfaceParameterConstraintRid;
|
|
10317
|
+
}
|
|
10318
|
+
interface InterfaceParameterConstraintRidOrIdInRequest_idInRequest {
|
|
10319
|
+
type: "idInRequest";
|
|
10320
|
+
idInRequest: InterfaceParameterConstraintIdInRequest;
|
|
10321
|
+
}
|
|
10322
|
+
type InterfaceParameterConstraintRidOrIdInRequest = InterfaceParameterConstraintRidOrIdInRequest_rid | InterfaceParameterConstraintRidOrIdInRequest_idInRequest;
|
|
10148
10323
|
interface InterfaceParameterPropertyValue {
|
|
10149
10324
|
parameterId: ParameterId;
|
|
10150
10325
|
sharedPropertyTypeRid: SharedPropertyTypeRid;
|
|
@@ -10349,6 +10524,7 @@ interface InterfaceStructPropertyType {
|
|
|
10349
10524
|
* interface, it is guaranteed to have the conform to the interface shape.
|
|
10350
10525
|
*/
|
|
10351
10526
|
interface InterfaceType {
|
|
10527
|
+
actionTypeConstraints: Array<InterfaceActionTypeConstraint>;
|
|
10352
10528
|
allExtendsInterfaces: Array<InterfaceTypeRid>;
|
|
10353
10529
|
allLinks: Array<InterfaceLinkType>;
|
|
10354
10530
|
allProperties: Array<SharedPropertyType>;
|
|
@@ -11159,11 +11335,15 @@ interface LogicRuleValue_synchronousWebhookOutput {
|
|
|
11159
11335
|
type: "synchronousWebhookOutput";
|
|
11160
11336
|
synchronousWebhookOutput: WebhookOutputParamName;
|
|
11161
11337
|
}
|
|
11338
|
+
interface LogicRuleValue_scheduleRunRid {
|
|
11339
|
+
type: "scheduleRunRid";
|
|
11340
|
+
scheduleRunRid: ScheduleRunRidValue;
|
|
11341
|
+
}
|
|
11162
11342
|
/**
|
|
11163
11343
|
* These are the possible values that can be passed into LogicRules as well as Notification and Webhook side
|
|
11164
11344
|
* effects.
|
|
11165
11345
|
*/
|
|
11166
|
-
type LogicRuleValue = LogicRuleValue_parameterId | LogicRuleValue_staticValue | LogicRuleValue_objectParameterPropertyValue | LogicRuleValue_interfaceParameterPropertyValue | LogicRuleValue_interfaceParameterPropertyValueV2 | LogicRuleValue_currentUser | LogicRuleValue_currentTime | LogicRuleValue_uniqueIdentifier | LogicRuleValue_synchronousWebhookOutput;
|
|
11346
|
+
type LogicRuleValue = LogicRuleValue_parameterId | LogicRuleValue_staticValue | LogicRuleValue_objectParameterPropertyValue | LogicRuleValue_interfaceParameterPropertyValue | LogicRuleValue_interfaceParameterPropertyValueV2 | LogicRuleValue_currentUser | LogicRuleValue_currentTime | LogicRuleValue_uniqueIdentifier | LogicRuleValue_synchronousWebhookOutput | LogicRuleValue_scheduleRunRid;
|
|
11167
11347
|
interface LogicRuleValueModification_parameterId {
|
|
11168
11348
|
type: "parameterId";
|
|
11169
11349
|
parameterId: ParameterId;
|
|
@@ -11200,11 +11380,15 @@ interface LogicRuleValueModification_synchronousWebhookOutput {
|
|
|
11200
11380
|
type: "synchronousWebhookOutput";
|
|
11201
11381
|
synchronousWebhookOutput: WebhookOutputParamName;
|
|
11202
11382
|
}
|
|
11383
|
+
interface LogicRuleValueModification_scheduleRunRid {
|
|
11384
|
+
type: "scheduleRunRid";
|
|
11385
|
+
scheduleRunRid: ScheduleRunRidValue;
|
|
11386
|
+
}
|
|
11203
11387
|
/**
|
|
11204
11388
|
* These are the possible values that can be passed into LogicRules as well as Notification and Webhook side
|
|
11205
11389
|
* effects.
|
|
11206
11390
|
*/
|
|
11207
|
-
type LogicRuleValueModification = LogicRuleValueModification_parameterId | LogicRuleValueModification_staticValue | LogicRuleValueModification_objectParameterPropertyValue | LogicRuleValueModification_interfaceParameterPropertyValue | LogicRuleValueModification_interfaceParameterPropertyValueV2 | LogicRuleValueModification_currentUser | LogicRuleValueModification_currentTime | LogicRuleValueModification_uniqueIdentifier | LogicRuleValueModification_synchronousWebhookOutput;
|
|
11391
|
+
type LogicRuleValueModification = LogicRuleValueModification_parameterId | LogicRuleValueModification_staticValue | LogicRuleValueModification_objectParameterPropertyValue | LogicRuleValueModification_interfaceParameterPropertyValue | LogicRuleValueModification_interfaceParameterPropertyValueV2 | LogicRuleValueModification_currentUser | LogicRuleValueModification_currentTime | LogicRuleValueModification_uniqueIdentifier | LogicRuleValueModification_synchronousWebhookOutput | LogicRuleValueModification_scheduleRunRid;
|
|
11208
11392
|
interface LongPropertyType {
|
|
11209
11393
|
}
|
|
11210
11394
|
interface LongTypeDataConstraints_range$1 {
|
|
@@ -11302,9 +11486,11 @@ type MarkingFilter = MarkingFilter_markingTypes;
|
|
|
11302
11486
|
*/
|
|
11303
11487
|
type MarkingId = string;
|
|
11304
11488
|
/**
|
|
11305
|
-
* Combined information about a marking including its type
|
|
11489
|
+
* Combined information about a marking including its type, optional display name,
|
|
11490
|
+
* and optional category display name.
|
|
11306
11491
|
*/
|
|
11307
11492
|
interface MarkingInfo {
|
|
11493
|
+
categoryDisplayName: CategoryDisplayName;
|
|
11308
11494
|
displayName: MarkingDisplayName;
|
|
11309
11495
|
markingType: MarkingType;
|
|
11310
11496
|
}
|
|
@@ -11504,6 +11690,11 @@ interface NewObjectUrlTargetModification {
|
|
|
11504
11690
|
keys: Record<PropertyId, LogicRuleValueModification>;
|
|
11505
11691
|
objectTypeId: ObjectTypeId;
|
|
11506
11692
|
}
|
|
11693
|
+
/**
|
|
11694
|
+
* When set, no restriction is applied and the action can be executed both on the main ontology and within Scenarios.
|
|
11695
|
+
*/
|
|
11696
|
+
interface NoExecutionRestriction {
|
|
11697
|
+
}
|
|
11507
11698
|
interface NoneEntityProvenance {
|
|
11508
11699
|
}
|
|
11509
11700
|
/**
|
|
@@ -11627,6 +11818,15 @@ interface NumberFormatBasisPoint {
|
|
|
11627
11818
|
interface NumberFormatBillions {
|
|
11628
11819
|
base: NumberFormatBase;
|
|
11629
11820
|
}
|
|
11821
|
+
/**
|
|
11822
|
+
* Render the number as bytes, automatically converting to the appropriate size (KB, MB, GB, etc)
|
|
11823
|
+
* and appending the corresponding suffix. Uses binary units (powers of 1024).
|
|
11824
|
+
*/
|
|
11825
|
+
interface NumberFormatBytes {
|
|
11826
|
+
base: NumberFormatBase;
|
|
11827
|
+
baseValue: BytesBaseValue;
|
|
11828
|
+
showFullUnits?: boolean | null | undefined;
|
|
11829
|
+
}
|
|
11630
11830
|
/**
|
|
11631
11831
|
* Note that non-visual features e.g. sorting & histograms, are not guaranteed to be currency-aware. They can
|
|
11632
11832
|
* group the same number together even if they have different currencies.
|
|
@@ -11755,7 +11955,11 @@ interface NumberFormatter_basisPoint {
|
|
|
11755
11955
|
type: "basisPoint";
|
|
11756
11956
|
basisPoint: NumberFormatBasisPoint;
|
|
11757
11957
|
}
|
|
11758
|
-
|
|
11958
|
+
interface NumberFormatter_bytes {
|
|
11959
|
+
type: "bytes";
|
|
11960
|
+
bytes: NumberFormatBytes;
|
|
11961
|
+
}
|
|
11962
|
+
type NumberFormatter = NumberFormatter_base | NumberFormatter_percentage | NumberFormatter_perMille | NumberFormatter_ordinal | NumberFormatter_currency | NumberFormatter_unit | NumberFormatter_customUnit | NumberFormatter_prePost | NumberFormatter_duration | NumberFormatter_thousands | NumberFormatter_millions | NumberFormatter_billions | NumberFormatter_basisPoint | NumberFormatter_bytes;
|
|
11759
11963
|
/**
|
|
11760
11964
|
* Scale the numeric value to thousands and append a suffix. For example, 1500 will be displayed as "1.5K".
|
|
11761
11965
|
*/
|
|
@@ -12113,6 +12317,7 @@ interface ObjectTypeDirectDatasource {
|
|
|
12113
12317
|
propertyMapping: Record<PropertyTypeRid, PropertyTypeMappingInfo>;
|
|
12114
12318
|
propertySecurityGroups: PropertySecurityGroups;
|
|
12115
12319
|
retentionConfig?: RetentionConfig | null | undefined;
|
|
12320
|
+
timeBasedRetentionConfig?: TimeBasedRetentionConfig | null | undefined;
|
|
12116
12321
|
}
|
|
12117
12322
|
/**
|
|
12118
12323
|
* This includes metadata which can be used by front-ends when displaying the ObjectType.
|
|
@@ -12191,6 +12396,10 @@ interface ObjectTypeGeotimeSeriesDatasource {
|
|
|
12191
12396
|
* Please note that this is not safe to log as it is user-inputted and may contain sensitive information.
|
|
12192
12397
|
*/
|
|
12193
12398
|
type ObjectTypeId = string;
|
|
12399
|
+
interface ObjectTypeIdAndPropertyTypeId {
|
|
12400
|
+
objectTypeId: ObjectTypeId;
|
|
12401
|
+
propertyTypeId: PropertyTypeId;
|
|
12402
|
+
}
|
|
12194
12403
|
interface ObjectTypeIdentifier_objectTypeId {
|
|
12195
12404
|
type: "objectTypeId";
|
|
12196
12405
|
objectTypeId: ObjectTypeId;
|
|
@@ -12353,6 +12562,18 @@ interface ObjectTypeRestrictedViewDatasourceV2 {
|
|
|
12353
12562
|
* ObjectTypeRid will be different.
|
|
12354
12563
|
*/
|
|
12355
12564
|
type ObjectTypeRid = string;
|
|
12565
|
+
interface ObjectTypeRidOrInterfaceTypeRidOrIdInRequest_objectType {
|
|
12566
|
+
type: "objectType";
|
|
12567
|
+
objectType: ObjectTypeRid;
|
|
12568
|
+
}
|
|
12569
|
+
interface ObjectTypeRidOrInterfaceTypeRidOrIdInRequest_interfaceType {
|
|
12570
|
+
type: "interfaceType";
|
|
12571
|
+
interfaceType: InterfaceTypeRidOrIdInRequest;
|
|
12572
|
+
}
|
|
12573
|
+
/**
|
|
12574
|
+
* Either an ObjectTypeRid or an InterfaceTypeRidOrIdInRequest.
|
|
12575
|
+
*/
|
|
12576
|
+
type ObjectTypeRidOrInterfaceTypeRidOrIdInRequest = ObjectTypeRidOrInterfaceTypeRidOrIdInRequest_objectType | ObjectTypeRidOrInterfaceTypeRidOrIdInRequest_interfaceType;
|
|
12356
12577
|
/**
|
|
12357
12578
|
* A wrapping of ObjectType rids and InterfaceType rids, used when returning information from API name conflict
|
|
12358
12579
|
* checks.
|
|
@@ -12577,6 +12798,7 @@ interface OntologyBulkLoadEntitiesRequest {
|
|
|
12577
12798
|
includeTypeGroupEntitiesCount?: boolean | null | undefined;
|
|
12578
12799
|
interfaceTypes: Array<InterfaceTypeLoadRequest>;
|
|
12579
12800
|
linkTypes: Array<LinkTypeLoadRequest>;
|
|
12801
|
+
loadLinkTypeRelatedObjectTypes?: boolean | null | undefined;
|
|
12580
12802
|
loadRedacted?: boolean | null | undefined;
|
|
12581
12803
|
objectTypes: Array<ObjectTypeLoadRequest>;
|
|
12582
12804
|
sharedPropertyTypes: Array<SharedPropertyTypeLoadRequest>;
|
|
@@ -12619,6 +12841,12 @@ interface OntologyInformation {
|
|
|
12619
12841
|
description: string;
|
|
12620
12842
|
displayName: string;
|
|
12621
12843
|
}
|
|
12844
|
+
/**
|
|
12845
|
+
* Contains the definition for platform effects that are executed as part of running an Action.
|
|
12846
|
+
*/
|
|
12847
|
+
interface OntologyIrActionEffects {
|
|
12848
|
+
synchronousPreWritebackEffect?: OntologyIrSynchronousPreWritebackEffect | null | undefined;
|
|
12849
|
+
}
|
|
12622
12850
|
/**
|
|
12623
12851
|
* The ActionLogic in an ActionType map the Parameters to what edits should be made in Phonograph. It employs
|
|
12624
12852
|
* LogicRules for the core Action logic and, optionally, an ActionLogRule for capturing a record of the Action
|
|
@@ -13059,7 +13287,8 @@ interface OntologyIrArrayPropertyType {
|
|
|
13059
13287
|
}
|
|
13060
13288
|
interface OntologyIrArrayPropertyTypeReducer {
|
|
13061
13289
|
direction: ArrayPropertyTypeReducerSortDirection;
|
|
13062
|
-
|
|
13290
|
+
fieldApiName?: ObjectTypeFieldApiName | null | undefined;
|
|
13291
|
+
structApiName?: ObjectTypeFieldApiName | null | undefined;
|
|
13063
13292
|
}
|
|
13064
13293
|
interface OntologyIrAsynchronousPostWritebackWebhook_staticDirectInput {
|
|
13065
13294
|
type: "staticDirectInput";
|
|
@@ -13736,11 +13965,15 @@ interface OntologyIrLogicRuleValue_synchronousWebhookOutput {
|
|
|
13736
13965
|
type: "synchronousWebhookOutput";
|
|
13737
13966
|
synchronousWebhookOutput: WebhookOutputParamName;
|
|
13738
13967
|
}
|
|
13968
|
+
interface OntologyIrLogicRuleValue_scheduleRunRid {
|
|
13969
|
+
type: "scheduleRunRid";
|
|
13970
|
+
scheduleRunRid: ScheduleRunRidValue;
|
|
13971
|
+
}
|
|
13739
13972
|
/**
|
|
13740
13973
|
* These are the possible values that can be passed into LogicRules as well as Notification and Webhook side
|
|
13741
13974
|
* effects.
|
|
13742
13975
|
*/
|
|
13743
|
-
type OntologyIrLogicRuleValue = OntologyIrLogicRuleValue_parameterId | OntologyIrLogicRuleValue_staticValue | OntologyIrLogicRuleValue_objectParameterPropertyValue | OntologyIrLogicRuleValue_interfaceParameterPropertyValue | OntologyIrLogicRuleValue_currentUser | OntologyIrLogicRuleValue_currentTime | OntologyIrLogicRuleValue_uniqueIdentifier | OntologyIrLogicRuleValue_synchronousWebhookOutput;
|
|
13976
|
+
type OntologyIrLogicRuleValue = OntologyIrLogicRuleValue_parameterId | OntologyIrLogicRuleValue_staticValue | OntologyIrLogicRuleValue_objectParameterPropertyValue | OntologyIrLogicRuleValue_interfaceParameterPropertyValue | OntologyIrLogicRuleValue_currentUser | OntologyIrLogicRuleValue_currentTime | OntologyIrLogicRuleValue_uniqueIdentifier | OntologyIrLogicRuleValue_synchronousWebhookOutput | OntologyIrLogicRuleValue_scheduleRunRid;
|
|
13744
13977
|
/**
|
|
13745
13978
|
* Contains a set of markings that represent the mandatory security of this datasource.
|
|
13746
13979
|
*/
|
|
@@ -13974,7 +14207,11 @@ interface OntologyIrNumberFormatter_basisPoint {
|
|
|
13974
14207
|
type: "basisPoint";
|
|
13975
14208
|
basisPoint: NumberFormatBasisPoint;
|
|
13976
14209
|
}
|
|
13977
|
-
|
|
14210
|
+
interface OntologyIrNumberFormatter_bytes {
|
|
14211
|
+
type: "bytes";
|
|
14212
|
+
bytes: NumberFormatBytes;
|
|
14213
|
+
}
|
|
14214
|
+
type OntologyIrNumberFormatter = OntologyIrNumberFormatter_base | OntologyIrNumberFormatter_percentage | OntologyIrNumberFormatter_perMille | OntologyIrNumberFormatter_ordinal | OntologyIrNumberFormatter_currency | OntologyIrNumberFormatter_unit | OntologyIrNumberFormatter_customUnit | OntologyIrNumberFormatter_prePost | OntologyIrNumberFormatter_duration | OntologyIrNumberFormatter_thousands | OntologyIrNumberFormatter_millions | OntologyIrNumberFormatter_billions | OntologyIrNumberFormatter_basisPoint | OntologyIrNumberFormatter_bytes;
|
|
13978
14215
|
/**
|
|
13979
14216
|
* Note that this formatter breaks e.g. sorting features if used in combination with auto-conversion.
|
|
13980
14217
|
*/
|
|
@@ -14199,10 +14436,11 @@ interface OntologyIrObjectTypeDerivedPropertiesDatasource {
|
|
|
14199
14436
|
* This type is only compatible with object storage v2.
|
|
14200
14437
|
*/
|
|
14201
14438
|
interface OntologyIrObjectTypeDirectDatasource {
|
|
14202
|
-
directSourceRid:
|
|
14439
|
+
directSourceRid: DataSetName;
|
|
14203
14440
|
propertyMapping: Record<ObjectTypeFieldApiName, PropertyTypeMappingInfo>;
|
|
14204
14441
|
propertySecurityGroups: OntologyIrPropertySecurityGroups;
|
|
14205
14442
|
retentionConfig?: RetentionConfig | null | undefined;
|
|
14443
|
+
timeBasedRetentionConfig?: TimeBasedRetentionConfig | null | undefined;
|
|
14206
14444
|
}
|
|
14207
14445
|
/**
|
|
14208
14446
|
* Object type datasource which is not backed by any dataset or restricted view. This type of a "datasource"
|
|
@@ -14778,6 +15016,16 @@ interface OntologyIrRuleSetBinding {
|
|
|
14778
15016
|
bindings: Record<ValueReferenceId, OntologyIrValueReferenceSource>;
|
|
14779
15017
|
ruleSetRid: RuleSetRid;
|
|
14780
15018
|
}
|
|
15019
|
+
/**
|
|
15020
|
+
* This effect calls SchedulerDeploymentsService.upsertAndRunDeployment endpoint which upserts a schedule
|
|
15021
|
+
* deployment and runs it. See the Scheduler API docs for more details.
|
|
15022
|
+
* The synchronous effect doesn't wait for the actual schedule run to complete, it only waits for a successful
|
|
15023
|
+
* kick-off of the schedule run.
|
|
15024
|
+
*/
|
|
15025
|
+
interface OntologyIrRunScheduleDeploymentEffect {
|
|
15026
|
+
parameterValues: Record<ScheduleParamName, OntologyIrLogicRuleValue>;
|
|
15027
|
+
scheduleRid: ScheduleRid;
|
|
15028
|
+
}
|
|
14781
15029
|
/**
|
|
14782
15030
|
* Applies the edits from a specified Scenario instance to the main branch
|
|
14783
15031
|
*/
|
|
@@ -14894,6 +15142,7 @@ interface OntologyIrSecurityGroupMandatoryOnlySecurityDefinition {
|
|
|
14894
15142
|
}
|
|
14895
15143
|
interface OntologyIrSecurityGroupMandatoryPolicy {
|
|
14896
15144
|
assumedMarkings: Array<MarkingId>;
|
|
15145
|
+
assumedMarkingsV2: Record<MarkingId, MarkingType>;
|
|
14897
15146
|
markings: Record<MarkingId, MarkingType>;
|
|
14898
15147
|
}
|
|
14899
15148
|
/**
|
|
@@ -15101,7 +15350,8 @@ interface OntologyIrStructFieldValidationDisplayMetadata {
|
|
|
15101
15350
|
visibility: ParameterVisibility;
|
|
15102
15351
|
}
|
|
15103
15352
|
interface OntologyIrStructMainValue {
|
|
15104
|
-
|
|
15353
|
+
fieldApiNames: Array<ObjectTypeFieldApiName>;
|
|
15354
|
+
structApiName: ObjectTypeFieldApiName;
|
|
15105
15355
|
type: OntologyIrType;
|
|
15106
15356
|
}
|
|
15107
15357
|
interface OntologyIrStructPropertyType {
|
|
@@ -15130,6 +15380,14 @@ interface OntologyIrSubtractionOperation {
|
|
|
15130
15380
|
leftOperand: OntologyIrParameterTransformPrefillValue;
|
|
15131
15381
|
rightOperand: OntologyIrParameterTransformPrefillValue;
|
|
15132
15382
|
}
|
|
15383
|
+
interface OntologyIrSynchronousPreWritebackEffect_runScheduleDeployment {
|
|
15384
|
+
type: "runScheduleDeployment";
|
|
15385
|
+
runScheduleDeployment: OntologyIrRunScheduleDeploymentEffect;
|
|
15386
|
+
}
|
|
15387
|
+
/**
|
|
15388
|
+
* Union wrapping the various options available for configuring a platform effect which will be executed synchronously.
|
|
15389
|
+
*/
|
|
15390
|
+
type OntologyIrSynchronousPreWritebackEffect = OntologyIrSynchronousPreWritebackEffect_runScheduleDeployment;
|
|
15133
15391
|
interface OntologyIrSynchronousPreWritebackWebhook_staticDirectInput {
|
|
15134
15392
|
type: "staticDirectInput";
|
|
15135
15393
|
staticDirectInput: OntologyIrStaticWebhookWithDirectInput;
|
|
@@ -16654,6 +16912,20 @@ interface PropertySecurityGroup {
|
|
|
16654
16912
|
security: SecurityGroupSecurityDefinition;
|
|
16655
16913
|
type?: PropertySecurityGroupType | null | undefined;
|
|
16656
16914
|
}
|
|
16915
|
+
/**
|
|
16916
|
+
* Creates a new PSG. A RID will be generated.
|
|
16917
|
+
*/
|
|
16918
|
+
interface PropertySecurityGroupCreate {
|
|
16919
|
+
properties: Array<PropertyTypeId>;
|
|
16920
|
+
security: SecurityGroupSecurityDefinitionModification;
|
|
16921
|
+
type: PropertySecurityGroupType;
|
|
16922
|
+
}
|
|
16923
|
+
/**
|
|
16924
|
+
* Deletes an existing PSG by RID.
|
|
16925
|
+
*/
|
|
16926
|
+
interface PropertySecurityGroupDelete {
|
|
16927
|
+
rid: PropertySecurityGroupRid;
|
|
16928
|
+
}
|
|
16657
16929
|
/**
|
|
16658
16930
|
* Modification of PropertySecurityGroup. A globally unique identifier will be generated for each unique
|
|
16659
16931
|
* SecurityGroupSecurityDefinitionModification specification.
|
|
@@ -16673,6 +16945,29 @@ interface PropertySecurityGroupModification {
|
|
|
16673
16945
|
* A user-defined name that labels a PropertySecurityGroup.
|
|
16674
16946
|
*/
|
|
16675
16947
|
type PropertySecurityGroupName = string;
|
|
16948
|
+
/**
|
|
16949
|
+
* Leaves the specified PSG unchanged.
|
|
16950
|
+
*/
|
|
16951
|
+
interface PropertySecurityGroupNoop {
|
|
16952
|
+
rid: PropertySecurityGroupRid;
|
|
16953
|
+
}
|
|
16954
|
+
interface PropertySecurityGroupPatch_create {
|
|
16955
|
+
type: "create";
|
|
16956
|
+
create: PropertySecurityGroupCreate;
|
|
16957
|
+
}
|
|
16958
|
+
interface PropertySecurityGroupPatch_update {
|
|
16959
|
+
type: "update";
|
|
16960
|
+
update: PropertySecurityGroupUpdate;
|
|
16961
|
+
}
|
|
16962
|
+
interface PropertySecurityGroupPatch_noop {
|
|
16963
|
+
type: "noop";
|
|
16964
|
+
noop: PropertySecurityGroupNoop;
|
|
16965
|
+
}
|
|
16966
|
+
interface PropertySecurityGroupPatch_delete {
|
|
16967
|
+
type: "delete";
|
|
16968
|
+
delete: PropertySecurityGroupDelete;
|
|
16969
|
+
}
|
|
16970
|
+
type PropertySecurityGroupPatch = PropertySecurityGroupPatch_create | PropertySecurityGroupPatch_update | PropertySecurityGroupPatch_noop | PropertySecurityGroupPatch_delete;
|
|
16676
16971
|
/**
|
|
16677
16972
|
* A randomly generated rid that identifies a unique PropertySecurityGroup.
|
|
16678
16973
|
*/
|
|
@@ -16696,6 +16991,16 @@ interface PropertySecurityGroupType_property {
|
|
|
16696
16991
|
property: PropertyPropertySecurityGroupType;
|
|
16697
16992
|
}
|
|
16698
16993
|
type PropertySecurityGroupType = PropertySecurityGroupType_primaryKey | PropertySecurityGroupType_property;
|
|
16994
|
+
/**
|
|
16995
|
+
* Updates an existing PSG by RID. Note that the rid of a PSG remains stable unless the security definition is
|
|
16996
|
+
* updated, in which case a new rid will be generated.
|
|
16997
|
+
*/
|
|
16998
|
+
interface PropertySecurityGroupUpdate {
|
|
16999
|
+
properties: Array<PropertyTypeId>;
|
|
17000
|
+
rid: PropertySecurityGroupRid;
|
|
17001
|
+
security: SecurityGroupSecurityDefinitionModification;
|
|
17002
|
+
type: PropertySecurityGroupType;
|
|
17003
|
+
}
|
|
16699
17004
|
/**
|
|
16700
17005
|
* A PropertyType is a typed attribute of an ObjectType.
|
|
16701
17006
|
*/
|
|
@@ -16944,12 +17249,15 @@ interface PropertyWithoutRid {
|
|
|
16944
17249
|
}
|
|
16945
17250
|
/**
|
|
16946
17251
|
* A PutActionTypeRequest is used to create or modify Action Types.
|
|
17252
|
+
*
|
|
17253
|
+
* Deprecated: Used in deprecated ActionTypeModifyRequest. Use ActionTypeCreate with OntologyModificationRequest instead.
|
|
16947
17254
|
*/
|
|
16948
17255
|
interface PutActionTypeRequest {
|
|
16949
17256
|
actionLogConfiguration?: ActionLogConfiguration | null | undefined;
|
|
16950
17257
|
apiName: ActionTypeApiName;
|
|
16951
17258
|
branchSettings?: ActionTypeBranchSettingsModification | null | undefined;
|
|
16952
17259
|
displayMetadata: ActionTypeDisplayMetadataModification;
|
|
17260
|
+
effects?: ActionEffects | null | undefined;
|
|
16953
17261
|
logic: ActionLogic;
|
|
16954
17262
|
notifications: Array<ActionNotification>;
|
|
16955
17263
|
notificationSettings?: ActionNotificationSettings | null | undefined;
|
|
@@ -16963,6 +17271,8 @@ interface PutActionTypeRequest {
|
|
|
16963
17271
|
}
|
|
16964
17272
|
/**
|
|
16965
17273
|
* A PutParameterRequest is used to create or modify Parameters.
|
|
17274
|
+
*
|
|
17275
|
+
* Deprecated: Used in deprecated ActionTypeModifyRequest. Use PutParameterRequestModification with OntologyModificationRequest instead.
|
|
16966
17276
|
*/
|
|
16967
17277
|
interface PutParameterRequest {
|
|
16968
17278
|
displayMetadata: ParameterDisplayMetadata;
|
|
@@ -16979,6 +17289,8 @@ interface PutParameterRequestModification {
|
|
|
16979
17289
|
}
|
|
16980
17290
|
/**
|
|
16981
17291
|
* A PutSectionRequest is used to create or modify Sections.
|
|
17292
|
+
*
|
|
17293
|
+
* Deprecated: Used in deprecated ActionTypeModifyRequest. Use PutSectionRequestModification with OntologyModificationRequest instead.
|
|
16982
17294
|
*/
|
|
16983
17295
|
interface PutSectionRequest {
|
|
16984
17296
|
content: Array<SectionContent>;
|
|
@@ -17243,6 +17555,23 @@ interface RuleSetsAlreadyExistError {
|
|
|
17243
17555
|
interface RuleSetsNotFoundError {
|
|
17244
17556
|
ruleSetRids: Array<RuleSetRid>;
|
|
17245
17557
|
}
|
|
17558
|
+
/**
|
|
17559
|
+
* This effect calls SchedulerDeploymentsService.upsertAndRunDeployment endpoint which upserts a schedule
|
|
17560
|
+
* deployment and runs it. See the Scheduler API docs for more details.
|
|
17561
|
+
* The synchronous effect doesn't wait for the actual schedule run to complete, it only waits for a successful
|
|
17562
|
+
* kick-off of the schedule run.
|
|
17563
|
+
*/
|
|
17564
|
+
interface RunScheduleDeploymentEffect {
|
|
17565
|
+
parameterValues: Record<ScheduleParamName, LogicRuleValue>;
|
|
17566
|
+
scheduleRid: ScheduleRid;
|
|
17567
|
+
}
|
|
17568
|
+
/**
|
|
17569
|
+
* See RunScheduleDeploymentEffect docs.
|
|
17570
|
+
*/
|
|
17571
|
+
interface RunScheduleDeploymentEffectModification {
|
|
17572
|
+
parameterValues: Record<ScheduleParamName, LogicRuleValue>;
|
|
17573
|
+
scheduleRid: ScheduleRid;
|
|
17574
|
+
}
|
|
17246
17575
|
interface SafeArg {
|
|
17247
17576
|
name: string;
|
|
17248
17577
|
value: string;
|
|
@@ -17326,6 +17655,19 @@ interface ScenarioScope {
|
|
|
17326
17655
|
linkTypes: Array<LinkTypeId>;
|
|
17327
17656
|
objectTypes: Array<ObjectTypeId>;
|
|
17328
17657
|
}
|
|
17658
|
+
/**
|
|
17659
|
+
* Name of a schedule parameter. Not safe to log.
|
|
17660
|
+
*/
|
|
17661
|
+
type ScheduleParamName = string;
|
|
17662
|
+
/**
|
|
17663
|
+
* The rid for a Schedule, generated and owned by Scheduler service.
|
|
17664
|
+
*/
|
|
17665
|
+
type ScheduleRid = string;
|
|
17666
|
+
/**
|
|
17667
|
+
* The resulting schedule run RID of a synchronous RunScheduleDeploymentEffect on the Action type.
|
|
17668
|
+
*/
|
|
17669
|
+
interface ScheduleRunRidValue {
|
|
17670
|
+
}
|
|
17329
17671
|
/**
|
|
17330
17672
|
* Identifier for a schema migration.
|
|
17331
17673
|
*/
|
|
@@ -18403,6 +18745,22 @@ interface SubtractionOperation {
|
|
|
18403
18745
|
leftOperand: ParameterTransformPrefillValue;
|
|
18404
18746
|
rightOperand: ParameterTransformPrefillValue;
|
|
18405
18747
|
}
|
|
18748
|
+
interface SynchronousPreWritebackEffect_runScheduleDeployment {
|
|
18749
|
+
type: "runScheduleDeployment";
|
|
18750
|
+
runScheduleDeployment: RunScheduleDeploymentEffect;
|
|
18751
|
+
}
|
|
18752
|
+
/**
|
|
18753
|
+
* Union wrapping the various options available for configuring a platform effect which will be executed synchronously.
|
|
18754
|
+
*/
|
|
18755
|
+
type SynchronousPreWritebackEffect = SynchronousPreWritebackEffect_runScheduleDeployment;
|
|
18756
|
+
interface SynchronousPreWritebackEffectModification_runScheduleDeployment {
|
|
18757
|
+
type: "runScheduleDeployment";
|
|
18758
|
+
runScheduleDeployment: RunScheduleDeploymentEffectModification;
|
|
18759
|
+
}
|
|
18760
|
+
/**
|
|
18761
|
+
* See SynchronousPreWritebackEffect docs.
|
|
18762
|
+
*/
|
|
18763
|
+
type SynchronousPreWritebackEffectModification = SynchronousPreWritebackEffectModification_runScheduleDeployment;
|
|
18406
18764
|
interface SynchronousPreWritebackWebhook_staticDirectInput {
|
|
18407
18765
|
type: "staticDirectInput";
|
|
18408
18766
|
staticDirectInput: StaticWebhookWithDirectInput;
|
|
@@ -18483,9 +18841,21 @@ interface TextEmbeddingModel_foundryLiveDeployment {
|
|
|
18483
18841
|
type: "foundryLiveDeployment";
|
|
18484
18842
|
foundryLiveDeployment: FoundryLiveDeployment;
|
|
18485
18843
|
}
|
|
18486
|
-
|
|
18844
|
+
interface TextEmbeddingModel_functionBacked {
|
|
18845
|
+
type: "functionBacked";
|
|
18846
|
+
functionBacked: FunctionBackedEmbeddingModel;
|
|
18847
|
+
}
|
|
18848
|
+
type TextEmbeddingModel = TextEmbeddingModel_lms | TextEmbeddingModel_foundryLiveDeployment | TextEmbeddingModel_functionBacked;
|
|
18487
18849
|
interface TextModality {
|
|
18488
18850
|
}
|
|
18851
|
+
/**
|
|
18852
|
+
* Time-based retention configuration for direct datasources. Objects older than the retention window will be
|
|
18853
|
+
* permanently deleted. The duration should be specified in ISO8601 format, such as `P30D` (30 days) or
|
|
18854
|
+
* `PT720H` (720 hours).
|
|
18855
|
+
*/
|
|
18856
|
+
interface TimeBasedRetentionConfig {
|
|
18857
|
+
window: string;
|
|
18858
|
+
}
|
|
18489
18859
|
/**
|
|
18490
18860
|
* A retention policy where the datasource will contain at least data from the specified time window.
|
|
18491
18861
|
*/
|
|
@@ -19952,6 +20322,13 @@ interface OntologyIr {
|
|
|
19952
20322
|
importedValueTypes: OntologyIrValueTypeBlockData;
|
|
19953
20323
|
randomnessKey?: string;
|
|
19954
20324
|
}
|
|
20325
|
+
interface OntologyIrV2 {
|
|
20326
|
+
ontology: OntologyBlockDataV2;
|
|
20327
|
+
importedOntology: OntologyBlockDataV2;
|
|
20328
|
+
valueTypes: OntologyIrValueTypeBlockData;
|
|
20329
|
+
importedValueTypes: OntologyIrValueTypeBlockData;
|
|
20330
|
+
randomnessKey?: string;
|
|
20331
|
+
}
|
|
19955
20332
|
type OntologyIrPackagedValueType = {
|
|
19956
20333
|
version: ValueTypeVersion;
|
|
19957
20334
|
baseType: BaseType;
|
|
@@ -19972,4 +20349,4 @@ type OntologyIrValueTypeBlockData = {
|
|
|
19972
20349
|
valueTypes: OntologyIrValueTypeBlockDataEntry[];
|
|
19973
20350
|
};
|
|
19974
20351
|
|
|
19975
|
-
export { type AccessRequestRid, type AccessRequestVersion, type AccessSubRequestRid, type AccessSubRequestVersion, type ActionApplierRevertConfig, type ActionApplyClientPreferences, type ActionApplyClientPreferences_disallowedClients, type ActionApplyDisallowedClients, type ActionLogConfiguration, type ActionLogMessage, type ActionLogMetadata, type ActionLogParameterReference, type ActionLogRule, type ActionLogRuleModification, type ActionLogStructFieldMapping, type ActionLogStructFieldValue, type ActionLogStructFieldValueModification, type ActionLogStructFieldValueModification_objectParameterStructFieldValue, type ActionLogStructFieldValueModification_objectParameterStructListFieldValue, type ActionLogStructFieldValueModification_structListParameterFieldValue, type ActionLogStructFieldValueModification_structParameterFieldValue, type ActionLogStructFieldValue_objectParameterStructFieldValue, type ActionLogStructFieldValue_objectParameterStructListFieldValue, type ActionLogStructFieldValue_structListParameterFieldValue, type ActionLogStructFieldValue_structParameterFieldValue, type ActionLogSummaryPart, type ActionLogSummaryPart_message, type ActionLogSummaryPart_parameter, type ActionLogValue, type ActionLogValueModification, type ActionLogValueModification_actionRid, type ActionLogValueModification_actionTimestamp, type ActionLogValueModification_actionTypeRid, type ActionLogValueModification_actionTypeVersion, type ActionLogValueModification_actionUser, type ActionLogValueModification_allEditedObjects, type ActionLogValueModification_asynchronousWebhookInstanceIds, type ActionLogValueModification_editedObjects, type ActionLogValueModification_interfaceParameterPropertyValue, type ActionLogValueModification_interfaceParameterPropertyValueV2, type ActionLogValueModification_isReverted, type ActionLogValueModification_notificationIds, type ActionLogValueModification_notifiedUsers, type ActionLogValueModification_objectParameterPropertyValue, type ActionLogValueModification_parameterValue, type ActionLogValueModification_revertTimestamp, type ActionLogValueModification_revertUser, type ActionLogValueModification_scenarioRid, type ActionLogValueModification_summary, type ActionLogValueModification_synchronousWebhookInstanceId, type ActionLogValue_actionRid, type ActionLogValue_actionTimestamp, type ActionLogValue_actionTypeRid, type ActionLogValue_actionTypeVersion, type ActionLogValue_actionUser, type ActionLogValue_allEditedObjects, type ActionLogValue_asynchronousWebhookInstanceIds, type ActionLogValue_editedObjects, type ActionLogValue_interfaceParameterPropertyValue, type ActionLogValue_interfaceParameterPropertyValueV2, type ActionLogValue_isReverted, type ActionLogValue_notificationIds, type ActionLogValue_notifiedUsers, type ActionLogValue_objectParameterPropertyValue, type ActionLogValue_parameterValue, type ActionLogValue_revertTimestamp, type ActionLogValue_revertUser, type ActionLogValue_scenarioRid, type ActionLogValue_summary, type ActionLogValue_synchronousWebhookInstanceId, type ActionLogic, type ActionLogicModification, type ActionNotification, type ActionNotificationBody, type ActionNotificationBodyFunctionExecution, type ActionNotificationBodyFunctionExecutionModification, type ActionNotificationBodyModification, type ActionNotificationBodyModification_functionGenerated, type ActionNotificationBodyModification_templateNotification, type ActionNotificationBody_functionGenerated, type ActionNotificationBody_templateNotification, type ActionNotificationModification, type ActionNotificationRecipients, type ActionNotificationRecipientsModification, type ActionNotificationRecipientsModification_functionGenerated, type ActionNotificationRecipientsModification_parameter, type ActionNotificationRecipients_functionGenerated, type ActionNotificationRecipients_parameter, type ActionNotificationSettings, type ActionParameterShapeId, type ActionRevert, type ActionRevertEnabledFor, type ActionRevertEnabledFor_actionApplier, type ActionSubmissionConfiguration, type ActionTableSubmissionMode, type ActionTableSubmissionModeConfiguration, type ActionTableSubmissionMode_submitAllValidOrNothingThrowing, type ActionTableSubmissionMode_submitValidEntriesInOrderUntilFirstFailure, type ActionType, type ActionTypeApiName, type ActionTypeBlockDataV2, type ActionTypeBranchFunctionsWithExternalCallsMode, type ActionTypeBranchFunctionsWithExternalCallsMode_allowFunctionsWithExternalCallsOnBranches, type ActionTypeBranchFunctionsWithExternalCallsMode_disableFunctionsWithExternalCallsOnBranches, type ActionTypeBranchNotificationsMode, type ActionTypeBranchNotificationsMode_allowNotificationsOnBranches, type ActionTypeBranchNotificationsMode_disableNotificationsOnBranches, type ActionTypeBranchSettings, type ActionTypeBranchSettingsModification, type ActionTypeBranchWebhooksMode, type ActionTypeBranchWebhooksMode_allowWebhooksOnBranches, type ActionTypeBranchWebhooksMode_disableWebhooksOnBranches, type ActionTypeCreate, type ActionTypeCreatedEvent, type ActionTypeDeletedEvent, type ActionTypeDisplayMetadata, type ActionTypeDisplayMetadataConfiguration, type ActionTypeDisplayMetadataModification, type ActionTypeDoesNotHaveActionTypeLevelValidationError, type ActionTypeEditingNonEditablePropertyTypeError, type ActionTypeEntities, type ActionTypeError, type ActionTypeError_actionTypeDoesNotHaveActionTypeLevelValidation, type ActionTypeError_actionTypeEditingNonEditablePropertyType, type ActionTypeError_actionTypesAlreadyExist, type ActionTypeError_actionTypesNotFound, type ActionTypeError_deletingAndEditingTheSameActionType, type ActionTypeError_inlineActionTypeCannotBeReferencedByMultipleObjectTypes, type ActionTypeError_nonExistentParametersUsedInParameterPrefill, type ActionTypeError_parameterValidationNotFound, type ActionTypeError_parameterValidationReferencesLaterParameters, type ActionTypeError_parametersDoNotMatchParameterOrdering, type ActionTypeError_versionedActionTypesNotFound, type ActionTypeFrontendConsumer, type ActionTypeFrontendConsumer_objectMonitoring, type ActionTypeGetOrganizationsRequest, type ActionTypeGetOrganizationsResponse, type ActionTypeIdInRequest, type ActionTypeIdentifier, type ActionTypeIdentifier_actionTypeIdInRequest, type ActionTypeIdentifier_rid, type ActionTypeInputManagerRid, type ActionTypeLevelValidation, type ActionTypeLoadAllRequest, type ActionTypeLoadRequest, type ActionTypeLoadRequestV2, type ActionTypeLoadResponse, type ActionTypeLoadResponseV2, type ActionTypeLoadVersionedRequest, type ActionTypeLoadVersionedResponse, type ActionTypeLogic, type ActionTypeLogicRequest, type ActionTypeMetadata, type ActionTypeMetadataModification, type ActionTypeModificationRequest, type ActionTypeModifyRequest, type ActionTypeModifyResponse, type ActionTypeParameterIdentifier, type ActionTypeParameterIdentifier_id, type ActionTypeParameterIdentifier_rid, type ActionTypePermissionInformation, type ActionTypeProvenanceModification, type ActionTypeProvenanceSourceModification, type ActionTypeProvenanceSourceModification_marketplace, type ActionTypeProvenanceSourceModification_none, type ActionTypeRestrictionStatus, type ActionTypeRichTextComponent, type ActionTypeRichTextComponent_message, type ActionTypeRichTextComponent_parameter, type ActionTypeRichTextComponent_parameterProperty, type ActionTypeRichTextMessage, type ActionTypeRichTextParameterPropertyReference, type ActionTypeRichTextParameterReference, type ActionTypeRid, type ActionTypeSetOrganizationsRequest, type ActionTypeStatus, type ActionTypeStatus_active, type ActionTypeStatus_deprecated, type ActionTypeStatus_example, type ActionTypeStatus_experimental, type ActionTypeUpdate, type ActionTypeUpdatedEvent, type ActionTypeVersion, type ActionTypesAlreadyExistError, type ActionTypesNotFoundError, type ActionTypesSummary, type ActionValidation, type ActionValidationRequest, type ActionWebhooks, type ActionWebhooksModification, type ActionsObjectSet, type ActionsObjectSetModification, type ActionsVersion, type ActiveActionTypeStatus, type ActiveInterfaceTypeStatus, type ActiveLinkTypeStatus, type ActiveObjectTypeStatus, type ActivePropertyTypeStatus, type AddInterfaceLinkRule, type AddInterfaceLinkRuleModification, type AddInterfaceLinkRuleModificationV2, type AddInterfaceLinkRuleV2, type AddInterfaceRule, type AddInterfaceRuleModification, type AddLinkRule, type AddObjectRule, type AddObjectRuleModification, type AddOrModifyObjectRule, type AddOrModifyObjectRuleModification, type AddOrModifyObjectRuleModificationV2, type AddOrModifyObjectRuleV2, type AdditionOperation, type AliasEntityIdentifier, type AliasEntityIdentifier_objectTypeRid, type AliasEntityIdentifier_sharedPropertyTypeRid, type AllEditedObjectsFieldMapping, type AllFoundryRids, type AllNotificationRenderingMustSucceed, type AllowFunctionsWithExternalCallsOnBranches, type AllowNotificationsOnBranches, type AllowNotificationsOnBranchesBranchRecipients, type AllowNotificationsOnBranchesBranchRecipients_branchRecipientsBranchOwner, type AllowNotificationsOnBranchesBranchRecipients_branchRecipientsSameAsMain, type AllowWebhooksOnBranches, type AllowedParameterValues, type AllowedParameterValuesModification, type AllowedParameterValuesModification_attachment, type AllowedParameterValuesModification_boolean, type AllowedParameterValuesModification_cbacMarking, type AllowedParameterValuesModification_datetime, type AllowedParameterValuesModification_geohash, type AllowedParameterValuesModification_geoshape, type AllowedParameterValuesModification_geotimeSeriesReference, type AllowedParameterValuesModification_interfaceObjectQuery, type AllowedParameterValuesModification_interfacePropertyValue, type AllowedParameterValuesModification_mandatoryMarking, type AllowedParameterValuesModification_mediaReference, type AllowedParameterValuesModification_multipassGroup, type AllowedParameterValuesModification_objectList, type AllowedParameterValuesModification_objectPropertyValue, type AllowedParameterValuesModification_objectQuery, type AllowedParameterValuesModification_objectSetRid, type AllowedParameterValuesModification_objectTypeReference, type AllowedParameterValuesModification_oneOf, type AllowedParameterValuesModification_range, type AllowedParameterValuesModification_redacted, type AllowedParameterValuesModification_scenarioReference, type AllowedParameterValuesModification_struct, type AllowedParameterValuesModification_text, type AllowedParameterValuesModification_timeSeriesReference, type AllowedParameterValuesModification_user, type AllowedParameterValuesModification_valueType, type AllowedParameterValuesRequest, type AllowedParameterValuesRequest_attachment, type AllowedParameterValuesRequest_boolean, type AllowedParameterValuesRequest_cbacMarking, type AllowedParameterValuesRequest_datetime, type AllowedParameterValuesRequest_geohash, type AllowedParameterValuesRequest_geoshape, type AllowedParameterValuesRequest_geotimeSeriesReference, type AllowedParameterValuesRequest_interfaceObjectQuery, type AllowedParameterValuesRequest_interfacePropertyValue, type AllowedParameterValuesRequest_mandatoryMarking, type AllowedParameterValuesRequest_mediaReference, type AllowedParameterValuesRequest_multipassGroup, type AllowedParameterValuesRequest_objectList, type AllowedParameterValuesRequest_objectPropertyValue, type AllowedParameterValuesRequest_objectQuery, type AllowedParameterValuesRequest_objectSetRid, type AllowedParameterValuesRequest_objectTypeReference, type AllowedParameterValuesRequest_oneOf, type AllowedParameterValuesRequest_range, type AllowedParameterValuesRequest_redacted, type AllowedParameterValuesRequest_scenarioReference, type AllowedParameterValuesRequest_struct, type AllowedParameterValuesRequest_text, type AllowedParameterValuesRequest_timeSeriesReference, type AllowedParameterValuesRequest_user, type AllowedParameterValuesRequest_valueType, type AllowedParameterValues_attachment, type AllowedParameterValues_boolean, type AllowedParameterValues_cbacMarking, type AllowedParameterValues_datetime, type AllowedParameterValues_geohash, type AllowedParameterValues_geoshape, type AllowedParameterValues_geotimeSeriesReference, type AllowedParameterValues_interfaceObjectQuery, type AllowedParameterValues_interfacePropertyValue, type AllowedParameterValues_mandatoryMarking, type AllowedParameterValues_mediaReference, type AllowedParameterValues_multipassGroup, type AllowedParameterValues_objectList, type AllowedParameterValues_objectPropertyValue, type AllowedParameterValues_objectQuery, type AllowedParameterValues_objectSetRid, type AllowedParameterValues_objectTypeReference, type AllowedParameterValues_oneOf, type AllowedParameterValues_range, type AllowedParameterValues_redacted, type AllowedParameterValues_scenarioReference, type AllowedParameterValues_struct, type AllowedParameterValues_text, type AllowedParameterValues_timeSeriesReference, type AllowedParameterValues_user, type AllowedParameterValues_valueType, type AllowedStructFieldValues, type AllowedStructFieldValuesModification, type AllowedStructFieldValuesModification_boolean, type AllowedStructFieldValuesModification_datetime, type AllowedStructFieldValuesModification_geohash, type AllowedStructFieldValuesModification_geoshape, type AllowedStructFieldValuesModification_objectQuery, type AllowedStructFieldValuesModification_oneOf, type AllowedStructFieldValuesModification_range, type AllowedStructFieldValuesModification_text, type AllowedStructFieldValuesOverride, type AllowedStructFieldValuesOverrideModification, type AllowedStructFieldValues_boolean, type AllowedStructFieldValues_datetime, type AllowedStructFieldValues_geohash, type AllowedStructFieldValues_geoshape, type AllowedStructFieldValues_objectQuery, type AllowedStructFieldValues_oneOf, type AllowedStructFieldValues_range, type AllowedStructFieldValues_text, type AllowedValuesOverride, type AllowedValuesOverrideModification, type AllowedValuesOverrideRequest, type Analyzer, type Analyzer_languageAnalyzer, type Analyzer_notAnalyzed, type Analyzer_simpleAnalyzer, type Analyzer_standardAnalyzer, type Analyzer_whitespaceAnalyzer, type AndCondition, type AndConditionModification, type AnyNotificationRenderingCanFail, type ArrayPropertyType, type ArrayPropertyTypeReducer, type ArrayPropertyTypeReducerSortDirection, type ArrayTypeDataConstraints$1 as ArrayTypeDataConstraints, type ArrayTypeDataValue$1 as ArrayTypeDataValue, type ArrayTypeElementsUniqueConstraint$1 as ArrayTypeElementsUniqueConstraint, type ArrayTypeSizeConstraint$1 as ArrayTypeSizeConstraint, type ArtifactGidFormatter, type AsynchronousPostWritebackWebhook, type AsynchronousPostWritebackWebhookModification, type AsynchronousPostWritebackWebhookModification_staticDirectInput, type AsynchronousPostWritebackWebhookModification_staticFunctionInput, type AsynchronousPostWritebackWebhook_staticDirectInput, type AsynchronousPostWritebackWebhook_staticFunctionInput, type AttachmentPropertyType, type Attribution, type BaseFormatter, type BaseFormatter_boolean, type BaseFormatter_date, type BaseFormatter_knownFormatter, type BaseFormatter_number, type BaseFormatter_string, type BaseFormatter_timeDependent, type BaseFormatter_timestamp, type BaseParameterSubtype, type BaseParameterSubtype_marking, type BasePropertyType, type BaseType, type BasicEmailBody, type BasicEmailBodyModification, type BatchGetEnrichedActionTypeMetadataRequest, type BatchGetEnrichedActionTypeMetadataResponse, type BatchedFunctionRule, type BatchedFunctionRuleModification, type BidirectionalRelation, type BidirectionalRelationCreateRequest, type BidirectionalRelationDeleteRequest, type BidirectionalRelationModifyRequest, type BidirectionalRelationModifyRequest_create, type BidirectionalRelationModifyRequest_delete, type BidirectionalRelationModifyRequest_update, type BidirectionalRelationUpdateRequest, type BidirectionalRelationWithoutRid, type BlockInternalId, type BlockPermissionInformation, type BlockShapeId, type BlueprintIcon, type BooleanFormatter, type BooleanPropertyType, type BooleanTypeDataConstraintValue$1 as BooleanTypeDataConstraintValue, type BooleanTypeDataConstraints$1 as BooleanTypeDataConstraints, type BooleanTypeDataValue$1 as BooleanTypeDataValue, type BranchClosedEvent, type BranchDeletedEvent, type BranchId, type BranchMergedEvent, type BranchObjectTypeResetEvent, type BranchRecipientsBranchOwner, type BranchRecipientsSameAsMain, type BuilderPipelineRid, type BulkExecutionModeConfig, type ButtonDisplayMetadata, type BytePropertyType, type ByteTypeDataValue$1 as ByteTypeDataValue, type CarbonWorkspaceComponentUrlTarget, type CarbonWorkspaceComponentUrlTargetModification, type CarbonWorkspaceComponentUrlTargetModification_rid, type CarbonWorkspaceComponentUrlTarget_rid, type CarbonWorkspaceUrlTarget, type CarbonWorkspaceUrlTargetModification, type CategoryId, type CipherTextPropertyType, type ClassificationConstraint, type ColumnLocator, type ColumnName, type ColumnNameType, type ComparisonCondition, type ComparisonConditionModification, type ComparisonOperator, type CompassFolderRid, type CompassProjectRid, type Condition, type ConditionDisplayMetadata, type ConditionIndex, type ConditionModification, type ConditionModification_and, type ConditionModification_comparison, type ConditionModification_markings, type ConditionModification_not, type ConditionModification_or, type ConditionModification_redacted, type ConditionModification_regex, type ConditionModification_true, type ConditionValue, type ConditionValueModification, type ConditionValueModification_interfaceParameterPropertyValue, type ConditionValueModification_interfaceParameterPropertyValueV2, type ConditionValueModification_objectParameterPropertyValue, type ConditionValueModification_parameterId, type ConditionValueModification_parameterLength, type ConditionValueModification_staticValue, type ConditionValueModification_userProperty, type ConditionValue_interfaceParameterPropertyValue, type ConditionValue_interfaceParameterPropertyValueV2, type ConditionValue_objectParameterPropertyValue, type ConditionValue_parameterId, type ConditionValue_parameterLength, type ConditionValue_staticValue, type ConditionValue_userProperty, type Condition_and, type Condition_comparison, type Condition_markings, type Condition_not, type Condition_or, type Condition_redacted, type Condition_regex, type Condition_true, type ConditionalOverride, type ConditionalOverrideModification, type ConditionalOverrideRequest, type ConditionalValidationBlock, type ConditionalValidationBlockModification, type ConditionalValidationBlockRequest, type CreatedInterfaceObjectReferenceByPk, type CreatedInterfaceObjectReferenceByUniqueIdentifier, type CurrentTime, type CurrentUser, type DataConstraint, type DataConstraintWrapper, type DataConstraints, type DataFilter, type DataNullability, type DataNullabilityV2, type DataSecurity, type DataSetName, type DataType, type DataType_baseType, type DatasetRid, type DatasetRidAndBranchId, type DatasetTransactionRid, type DatasourceBackingRid, type DatasourceBackingRid_datasetRid, type DatasourceBackingRid_derivedPropertiesSourceRid, type DatasourceBackingRid_directSourceRid, type DatasourceBackingRid_editsOnlyRid, type DatasourceBackingRid_geotimeSeriesIntegrationRid, type DatasourceBackingRid_mediaSetRid, type DatasourceBackingRid_mediaSetViewRid, type DatasourceBackingRid_restrictedStreamRid, type DatasourceBackingRid_restrictedViewRid, type DatasourceBackingRid_streamLocatorRid, type DatasourceBackingRid_tableRid, type DatasourceBackingRid_timeSeriesSyncRid, type DatasourceIdentifier, type DatasourceIdentifier_datasetRidAndBranchId, type DatasourceIdentifier_derivedPropertiesSourceRid, type DatasourceIdentifier_directSourceRid, type DatasourceIdentifier_editsOnly, type DatasourceIdentifier_geotimeSeriesIntegrationRid, type DatasourceIdentifier_mediaSetView, type DatasourceIdentifier_mediaSourceRids, type DatasourceIdentifier_restrictedStream, type DatasourceIdentifier_restrictedViewRid, type DatasourceIdentifier_streamLocator, type DatasourceIdentifier_table, type DatasourceIdentifier_timeSeriesSyncRid, type DatasourceName, type DatasourcePredicate, type DatasourcePredicate_hasRid, type DatasourcePredicate_isOnlyDatasource, type DatasourcePredicate_or, type DatasourceRid, type DatasourceType, type DateBetweenOperation, type DateCurrentOperation, type DateFormatter, type DatePropertyType, type DateRangeValue, type DateRangeValueModification, type DateRangeValueModification_fixed, type DateRangeValueModification_now, type DateRangeValueModification_relative, type DateRangeValue_fixed, type DateRangeValue_now, type DateRangeValue_relative, type DateTimeUnit, type DateTimeUnitDays, type DateTimeUnitHours, type DateTimeUnitMinutes, type DateTimeUnitMonths, type DateTimeUnitSeconds, type DateTimeUnitWeeks, type DateTimeUnitYears, type DateTimeUnit_days, type DateTimeUnit_hours, type DateTimeUnit_minutes, type DateTimeUnit_months, type DateTimeUnit_seconds, type DateTimeUnit_weeks, type DateTimeUnit_years, type DateTypeDataConstraints$1 as DateTypeDataConstraints, type DateTypeDataValue$1 as DateTypeDataValue, type DateTypeRangeConstraint$1 as DateTypeRangeConstraint, type DateUnit, type DateUnit_days, type DateUnit_months, type DateUnit_weeks, type DateUnit_years, type DatetimeFormat, type DatetimeFormat_localizedFormat, type DatetimeFormat_stringFormat, type DatetimeLocalizedFormat, type DatetimeStringFormat, type DatetimeTimezone, type DatetimeTimezoneDefinition, type DatetimeTimezoneDefinition_zoneId, type DatetimeTimezone_static, type DatetimeTimezone_user, type DecimalPropertyType, type DecimalTypeDataConstraints$1 as DecimalTypeDataConstraints, type DecimalTypeDataConstraints_oneOf$1 as DecimalTypeDataConstraints_oneOf, type DecimalTypeDataConstraints_range$1 as DecimalTypeDataConstraints_range, type DecimalTypeDataValue$1 as DecimalTypeDataValue, type DecimalTypeRangeConstraint$1 as DecimalTypeRangeConstraint, type DelegateToAllowedStructFieldValues, type DeleteInterfaceLinkRule, type DeleteInterfaceLinkRuleModification, type DeleteLinkRule, type DeleteObjectRule, type DeletedLinkTypesStillInUseError, type DeletedLinkTypesStillInUseInWorkflowError, type DeletedObjectTypesStillInUseError, type DeletedObjectTypesStillInUseInWorkflowError, type DeletingAndEditingTheSameActionTypeError, type DeletionMetadata, type DeprecatedActionTypeGetOrganizationsResponse, type DeprecatedActionTypeSetOrganizationsRequest, type DeprecatedActionTypeStatus, type DeprecatedInterfaceTypeStatus, type DeprecatedLinkTypeStatus, type DeprecatedObjectTypeStatus, type DeprecatedPropertyTypeStatus, type DerivedPropertiesSourceRid, type DerivedPropertyLinkTypeSide, type DirectSourceRid, type DirectedLinkTypeRid, type DisableFunctionsWithExternalCallsOnBranches, type DisableNotificationsOnBranches, type DisableWebhooksOnBranches, type DisplayMetadataConfigurationDefaultLayout, type DisplayMetadataConfigurationDisplayAndFormat, type DivisionOperation, type DoublePropertyType, type DoubleTypeDataConstraints$1 as DoubleTypeDataConstraints, type DoubleTypeDataConstraints_oneOf$1 as DoubleTypeDataConstraints_oneOf, type DoubleTypeDataConstraints_range$1 as DoubleTypeDataConstraints_range, type DoubleTypeDataValue$1 as DoubleTypeDataValue, type DoubleTypeRangeConstraint$1 as DoubleTypeRangeConstraint, type Duration, type DurationBaseValue, type DurationFormatStyle, type DurationFormatStyle_humanReadable, type DurationFormatStyle_timecode, type DurationPrecision, type DynamicObjectSet, type DynamicObjectSetInput, type DynamicObjectSetInputBase, type DynamicObjectSetInputParameter, type DynamicObjectSetInputUnioned, type DynamicObjectSetInput_base, type DynamicObjectSetInput_parameter, type DynamicObjectSetInput_unioned, type EditActionTypeRequest, type EditOnlyPropertyType, type EditParameterRequest, type EditParameterRequestModification, type EditSectionRequest, type EditSectionRequestModification, type EditValidationRuleRequest, type EditsConfiguration, type EditsHistoryObjectTypeRid, type EditsOnlyRid, type EmailBody, type EmailBodyModification, type EmailBodyModification_basic, type EmailBody_basic, type EmbeddingModel, type EmbeddingModel_multimodal, type EmbeddingModel_text, type Empty, type EndorsedObjectTypeStatus, type EnrichedActionTypeEntities, type EnrichedActionTypeMetadata, type EnrollmentRid, type EntityLoadByDatasourceResponse, type EntityLoadByDatasourceResponse_linkType, type EntityLoadByDatasourceResponse_objectType, type EntityMetadataLoadRequest, type EntityStatus, type EventMetadata, type EventsTopicRid, type EveryoneTrustedRedactionOverride, type ExampleActionTypeStatus, type ExampleInterfaceTypeStatus, type ExampleLinkTypeStatus, type ExampleObjectTypeStatus, type ExamplePropertyTypeStatus, type ExampleValue, type ExperimentalActionTypeStatus, type ExperimentalDeclarativeEditInformation, type ExperimentalInterfaceTypeStatus, type ExperimentalLinkTypeStatus, type ExperimentalObjectTypeStatus, type ExperimentalPropertyTypeStatus, type ExperimentalTimeDependentPropertyTypeV1, type FailureMessage, type FieldDisplayMetadata, type FieldMetadata, type FloatPropertyType, type FloatTypeDataConstraints$1 as FloatTypeDataConstraints, type FloatTypeDataConstraints_oneOf$1 as FloatTypeDataConstraints_oneOf, type FloatTypeDataConstraints_range$1 as FloatTypeDataConstraints_range, type FloatTypeDataValue$1 as FloatTypeDataValue, type FloatTypeRangeConstraint$1 as FloatTypeRangeConstraint, type FormContent, type FormContent_parameterId, type FormContent_sectionId, type FormatterUserId, type FoundryFieldType, type FoundryLiveDeployment, type FoundryObjectReference, type FunctionApiName, type FunctionAtVersion, type FunctionExecutionWithRecipientInput, type FunctionExecutionWithRecipientInputModification, type FunctionExecutionWithRecipientInputModification_logicRuleValue, type FunctionExecutionWithRecipientInputModification_recipient, type FunctionExecutionWithRecipientInput_logicRuleValue, type FunctionExecutionWithRecipientInput_recipient, type FunctionGeneratedActionNotificationRecipients, type FunctionGeneratedActionNotificationRecipientsModification, type FunctionGeneratedNotificationBody, type FunctionGeneratedNotificationBodyModification, type FunctionInputName, type FunctionReference, type FunctionRid, type FunctionRule, type FunctionRuleCustomExecutionMode, type FunctionRuleCustomExecutionMode_bulkExecutionModeConfig, type FunctionRuleModification, type FunctionVersion, type GenericOntologyMetadataError, type GeohashPropertyType, type GeoshapePropertyType, type GeotimeSeriesIntegrationName, type GeotimeSeriesIntegrationRid, type GeotimeSeriesReferencePropertyType, type GetActionTypesForInterfaceTypePageToken, type GetActionTypesForInterfaceTypeRequest, type GetActionTypesForInterfaceTypeResponse, type GetActionTypesForObjectTypePageToken, type GetActionTypesForObjectTypeRequest, type GetActionTypesForObjectTypeResponse, type GetBulkLinksPageRequest, type GetEntityDelegateDatasetRequest, type GetEntityDelegateDatasetResponse, type GetEntityQueryableSourceRequest, type GetEntityQueryableSourceResponse, type GetFeatureConfigurationsResponse, type GetLinkMetadataForObjectTypesRequest, type GetLinkMetadataForObjectTypesResponse, type GetLinkTypesForObjectTypesRequest, type GetLinkTypesForObjectTypesResponse, type GetObjectTypesForInterfaceTypesRequest, type GetObjectTypesForInterfaceTypesResponse, type GetObjectTypesForSharedPropertyTypesRequest, type GetObjectTypesForSharedPropertyTypesResponse, type GetObjectTypesForTypeGroupsRequest, type GetObjectTypesForTypeGroupsResponse, type GetOntologyEntitiesForTypeGroupsRequest, type GetOntologyEntitiesForTypeGroupsResponse, type GetOntologySummaryRequest, type GetOntologySummaryResponse, type GetRelationsForObjectTypesRequest, type GetRelationsForObjectTypesResponse, type GlobalBranchRid, type GroupId, type HandlebarsInputName, type HumanReadableFormat, type Icon, type IconReference, type Icon_blueprint, type ImageModality, type ImplementingLinkType, type ImportedOntologyEntitiesForProjectSpanOntologies, type InlineActionDisplayOptions, type InlineActionType, type InlineActionTypeCannotBeReferencedByMultipleObjectTypesError, type InstallLocationBlockShapeId, type IntegerPropertyType, type IntegerTypeDataConstraints$1 as IntegerTypeDataConstraints, type IntegerTypeDataConstraints_oneOf$1 as IntegerTypeDataConstraints_oneOf, type IntegerTypeDataConstraints_range$1 as IntegerTypeDataConstraints_range, type IntegerTypeDataValue$1 as IntegerTypeDataValue, type IntegerTypeRangeConstraint$1 as IntegerTypeRangeConstraint, type InterfaceArrayPropertyType, type InterfaceCipherTextPropertyType, type InterfaceDefinedPropertyType, type InterfaceDefinedPropertyTypeConstraints, type InterfaceLinkType, type InterfaceLinkTypeApiName, type InterfaceLinkTypeCardinality, type InterfaceLinkTypeIdInRequest, type InterfaceLinkTypeMetadata, type InterfaceLinkTypeRid, type InterfaceLinkTypeRidOrIdInRequest, type InterfaceLinkTypeRidOrIdInRequest_idInRequest, type InterfaceLinkTypeRidOrIdInRequest_rid, type InterfaceObjectParameterStructFieldValue, type InterfaceObjectParameterStructFieldValueModification, type InterfaceObjectParameterStructListFieldValue, type InterfaceObjectParameterStructListFieldValueModification, type InterfaceParameterPropertyValue, type InterfaceParameterPropertyValueModification, type InterfaceParameterPropertyValueModificationV2, type InterfaceParameterPropertyValueV2, type InterfacePropertyImplementation, type InterfacePropertyLogicRuleValue, type InterfacePropertyLogicRuleValue_logicRuleValue, type InterfacePropertyLogicRuleValue_structLogicRuleValue, type InterfacePropertyType, type InterfacePropertyTypeApiName, type InterfacePropertyTypeDisplayMetadata, type InterfacePropertyTypeIdInRequest, type InterfacePropertyTypeImplementation, type InterfacePropertyTypeImplementation_propertyTypeRid, type InterfacePropertyTypeImplementation_reducedProperty, type InterfacePropertyTypeImplementation_structField, type InterfacePropertyTypeImplementation_structPropertyTypeMapping, type InterfacePropertyTypeLogicRuleValueModification, type InterfacePropertyTypeRid, type InterfacePropertyTypeRidOrIdInRequest, type InterfacePropertyTypeRidOrIdInRequest_idInRequest, type InterfacePropertyTypeRidOrIdInRequest_rid, type InterfacePropertyTypeType, type InterfacePropertyTypeType_array, type InterfacePropertyTypeType_attachment, type InterfacePropertyTypeType_boolean, type InterfacePropertyTypeType_byte, type InterfacePropertyTypeType_cipherText, type InterfacePropertyTypeType_date, type InterfacePropertyTypeType_decimal, type InterfacePropertyTypeType_double, type InterfacePropertyTypeType_experimentalTimeDependentV1, type InterfacePropertyTypeType_float, type InterfacePropertyTypeType_geohash, type InterfacePropertyTypeType_geoshape, type InterfacePropertyTypeType_geotimeSeriesReference, type InterfacePropertyTypeType_integer, type InterfacePropertyTypeType_long, type InterfacePropertyTypeType_marking, type InterfacePropertyTypeType_mediaReference, type InterfacePropertyTypeType_short, type InterfacePropertyTypeType_string, type InterfacePropertyTypeType_struct, type InterfacePropertyTypeType_timestamp, type InterfacePropertyTypeType_vector, type InterfacePropertyType_interfaceDefinedPropertyType, type InterfacePropertyType_sharedPropertyBasedPropertyType, type InterfaceSharedPropertyType, type InterfaceStructFieldType, type InterfaceStructPropertyType, type InterfaceType, type InterfaceTypeApiName, type InterfaceTypeBlockDataV2, type InterfaceTypeCreatedEvent, type InterfaceTypeDeletedEvent, type InterfaceTypeDisplayMetadata, type InterfaceTypeError, type InterfaceTypeError_interfaceTypesAlreadyExist, type InterfaceTypeError_interfaceTypesNotFound, type InterfaceTypeIdInRequest, type InterfaceTypeLoadRequest, type InterfaceTypeLoadResponse, type InterfaceTypeRid, type InterfaceTypeRidOrIdInRequest, type InterfaceTypeRidOrIdInRequest_idInRequest, type InterfaceTypeRidOrIdInRequest_rid, type InterfaceTypeStatus, type InterfaceTypeStatus_active, type InterfaceTypeStatus_deprecated, type InterfaceTypeStatus_example, type InterfaceTypeStatus_experimental, type InterfaceTypeUpdatedEvent, type InterfaceTypesAlreadyExistError, type InterfaceTypesNotFoundError, type InterfacesSummary, type IntermediaryLinkDefinition, type InvalidCompassNameReason, type IsOnlyDatasource, type JoinDefinition, type JoinDefinition_joinTable, type JoinDefinition_singleKey, type KnownFormatter, type KnownFormatter_artifactGidFormatter, type KnownFormatter_ridFormatter, type KnownFormatter_sidcFormatter, type KnownFormatter_userId, type KnownMarketplaceIdentifiers, type LabelledValue, type LanguageAnalyzer, type LimeIndexRid, type LinkDefinition, type LinkDefinition_intermediary, type LinkDefinition_manyToMany, type LinkDefinition_oneToMany, type LinkMetadata, type LinkMetadata_linkType, type LinkMetadata_softLink, type LinkType, type LinkTypeBlockDataV2, type LinkTypeCreatedEvent, type LinkTypeDeletedEvent, type LinkTypeDisplayMetadata, type LinkTypeError, type LinkTypeError_deletedLinkTypesStillInUse, type LinkTypeError_deletedObjectsStillInUse, type LinkTypeError_linkTypeRidsNotFound, type LinkTypeError_linkTypesAlreadyExist, type LinkTypeError_linkTypesNotFound, type LinkTypeError_referencedLinkTypesNotFound, type LinkTypeError_referencedObjectTypesNotFound, type LinkTypeId, type LinkTypeIdentifier, type LinkTypeIdentifier_linkTypeId, type LinkTypeIdentifier_linkTypeRid, type LinkTypeInputManagerRid, type LinkTypeInputSpec, type LinkTypeLoadRequest, type LinkTypeLoadResponse, type LinkTypeMetadata, type LinkTypeMetadataInputManagerRid, type LinkTypePeeringMetadata, type LinkTypePeeringMetadataV1, type LinkTypePeeringMetadata_v1, type LinkTypePeeringRid, type LinkTypePermissionInformation, type LinkTypeRestrictionStatus, type LinkTypeRid, type LinkTypeRidOrId, type LinkTypeRidOrId_id, type LinkTypeRidOrId_rid, type LinkTypeRidsNotFoundError, type LinkTypeStatus, type LinkTypeStatus_active, type LinkTypeStatus_deprecated, type LinkTypeStatus_example, type LinkTypeStatus_experimental, type LinkTypeUpdatedEvent, type LinkTypesAlreadyExistError, type LinkTypesNotFoundError, type LinkTypesSummary, type LinkedEntityTypeId, type LinkedEntityTypeId_interfaceType, type LinkedEntityTypeId_objectType, type LinkedEntityTypeRidOrIdInRequest, type LinkedEntityTypeRidOrIdInRequest_interfaceType, type LinkedEntityTypeRidOrIdInRequest_objectType, type LinkedObjectReference, type LinkedObjectReferenceModification, type LinkedObjectReferenceModification_createdInterfaceObjectReferenceByPk, type LinkedObjectReferenceModification_createdInterfaceObjectReferenceByUniqueIdentifier, type LinkedObjectReferenceModification_createdObjectReference, type LinkedObjectReferenceModification_existingObject, type LinkedObjectReference_createdInterfaceObjectReferenceByPk, type LinkedObjectReference_createdInterfaceObjectReferenceByUniqueIdentifier, type LinkedObjectReference_createdObjectReference, type LinkedObjectReference_existingObject, type LiveDeploymentRid, type LmsEmbeddingModel, type LoadActionTypesFromOntologyRequest, type LoadActionTypesFromOntologyResponse, type LoadAllActionTypesFromOntologyRequest, type LoadAllActionTypesPageItem, type LoadAllActionTypesPageRequest, type LoadAllActionTypesPageResponse, type LoadAllActionTypesPageToken, type LoadAllInterfaceTypesPageItem, type LoadAllInterfaceTypesPageRequest, type LoadAllInterfaceTypesPageResponse, type LoadAllInterfaceTypesPageToken, type LoadAllObjectTypesFromOntologyPageRequest, type LoadAllObjectTypesFromOntologyPageResponse, type LoadAllObjectTypesPageItem, type LoadAllObjectTypesPageRequest, type LoadAllObjectTypesPageResponse, type LoadAllObjectTypesPageToken, type LoadAllOntologiesRequest, type LoadAllOntologiesResponse, type LoadAllSharedPropertyTypesPageItem, type LoadAllSharedPropertyTypesPageRequest, type LoadAllSharedPropertyTypesPageResponse, type LoadAllSharedPropertyTypesPageToken, type LoadAllTypeGroupsPageItem, type LoadAllTypeGroupsPageRequest, type LoadAllTypeGroupsPageResponse, type LoadAllTypeGroupsPageToken, type LogicRule, type LogicRuleIdInRequest, type LogicRuleIdentifier, type LogicRuleIdentifier_logicRuleIdInRequest, type LogicRuleIdentifier_rid, type LogicRuleModification, type LogicRuleModification_addInterfaceLinkRule, type LogicRuleModification_addInterfaceLinkRuleV2, type LogicRuleModification_addInterfaceRule, type LogicRuleModification_addLinkRule, type LogicRuleModification_addObjectRule, type LogicRuleModification_addOrModifyObjectRule, type LogicRuleModification_addOrModifyObjectRuleV2, type LogicRuleModification_batchedFunctionRule, type LogicRuleModification_deleteInterfaceLinkRule, type LogicRuleModification_deleteLinkRule, type LogicRuleModification_deleteObjectRule, type LogicRuleModification_functionRule, type LogicRuleModification_modifyInterfaceRule, type LogicRuleModification_modifyObjectRule, type LogicRuleModification_scenarioRule, type LogicRuleRid, type LogicRuleValue, type LogicRuleValueModification, type LogicRuleValueModification_currentTime, type LogicRuleValueModification_currentUser, type LogicRuleValueModification_interfaceParameterPropertyValue, type LogicRuleValueModification_interfaceParameterPropertyValueV2, type LogicRuleValueModification_objectParameterPropertyValue, type LogicRuleValueModification_parameterId, type LogicRuleValueModification_staticValue, type LogicRuleValueModification_synchronousWebhookOutput, type LogicRuleValueModification_uniqueIdentifier, type LogicRuleValue_currentTime, type LogicRuleValue_currentUser, type LogicRuleValue_interfaceParameterPropertyValue, type LogicRuleValue_interfaceParameterPropertyValueV2, type LogicRuleValue_objectParameterPropertyValue, type LogicRuleValue_parameterId, type LogicRuleValue_staticValue, type LogicRuleValue_synchronousWebhookOutput, type LogicRuleValue_uniqueIdentifier, type LogicRule_addInterfaceLinkRule, type LogicRule_addInterfaceLinkRuleV2, type LogicRule_addInterfaceRule, type LogicRule_addLinkRule, type LogicRule_addObjectRule, type LogicRule_addOrModifyObjectRule, type LogicRule_addOrModifyObjectRuleV2, type LogicRule_batchedFunctionRule, type LogicRule_deleteInterfaceLinkRule, type LogicRule_deleteLinkRule, type LogicRule_deleteObjectRule, type LogicRule_functionRule, type LogicRule_modifyInterfaceRule, type LogicRule_modifyObjectRule, type LogicRule_scenarioRule, type LongPropertyType, type LongTypeDataConstraints$1 as LongTypeDataConstraints, type LongTypeDataConstraints_oneOf$1 as LongTypeDataConstraints_oneOf, type LongTypeDataConstraints_range$1 as LongTypeDataConstraints_range, type LongTypeDataValue$1 as LongTypeDataValue, type LongTypeRangeConstraint$1 as LongTypeRangeConstraint, type MandatoryMarkingConstraint, type ManyToManyJoinDefinition, type ManyToManyLinkDefinition, type ManyToManyLinkTypeDatasetDatasource, type ManyToManyLinkTypeDatasource, type ManyToManyLinkTypeDatasourceDefinition, type ManyToManyLinkTypeDatasourceDefinition_dataset, type ManyToManyLinkTypeDatasourceDefinition_stream, type ManyToManyLinkTypeStreamDatasource, type MarketplaceActionType, type MarketplaceActionTypeDisplayMetadata, type MarketplaceActionTypeMetadata, type MarketplaceActiveInterfaceTypeStatus, type MarketplaceDataConstraints, type MarketplaceDeprecatedInterfaceTypeStatus, type MarketplaceExampleInterfaceTypeStatus, type MarketplaceExperimentalInterfaceTypeStatus, type MarketplaceInterfaceDefinedPropertyType, type MarketplaceInterfaceDefinedPropertyTypeConstraints, type MarketplaceInterfaceLinkType, type MarketplaceInterfaceLinkTypeCardinality, type MarketplaceInterfaceLinkTypeMetadata, type MarketplaceInterfacePropertyType, type MarketplaceInterfacePropertyType_interfaceDefinedPropertyType, type MarketplaceInterfacePropertyType_sharedPropertyBasedPropertyType, type MarketplaceInterfaceType, type MarketplaceInterfaceTypeDisplayMetadata, type MarketplaceInterfaceTypeStatus, type MarketplaceInterfaceTypeStatus_active, type MarketplaceInterfaceTypeStatus_deprecated, type MarketplaceInterfaceTypeStatus_example, type MarketplaceInterfaceTypeStatus_experimental, type MarketplaceObjectTypeEntityMetadata, type MarketplaceSharedPropertyBasedPropertyType, type MarkingDisplayName, type MarkingFilter, type MarkingFilter_markingTypes, type MarkingGroupName, type MarkingId, type MarkingInfo, type MarkingPropertyType, type MarkingSubtype, type MarkingType, type MarkingTypesFilter, type MarkingsCondition, type MarkingsConditionModification, type MediaItemRid, type MediaReferencePropertyType, type MediaSetBranchRid, type MediaSetRid, type MediaSetViewLocator, type MediaSetViewName, type MediaSetViewRid, type MediaSourceRid, type MediaSourceRid_datasetRid, type MediaSourceRid_mediaSetRid, type MioEmbeddingModel, type MissingAffectedObjectTypesForFunctionRule, type MissingParameterValueType, type Modality, type Modality_image, type Modality_text, type ModelWithSource, type ModelWithSource_mio, type ModifyInterfaceRule, type ModifyInterfaceRuleModification, type ModifyObjectRule, type ModifyObjectRuleModification, type ModuleRid, type MultimodalEmbeddingModel, type MultipassUserFilter, type MultipassUserFilterModification, type MultipassUserFilterModification_groupFilter, type MultipassUserFilter_groupFilter, type MultipassUserInGroupFilter, type MultipassUserInGroupFilterModification, type MultiplicationOperation, type MustBeEmpty, type NestedInterfacePropertyTypeImplementation, type NestedInterfacePropertyTypeImplementation_propertyTypeRid, type NestedInterfacePropertyTypeImplementation_structField, type NestedInterfacePropertyTypeImplementation_structPropertyTypeMapping, type NestedStructFieldApiNameMapping, type NewObjectUrlTarget, type NewObjectUrlTargetModification, type NoRetentionPolicy, type NonExistentParametersUsedInParameterPrefillError, type NonNumericInternalInterpolation, type NonNumericSeriesValueMetadata, type NonNumericSeriesValueUnit, type NoneEntityProvenance, type NotAnalyzedAnalyzer, type NotCondition, type NotConditionModification, type NotepadReference, type NotepadRid, type NotificationRecipient, type NotificationResultTypeLink, type NotificationResultTypeLinkModification, type NotificationTemplateInputValue, type NotificationTemplateInputValueModification, type NotificationTemplateInputValueModification_actionTriggererValue, type NotificationTemplateInputValueModification_logicRuleValue, type NotificationTemplateInputValueModification_recipientValue, type NotificationTemplateInputValue_actionTriggererValue, type NotificationTemplateInputValue_logicRuleValue, type NotificationTemplateInputValue_recipientValue, type NumberFormatBase, type NumberFormatBasisPoint, type NumberFormatBillions, type NumberFormatCurrency, type NumberFormatCurrencyStyle, type NumberFormatCustomUnit, type NumberFormatDuration, type NumberFormatMillions, type NumberFormatNotation, type NumberFormatOrdinal, type NumberFormatPerMille, type NumberFormatPercentage, type NumberFormatPrePostFix, type NumberFormatThousands, type NumberFormatUnit, type NumberFormatter, type NumberFormatter_base, type NumberFormatter_basisPoint, type NumberFormatter_billions, type NumberFormatter_currency, type NumberFormatter_customUnit, type NumberFormatter_duration, type NumberFormatter_millions, type NumberFormatter_ordinal, type NumberFormatter_perMille, type NumberFormatter_percentage, type NumberFormatter_prePost, type NumberFormatter_thousands, type NumberFormatter_unit, type NumberRoundingMode, type NumericInternalInterpolation, type NumericOrNonNumericSeriesValueMetadata, type NumericOrNonNumericSeriesValueMetadataV2, type NumericSeriesValueMetadata, type NumericSeriesValueUnit, type NumericSeriesValueUnit_customUnit, type NumericSeriesValueUnit_standardUnit, type ObjectDbRid, type ObjectDbSyncRid, type ObjectDisplayMetadata, type ObjectIdentifier, type ObjectMonitoringFrontendConsumer, type ObjectOrLinkTypeRid, type ObjectParameterPropertyValue, type ObjectParameterStructFieldValue, type ObjectParameterStructFieldValueModification, type ObjectParameterStructListFieldValue, type ObjectParameterStructListFieldValueModification, type ObjectQueryPrefill, type ObjectQueryPrefillModification, type ObjectQueryPropertyValue, type ObjectQueryPropertyValueModification, type ObjectRid, type ObjectSet, type ObjectSetFilter$1 as ObjectSetFilter, type ObjectSetRidPrefill, type ObjectSetRidPrefillModification, type ObjectSetSearchAround, type ObjectSetTransform, type ObjectSetTransform_propertyFilter, type ObjectSetTransform_searchAround, type ObjectType, type ObjectTypeApiName, type ObjectTypeBlockDataV2, type ObjectTypeCreatedEvent, type ObjectTypeDatasetDatasource, type ObjectTypeDatasetDatasourceV2, type ObjectTypeDatasetDatasourceV3, type ObjectTypeDatasource, type ObjectTypeDatasourceDefinition, type ObjectTypeDatasourceDefinition_dataset, type ObjectTypeDatasourceDefinition_datasetV2, type ObjectTypeDatasourceDefinition_datasetV3, type ObjectTypeDatasourceDefinition_derived, type ObjectTypeDatasourceDefinition_direct, type ObjectTypeDatasourceDefinition_editsOnly, type ObjectTypeDatasourceDefinition_geotimeSeries, type ObjectTypeDatasourceDefinition_media, type ObjectTypeDatasourceDefinition_mediaSetView, type ObjectTypeDatasourceDefinition_restrictedStream, type ObjectTypeDatasourceDefinition_restrictedView, type ObjectTypeDatasourceDefinition_restrictedViewV2, type ObjectTypeDatasourceDefinition_stream, type ObjectTypeDatasourceDefinition_streamV2, type ObjectTypeDatasourceDefinition_streamV3, type ObjectTypeDatasourceDefinition_table, type ObjectTypeDatasourceDefinition_timeSeries, type ObjectTypeDeletedEvent, type ObjectTypeDerivedPropertiesDatasource, type ObjectTypeDirectDatasource, type ObjectTypeDisplayMetadata, type ObjectTypeEditsOnlyDatasource, type ObjectTypeEmbeddingInput, type ObjectTypeError, type ObjectTypeError_mainValueStructFieldApiNamesNotFound, type ObjectTypeError_objectTypeRidsNotFound, type ObjectTypeError_objectTypesAlreadyExist, type ObjectTypeError_objectTypesNotFound, type ObjectTypeError_patchBackupInitializationConfigurationSourceDoesNotExist, type ObjectTypeError_reducerStructFieldApiNamesNotFound, type ObjectTypeFieldApiName, type ObjectTypeGeotimeSeriesDatasource, type ObjectTypeId, type ObjectTypeIdentifier, type ObjectTypeIdentifier_objectTypeId, type ObjectTypeIdentifier_objectTypeRid, type ObjectTypeIdsAndInterfaceTypeRids, type ObjectTypeInputManagerProperties, type ObjectTypeInputManagerRid, type ObjectTypeInputSpec, type ObjectTypeInterfaceImplementation, type ObjectTypeLoadRequest, type ObjectTypeLoadResponse, type ObjectTypeMainValueStructFieldApiNamesNotFoundError, type ObjectTypeMediaDatasource, type ObjectTypeMediaSetViewDatasource, type ObjectTypeMetadataInputManagerRid, type ObjectTypePeeringMetadata, type ObjectTypePeeringMetadataV1, type ObjectTypePeeringMetadata_v1, type ObjectTypePeeringRid, type ObjectTypePermissionInformation, type ObjectTypeReducerStructFieldApiNamesNotFoundError, type ObjectTypeRestrictedStreamDatasource, type ObjectTypeRestrictedViewDatasource, type ObjectTypeRestrictedViewDatasourceV2, type ObjectTypeRestrictionStatus, type ObjectTypeRid, type ObjectTypeRidsAndInterfaceTypeRids, type ObjectTypeRidsNotFoundError, type ObjectTypeStatus, type ObjectTypeStatus_active, type ObjectTypeStatus_deprecated, type ObjectTypeStatus_endorsed, type ObjectTypeStatus_example, type ObjectTypeStatus_experimental, type ObjectTypeStreamDatasource, type ObjectTypeStreamDatasourceV2, type ObjectTypeStreamDatasourceV3, type ObjectTypeTableDatasource, type ObjectTypeTimeSeriesDatasource, type ObjectTypeTraitPropertySpecification, type ObjectTypeTraits, type ObjectTypeUpdatedEvent, type ObjectTypeWithRestrictedViewWithGpsPolicyColumnsNotMappedAsPropertyTypes, type ObjectTypesAlreadyExistError, type ObjectTypesNotFoundError, type ObjectTypesSummary, type ObjectsPlatformRids, type ObjectsWritebackDataset, type OneOfDecimalTypeConstraint$1 as OneOfDecimalTypeConstraint, type OneOfDoubleTypeConstraint$1 as OneOfDoubleTypeConstraint, type OneOfFloatTypeConstraint$1 as OneOfFloatTypeConstraint, type OneOfIntegerTypeConstraint$1 as OneOfIntegerTypeConstraint, type OneOfLongTypeConstraint$1 as OneOfLongTypeConstraint, type OneOfShortTypeConstraint$1 as OneOfShortTypeConstraint, type OneOfStringTypeConstraint$1 as OneOfStringTypeConstraint, type OneToManyLinkCardinalityHint, type OneToManyLinkDefinition, type OntologyActionTypeLoadRequest, type OntologyApiName, type OntologyBlockDataV2, type OntologyBranch, type OntologyBranchRid, type OntologyBulkLoadEntitiesByDatasourcesRequest, type OntologyBulkLoadEntitiesByDatasourcesResponse, type OntologyBulkLoadEntitiesRequest, type OntologyBulkLoadEntitiesResponse, type OntologyDatasetType, type OntologyEntitiesUsedInTypeGroup, type OntologyIndexingEvent, type OntologyIndexingEvent_branchObjectTypeReset, type OntologyInformation, type OntologyIr, type OntologyIrActionLogMetadata, type OntologyIrActionLogRule, type OntologyIrActionLogStructFieldValue, type OntologyIrActionLogStructFieldValue_objectParameterStructFieldValue, type OntologyIrActionLogStructFieldValue_objectParameterStructListFieldValue, type OntologyIrActionLogStructFieldValue_structListParameterFieldValue, type OntologyIrActionLogStructFieldValue_structParameterFieldValue, type OntologyIrActionLogValue, type OntologyIrActionLogValue_actionRid, type OntologyIrActionLogValue_actionTimestamp, type OntologyIrActionLogValue_actionTypeRid, type OntologyIrActionLogValue_actionTypeVersion, type OntologyIrActionLogValue_actionUser, type OntologyIrActionLogValue_allEditedObjects, type OntologyIrActionLogValue_asynchronousWebhookInstanceIds, type OntologyIrActionLogValue_editedObjects, type OntologyIrActionLogValue_interfaceParameterPropertyValue, type OntologyIrActionLogValue_interfaceParameterPropertyValueV2, type OntologyIrActionLogValue_isReverted, type OntologyIrActionLogValue_notificationIds, type OntologyIrActionLogValue_notifiedUsers, type OntologyIrActionLogValue_objectParameterPropertyValue, type OntologyIrActionLogValue_parameterValue, type OntologyIrActionLogValue_revertTimestamp, type OntologyIrActionLogValue_revertUser, type OntologyIrActionLogValue_scenarioRid, type OntologyIrActionLogValue_summary, type OntologyIrActionLogValue_synchronousWebhookInstanceId, type OntologyIrActionLogic, type OntologyIrActionNotification, type OntologyIrActionNotificationBody, type OntologyIrActionNotificationBodyFunctionExecution, type OntologyIrActionNotificationBody_functionGenerated, type OntologyIrActionNotificationBody_templateNotification, type OntologyIrActionNotificationRecipients, type OntologyIrActionNotificationRecipients_functionGenerated, type OntologyIrActionNotificationRecipients_parameter, type OntologyIrActionTypeBlockDataV2, type OntologyIrActionTypeEntities, type OntologyIrActionTypeLevelValidation, type OntologyIrActionTypeLogic, type OntologyIrActionTypeRichTextComponent, type OntologyIrActionTypeRichTextComponent_message, type OntologyIrActionTypeRichTextComponent_parameter, type OntologyIrActionTypeRichTextComponent_parameterProperty, type OntologyIrActionTypeRichTextParameterPropertyReference, type OntologyIrActionTypeStatus, type OntologyIrActionTypeStatus_active, type OntologyIrActionTypeStatus_deprecated, type OntologyIrActionTypeStatus_example, type OntologyIrActionTypeStatus_experimental, type OntologyIrActionValidation, type OntologyIrActionWebhooks, type OntologyIrActionsObjectSet, type OntologyIrAddInterfaceLinkRule, type OntologyIrAddInterfaceLinkRuleV2, type OntologyIrAddInterfaceRule, type OntologyIrAddObjectRule, type OntologyIrAddOrModifyObjectRule, type OntologyIrAddOrModifyObjectRuleV2, type OntologyIrAdditionOperation, type OntologyIrAllEditedObjectsFieldMapping, type OntologyIrAllowedParameterValues, type OntologyIrAllowedParameterValues_attachment, type OntologyIrAllowedParameterValues_boolean, type OntologyIrAllowedParameterValues_cbacMarking, type OntologyIrAllowedParameterValues_datetime, type OntologyIrAllowedParameterValues_geohash, type OntologyIrAllowedParameterValues_geoshape, type OntologyIrAllowedParameterValues_geotimeSeriesReference, type OntologyIrAllowedParameterValues_interfaceObjectQuery, type OntologyIrAllowedParameterValues_interfacePropertyValue, type OntologyIrAllowedParameterValues_mandatoryMarking, type OntologyIrAllowedParameterValues_mediaReference, type OntologyIrAllowedParameterValues_multipassGroup, type OntologyIrAllowedParameterValues_objectList, type OntologyIrAllowedParameterValues_objectPropertyValue, type OntologyIrAllowedParameterValues_objectQuery, type OntologyIrAllowedParameterValues_objectSetRid, type OntologyIrAllowedParameterValues_objectTypeReference, type OntologyIrAllowedParameterValues_oneOf, type OntologyIrAllowedParameterValues_range, type OntologyIrAllowedParameterValues_redacted, type OntologyIrAllowedParameterValues_scenarioReference, type OntologyIrAllowedParameterValues_text, type OntologyIrAllowedParameterValues_timeSeriesReference, type OntologyIrAllowedParameterValues_user, type OntologyIrAllowedParameterValues_valueType, type OntologyIrAllowedStructFieldValues, type OntologyIrAllowedStructFieldValuesOverride, type OntologyIrAllowedStructFieldValues_boolean, type OntologyIrAllowedStructFieldValues_datetime, type OntologyIrAllowedStructFieldValues_geohash, type OntologyIrAllowedStructFieldValues_geoshape, type OntologyIrAllowedStructFieldValues_objectQuery, type OntologyIrAllowedStructFieldValues_oneOf, type OntologyIrAllowedStructFieldValues_range, type OntologyIrAllowedStructFieldValues_text, type OntologyIrAllowedValuesOverride, type OntologyIrAndCondition, type OntologyIrArrayPropertyType, type OntologyIrArrayPropertyTypeReducer, type OntologyIrAsynchronousPostWritebackWebhook, type OntologyIrAsynchronousPostWritebackWebhook_staticDirectInput, type OntologyIrAsynchronousPostWritebackWebhook_staticFunctionInput, type OntologyIrBaseFormatter, type OntologyIrBaseFormatter_boolean, type OntologyIrBaseFormatter_date, type OntologyIrBaseFormatter_knownFormatter, type OntologyIrBaseFormatter_number, type OntologyIrBaseFormatter_string, type OntologyIrBaseFormatter_timeDependent, type OntologyIrBaseFormatter_timestamp, type OntologyIrBaseParameterType, type OntologyIrBaseParameterType_decimal, type OntologyIrBaseParameterType_decimalList, type OntologyIrBaseParameterType_interfaceReference, type OntologyIrBaseParameterType_interfaceReferenceList, type OntologyIrBaseParameterType_objectReference, type OntologyIrBaseParameterType_objectReferenceList, type OntologyIrBaseParameterType_objectSetRid, type OntologyIrBaseParameterType_objectTypeReference, type OntologyIrBaseParameterType_struct, type OntologyIrBaseParameterType_structList, type OntologyIrBaseParameterType_timestamp, type OntologyIrBaseParameterType_timestampList, type OntologyIrBasicEmailBody, type OntologyIrBatchedFunctionRule, type OntologyIrBlockPermissionInformation, type OntologyIrCarbonWorkspaceComponentUrlTarget, type OntologyIrCarbonWorkspaceComponentUrlTarget_rid, type OntologyIrCarbonWorkspaceUrlTarget, type OntologyIrCipherTextPropertyType, type OntologyIrClassificationConstraint, type OntologyIrComparisonCondition, type OntologyIrCondition, type OntologyIrConditionValue, type OntologyIrConditionValue_interfaceParameterPropertyValue, type OntologyIrConditionValue_objectParameterPropertyValue, type OntologyIrConditionValue_parameterId, type OntologyIrConditionValue_parameterLength, type OntologyIrConditionValue_staticValue, type OntologyIrConditionValue_userProperty, type OntologyIrCondition_and, type OntologyIrCondition_comparison, type OntologyIrCondition_markings, type OntologyIrCondition_not, type OntologyIrCondition_or, type OntologyIrCondition_redacted, type OntologyIrCondition_regex, type OntologyIrCondition_true, type OntologyIrConditionalOverride, type OntologyIrConditionalValidationBlock, type OntologyIrDataSecurity, type OntologyIrDateBetweenOperation, type OntologyIrDateRangeValue, type OntologyIrDateRangeValue_fixed, type OntologyIrDateRangeValue_now, type OntologyIrDateRangeValue_relative, type OntologyIrDatetimeTimezone, type OntologyIrDatetimeTimezoneDefinition, type OntologyIrDatetimeTimezoneDefinition_zoneId, type OntologyIrDatetimeTimezone_static, type OntologyIrDatetimeTimezone_user, type OntologyIrDeleteInterfaceLinkRule, type OntologyIrDeprecatedActionTypeStatus, type OntologyIrDeprecatedLinkTypeStatus, type OntologyIrDeprecatedObjectTypeStatus, type OntologyIrDeprecatedPropertyTypeStatus, type OntologyIrDerivedPropertiesDefinition, type OntologyIrDerivedPropertyAggregation, type OntologyIrDivisionOperation, type OntologyIrDynamicObjectSet, type OntologyIrDynamicObjectSetInput, type OntologyIrDynamicObjectSetInputBase, type OntologyIrDynamicObjectSetInputUnioned, type OntologyIrDynamicObjectSetInput_base, type OntologyIrDynamicObjectSetInput_parameter, type OntologyIrDynamicObjectSetInput_unioned, type OntologyIrEmailBody, type OntologyIrEmailBody_basic, type OntologyIrEventMetadata, type OntologyIrExperimentalTimeDependentPropertyTypeV1, type OntologyIrFormContent, type OntologyIrFormContent_parameterId, type OntologyIrFormContent_sectionId, type OntologyIrFunctionExecutionWithRecipientInput, type OntologyIrFunctionExecutionWithRecipientInput_logicRuleValue, type OntologyIrFunctionExecutionWithRecipientInput_recipient, type OntologyIrFunctionGeneratedActionNotificationRecipients, type OntologyIrFunctionGeneratedNotificationBody, type OntologyIrFunctionRule, type OntologyIrImplementingLinkType, type OntologyIrInlineActionType, type OntologyIrInterfaceArrayPropertyType, type OntologyIrInterfaceCipherTextPropertyType, type OntologyIrInterfaceObjectParameterStructFieldValue, type OntologyIrInterfaceObjectParameterStructListFieldValue, type OntologyIrInterfaceParameterPropertyValue, type OntologyIrInterfaceParameterPropertyValueV2, type OntologyIrInterfacePropertyImplementation, type OntologyIrInterfacePropertyLogicRuleValue, type OntologyIrInterfacePropertyLogicRuleValue_logicRuleValue, type OntologyIrInterfacePropertyLogicRuleValue_structLogicRuleValue, type OntologyIrInterfacePropertyTypeImplementation, type OntologyIrInterfacePropertyTypeImplementation_propertyTypeRid, type OntologyIrInterfacePropertyTypeImplementation_reducedProperty, type OntologyIrInterfacePropertyTypeImplementation_structField, type OntologyIrInterfacePropertyTypeImplementation_structPropertyTypeMapping, type OntologyIrInterfacePropertyTypeType, type OntologyIrInterfacePropertyTypeType_array, type OntologyIrInterfacePropertyTypeType_attachment, type OntologyIrInterfacePropertyTypeType_boolean, type OntologyIrInterfacePropertyTypeType_byte, type OntologyIrInterfacePropertyTypeType_cipherText, type OntologyIrInterfacePropertyTypeType_date, type OntologyIrInterfacePropertyTypeType_decimal, type OntologyIrInterfacePropertyTypeType_double, type OntologyIrInterfacePropertyTypeType_experimentalTimeDependentV1, type OntologyIrInterfacePropertyTypeType_float, type OntologyIrInterfacePropertyTypeType_geohash, type OntologyIrInterfacePropertyTypeType_geoshape, type OntologyIrInterfacePropertyTypeType_geotimeSeriesReference, type OntologyIrInterfacePropertyTypeType_integer, type OntologyIrInterfacePropertyTypeType_long, type OntologyIrInterfacePropertyTypeType_marking, type OntologyIrInterfacePropertyTypeType_mediaReference, type OntologyIrInterfacePropertyTypeType_short, type OntologyIrInterfacePropertyTypeType_string, type OntologyIrInterfacePropertyTypeType_struct, type OntologyIrInterfacePropertyTypeType_timestamp, type OntologyIrInterfacePropertyTypeType_vector, type OntologyIrInterfaceSharedPropertyType, type OntologyIrInterfaceStructFieldType, type OntologyIrInterfaceStructPropertyType, type OntologyIrInterfaceTypeBlockDataV2, type OntologyIrIntermediaryLinkDefinition, type OntologyIrKnownMarketplaceIdentifiers, type OntologyIrLabelledValue, type OntologyIrLinkDefinition, type OntologyIrLinkDefinition_intermediary, type OntologyIrLinkDefinition_manyToMany, type OntologyIrLinkDefinition_oneToMany, type OntologyIrLinkType, type OntologyIrLinkTypeBlockDataV2, type OntologyIrLinkTypeStatus, type OntologyIrLinkTypeStatus_active, type OntologyIrLinkTypeStatus_deprecated, type OntologyIrLinkTypeStatus_example, type OntologyIrLinkTypeStatus_experimental, type OntologyIrLinkedEntityTypeId, type OntologyIrLinkedEntityTypeId_interfaceType, type OntologyIrLinkedEntityTypeId_objectType, type OntologyIrLogicRule, type OntologyIrLogicRuleValue, type OntologyIrLogicRuleValue_currentTime, type OntologyIrLogicRuleValue_currentUser, type OntologyIrLogicRuleValue_interfaceParameterPropertyValue, type OntologyIrLogicRuleValue_objectParameterPropertyValue, type OntologyIrLogicRuleValue_parameterId, type OntologyIrLogicRuleValue_staticValue, type OntologyIrLogicRuleValue_synchronousWebhookOutput, type OntologyIrLogicRuleValue_uniqueIdentifier, type OntologyIrLogicRule_addInterfaceLinkRuleV2, type OntologyIrLogicRule_addInterfaceRule, type OntologyIrLogicRule_addLinkRule, type OntologyIrLogicRule_addObjectRule, type OntologyIrLogicRule_addOrModifyObjectRuleV2, type OntologyIrLogicRule_deleteLinkRule, type OntologyIrLogicRule_deleteObjectRule, type OntologyIrLogicRule_modifyInterfaceRule, type OntologyIrLogicRule_modifyObjectRule, type OntologyIrLogicRule_scenarioRule, type OntologyIrMandatoryMarkingConstraint, type OntologyIrManyToManyLinkDefinition, type OntologyIrManyToManyLinkTypeDatasetDatasource, type OntologyIrManyToManyLinkTypeDatasource, type OntologyIrManyToManyLinkTypeDatasourceDefinition, type OntologyIrManyToManyLinkTypeDatasourceDefinition_dataset, type OntologyIrManyToManyLinkTypeStreamDatasource, type OntologyIrMarketplaceActionType, type OntologyIrMarketplaceActionTypeDisplayMetadata, type OntologyIrMarketplaceActionTypeMetadata, type OntologyIrMarketplaceDeprecatedInterfaceTypeStatus, type OntologyIrMarketplaceInterfaceDefinedPropertyType, type OntologyIrMarketplaceInterfaceDefinedPropertyTypeConstraints, type OntologyIrMarketplaceInterfaceLinkType, type OntologyIrMarketplaceInterfacePropertyType, type OntologyIrMarketplaceInterfacePropertyType_interfaceDefinedPropertyType, type OntologyIrMarketplaceInterfacePropertyType_sharedPropertyBasedPropertyType, type OntologyIrMarketplaceInterfaceType, type OntologyIrMarketplaceInterfaceTypeStatus, type OntologyIrMarketplaceInterfaceTypeStatus_active, type OntologyIrMarketplaceInterfaceTypeStatus_deprecated, type OntologyIrMarketplaceInterfaceTypeStatus_example, type OntologyIrMarketplaceInterfaceTypeStatus_experimental, type OntologyIrMarketplaceObjectTypeEntityMetadata, type OntologyIrMarketplaceSharedPropertyBasedPropertyType, type OntologyIrMarkingsCondition, type OntologyIrMediaSourceRid, type OntologyIrMediaSourceRid_datasetRid, type OntologyIrMediaSourceRid_mediaSetRid, type OntologyIrModifyInterfaceRule, type OntologyIrModifyObjectRule, type OntologyIrMultipassUserFilter, type OntologyIrMultipassUserFilter_groupFilter, type OntologyIrMultipassUserInGroupFilter, type OntologyIrMultiplicationOperation, type OntologyIrNestedInterfacePropertyTypeImplementation, type OntologyIrNestedInterfacePropertyTypeImplementation_propertyTypeRid, type OntologyIrNestedInterfacePropertyTypeImplementation_structField, type OntologyIrNestedInterfacePropertyTypeImplementation_structPropertyTypeMapping, type OntologyIrNewObjectUrlTarget, type OntologyIrNonNumericSeriesValueMetadata, type OntologyIrNonNumericSeriesValueUnit, type OntologyIrNotCondition, type OntologyIrNotificationResultTypeLink, type OntologyIrNotificationTemplateInputValue, type OntologyIrNotificationTemplateInputValue_actionTriggererValue, type OntologyIrNotificationTemplateInputValue_logicRuleValue, type OntologyIrNotificationTemplateInputValue_recipientValue, type OntologyIrNumberFormatCurrency, type OntologyIrNumberFormatCustomUnit, type OntologyIrNumberFormatPrePostFix, type OntologyIrNumberFormatUnit, type OntologyIrNumberFormatter, type OntologyIrNumberFormatter_base, type OntologyIrNumberFormatter_basisPoint, type OntologyIrNumberFormatter_billions, type OntologyIrNumberFormatter_currency, type OntologyIrNumberFormatter_customUnit, type OntologyIrNumberFormatter_duration, type OntologyIrNumberFormatter_millions, type OntologyIrNumberFormatter_ordinal, type OntologyIrNumberFormatter_perMille, type OntologyIrNumberFormatter_percentage, type OntologyIrNumberFormatter_prePost, type OntologyIrNumberFormatter_thousands, type OntologyIrNumberFormatter_unit, type OntologyIrNumericOrNonNumericSeriesValueMetadataV2, type OntologyIrNumericSeriesValueMetadata, type OntologyIrNumericSeriesValueUnit, type OntologyIrNumericSeriesValueUnit_customUnit, type OntologyIrNumericSeriesValueUnit_standardUnit, type OntologyIrObjectParameterPropertyValue, type OntologyIrObjectParameterStructFieldValue, type OntologyIrObjectParameterStructListFieldValue, type OntologyIrObjectPropertyReference, type OntologyIrObjectQueryPrefill, type OntologyIrObjectQueryPropertyValue, type OntologyIrObjectSetRidPrefill, type OntologyIrObjectSetSearchAround, type OntologyIrObjectSetTransform, type OntologyIrObjectSetTransform_propertyFilter, type OntologyIrObjectSetTransform_searchAround, type OntologyIrObjectType, type OntologyIrObjectTypeBlockDataV2, type OntologyIrObjectTypeDatasetDatasource, type OntologyIrObjectTypeDatasetDatasourceV2, type OntologyIrObjectTypeDatasetDatasourceV3, type OntologyIrObjectTypeDatasource, type OntologyIrObjectTypeDatasourceDefinition, type OntologyIrObjectTypeDatasourceDefinition_datasetV2, type OntologyIrObjectTypeDatasourceDefinition_datasetV3, type OntologyIrObjectTypeDatasourceDefinition_derived, type OntologyIrObjectTypeDatasourceDefinition_direct, type OntologyIrObjectTypeDatasourceDefinition_editsOnly, type OntologyIrObjectTypeDatasourceDefinition_geotimeSeries, type OntologyIrObjectTypeDatasourceDefinition_mediaSetView, type OntologyIrObjectTypeDatasourceDefinition_restrictedStream, type OntologyIrObjectTypeDatasourceDefinition_restrictedViewV2, type OntologyIrObjectTypeDatasourceDefinition_streamV2, type OntologyIrObjectTypeDatasourceDefinition_streamV3, type OntologyIrObjectTypeDatasourceDefinition_table, type OntologyIrObjectTypeDatasourceDefinition_timeSeries, type OntologyIrObjectTypeDerivedPropertiesDatasource, type OntologyIrObjectTypeDirectDatasource, type OntologyIrObjectTypeEditsOnlyDatasource, type OntologyIrObjectTypeGeotimeSeriesDatasource, type OntologyIrObjectTypeInterfaceImplementation, type OntologyIrObjectTypeMediaDatasource, type OntologyIrObjectTypeMediaSetViewDatasource, type OntologyIrObjectTypeRestrictedStreamDatasource, type OntologyIrObjectTypeRestrictedViewDatasource, type OntologyIrObjectTypeRestrictedViewDatasourceV2, type OntologyIrObjectTypeStatus, type OntologyIrObjectTypeStatus_active, type OntologyIrObjectTypeStatus_deprecated, type OntologyIrObjectTypeStatus_endorsed, type OntologyIrObjectTypeStatus_example, type OntologyIrObjectTypeStatus_experimental, type OntologyIrObjectTypeStreamDatasource, type OntologyIrObjectTypeStreamDatasourceV2, type OntologyIrObjectTypeStreamDatasourceV3, type OntologyIrObjectTypeTableDatasource, type OntologyIrObjectTypeTimeSeriesDatasource, type OntologyIrObjectTypeTraits, type OntologyIrObjectsWritebackDataset, type OntologyIrOneToManyLinkDefinition, type OntologyIrOntologyBlockDataV2, type OntologyIrOrCondition, type OntologyIrParameter, type OntologyIrParameterActionNotificationRecipients, type OntologyIrParameterCbacConstraint, type OntologyIrParameterCbacMarking, type OntologyIrParameterCbacMarkingOrEmpty, type OntologyIrParameterCbacMarkingOrEmpty_cbacMarking, type OntologyIrParameterCbacMarkingOrEmpty_empty, type OntologyIrParameterDateRangeValue, type OntologyIrParameterDateTimeRange, type OntologyIrParameterDateTimeRangeOrEmpty, type OntologyIrParameterDateTimeRangeOrEmpty_datetime, type OntologyIrParameterDateTimeRangeOrEmpty_empty, type OntologyIrParameterDisplayMetadata, type OntologyIrParameterMultipassUser, type OntologyIrParameterMultipassUserOrEmpty, type OntologyIrParameterMultipassUserOrEmpty_empty, type OntologyIrParameterMultipassUserOrEmpty_user, type OntologyIrParameterObjectPropertyValue, type OntologyIrParameterObjectPropertyValueOrEmpty, type OntologyIrParameterObjectPropertyValueOrEmpty_empty, type OntologyIrParameterObjectPropertyValueOrEmpty_objectPropertyValue, type OntologyIrParameterObjectQuery, type OntologyIrParameterObjectQueryOrEmpty, type OntologyIrParameterObjectQueryOrEmpty_empty, type OntologyIrParameterObjectQueryOrEmpty_objectQuery, type OntologyIrParameterObjectTypeReference, type OntologyIrParameterObjectTypeReferenceOrEmpty, type OntologyIrParameterObjectTypeReferenceOrEmpty_empty, type OntologyIrParameterObjectTypeReferenceOrEmpty_objectTypeReference, type OntologyIrParameterPrefill, type OntologyIrParameterPrefillOverride, type OntologyIrParameterPrefill_interfaceParameterPropertyValue, type OntologyIrParameterPrefill_objectParameterPropertyValue, type OntologyIrParameterPrefill_objectQueryPrefill, type OntologyIrParameterPrefill_objectQueryPropertyValue, type OntologyIrParameterPrefill_objectSetRidPrefill, type OntologyIrParameterPrefill_parameterTransformPrefill, type OntologyIrParameterPrefill_redacted, type OntologyIrParameterPrefill_staticObject, type OntologyIrParameterPrefill_staticObjectV2, type OntologyIrParameterPrefill_staticValue, type OntologyIrParameterRange, type OntologyIrParameterRangeOrEmpty, type OntologyIrParameterRangeOrEmpty_empty, type OntologyIrParameterRangeOrEmpty_range, type OntologyIrParameterRangeValue, type OntologyIrParameterTransformPrefill, type OntologyIrParameterTransformPrefillValue, type OntologyIrParameterTransformPrefillValue_objectParameterPropertyValue, type OntologyIrParameterTransformPrefillValue_parameterValue, type OntologyIrParameterTransformPrefillValue_staticValue, type OntologyIrParameterTransformPrefill_addition, type OntologyIrParameterTransformPrefill_dateBetween, type OntologyIrParameterTransformPrefill_dateCurrent, type OntologyIrParameterTransformPrefill_division, type OntologyIrParameterTransformPrefill_multiplication, type OntologyIrParameterTransformPrefill_stringConcat, type OntologyIrParameterTransformPrefill_subtraction, type OntologyIrParameterTransformPrefill_timeBetween, type OntologyIrParameterTransformPrefill_timeCurrent, type OntologyIrParameterValidation, type OntologyIrParameterValidationBlock, type OntologyIrParameterValidationBlockOverride, type OntologyIrParameterValidationBlockOverride_allowedValues, type OntologyIrParameterValidationBlockOverride_parameterRequired, type OntologyIrParameterValidationBlockOverride_prefill, type OntologyIrParameterValidationBlockOverride_visibility, type OntologyIrParameterValidationDisplayMetadata, type OntologyIrParameterValueOneOf, type OntologyIrParameterValueOneOfOrEmpty, type OntologyIrParameterValueOneOfOrEmpty_empty, type OntologyIrParameterValueOneOfOrEmpty_oneOf, type OntologyIrPrePostFix, type OntologyIrPropertySecurityGroup, type OntologyIrPropertySecurityGroups, type OntologyIrPropertyToColumnMapping, type OntologyIrPropertyToPropertyMapping, type OntologyIrPropertyType, type OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation, type OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation_internalInterpolation, type OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation_propertyType, type OntologyIrPropertyTypeReferenceOrNumericInternalInterpolation, type OntologyIrPropertyTypeReferenceOrNumericInternalInterpolation_internalInterpolation, type OntologyIrPropertyTypeReferenceOrNumericInternalInterpolation_propertyType, type OntologyIrPropertyTypeReferenceOrStringConstant, type OntologyIrPropertyTypeReferenceOrStringConstant_constant, type OntologyIrPropertyTypeReferenceOrStringConstant_propertyType, type OntologyIrPropertyTypeStatus, type OntologyIrPropertyTypeStatus_active, type OntologyIrPropertyTypeStatus_deprecated, type OntologyIrPropertyTypeStatus_example, type OntologyIrPropertyTypeStatus_experimental, type OntologyIrQualifiedSeriesIdPropertyValue, type OntologyIrReducedPropertyTypeImplementation, type OntologyIrRegexCondition, type OntologyIrRidUrlTarget, type OntologyIrRuleSetBinding, type OntologyIrScenarioRule, type OntologyIrScenarioScope, type OntologyIrSchemaMigrationBlockData, type OntologyIrSchemaTransitionsWithSchemaVersion, type OntologyIrSection, type OntologyIrSectionConditionalOverride, type OntologyIrSectionDisplayBlock, type OntologyIrSecurityGroupAndCondition, type OntologyIrSecurityGroupComparisonCondition, type OntologyIrSecurityGroupComparisonValue, type OntologyIrSecurityGroupComparisonValue_constant, type OntologyIrSecurityGroupComparisonValue_property, type OntologyIrSecurityGroupComparisonValue_userProperty, type OntologyIrSecurityGroupGranularCondition, type OntologyIrSecurityGroupGranularCondition_and, type OntologyIrSecurityGroupGranularCondition_comparison, type OntologyIrSecurityGroupGranularCondition_markings, type OntologyIrSecurityGroupGranularCondition_not, type OntologyIrSecurityGroupGranularCondition_or, type OntologyIrSecurityGroupGranularCondition_true, type OntologyIrSecurityGroupGranularPolicy, type OntologyIrSecurityGroupGranularSecurityDefinition, type OntologyIrSecurityGroupMandatoryOnlySecurityDefinition, type OntologyIrSecurityGroupMandatoryPolicy, type OntologyIrSecurityGroupMarkingsCondition, type OntologyIrSecurityGroupNotCondition, type OntologyIrSecurityGroupOrCondition, type OntologyIrSecurityGroupSecurityDefinition, type OntologyIrSecurityGroupSecurityDefinition_granular, type OntologyIrSecurityGroupSecurityDefinition_mandatoryOnly, type OntologyIrSensorTrait, type OntologyIrSeriesValueMetadata, type OntologyIrSeriesValueMetadata_enum, type OntologyIrSeriesValueMetadata_numeric, type OntologyIrSeriesValueMetadata_numericOrNonNumeric, type OntologyIrSeriesValueMetadata_numericOrNonNumericV2, type OntologyIrSharedPropertyType, type OntologyIrSharedPropertyTypeBlockDataV2, type OntologyIrShortBody, type OntologyIrShortBody_basic, type OntologyIrStaticObjectPrefillV2, type OntologyIrStaticValue, type OntologyIrStaticWebhookWithDirectInput, type OntologyIrStaticWebhookWithFunctionResultInput, type OntologyIrStringConcatOperation, type OntologyIrStructFieldConditionalOverride, type OntologyIrStructFieldConditionalValidationBlock, type OntologyIrStructFieldImplementation, type OntologyIrStructFieldPrefill, type OntologyIrStructFieldPrefillOverride, type OntologyIrStructFieldPrefill_interfaceObjectParameterStructFieldValue, type OntologyIrStructFieldPrefill_interfaceObjectParameterStructListFieldValue, type OntologyIrStructFieldPrefill_objectParameterStructFieldValue, type OntologyIrStructFieldPrefill_objectParameterStructListFieldValue, type OntologyIrStructFieldType, type OntologyIrStructFieldValidation, type OntologyIrStructFieldValidationBlock, type OntologyIrStructFieldValidationBlockOverride, type OntologyIrStructFieldValidationBlockOverride_allowedValues, type OntologyIrStructFieldValidationBlockOverride_parameterRequired, type OntologyIrStructFieldValidationBlockOverride_prefill, type OntologyIrStructFieldValidationBlockOverride_visibility, type OntologyIrStructFieldValidationDisplayMetadata, type OntologyIrStructMainValue, type OntologyIrStructPropertyType, type OntologyIrStructPropertyTypeImplementation, type OntologyIrStructuredShortBody, type OntologyIrSubtractionOperation, type OntologyIrSynchronousPreWritebackWebhook, type OntologyIrSynchronousPreWritebackWebhook_staticDirectInput, type OntologyIrSynchronousPreWritebackWebhook_staticFunctionInput, type OntologyIrTemplateNotificationBody, type OntologyIrTimeBetweenOperation, type OntologyIrTimeDependentFormatter, type OntologyIrTimeDependentNonNumericSeriesFormat, type OntologyIrTimeDependentNumericOrNonNumericSeriesFormat, type OntologyIrTimeDependentNumericOrNonNumericSeriesFormatV2, type OntologyIrTimeDependentNumericSeriesFormat, type OntologyIrTimeDependentSeriesFormat, type OntologyIrTimeDependentSeriesFormat_nonNumeric, type OntologyIrTimeDependentSeriesFormat_numeric, type OntologyIrTimeDependentSeriesFormat_numericOrNonNumeric, type OntologyIrTimeDependentSeriesFormat_numericOrNonNumericV2, type OntologyIrTimeSeriesMetadata, type OntologyIrTimestampFormatter, type OntologyIrType, type OntologyIrType_array, type OntologyIrType_attachment, type OntologyIrType_boolean, type OntologyIrType_byte, type OntologyIrType_cipherText, type OntologyIrType_date, type OntologyIrType_decimal, type OntologyIrType_double, type OntologyIrType_experimentalTimeDependentV1, type OntologyIrType_float, type OntologyIrType_geohash, type OntologyIrType_geoshape, type OntologyIrType_geotimeSeriesReference, type OntologyIrType_integer, type OntologyIrType_long, type OntologyIrType_marking, type OntologyIrType_mediaReference, type OntologyIrType_short, type OntologyIrType_string, type OntologyIrType_struct, type OntologyIrType_timestamp, type OntologyIrType_vector, type OntologyIrUrlTarget, type OntologyIrUrlTarget_carbonWorkspace, type OntologyIrUrlTarget_logicRuleValue, type OntologyIrUrlTarget_newObject, type OntologyIrUrlTarget_relativeUrlString, type OntologyIrUrlTarget_rid, type OntologyIrValidationRule, type OntologyIrValueReferenceSource, type OntologyIrValueReferenceSource_propertyTypeRid, type OntologyIrValueTypeBlockData, type OntologyIrValueTypeBlockDataEntry, type OntologyIrValueTypeReferenceWithMetadata, type OntologyIrWorkflowObjectTypeTraitImpl, type OntologyLoadAllEntitiesRequest, type OntologyLoadAllRequest, type OntologyLoadDatasourcesRequest, type OntologyLoadDatasourcesResponse, type OntologyLoadEntitiesRequest, type OntologyLoadEntitiesResponse, type OntologyLoadRequest, type OntologyLoadResponse, type OntologyMetadataValidationError, type OntologyMetadataValidationError_actionType, type OntologyMetadataValidationError_interfaceType, type OntologyMetadataValidationError_linkType, type OntologyMetadataValidationError_objectType, type OntologyMetadataValidationError_ruleSet, type OntologyMetadataValidationError_sharedPropertyType, type OntologyMetadataValidationError_typeGroup, type OntologyMetadataValidationError_workflow, type OntologyModificationEvent, type OntologyModificationEvent_actionTypeCreated, type OntologyModificationEvent_actionTypeDeleted, type OntologyModificationEvent_actionTypeUpdated, type OntologyModificationEvent_branchClosed, type OntologyModificationEvent_branchDeleted, type OntologyModificationEvent_branchMerged, type OntologyModificationEvent_interfaceTypeCreated, type OntologyModificationEvent_interfaceTypeDeleted, type OntologyModificationEvent_interfaceTypeUpdated, type OntologyModificationEvent_linkTypeCreated, type OntologyModificationEvent_linkTypeDeleted, type OntologyModificationEvent_linkTypeUpdated, type OntologyModificationEvent_objectTypeCreated, type OntologyModificationEvent_objectTypeDeleted, type OntologyModificationEvent_objectTypeUpdated, type OntologyModificationEvent_sharedPropertyTypeCreated, type OntologyModificationEvent_sharedPropertyTypeDeleted, type OntologyModificationEvent_sharedPropertyTypeUpdated, type OntologyModifyRequest, type OntologyModifyResponse, type OntologyPackageRid, type OntologyProposalIdentifier, type OntologyProposalIdentifier_ontologyVersion, type OntologyProposalRid, type OntologyRid, type OntologyRidAndBranch, type OntologyRidsForEntitiesRequest, type OntologyRidsForEntitiesResponse, type OntologySourceType, type OntologySparkDelegateDataset, type OntologySparkInputManagerRid, type OntologySparkInputProperties, type OntologySparkQueryableSource, type OntologyVersion, type OrCondition, type OrConditionModification, type OrganizationMarkingId, type OrganizationRid, type OrganizationRidsAndEntityResourceIdentifiers, type OrganizationRidsForOntologyResponse, type OtherValueAllowed, type OutputMode, type PackagedEntityRid, type PackagedEntityRid_actionTypeRid, type PackagedEntityRid_interfaceTypeRid, type PackagedEntityRid_linkTypeRid, type PackagedEntityRid_objectTypeRid, type PackagedEntityRid_sharedPropertyTypeRid, type Parameter, type ParameterActionNotificationRecipients, type ParameterActionNotificationRecipientsModification, type ParameterAttachment, type ParameterAttachmentOrEmpty, type ParameterAttachmentOrEmpty_attachment, type ParameterAttachmentOrEmpty_empty, type ParameterBoolean, type ParameterBooleanOrEmpty, type ParameterBooleanOrEmpty_boolean, type ParameterBooleanOrEmpty_empty, type ParameterCbacConstraint, type ParameterCbacConstraintModification, type ParameterCbacMarking, type ParameterCbacMarkingModification, type ParameterCbacMarkingOrEmpty, type ParameterCbacMarkingOrEmptyModification, type ParameterCbacMarkingOrEmptyModification_cbacMarking, type ParameterCbacMarkingOrEmptyModification_empty, type ParameterCbacMarkingOrEmpty_cbacMarking, type ParameterCbacMarkingOrEmpty_empty, type ParameterDateRangeValue, type ParameterDateRangeValueModification, type ParameterDateTimeRange, type ParameterDateTimeRangeModification, type ParameterDateTimeRangeOrEmpty, type ParameterDateTimeRangeOrEmptyModification, type ParameterDateTimeRangeOrEmptyModification_datetime, type ParameterDateTimeRangeOrEmptyModification_empty, type ParameterDateTimeRangeOrEmpty_datetime, type ParameterDateTimeRangeOrEmpty_empty, type ParameterDisplayMetadata, type ParameterFreeText, type ParameterFreeTextOrEmpty, type ParameterFreeTextOrEmpty_empty, type ParameterFreeTextOrEmpty_text, type ParameterGeohash, type ParameterGeohashOrEmpty, type ParameterGeohashOrEmpty_empty, type ParameterGeohashOrEmpty_geohash, type ParameterGeoshape, type ParameterGeoshapeOrEmpty, type ParameterGeoshapeOrEmpty_empty, type ParameterGeoshapeOrEmpty_geoshape, type ParameterGeotimeSeriesReference, type ParameterGeotimeSeriesReferenceOrEmpty, type ParameterGeotimeSeriesReferenceOrEmpty_empty, type ParameterGeotimeSeriesReferenceOrEmpty_geotimeSeries, type ParameterId, type ParameterInterfaceObjectQuery, type ParameterInterfaceObjectQueryModification, type ParameterInterfaceObjectQueryOrEmpty, type ParameterInterfaceObjectQueryOrEmptyModification, type ParameterInterfaceObjectQueryOrEmptyModification_empty, type ParameterInterfaceObjectQueryOrEmptyModification_interfaceObjectQuery, type ParameterInterfaceObjectQueryOrEmpty_empty, type ParameterInterfaceObjectQueryOrEmpty_interfaceObjectQuery, type ParameterInterfacePropertyValueOrEmpty, type ParameterInterfacePropertyValueOrEmptyModification, type ParameterInterfacePropertyValueOrEmptyModification_empty, type ParameterInterfacePropertyValueOrEmptyModification_unrestricted, type ParameterInterfacePropertyValueOrEmpty_empty, type ParameterInterfacePropertyValueOrEmpty_unrestricted, type ParameterLength, type ParameterLength_parameterId, type ParameterMandatoryMarking, type ParameterMandatoryMarkingOrEmpty, type ParameterMandatoryMarkingOrEmpty_empty, type ParameterMandatoryMarkingOrEmpty_mandatoryMarking, type ParameterMediaReference, type ParameterMediaReferenceOrEmpty, type ParameterMediaReferenceOrEmpty_empty, type ParameterMediaReferenceOrEmpty_mediaReference, type ParameterMultipassGroup, type ParameterMultipassGroupOrEmpty, type ParameterMultipassGroupOrEmpty_empty, type ParameterMultipassGroupOrEmpty_group, type ParameterMultipassUser, type ParameterMultipassUserModification, type ParameterMultipassUserOrEmpty, type ParameterMultipassUserOrEmptyModification, type ParameterMultipassUserOrEmptyModification_empty, type ParameterMultipassUserOrEmptyModification_user, type ParameterMultipassUserOrEmpty_empty, type ParameterMultipassUserOrEmpty_user, type ParameterObjectList, type ParameterObjectListOrEmpty, type ParameterObjectListOrEmpty_empty, type ParameterObjectListOrEmpty_objectList, type ParameterObjectPropertyValue, type ParameterObjectPropertyValueModification, type ParameterObjectPropertyValueOrEmpty, type ParameterObjectPropertyValueOrEmptyModification, type ParameterObjectPropertyValueOrEmptyModification_empty, type ParameterObjectPropertyValueOrEmptyModification_objectPropertyValue, type ParameterObjectPropertyValueOrEmpty_empty, type ParameterObjectPropertyValueOrEmpty_objectPropertyValue, type ParameterObjectQuery, type ParameterObjectQueryModification, type ParameterObjectQueryOrEmpty, type ParameterObjectQueryOrEmptyModification, type ParameterObjectQueryOrEmptyModification_empty, type ParameterObjectQueryOrEmptyModification_objectQuery, type ParameterObjectQueryOrEmpty_empty, type ParameterObjectQueryOrEmpty_objectQuery, type ParameterObjectSetRid, type ParameterObjectSetRidOrEmpty, type ParameterObjectSetRidOrEmpty_empty, type ParameterObjectSetRidOrEmpty_objectSetRid, type ParameterObjectTypeReference, type ParameterObjectTypeReferenceModification, type ParameterObjectTypeReferenceOrEmpty, type ParameterObjectTypeReferenceOrEmptyModification, type ParameterObjectTypeReferenceOrEmptyModification_empty, type ParameterObjectTypeReferenceOrEmptyModification_objectTypeReference, type ParameterObjectTypeReferenceOrEmpty_empty, type ParameterObjectTypeReferenceOrEmpty_objectTypeReference, type ParameterPrefill, type ParameterPrefillModification, type ParameterPrefillModification_interfaceParameterPropertyValue, type ParameterPrefillModification_interfaceParameterPropertyValueV2, type ParameterPrefillModification_objectParameterPropertyValue, type ParameterPrefillModification_objectQueryPrefill, type ParameterPrefillModification_objectQueryPropertyValue, type ParameterPrefillModification_objectSetRidPrefill, type ParameterPrefillModification_parameterTransformPrefill, type ParameterPrefillModification_redacted, type ParameterPrefillModification_staticObject, type ParameterPrefillModification_staticObjectV2, type ParameterPrefillModification_staticValue, type ParameterPrefillOverride, type ParameterPrefillOverrideModification, type ParameterPrefill_interfaceParameterPropertyValue, type ParameterPrefill_interfaceParameterPropertyValueV2, type ParameterPrefill_objectParameterPropertyValue, type ParameterPrefill_objectQueryPrefill, type ParameterPrefill_objectQueryPropertyValue, type ParameterPrefill_objectSetRidPrefill, type ParameterPrefill_parameterTransformPrefill, type ParameterPrefill_redacted, type ParameterPrefill_staticObject, type ParameterPrefill_staticObjectV2, type ParameterPrefill_staticValue, type ParameterRange, type ParameterRangeModification, type ParameterRangeOrEmpty, type ParameterRangeOrEmptyModification, type ParameterRangeOrEmptyModification_empty, type ParameterRangeOrEmptyModification_range, type ParameterRangeOrEmpty_empty, type ParameterRangeOrEmpty_range, type ParameterRangeValue, type ParameterRangeValueModification, type ParameterRenderHint, type ParameterRequiredConfiguration, type ParameterRequiredOverride, type ParameterRid, type ParameterScenarioReference, type ParameterScenarioReferenceOrEmpty, type ParameterScenarioReferenceOrEmpty_empty, type ParameterScenarioReferenceOrEmpty_scenarioReference, type ParameterStructOrEmpty, type ParameterStructOrEmpty_delegateToAllowedStructFieldValues, type ParameterStructOrEmpty_empty, type ParameterTextRegex, type ParameterTimeSeriesReference, type ParameterTimeSeriesReferenceOrEmpty, type ParameterTimeSeriesReferenceOrEmpty_empty, type ParameterTimeSeriesReferenceOrEmpty_timeSeriesReference, type ParameterTransformPrefill, type ParameterTransformPrefillValue, type ParameterTransformPrefillValue_objectParameterPropertyValue, type ParameterTransformPrefillValue_parameterValue, type ParameterTransformPrefillValue_staticValue, type ParameterTransformPrefill_addition, type ParameterTransformPrefill_dateBetween, type ParameterTransformPrefill_dateCurrent, type ParameterTransformPrefill_division, type ParameterTransformPrefill_multiplication, type ParameterTransformPrefill_stringConcat, type ParameterTransformPrefill_subtraction, type ParameterTransformPrefill_timeBetween, type ParameterTransformPrefill_timeCurrent, type ParameterValidation, type ParameterValidationBlock, type ParameterValidationBlockModification, type ParameterValidationBlockOverride, type ParameterValidationBlockOverrideModification, type ParameterValidationBlockOverrideModification_allowedValues, type ParameterValidationBlockOverrideModification_parameterRequired, type ParameterValidationBlockOverrideModification_prefill, type ParameterValidationBlockOverrideModification_visibility, type ParameterValidationBlockOverrideRequest, type ParameterValidationBlockOverrideRequest_allowedValues, type ParameterValidationBlockOverrideRequest_parameterRequired, type ParameterValidationBlockOverrideRequest_prefill, type ParameterValidationBlockOverrideRequest_visibility, type ParameterValidationBlockOverride_allowedValues, type ParameterValidationBlockOverride_parameterRequired, type ParameterValidationBlockOverride_prefill, type ParameterValidationBlockOverride_visibility, type ParameterValidationBlockRequest, type ParameterValidationDisplayMetadata, type ParameterValidationDisplayMetadataModification, type ParameterValidationModification, type ParameterValidationNotFoundError, type ParameterValidationReferencesLaterParametersError, type ParameterValidationRequest, type ParameterValueOneOf, type ParameterValueOneOfOrEmpty, type ParameterValueOneOfOrEmpty_empty, type ParameterValueOneOfOrEmpty_oneOf, type ParameterValueType, type ParameterValueTypeOrEmpty, type ParameterValueTypeOrEmpty_missingParameterValueType, type ParameterValueTypeOrEmpty_valueType, type ParameterValueTypeReference, type ParameterValueTypeReferenceWithVersionId, type ParameterValueTypeWithVersionId, type ParameterValueTypeWithVersionIdOrEmpty, type ParameterValueTypeWithVersionIdOrEmpty_missingParameterValueType, type ParameterValueTypeWithVersionIdOrEmpty_valueType, type ParameterVisibility, type ParametersDoNotMatchParameterOrderingError, type PartialObjectType, type PartialObjectTypeCreateRequest, type PartialObjectTypeDeleteRequest, type PartialObjectTypeModifyRequest, type PartialObjectTypeModifyRequest_create, type PartialObjectTypeModifyRequest_delete, type PartialObjectTypeModifyRequest_update, type PartialObjectTypeUpdateRequest, type PartialObjectTypeWithoutRids, type PatchBackupInitializationConfigurationSourceDoesNotExistError, type PatchesConfiguration, type PolicyVersion, type PostOntologyBlockDataRequest, type PostOntologyBlockDataResponse, type PrePostFix, type PrimaryKeyConstraint, type PrimaryKeyPropertySecurityGroupType, type PrimitiveOrStructLogicRuleModification, type PrimitiveOrStructLogicRuleModification_logicRuleValueModification, type PrimitiveOrStructLogicRuleModification_structLogicRuleValueModification, type PrincipalId, type ProjectEntityRid, type ProjectEntityRid_actionTypeRid, type ProjectEntityRid_interfaceTypeRid, type ProjectEntityRid_linkTypeRid, type ProjectEntityRid_objectTypeRid, type ProjectEntityRid_sharedPropertyTypeRid, type PropertiesReferenceDuplicateColumnNameWrapper, type Property, type PropertyId, type PropertyPredicate, type PropertyPredicate_and, type PropertyPredicate_hasId, type PropertyPredicate_hasRid, type PropertyPredicate_not, type PropertyPredicate_or, type PropertyPropertySecurityGroupType, type PropertyRenderHint, type PropertyRid, type PropertySecurityGroup, type PropertySecurityGroupModification, type PropertySecurityGroupName, type PropertySecurityGroupPackagingV1, type PropertySecurityGroupPackagingV2, type PropertySecurityGroupPackagingVersion, type PropertySecurityGroupPackagingVersion_v1, type PropertySecurityGroupPackagingVersion_v2, type PropertySecurityGroupRid, type PropertySecurityGroupType, type PropertySecurityGroupType_primaryKey, type PropertySecurityGroupType_property, type PropertySecurityGroups, type PropertySecurityGroupsModification, type PropertyType, type PropertyTypeDataConstraints, type PropertyTypeDataConstraintsWrapper, type PropertyTypeDataConstraints_array, type PropertyTypeDataConstraints_boolean, type PropertyTypeDataConstraints_date, type PropertyTypeDataConstraints_decimal, type PropertyTypeDataConstraints_double, type PropertyTypeDataConstraints_float, type PropertyTypeDataConstraints_integer, type PropertyTypeDataConstraints_long, type PropertyTypeDataConstraints_short, type PropertyTypeDataConstraints_string, type PropertyTypeDataConstraints_struct, type PropertyTypeDataConstraints_timestamp, type PropertyTypeDataValue, type PropertyTypeDataValue_array, type PropertyTypeDataValue_boolean, type PropertyTypeDataValue_byte, type PropertyTypeDataValue_date, type PropertyTypeDataValue_decimal, type PropertyTypeDataValue_double, type PropertyTypeDataValue_float, type PropertyTypeDataValue_integer, type PropertyTypeDataValue_long, type PropertyTypeDataValue_short, type PropertyTypeDataValue_string, type PropertyTypeDataValue_timestamp, type PropertyTypeDisplayMetadata, type PropertyTypeId, type PropertyTypeIdentifier, type PropertyTypeIdentifier_id, type PropertyTypeIdentifier_rid, type PropertyTypeLocator, type PropertyTypeMappingInfo, type PropertyTypeMappingInfo_column, type PropertyTypeMappingInfo_editOnly, type PropertyTypeMappingInfo_struct, type PropertyTypeReference, type PropertyTypeReferenceOrNonNumericInternalInterpolation, type PropertyTypeReferenceOrNonNumericInternalInterpolation_internalInterpolation, type PropertyTypeReferenceOrNonNumericInternalInterpolation_propertyType, type PropertyTypeReferenceOrNumericInternalInterpolation, type PropertyTypeReferenceOrNumericInternalInterpolation_internalInterpolation, type PropertyTypeReferenceOrNumericInternalInterpolation_propertyType, type PropertyTypeReferenceOrStringConstant, type PropertyTypeReferenceOrStringConstant_constant, type PropertyTypeReferenceOrStringConstant_propertyType, type PropertyTypeReference_baseType, type PropertyTypeRid, type PropertyTypeStatus, type PropertyTypeStatus_active, type PropertyTypeStatus_deprecated, type PropertyTypeStatus_example, type PropertyTypeStatus_experimental, type PropertyWithoutRid, type PutActionTypeRequest, type PutParameterRequest, type PutParameterRequestModification, type PutSectionRequest, type PutSectionRequestModification, type QualifiedSeriesIdPropertyValue, type Quantization, type QuiverDashboardReference, type QuiverDashboardRid, type QuiverDashboardVersion, type RangeSizeConstraint$1 as RangeSizeConstraint, type Redacted, type RedactionOverrideOptions, type RedactionOverrideOptions_everyoneTrusted, type ReducedPropertyTypeImplementation, type ReferencedLinkTypesInWorkflowNotFoundError, type ReferencedLinkTypesNotFoundError, type ReferencedObjectTypesChange, type ReferencedObjectTypesInWorkflowNotFoundError, type ReferencedObjectTypesNotFoundError, type RegexCondition, type RegexConditionModification, type RegexConstraint$1 as RegexConstraint, type RelationCardinality, type RelationDisplayMetadata, type RelationId, type RelationRid, type RelativeDateRangeTense, type RelativeDateRangeValue, type RenderingSettings, type RenderingSettings_allNotificationRenderingMustSucceed, type RenderingSettings_anyNotificationRenderingCanFail, type ResolvedBranch, type ResolvedBranch_default, type ResolvedBranch_nonDefault, type ResolvedDefaultBranch, type ResolvedInterfacePropertyType, type ResolvedInterfacePropertyTypeConstraints, type ResolvedNonDefaultBranch, type RestrictedViewName, type RestrictedViewRid, type RestrictedViewTransactionRid, type RetentionConfig, type RetentionPolicy, type RetentionPolicy_none, type RetentionPolicy_time, type RidFormatter, type RidFormatter_allFoundryRids, type RidFormatter_objectsPlatformRids, type RidUrlTarget, type RidUrlTargetModification, type RoleId, type RoleSetId, type RuleSetBinding, type RuleSetError, type RuleSetError_ruleSetsAlreadyExist, type RuleSetError_ruleSetsNotFound, type RuleSetRid, type RuleSetsAlreadyExistError, type RuleSetsNotFoundError, type SafeArg, type SafeDatasourceIdentifier, type SafeDatasourceIdentifier_datasetRid, type SafeDatasourceIdentifier_derivedPropertiesSourceRid, type SafeDatasourceIdentifier_directSourceRid, type SafeDatasourceIdentifier_editsOnly, type SafeDatasourceIdentifier_geotimeSeriesIntegrationRid, type SafeDatasourceIdentifier_mediaSetView, type SafeDatasourceIdentifier_mediaSourceRids, type SafeDatasourceIdentifier_restrictedStream, type SafeDatasourceIdentifier_restrictedViewRid, type SafeDatasourceIdentifier_streamLocatorRid, type SafeDatasourceIdentifier_tableRid, type SafeDatasourceIdentifier_timeSeriesSyncRid, type ScenarioRid, type ScenarioRule, type ScenarioRuleModification, type ScenarioScope, type SchemaConfiguration, type SchemaMigrationBlockData, type SchemaMigrationRid, type SchemaTransitionsWithSchemaVersion, type SchemaVersion, type Section, type SectionConditionalOverride, type SectionConditionalOverrideModification, type SectionContent, type SectionContent_parameterId, type SectionDisplayBlock, type SectionDisplayBlockModification, type SectionDisplayBlockOverride, type SectionDisplayBlockOverride_visibility, type SectionDisplayMetadata, type SectionId, type SectionRid, type SectionStyle, type SectionStyle_box, type SectionStyle_minimal, type SectionValidationDisplayMetadata, type SectionVisibilityOverride, type SecurityGroupAndCondition, type SecurityGroupAndConditionModification, type SecurityGroupComparisonCondition, type SecurityGroupComparisonConditionModification, type SecurityGroupComparisonConstant, type SecurityGroupComparisonConstant_boolean, type SecurityGroupComparisonConstant_string, type SecurityGroupComparisonConstant_strings, type SecurityGroupComparisonOperator, type SecurityGroupComparisonUserProperty, type SecurityGroupComparisonUserProperty_groupIds, type SecurityGroupComparisonUserProperty_groupNames, type SecurityGroupComparisonUserProperty_userAttributes, type SecurityGroupComparisonUserProperty_userId, type SecurityGroupComparisonUserProperty_username, type SecurityGroupComparisonValue, type SecurityGroupComparisonValueModification, type SecurityGroupComparisonValueModification_constant, type SecurityGroupComparisonValueModification_property, type SecurityGroupComparisonValueModification_userProperty, type SecurityGroupComparisonValue_constant, type SecurityGroupComparisonValue_property, type SecurityGroupComparisonValue_userProperty, type SecurityGroupGranularCondition, type SecurityGroupGranularConditionModification, type SecurityGroupGranularConditionModification_and, type SecurityGroupGranularConditionModification_comparison, type SecurityGroupGranularConditionModification_markings, type SecurityGroupGranularConditionModification_not, type SecurityGroupGranularConditionModification_or, type SecurityGroupGranularConditionModification_true, type SecurityGroupGranularCondition_and, type SecurityGroupGranularCondition_comparison, type SecurityGroupGranularCondition_markings, type SecurityGroupGranularCondition_not, type SecurityGroupGranularCondition_or, type SecurityGroupGranularCondition_true, type SecurityGroupGranularPolicy, type SecurityGroupGranularPolicyModification, type SecurityGroupGranularSecurityDefinition, type SecurityGroupGranularSecurityDefinitionModification, type SecurityGroupGroupIdsUserProperty, type SecurityGroupGroupNamesUserProperty, type SecurityGroupMandatoryOnlySecurityDefinition, type SecurityGroupMandatoryOnlySecurityDefinitionModification, type SecurityGroupMandatoryPolicy, type SecurityGroupMarkingsCondition, type SecurityGroupMarkingsConditionModification, type SecurityGroupNotCondition, type SecurityGroupNotConditionModification, type SecurityGroupOrCondition, type SecurityGroupOrConditionModification, type SecurityGroupSecurityDefinition, type SecurityGroupSecurityDefinitionModification, type SecurityGroupSecurityDefinitionModification_granular, type SecurityGroupSecurityDefinitionModification_mandatoryOnly, type SecurityGroupSecurityDefinition_granular, type SecurityGroupSecurityDefinition_mandatoryOnly, type SecurityGroupTrueCondition, type SecurityGroupTrueConditionModification, type SecurityGroupUserAttributesUserProperty, type SecurityGroupUserIdUserProperty, type SecurityGroupUsernameUserProperty, type SemanticFunctionVersion, type SensorTrait, type SeriesIdPropertyValue, type SeriesValueMetadata, type SeriesValueMetadata_enum, type SeriesValueMetadata_numeric, type SeriesValueMetadata_numericOrNonNumeric, type SeriesValueMetadata_numericOrNonNumericV2, type SharedPropertiesSummary, type SharedPropertyBasedPropertyType, type SharedPropertyType, type SharedPropertyTypeBlockDataV2, type SharedPropertyTypeCreatedEvent, type SharedPropertyTypeDeletedEvent, type SharedPropertyTypeDisplayMetadata, type SharedPropertyTypeError, type SharedPropertyTypeError_mainValueStructFieldApiNamesNotFound, type SharedPropertyTypeError_reducerStructFieldApiNamesNotFound, type SharedPropertyTypeError_sharedPropertyTypesAlreadyExist, type SharedPropertyTypeError_sharedPropertyTypesNotFound, type SharedPropertyTypeGothamMapping, type SharedPropertyTypeIdInRequest, type SharedPropertyTypeLoadRequest, type SharedPropertyTypeLoadResponse, type SharedPropertyTypeLogicRuleValueModification, type SharedPropertyTypeMainValueStructFieldApiNamesNotFoundError, type SharedPropertyTypeReducerStructFieldApiNamesNotFoundError, type SharedPropertyTypeRid, type SharedPropertyTypeRidOrIdInRequest, type SharedPropertyTypeRidOrIdInRequest_idInRequest, type SharedPropertyTypeRidOrIdInRequest_rid, type SharedPropertyTypeSoftLinkType, type SharedPropertyTypeStructFieldLogicRuleValueModification, type SharedPropertyTypeUpdatedEvent, type SharedPropertyTypesAlreadyExistError, type SharedPropertyTypesNotFoundError, type ShortBody, type ShortBodyModification, type ShortBodyModification_basic, type ShortBody_basic, type ShortPropertyType, type ShortTypeDataConstraints$1 as ShortTypeDataConstraints, type ShortTypeDataConstraints_oneOf$1 as ShortTypeDataConstraints_oneOf, type ShortTypeDataConstraints_range$1 as ShortTypeDataConstraints_range, type ShortTypeDataValue$1 as ShortTypeDataValue, type ShortTypeRangeConstraint$1 as ShortTypeRangeConstraint, type SidcFormatter, type SimpleAnalyzer, type SingleKeyJoinDefinition, type SoftLink, type SoftLinkType, type SoftLinkType_sharedPropertyType, type StandardAnalyzer, type StaticObjectPrefill, type StaticObjectPrefillV2, type StaticValue, type StaticWebhookWithDirectInput, type StaticWebhookWithDirectInputModification, type StaticWebhookWithFunctionResultInput, type StaticWebhookWithFunctionResultInputModification, type StreamLocator, type StreamLocatorRid, type StreamName, type StreamViewRid, type StringConcatOperation, type StringFormatter, type StringPropertyType, type StringTypeDataConstraints$1 as StringTypeDataConstraints, type StringTypeDataConstraints_isRid$1 as StringTypeDataConstraints_isRid, type StringTypeDataConstraints_isUuid$1 as StringTypeDataConstraints_isUuid, type StringTypeDataConstraints_length$1 as StringTypeDataConstraints_length, type StringTypeDataConstraints_oneOf$1 as StringTypeDataConstraints_oneOf, type StringTypeDataConstraints_regex$1 as StringTypeDataConstraints_regex, type StringTypeDataValue$1 as StringTypeDataValue, type StringTypeIsRidConstraint$1 as StringTypeIsRidConstraint, type StringTypeIsUuidConstraint$1 as StringTypeIsUuidConstraint, type StringTypeLengthConstraint$1 as StringTypeLengthConstraint, type StructFieldAlias, type StructFieldApiNameMapping, type StructFieldApiNameOrRid, type StructFieldApiNameOrRid_apiName, type StructFieldApiNameOrRid_rid, type StructFieldConditionalOverride, type StructFieldConditionalOverrideModification, type StructFieldConditionalValidationBlock, type StructFieldConditionalValidationBlockModification, type StructFieldDisplayMetadata, type StructFieldImplementation, type StructFieldLogicRuleValue, type StructFieldLogicRuleValueMappingModification, type StructFieldLogicRuleValueModification, type StructFieldLogicRuleValueModification_structListParameterFieldValue, type StructFieldLogicRuleValueModification_structParameterFieldValue, type StructFieldLogicRuleValue_structListParameterFieldValue, type StructFieldLogicRuleValue_structParameterFieldValue, type StructFieldName, type StructFieldPrefill, type StructFieldPrefillModification, type StructFieldPrefillModification_interfaceObjectParameterStructFieldValue, type StructFieldPrefillModification_interfaceObjectParameterStructListFieldValue, type StructFieldPrefillModification_objectParameterStructFieldValue, type StructFieldPrefillModification_objectParameterStructListFieldValue, type StructFieldPrefillOverride, type StructFieldPrefillOverrideModification, type StructFieldPrefill_interfaceObjectParameterStructFieldValue, type StructFieldPrefill_interfaceObjectParameterStructListFieldValue, type StructFieldPrefill_objectParameterStructFieldValue, type StructFieldPrefill_objectParameterStructListFieldValue, type StructFieldRid, type StructFieldType, type StructFieldValidation, type StructFieldValidationBlock, type StructFieldValidationBlockModification, type StructFieldValidationBlockOverride, type StructFieldValidationBlockOverrideModification, type StructFieldValidationBlockOverrideModification_allowedValues, type StructFieldValidationBlockOverrideModification_parameterRequired, type StructFieldValidationBlockOverrideModification_prefill, type StructFieldValidationBlockOverrideModification_visibility, type StructFieldValidationBlockOverride_allowedValues, type StructFieldValidationBlockOverride_parameterRequired, type StructFieldValidationBlockOverride_prefill, type StructFieldValidationBlockOverride_visibility, type StructFieldValidationDisplayMetadata, type StructFieldValidationDisplayMetadataModification, type StructFieldValidationModification, type StructListParameterFieldValue, type StructMainValue, type StructParameterFieldDisplayMetadata, type StructParameterFieldDisplayMetadataV2, type StructParameterFieldValue, type StructPropertyFieldType, type StructPropertyFieldType_boolean, type StructPropertyFieldType_date, type StructPropertyFieldType_double, type StructPropertyFieldType_geohash, type StructPropertyFieldType_geoshape, type StructPropertyFieldType_integer, type StructPropertyFieldType_long, type StructPropertyFieldType_string, type StructPropertyFieldType_timestamp, type StructPropertyType, type StructPropertyTypeImplementation, type StructTypeDataConstraints$1 as StructTypeDataConstraints, type StructTypeElementsConstraint$1 as StructTypeElementsConstraint, type StructuredShortBody, type StructuredShortBodyModification, type SubmitAllValidOrNothingThrowingMode, type SubmitValidEntriesInOrderUntilFirstFailureMode, type SubtractionOperation, type SynchronousPreWritebackWebhook, type SynchronousPreWritebackWebhookModification, type SynchronousPreWritebackWebhookModification_staticDirectInput, type SynchronousPreWritebackWebhookModification_staticFunctionInput, type SynchronousPreWritebackWebhook_staticDirectInput, type SynchronousPreWritebackWebhook_staticFunctionInput, type TableDisplayAndFormat, type TableLocator, type TableRid, type TemplateNotificationBody, type TemplateNotificationBodyModification, type TemplateRidPropertyValue, type TextEmbeddingModel, type TextEmbeddingModel_foundryLiveDeployment, type TextEmbeddingModel_lms, type TextModality, type TimeBasedRetentionPolicy, type TimeBetweenOperation, type TimeCodeFormat, type TimeCurrentOperation, type TimeDependentFormatter, type TimeDependentNonNumericSeriesFormat, type TimeDependentNumericOrNonNumericSeriesFormat, type TimeDependentNumericOrNonNumericSeriesFormatV2, type TimeDependentNumericSeriesFormat, type TimeDependentSeriesFormat, type TimeDependentSeriesFormat_nonNumeric, type TimeDependentSeriesFormat_numeric, type TimeDependentSeriesFormat_numericOrNonNumeric, type TimeDependentSeriesFormat_numericOrNonNumericV2, type TimeSeriesMetadata, type TimeSeriesSyncName, type TimeSeriesSyncRid, type TimeSeriesSyncViewRid, type TimestampFormatter, type TimestampPropertyType, type TimestampTypeDataConstraints$1 as TimestampTypeDataConstraints, type TimestampTypeDataValue$1 as TimestampTypeDataValue, type TimestampTypeRangeConstraint$1 as TimestampTypeRangeConstraint, type TrueCondition, type Type, type TypeClass, type TypeClassEntityIdentifier, type TypeClassEntityIdentifier_actionTypeRid, type TypeClassEntityIdentifier_linkTypeRid, type TypeClassEntityIdentifier_objectTypeRid, type TypeClassEntityIdentifier_sharedPropertyTypeRid, type TypeGroup, type TypeGroupDisplayMetadata, type TypeGroupEntityRid, type TypeGroupEntityRid_actionTypeRid, type TypeGroupEntityRid_objectTypeRid, type TypeGroupError, type TypeGroupError_typeGroupsAlreadyExist, type TypeGroupError_typeGroupsNotFound, type TypeGroupGetOrganizationsRequest, type TypeGroupGetOrganizationsResponse, type TypeGroupIconColors, type TypeGroupIdInRequest, type TypeGroupLoadRequest, type TypeGroupLoadResponse, type TypeGroupRid, type TypeGroupRidOrIdInRequest, type TypeGroupRidOrIdInRequest_idInRequest, type TypeGroupRidOrIdInRequest_rid, type TypeGroupSetOrganizationsRequest, type TypeGroupsAlreadyExistError, type TypeGroupsNotFoundError, type TypeGroupsSummary, type Type_array, type Type_attachment, type Type_boolean, type Type_byte, type Type_cipherText, type Type_date, type Type_decimal, type Type_double, type Type_experimentalTimeDependentV1, type Type_float, type Type_geohash, type Type_geoshape, type Type_geotimeSeriesReference, type Type_integer, type Type_long, type Type_marking, type Type_mediaReference, type Type_short, type Type_string, type Type_struct, type Type_timestamp, type Type_vector, type UniqueIdentifier, type UnresolvedOntologySparkInputProperties, type UnrestrictedParameterInterfacePropertyValue, type UnsafeArg, type UrlTarget, type UrlTargetModification, type UrlTargetModification_carbonWorkspace, type UrlTargetModification_logicRuleValue, type UrlTargetModification_newObject, type UrlTargetModification_relativeUrlString, type UrlTargetModification_rid, type UrlTarget_carbonWorkspace, type UrlTarget_logicRuleValue, type UrlTarget_newObject, type UrlTarget_relativeUrlString, type UrlTarget_rid, type UseCaseRid, type UserAttributes, type UserId, type UserOrGroupId, type UserOrGroupId_groupId, type UserOrGroupId_userId, type UserProperty, type UserPropertyId, type UserPropertyId_currentUser, type UserPropertyValue, type UserPropertyValue_groupIds, type UserPropertyValue_groupNames, type UserPropertyValue_organizationMarkingIds, type UserPropertyValue_userAttributes, type UserPropertyValue_userId, type UserPropertyValue_userName, type UserTimezone, type UserValue, type ValidationRule, type ValidationRuleDisplayMetadata, type ValidationRuleIdInRequest, type ValidationRuleIdentifier, type ValidationRuleIdentifier_rid, type ValidationRuleIdentifier_validationRuleIdInRequest, type ValidationRuleIndex, type ValidationRuleModification, type ValidationRuleRid, type ValueReferenceId, type ValueReferenceSource, type ValueReferenceSource_propertyTypeRid, type ValueTypeApiName, type ValueTypeApiNameReference, type ValueTypeDataConstraint, type ValueTypeDisplayMetadata, type ValueTypeIdInRequest, type ValueTypeInputManagerRid, type ValueTypeLabel, type ValueTypeReference$1 as ValueTypeReference, type ValueTypeRid$1 as ValueTypeRid, type ValueTypeStatus, type ValueTypeVersion, type ValueTypeVersionId$1 as ValueTypeVersionId, type VectorPropertyType, type VectorSimilarityFunction, type VersionReference, type VersionReference_ontologyBranch, type VersionReference_ontologyVersion, type VersionedActionTypeRid, type VersionedActionTypesNotFoundError, type VersionedLinkTypeRid, type VersionedObjectTypeRid, type Visibility, type VisibilityOverride, type WebhookInputParamName, type WebhookOutputParamName, type WebhookRid, type WebhookVersion, type WhitespaceAnalyzer, type WorkflowError, type WorkflowError_deletedLinkTypesStillInUseInWorkflow, type WorkflowError_deletedObjectTypesStillInUseInWorkflow, type WorkflowError_referencedLinkTypesInWorkflowNotFound, type WorkflowError_referencedObjectTypesInWorkflowNotFound, type WorkflowError_workflowsAlreadyExist, type WorkflowError_workflowsNotFound, type WorkflowObjectTypeTrait, type WorkflowObjectTypeTraitDescription, type WorkflowObjectTypeTraitDisplayName, type WorkflowObjectTypeTraitId, type WorkflowObjectTypeTraitImpl, type WorkflowObjectTypeTraitProperty, type WorkflowObjectTypeTraitPropertyDescription, type WorkflowObjectTypeTraitPropertyDisplayName, type WorkflowObjectTypeTraitPropertyId, type WorkflowObjectTypeTraitReference, type WorkflowObjectTypeTraitVersion, type WorkflowsAlreadyExistError, type WorkflowsNotFoundError, type WorkshopModuleRid, type WorkshopReference, type WritebackDatasetRid, type WritebackDatasetSpec, bulkLoadOntologyEntities, createTemporaryObjectSet, getBulkLinksPage, getLinkTypesForObjectTypes, loadAllOntologies };
|
|
20352
|
+
export { type AccessRequestRid, type AccessRequestVersion, type AccessSubRequestRid, type AccessSubRequestVersion, type ActionApplierRevertConfig, type ActionApplyClientPreferences, type ActionApplyClientPreferences_disallowedClients, type ActionApplyDisallowedClients, type ActionEffects, type ActionEffectsModification, type ActionLogConfiguration, type ActionLogMessage, type ActionLogMetadata, type ActionLogParameterReference, type ActionLogRule, type ActionLogRuleModification, type ActionLogStructFieldMapping, type ActionLogStructFieldValue, type ActionLogStructFieldValueModification, type ActionLogStructFieldValueModification_objectParameterStructFieldValue, type ActionLogStructFieldValueModification_objectParameterStructListFieldValue, type ActionLogStructFieldValueModification_structListParameterFieldValue, type ActionLogStructFieldValueModification_structParameterFieldValue, type ActionLogStructFieldValue_objectParameterStructFieldValue, type ActionLogStructFieldValue_objectParameterStructListFieldValue, type ActionLogStructFieldValue_structListParameterFieldValue, type ActionLogStructFieldValue_structParameterFieldValue, type ActionLogSummaryPart, type ActionLogSummaryPart_message, type ActionLogSummaryPart_parameter, type ActionLogValue, type ActionLogValueModification, type ActionLogValueModification_actionRid, type ActionLogValueModification_actionTimestamp, type ActionLogValueModification_actionTypeRid, type ActionLogValueModification_actionTypeVersion, type ActionLogValueModification_actionUser, type ActionLogValueModification_allEditedObjects, type ActionLogValueModification_asynchronousWebhookInstanceIds, type ActionLogValueModification_editedObjects, type ActionLogValueModification_interfaceParameterPropertyValue, type ActionLogValueModification_interfaceParameterPropertyValueV2, type ActionLogValueModification_isReverted, type ActionLogValueModification_notificationIds, type ActionLogValueModification_notifiedUsers, type ActionLogValueModification_objectParameterPropertyValue, type ActionLogValueModification_parameterValue, type ActionLogValueModification_revertTimestamp, type ActionLogValueModification_revertUser, type ActionLogValueModification_scenarioRid, type ActionLogValueModification_summary, type ActionLogValueModification_synchronousWebhookInstanceId, type ActionLogValue_actionRid, type ActionLogValue_actionTimestamp, type ActionLogValue_actionTypeRid, type ActionLogValue_actionTypeVersion, type ActionLogValue_actionUser, type ActionLogValue_allEditedObjects, type ActionLogValue_asynchronousWebhookInstanceIds, type ActionLogValue_editedObjects, type ActionLogValue_interfaceParameterPropertyValue, type ActionLogValue_interfaceParameterPropertyValueV2, type ActionLogValue_isReverted, type ActionLogValue_notificationIds, type ActionLogValue_notifiedUsers, type ActionLogValue_objectParameterPropertyValue, type ActionLogValue_parameterValue, type ActionLogValue_revertTimestamp, type ActionLogValue_revertUser, type ActionLogValue_scenarioRid, type ActionLogValue_summary, type ActionLogValue_synchronousWebhookInstanceId, type ActionLogic, type ActionLogicModification, type ActionNotification, type ActionNotificationBody, type ActionNotificationBodyFunctionExecution, type ActionNotificationBodyFunctionExecutionModification, type ActionNotificationBodyModification, type ActionNotificationBodyModification_functionGenerated, type ActionNotificationBodyModification_templateNotification, type ActionNotificationBody_functionGenerated, type ActionNotificationBody_templateNotification, type ActionNotificationModification, type ActionNotificationRecipients, type ActionNotificationRecipientsModification, type ActionNotificationRecipientsModification_functionGenerated, type ActionNotificationRecipientsModification_parameter, type ActionNotificationRecipients_functionGenerated, type ActionNotificationRecipients_parameter, type ActionNotificationSettings, type ActionParameterShapeId, type ActionRevert, type ActionRevertEnabledFor, type ActionRevertEnabledFor_actionApplier, type ActionSubmissionConfiguration, type ActionTableSubmissionMode, type ActionTableSubmissionModeConfiguration, type ActionTableSubmissionMode_submitAllValidOrNothingThrowing, type ActionTableSubmissionMode_submitValidEntriesInOrderUntilFirstFailure, type ActionType, type ActionTypeApiName, type ActionTypeBlockDataV2, type ActionTypeBranchFunctionsWithExternalCallsMode, type ActionTypeBranchFunctionsWithExternalCallsMode_allowFunctionsWithExternalCallsOnBranches, type ActionTypeBranchFunctionsWithExternalCallsMode_disableFunctionsWithExternalCallsOnBranches, type ActionTypeBranchNotificationsMode, type ActionTypeBranchNotificationsMode_allowNotificationsOnBranches, type ActionTypeBranchNotificationsMode_disableNotificationsOnBranches, type ActionTypeBranchSettings, type ActionTypeBranchSettingsModification, type ActionTypeBranchWebhooksMode, type ActionTypeBranchWebhooksMode_allowWebhooksOnBranches, type ActionTypeBranchWebhooksMode_disableWebhooksOnBranches, type ActionTypeCreate, type ActionTypeCreatedEvent, type ActionTypeDeletedEvent, type ActionTypeDisplayMetadata, type ActionTypeDisplayMetadataConfiguration, type ActionTypeDisplayMetadataModification, type ActionTypeDoesNotHaveActionTypeLevelValidationError, type ActionTypeEditingNonEditablePropertyTypeError, type ActionTypeEntities, type ActionTypeError, type ActionTypeError_actionTypeDoesNotHaveActionTypeLevelValidation, type ActionTypeError_actionTypeEditingNonEditablePropertyType, type ActionTypeError_actionTypesAlreadyExist, type ActionTypeError_actionTypesNotFound, type ActionTypeError_deletingAndEditingTheSameActionType, type ActionTypeError_inlineActionTypeCannotBeReferencedByMultipleObjectTypes, type ActionTypeError_nonExistentParametersUsedInParameterPrefill, type ActionTypeError_parameterValidationNotFound, type ActionTypeError_parameterValidationReferencesLaterParameters, type ActionTypeError_parametersDoNotMatchParameterOrdering, type ActionTypeError_versionedActionTypesNotFound, type ActionTypeFrontendConsumer, type ActionTypeFrontendConsumer_objectMonitoring, type ActionTypeGetOrganizationsRequest, type ActionTypeGetOrganizationsResponse, type ActionTypeIdInRequest, type ActionTypeIdentifier, type ActionTypeIdentifier_actionTypeIdInRequest, type ActionTypeIdentifier_rid, type ActionTypeInputManagerRid, type ActionTypeLevelValidation, type ActionTypeLoadAllRequest, type ActionTypeLoadRequest, type ActionTypeLoadRequestV2, type ActionTypeLoadResponse, type ActionTypeLoadResponseV2, type ActionTypeLoadVersionedRequest, type ActionTypeLoadVersionedResponse, type ActionTypeLogic, type ActionTypeLogicRequest, type ActionTypeMetadata, type ActionTypeMetadataModification, type ActionTypeModificationRequest, type ActionTypeModifyRequest, type ActionTypeModifyResponse, type ActionTypeParameterIdentifier, type ActionTypeParameterIdentifier_id, type ActionTypeParameterIdentifier_rid, type ActionTypePermissionInformation, type ActionTypeProvenanceModification, type ActionTypeProvenanceSourceModification, type ActionTypeProvenanceSourceModification_marketplace, type ActionTypeProvenanceSourceModification_none, type ActionTypeRestrictionStatus, type ActionTypeRichTextComponent, type ActionTypeRichTextComponent_message, type ActionTypeRichTextComponent_parameter, type ActionTypeRichTextComponent_parameterProperty, type ActionTypeRichTextMessage, type ActionTypeRichTextParameterPropertyReference, type ActionTypeRichTextParameterReference, type ActionTypeRid, type ActionTypeScenarioExecutionOnlyMode, type ActionTypeScenarioExecutionOnlyMode_allowExecutionOnlyOnScenario, type ActionTypeScenarioExecutionOnlyMode_noExecutionRestriction, type ActionTypeScenarioSettings, type ActionTypeScenarioSettingsModification, type ActionTypeSetOrganizationsRequest, type ActionTypeStatus, type ActionTypeStatus_active, type ActionTypeStatus_deprecated, type ActionTypeStatus_example, type ActionTypeStatus_experimental, type ActionTypeUpdate, type ActionTypeUpdatedEvent, type ActionTypeVersion, type ActionTypesAlreadyExistError, type ActionTypesNotFoundError, type ActionTypesSummary, type ActionValidation, type ActionValidationRequest, type ActionWebhooks, type ActionWebhooksModification, type ActionsObjectSet, type ActionsObjectSetModification, type ActionsVersion, type ActiveActionTypeStatus, type ActiveInterfaceTypeStatus, type ActiveLinkTypeStatus, type ActiveObjectTypeStatus, type ActivePropertyTypeStatus, type AddInterfaceLinkRule, type AddInterfaceLinkRuleModification, type AddInterfaceLinkRuleModificationV2, type AddInterfaceLinkRuleV2, type AddInterfaceRule, type AddInterfaceRuleModification, type AddLinkRule, type AddObjectRule, type AddObjectRuleModification, type AddOrModifyObjectRule, type AddOrModifyObjectRuleModification, type AddOrModifyObjectRuleModificationV2, type AddOrModifyObjectRuleV2, type AdditionOperation, type AliasEntityIdentifier, type AliasEntityIdentifier_objectTypeRid, type AliasEntityIdentifier_sharedPropertyTypeRid, type AllEditedObjectsFieldMapping, type AllFoundryRids, type AllNotificationRenderingMustSucceed, type AllowExecutionOnlyOnScenario, type AllowFunctionsWithExternalCallsOnBranches, type AllowNotificationsOnBranches, type AllowNotificationsOnBranchesBranchRecipients, type AllowNotificationsOnBranchesBranchRecipients_branchRecipientsBranchOwner, type AllowNotificationsOnBranchesBranchRecipients_branchRecipientsSameAsMain, type AllowWebhooksOnBranches, type AllowedParameterValues, type AllowedParameterValuesModification, type AllowedParameterValuesModification_attachment, type AllowedParameterValuesModification_boolean, type AllowedParameterValuesModification_cbacMarking, type AllowedParameterValuesModification_datetime, type AllowedParameterValuesModification_geohash, type AllowedParameterValuesModification_geoshape, type AllowedParameterValuesModification_geotimeSeriesReference, type AllowedParameterValuesModification_interfaceObjectQuery, type AllowedParameterValuesModification_interfacePropertyValue, type AllowedParameterValuesModification_mandatoryMarking, type AllowedParameterValuesModification_mediaReference, type AllowedParameterValuesModification_multipassGroup, type AllowedParameterValuesModification_objectList, type AllowedParameterValuesModification_objectPropertyValue, type AllowedParameterValuesModification_objectQuery, type AllowedParameterValuesModification_objectSetRid, type AllowedParameterValuesModification_objectTypeReference, type AllowedParameterValuesModification_oneOf, type AllowedParameterValuesModification_range, type AllowedParameterValuesModification_redacted, type AllowedParameterValuesModification_scenarioReference, type AllowedParameterValuesModification_struct, type AllowedParameterValuesModification_text, type AllowedParameterValuesModification_timeSeriesReference, type AllowedParameterValuesModification_user, type AllowedParameterValuesModification_valueType, type AllowedParameterValuesRequest, type AllowedParameterValuesRequest_attachment, type AllowedParameterValuesRequest_boolean, type AllowedParameterValuesRequest_cbacMarking, type AllowedParameterValuesRequest_datetime, type AllowedParameterValuesRequest_geohash, type AllowedParameterValuesRequest_geoshape, type AllowedParameterValuesRequest_geotimeSeriesReference, type AllowedParameterValuesRequest_interfaceObjectQuery, type AllowedParameterValuesRequest_interfacePropertyValue, type AllowedParameterValuesRequest_mandatoryMarking, type AllowedParameterValuesRequest_mediaReference, type AllowedParameterValuesRequest_multipassGroup, type AllowedParameterValuesRequest_objectList, type AllowedParameterValuesRequest_objectPropertyValue, type AllowedParameterValuesRequest_objectQuery, type AllowedParameterValuesRequest_objectSetRid, type AllowedParameterValuesRequest_objectTypeReference, type AllowedParameterValuesRequest_oneOf, type AllowedParameterValuesRequest_range, type AllowedParameterValuesRequest_redacted, type AllowedParameterValuesRequest_scenarioReference, type AllowedParameterValuesRequest_struct, type AllowedParameterValuesRequest_text, type AllowedParameterValuesRequest_timeSeriesReference, type AllowedParameterValuesRequest_user, type AllowedParameterValuesRequest_valueType, type AllowedParameterValues_attachment, type AllowedParameterValues_boolean, type AllowedParameterValues_cbacMarking, type AllowedParameterValues_datetime, type AllowedParameterValues_geohash, type AllowedParameterValues_geoshape, type AllowedParameterValues_geotimeSeriesReference, type AllowedParameterValues_interfaceObjectQuery, type AllowedParameterValues_interfacePropertyValue, type AllowedParameterValues_mandatoryMarking, type AllowedParameterValues_mediaReference, type AllowedParameterValues_multipassGroup, type AllowedParameterValues_objectList, type AllowedParameterValues_objectPropertyValue, type AllowedParameterValues_objectQuery, type AllowedParameterValues_objectSetRid, type AllowedParameterValues_objectTypeReference, type AllowedParameterValues_oneOf, type AllowedParameterValues_range, type AllowedParameterValues_redacted, type AllowedParameterValues_scenarioReference, type AllowedParameterValues_struct, type AllowedParameterValues_text, type AllowedParameterValues_timeSeriesReference, type AllowedParameterValues_user, type AllowedParameterValues_valueType, type AllowedStructFieldValues, type AllowedStructFieldValuesModification, type AllowedStructFieldValuesModification_boolean, type AllowedStructFieldValuesModification_datetime, type AllowedStructFieldValuesModification_geohash, type AllowedStructFieldValuesModification_geoshape, type AllowedStructFieldValuesModification_objectQuery, type AllowedStructFieldValuesModification_oneOf, type AllowedStructFieldValuesModification_range, type AllowedStructFieldValuesModification_text, type AllowedStructFieldValuesOverride, type AllowedStructFieldValuesOverrideModification, type AllowedStructFieldValues_boolean, type AllowedStructFieldValues_datetime, type AllowedStructFieldValues_geohash, type AllowedStructFieldValues_geoshape, type AllowedStructFieldValues_objectQuery, type AllowedStructFieldValues_oneOf, type AllowedStructFieldValues_range, type AllowedStructFieldValues_text, type AllowedValuesOverride, type AllowedValuesOverrideModification, type AllowedValuesOverrideRequest, type Analyzer, type Analyzer_languageAnalyzer, type Analyzer_notAnalyzed, type Analyzer_simpleAnalyzer, type Analyzer_standardAnalyzer, type Analyzer_whitespaceAnalyzer, type AndCondition, type AndConditionModification, type AnyNotificationRenderingCanFail, type ArrayPropertyType, type ArrayPropertyTypeReducer, type ArrayPropertyTypeReducerSortDirection, type ArrayTypeDataConstraints$1 as ArrayTypeDataConstraints, type ArrayTypeDataValue$1 as ArrayTypeDataValue, type ArrayTypeElementsUniqueConstraint$1 as ArrayTypeElementsUniqueConstraint, type ArrayTypeSizeConstraint$1 as ArrayTypeSizeConstraint, type ArtifactGidFormatter, type AsynchronousPostWritebackWebhook, type AsynchronousPostWritebackWebhookModification, type AsynchronousPostWritebackWebhookModification_staticDirectInput, type AsynchronousPostWritebackWebhookModification_staticFunctionInput, type AsynchronousPostWritebackWebhook_staticDirectInput, type AsynchronousPostWritebackWebhook_staticFunctionInput, type AttachmentPropertyType, type Attribution, type BaseFormatter, type BaseFormatter_boolean, type BaseFormatter_date, type BaseFormatter_knownFormatter, type BaseFormatter_number, type BaseFormatter_string, type BaseFormatter_timeDependent, type BaseFormatter_timestamp, type BaseParameterSubtype, type BaseParameterSubtype_marking, type BasePropertyType, type BaseType, type BasicEmailBody, type BasicEmailBodyModification, type BatchGetEnrichedActionTypeMetadataRequest, type BatchGetEnrichedActionTypeMetadataResponse, type BatchedFunctionRule, type BatchedFunctionRuleModification, type BidirectionalRelation, type BidirectionalRelationCreateRequest, type BidirectionalRelationDeleteRequest, type BidirectionalRelationModifyRequest, type BidirectionalRelationModifyRequest_create, type BidirectionalRelationModifyRequest_delete, type BidirectionalRelationModifyRequest_update, type BidirectionalRelationUpdateRequest, type BidirectionalRelationWithoutRid, type BlockInternalId, type BlockPermissionInformation, type BlockShapeId, type BlueprintIcon, type BooleanFormatter, type BooleanPropertyType, type BooleanTypeDataConstraintValue$1 as BooleanTypeDataConstraintValue, type BooleanTypeDataConstraints$1 as BooleanTypeDataConstraints, type BooleanTypeDataValue$1 as BooleanTypeDataValue, type BranchClosedEvent, type BranchDeletedEvent, type BranchId, type BranchMergedEvent, type BranchObjectTypeResetEvent, type BranchRecipientsBranchOwner, type BranchRecipientsSameAsMain, type BuilderPipelineRid, type BulkExecutionModeConfig, type ButtonDisplayMetadata, type BytePropertyType, type ByteTypeDataValue$1 as ByteTypeDataValue, type BytesBaseValue, type CarbonWorkspaceComponentUrlTarget, type CarbonWorkspaceComponentUrlTargetModification, type CarbonWorkspaceComponentUrlTargetModification_rid, type CarbonWorkspaceComponentUrlTarget_rid, type CarbonWorkspaceUrlTarget, type CarbonWorkspaceUrlTargetModification, type CategoryDisplayName, type CategoryId, type CipherTextPropertyType, type ClassificationConstraint, type ColumnLocator, type ColumnName, type ColumnNameType, type ComparisonCondition, type ComparisonConditionModification, type ComparisonOperator, type CompassFolderRid, type CompassProjectRid, type Condition, type ConditionDisplayMetadata, type ConditionIndex, type ConditionModification, type ConditionModification_and, type ConditionModification_comparison, type ConditionModification_markings, type ConditionModification_not, type ConditionModification_or, type ConditionModification_redacted, type ConditionModification_regex, type ConditionModification_true, type ConditionValue, type ConditionValueModification, type ConditionValueModification_interfaceParameterPropertyValue, type ConditionValueModification_interfaceParameterPropertyValueV2, type ConditionValueModification_objectParameterPropertyValue, type ConditionValueModification_parameterId, type ConditionValueModification_parameterLength, type ConditionValueModification_staticValue, type ConditionValueModification_userProperty, type ConditionValue_interfaceParameterPropertyValue, type ConditionValue_interfaceParameterPropertyValueV2, type ConditionValue_objectParameterPropertyValue, type ConditionValue_parameterId, type ConditionValue_parameterLength, type ConditionValue_staticValue, type ConditionValue_userProperty, type Condition_and, type Condition_comparison, type Condition_markings, type Condition_not, type Condition_or, type Condition_redacted, type Condition_regex, type Condition_true, type ConditionalOverride, type ConditionalOverrideModification, type ConditionalOverrideRequest, type ConditionalValidationBlock, type ConditionalValidationBlockModification, type ConditionalValidationBlockRequest, type CreatedInterfaceObjectReferenceByPk, type CreatedInterfaceObjectReferenceByUniqueIdentifier, type CurrentTime, type CurrentUser, type DataConstraint, type DataConstraintWrapper, type DataConstraints, type DataFilter, type DataNullability, type DataNullabilityV2, type DataSecurity, type DataSetName, type DataType, type DataType_baseType, type DatasetRid, type DatasetRidAndBranchId, type DatasetTransactionRid, type DatasourceBackingRid, type DatasourceBackingRid_datasetRid, type DatasourceBackingRid_derivedPropertiesSourceRid, type DatasourceBackingRid_directSourceRid, type DatasourceBackingRid_editsOnlyRid, type DatasourceBackingRid_geotimeSeriesIntegrationRid, type DatasourceBackingRid_mediaSetRid, type DatasourceBackingRid_mediaSetViewRid, type DatasourceBackingRid_restrictedStreamRid, type DatasourceBackingRid_restrictedViewRid, type DatasourceBackingRid_streamLocatorRid, type DatasourceBackingRid_tableRid, type DatasourceBackingRid_timeSeriesSyncRid, type DatasourceIdentifier, type DatasourceIdentifier_datasetRidAndBranchId, type DatasourceIdentifier_derivedPropertiesSourceRid, type DatasourceIdentifier_directSourceRid, type DatasourceIdentifier_editsOnly, type DatasourceIdentifier_geotimeSeriesIntegrationRid, type DatasourceIdentifier_mediaSetView, type DatasourceIdentifier_mediaSourceRids, type DatasourceIdentifier_restrictedStream, type DatasourceIdentifier_restrictedViewRid, type DatasourceIdentifier_streamLocator, type DatasourceIdentifier_table, type DatasourceIdentifier_timeSeriesSyncRid, type DatasourceName, type DatasourcePredicate, type DatasourcePredicate_hasRid, type DatasourcePredicate_isOnlyDatasource, type DatasourcePredicate_or, type DatasourceRid, type DatasourceType, type DateBetweenOperation, type DateCurrentOperation, type DateFormatter, type DatePropertyType, type DateRangeValue, type DateRangeValueModification, type DateRangeValueModification_fixed, type DateRangeValueModification_now, type DateRangeValueModification_relative, type DateRangeValue_fixed, type DateRangeValue_now, type DateRangeValue_relative, type DateTimeUnit, type DateTimeUnitDays, type DateTimeUnitHours, type DateTimeUnitMinutes, type DateTimeUnitMonths, type DateTimeUnitSeconds, type DateTimeUnitWeeks, type DateTimeUnitYears, type DateTimeUnit_days, type DateTimeUnit_hours, type DateTimeUnit_minutes, type DateTimeUnit_months, type DateTimeUnit_seconds, type DateTimeUnit_weeks, type DateTimeUnit_years, type DateTypeDataConstraints$1 as DateTypeDataConstraints, type DateTypeDataValue$1 as DateTypeDataValue, type DateTypeRangeConstraint$1 as DateTypeRangeConstraint, type DateUnit, type DateUnit_days, type DateUnit_months, type DateUnit_weeks, type DateUnit_years, type DatetimeFormat, type DatetimeFormat_localizedFormat, type DatetimeFormat_stringFormat, type DatetimeLocalizedFormat, type DatetimeStringFormat, type DatetimeTimezone, type DatetimeTimezoneDefinition, type DatetimeTimezoneDefinition_zoneId, type DatetimeTimezone_static, type DatetimeTimezone_user, type DecimalPropertyType, type DecimalTypeDataConstraints$1 as DecimalTypeDataConstraints, type DecimalTypeDataConstraints_oneOf$1 as DecimalTypeDataConstraints_oneOf, type DecimalTypeDataConstraints_range$1 as DecimalTypeDataConstraints_range, type DecimalTypeDataValue$1 as DecimalTypeDataValue, type DecimalTypeRangeConstraint$1 as DecimalTypeRangeConstraint, type DelegateToAllowedStructFieldValues, type DeleteInterfaceLinkRule, type DeleteInterfaceLinkRuleModification, type DeleteLinkRule, type DeleteObjectRule, type DeletedLinkTypesStillInUseError, type DeletedLinkTypesStillInUseInWorkflowError, type DeletedObjectTypesStillInUseError, type DeletedObjectTypesStillInUseInWorkflowError, type DeletingAndEditingTheSameActionTypeError, type DeletionMetadata, type DeprecatedActionTypeGetOrganizationsResponse, type DeprecatedActionTypeSetOrganizationsRequest, type DeprecatedActionTypeStatus, type DeprecatedInterfaceTypeStatus, type DeprecatedLinkTypeStatus, type DeprecatedObjectTypeStatus, type DeprecatedPropertyTypeStatus, type DerivedPropertiesDefinition, type DerivedPropertiesSourceRid, type DerivedPropertyAggregation, type DerivedPropertyLinkTypeSide, type DirectSourceRid, type DirectedLinkTypeRid, type DisableFunctionsWithExternalCallsOnBranches, type DisableNotificationsOnBranches, type DisableWebhooksOnBranches, type DisplayMetadataConfigurationDefaultLayout, type DisplayMetadataConfigurationDisplayAndFormat, type DivisionOperation, type DoublePropertyType, type DoubleTypeDataConstraints$1 as DoubleTypeDataConstraints, type DoubleTypeDataConstraints_oneOf$1 as DoubleTypeDataConstraints_oneOf, type DoubleTypeDataConstraints_range$1 as DoubleTypeDataConstraints_range, type DoubleTypeDataValue$1 as DoubleTypeDataValue, type DoubleTypeRangeConstraint$1 as DoubleTypeRangeConstraint, type Duration, type DurationBaseValue, type DurationFormatStyle, type DurationFormatStyle_humanReadable, type DurationFormatStyle_timecode, type DurationPrecision, type DynamicObjectSet, type DynamicObjectSetInput, type DynamicObjectSetInputBase, type DynamicObjectSetInputParameter, type DynamicObjectSetInputUnioned, type DynamicObjectSetInput_base, type DynamicObjectSetInput_parameter, type DynamicObjectSetInput_unioned, type EditActionTypeRequest, type EditOnlyPropertyType, type EditParameterRequest, type EditParameterRequestModification, type EditSectionRequest, type EditSectionRequestModification, type EditValidationRuleRequest, type EditsConfiguration, type EditsHistoryObjectTypeRid, type EditsOnlyRid, type EmailBody, type EmailBodyModification, type EmailBodyModification_basic, type EmailBody_basic, type EmbeddingModel, type EmbeddingModel_multimodal, type EmbeddingModel_text, type Empty, type EndorsedObjectTypeStatus, type EnrichedActionTypeEntities, type EnrichedActionTypeMetadata, type EnrollmentRid, type EntityLoadByDatasourceResponse, type EntityLoadByDatasourceResponse_linkType, type EntityLoadByDatasourceResponse_objectType, type EntityMetadataLoadRequest, type EntityStatus, type EventMetadata, type EventsTopicRid, type EveryoneTrustedRedactionOverride, type ExampleActionTypeStatus, type ExampleInterfaceTypeStatus, type ExampleLinkTypeStatus, type ExampleObjectTypeStatus, type ExamplePropertyTypeStatus, type ExampleValue, type ExperimentalActionTypeStatus, type ExperimentalDeclarativeEditInformation, type ExperimentalInterfaceTypeStatus, type ExperimentalLinkTypeStatus, type ExperimentalObjectTypeStatus, type ExperimentalPropertyTypeStatus, type ExperimentalTimeDependentPropertyTypeV1, type FailureMessage, type FieldDisplayMetadata, type FieldMetadata, type FloatPropertyType, type FloatTypeDataConstraints$1 as FloatTypeDataConstraints, type FloatTypeDataConstraints_oneOf$1 as FloatTypeDataConstraints_oneOf, type FloatTypeDataConstraints_range$1 as FloatTypeDataConstraints_range, type FloatTypeDataValue$1 as FloatTypeDataValue, type FloatTypeRangeConstraint$1 as FloatTypeRangeConstraint, type FormContent, type FormContent_parameterId, type FormContent_sectionId, type FormatterUserId, type FoundryFieldType, type FoundryLiveDeployment, type FoundryObjectReference, type FunctionApiName, type FunctionAtVersion, type FunctionBackedEmbeddingModel, type FunctionExecutionWithRecipientInput, type FunctionExecutionWithRecipientInputModification, type FunctionExecutionWithRecipientInputModification_logicRuleValue, type FunctionExecutionWithRecipientInputModification_recipient, type FunctionExecutionWithRecipientInput_logicRuleValue, type FunctionExecutionWithRecipientInput_recipient, type FunctionGeneratedActionNotificationRecipients, type FunctionGeneratedActionNotificationRecipientsModification, type FunctionGeneratedNotificationBody, type FunctionGeneratedNotificationBodyModification, type FunctionInputName, type FunctionReference, type FunctionRid, type FunctionRule, type FunctionRuleCustomExecutionMode, type FunctionRuleCustomExecutionMode_bulkExecutionModeConfig, type FunctionRuleModification, type FunctionVersion, type GenericOntologyMetadataError, type GeohashPropertyType, type GeoshapePropertyType, type GeotimeSeriesIntegrationName, type GeotimeSeriesIntegrationRid, type GeotimeSeriesReferencePropertyType, type GetActionTypesForInterfaceTypePageToken, type GetActionTypesForInterfaceTypeRequest, type GetActionTypesForInterfaceTypeResponse, type GetActionTypesForObjectTypePageToken, type GetActionTypesForObjectTypeRequest, type GetActionTypesForObjectTypeResponse, type GetBulkLinksPageRequest, type GetEntityDelegateDatasetRequest, type GetEntityDelegateDatasetResponse, type GetEntityQueryableSourceRequest, type GetEntityQueryableSourceResponse, type GetFeatureConfigurationsResponse, type GetLinkMetadataForObjectTypesRequest, type GetLinkMetadataForObjectTypesResponse, type GetLinkTypesForObjectTypesRequest, type GetLinkTypesForObjectTypesResponse, type GetObjectTypesForInterfaceTypesRequest, type GetObjectTypesForInterfaceTypesResponse, type GetObjectTypesForSharedPropertyTypesRequest, type GetObjectTypesForSharedPropertyTypesResponse, type GetObjectTypesForTypeGroupsRequest, type GetObjectTypesForTypeGroupsResponse, type GetOntologyEntitiesForTypeGroupsRequest, type GetOntologyEntitiesForTypeGroupsResponse, type GetOntologySummaryRequest, type GetOntologySummaryResponse, type GetRelationsForObjectTypesRequest, type GetRelationsForObjectTypesResponse, type GlobalBranchRid, type GroupId, type HandlebarsInputName, type HumanReadableFormat, type Icon, type IconReference, type Icon_blueprint, type ImageModality, type ImplementingLinkType, type ImportedOntologyEntitiesForProjectSpanOntologies, type InlineActionDisplayOptions, type InlineActionType, type InlineActionTypeCannotBeReferencedByMultipleObjectTypesError, type InstallLocationBlockShapeId, type IntegerPropertyType, type IntegerTypeDataConstraints$1 as IntegerTypeDataConstraints, type IntegerTypeDataConstraints_oneOf$1 as IntegerTypeDataConstraints_oneOf, type IntegerTypeDataConstraints_range$1 as IntegerTypeDataConstraints_range, type IntegerTypeDataValue$1 as IntegerTypeDataValue, type IntegerTypeRangeConstraint$1 as IntegerTypeRangeConstraint, type InterfaceActionTypeConstraint, type InterfaceActionTypeConstraintApiName, type InterfaceActionTypeConstraintIdInRequest, type InterfaceActionTypeConstraintMetadata, type InterfaceActionTypeConstraintRid, type InterfaceActionTypeConstraintRidOrIdInRequest, type InterfaceActionTypeConstraintRidOrIdInRequest_idInRequest, type InterfaceActionTypeConstraintRidOrIdInRequest_rid, type InterfaceArrayPropertyType, type InterfaceCipherTextPropertyType, type InterfaceDefinedPropertyType, type InterfaceDefinedPropertyTypeConstraints, type InterfaceLinkType, type InterfaceLinkTypeApiName, type InterfaceLinkTypeCardinality, type InterfaceLinkTypeIdInRequest, type InterfaceLinkTypeMetadata, type InterfaceLinkTypeRid, type InterfaceLinkTypeRidOrIdInRequest, type InterfaceLinkTypeRidOrIdInRequest_idInRequest, type InterfaceLinkTypeRidOrIdInRequest_rid, type InterfaceObjectParameterStructFieldValue, type InterfaceObjectParameterStructFieldValueModification, type InterfaceObjectParameterStructListFieldValue, type InterfaceObjectParameterStructListFieldValueModification, type InterfaceParameterConstraint, type InterfaceParameterConstraintDisplayMetadata, type InterfaceParameterConstraintIdInRequest, type InterfaceParameterConstraintRid, type InterfaceParameterConstraintRidOrIdInRequest, type InterfaceParameterConstraintRidOrIdInRequest_idInRequest, type InterfaceParameterConstraintRidOrIdInRequest_rid, type InterfaceParameterPropertyValue, type InterfaceParameterPropertyValueModification, type InterfaceParameterPropertyValueModificationV2, type InterfaceParameterPropertyValueV2, type InterfacePropertyImplementation, type InterfacePropertyLogicRuleValue, type InterfacePropertyLogicRuleValue_logicRuleValue, type InterfacePropertyLogicRuleValue_structLogicRuleValue, type InterfacePropertyType, type InterfacePropertyTypeApiName, type InterfacePropertyTypeDisplayMetadata, type InterfacePropertyTypeIdInRequest, type InterfacePropertyTypeImplementation, type InterfacePropertyTypeImplementation_propertyTypeRid, type InterfacePropertyTypeImplementation_reducedProperty, type InterfacePropertyTypeImplementation_structField, type InterfacePropertyTypeImplementation_structPropertyTypeMapping, type InterfacePropertyTypeLogicRuleValueModification, type InterfacePropertyTypeRid, type InterfacePropertyTypeRidOrIdInRequest, type InterfacePropertyTypeRidOrIdInRequest_idInRequest, type InterfacePropertyTypeRidOrIdInRequest_rid, type InterfacePropertyTypeType, type InterfacePropertyTypeType_array, type InterfacePropertyTypeType_attachment, type InterfacePropertyTypeType_boolean, type InterfacePropertyTypeType_byte, type InterfacePropertyTypeType_cipherText, type InterfacePropertyTypeType_date, type InterfacePropertyTypeType_decimal, type InterfacePropertyTypeType_double, type InterfacePropertyTypeType_experimentalTimeDependentV1, type InterfacePropertyTypeType_float, type InterfacePropertyTypeType_geohash, type InterfacePropertyTypeType_geoshape, type InterfacePropertyTypeType_geotimeSeriesReference, type InterfacePropertyTypeType_integer, type InterfacePropertyTypeType_long, type InterfacePropertyTypeType_marking, type InterfacePropertyTypeType_mediaReference, type InterfacePropertyTypeType_short, type InterfacePropertyTypeType_string, type InterfacePropertyTypeType_struct, type InterfacePropertyTypeType_timestamp, type InterfacePropertyTypeType_vector, type InterfacePropertyType_interfaceDefinedPropertyType, type InterfacePropertyType_sharedPropertyBasedPropertyType, type InterfaceSharedPropertyType, type InterfaceStructFieldType, type InterfaceStructPropertyType, type InterfaceType, type InterfaceTypeApiName, type InterfaceTypeBlockDataV2, type InterfaceTypeCreatedEvent, type InterfaceTypeDeletedEvent, type InterfaceTypeDisplayMetadata, type InterfaceTypeError, type InterfaceTypeError_interfaceTypesAlreadyExist, type InterfaceTypeError_interfaceTypesNotFound, type InterfaceTypeIdInRequest, type InterfaceTypeLoadRequest, type InterfaceTypeLoadResponse, type InterfaceTypeRid, type InterfaceTypeRidOrIdInRequest, type InterfaceTypeRidOrIdInRequest_idInRequest, type InterfaceTypeRidOrIdInRequest_rid, type InterfaceTypeStatus, type InterfaceTypeStatus_active, type InterfaceTypeStatus_deprecated, type InterfaceTypeStatus_example, type InterfaceTypeStatus_experimental, type InterfaceTypeUpdatedEvent, type InterfaceTypesAlreadyExistError, type InterfaceTypesNotFoundError, type InterfacesSummary, type IntermediaryLinkDefinition, type InvalidCompassNameReason, type IsOnlyDatasource, type JoinDefinition, type JoinDefinition_joinTable, type JoinDefinition_singleKey, type KnownFormatter, type KnownFormatter_artifactGidFormatter, type KnownFormatter_ridFormatter, type KnownFormatter_sidcFormatter, type KnownFormatter_userId, type KnownMarketplaceIdentifiers, type LabelledValue, type LanguageAnalyzer, type LimeIndexRid, type LinkDefinition, type LinkDefinition_intermediary, type LinkDefinition_manyToMany, type LinkDefinition_oneToMany, type LinkMetadata, type LinkMetadata_linkType, type LinkMetadata_softLink, type LinkType, type LinkTypeBlockDataV2, type LinkTypeCreatedEvent, type LinkTypeDeletedEvent, type LinkTypeDisplayMetadata, type LinkTypeError, type LinkTypeError_deletedLinkTypesStillInUse, type LinkTypeError_deletedObjectsStillInUse, type LinkTypeError_linkTypeRidsNotFound, type LinkTypeError_linkTypesAlreadyExist, type LinkTypeError_linkTypesNotFound, type LinkTypeError_referencedLinkTypesNotFound, type LinkTypeError_referencedObjectTypesNotFound, type LinkTypeId, type LinkTypeIdentifier, type LinkTypeIdentifier_linkTypeId, type LinkTypeIdentifier_linkTypeRid, type LinkTypeInputManagerRid, type LinkTypeInputSpec, type LinkTypeLoadRequest, type LinkTypeLoadResponse, type LinkTypeMetadata, type LinkTypeMetadataInputManagerRid, type LinkTypePeeringMetadata, type LinkTypePeeringMetadataV1, type LinkTypePeeringMetadata_v1, type LinkTypePeeringRid, type LinkTypePermissionInformation, type LinkTypeRestrictionStatus, type LinkTypeRid, type LinkTypeRidOrId, type LinkTypeRidOrId_id, type LinkTypeRidOrId_rid, type LinkTypeRidsNotFoundError, type LinkTypeStatus, type LinkTypeStatus_active, type LinkTypeStatus_deprecated, type LinkTypeStatus_example, type LinkTypeStatus_experimental, type LinkTypeUpdatedEvent, type LinkTypesAlreadyExistError, type LinkTypesNotFoundError, type LinkTypesSummary, type LinkedEntityTypeId, type LinkedEntityTypeId_interfaceType, type LinkedEntityTypeId_objectType, type LinkedEntityTypeRidOrIdInRequest, type LinkedEntityTypeRidOrIdInRequest_interfaceType, type LinkedEntityTypeRidOrIdInRequest_objectType, type LinkedObjectReference, type LinkedObjectReferenceModification, type LinkedObjectReferenceModification_createdInterfaceObjectReferenceByPk, type LinkedObjectReferenceModification_createdInterfaceObjectReferenceByUniqueIdentifier, type LinkedObjectReferenceModification_createdObjectReference, type LinkedObjectReferenceModification_existingObject, type LinkedObjectReference_createdInterfaceObjectReferenceByPk, type LinkedObjectReference_createdInterfaceObjectReferenceByUniqueIdentifier, type LinkedObjectReference_createdObjectReference, type LinkedObjectReference_existingObject, type LiveDeploymentRid, type LmsEmbeddingModel, type LoadActionTypesFromOntologyRequest, type LoadActionTypesFromOntologyResponse, type LoadAllActionTypesFromOntologyRequest, type LoadAllActionTypesPageItem, type LoadAllActionTypesPageRequest, type LoadAllActionTypesPageResponse, type LoadAllActionTypesPageToken, type LoadAllInterfaceTypesPageItem, type LoadAllInterfaceTypesPageRequest, type LoadAllInterfaceTypesPageResponse, type LoadAllInterfaceTypesPageToken, type LoadAllObjectTypesFromOntologyPageRequest, type LoadAllObjectTypesFromOntologyPageResponse, type LoadAllObjectTypesPageItem, type LoadAllObjectTypesPageRequest, type LoadAllObjectTypesPageResponse, type LoadAllObjectTypesPageToken, type LoadAllOntologiesRequest, type LoadAllOntologiesResponse, type LoadAllSharedPropertyTypesPageItem, type LoadAllSharedPropertyTypesPageRequest, type LoadAllSharedPropertyTypesPageResponse, type LoadAllSharedPropertyTypesPageToken, type LoadAllTypeGroupsPageItem, type LoadAllTypeGroupsPageRequest, type LoadAllTypeGroupsPageResponse, type LoadAllTypeGroupsPageToken, type LogicRule, type LogicRuleIdInRequest, type LogicRuleIdentifier, type LogicRuleIdentifier_logicRuleIdInRequest, type LogicRuleIdentifier_rid, type LogicRuleModification, type LogicRuleModification_addInterfaceLinkRule, type LogicRuleModification_addInterfaceLinkRuleV2, type LogicRuleModification_addInterfaceRule, type LogicRuleModification_addLinkRule, type LogicRuleModification_addObjectRule, type LogicRuleModification_addOrModifyObjectRule, type LogicRuleModification_addOrModifyObjectRuleV2, type LogicRuleModification_batchedFunctionRule, type LogicRuleModification_deleteInterfaceLinkRule, type LogicRuleModification_deleteLinkRule, type LogicRuleModification_deleteObjectRule, type LogicRuleModification_functionRule, type LogicRuleModification_modifyInterfaceRule, type LogicRuleModification_modifyObjectRule, type LogicRuleModification_scenarioRule, type LogicRuleRid, type LogicRuleValue, type LogicRuleValueModification, type LogicRuleValueModification_currentTime, type LogicRuleValueModification_currentUser, type LogicRuleValueModification_interfaceParameterPropertyValue, type LogicRuleValueModification_interfaceParameterPropertyValueV2, type LogicRuleValueModification_objectParameterPropertyValue, type LogicRuleValueModification_parameterId, type LogicRuleValueModification_scheduleRunRid, type LogicRuleValueModification_staticValue, type LogicRuleValueModification_synchronousWebhookOutput, type LogicRuleValueModification_uniqueIdentifier, type LogicRuleValue_currentTime, type LogicRuleValue_currentUser, type LogicRuleValue_interfaceParameterPropertyValue, type LogicRuleValue_interfaceParameterPropertyValueV2, type LogicRuleValue_objectParameterPropertyValue, type LogicRuleValue_parameterId, type LogicRuleValue_scheduleRunRid, type LogicRuleValue_staticValue, type LogicRuleValue_synchronousWebhookOutput, type LogicRuleValue_uniqueIdentifier, type LogicRule_addInterfaceLinkRule, type LogicRule_addInterfaceLinkRuleV2, type LogicRule_addInterfaceRule, type LogicRule_addLinkRule, type LogicRule_addObjectRule, type LogicRule_addOrModifyObjectRule, type LogicRule_addOrModifyObjectRuleV2, type LogicRule_batchedFunctionRule, type LogicRule_deleteInterfaceLinkRule, type LogicRule_deleteLinkRule, type LogicRule_deleteObjectRule, type LogicRule_functionRule, type LogicRule_modifyInterfaceRule, type LogicRule_modifyObjectRule, type LogicRule_scenarioRule, type LongPropertyType, type LongTypeDataConstraints$1 as LongTypeDataConstraints, type LongTypeDataConstraints_oneOf$1 as LongTypeDataConstraints_oneOf, type LongTypeDataConstraints_range$1 as LongTypeDataConstraints_range, type LongTypeDataValue$1 as LongTypeDataValue, type LongTypeRangeConstraint$1 as LongTypeRangeConstraint, type MandatoryMarkingConstraint, type ManyToManyJoinDefinition, type ManyToManyLinkDefinition, type ManyToManyLinkTypeDatasetDatasource, type ManyToManyLinkTypeDatasource, type ManyToManyLinkTypeDatasourceDefinition, type ManyToManyLinkTypeDatasourceDefinition_dataset, type ManyToManyLinkTypeDatasourceDefinition_stream, type ManyToManyLinkTypeStreamDatasource, type MarketplaceActionType, type MarketplaceActionTypeDisplayMetadata, type MarketplaceActionTypeMetadata, type MarketplaceActiveInterfaceTypeStatus, type MarketplaceDataConstraints, type MarketplaceDeprecatedInterfaceTypeStatus, type MarketplaceExampleInterfaceTypeStatus, type MarketplaceExperimentalInterfaceTypeStatus, type MarketplaceInterfaceDefinedPropertyType, type MarketplaceInterfaceDefinedPropertyTypeConstraints, type MarketplaceInterfaceLinkType, type MarketplaceInterfaceLinkTypeCardinality, type MarketplaceInterfaceLinkTypeMetadata, type MarketplaceInterfacePropertyType, type MarketplaceInterfacePropertyType_interfaceDefinedPropertyType, type MarketplaceInterfacePropertyType_sharedPropertyBasedPropertyType, type MarketplaceInterfaceType, type MarketplaceInterfaceTypeDisplayMetadata, type MarketplaceInterfaceTypeStatus, type MarketplaceInterfaceTypeStatus_active, type MarketplaceInterfaceTypeStatus_deprecated, type MarketplaceInterfaceTypeStatus_example, type MarketplaceInterfaceTypeStatus_experimental, type MarketplaceObjectTypeEntityMetadata, type MarketplaceSharedPropertyBasedPropertyType, type MarkingDisplayName, type MarkingFilter, type MarkingFilter_markingTypes, type MarkingGroupName, type MarkingId, type MarkingInfo, type MarkingPropertyType, type MarkingSubtype, type MarkingType, type MarkingTypesFilter, type MarkingsCondition, type MarkingsConditionModification, type MediaItemRid, type MediaReferencePropertyType, type MediaSetBranchRid, type MediaSetRid, type MediaSetViewLocator, type MediaSetViewName, type MediaSetViewRid, type MediaSourceRid, type MediaSourceRid_datasetRid, type MediaSourceRid_mediaSetRid, type MioEmbeddingModel, type MissingAffectedObjectTypesForFunctionRule, type MissingParameterValueType, type Modality, type Modality_image, type Modality_text, type ModelWithSource, type ModelWithSource_mio, type ModifyInterfaceRule, type ModifyInterfaceRuleModification, type ModifyObjectRule, type ModifyObjectRuleModification, type ModuleRid, type MultimodalEmbeddingModel, type MultipassUserFilter, type MultipassUserFilterModification, type MultipassUserFilterModification_groupFilter, type MultipassUserFilter_groupFilter, type MultipassUserInGroupFilter, type MultipassUserInGroupFilterModification, type MultiplicationOperation, type MustBeEmpty, type NestedInterfacePropertyTypeImplementation, type NestedInterfacePropertyTypeImplementation_propertyTypeRid, type NestedInterfacePropertyTypeImplementation_structField, type NestedInterfacePropertyTypeImplementation_structPropertyTypeMapping, type NestedStructFieldApiNameMapping, type NewObjectUrlTarget, type NewObjectUrlTargetModification, type NoExecutionRestriction, type NoRetentionPolicy, type NonExistentParametersUsedInParameterPrefillError, type NonNumericInternalInterpolation, type NonNumericSeriesValueMetadata, type NonNumericSeriesValueUnit, type NoneEntityProvenance, type NotAnalyzedAnalyzer, type NotCondition, type NotConditionModification, type NotepadReference, type NotepadRid, type NotificationRecipient, type NotificationResultTypeLink, type NotificationResultTypeLinkModification, type NotificationTemplateInputValue, type NotificationTemplateInputValueModification, type NotificationTemplateInputValueModification_actionTriggererValue, type NotificationTemplateInputValueModification_logicRuleValue, type NotificationTemplateInputValueModification_recipientValue, type NotificationTemplateInputValue_actionTriggererValue, type NotificationTemplateInputValue_logicRuleValue, type NotificationTemplateInputValue_recipientValue, type NumberFormatBase, type NumberFormatBasisPoint, type NumberFormatBillions, type NumberFormatBytes, type NumberFormatCurrency, type NumberFormatCurrencyStyle, type NumberFormatCustomUnit, type NumberFormatDuration, type NumberFormatMillions, type NumberFormatNotation, type NumberFormatOrdinal, type NumberFormatPerMille, type NumberFormatPercentage, type NumberFormatPrePostFix, type NumberFormatThousands, type NumberFormatUnit, type NumberFormatter, type NumberFormatter_base, type NumberFormatter_basisPoint, type NumberFormatter_billions, type NumberFormatter_bytes, type NumberFormatter_currency, type NumberFormatter_customUnit, type NumberFormatter_duration, type NumberFormatter_millions, type NumberFormatter_ordinal, type NumberFormatter_perMille, type NumberFormatter_percentage, type NumberFormatter_prePost, type NumberFormatter_thousands, type NumberFormatter_unit, type NumberRoundingMode, type NumericInternalInterpolation, type NumericOrNonNumericSeriesValueMetadata, type NumericOrNonNumericSeriesValueMetadataV2, type NumericSeriesValueMetadata, type NumericSeriesValueUnit, type NumericSeriesValueUnit_customUnit, type NumericSeriesValueUnit_standardUnit, type ObjectDbRid, type ObjectDbSyncRid, type ObjectDisplayMetadata, type ObjectIdentifier, type ObjectMonitoringFrontendConsumer, type ObjectOrLinkTypeRid, type ObjectParameterPropertyValue, type ObjectParameterStructFieldValue, type ObjectParameterStructFieldValueModification, type ObjectParameterStructListFieldValue, type ObjectParameterStructListFieldValueModification, type ObjectQueryPrefill, type ObjectQueryPrefillModification, type ObjectQueryPropertyValue, type ObjectQueryPropertyValueModification, type ObjectRid, type ObjectSet, type ObjectSetFilter$1 as ObjectSetFilter, type ObjectSetRidPrefill, type ObjectSetRidPrefillModification, type ObjectSetSearchAround, type ObjectSetTransform, type ObjectSetTransform_propertyFilter, type ObjectSetTransform_searchAround, type ObjectType, type ObjectTypeApiName, type ObjectTypeBlockDataV2, type ObjectTypeCreatedEvent, type ObjectTypeDatasetDatasource, type ObjectTypeDatasetDatasourceV2, type ObjectTypeDatasetDatasourceV3, type ObjectTypeDatasource, type ObjectTypeDatasourceDefinition, type ObjectTypeDatasourceDefinition_dataset, type ObjectTypeDatasourceDefinition_datasetV2, type ObjectTypeDatasourceDefinition_datasetV3, type ObjectTypeDatasourceDefinition_derived, type ObjectTypeDatasourceDefinition_direct, type ObjectTypeDatasourceDefinition_editsOnly, type ObjectTypeDatasourceDefinition_geotimeSeries, type ObjectTypeDatasourceDefinition_media, type ObjectTypeDatasourceDefinition_mediaSetView, type ObjectTypeDatasourceDefinition_restrictedStream, type ObjectTypeDatasourceDefinition_restrictedView, type ObjectTypeDatasourceDefinition_restrictedViewV2, type ObjectTypeDatasourceDefinition_stream, type ObjectTypeDatasourceDefinition_streamV2, type ObjectTypeDatasourceDefinition_streamV3, type ObjectTypeDatasourceDefinition_table, type ObjectTypeDatasourceDefinition_timeSeries, type ObjectTypeDeletedEvent, type ObjectTypeDerivedPropertiesDatasource, type ObjectTypeDirectDatasource, type ObjectTypeDisplayMetadata, type ObjectTypeEditsOnlyDatasource, type ObjectTypeEmbeddingInput, type ObjectTypeError, type ObjectTypeError_mainValueStructFieldApiNamesNotFound, type ObjectTypeError_objectTypeRidsNotFound, type ObjectTypeError_objectTypesAlreadyExist, type ObjectTypeError_objectTypesNotFound, type ObjectTypeError_patchBackupInitializationConfigurationSourceDoesNotExist, type ObjectTypeError_reducerStructFieldApiNamesNotFound, type ObjectTypeFieldApiName, type ObjectTypeGeotimeSeriesDatasource, type ObjectTypeId, type ObjectTypeIdAndPropertyTypeId, type ObjectTypeIdentifier, type ObjectTypeIdentifier_objectTypeId, type ObjectTypeIdentifier_objectTypeRid, type ObjectTypeIdsAndInterfaceTypeRids, type ObjectTypeInputManagerProperties, type ObjectTypeInputManagerRid, type ObjectTypeInputSpec, type ObjectTypeInterfaceImplementation, type ObjectTypeLoadRequest, type ObjectTypeLoadResponse, type ObjectTypeMainValueStructFieldApiNamesNotFoundError, type ObjectTypeMediaDatasource, type ObjectTypeMediaSetViewDatasource, type ObjectTypeMetadataInputManagerRid, type ObjectTypePeeringMetadata, type ObjectTypePeeringMetadataV1, type ObjectTypePeeringMetadata_v1, type ObjectTypePeeringRid, type ObjectTypePermissionInformation, type ObjectTypeReducerStructFieldApiNamesNotFoundError, type ObjectTypeRestrictedStreamDatasource, type ObjectTypeRestrictedViewDatasource, type ObjectTypeRestrictedViewDatasourceV2, type ObjectTypeRestrictionStatus, type ObjectTypeRid, type ObjectTypeRidOrInterfaceTypeRidOrIdInRequest, type ObjectTypeRidOrInterfaceTypeRidOrIdInRequest_interfaceType, type ObjectTypeRidOrInterfaceTypeRidOrIdInRequest_objectType, type ObjectTypeRidsAndInterfaceTypeRids, type ObjectTypeRidsNotFoundError, type ObjectTypeStatus, type ObjectTypeStatus_active, type ObjectTypeStatus_deprecated, type ObjectTypeStatus_endorsed, type ObjectTypeStatus_example, type ObjectTypeStatus_experimental, type ObjectTypeStreamDatasource, type ObjectTypeStreamDatasourceV2, type ObjectTypeStreamDatasourceV3, type ObjectTypeTableDatasource, type ObjectTypeTimeSeriesDatasource, type ObjectTypeTraitPropertySpecification, type ObjectTypeTraits, type ObjectTypeUpdatedEvent, type ObjectTypeWithRestrictedViewWithGpsPolicyColumnsNotMappedAsPropertyTypes, type ObjectTypesAlreadyExistError, type ObjectTypesNotFoundError, type ObjectTypesSummary, type ObjectsPlatformRids, type ObjectsWritebackDataset, type OneOfDecimalTypeConstraint$1 as OneOfDecimalTypeConstraint, type OneOfDoubleTypeConstraint$1 as OneOfDoubleTypeConstraint, type OneOfFloatTypeConstraint$1 as OneOfFloatTypeConstraint, type OneOfIntegerTypeConstraint$1 as OneOfIntegerTypeConstraint, type OneOfLongTypeConstraint$1 as OneOfLongTypeConstraint, type OneOfShortTypeConstraint$1 as OneOfShortTypeConstraint, type OneOfStringTypeConstraint$1 as OneOfStringTypeConstraint, type OneToManyLinkCardinalityHint, type OneToManyLinkDefinition, type OntologyActionTypeLoadRequest, type OntologyApiName, type OntologyBlockDataV2, type OntologyBranch, type OntologyBranchRid, type OntologyBulkLoadEntitiesByDatasourcesRequest, type OntologyBulkLoadEntitiesByDatasourcesResponse, type OntologyBulkLoadEntitiesRequest, type OntologyBulkLoadEntitiesResponse, type OntologyDatasetType, type OntologyEntitiesUsedInTypeGroup, type OntologyIndexingEvent, type OntologyIndexingEvent_branchObjectTypeReset, type OntologyInformation, type OntologyIr, type OntologyIrActionEffects, type OntologyIrActionLogMetadata, type OntologyIrActionLogRule, type OntologyIrActionLogStructFieldValue, type OntologyIrActionLogStructFieldValue_objectParameterStructFieldValue, type OntologyIrActionLogStructFieldValue_objectParameterStructListFieldValue, type OntologyIrActionLogStructFieldValue_structListParameterFieldValue, type OntologyIrActionLogStructFieldValue_structParameterFieldValue, type OntologyIrActionLogValue, type OntologyIrActionLogValue_actionRid, type OntologyIrActionLogValue_actionTimestamp, type OntologyIrActionLogValue_actionTypeRid, type OntologyIrActionLogValue_actionTypeVersion, type OntologyIrActionLogValue_actionUser, type OntologyIrActionLogValue_allEditedObjects, type OntologyIrActionLogValue_asynchronousWebhookInstanceIds, type OntologyIrActionLogValue_editedObjects, type OntologyIrActionLogValue_interfaceParameterPropertyValue, type OntologyIrActionLogValue_interfaceParameterPropertyValueV2, type OntologyIrActionLogValue_isReverted, type OntologyIrActionLogValue_notificationIds, type OntologyIrActionLogValue_notifiedUsers, type OntologyIrActionLogValue_objectParameterPropertyValue, type OntologyIrActionLogValue_parameterValue, type OntologyIrActionLogValue_revertTimestamp, type OntologyIrActionLogValue_revertUser, type OntologyIrActionLogValue_scenarioRid, type OntologyIrActionLogValue_summary, type OntologyIrActionLogValue_synchronousWebhookInstanceId, type OntologyIrActionLogic, type OntologyIrActionNotification, type OntologyIrActionNotificationBody, type OntologyIrActionNotificationBodyFunctionExecution, type OntologyIrActionNotificationBody_functionGenerated, type OntologyIrActionNotificationBody_templateNotification, type OntologyIrActionNotificationRecipients, type OntologyIrActionNotificationRecipients_functionGenerated, type OntologyIrActionNotificationRecipients_parameter, type OntologyIrActionTypeBlockDataV2, type OntologyIrActionTypeEntities, type OntologyIrActionTypeLevelValidation, type OntologyIrActionTypeLogic, type OntologyIrActionTypeRichTextComponent, type OntologyIrActionTypeRichTextComponent_message, type OntologyIrActionTypeRichTextComponent_parameter, type OntologyIrActionTypeRichTextComponent_parameterProperty, type OntologyIrActionTypeRichTextParameterPropertyReference, type OntologyIrActionTypeStatus, type OntologyIrActionTypeStatus_active, type OntologyIrActionTypeStatus_deprecated, type OntologyIrActionTypeStatus_example, type OntologyIrActionTypeStatus_experimental, type OntologyIrActionValidation, type OntologyIrActionWebhooks, type OntologyIrActionsObjectSet, type OntologyIrAddInterfaceLinkRule, type OntologyIrAddInterfaceLinkRuleV2, type OntologyIrAddInterfaceRule, type OntologyIrAddObjectRule, type OntologyIrAddOrModifyObjectRule, type OntologyIrAddOrModifyObjectRuleV2, type OntologyIrAdditionOperation, type OntologyIrAllEditedObjectsFieldMapping, type OntologyIrAllowedParameterValues, type OntologyIrAllowedParameterValues_attachment, type OntologyIrAllowedParameterValues_boolean, type OntologyIrAllowedParameterValues_cbacMarking, type OntologyIrAllowedParameterValues_datetime, type OntologyIrAllowedParameterValues_geohash, type OntologyIrAllowedParameterValues_geoshape, type OntologyIrAllowedParameterValues_geotimeSeriesReference, type OntologyIrAllowedParameterValues_interfaceObjectQuery, type OntologyIrAllowedParameterValues_interfacePropertyValue, type OntologyIrAllowedParameterValues_mandatoryMarking, type OntologyIrAllowedParameterValues_mediaReference, type OntologyIrAllowedParameterValues_multipassGroup, type OntologyIrAllowedParameterValues_objectList, type OntologyIrAllowedParameterValues_objectPropertyValue, type OntologyIrAllowedParameterValues_objectQuery, type OntologyIrAllowedParameterValues_objectSetRid, type OntologyIrAllowedParameterValues_objectTypeReference, type OntologyIrAllowedParameterValues_oneOf, type OntologyIrAllowedParameterValues_range, type OntologyIrAllowedParameterValues_redacted, type OntologyIrAllowedParameterValues_scenarioReference, type OntologyIrAllowedParameterValues_text, type OntologyIrAllowedParameterValues_timeSeriesReference, type OntologyIrAllowedParameterValues_user, type OntologyIrAllowedParameterValues_valueType, type OntologyIrAllowedStructFieldValues, type OntologyIrAllowedStructFieldValuesOverride, type OntologyIrAllowedStructFieldValues_boolean, type OntologyIrAllowedStructFieldValues_datetime, type OntologyIrAllowedStructFieldValues_geohash, type OntologyIrAllowedStructFieldValues_geoshape, type OntologyIrAllowedStructFieldValues_objectQuery, type OntologyIrAllowedStructFieldValues_oneOf, type OntologyIrAllowedStructFieldValues_range, type OntologyIrAllowedStructFieldValues_text, type OntologyIrAllowedValuesOverride, type OntologyIrAndCondition, type OntologyIrArrayPropertyType, type OntologyIrArrayPropertyTypeReducer, type OntologyIrAsynchronousPostWritebackWebhook, type OntologyIrAsynchronousPostWritebackWebhook_staticDirectInput, type OntologyIrAsynchronousPostWritebackWebhook_staticFunctionInput, type OntologyIrBaseFormatter, type OntologyIrBaseFormatter_boolean, type OntologyIrBaseFormatter_date, type OntologyIrBaseFormatter_knownFormatter, type OntologyIrBaseFormatter_number, type OntologyIrBaseFormatter_string, type OntologyIrBaseFormatter_timeDependent, type OntologyIrBaseFormatter_timestamp, type OntologyIrBaseParameterType, type OntologyIrBaseParameterType_decimal, type OntologyIrBaseParameterType_decimalList, type OntologyIrBaseParameterType_interfaceReference, type OntologyIrBaseParameterType_interfaceReferenceList, type OntologyIrBaseParameterType_objectReference, type OntologyIrBaseParameterType_objectReferenceList, type OntologyIrBaseParameterType_objectSetRid, type OntologyIrBaseParameterType_objectTypeReference, type OntologyIrBaseParameterType_struct, type OntologyIrBaseParameterType_structList, type OntologyIrBaseParameterType_timestamp, type OntologyIrBaseParameterType_timestampList, type OntologyIrBasicEmailBody, type OntologyIrBatchedFunctionRule, type OntologyIrBlockPermissionInformation, type OntologyIrCarbonWorkspaceComponentUrlTarget, type OntologyIrCarbonWorkspaceComponentUrlTarget_rid, type OntologyIrCarbonWorkspaceUrlTarget, type OntologyIrCipherTextPropertyType, type OntologyIrClassificationConstraint, type OntologyIrComparisonCondition, type OntologyIrCondition, type OntologyIrConditionValue, type OntologyIrConditionValue_interfaceParameterPropertyValue, type OntologyIrConditionValue_objectParameterPropertyValue, type OntologyIrConditionValue_parameterId, type OntologyIrConditionValue_parameterLength, type OntologyIrConditionValue_staticValue, type OntologyIrConditionValue_userProperty, type OntologyIrCondition_and, type OntologyIrCondition_comparison, type OntologyIrCondition_markings, type OntologyIrCondition_not, type OntologyIrCondition_or, type OntologyIrCondition_redacted, type OntologyIrCondition_regex, type OntologyIrCondition_true, type OntologyIrConditionalOverride, type OntologyIrConditionalValidationBlock, type OntologyIrDataSecurity, type OntologyIrDateBetweenOperation, type OntologyIrDateRangeValue, type OntologyIrDateRangeValue_fixed, type OntologyIrDateRangeValue_now, type OntologyIrDateRangeValue_relative, type OntologyIrDatetimeTimezone, type OntologyIrDatetimeTimezoneDefinition, type OntologyIrDatetimeTimezoneDefinition_zoneId, type OntologyIrDatetimeTimezone_static, type OntologyIrDatetimeTimezone_user, type OntologyIrDeleteInterfaceLinkRule, type OntologyIrDeprecatedActionTypeStatus, type OntologyIrDeprecatedLinkTypeStatus, type OntologyIrDeprecatedObjectTypeStatus, type OntologyIrDeprecatedPropertyTypeStatus, type OntologyIrDerivedPropertiesDefinition, type OntologyIrDerivedPropertyAggregation, type OntologyIrDivisionOperation, type OntologyIrDynamicObjectSet, type OntologyIrDynamicObjectSetInput, type OntologyIrDynamicObjectSetInputBase, type OntologyIrDynamicObjectSetInputUnioned, type OntologyIrDynamicObjectSetInput_base, type OntologyIrDynamicObjectSetInput_parameter, type OntologyIrDynamicObjectSetInput_unioned, type OntologyIrEmailBody, type OntologyIrEmailBody_basic, type OntologyIrEventMetadata, type OntologyIrExperimentalTimeDependentPropertyTypeV1, type OntologyIrFormContent, type OntologyIrFormContent_parameterId, type OntologyIrFormContent_sectionId, type OntologyIrFunctionExecutionWithRecipientInput, type OntologyIrFunctionExecutionWithRecipientInput_logicRuleValue, type OntologyIrFunctionExecutionWithRecipientInput_recipient, type OntologyIrFunctionGeneratedActionNotificationRecipients, type OntologyIrFunctionGeneratedNotificationBody, type OntologyIrFunctionRule, type OntologyIrImplementingLinkType, type OntologyIrInlineActionType, type OntologyIrInterfaceArrayPropertyType, type OntologyIrInterfaceCipherTextPropertyType, type OntologyIrInterfaceObjectParameterStructFieldValue, type OntologyIrInterfaceObjectParameterStructListFieldValue, type OntologyIrInterfaceParameterPropertyValue, type OntologyIrInterfaceParameterPropertyValueV2, type OntologyIrInterfacePropertyImplementation, type OntologyIrInterfacePropertyLogicRuleValue, type OntologyIrInterfacePropertyLogicRuleValue_logicRuleValue, type OntologyIrInterfacePropertyLogicRuleValue_structLogicRuleValue, type OntologyIrInterfacePropertyTypeImplementation, type OntologyIrInterfacePropertyTypeImplementation_propertyTypeRid, type OntologyIrInterfacePropertyTypeImplementation_reducedProperty, type OntologyIrInterfacePropertyTypeImplementation_structField, type OntologyIrInterfacePropertyTypeImplementation_structPropertyTypeMapping, type OntologyIrInterfacePropertyTypeType, type OntologyIrInterfacePropertyTypeType_array, type OntologyIrInterfacePropertyTypeType_attachment, type OntologyIrInterfacePropertyTypeType_boolean, type OntologyIrInterfacePropertyTypeType_byte, type OntologyIrInterfacePropertyTypeType_cipherText, type OntologyIrInterfacePropertyTypeType_date, type OntologyIrInterfacePropertyTypeType_decimal, type OntologyIrInterfacePropertyTypeType_double, type OntologyIrInterfacePropertyTypeType_experimentalTimeDependentV1, type OntologyIrInterfacePropertyTypeType_float, type OntologyIrInterfacePropertyTypeType_geohash, type OntologyIrInterfacePropertyTypeType_geoshape, type OntologyIrInterfacePropertyTypeType_geotimeSeriesReference, type OntologyIrInterfacePropertyTypeType_integer, type OntologyIrInterfacePropertyTypeType_long, type OntologyIrInterfacePropertyTypeType_marking, type OntologyIrInterfacePropertyTypeType_mediaReference, type OntologyIrInterfacePropertyTypeType_short, type OntologyIrInterfacePropertyTypeType_string, type OntologyIrInterfacePropertyTypeType_struct, type OntologyIrInterfacePropertyTypeType_timestamp, type OntologyIrInterfacePropertyTypeType_vector, type OntologyIrInterfaceSharedPropertyType, type OntologyIrInterfaceStructFieldType, type OntologyIrInterfaceStructPropertyType, type OntologyIrInterfaceTypeBlockDataV2, type OntologyIrIntermediaryLinkDefinition, type OntologyIrKnownMarketplaceIdentifiers, type OntologyIrLabelledValue, type OntologyIrLinkDefinition, type OntologyIrLinkDefinition_intermediary, type OntologyIrLinkDefinition_manyToMany, type OntologyIrLinkDefinition_oneToMany, type OntologyIrLinkType, type OntologyIrLinkTypeBlockDataV2, type OntologyIrLinkTypeStatus, type OntologyIrLinkTypeStatus_active, type OntologyIrLinkTypeStatus_deprecated, type OntologyIrLinkTypeStatus_example, type OntologyIrLinkTypeStatus_experimental, type OntologyIrLinkedEntityTypeId, type OntologyIrLinkedEntityTypeId_interfaceType, type OntologyIrLinkedEntityTypeId_objectType, type OntologyIrLogicRule, type OntologyIrLogicRuleValue, type OntologyIrLogicRuleValue_currentTime, type OntologyIrLogicRuleValue_currentUser, type OntologyIrLogicRuleValue_interfaceParameterPropertyValue, type OntologyIrLogicRuleValue_objectParameterPropertyValue, type OntologyIrLogicRuleValue_parameterId, type OntologyIrLogicRuleValue_scheduleRunRid, type OntologyIrLogicRuleValue_staticValue, type OntologyIrLogicRuleValue_synchronousWebhookOutput, type OntologyIrLogicRuleValue_uniqueIdentifier, type OntologyIrLogicRule_addInterfaceLinkRuleV2, type OntologyIrLogicRule_addInterfaceRule, type OntologyIrLogicRule_addLinkRule, type OntologyIrLogicRule_addObjectRule, type OntologyIrLogicRule_addOrModifyObjectRuleV2, type OntologyIrLogicRule_deleteLinkRule, type OntologyIrLogicRule_deleteObjectRule, type OntologyIrLogicRule_modifyInterfaceRule, type OntologyIrLogicRule_modifyObjectRule, type OntologyIrLogicRule_scenarioRule, type OntologyIrMandatoryMarkingConstraint, type OntologyIrManyToManyLinkDefinition, type OntologyIrManyToManyLinkTypeDatasetDatasource, type OntologyIrManyToManyLinkTypeDatasource, type OntologyIrManyToManyLinkTypeDatasourceDefinition, type OntologyIrManyToManyLinkTypeDatasourceDefinition_dataset, type OntologyIrManyToManyLinkTypeStreamDatasource, type OntologyIrMarketplaceActionType, type OntologyIrMarketplaceActionTypeDisplayMetadata, type OntologyIrMarketplaceActionTypeMetadata, type OntologyIrMarketplaceDeprecatedInterfaceTypeStatus, type OntologyIrMarketplaceInterfaceDefinedPropertyType, type OntologyIrMarketplaceInterfaceDefinedPropertyTypeConstraints, type OntologyIrMarketplaceInterfaceLinkType, type OntologyIrMarketplaceInterfacePropertyType, type OntologyIrMarketplaceInterfacePropertyType_interfaceDefinedPropertyType, type OntologyIrMarketplaceInterfacePropertyType_sharedPropertyBasedPropertyType, type OntologyIrMarketplaceInterfaceType, type OntologyIrMarketplaceInterfaceTypeStatus, type OntologyIrMarketplaceInterfaceTypeStatus_active, type OntologyIrMarketplaceInterfaceTypeStatus_deprecated, type OntologyIrMarketplaceInterfaceTypeStatus_example, type OntologyIrMarketplaceInterfaceTypeStatus_experimental, type OntologyIrMarketplaceObjectTypeEntityMetadata, type OntologyIrMarketplaceSharedPropertyBasedPropertyType, type OntologyIrMarkingsCondition, type OntologyIrMediaSourceRid, type OntologyIrMediaSourceRid_datasetRid, type OntologyIrMediaSourceRid_mediaSetRid, type OntologyIrModifyInterfaceRule, type OntologyIrModifyObjectRule, type OntologyIrMultipassUserFilter, type OntologyIrMultipassUserFilter_groupFilter, type OntologyIrMultipassUserInGroupFilter, type OntologyIrMultiplicationOperation, type OntologyIrNestedInterfacePropertyTypeImplementation, type OntologyIrNestedInterfacePropertyTypeImplementation_propertyTypeRid, type OntologyIrNestedInterfacePropertyTypeImplementation_structField, type OntologyIrNestedInterfacePropertyTypeImplementation_structPropertyTypeMapping, type OntologyIrNewObjectUrlTarget, type OntologyIrNonNumericSeriesValueMetadata, type OntologyIrNonNumericSeriesValueUnit, type OntologyIrNotCondition, type OntologyIrNotificationResultTypeLink, type OntologyIrNotificationTemplateInputValue, type OntologyIrNotificationTemplateInputValue_actionTriggererValue, type OntologyIrNotificationTemplateInputValue_logicRuleValue, type OntologyIrNotificationTemplateInputValue_recipientValue, type OntologyIrNumberFormatCurrency, type OntologyIrNumberFormatCustomUnit, type OntologyIrNumberFormatPrePostFix, type OntologyIrNumberFormatUnit, type OntologyIrNumberFormatter, type OntologyIrNumberFormatter_base, type OntologyIrNumberFormatter_basisPoint, type OntologyIrNumberFormatter_billions, type OntologyIrNumberFormatter_bytes, type OntologyIrNumberFormatter_currency, type OntologyIrNumberFormatter_customUnit, type OntologyIrNumberFormatter_duration, type OntologyIrNumberFormatter_millions, type OntologyIrNumberFormatter_ordinal, type OntologyIrNumberFormatter_perMille, type OntologyIrNumberFormatter_percentage, type OntologyIrNumberFormatter_prePost, type OntologyIrNumberFormatter_thousands, type OntologyIrNumberFormatter_unit, type OntologyIrNumericOrNonNumericSeriesValueMetadataV2, type OntologyIrNumericSeriesValueMetadata, type OntologyIrNumericSeriesValueUnit, type OntologyIrNumericSeriesValueUnit_customUnit, type OntologyIrNumericSeriesValueUnit_standardUnit, type OntologyIrObjectParameterPropertyValue, type OntologyIrObjectParameterStructFieldValue, type OntologyIrObjectParameterStructListFieldValue, type OntologyIrObjectPropertyReference, type OntologyIrObjectQueryPrefill, type OntologyIrObjectQueryPropertyValue, type OntologyIrObjectSetRidPrefill, type OntologyIrObjectSetSearchAround, type OntologyIrObjectSetTransform, type OntologyIrObjectSetTransform_propertyFilter, type OntologyIrObjectSetTransform_searchAround, type OntologyIrObjectType, type OntologyIrObjectTypeBlockDataV2, type OntologyIrObjectTypeDatasetDatasource, type OntologyIrObjectTypeDatasetDatasourceV2, type OntologyIrObjectTypeDatasetDatasourceV3, type OntologyIrObjectTypeDatasource, type OntologyIrObjectTypeDatasourceDefinition, type OntologyIrObjectTypeDatasourceDefinition_datasetV2, type OntologyIrObjectTypeDatasourceDefinition_datasetV3, type OntologyIrObjectTypeDatasourceDefinition_derived, type OntologyIrObjectTypeDatasourceDefinition_direct, type OntologyIrObjectTypeDatasourceDefinition_editsOnly, type OntologyIrObjectTypeDatasourceDefinition_geotimeSeries, type OntologyIrObjectTypeDatasourceDefinition_mediaSetView, type OntologyIrObjectTypeDatasourceDefinition_restrictedStream, type OntologyIrObjectTypeDatasourceDefinition_restrictedViewV2, type OntologyIrObjectTypeDatasourceDefinition_streamV2, type OntologyIrObjectTypeDatasourceDefinition_streamV3, type OntologyIrObjectTypeDatasourceDefinition_table, type OntologyIrObjectTypeDatasourceDefinition_timeSeries, type OntologyIrObjectTypeDerivedPropertiesDatasource, type OntologyIrObjectTypeDirectDatasource, type OntologyIrObjectTypeEditsOnlyDatasource, type OntologyIrObjectTypeGeotimeSeriesDatasource, type OntologyIrObjectTypeInterfaceImplementation, type OntologyIrObjectTypeMediaDatasource, type OntologyIrObjectTypeMediaSetViewDatasource, type OntologyIrObjectTypeRestrictedStreamDatasource, type OntologyIrObjectTypeRestrictedViewDatasource, type OntologyIrObjectTypeRestrictedViewDatasourceV2, type OntologyIrObjectTypeStatus, type OntologyIrObjectTypeStatus_active, type OntologyIrObjectTypeStatus_deprecated, type OntologyIrObjectTypeStatus_endorsed, type OntologyIrObjectTypeStatus_example, type OntologyIrObjectTypeStatus_experimental, type OntologyIrObjectTypeStreamDatasource, type OntologyIrObjectTypeStreamDatasourceV2, type OntologyIrObjectTypeStreamDatasourceV3, type OntologyIrObjectTypeTableDatasource, type OntologyIrObjectTypeTimeSeriesDatasource, type OntologyIrObjectTypeTraits, type OntologyIrObjectsWritebackDataset, type OntologyIrOneToManyLinkDefinition, type OntologyIrOntologyBlockDataV2, type OntologyIrOrCondition, type OntologyIrParameter, type OntologyIrParameterActionNotificationRecipients, type OntologyIrParameterCbacConstraint, type OntologyIrParameterCbacMarking, type OntologyIrParameterCbacMarkingOrEmpty, type OntologyIrParameterCbacMarkingOrEmpty_cbacMarking, type OntologyIrParameterCbacMarkingOrEmpty_empty, type OntologyIrParameterDateRangeValue, type OntologyIrParameterDateTimeRange, type OntologyIrParameterDateTimeRangeOrEmpty, type OntologyIrParameterDateTimeRangeOrEmpty_datetime, type OntologyIrParameterDateTimeRangeOrEmpty_empty, type OntologyIrParameterDisplayMetadata, type OntologyIrParameterMultipassUser, type OntologyIrParameterMultipassUserOrEmpty, type OntologyIrParameterMultipassUserOrEmpty_empty, type OntologyIrParameterMultipassUserOrEmpty_user, type OntologyIrParameterObjectPropertyValue, type OntologyIrParameterObjectPropertyValueOrEmpty, type OntologyIrParameterObjectPropertyValueOrEmpty_empty, type OntologyIrParameterObjectPropertyValueOrEmpty_objectPropertyValue, type OntologyIrParameterObjectQuery, type OntologyIrParameterObjectQueryOrEmpty, type OntologyIrParameterObjectQueryOrEmpty_empty, type OntologyIrParameterObjectQueryOrEmpty_objectQuery, type OntologyIrParameterObjectTypeReference, type OntologyIrParameterObjectTypeReferenceOrEmpty, type OntologyIrParameterObjectTypeReferenceOrEmpty_empty, type OntologyIrParameterObjectTypeReferenceOrEmpty_objectTypeReference, type OntologyIrParameterPrefill, type OntologyIrParameterPrefillOverride, type OntologyIrParameterPrefill_interfaceParameterPropertyValue, type OntologyIrParameterPrefill_objectParameterPropertyValue, type OntologyIrParameterPrefill_objectQueryPrefill, type OntologyIrParameterPrefill_objectQueryPropertyValue, type OntologyIrParameterPrefill_objectSetRidPrefill, type OntologyIrParameterPrefill_parameterTransformPrefill, type OntologyIrParameterPrefill_redacted, type OntologyIrParameterPrefill_staticObject, type OntologyIrParameterPrefill_staticObjectV2, type OntologyIrParameterPrefill_staticValue, type OntologyIrParameterRange, type OntologyIrParameterRangeOrEmpty, type OntologyIrParameterRangeOrEmpty_empty, type OntologyIrParameterRangeOrEmpty_range, type OntologyIrParameterRangeValue, type OntologyIrParameterTransformPrefill, type OntologyIrParameterTransformPrefillValue, type OntologyIrParameterTransformPrefillValue_objectParameterPropertyValue, type OntologyIrParameterTransformPrefillValue_parameterValue, type OntologyIrParameterTransformPrefillValue_staticValue, type OntologyIrParameterTransformPrefill_addition, type OntologyIrParameterTransformPrefill_dateBetween, type OntologyIrParameterTransformPrefill_dateCurrent, type OntologyIrParameterTransformPrefill_division, type OntologyIrParameterTransformPrefill_multiplication, type OntologyIrParameterTransformPrefill_stringConcat, type OntologyIrParameterTransformPrefill_subtraction, type OntologyIrParameterTransformPrefill_timeBetween, type OntologyIrParameterTransformPrefill_timeCurrent, type OntologyIrParameterValidation, type OntologyIrParameterValidationBlock, type OntologyIrParameterValidationBlockOverride, type OntologyIrParameterValidationBlockOverride_allowedValues, type OntologyIrParameterValidationBlockOverride_parameterRequired, type OntologyIrParameterValidationBlockOverride_prefill, type OntologyIrParameterValidationBlockOverride_visibility, type OntologyIrParameterValidationDisplayMetadata, type OntologyIrParameterValueOneOf, type OntologyIrParameterValueOneOfOrEmpty, type OntologyIrParameterValueOneOfOrEmpty_empty, type OntologyIrParameterValueOneOfOrEmpty_oneOf, type OntologyIrPrePostFix, type OntologyIrPropertySecurityGroup, type OntologyIrPropertySecurityGroups, type OntologyIrPropertyToColumnMapping, type OntologyIrPropertyToPropertyMapping, type OntologyIrPropertyType, type OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation, type OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation_internalInterpolation, type OntologyIrPropertyTypeReferenceOrNonNumericInternalInterpolation_propertyType, type OntologyIrPropertyTypeReferenceOrNumericInternalInterpolation, type OntologyIrPropertyTypeReferenceOrNumericInternalInterpolation_internalInterpolation, type OntologyIrPropertyTypeReferenceOrNumericInternalInterpolation_propertyType, type OntologyIrPropertyTypeReferenceOrStringConstant, type OntologyIrPropertyTypeReferenceOrStringConstant_constant, type OntologyIrPropertyTypeReferenceOrStringConstant_propertyType, type OntologyIrPropertyTypeStatus, type OntologyIrPropertyTypeStatus_active, type OntologyIrPropertyTypeStatus_deprecated, type OntologyIrPropertyTypeStatus_example, type OntologyIrPropertyTypeStatus_experimental, type OntologyIrQualifiedSeriesIdPropertyValue, type OntologyIrReducedPropertyTypeImplementation, type OntologyIrRegexCondition, type OntologyIrRidUrlTarget, type OntologyIrRuleSetBinding, type OntologyIrRunScheduleDeploymentEffect, type OntologyIrScenarioRule, type OntologyIrScenarioScope, type OntologyIrSchemaMigrationBlockData, type OntologyIrSchemaTransitionsWithSchemaVersion, type OntologyIrSection, type OntologyIrSectionConditionalOverride, type OntologyIrSectionDisplayBlock, type OntologyIrSecurityGroupAndCondition, type OntologyIrSecurityGroupComparisonCondition, type OntologyIrSecurityGroupComparisonValue, type OntologyIrSecurityGroupComparisonValue_constant, type OntologyIrSecurityGroupComparisonValue_property, type OntologyIrSecurityGroupComparisonValue_userProperty, type OntologyIrSecurityGroupGranularCondition, type OntologyIrSecurityGroupGranularCondition_and, type OntologyIrSecurityGroupGranularCondition_comparison, type OntologyIrSecurityGroupGranularCondition_markings, type OntologyIrSecurityGroupGranularCondition_not, type OntologyIrSecurityGroupGranularCondition_or, type OntologyIrSecurityGroupGranularCondition_true, type OntologyIrSecurityGroupGranularPolicy, type OntologyIrSecurityGroupGranularSecurityDefinition, type OntologyIrSecurityGroupMandatoryOnlySecurityDefinition, type OntologyIrSecurityGroupMandatoryPolicy, type OntologyIrSecurityGroupMarkingsCondition, type OntologyIrSecurityGroupNotCondition, type OntologyIrSecurityGroupOrCondition, type OntologyIrSecurityGroupSecurityDefinition, type OntologyIrSecurityGroupSecurityDefinition_granular, type OntologyIrSecurityGroupSecurityDefinition_mandatoryOnly, type OntologyIrSensorTrait, type OntologyIrSeriesValueMetadata, type OntologyIrSeriesValueMetadata_enum, type OntologyIrSeriesValueMetadata_numeric, type OntologyIrSeriesValueMetadata_numericOrNonNumeric, type OntologyIrSeriesValueMetadata_numericOrNonNumericV2, type OntologyIrSharedPropertyType, type OntologyIrSharedPropertyTypeBlockDataV2, type OntologyIrShortBody, type OntologyIrShortBody_basic, type OntologyIrStaticObjectPrefillV2, type OntologyIrStaticValue, type OntologyIrStaticWebhookWithDirectInput, type OntologyIrStaticWebhookWithFunctionResultInput, type OntologyIrStringConcatOperation, type OntologyIrStructFieldConditionalOverride, type OntologyIrStructFieldConditionalValidationBlock, type OntologyIrStructFieldImplementation, type OntologyIrStructFieldPrefill, type OntologyIrStructFieldPrefillOverride, type OntologyIrStructFieldPrefill_interfaceObjectParameterStructFieldValue, type OntologyIrStructFieldPrefill_interfaceObjectParameterStructListFieldValue, type OntologyIrStructFieldPrefill_objectParameterStructFieldValue, type OntologyIrStructFieldPrefill_objectParameterStructListFieldValue, type OntologyIrStructFieldType, type OntologyIrStructFieldValidation, type OntologyIrStructFieldValidationBlock, type OntologyIrStructFieldValidationBlockOverride, type OntologyIrStructFieldValidationBlockOverride_allowedValues, type OntologyIrStructFieldValidationBlockOverride_parameterRequired, type OntologyIrStructFieldValidationBlockOverride_prefill, type OntologyIrStructFieldValidationBlockOverride_visibility, type OntologyIrStructFieldValidationDisplayMetadata, type OntologyIrStructMainValue, type OntologyIrStructPropertyType, type OntologyIrStructPropertyTypeImplementation, type OntologyIrStructuredShortBody, type OntologyIrSubtractionOperation, type OntologyIrSynchronousPreWritebackEffect, type OntologyIrSynchronousPreWritebackEffect_runScheduleDeployment, type OntologyIrSynchronousPreWritebackWebhook, type OntologyIrSynchronousPreWritebackWebhook_staticDirectInput, type OntologyIrSynchronousPreWritebackWebhook_staticFunctionInput, type OntologyIrTemplateNotificationBody, type OntologyIrTimeBetweenOperation, type OntologyIrTimeDependentFormatter, type OntologyIrTimeDependentNonNumericSeriesFormat, type OntologyIrTimeDependentNumericOrNonNumericSeriesFormat, type OntologyIrTimeDependentNumericOrNonNumericSeriesFormatV2, type OntologyIrTimeDependentNumericSeriesFormat, type OntologyIrTimeDependentSeriesFormat, type OntologyIrTimeDependentSeriesFormat_nonNumeric, type OntologyIrTimeDependentSeriesFormat_numeric, type OntologyIrTimeDependentSeriesFormat_numericOrNonNumeric, type OntologyIrTimeDependentSeriesFormat_numericOrNonNumericV2, type OntologyIrTimeSeriesMetadata, type OntologyIrTimestampFormatter, type OntologyIrType, type OntologyIrType_array, type OntologyIrType_attachment, type OntologyIrType_boolean, type OntologyIrType_byte, type OntologyIrType_cipherText, type OntologyIrType_date, type OntologyIrType_decimal, type OntologyIrType_double, type OntologyIrType_experimentalTimeDependentV1, type OntologyIrType_float, type OntologyIrType_geohash, type OntologyIrType_geoshape, type OntologyIrType_geotimeSeriesReference, type OntologyIrType_integer, type OntologyIrType_long, type OntologyIrType_marking, type OntologyIrType_mediaReference, type OntologyIrType_short, type OntologyIrType_string, type OntologyIrType_struct, type OntologyIrType_timestamp, type OntologyIrType_vector, type OntologyIrUrlTarget, type OntologyIrUrlTarget_carbonWorkspace, type OntologyIrUrlTarget_logicRuleValue, type OntologyIrUrlTarget_newObject, type OntologyIrUrlTarget_relativeUrlString, type OntologyIrUrlTarget_rid, type OntologyIrV2, type OntologyIrValidationRule, type OntologyIrValueReferenceSource, type OntologyIrValueReferenceSource_propertyTypeRid, type OntologyIrValueTypeBlockData, type OntologyIrValueTypeBlockDataEntry, type OntologyIrValueTypeReferenceWithMetadata, type OntologyIrWorkflowObjectTypeTraitImpl, type OntologyLoadAllEntitiesRequest, type OntologyLoadAllRequest, type OntologyLoadDatasourcesRequest, type OntologyLoadDatasourcesResponse, type OntologyLoadEntitiesRequest, type OntologyLoadEntitiesResponse, type OntologyLoadRequest, type OntologyLoadResponse, type OntologyMetadataValidationError, type OntologyMetadataValidationError_actionType, type OntologyMetadataValidationError_interfaceType, type OntologyMetadataValidationError_linkType, type OntologyMetadataValidationError_objectType, type OntologyMetadataValidationError_ruleSet, type OntologyMetadataValidationError_sharedPropertyType, type OntologyMetadataValidationError_typeGroup, type OntologyMetadataValidationError_workflow, type OntologyModificationEvent, type OntologyModificationEvent_actionTypeCreated, type OntologyModificationEvent_actionTypeDeleted, type OntologyModificationEvent_actionTypeUpdated, type OntologyModificationEvent_branchClosed, type OntologyModificationEvent_branchDeleted, type OntologyModificationEvent_branchMerged, type OntologyModificationEvent_interfaceTypeCreated, type OntologyModificationEvent_interfaceTypeDeleted, type OntologyModificationEvent_interfaceTypeUpdated, type OntologyModificationEvent_linkTypeCreated, type OntologyModificationEvent_linkTypeDeleted, type OntologyModificationEvent_linkTypeUpdated, type OntologyModificationEvent_objectTypeCreated, type OntologyModificationEvent_objectTypeDeleted, type OntologyModificationEvent_objectTypeUpdated, type OntologyModificationEvent_sharedPropertyTypeCreated, type OntologyModificationEvent_sharedPropertyTypeDeleted, type OntologyModificationEvent_sharedPropertyTypeUpdated, type OntologyModifyRequest, type OntologyModifyResponse, type OntologyPackageRid, type OntologyProposalIdentifier, type OntologyProposalIdentifier_ontologyVersion, type OntologyProposalRid, type OntologyRid, type OntologyRidAndBranch, type OntologyRidsForEntitiesRequest, type OntologyRidsForEntitiesResponse, type OntologySourceType, type OntologySparkDelegateDataset, type OntologySparkInputManagerRid, type OntologySparkInputProperties, type OntologySparkQueryableSource, type OntologyVersion, type OrCondition, type OrConditionModification, type OrganizationMarkingId, type OrganizationRid, type OrganizationRidsAndEntityResourceIdentifiers, type OrganizationRidsForOntologyResponse, type OtherValueAllowed, type OutputMode, type PackagedEntityRid, type PackagedEntityRid_actionTypeRid, type PackagedEntityRid_interfaceTypeRid, type PackagedEntityRid_linkTypeRid, type PackagedEntityRid_objectTypeRid, type PackagedEntityRid_sharedPropertyTypeRid, type Parameter, type ParameterActionNotificationRecipients, type ParameterActionNotificationRecipientsModification, type ParameterAttachment, type ParameterAttachmentOrEmpty, type ParameterAttachmentOrEmpty_attachment, type ParameterAttachmentOrEmpty_empty, type ParameterBoolean, type ParameterBooleanOrEmpty, type ParameterBooleanOrEmpty_boolean, type ParameterBooleanOrEmpty_empty, type ParameterCbacConstraint, type ParameterCbacConstraintModification, type ParameterCbacMarking, type ParameterCbacMarkingModification, type ParameterCbacMarkingOrEmpty, type ParameterCbacMarkingOrEmptyModification, type ParameterCbacMarkingOrEmptyModification_cbacMarking, type ParameterCbacMarkingOrEmptyModification_empty, type ParameterCbacMarkingOrEmpty_cbacMarking, type ParameterCbacMarkingOrEmpty_empty, type ParameterDateRangeValue, type ParameterDateRangeValueModification, type ParameterDateTimeRange, type ParameterDateTimeRangeModification, type ParameterDateTimeRangeOrEmpty, type ParameterDateTimeRangeOrEmptyModification, type ParameterDateTimeRangeOrEmptyModification_datetime, type ParameterDateTimeRangeOrEmptyModification_empty, type ParameterDateTimeRangeOrEmpty_datetime, type ParameterDateTimeRangeOrEmpty_empty, type ParameterDisplayMetadata, type ParameterFreeText, type ParameterFreeTextOrEmpty, type ParameterFreeTextOrEmpty_empty, type ParameterFreeTextOrEmpty_text, type ParameterGeohash, type ParameterGeohashOrEmpty, type ParameterGeohashOrEmpty_empty, type ParameterGeohashOrEmpty_geohash, type ParameterGeoshape, type ParameterGeoshapeOrEmpty, type ParameterGeoshapeOrEmpty_empty, type ParameterGeoshapeOrEmpty_geoshape, type ParameterGeotimeSeriesReference, type ParameterGeotimeSeriesReferenceOrEmpty, type ParameterGeotimeSeriesReferenceOrEmpty_empty, type ParameterGeotimeSeriesReferenceOrEmpty_geotimeSeries, type ParameterId, type ParameterInterfaceObjectQuery, type ParameterInterfaceObjectQueryModification, type ParameterInterfaceObjectQueryOrEmpty, type ParameterInterfaceObjectQueryOrEmptyModification, type ParameterInterfaceObjectQueryOrEmptyModification_empty, type ParameterInterfaceObjectQueryOrEmptyModification_interfaceObjectQuery, type ParameterInterfaceObjectQueryOrEmpty_empty, type ParameterInterfaceObjectQueryOrEmpty_interfaceObjectQuery, type ParameterInterfacePropertyValueOrEmpty, type ParameterInterfacePropertyValueOrEmptyModification, type ParameterInterfacePropertyValueOrEmptyModification_empty, type ParameterInterfacePropertyValueOrEmptyModification_unrestricted, type ParameterInterfacePropertyValueOrEmpty_empty, type ParameterInterfacePropertyValueOrEmpty_unrestricted, type ParameterLength, type ParameterLength_parameterId, type ParameterMandatoryMarking, type ParameterMandatoryMarkingOrEmpty, type ParameterMandatoryMarkingOrEmpty_empty, type ParameterMandatoryMarkingOrEmpty_mandatoryMarking, type ParameterMediaReference, type ParameterMediaReferenceOrEmpty, type ParameterMediaReferenceOrEmpty_empty, type ParameterMediaReferenceOrEmpty_mediaReference, type ParameterMultipassGroup, type ParameterMultipassGroupOrEmpty, type ParameterMultipassGroupOrEmpty_empty, type ParameterMultipassGroupOrEmpty_group, type ParameterMultipassUser, type ParameterMultipassUserModification, type ParameterMultipassUserOrEmpty, type ParameterMultipassUserOrEmptyModification, type ParameterMultipassUserOrEmptyModification_empty, type ParameterMultipassUserOrEmptyModification_user, type ParameterMultipassUserOrEmpty_empty, type ParameterMultipassUserOrEmpty_user, type ParameterObjectList, type ParameterObjectListOrEmpty, type ParameterObjectListOrEmpty_empty, type ParameterObjectListOrEmpty_objectList, type ParameterObjectPropertyValue, type ParameterObjectPropertyValueModification, type ParameterObjectPropertyValueOrEmpty, type ParameterObjectPropertyValueOrEmptyModification, type ParameterObjectPropertyValueOrEmptyModification_empty, type ParameterObjectPropertyValueOrEmptyModification_objectPropertyValue, type ParameterObjectPropertyValueOrEmpty_empty, type ParameterObjectPropertyValueOrEmpty_objectPropertyValue, type ParameterObjectQuery, type ParameterObjectQueryModification, type ParameterObjectQueryOrEmpty, type ParameterObjectQueryOrEmptyModification, type ParameterObjectQueryOrEmptyModification_empty, type ParameterObjectQueryOrEmptyModification_objectQuery, type ParameterObjectQueryOrEmpty_empty, type ParameterObjectQueryOrEmpty_objectQuery, type ParameterObjectSetRid, type ParameterObjectSetRidOrEmpty, type ParameterObjectSetRidOrEmpty_empty, type ParameterObjectSetRidOrEmpty_objectSetRid, type ParameterObjectTypeReference, type ParameterObjectTypeReferenceModification, type ParameterObjectTypeReferenceOrEmpty, type ParameterObjectTypeReferenceOrEmptyModification, type ParameterObjectTypeReferenceOrEmptyModification_empty, type ParameterObjectTypeReferenceOrEmptyModification_objectTypeReference, type ParameterObjectTypeReferenceOrEmpty_empty, type ParameterObjectTypeReferenceOrEmpty_objectTypeReference, type ParameterPrefill, type ParameterPrefillModification, type ParameterPrefillModification_interfaceParameterPropertyValue, type ParameterPrefillModification_interfaceParameterPropertyValueV2, type ParameterPrefillModification_objectParameterPropertyValue, type ParameterPrefillModification_objectQueryPrefill, type ParameterPrefillModification_objectQueryPropertyValue, type ParameterPrefillModification_objectSetRidPrefill, type ParameterPrefillModification_parameterTransformPrefill, type ParameterPrefillModification_redacted, type ParameterPrefillModification_staticObject, type ParameterPrefillModification_staticObjectV2, type ParameterPrefillModification_staticValue, type ParameterPrefillOverride, type ParameterPrefillOverrideModification, type ParameterPrefill_interfaceParameterPropertyValue, type ParameterPrefill_interfaceParameterPropertyValueV2, type ParameterPrefill_objectParameterPropertyValue, type ParameterPrefill_objectQueryPrefill, type ParameterPrefill_objectQueryPropertyValue, type ParameterPrefill_objectSetRidPrefill, type ParameterPrefill_parameterTransformPrefill, type ParameterPrefill_redacted, type ParameterPrefill_staticObject, type ParameterPrefill_staticObjectV2, type ParameterPrefill_staticValue, type ParameterRange, type ParameterRangeModification, type ParameterRangeOrEmpty, type ParameterRangeOrEmptyModification, type ParameterRangeOrEmptyModification_empty, type ParameterRangeOrEmptyModification_range, type ParameterRangeOrEmpty_empty, type ParameterRangeOrEmpty_range, type ParameterRangeValue, type ParameterRangeValueModification, type ParameterRenderHint, type ParameterRequiredConfiguration, type ParameterRequiredOverride, type ParameterRid, type ParameterScenarioReference, type ParameterScenarioReferenceOrEmpty, type ParameterScenarioReferenceOrEmpty_empty, type ParameterScenarioReferenceOrEmpty_scenarioReference, type ParameterStructOrEmpty, type ParameterStructOrEmpty_delegateToAllowedStructFieldValues, type ParameterStructOrEmpty_empty, type ParameterTextRegex, type ParameterTimeSeriesReference, type ParameterTimeSeriesReferenceOrEmpty, type ParameterTimeSeriesReferenceOrEmpty_empty, type ParameterTimeSeriesReferenceOrEmpty_timeSeriesReference, type ParameterTransformPrefill, type ParameterTransformPrefillValue, type ParameterTransformPrefillValue_objectParameterPropertyValue, type ParameterTransformPrefillValue_parameterValue, type ParameterTransformPrefillValue_staticValue, type ParameterTransformPrefill_addition, type ParameterTransformPrefill_dateBetween, type ParameterTransformPrefill_dateCurrent, type ParameterTransformPrefill_division, type ParameterTransformPrefill_multiplication, type ParameterTransformPrefill_stringConcat, type ParameterTransformPrefill_subtraction, type ParameterTransformPrefill_timeBetween, type ParameterTransformPrefill_timeCurrent, type ParameterValidation, type ParameterValidationBlock, type ParameterValidationBlockModification, type ParameterValidationBlockOverride, type ParameterValidationBlockOverrideModification, type ParameterValidationBlockOverrideModification_allowedValues, type ParameterValidationBlockOverrideModification_parameterRequired, type ParameterValidationBlockOverrideModification_prefill, type ParameterValidationBlockOverrideModification_visibility, type ParameterValidationBlockOverrideRequest, type ParameterValidationBlockOverrideRequest_allowedValues, type ParameterValidationBlockOverrideRequest_parameterRequired, type ParameterValidationBlockOverrideRequest_prefill, type ParameterValidationBlockOverrideRequest_visibility, type ParameterValidationBlockOverride_allowedValues, type ParameterValidationBlockOverride_parameterRequired, type ParameterValidationBlockOverride_prefill, type ParameterValidationBlockOverride_visibility, type ParameterValidationBlockRequest, type ParameterValidationDisplayMetadata, type ParameterValidationDisplayMetadataModification, type ParameterValidationModification, type ParameterValidationNotFoundError, type ParameterValidationReferencesLaterParametersError, type ParameterValidationRequest, type ParameterValueOneOf, type ParameterValueOneOfOrEmpty, type ParameterValueOneOfOrEmpty_empty, type ParameterValueOneOfOrEmpty_oneOf, type ParameterValueType, type ParameterValueTypeOrEmpty, type ParameterValueTypeOrEmpty_missingParameterValueType, type ParameterValueTypeOrEmpty_valueType, type ParameterValueTypeReference, type ParameterValueTypeReferenceWithVersionId, type ParameterValueTypeWithVersionId, type ParameterValueTypeWithVersionIdOrEmpty, type ParameterValueTypeWithVersionIdOrEmpty_missingParameterValueType, type ParameterValueTypeWithVersionIdOrEmpty_valueType, type ParameterVisibility, type ParametersDoNotMatchParameterOrderingError, type PartialObjectType, type PartialObjectTypeCreateRequest, type PartialObjectTypeDeleteRequest, type PartialObjectTypeModifyRequest, type PartialObjectTypeModifyRequest_create, type PartialObjectTypeModifyRequest_delete, type PartialObjectTypeModifyRequest_update, type PartialObjectTypeUpdateRequest, type PartialObjectTypeWithoutRids, type PatchBackupInitializationConfigurationSourceDoesNotExistError, type PatchesConfiguration, type PolicyVersion, type PostOntologyBlockDataRequest, type PostOntologyBlockDataResponse, type PrePostFix, type PrimaryKeyConstraint, type PrimaryKeyPropertySecurityGroupType, type PrimitiveOrStructLogicRuleModification, type PrimitiveOrStructLogicRuleModification_logicRuleValueModification, type PrimitiveOrStructLogicRuleModification_structLogicRuleValueModification, type PrincipalId, type ProjectEntityRid, type ProjectEntityRid_actionTypeRid, type ProjectEntityRid_interfaceTypeRid, type ProjectEntityRid_linkTypeRid, type ProjectEntityRid_objectTypeRid, type ProjectEntityRid_sharedPropertyTypeRid, type PropertiesReferenceDuplicateColumnNameWrapper, type Property, type PropertyId, type PropertyPredicate, type PropertyPredicate_and, type PropertyPredicate_hasId, type PropertyPredicate_hasRid, type PropertyPredicate_not, type PropertyPredicate_or, type PropertyPropertySecurityGroupType, type PropertyRenderHint, type PropertyRid, type PropertySecurityGroup, type PropertySecurityGroupCreate, type PropertySecurityGroupDelete, type PropertySecurityGroupModification, type PropertySecurityGroupName, type PropertySecurityGroupNoop, type PropertySecurityGroupPackagingV1, type PropertySecurityGroupPackagingV2, type PropertySecurityGroupPackagingVersion, type PropertySecurityGroupPackagingVersion_v1, type PropertySecurityGroupPackagingVersion_v2, type PropertySecurityGroupPatch, type PropertySecurityGroupPatch_create, type PropertySecurityGroupPatch_delete, type PropertySecurityGroupPatch_noop, type PropertySecurityGroupPatch_update, type PropertySecurityGroupRid, type PropertySecurityGroupType, type PropertySecurityGroupType_primaryKey, type PropertySecurityGroupType_property, type PropertySecurityGroupUpdate, type PropertySecurityGroups, type PropertySecurityGroupsModification, type PropertyType, type PropertyTypeDataConstraints, type PropertyTypeDataConstraintsWrapper, type PropertyTypeDataConstraints_array, type PropertyTypeDataConstraints_boolean, type PropertyTypeDataConstraints_date, type PropertyTypeDataConstraints_decimal, type PropertyTypeDataConstraints_double, type PropertyTypeDataConstraints_float, type PropertyTypeDataConstraints_integer, type PropertyTypeDataConstraints_long, type PropertyTypeDataConstraints_short, type PropertyTypeDataConstraints_string, type PropertyTypeDataConstraints_struct, type PropertyTypeDataConstraints_timestamp, type PropertyTypeDataValue, type PropertyTypeDataValue_array, type PropertyTypeDataValue_boolean, type PropertyTypeDataValue_byte, type PropertyTypeDataValue_date, type PropertyTypeDataValue_decimal, type PropertyTypeDataValue_double, type PropertyTypeDataValue_float, type PropertyTypeDataValue_integer, type PropertyTypeDataValue_long, type PropertyTypeDataValue_short, type PropertyTypeDataValue_string, type PropertyTypeDataValue_timestamp, type PropertyTypeDisplayMetadata, type PropertyTypeId, type PropertyTypeIdentifier, type PropertyTypeIdentifier_id, type PropertyTypeIdentifier_rid, type PropertyTypeLocator, type PropertyTypeMappingInfo, type PropertyTypeMappingInfo_column, type PropertyTypeMappingInfo_editOnly, type PropertyTypeMappingInfo_struct, type PropertyTypeReference, type PropertyTypeReferenceOrNonNumericInternalInterpolation, type PropertyTypeReferenceOrNonNumericInternalInterpolation_internalInterpolation, type PropertyTypeReferenceOrNonNumericInternalInterpolation_propertyType, type PropertyTypeReferenceOrNumericInternalInterpolation, type PropertyTypeReferenceOrNumericInternalInterpolation_internalInterpolation, type PropertyTypeReferenceOrNumericInternalInterpolation_propertyType, type PropertyTypeReferenceOrStringConstant, type PropertyTypeReferenceOrStringConstant_constant, type PropertyTypeReferenceOrStringConstant_propertyType, type PropertyTypeReference_baseType, type PropertyTypeRid, type PropertyTypeStatus, type PropertyTypeStatus_active, type PropertyTypeStatus_deprecated, type PropertyTypeStatus_example, type PropertyTypeStatus_experimental, type PropertyWithoutRid, type PutActionTypeRequest, type PutParameterRequest, type PutParameterRequestModification, type PutSectionRequest, type PutSectionRequestModification, type QualifiedSeriesIdPropertyValue, type Quantization, type QuiverDashboardReference, type QuiverDashboardRid, type QuiverDashboardVersion, type RangeSizeConstraint$1 as RangeSizeConstraint, type Redacted, type RedactionOverrideOptions, type RedactionOverrideOptions_everyoneTrusted, type ReducedPropertyTypeImplementation, type ReferencedLinkTypesInWorkflowNotFoundError, type ReferencedLinkTypesNotFoundError, type ReferencedObjectTypesChange, type ReferencedObjectTypesInWorkflowNotFoundError, type ReferencedObjectTypesNotFoundError, type RegexCondition, type RegexConditionModification, type RegexConstraint$1 as RegexConstraint, type RelationCardinality, type RelationDisplayMetadata, type RelationId, type RelationRid, type RelativeDateRangeTense, type RelativeDateRangeValue, type RenderingSettings, type RenderingSettings_allNotificationRenderingMustSucceed, type RenderingSettings_anyNotificationRenderingCanFail, type ResolvedBranch, type ResolvedBranch_default, type ResolvedBranch_nonDefault, type ResolvedDefaultBranch, type ResolvedInterfacePropertyType, type ResolvedInterfacePropertyTypeConstraints, type ResolvedNonDefaultBranch, type RestrictedViewName, type RestrictedViewRid, type RestrictedViewTransactionRid, type RetentionConfig, type RetentionPolicy, type RetentionPolicy_none, type RetentionPolicy_time, type RidFormatter, type RidFormatter_allFoundryRids, type RidFormatter_objectsPlatformRids, type RidUrlTarget, type RidUrlTargetModification, type RoleId, type RoleSetId, type RuleSetBinding, type RuleSetError, type RuleSetError_ruleSetsAlreadyExist, type RuleSetError_ruleSetsNotFound, type RuleSetRid, type RuleSetsAlreadyExistError, type RuleSetsNotFoundError, type RunScheduleDeploymentEffect, type RunScheduleDeploymentEffectModification, type SafeArg, type SafeDatasourceIdentifier, type SafeDatasourceIdentifier_datasetRid, type SafeDatasourceIdentifier_derivedPropertiesSourceRid, type SafeDatasourceIdentifier_directSourceRid, type SafeDatasourceIdentifier_editsOnly, type SafeDatasourceIdentifier_geotimeSeriesIntegrationRid, type SafeDatasourceIdentifier_mediaSetView, type SafeDatasourceIdentifier_mediaSourceRids, type SafeDatasourceIdentifier_restrictedStream, type SafeDatasourceIdentifier_restrictedViewRid, type SafeDatasourceIdentifier_streamLocatorRid, type SafeDatasourceIdentifier_tableRid, type SafeDatasourceIdentifier_timeSeriesSyncRid, type ScenarioRid, type ScenarioRule, type ScenarioRuleModification, type ScenarioScope, type ScheduleParamName, type ScheduleRid, type ScheduleRunRidValue, type SchemaConfiguration, type SchemaMigrationBlockData, type SchemaMigrationRid, type SchemaTransitionsWithSchemaVersion, type SchemaVersion, type Section, type SectionConditionalOverride, type SectionConditionalOverrideModification, type SectionContent, type SectionContent_parameterId, type SectionDisplayBlock, type SectionDisplayBlockModification, type SectionDisplayBlockOverride, type SectionDisplayBlockOverride_visibility, type SectionDisplayMetadata, type SectionId, type SectionRid, type SectionStyle, type SectionStyle_box, type SectionStyle_minimal, type SectionValidationDisplayMetadata, type SectionVisibilityOverride, type SecurityGroupAndCondition, type SecurityGroupAndConditionModification, type SecurityGroupComparisonCondition, type SecurityGroupComparisonConditionModification, type SecurityGroupComparisonConstant, type SecurityGroupComparisonConstant_boolean, type SecurityGroupComparisonConstant_string, type SecurityGroupComparisonConstant_strings, type SecurityGroupComparisonOperator, type SecurityGroupComparisonUserProperty, type SecurityGroupComparisonUserProperty_groupIds, type SecurityGroupComparisonUserProperty_groupNames, type SecurityGroupComparisonUserProperty_userAttributes, type SecurityGroupComparisonUserProperty_userId, type SecurityGroupComparisonUserProperty_username, type SecurityGroupComparisonValue, type SecurityGroupComparisonValueModification, type SecurityGroupComparisonValueModification_constant, type SecurityGroupComparisonValueModification_property, type SecurityGroupComparisonValueModification_userProperty, type SecurityGroupComparisonValue_constant, type SecurityGroupComparisonValue_property, type SecurityGroupComparisonValue_userProperty, type SecurityGroupGranularCondition, type SecurityGroupGranularConditionModification, type SecurityGroupGranularConditionModification_and, type SecurityGroupGranularConditionModification_comparison, type SecurityGroupGranularConditionModification_markings, type SecurityGroupGranularConditionModification_not, type SecurityGroupGranularConditionModification_or, type SecurityGroupGranularConditionModification_true, type SecurityGroupGranularCondition_and, type SecurityGroupGranularCondition_comparison, type SecurityGroupGranularCondition_markings, type SecurityGroupGranularCondition_not, type SecurityGroupGranularCondition_or, type SecurityGroupGranularCondition_true, type SecurityGroupGranularPolicy, type SecurityGroupGranularPolicyModification, type SecurityGroupGranularSecurityDefinition, type SecurityGroupGranularSecurityDefinitionModification, type SecurityGroupGroupIdsUserProperty, type SecurityGroupGroupNamesUserProperty, type SecurityGroupMandatoryOnlySecurityDefinition, type SecurityGroupMandatoryOnlySecurityDefinitionModification, type SecurityGroupMandatoryPolicy, type SecurityGroupMarkingsCondition, type SecurityGroupMarkingsConditionModification, type SecurityGroupNotCondition, type SecurityGroupNotConditionModification, type SecurityGroupOrCondition, type SecurityGroupOrConditionModification, type SecurityGroupSecurityDefinition, type SecurityGroupSecurityDefinitionModification, type SecurityGroupSecurityDefinitionModification_granular, type SecurityGroupSecurityDefinitionModification_mandatoryOnly, type SecurityGroupSecurityDefinition_granular, type SecurityGroupSecurityDefinition_mandatoryOnly, type SecurityGroupTrueCondition, type SecurityGroupTrueConditionModification, type SecurityGroupUserAttributesUserProperty, type SecurityGroupUserIdUserProperty, type SecurityGroupUsernameUserProperty, type SemanticFunctionVersion, type SensorTrait, type SeriesIdPropertyValue, type SeriesValueMetadata, type SeriesValueMetadata_enum, type SeriesValueMetadata_numeric, type SeriesValueMetadata_numericOrNonNumeric, type SeriesValueMetadata_numericOrNonNumericV2, type SharedPropertiesSummary, type SharedPropertyBasedPropertyType, type SharedPropertyType, type SharedPropertyTypeBlockDataV2, type SharedPropertyTypeCreatedEvent, type SharedPropertyTypeDeletedEvent, type SharedPropertyTypeDisplayMetadata, type SharedPropertyTypeError, type SharedPropertyTypeError_mainValueStructFieldApiNamesNotFound, type SharedPropertyTypeError_reducerStructFieldApiNamesNotFound, type SharedPropertyTypeError_sharedPropertyTypesAlreadyExist, type SharedPropertyTypeError_sharedPropertyTypesNotFound, type SharedPropertyTypeGothamMapping, type SharedPropertyTypeIdInRequest, type SharedPropertyTypeLoadRequest, type SharedPropertyTypeLoadResponse, type SharedPropertyTypeLogicRuleValueModification, type SharedPropertyTypeMainValueStructFieldApiNamesNotFoundError, type SharedPropertyTypeReducerStructFieldApiNamesNotFoundError, type SharedPropertyTypeRid, type SharedPropertyTypeRidOrIdInRequest, type SharedPropertyTypeRidOrIdInRequest_idInRequest, type SharedPropertyTypeRidOrIdInRequest_rid, type SharedPropertyTypeSoftLinkType, type SharedPropertyTypeStructFieldLogicRuleValueModification, type SharedPropertyTypeUpdatedEvent, type SharedPropertyTypesAlreadyExistError, type SharedPropertyTypesNotFoundError, type ShortBody, type ShortBodyModification, type ShortBodyModification_basic, type ShortBody_basic, type ShortPropertyType, type ShortTypeDataConstraints$1 as ShortTypeDataConstraints, type ShortTypeDataConstraints_oneOf$1 as ShortTypeDataConstraints_oneOf, type ShortTypeDataConstraints_range$1 as ShortTypeDataConstraints_range, type ShortTypeDataValue$1 as ShortTypeDataValue, type ShortTypeRangeConstraint$1 as ShortTypeRangeConstraint, type SidcFormatter, type SimpleAnalyzer, type SingleKeyJoinDefinition, type SoftLink, type SoftLinkType, type SoftLinkType_sharedPropertyType, type StandardAnalyzer, type StaticObjectPrefill, type StaticObjectPrefillV2, type StaticValue, type StaticWebhookWithDirectInput, type StaticWebhookWithDirectInputModification, type StaticWebhookWithFunctionResultInput, type StaticWebhookWithFunctionResultInputModification, type StreamLocator, type StreamLocatorRid, type StreamName, type StreamViewRid, type StringConcatOperation, type StringFormatter, type StringPropertyType, type StringTypeDataConstraints$1 as StringTypeDataConstraints, type StringTypeDataConstraints_isRid$1 as StringTypeDataConstraints_isRid, type StringTypeDataConstraints_isUuid$1 as StringTypeDataConstraints_isUuid, type StringTypeDataConstraints_length$1 as StringTypeDataConstraints_length, type StringTypeDataConstraints_oneOf$1 as StringTypeDataConstraints_oneOf, type StringTypeDataConstraints_regex$1 as StringTypeDataConstraints_regex, type StringTypeDataValue$1 as StringTypeDataValue, type StringTypeIsRidConstraint$1 as StringTypeIsRidConstraint, type StringTypeIsUuidConstraint$1 as StringTypeIsUuidConstraint, type StringTypeLengthConstraint$1 as StringTypeLengthConstraint, type StructFieldAlias, type StructFieldApiNameMapping, type StructFieldApiNameOrRid, type StructFieldApiNameOrRid_apiName, type StructFieldApiNameOrRid_rid, type StructFieldConditionalOverride, type StructFieldConditionalOverrideModification, type StructFieldConditionalValidationBlock, type StructFieldConditionalValidationBlockModification, type StructFieldDisplayMetadata, type StructFieldImplementation, type StructFieldLogicRuleValue, type StructFieldLogicRuleValueMappingModification, type StructFieldLogicRuleValueModification, type StructFieldLogicRuleValueModification_structListParameterFieldValue, type StructFieldLogicRuleValueModification_structParameterFieldValue, type StructFieldLogicRuleValue_structListParameterFieldValue, type StructFieldLogicRuleValue_structParameterFieldValue, type StructFieldName, type StructFieldPrefill, type StructFieldPrefillModification, type StructFieldPrefillModification_interfaceObjectParameterStructFieldValue, type StructFieldPrefillModification_interfaceObjectParameterStructListFieldValue, type StructFieldPrefillModification_objectParameterStructFieldValue, type StructFieldPrefillModification_objectParameterStructListFieldValue, type StructFieldPrefillOverride, type StructFieldPrefillOverrideModification, type StructFieldPrefill_interfaceObjectParameterStructFieldValue, type StructFieldPrefill_interfaceObjectParameterStructListFieldValue, type StructFieldPrefill_objectParameterStructFieldValue, type StructFieldPrefill_objectParameterStructListFieldValue, type StructFieldRid, type StructFieldType, type StructFieldValidation, type StructFieldValidationBlock, type StructFieldValidationBlockModification, type StructFieldValidationBlockOverride, type StructFieldValidationBlockOverrideModification, type StructFieldValidationBlockOverrideModification_allowedValues, type StructFieldValidationBlockOverrideModification_parameterRequired, type StructFieldValidationBlockOverrideModification_prefill, type StructFieldValidationBlockOverrideModification_visibility, type StructFieldValidationBlockOverride_allowedValues, type StructFieldValidationBlockOverride_parameterRequired, type StructFieldValidationBlockOverride_prefill, type StructFieldValidationBlockOverride_visibility, type StructFieldValidationDisplayMetadata, type StructFieldValidationDisplayMetadataModification, type StructFieldValidationModification, type StructListParameterFieldValue, type StructMainValue, type StructParameterFieldDisplayMetadata, type StructParameterFieldDisplayMetadataV2, type StructParameterFieldValue, type StructPropertyFieldType, type StructPropertyFieldType_boolean, type StructPropertyFieldType_date, type StructPropertyFieldType_double, type StructPropertyFieldType_geohash, type StructPropertyFieldType_geoshape, type StructPropertyFieldType_integer, type StructPropertyFieldType_long, type StructPropertyFieldType_string, type StructPropertyFieldType_timestamp, type StructPropertyType, type StructPropertyTypeImplementation, type StructTypeDataConstraints$1 as StructTypeDataConstraints, type StructTypeElementsConstraint$1 as StructTypeElementsConstraint, type StructuredShortBody, type StructuredShortBodyModification, type SubmitAllValidOrNothingThrowingMode, type SubmitValidEntriesInOrderUntilFirstFailureMode, type SubtractionOperation, type SynchronousPreWritebackEffect, type SynchronousPreWritebackEffectModification, type SynchronousPreWritebackEffectModification_runScheduleDeployment, type SynchronousPreWritebackEffect_runScheduleDeployment, type SynchronousPreWritebackWebhook, type SynchronousPreWritebackWebhookModification, type SynchronousPreWritebackWebhookModification_staticDirectInput, type SynchronousPreWritebackWebhookModification_staticFunctionInput, type SynchronousPreWritebackWebhook_staticDirectInput, type SynchronousPreWritebackWebhook_staticFunctionInput, type TableDisplayAndFormat, type TableLocator, type TableRid, type TemplateNotificationBody, type TemplateNotificationBodyModification, type TemplateRidPropertyValue, type TextEmbeddingModel, type TextEmbeddingModel_foundryLiveDeployment, type TextEmbeddingModel_functionBacked, type TextEmbeddingModel_lms, type TextModality, type TimeBasedRetentionConfig, type TimeBasedRetentionPolicy, type TimeBetweenOperation, type TimeCodeFormat, type TimeCurrentOperation, type TimeDependentFormatter, type TimeDependentNonNumericSeriesFormat, type TimeDependentNumericOrNonNumericSeriesFormat, type TimeDependentNumericOrNonNumericSeriesFormatV2, type TimeDependentNumericSeriesFormat, type TimeDependentSeriesFormat, type TimeDependentSeriesFormat_nonNumeric, type TimeDependentSeriesFormat_numeric, type TimeDependentSeriesFormat_numericOrNonNumeric, type TimeDependentSeriesFormat_numericOrNonNumericV2, type TimeSeriesMetadata, type TimeSeriesSyncName, type TimeSeriesSyncRid, type TimeSeriesSyncViewRid, type TimestampFormatter, type TimestampPropertyType, type TimestampTypeDataConstraints$1 as TimestampTypeDataConstraints, type TimestampTypeDataValue$1 as TimestampTypeDataValue, type TimestampTypeRangeConstraint$1 as TimestampTypeRangeConstraint, type TrueCondition, type Type, type TypeClass, type TypeClassEntityIdentifier, type TypeClassEntityIdentifier_actionTypeRid, type TypeClassEntityIdentifier_linkTypeRid, type TypeClassEntityIdentifier_objectTypeRid, type TypeClassEntityIdentifier_sharedPropertyTypeRid, type TypeGroup, type TypeGroupDisplayMetadata, type TypeGroupEntityRid, type TypeGroupEntityRid_actionTypeRid, type TypeGroupEntityRid_objectTypeRid, type TypeGroupError, type TypeGroupError_typeGroupsAlreadyExist, type TypeGroupError_typeGroupsNotFound, type TypeGroupGetOrganizationsRequest, type TypeGroupGetOrganizationsResponse, type TypeGroupIconColors, type TypeGroupIdInRequest, type TypeGroupLoadRequest, type TypeGroupLoadResponse, type TypeGroupRid, type TypeGroupRidOrIdInRequest, type TypeGroupRidOrIdInRequest_idInRequest, type TypeGroupRidOrIdInRequest_rid, type TypeGroupSetOrganizationsRequest, type TypeGroupsAlreadyExistError, type TypeGroupsNotFoundError, type TypeGroupsSummary, type Type_array, type Type_attachment, type Type_boolean, type Type_byte, type Type_cipherText, type Type_date, type Type_decimal, type Type_double, type Type_experimentalTimeDependentV1, type Type_float, type Type_geohash, type Type_geoshape, type Type_geotimeSeriesReference, type Type_integer, type Type_long, type Type_marking, type Type_mediaReference, type Type_short, type Type_string, type Type_struct, type Type_timestamp, type Type_vector, type UniqueIdentifier, type UnresolvedOntologySparkInputProperties, type UnrestrictedParameterInterfacePropertyValue, type UnsafeArg, type UrlTarget, type UrlTargetModification, type UrlTargetModification_carbonWorkspace, type UrlTargetModification_logicRuleValue, type UrlTargetModification_newObject, type UrlTargetModification_relativeUrlString, type UrlTargetModification_rid, type UrlTarget_carbonWorkspace, type UrlTarget_logicRuleValue, type UrlTarget_newObject, type UrlTarget_relativeUrlString, type UrlTarget_rid, type UseCaseRid, type UserAttributes, type UserId, type UserOrGroupId, type UserOrGroupId_groupId, type UserOrGroupId_userId, type UserProperty, type UserPropertyId, type UserPropertyId_currentUser, type UserPropertyValue, type UserPropertyValue_groupIds, type UserPropertyValue_groupNames, type UserPropertyValue_organizationMarkingIds, type UserPropertyValue_userAttributes, type UserPropertyValue_userId, type UserPropertyValue_userName, type UserTimezone, type UserValue, type ValidationRule, type ValidationRuleDisplayMetadata, type ValidationRuleIdInRequest, type ValidationRuleIdentifier, type ValidationRuleIdentifier_rid, type ValidationRuleIdentifier_validationRuleIdInRequest, type ValidationRuleIndex, type ValidationRuleModification, type ValidationRuleRid, type ValueReferenceId, type ValueReferenceSource, type ValueReferenceSource_propertyTypeRid, type ValueTypeApiName, type ValueTypeApiNameReference, type ValueTypeDataConstraint, type ValueTypeDisplayMetadata, type ValueTypeIdInRequest, type ValueTypeInputManagerRid, type ValueTypeLabel, type ValueTypeReference$1 as ValueTypeReference, type ValueTypeRid$1 as ValueTypeRid, type ValueTypeStatus, type ValueTypeVersion, type ValueTypeVersionId$1 as ValueTypeVersionId, type VectorPropertyType, type VectorSimilarityFunction, type VersionReference, type VersionReference_ontologyBranch, type VersionReference_ontologyVersion, type VersionedActionTypeRid, type VersionedActionTypesNotFoundError, type VersionedLinkTypeRid, type VersionedObjectTypeRid, type Visibility, type VisibilityOverride, type WebhookInputParamName, type WebhookOutputParamName, type WebhookRid, type WebhookVersion, type WhitespaceAnalyzer, type WorkflowError, type WorkflowError_deletedLinkTypesStillInUseInWorkflow, type WorkflowError_deletedObjectTypesStillInUseInWorkflow, type WorkflowError_referencedLinkTypesInWorkflowNotFound, type WorkflowError_referencedObjectTypesInWorkflowNotFound, type WorkflowError_workflowsAlreadyExist, type WorkflowError_workflowsNotFound, type WorkflowObjectTypeTrait, type WorkflowObjectTypeTraitDescription, type WorkflowObjectTypeTraitDisplayName, type WorkflowObjectTypeTraitId, type WorkflowObjectTypeTraitImpl, type WorkflowObjectTypeTraitProperty, type WorkflowObjectTypeTraitPropertyDescription, type WorkflowObjectTypeTraitPropertyDisplayName, type WorkflowObjectTypeTraitPropertyId, type WorkflowObjectTypeTraitReference, type WorkflowObjectTypeTraitVersion, type WorkflowsAlreadyExistError, type WorkflowsNotFoundError, type WorkshopModuleRid, type WorkshopReference, type WritebackDatasetRid, type WritebackDatasetSpec, bulkLoadOntologyEntities, createTemporaryObjectSet, getBulkLinksPage, getLinkTypesForObjectTypes, loadAllOntologies };
|