@osdk/client.unstable 2.4.0-beta.1 → 2.4.0-beta.11

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.
Files changed (51) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/build/cjs/index.d.cts +493 -93
  3. package/build/types/generated/ontology-metadata/api/__components.d.ts +341 -92
  4. package/build/types/generated/ontology-metadata/api/__components.d.ts.map +1 -1
  5. package/build/types/generated/ontology-metadata/api/blockdata/OntologyBlockDataDummyService/postOntologyBlockData.d.ts +3 -0
  6. package/build/types/generated/ontology-metadata/api/blockdata/OntologyBlockDataDummyService/postOntologyBlockData.d.ts.map +1 -0
  7. package/build/types/generated/ontology-metadata/api/blockdata/OntologyBlockDataDummyService.d.ts +1 -0
  8. package/build/types/generated/ontology-metadata/api/blockdata/OntologyBlockDataDummyService.d.ts.map +1 -0
  9. package/build/types/generated/ontology-metadata/api/blockdata/__components.d.ts +125 -3
  10. package/build/types/generated/ontology-metadata/api/blockdata/__components.d.ts.map +1 -1
  11. package/build/types/generated/ontology-metadata/api/blockdata/index.d.ts +2 -1
  12. package/build/types/generated/ontology-metadata/api/blockdata/index.d.ts.map +1 -1
  13. package/build/types/generated/ontology-metadata/api/index.d.ts +1 -1
  14. package/build/types/generated/ontology-metadata/api/index.d.ts.map +1 -1
  15. package/build/types/generated/ontology-metadata/api/llm/__components.d.ts +2 -5
  16. package/build/types/generated/ontology-metadata/api/llm/__components.d.ts.map +1 -1
  17. package/build/types/generated/ontology-metadata/api/llm/index.d.ts +1 -1
  18. package/build/types/generated/ontology-metadata/api/llm/index.d.ts.map +1 -1
  19. package/build/types/generated/ontology-metadata/api/modification/__components.d.ts +24 -2
  20. package/build/types/generated/ontology-metadata/api/modification/__components.d.ts.map +1 -1
  21. package/build/types/generated/ontology-metadata/api/modification/index.d.ts +1 -1
  22. package/build/types/generated/ontology-metadata/api/modification/index.d.ts.map +1 -1
  23. package/build/types/generated/ontology-metadata/api/permissions/__components.d.ts +26 -10
  24. package/build/types/generated/ontology-metadata/api/permissions/__components.d.ts.map +1 -1
  25. package/build/types/generated/ontology-metadata/api/permissions/index.d.ts +1 -1
  26. package/build/types/generated/ontology-metadata/api/permissions/index.d.ts.map +1 -1
  27. package/build/types/generated/ontology-metadata/api/types/__components.d.ts +29 -3
  28. package/build/types/generated/ontology-metadata/api/types/__components.d.ts.map +1 -1
  29. package/build/types/generated/ontology-metadata/api/types/index.d.ts +1 -1
  30. package/build/types/generated/ontology-metadata/api/types/index.d.ts.map +1 -1
  31. package/build/types/generated/ontology-metadata/api/validation/__components.d.ts +122 -2
  32. package/build/types/generated/ontology-metadata/api/validation/__components.d.ts.map +1 -1
  33. package/build/types/generated/ontology-metadata/api/validation/index.d.ts +1 -1
  34. package/build/types/generated/ontology-metadata/api/validation/index.d.ts.map +1 -1
  35. package/build/types/generated/ontology-metadata/branch/api/__components.d.ts +119 -5
  36. package/build/types/generated/ontology-metadata/branch/api/__components.d.ts.map +1 -1
  37. package/build/types/generated/ontology-metadata/branch/api/index.d.ts +1 -1
  38. package/build/types/generated/ontology-metadata/branch/api/index.d.ts.map +1 -1
  39. package/build/types/generated/ontology-metadata/diff/api/OntologyDiffService/loadOntologyDiff.d.ts +8 -0
  40. package/build/types/generated/ontology-metadata/diff/api/OntologyDiffService/loadOntologyDiff.d.ts.map +1 -0
  41. package/build/types/generated/ontology-metadata/diff/api/OntologyDiffService.d.ts +1 -0
  42. package/build/types/generated/ontology-metadata/diff/api/OntologyDiffService.d.ts.map +1 -0
  43. package/build/types/generated/ontology-metadata/diff/api/__components.d.ts +38 -0
  44. package/build/types/generated/ontology-metadata/diff/api/__components.d.ts.map +1 -0
  45. package/build/types/generated/ontology-metadata/diff/api/index.d.ts +2 -0
  46. package/build/types/generated/ontology-metadata/diff/api/index.d.ts.map +1 -0
  47. package/build/types/generated/ontology-metadata/diff/index.d.ts +1 -0
  48. package/build/types/generated/ontology-metadata/diff/index.d.ts.map +1 -0
  49. package/build/types/generated/ontology-metadata/index.d.ts +1 -0
  50. package/build/types/generated/ontology-metadata/index.d.ts.map +1 -1
  51. package/package.json +1 -1
@@ -2725,13 +2725,16 @@ interface DoubleType$1 {
2725
2725
  */
2726
2726
  type DoubleValue = number | "NaN" | "Infinity" | "-Infinity";
2727
2727
  interface Dropdown {
2728
+ shouldRemoveListQueryAfterSelection?: boolean | null | undefined;
2728
2729
  }
2729
2730
  interface FilePicker {
2730
2731
  }
2732
+ type GeoFormat = "DEG" | "MGRS";
2731
2733
  /**
2732
2734
  * GeohashListType specifies that this parameter must be a list of Geohashes.
2733
2735
  */
2734
2736
  interface GeohashListType {
2737
+ defaultFormat?: GeoFormat | null | undefined;
2735
2738
  }
2736
2739
  /**
2737
2740
  * A parameter value type that consists of a list of Geohashes. Only WGS-84 coordinates are supported.
@@ -2743,6 +2746,7 @@ interface GeohashListValue {
2743
2746
  * GeohashType specifies that this parameter must be a Geohash.
2744
2747
  */
2745
2748
  interface GeohashType {
2749
+ defaultFormat?: GeoFormat | null | undefined;
2746
2750
  }
2747
2751
  /**
2748
2752
  * A parameter value type that is a Geohash. Only WGS-84 coordinates are supported.
@@ -2839,6 +2843,23 @@ interface InterfaceReferenceType {
2839
2843
  interface InterfaceReferenceTypeModification {
2840
2844
  interfaceTypeRidOrIdInRequest: InterfaceTypeRidOrIdInRequest;
2841
2845
  }
2846
+ type IntermediaryLinkTypeSide = "A_SIDE" | "B_SIDE";
2847
+ interface LinkTypeSide_oneToManyLinkTypeSide {
2848
+ type: "oneToManyLinkTypeSide";
2849
+ oneToManyLinkTypeSide: OneToManyLinkTypeSide;
2850
+ }
2851
+ interface LinkTypeSide_manyToManyLinkTypeSide {
2852
+ type: "manyToManyLinkTypeSide";
2853
+ manyToManyLinkTypeSide: ManyToManyLinkTypeSide;
2854
+ }
2855
+ interface LinkTypeSide_intermediaryLinkTypeSide {
2856
+ type: "intermediaryLinkTypeSide";
2857
+ intermediaryLinkTypeSide: IntermediaryLinkTypeSide;
2858
+ }
2859
+ /**
2860
+ * Specifies a side of a link type to indicate a direction for the traversal of object sets.
2861
+ */
2862
+ type LinkTypeSide = LinkTypeSide_oneToManyLinkTypeSide | LinkTypeSide_manyToManyLinkTypeSide | LinkTypeSide_intermediaryLinkTypeSide;
2842
2863
  /**
2843
2864
  * Optionally specifies the min and max parameter list lengths permitted for a parameter. This type is only
2844
2865
  * usable with list type parameters.
@@ -2874,6 +2895,7 @@ interface LongType$1 {
2874
2895
  type LongValue = number;
2875
2896
  interface MandatoryMarkingPicker {
2876
2897
  }
2898
+ type ManyToManyLinkTypeSide = "A_SIDE" | "B_SIDE";
2877
2899
  /**
2878
2900
  * MarkingListType specifies that this parameter must be a list of Markings.
2879
2901
  */
@@ -2990,6 +3012,7 @@ interface ObjectTypeReferenceType {
2990
3012
  interface ObjectTypeValue {
2991
3013
  objectTypeId: ObjectTypeId;
2992
3014
  }
3015
+ type OneToManyLinkTypeSide = "ONE_SIDE" | "MANY_SIDE";
2993
3016
  interface OntologyIrBaseParameterType_boolean {
2994
3017
  type: "boolean";
2995
3018
  boolean: BooleanType$1;
@@ -5319,7 +5342,7 @@ interface ImportedTypes {
5319
5342
  }
5320
5343
  type InstallLocationBlockShapeId = BlockShapeId;
5321
5344
  interface InterfaceTypeBlockDataV2 {
5322
- interfaceType: InterfaceType;
5345
+ interfaceType: MarketplaceInterfaceType;
5323
5346
  }
5324
5347
  /**
5325
5348
  * Will only match if there is a single datasource that matches the output type (e.g. a dataset datasource
@@ -5342,6 +5365,7 @@ interface KnownMarketplaceIdentifiers {
5342
5365
  interfaceTypes: Record<InterfaceTypeRid, BlockInternalId>;
5343
5366
  linkTypeIds: Record<LinkTypeId, BlockInternalId>;
5344
5367
  linkTypes: Record<LinkTypeRid, BlockInternalId>;
5368
+ markings: Record<BlockInternalId, Array<MarkingId>>;
5345
5369
  objectTypeIds: Record<ObjectTypeId, BlockInternalId>;
5346
5370
  objectTypes: Record<ObjectTypeRid, BlockInternalId>;
5347
5371
  propertyTypeIds: Record<ObjectTypeId, Record<PropertyTypeId, BlockInternalId>>;
@@ -5367,6 +5391,69 @@ interface LinkTypeRestrictionStatus {
5367
5391
  ontologyPackageRid?: OntologyPackageRid | null | undefined;
5368
5392
  restrictedByDatasources: boolean;
5369
5393
  }
5394
+ interface MarketplaceActiveInterfaceTypeStatus {
5395
+ }
5396
+ interface MarketplaceDeprecatedInterfaceTypeStatus {
5397
+ deadline: string;
5398
+ message: string;
5399
+ replacedBy?: InterfaceTypeRid | null | undefined;
5400
+ }
5401
+ interface MarketplaceExampleInterfaceTypeStatus {
5402
+ }
5403
+ interface MarketplaceExperimentalInterfaceTypeStatus {
5404
+ }
5405
+ interface MarketplaceInterfaceLinkType {
5406
+ cardinality: MarketplaceInterfaceLinkTypeCardinality;
5407
+ linkedEntityTypeId: LinkedEntityTypeId;
5408
+ metadata: MarketplaceInterfaceLinkTypeMetadata;
5409
+ required: boolean;
5410
+ rid: InterfaceLinkTypeRid;
5411
+ }
5412
+ type MarketplaceInterfaceLinkTypeCardinality = "SINGLE" | "MANY";
5413
+ interface MarketplaceInterfaceLinkTypeMetadata {
5414
+ apiName: InterfaceLinkTypeApiName;
5415
+ description: string;
5416
+ displayName: string;
5417
+ }
5418
+ interface MarketplaceInterfacePropertyType_sharedPropertyBasedPropertyType {
5419
+ type: "sharedPropertyBasedPropertyType";
5420
+ sharedPropertyBasedPropertyType: MarketplaceSharedPropertyBasedPropertyType;
5421
+ }
5422
+ type MarketplaceInterfacePropertyType = MarketplaceInterfacePropertyType_sharedPropertyBasedPropertyType;
5423
+ interface MarketplaceInterfaceType {
5424
+ apiName: InterfaceTypeApiName;
5425
+ displayMetadata: MarketplaceInterfaceTypeDisplayMetadata;
5426
+ extendsInterfaces: Array<InterfaceTypeRid>;
5427
+ links: Array<MarketplaceInterfaceLinkType>;
5428
+ properties: Array<SharedPropertyType>;
5429
+ propertiesV2: Record<SharedPropertyTypeRid, InterfaceSharedPropertyType>;
5430
+ propertiesV3: Record<InterfacePropertyTypeRid, MarketplaceInterfacePropertyType>;
5431
+ rid: InterfaceTypeRid;
5432
+ searchable?: boolean | null | undefined;
5433
+ status: MarketplaceInterfaceTypeStatus;
5434
+ }
5435
+ interface MarketplaceInterfaceTypeDisplayMetadata {
5436
+ description?: string | null | undefined;
5437
+ displayName: string;
5438
+ icon?: Icon | null | undefined;
5439
+ }
5440
+ interface MarketplaceInterfaceTypeStatus_experimental {
5441
+ type: "experimental";
5442
+ experimental: MarketplaceExperimentalInterfaceTypeStatus;
5443
+ }
5444
+ interface MarketplaceInterfaceTypeStatus_active {
5445
+ type: "active";
5446
+ active: MarketplaceActiveInterfaceTypeStatus;
5447
+ }
5448
+ interface MarketplaceInterfaceTypeStatus_deprecated {
5449
+ type: "deprecated";
5450
+ deprecated: MarketplaceDeprecatedInterfaceTypeStatus;
5451
+ }
5452
+ interface MarketplaceInterfaceTypeStatus_example {
5453
+ type: "example";
5454
+ example: MarketplaceExampleInterfaceTypeStatus;
5455
+ }
5456
+ type MarketplaceInterfaceTypeStatus = MarketplaceInterfaceTypeStatus_experimental | MarketplaceInterfaceTypeStatus_active | MarketplaceInterfaceTypeStatus_deprecated | MarketplaceInterfaceTypeStatus_example;
5370
5457
  /**
5371
5458
  * Local overridden alias of OMS public API representation of ObjectTypeEntityMetadata. In OMS API we model
5372
5459
  * editsResolutionStrategies field as non-optional, but Marketplace ontology block data uploaded to
@@ -5387,6 +5474,14 @@ interface MarketplaceObjectTypeEntityMetadata {
5387
5474
  redacted?: boolean | null | undefined;
5388
5475
  targetStorageBackend: StorageBackend;
5389
5476
  }
5477
+ interface MarketplaceSharedPropertyBasedPropertyType {
5478
+ requireImplementation: boolean;
5479
+ sharedPropertyType: SharedPropertyType;
5480
+ }
5481
+ /**
5482
+ * Instead of a real marking, OAC objects use a "markingGroupName" to represent a marking set which is 1:1 to with a marking input
5483
+ */
5484
+ type MarkingGroupName = string;
5390
5485
  /**
5391
5486
  * Ontology as code uses this as a stable ID for MediaSetView inputs
5392
5487
  */
@@ -5478,7 +5573,7 @@ interface OntologyIrImportedTypes {
5478
5573
  sharedPropertyTypes: Array<OntologyIrImportedSharedPropertyType>;
5479
5574
  }
5480
5575
  interface OntologyIrInterfaceTypeBlockDataV2 {
5481
- interfaceType: OntologyIrInterfaceType;
5576
+ interfaceType: OntologyIrMarketplaceInterfaceType;
5482
5577
  }
5483
5578
  interface OntologyIrKnownMarketplaceIdentifiers {
5484
5579
  actionParameterIds: Record<ActionTypeApiName, Record<ParameterId, BlockInternalId>>;
@@ -5494,6 +5589,7 @@ interface OntologyIrKnownMarketplaceIdentifiers {
5494
5589
  interfaceTypes: Record<InterfaceTypeApiName, BlockInternalId>;
5495
5590
  linkTypeIds: Record<LinkTypeId, BlockInternalId>;
5496
5591
  linkTypes: Record<LinkTypeId, BlockInternalId>;
5592
+ markings: Record<BlockInternalId, Array<MarkingId>>;
5497
5593
  objectTypeIds: Record<ObjectTypeApiName, BlockInternalId>;
5498
5594
  objectTypes: Record<ObjectTypeApiName, BlockInternalId>;
5499
5595
  propertyTypeIds: Record<ObjectTypeApiName, Record<ObjectTypeFieldApiName, BlockInternalId>>;
@@ -5511,6 +5607,50 @@ interface OntologyIrLinkTypeBlockDataV2 {
5511
5607
  entityMetadata?: OntologyIrLinkTypeEntityMetadata | null | undefined;
5512
5608
  linkType: OntologyIrLinkType;
5513
5609
  }
5610
+ interface OntologyIrMarketplaceDeprecatedInterfaceTypeStatus {
5611
+ deadline: string;
5612
+ message: string;
5613
+ replacedBy?: InterfaceTypeApiName | null | undefined;
5614
+ }
5615
+ interface OntologyIrMarketplaceInterfaceLinkType {
5616
+ cardinality: MarketplaceInterfaceLinkTypeCardinality;
5617
+ linkedEntityTypeId: OntologyIrLinkedEntityTypeId;
5618
+ metadata: MarketplaceInterfaceLinkTypeMetadata;
5619
+ required: boolean;
5620
+ }
5621
+ interface OntologyIrMarketplaceInterfacePropertyType_sharedPropertyBasedPropertyType {
5622
+ type: "sharedPropertyBasedPropertyType";
5623
+ sharedPropertyBasedPropertyType: OntologyIrMarketplaceSharedPropertyBasedPropertyType;
5624
+ }
5625
+ type OntologyIrMarketplaceInterfacePropertyType = OntologyIrMarketplaceInterfacePropertyType_sharedPropertyBasedPropertyType;
5626
+ interface OntologyIrMarketplaceInterfaceType {
5627
+ apiName: InterfaceTypeApiName;
5628
+ displayMetadata: MarketplaceInterfaceTypeDisplayMetadata;
5629
+ extendsInterfaces: Array<InterfaceTypeApiName>;
5630
+ links: Array<OntologyIrMarketplaceInterfaceLinkType>;
5631
+ properties: Array<OntologyIrSharedPropertyType>;
5632
+ propertiesV2: Record<ObjectTypeFieldApiName, OntologyIrInterfaceSharedPropertyType>;
5633
+ propertiesV3: Record<InterfacePropertyTypeApiName, OntologyIrMarketplaceInterfacePropertyType>;
5634
+ searchable?: boolean | null | undefined;
5635
+ status: OntologyIrMarketplaceInterfaceTypeStatus;
5636
+ }
5637
+ interface OntologyIrMarketplaceInterfaceTypeStatus_experimental {
5638
+ type: "experimental";
5639
+ experimental: MarketplaceExperimentalInterfaceTypeStatus;
5640
+ }
5641
+ interface OntologyIrMarketplaceInterfaceTypeStatus_active {
5642
+ type: "active";
5643
+ active: MarketplaceActiveInterfaceTypeStatus;
5644
+ }
5645
+ interface OntologyIrMarketplaceInterfaceTypeStatus_deprecated {
5646
+ type: "deprecated";
5647
+ deprecated: OntologyIrMarketplaceDeprecatedInterfaceTypeStatus;
5648
+ }
5649
+ interface OntologyIrMarketplaceInterfaceTypeStatus_example {
5650
+ type: "example";
5651
+ example: MarketplaceExampleInterfaceTypeStatus;
5652
+ }
5653
+ type OntologyIrMarketplaceInterfaceTypeStatus = OntologyIrMarketplaceInterfaceTypeStatus_experimental | OntologyIrMarketplaceInterfaceTypeStatus_active | OntologyIrMarketplaceInterfaceTypeStatus_deprecated | OntologyIrMarketplaceInterfaceTypeStatus_example;
5514
5654
  /**
5515
5655
  * Local overridden alias of OMS public API representation of ObjectTypeEntityMetadata. In OMS API we model
5516
5656
  * editsResolutionStrategies field as non-optional, but Marketplace ontology block data uploaded to
@@ -5520,6 +5660,10 @@ interface OntologyIrLinkTypeBlockDataV2 {
5520
5660
  interface OntologyIrMarketplaceObjectTypeEntityMetadata {
5521
5661
  arePatchesEnabled: boolean;
5522
5662
  }
5663
+ interface OntologyIrMarketplaceSharedPropertyBasedPropertyType {
5664
+ requireImplementation: boolean;
5665
+ sharedPropertyType: OntologyIrSharedPropertyType;
5666
+ }
5523
5667
  /**
5524
5668
  * Property reference containing the api name of the object
5525
5669
  */
@@ -5576,6 +5720,11 @@ type OutputMode = "RESTRICTED_VIEW" | "DATASET";
5576
5720
  interface PatchesConfiguration {
5577
5721
  lowLatencyUpdatesEnabled: boolean;
5578
5722
  }
5723
+ interface PostOntologyBlockDataRequest {
5724
+ ontologyBlockDataV2: OntologyBlockDataV2;
5725
+ }
5726
+ interface PostOntologyBlockDataResponse {
5727
+ }
5579
5728
  interface PropertyPredicate_and {
5580
5729
  type: "and";
5581
5730
  and: Array<PropertyPredicate>;
@@ -6437,6 +6586,10 @@ interface ActionLogValue_interfaceParameterPropertyValue {
6437
6586
  type: "interfaceParameterPropertyValue";
6438
6587
  interfaceParameterPropertyValue: InterfaceParameterPropertyValue;
6439
6588
  }
6589
+ interface ActionLogValue_interfaceParameterPropertyValueV2 {
6590
+ type: "interfaceParameterPropertyValueV2";
6591
+ interfaceParameterPropertyValueV2: InterfaceParameterPropertyValueV2;
6592
+ }
6440
6593
  interface ActionLogValue_editedObjects {
6441
6594
  type: "editedObjects";
6442
6595
  editedObjects: ObjectTypeId;
@@ -6501,7 +6654,7 @@ interface ActionLogValue_summary {
6501
6654
  type: "summary";
6502
6655
  summary: Array<ActionTypeRichTextComponent>;
6503
6656
  }
6504
- type ActionLogValue = ActionLogValue_parameterValue | ActionLogValue_objectParameterPropertyValue | ActionLogValue_interfaceParameterPropertyValue | ActionLogValue_editedObjects | ActionLogValue_allEditedObjects | ActionLogValue_actionTypeRid | ActionLogValue_actionRid | ActionLogValue_actionTypeVersion | ActionLogValue_actionTimestamp | ActionLogValue_actionUser | ActionLogValue_isReverted | ActionLogValue_revertUser | ActionLogValue_revertTimestamp | ActionLogValue_synchronousWebhookInstanceId | ActionLogValue_asynchronousWebhookInstanceIds | ActionLogValue_notifiedUsers | ActionLogValue_notificationIds | ActionLogValue_scenarioRid | ActionLogValue_summary;
6657
+ type ActionLogValue = ActionLogValue_parameterValue | ActionLogValue_objectParameterPropertyValue | ActionLogValue_interfaceParameterPropertyValue | ActionLogValue_interfaceParameterPropertyValueV2 | ActionLogValue_editedObjects | ActionLogValue_allEditedObjects | ActionLogValue_actionTypeRid | ActionLogValue_actionRid | ActionLogValue_actionTypeVersion | ActionLogValue_actionTimestamp | ActionLogValue_actionUser | ActionLogValue_isReverted | ActionLogValue_revertUser | ActionLogValue_revertTimestamp | ActionLogValue_synchronousWebhookInstanceId | ActionLogValue_asynchronousWebhookInstanceIds | ActionLogValue_notifiedUsers | ActionLogValue_notificationIds | ActionLogValue_scenarioRid | ActionLogValue_summary;
6505
6658
  interface ActionLogValueModification_parameterValue {
6506
6659
  type: "parameterValue";
6507
6660
  parameterValue: ParameterId;
@@ -6514,6 +6667,10 @@ interface ActionLogValueModification_interfaceParameterPropertyValue {
6514
6667
  type: "interfaceParameterPropertyValue";
6515
6668
  interfaceParameterPropertyValue: InterfaceParameterPropertyValueModification;
6516
6669
  }
6670
+ interface ActionLogValueModification_interfaceParameterPropertyValueV2 {
6671
+ type: "interfaceParameterPropertyValueV2";
6672
+ interfaceParameterPropertyValueV2: InterfaceParameterPropertyValueModificationV2;
6673
+ }
6517
6674
  interface ActionLogValueModification_editedObjects {
6518
6675
  type: "editedObjects";
6519
6676
  editedObjects: ObjectTypeId;
@@ -6578,7 +6735,7 @@ interface ActionLogValueModification_summary {
6578
6735
  type: "summary";
6579
6736
  summary: Array<ActionTypeRichTextComponent>;
6580
6737
  }
6581
- type ActionLogValueModification = ActionLogValueModification_parameterValue | ActionLogValueModification_objectParameterPropertyValue | ActionLogValueModification_interfaceParameterPropertyValue | ActionLogValueModification_editedObjects | ActionLogValueModification_allEditedObjects | ActionLogValueModification_actionTypeRid | ActionLogValueModification_actionRid | ActionLogValueModification_actionTypeVersion | ActionLogValueModification_actionTimestamp | ActionLogValueModification_actionUser | ActionLogValueModification_isReverted | ActionLogValueModification_revertUser | ActionLogValueModification_revertTimestamp | ActionLogValueModification_synchronousWebhookInstanceId | ActionLogValueModification_asynchronousWebhookInstanceIds | ActionLogValueModification_notifiedUsers | ActionLogValueModification_notificationIds | ActionLogValueModification_scenarioRid | ActionLogValueModification_summary;
6738
+ type ActionLogValueModification = ActionLogValueModification_parameterValue | ActionLogValueModification_objectParameterPropertyValue | ActionLogValueModification_interfaceParameterPropertyValue | ActionLogValueModification_interfaceParameterPropertyValueV2 | ActionLogValueModification_editedObjects | ActionLogValueModification_allEditedObjects | ActionLogValueModification_actionTypeRid | ActionLogValueModification_actionRid | ActionLogValueModification_actionTypeVersion | ActionLogValueModification_actionTimestamp | ActionLogValueModification_actionUser | ActionLogValueModification_isReverted | ActionLogValueModification_revertUser | ActionLogValueModification_revertTimestamp | ActionLogValueModification_synchronousWebhookInstanceId | ActionLogValueModification_asynchronousWebhookInstanceIds | ActionLogValueModification_notifiedUsers | ActionLogValueModification_notificationIds | ActionLogValueModification_scenarioRid | ActionLogValueModification_summary;
6582
6739
  /**
6583
6740
  * A notification that will be triggered on successful completion of an action.
6584
6741
  */
@@ -6944,6 +7101,7 @@ interface ActionTypeLoadResponseV2 {
6944
7101
  actionType: ActionType;
6945
7102
  ontologyRid: OntologyRid;
6946
7103
  ontologyVersion: OntologyVersion;
7104
+ resolvedBranch: ResolvedBranch;
6947
7105
  }
6948
7106
  /**
6949
7107
  * Request to batch load ActionTypes at specified version. No more than 100 should be requested.
@@ -7245,12 +7403,14 @@ interface AddInterfaceLinkRuleModification {
7245
7403
  targetObject: ParameterId;
7246
7404
  }
7247
7405
  interface AddInterfaceRule {
7406
+ interfacePropertyValues: Record<InterfacePropertyTypeRid, InterfacePropertyLogicRuleValue>;
7248
7407
  interfaceTypeRid: InterfaceTypeRid;
7249
7408
  objectType: ParameterId;
7250
7409
  sharedPropertyValues: Record<SharedPropertyTypeRid, LogicRuleValue>;
7251
7410
  structFieldValues: Record<SharedPropertyTypeRid, Record<StructFieldRid, StructFieldLogicRuleValue>>;
7252
7411
  }
7253
7412
  interface AddInterfaceRuleModification {
7413
+ interfacePropertyTypeLogicRuleValueModifications: Array<InterfacePropertyTypeLogicRuleValueModification>;
7254
7414
  interfaceTypeRidOrIdInRequest: InterfaceTypeRidOrIdInRequest;
7255
7415
  objectType: ParameterId;
7256
7416
  sharedPropertyTypeLogicRuleValueModifications: Array<SharedPropertyTypeLogicRuleValueModification>;
@@ -7420,7 +7580,7 @@ interface AllowedParameterValues_struct {
7420
7580
  }
7421
7581
  interface AllowedParameterValues_valueType {
7422
7582
  type: "valueType";
7423
- valueType: ParameterValueTypeOrEmpty;
7583
+ valueType: ParameterValueTypeWithVersionIdOrEmpty;
7424
7584
  }
7425
7585
  type AllowedParameterValues = AllowedParameterValues_oneOf | AllowedParameterValues_range | AllowedParameterValues_objectQuery | AllowedParameterValues_interfaceObjectQuery | AllowedParameterValues_objectPropertyValue | AllowedParameterValues_interfacePropertyValue | AllowedParameterValues_objectList | AllowedParameterValues_user | AllowedParameterValues_multipassGroup | AllowedParameterValues_text | AllowedParameterValues_datetime | AllowedParameterValues_boolean | AllowedParameterValues_objectSetRid | AllowedParameterValues_attachment | AllowedParameterValues_cbacMarking | AllowedParameterValues_mandatoryMarking | AllowedParameterValues_mediaReference | AllowedParameterValues_objectTypeReference | AllowedParameterValues_timeSeriesReference | AllowedParameterValues_geohash | AllowedParameterValues_geoshape | AllowedParameterValues_geotimeSeriesReference | AllowedParameterValues_redacted | AllowedParameterValues_struct | AllowedParameterValues_valueType;
7426
7586
  interface AllowedParameterValuesModification_oneOf {
@@ -8141,6 +8301,10 @@ interface ConditionValue_interfaceParameterPropertyValue {
8141
8301
  type: "interfaceParameterPropertyValue";
8142
8302
  interfaceParameterPropertyValue: InterfaceParameterPropertyValue;
8143
8303
  }
8304
+ interface ConditionValue_interfaceParameterPropertyValueV2 {
8305
+ type: "interfaceParameterPropertyValueV2";
8306
+ interfaceParameterPropertyValueV2: InterfaceParameterPropertyValueV2;
8307
+ }
8144
8308
  interface ConditionValue_userProperty {
8145
8309
  type: "userProperty";
8146
8310
  userProperty: UserProperty;
@@ -8149,7 +8313,7 @@ interface ConditionValue_parameterLength {
8149
8313
  type: "parameterLength";
8150
8314
  parameterLength: ParameterLength;
8151
8315
  }
8152
- type ConditionValue = ConditionValue_parameterId | ConditionValue_staticValue | ConditionValue_objectParameterPropertyValue | ConditionValue_interfaceParameterPropertyValue | ConditionValue_userProperty | ConditionValue_parameterLength;
8316
+ type ConditionValue = ConditionValue_parameterId | ConditionValue_staticValue | ConditionValue_objectParameterPropertyValue | ConditionValue_interfaceParameterPropertyValue | ConditionValue_interfaceParameterPropertyValueV2 | ConditionValue_userProperty | ConditionValue_parameterLength;
8153
8317
  interface ConditionValueModification_parameterId {
8154
8318
  type: "parameterId";
8155
8319
  parameterId: ParameterId;
@@ -8166,6 +8330,10 @@ interface ConditionValueModification_interfaceParameterPropertyValue {
8166
8330
  type: "interfaceParameterPropertyValue";
8167
8331
  interfaceParameterPropertyValue: InterfaceParameterPropertyValueModification;
8168
8332
  }
8333
+ interface ConditionValueModification_interfaceParameterPropertyValueV2 {
8334
+ type: "interfaceParameterPropertyValueV2";
8335
+ interfaceParameterPropertyValueV2: InterfaceParameterPropertyValueModificationV2;
8336
+ }
8169
8337
  interface ConditionValueModification_userProperty {
8170
8338
  type: "userProperty";
8171
8339
  userProperty: UserProperty;
@@ -8174,7 +8342,7 @@ interface ConditionValueModification_parameterLength {
8174
8342
  type: "parameterLength";
8175
8343
  parameterLength: ParameterLength;
8176
8344
  }
8177
- type ConditionValueModification = ConditionValueModification_parameterId | ConditionValueModification_staticValue | ConditionValueModification_objectParameterPropertyValue | ConditionValueModification_interfaceParameterPropertyValue | ConditionValueModification_userProperty | ConditionValueModification_parameterLength;
8345
+ type ConditionValueModification = ConditionValueModification_parameterId | ConditionValueModification_staticValue | ConditionValueModification_objectParameterPropertyValue | ConditionValueModification_interfaceParameterPropertyValue | ConditionValueModification_interfaceParameterPropertyValueV2 | ConditionValueModification_userProperty | ConditionValueModification_parameterLength;
8178
8346
  /**
8179
8347
  * The time that the user submits the Action will be used for this value.
8180
8348
  */
@@ -8765,7 +8933,11 @@ interface EmbeddingModel_text {
8765
8933
  type: "text";
8766
8934
  text: TextEmbeddingModel;
8767
8935
  }
8768
- type EmbeddingModel = EmbeddingModel_text;
8936
+ interface EmbeddingModel_multimodal {
8937
+ type: "multimodal";
8938
+ multimodal: MultimodalEmbeddingModel;
8939
+ }
8940
+ type EmbeddingModel = EmbeddingModel_text | EmbeddingModel_multimodal;
8769
8941
  interface Empty {
8770
8942
  }
8771
8943
  /**
@@ -9111,6 +9283,7 @@ interface GetActionTypesForObjectTypeRequest {
9111
9283
  interface GetActionTypesForObjectTypeResponse {
9112
9284
  actionTypes: Array<ActionType>;
9113
9285
  nextPageToken?: GetActionTypesForObjectTypePageToken | null | undefined;
9286
+ resolvedBranch: ResolvedBranch;
9114
9287
  }
9115
9288
  interface GetEntityDelegateDatasetRequest {
9116
9289
  ontologyEntityRid: ObjectOrLinkTypeRid;
@@ -9261,6 +9434,12 @@ interface IconReference {
9261
9434
  locator: string;
9262
9435
  source: string;
9263
9436
  }
9437
+ interface ImageModality {
9438
+ }
9439
+ interface ImplementingLinkType {
9440
+ linkTypeRid: LinkTypeRid;
9441
+ startingFromLinkTypeSide: LinkTypeSide;
9442
+ }
9264
9443
  interface ImportedOntologyEntitiesForProjectSpanOntologies {
9265
9444
  sourceOntologyEntities: Array<string>;
9266
9445
  targetOntologyEntities: Array<string>;
@@ -9337,6 +9516,32 @@ interface InterfaceLinkTypeRidOrIdInRequest_idInRequest {
9337
9516
  idInRequest: InterfaceLinkTypeIdInRequest;
9338
9517
  }
9339
9518
  type InterfaceLinkTypeRidOrIdInRequest = InterfaceLinkTypeRidOrIdInRequest_rid | InterfaceLinkTypeRidOrIdInRequest_idInRequest;
9519
+ /**
9520
+ * Reference to a struct field of a struct property.
9521
+ */
9522
+ interface InterfaceObjectParameterStructFieldValue {
9523
+ interfacePropertyTypeRid: InterfacePropertyTypeRid;
9524
+ parameterId: ParameterId;
9525
+ structFieldRid: StructFieldRid;
9526
+ }
9527
+ interface InterfaceObjectParameterStructFieldValueModification {
9528
+ interfacePropertyTypeRidOrIdInRequest: InterfacePropertyTypeRidOrIdInRequest;
9529
+ parameterId: ParameterId;
9530
+ structFieldApiNameOrRid: StructFieldApiNameOrRid;
9531
+ }
9532
+ /**
9533
+ * Reference to a struct field of a struct list property.
9534
+ */
9535
+ interface InterfaceObjectParameterStructListFieldValue {
9536
+ interfacePropertyTypeRid: InterfacePropertyTypeRid;
9537
+ parameterId: ParameterId;
9538
+ structFieldRid: StructFieldRid;
9539
+ }
9540
+ interface InterfaceObjectParameterStructListFieldValueModification {
9541
+ interfacePropertyTypeRidOrIdInRequest: InterfacePropertyTypeRidOrIdInRequest;
9542
+ parameterId: ParameterId;
9543
+ structFieldApiNameOrRid: StructFieldApiNameOrRid;
9544
+ }
9340
9545
  interface InterfaceParameterPropertyValue {
9341
9546
  parameterId: ParameterId;
9342
9547
  sharedPropertyTypeRid: SharedPropertyTypeRid;
@@ -9345,9 +9550,29 @@ interface InterfaceParameterPropertyValueModification {
9345
9550
  parameterId: ParameterId;
9346
9551
  sharedPropertyTypeRidOrIdInRequest: SharedPropertyTypeRidOrIdInRequest;
9347
9552
  }
9553
+ /**
9554
+ * Used to reference interface properties. Note, these are curently unsupported on the actions backend.
9555
+ */
9556
+ interface InterfaceParameterPropertyValueModificationV2 {
9557
+ interfacePropertyTypeRidOrIdInRequest: InterfacePropertyTypeRidOrIdInRequest;
9558
+ parameterId: ParameterId;
9559
+ }
9560
+ interface InterfaceParameterPropertyValueV2 {
9561
+ interfacePropertyTypeRid: InterfacePropertyTypeRid;
9562
+ parameterId: ParameterId;
9563
+ }
9348
9564
  interface InterfacePropertyImplementation {
9349
9565
  propertyTypeRid: PropertyTypeRid;
9350
9566
  }
9567
+ interface InterfacePropertyLogicRuleValue_logicRuleValue {
9568
+ type: "logicRuleValue";
9569
+ logicRuleValue: LogicRuleValue;
9570
+ }
9571
+ interface InterfacePropertyLogicRuleValue_structLogicRuleValue {
9572
+ type: "structLogicRuleValue";
9573
+ structLogicRuleValue: Record<StructFieldRid, StructFieldLogicRuleValue>;
9574
+ }
9575
+ type InterfacePropertyLogicRuleValue = InterfacePropertyLogicRuleValue_logicRuleValue | InterfacePropertyLogicRuleValue_structLogicRuleValue;
9351
9576
  interface InterfacePropertyType_sharedPropertyBasedPropertyType {
9352
9577
  type: "sharedPropertyBasedPropertyType";
9353
9578
  sharedPropertyBasedPropertyType: SharedPropertyBasedPropertyType;
@@ -9364,6 +9589,15 @@ interface InterfacePropertyTypeDisplayMetadata {
9364
9589
  * created in.
9365
9590
  */
9366
9591
  type InterfacePropertyTypeIdInRequest = string;
9592
+ interface InterfacePropertyTypeImplementation_propertyTypeRid {
9593
+ type: "propertyTypeRid";
9594
+ propertyTypeRid: PropertyTypeRid;
9595
+ }
9596
+ type InterfacePropertyTypeImplementation = InterfacePropertyTypeImplementation_propertyTypeRid;
9597
+ interface InterfacePropertyTypeLogicRuleValueModification {
9598
+ interfacePropertyLogicRuleModification: PrimitiveOrStructLogicRuleModification;
9599
+ interfacePropertyTypeRidOrIdInRequest: InterfacePropertyTypeRidOrIdInRequest;
9600
+ }
9367
9601
  /**
9368
9602
  * A rid identifying an InterfacePropertyType. This rid is generated randomly and is safe for logging purposes.
9369
9603
  * The InterfacePropertyTypeRid for an InterfacePropertyType is immutable.
@@ -9431,7 +9665,7 @@ interface InterfaceTypeDeletedEvent {
9431
9665
  interface InterfaceTypeDisplayMetadata {
9432
9666
  description?: string | null | undefined;
9433
9667
  displayName: string;
9434
- icon?: Icon | null | undefined;
9668
+ icon: Icon;
9435
9669
  }
9436
9670
  interface InterfaceTypeError_interfaceTypesNotFound {
9437
9671
  type: "interfaceTypesNotFound";
@@ -9454,6 +9688,7 @@ interface InterfaceTypeLoadResponse {
9454
9688
  interfaceType: InterfaceType;
9455
9689
  ontologyRid: OntologyRid;
9456
9690
  ontologyVersion: OntologyVersion;
9691
+ resolvedBranch: ResolvedBranch;
9457
9692
  }
9458
9693
  /**
9459
9694
  * An immutable rid identifying the interface. This rid is generated randomly and is safe for logging purposes.
@@ -9716,6 +9951,7 @@ interface LinkTypeLoadResponse {
9716
9951
  linkType: LinkType;
9717
9952
  ontologyRid: OntologyRid;
9718
9953
  ontologyVersion: OntologyVersion;
9954
+ resolvedBranch: ResolvedBranch;
9719
9955
  }
9720
9956
  interface LinkTypeMetadata {
9721
9957
  apiName?: ObjectTypeFieldApiName | null | undefined;
@@ -9752,6 +9988,15 @@ type LinkTypePeeringRid = string;
9752
9988
  * the LinkTypeRid will be different.
9753
9989
  */
9754
9990
  type LinkTypeRid = string;
9991
+ interface LinkTypeRidOrId_rid {
9992
+ type: "rid";
9993
+ rid: LinkTypeRid;
9994
+ }
9995
+ interface LinkTypeRidOrId_id {
9996
+ type: "id";
9997
+ id: LinkTypeId;
9998
+ }
9999
+ type LinkTypeRidOrId = LinkTypeRidOrId_rid | LinkTypeRidOrId_id;
9755
10000
  /**
9756
10001
  * The LinkTypesRids were not found in the current ontology.
9757
10002
  */
@@ -10088,6 +10333,10 @@ interface LogicRuleValue_interfaceParameterPropertyValue {
10088
10333
  type: "interfaceParameterPropertyValue";
10089
10334
  interfaceParameterPropertyValue: InterfaceParameterPropertyValue;
10090
10335
  }
10336
+ interface LogicRuleValue_interfaceParameterPropertyValueV2 {
10337
+ type: "interfaceParameterPropertyValueV2";
10338
+ interfaceParameterPropertyValueV2: InterfaceParameterPropertyValueV2;
10339
+ }
10091
10340
  interface LogicRuleValue_currentUser {
10092
10341
  type: "currentUser";
10093
10342
  currentUser: CurrentUser;
@@ -10108,7 +10357,7 @@ interface LogicRuleValue_synchronousWebhookOutput {
10108
10357
  * These are the possible values that can be passed into LogicRules as well as Notification and Webhook side
10109
10358
  * effects.
10110
10359
  */
10111
- type LogicRuleValue = LogicRuleValue_parameterId | LogicRuleValue_staticValue | LogicRuleValue_objectParameterPropertyValue | LogicRuleValue_interfaceParameterPropertyValue | LogicRuleValue_currentUser | LogicRuleValue_currentTime | LogicRuleValue_uniqueIdentifier | LogicRuleValue_synchronousWebhookOutput;
10360
+ type LogicRuleValue = LogicRuleValue_parameterId | LogicRuleValue_staticValue | LogicRuleValue_objectParameterPropertyValue | LogicRuleValue_interfaceParameterPropertyValue | LogicRuleValue_interfaceParameterPropertyValueV2 | LogicRuleValue_currentUser | LogicRuleValue_currentTime | LogicRuleValue_uniqueIdentifier | LogicRuleValue_synchronousWebhookOutput;
10112
10361
  interface LogicRuleValueModification_parameterId {
10113
10362
  type: "parameterId";
10114
10363
  parameterId: ParameterId;
@@ -10125,6 +10374,10 @@ interface LogicRuleValueModification_interfaceParameterPropertyValue {
10125
10374
  type: "interfaceParameterPropertyValue";
10126
10375
  interfaceParameterPropertyValue: InterfaceParameterPropertyValueModification;
10127
10376
  }
10377
+ interface LogicRuleValueModification_interfaceParameterPropertyValueV2 {
10378
+ type: "interfaceParameterPropertyValueV2";
10379
+ interfaceParameterPropertyValueV2: InterfaceParameterPropertyValueModificationV2;
10380
+ }
10128
10381
  interface LogicRuleValueModification_currentUser {
10129
10382
  type: "currentUser";
10130
10383
  currentUser: CurrentUser;
@@ -10145,7 +10398,7 @@ interface LogicRuleValueModification_synchronousWebhookOutput {
10145
10398
  * These are the possible values that can be passed into LogicRules as well as Notification and Webhook side
10146
10399
  * effects.
10147
10400
  */
10148
- type LogicRuleValueModification = LogicRuleValueModification_parameterId | LogicRuleValueModification_staticValue | LogicRuleValueModification_objectParameterPropertyValue | LogicRuleValueModification_interfaceParameterPropertyValue | LogicRuleValueModification_currentUser | LogicRuleValueModification_currentTime | LogicRuleValueModification_uniqueIdentifier | LogicRuleValueModification_synchronousWebhookOutput;
10401
+ type LogicRuleValueModification = LogicRuleValueModification_parameterId | LogicRuleValueModification_staticValue | LogicRuleValueModification_objectParameterPropertyValue | LogicRuleValueModification_interfaceParameterPropertyValue | LogicRuleValueModification_interfaceParameterPropertyValueV2 | LogicRuleValueModification_currentUser | LogicRuleValueModification_currentTime | LogicRuleValueModification_uniqueIdentifier | LogicRuleValueModification_synchronousWebhookOutput;
10149
10402
  interface LongPropertyType {
10150
10403
  }
10151
10404
  interface LongTypeDataConstraints_range$1 {
@@ -10317,6 +10570,7 @@ interface MediaSourceRid_datasetRid {
10317
10570
  * A rid identifying the resource backing a media reference.
10318
10571
  */
10319
10572
  type MediaSourceRid = MediaSourceRid_mediaSetRid | MediaSourceRid_datasetRid;
10573
+ type MioEmbeddingModel = "GOOGLE_SIGLIP_2";
10320
10574
  interface MissingAffectedObjectTypesForFunctionRule {
10321
10575
  functionRid: FunctionRid;
10322
10576
  functionVersion: SemanticFunctionVersion;
@@ -10324,13 +10578,32 @@ interface MissingAffectedObjectTypesForFunctionRule {
10324
10578
  }
10325
10579
  interface MissingParameterValueType {
10326
10580
  }
10581
+ interface Modality_text {
10582
+ type: "text";
10583
+ text: TextModality;
10584
+ }
10585
+ interface Modality_image {
10586
+ type: "image";
10587
+ image: ImageModality;
10588
+ }
10589
+ /**
10590
+ * Represents the type of input data that can be embedded.
10591
+ */
10592
+ type Modality = Modality_text | Modality_image;
10593
+ interface ModelWithSource_mio {
10594
+ type: "mio";
10595
+ mio: MioEmbeddingModel;
10596
+ }
10597
+ type ModelWithSource = ModelWithSource_mio;
10327
10598
  interface ModifyInterfaceRule {
10328
10599
  interfaceObjectToModify: ParameterId;
10600
+ interfacePropertyValues: Record<InterfacePropertyTypeRid, InterfacePropertyLogicRuleValue>;
10329
10601
  sharedPropertyValues: Record<SharedPropertyTypeRid, LogicRuleValue>;
10330
10602
  structFieldValues: Record<SharedPropertyTypeRid, Record<StructFieldRid, StructFieldLogicRuleValue>>;
10331
10603
  }
10332
10604
  interface ModifyInterfaceRuleModification {
10333
10605
  interfaceObjectToModify: ParameterId;
10606
+ interfacePropertyTypeLogicRuleValueModifications: Array<InterfacePropertyTypeLogicRuleValueModification>;
10334
10607
  sharedPropertyTypeLogicRuleValueModifications: Array<SharedPropertyTypeLogicRuleValueModification>;
10335
10608
  sharedPropertyTypeStructFieldLogicRuleValueModifications: Array<SharedPropertyTypeStructFieldLogicRuleValueModification>;
10336
10609
  }
@@ -10349,6 +10622,13 @@ interface ModifyObjectRuleModification {
10349
10622
  * ResourceIdentifier for a Workshop Module.
10350
10623
  */
10351
10624
  type ModuleRid = string;
10625
+ /**
10626
+ * Represents an embedding model that can support different input types
10627
+ */
10628
+ interface MultimodalEmbeddingModel {
10629
+ modelWithSource: ModelWithSource;
10630
+ supportedModalities: Array<Modality>;
10631
+ }
10352
10632
  interface MultipassUserFilter_groupFilter {
10353
10633
  type: "groupFilter";
10354
10634
  groupFilter: MultipassUserInGroupFilter;
@@ -11107,7 +11387,9 @@ interface ObjectTypeInterfaceImplementation {
11107
11387
  interfaceTypeApiName: InterfaceTypeApiName;
11108
11388
  interfaceTypeRid: InterfaceTypeRid;
11109
11389
  links: Record<InterfaceLinkTypeRid, Array<LinkTypeId>>;
11390
+ linksV2: Record<InterfaceLinkTypeRid, Array<ImplementingLinkType>>;
11110
11391
  properties: Record<SharedPropertyTypeRid, InterfacePropertyImplementation>;
11392
+ propertiesV2: Record<InterfacePropertyTypeRid, InterfacePropertyTypeImplementation>;
11111
11393
  }
11112
11394
  /**
11113
11395
  * Request to load an ObjectType.
@@ -11125,6 +11407,7 @@ interface ObjectTypeLoadResponse {
11125
11407
  objectType: ObjectType;
11126
11408
  ontologyRid: OntologyRid;
11127
11409
  ontologyVersion: OntologyVersion;
11410
+ resolvedBranch: ResolvedBranch;
11128
11411
  }
11129
11412
  /**
11130
11413
  * Object type datasource that is backed by media, uniquely identified by its rid.
@@ -11418,6 +11701,7 @@ interface OntologyBulkLoadEntitiesRequest {
11418
11701
  actionTypes: Array<ActionTypeLoadRequestV2>;
11419
11702
  datasourceTypes: Array<DatasourceType>;
11420
11703
  entityMetadata?: EntityMetadataLoadRequest | null | undefined;
11704
+ fallBackToOwningBranch?: boolean | null | undefined;
11421
11705
  includeEntityMetadata?: boolean | null | undefined;
11422
11706
  includeObjectTypeCount?: boolean | null | undefined;
11423
11707
  includeObjectTypesWithoutSearchableDatasources?: boolean | null | undefined;
@@ -11500,6 +11784,10 @@ interface OntologyIrActionLogValue_interfaceParameterPropertyValue {
11500
11784
  type: "interfaceParameterPropertyValue";
11501
11785
  interfaceParameterPropertyValue: OntologyIrInterfaceParameterPropertyValue;
11502
11786
  }
11787
+ interface OntologyIrActionLogValue_interfaceParameterPropertyValueV2 {
11788
+ type: "interfaceParameterPropertyValueV2";
11789
+ interfaceParameterPropertyValueV2: OntologyIrInterfaceParameterPropertyValueV2;
11790
+ }
11503
11791
  interface OntologyIrActionLogValue_editedObjects {
11504
11792
  type: "editedObjects";
11505
11793
  editedObjects: ObjectTypeApiName;
@@ -11564,7 +11852,7 @@ interface OntologyIrActionLogValue_summary {
11564
11852
  type: "summary";
11565
11853
  summary: Array<OntologyIrActionTypeRichTextComponent>;
11566
11854
  }
11567
- type OntologyIrActionLogValue = OntologyIrActionLogValue_parameterValue | OntologyIrActionLogValue_objectParameterPropertyValue | OntologyIrActionLogValue_interfaceParameterPropertyValue | OntologyIrActionLogValue_editedObjects | OntologyIrActionLogValue_allEditedObjects | OntologyIrActionLogValue_actionTypeRid | OntologyIrActionLogValue_actionRid | OntologyIrActionLogValue_actionTypeVersion | OntologyIrActionLogValue_actionTimestamp | OntologyIrActionLogValue_actionUser | OntologyIrActionLogValue_isReverted | OntologyIrActionLogValue_revertUser | OntologyIrActionLogValue_revertTimestamp | OntologyIrActionLogValue_synchronousWebhookInstanceId | OntologyIrActionLogValue_asynchronousWebhookInstanceIds | OntologyIrActionLogValue_notifiedUsers | OntologyIrActionLogValue_notificationIds | OntologyIrActionLogValue_scenarioRid | OntologyIrActionLogValue_summary;
11855
+ type OntologyIrActionLogValue = OntologyIrActionLogValue_parameterValue | OntologyIrActionLogValue_objectParameterPropertyValue | OntologyIrActionLogValue_interfaceParameterPropertyValue | OntologyIrActionLogValue_interfaceParameterPropertyValueV2 | OntologyIrActionLogValue_editedObjects | OntologyIrActionLogValue_allEditedObjects | OntologyIrActionLogValue_actionTypeRid | OntologyIrActionLogValue_actionRid | OntologyIrActionLogValue_actionTypeVersion | OntologyIrActionLogValue_actionTimestamp | OntologyIrActionLogValue_actionUser | OntologyIrActionLogValue_isReverted | OntologyIrActionLogValue_revertUser | OntologyIrActionLogValue_revertTimestamp | OntologyIrActionLogValue_synchronousWebhookInstanceId | OntologyIrActionLogValue_asynchronousWebhookInstanceIds | OntologyIrActionLogValue_notifiedUsers | OntologyIrActionLogValue_notificationIds | OntologyIrActionLogValue_scenarioRid | OntologyIrActionLogValue_summary;
11568
11856
  /**
11569
11857
  * A notification that will be triggered on successful completion of an action.
11570
11858
  */
@@ -11700,6 +11988,7 @@ type OntologyIrActionTypeStatus = OntologyIrActionTypeStatus_experimental | Onto
11700
11988
  interface OntologyIrActionValidation {
11701
11989
  actionTypeLevelValidation: OntologyIrActionTypeLevelValidation;
11702
11990
  parameterValidations: Record<ParameterId, OntologyIrConditionalValidationBlock>;
11991
+ sectionValidations: Record<SectionId, OntologyIrSectionDisplayBlock>;
11703
11992
  }
11704
11993
  /**
11705
11994
  * ActionWebhooks contains the definition for webhooks that are executed as part of running an Action.
@@ -11836,7 +12125,7 @@ interface OntologyIrAllowedParameterValues_redacted {
11836
12125
  }
11837
12126
  interface OntologyIrAllowedParameterValues_valueType {
11838
12127
  type: "valueType";
11839
- valueType: ParameterValueTypeOrEmpty;
12128
+ valueType: ParameterValueTypeWithVersionIdOrEmpty;
11840
12129
  }
11841
12130
  type OntologyIrAllowedParameterValues = OntologyIrAllowedParameterValues_oneOf | OntologyIrAllowedParameterValues_range | OntologyIrAllowedParameterValues_objectQuery | OntologyIrAllowedParameterValues_interfaceObjectQuery | OntologyIrAllowedParameterValues_objectPropertyValue | OntologyIrAllowedParameterValues_interfacePropertyValue | OntologyIrAllowedParameterValues_objectList | OntologyIrAllowedParameterValues_user | OntologyIrAllowedParameterValues_multipassGroup | OntologyIrAllowedParameterValues_text | OntologyIrAllowedParameterValues_datetime | OntologyIrAllowedParameterValues_boolean | OntologyIrAllowedParameterValues_objectSetRid | OntologyIrAllowedParameterValues_attachment | OntologyIrAllowedParameterValues_cbacMarking | OntologyIrAllowedParameterValues_mandatoryMarking | OntologyIrAllowedParameterValues_mediaReference | OntologyIrAllowedParameterValues_objectTypeReference | OntologyIrAllowedParameterValues_timeSeriesReference | OntologyIrAllowedParameterValues_geohash | OntologyIrAllowedParameterValues_geoshape | OntologyIrAllowedParameterValues_geotimeSeriesReference | OntologyIrAllowedParameterValues_redacted | OntologyIrAllowedParameterValues_valueType;
11842
12131
  interface OntologyIrAllowedStructFieldValues_oneOf {
@@ -11952,6 +12241,13 @@ interface OntologyIrCipherTextPropertyType {
11952
12241
  defaultCipherChannelRid?: string | null | undefined;
11953
12242
  plainTextType: OntologyIrType;
11954
12243
  }
12244
+ /**
12245
+ * Contains a set of markings that represents the max classification of this datasource.
12246
+ */
12247
+ interface OntologyIrClassificationConstraint {
12248
+ allowEmptyMarkings?: boolean | null | undefined;
12249
+ markingGroupName: MarkingGroupName;
12250
+ }
11955
12251
  interface OntologyIrComparisonCondition {
11956
12252
  displayMetadata?: ConditionDisplayMetadata | null | undefined;
11957
12253
  left: OntologyIrConditionValue;
@@ -12024,6 +12320,14 @@ interface OntologyIrConditionValue_parameterLength {
12024
12320
  parameterLength: ParameterLength;
12025
12321
  }
12026
12322
  type OntologyIrConditionValue = OntologyIrConditionValue_parameterId | OntologyIrConditionValue_staticValue | OntologyIrConditionValue_objectParameterPropertyValue | OntologyIrConditionValue_interfaceParameterPropertyValue | OntologyIrConditionValue_userProperty | OntologyIrConditionValue_parameterLength;
12323
+ /**
12324
+ * Contains information about the different security controls applied on data in this datasource. Note that
12325
+ * currently this is only allowed on Restricted View-like datasources.
12326
+ */
12327
+ interface OntologyIrDataSecurity {
12328
+ classificationConstraint?: OntologyIrClassificationConstraint | null | undefined;
12329
+ markingConstraint?: OntologyIrMandatoryMarkingConstraint | null | undefined;
12330
+ }
12027
12331
  interface OntologyIrDateRangeValue_fixed {
12028
12332
  type: "fixed";
12029
12333
  fixed: OntologyIrConditionValue;
@@ -12065,15 +12369,6 @@ interface OntologyIrDeprecatedActionTypeStatus {
12065
12369
  message: string;
12066
12370
  replacedBy?: ActionTypeApiName | null | undefined;
12067
12371
  }
12068
- /**
12069
- * This status indicates that the interface is reaching the end of its life and will be removed as per the
12070
- * deadline specified.
12071
- */
12072
- interface OntologyIrDeprecatedInterfaceTypeStatus {
12073
- deadline: string;
12074
- message: string;
12075
- replacedBy?: InterfaceTypeApiName | null | undefined;
12076
- }
12077
12372
  /**
12078
12373
  * This status indicates that the LinkType is reaching the end of its life and will be removed as per the deadline specified.
12079
12374
  */
@@ -12206,70 +12501,60 @@ interface OntologyIrFunctionRule {
12206
12501
  functionRid: FunctionRid;
12207
12502
  functionVersion: SemanticFunctionVersion;
12208
12503
  }
12504
+ interface OntologyIrImplementingLinkType {
12505
+ linkTypeRid: LinkTypeId;
12506
+ startingFromLinkTypeSide: LinkTypeSide;
12507
+ }
12209
12508
  interface OntologyIrInlineActionType {
12210
12509
  displayOptions: InlineActionDisplayOptions;
12211
12510
  parameterId?: ParameterId | null | undefined;
12212
12511
  rid: ActionTypeApiName;
12213
12512
  }
12214
- interface OntologyIrInterfaceLinkType {
12215
- cardinality: InterfaceLinkTypeCardinality;
12216
- linkedEntityTypeId: OntologyIrLinkedEntityTypeId;
12217
- metadata: InterfaceLinkTypeMetadata;
12218
- required: boolean;
12513
+ /**
12514
+ * Reference to a struct field of a struct property.
12515
+ */
12516
+ interface OntologyIrInterfaceObjectParameterStructFieldValue {
12517
+ interfacePropertyTypeRid: InterfacePropertyTypeApiName;
12518
+ parameterId: ParameterId;
12519
+ structFieldRid: StructFieldRid;
12520
+ }
12521
+ /**
12522
+ * Reference to a struct field of a struct list property.
12523
+ */
12524
+ interface OntologyIrInterfaceObjectParameterStructListFieldValue {
12525
+ interfacePropertyTypeRid: InterfacePropertyTypeApiName;
12526
+ parameterId: ParameterId;
12527
+ structFieldRid: StructFieldRid;
12219
12528
  }
12220
12529
  interface OntologyIrInterfaceParameterPropertyValue {
12221
12530
  parameterId: ParameterId;
12222
12531
  sharedPropertyTypeRid: ObjectTypeFieldApiName;
12223
12532
  }
12533
+ interface OntologyIrInterfaceParameterPropertyValueV2 {
12534
+ interfacePropertyTypeRid: InterfacePropertyTypeApiName;
12535
+ parameterId: ParameterId;
12536
+ }
12224
12537
  interface OntologyIrInterfacePropertyImplementation {
12225
12538
  propertyTypeRid: ObjectTypeFieldApiName;
12226
12539
  }
12227
- interface OntologyIrInterfacePropertyType_sharedPropertyBasedPropertyType {
12228
- type: "sharedPropertyBasedPropertyType";
12229
- sharedPropertyBasedPropertyType: OntologyIrSharedPropertyBasedPropertyType;
12540
+ interface OntologyIrInterfacePropertyLogicRuleValue_logicRuleValue {
12541
+ type: "logicRuleValue";
12542
+ logicRuleValue: OntologyIrLogicRuleValue;
12230
12543
  }
12231
- type OntologyIrInterfacePropertyType = OntologyIrInterfacePropertyType_sharedPropertyBasedPropertyType;
12544
+ interface OntologyIrInterfacePropertyLogicRuleValue_structLogicRuleValue {
12545
+ type: "structLogicRuleValue";
12546
+ structLogicRuleValue: Record<StructFieldRid, StructFieldLogicRuleValue>;
12547
+ }
12548
+ type OntologyIrInterfacePropertyLogicRuleValue = OntologyIrInterfacePropertyLogicRuleValue_logicRuleValue | OntologyIrInterfacePropertyLogicRuleValue_structLogicRuleValue;
12549
+ interface OntologyIrInterfacePropertyTypeImplementation_propertyTypeRid {
12550
+ type: "propertyTypeRid";
12551
+ propertyTypeRid: ObjectTypeFieldApiName;
12552
+ }
12553
+ type OntologyIrInterfacePropertyTypeImplementation = OntologyIrInterfacePropertyTypeImplementation_propertyTypeRid;
12232
12554
  interface OntologyIrInterfaceSharedPropertyType {
12233
12555
  required: boolean;
12234
12556
  sharedPropertyType: OntologyIrSharedPropertyType;
12235
12557
  }
12236
- /**
12237
- * Represents a collection of properties that object types can implement. If an object type implements an
12238
- * interface, it is guaranteed to have the conform to the interface shape.
12239
- */
12240
- interface OntologyIrInterfaceType {
12241
- allExtendsInterfaces: Array<InterfaceTypeApiName>;
12242
- allLinks: Array<OntologyIrInterfaceLinkType>;
12243
- allProperties: Array<OntologyIrSharedPropertyType>;
12244
- allPropertiesV2: Record<ObjectTypeFieldApiName, OntologyIrInterfaceSharedPropertyType>;
12245
- allPropertiesV3: Record<InterfacePropertyTypeApiName, OntologyIrResolvedInterfacePropertyType>;
12246
- apiName: InterfaceTypeApiName;
12247
- displayMetadata: InterfaceTypeDisplayMetadata;
12248
- extendsInterfaces: Array<InterfaceTypeApiName>;
12249
- links: Array<OntologyIrInterfaceLinkType>;
12250
- properties: Array<OntologyIrSharedPropertyType>;
12251
- propertiesV2: Record<ObjectTypeFieldApiName, OntologyIrInterfaceSharedPropertyType>;
12252
- propertiesV3: Record<InterfacePropertyTypeApiName, OntologyIrInterfacePropertyType>;
12253
- searchable?: boolean | null | undefined;
12254
- status: OntologyIrInterfaceTypeStatus;
12255
- }
12256
- interface OntologyIrInterfaceTypeStatus_experimental {
12257
- type: "experimental";
12258
- experimental: ExperimentalInterfaceTypeStatus;
12259
- }
12260
- interface OntologyIrInterfaceTypeStatus_active {
12261
- type: "active";
12262
- active: ActiveInterfaceTypeStatus;
12263
- }
12264
- interface OntologyIrInterfaceTypeStatus_deprecated {
12265
- type: "deprecated";
12266
- deprecated: OntologyIrDeprecatedInterfaceTypeStatus;
12267
- }
12268
- interface OntologyIrInterfaceTypeStatus_example {
12269
- type: "example";
12270
- example: ExampleInterfaceTypeStatus;
12271
- }
12272
- type OntologyIrInterfaceTypeStatus = OntologyIrInterfaceTypeStatus_experimental | OntologyIrInterfaceTypeStatus_active | OntologyIrInterfaceTypeStatus_deprecated | OntologyIrInterfaceTypeStatus_example;
12273
12558
  /**
12274
12559
  * Represents a link between two ObjectTypes with an intermediary ObjectType acting as a bridge.
12275
12560
  * This LinkType can be used to jump from ObjectType A to B without specifying two separate search-arounds.
@@ -12413,6 +12698,13 @@ interface OntologyIrLogicRuleValue_synchronousWebhookOutput {
12413
12698
  * effects.
12414
12699
  */
12415
12700
  type OntologyIrLogicRuleValue = OntologyIrLogicRuleValue_parameterId | OntologyIrLogicRuleValue_staticValue | OntologyIrLogicRuleValue_objectParameterPropertyValue | OntologyIrLogicRuleValue_interfaceParameterPropertyValue | OntologyIrLogicRuleValue_currentUser | OntologyIrLogicRuleValue_currentTime | OntologyIrLogicRuleValue_uniqueIdentifier | OntologyIrLogicRuleValue_synchronousWebhookOutput;
12701
+ /**
12702
+ * Contains a set of markings that represent the mandatory security of this datasource.
12703
+ */
12704
+ interface OntologyIrMandatoryMarkingConstraint {
12705
+ allowEmptyMarkings?: boolean | null | undefined;
12706
+ markingGroupName: MarkingGroupName;
12707
+ }
12416
12708
  interface OntologyIrManyToManyLinkDefinition {
12417
12709
  objectTypeAPrimaryKeyPropertyMapping: Array<OntologyIrPropertyToPropertyMapping>;
12418
12710
  objectTypeAToBLinkMetadata: LinkTypeMetadata;
@@ -12759,6 +13051,7 @@ interface OntologyIrObjectTypeDatasetDatasourceV3 {
12759
13051
  propertySecurityGroups?: OntologyIrPropertySecurityGroups | null | undefined;
12760
13052
  }
12761
13053
  interface OntologyIrObjectTypeDatasource {
13054
+ dataSecurity?: OntologyIrDataSecurity | null | undefined;
12762
13055
  datasource: OntologyIrObjectTypeDatasourceDefinition;
12763
13056
  editsConfiguration?: EditsConfiguration | null | undefined;
12764
13057
  redacted?: boolean | null | undefined;
@@ -12868,7 +13161,9 @@ interface OntologyIrObjectTypeGeotimeSeriesDatasource {
12868
13161
  */
12869
13162
  interface OntologyIrObjectTypeInterfaceImplementation {
12870
13163
  interfaceTypeApiName: InterfaceTypeApiName;
13164
+ linksV2: Record<InterfaceLinkTypeApiName, Array<OntologyIrImplementingLinkType>>;
12871
13165
  properties: Record<ObjectTypeFieldApiName, OntologyIrInterfacePropertyImplementation>;
13166
+ propertiesV2: Record<InterfacePropertyTypeApiName, OntologyIrInterfacePropertyTypeImplementation>;
12872
13167
  }
12873
13168
  /**
12874
13169
  * Object type datasource that is backed by media, uniquely identified by its rid.
@@ -13215,6 +13510,7 @@ type OntologyIrParameterValidationBlockOverride = OntologyIrParameterValidationB
13215
13510
  * evaluate correctness of submitted parameters.
13216
13511
  */
13217
13512
  interface OntologyIrParameterValidationDisplayMetadata {
13513
+ prefill?: OntologyIrParameterPrefill | null | undefined;
13218
13514
  renderHint: ParameterRenderHint;
13219
13515
  visibility: ParameterVisibility;
13220
13516
  }
@@ -13334,16 +13630,6 @@ interface OntologyIrRegexCondition {
13334
13630
  regex: string;
13335
13631
  value: OntologyIrConditionValue;
13336
13632
  }
13337
- /**
13338
- * All information about the shape of the interface property. For now this all comes from shared properties, but
13339
- * in the future it can also come from property constraints defined on the interface.
13340
- */
13341
- interface OntologyIrResolvedInterfacePropertyType {
13342
- apiName: InterfacePropertyTypeApiName;
13343
- displayMetadata: InterfacePropertyTypeDisplayMetadata;
13344
- rid: InterfacePropertyTypeApiName;
13345
- type: OntologyIrType;
13346
- }
13347
13633
  /**
13348
13634
  * A URL target for a Foundry rid with query params.
13349
13635
  */
@@ -13443,7 +13729,7 @@ type OntologyIrSecurityGroupGranularCondition = OntologyIrSecurityGroupGranularC
13443
13729
  * every "row" (object or relation).
13444
13730
  */
13445
13731
  interface OntologyIrSecurityGroupGranularPolicy {
13446
- additionalMandatory: SecurityGroupMandatoryPolicy;
13732
+ additionalMandatory: OntologyIrSecurityGroupMandatoryPolicy;
13447
13733
  granularPolicyCondition: OntologyIrSecurityGroupGranularCondition;
13448
13734
  }
13449
13735
  /**
@@ -13452,6 +13738,16 @@ interface OntologyIrSecurityGroupGranularPolicy {
13452
13738
  interface OntologyIrSecurityGroupGranularSecurityDefinition {
13453
13739
  viewPolicy: OntologyIrSecurityGroupGranularPolicy;
13454
13740
  }
13741
+ /**
13742
+ * Ontology-managed mandatory security applied to the properties in the security group.
13743
+ */
13744
+ interface OntologyIrSecurityGroupMandatoryOnlySecurityDefinition {
13745
+ policy: OntologyIrSecurityGroupMandatoryPolicy;
13746
+ }
13747
+ interface OntologyIrSecurityGroupMandatoryPolicy {
13748
+ assumedMarkings: Array<MarkingId>;
13749
+ markings: Array<MarkingId>;
13750
+ }
13455
13751
  /**
13456
13752
  * Condition that specifies that user's markings must be evaluated against the marking(s) contained on each
13457
13753
  * object's 'property'.
@@ -13473,7 +13769,7 @@ interface OntologyIrSecurityGroupOrCondition {
13473
13769
  }
13474
13770
  interface OntologyIrSecurityGroupSecurityDefinition_mandatoryOnly {
13475
13771
  type: "mandatoryOnly";
13476
- mandatoryOnly: SecurityGroupMandatoryOnlySecurityDefinition;
13772
+ mandatoryOnly: OntologyIrSecurityGroupMandatoryOnlySecurityDefinition;
13477
13773
  }
13478
13774
  interface OntologyIrSecurityGroupSecurityDefinition_granular {
13479
13775
  type: "granular";
@@ -13500,10 +13796,6 @@ interface OntologyIrSeriesValueMetadata_numericOrNonNumericV2 {
13500
13796
  numericOrNonNumericV2: OntologyIrNumericOrNonNumericSeriesValueMetadataV2;
13501
13797
  }
13502
13798
  type OntologyIrSeriesValueMetadata = OntologyIrSeriesValueMetadata_numeric | OntologyIrSeriesValueMetadata_enum | OntologyIrSeriesValueMetadata_numericOrNonNumeric | OntologyIrSeriesValueMetadata_numericOrNonNumericV2;
13503
- interface OntologyIrSharedPropertyBasedPropertyType {
13504
- requireImplementation: boolean;
13505
- sharedPropertyType: OntologyIrSharedPropertyType;
13506
- }
13507
13799
  /**
13508
13800
  * A property type that can be shared across object types.
13509
13801
  */
@@ -13583,10 +13875,18 @@ interface OntologyIrStructFieldPrefill_objectParameterStructListFieldValue {
13583
13875
  type: "objectParameterStructListFieldValue";
13584
13876
  objectParameterStructListFieldValue: OntologyIrObjectParameterStructListFieldValue;
13585
13877
  }
13878
+ interface OntologyIrStructFieldPrefill_interfaceObjectParameterStructFieldValue {
13879
+ type: "interfaceObjectParameterStructFieldValue";
13880
+ interfaceObjectParameterStructFieldValue: OntologyIrInterfaceObjectParameterStructFieldValue;
13881
+ }
13882
+ interface OntologyIrStructFieldPrefill_interfaceObjectParameterStructListFieldValue {
13883
+ type: "interfaceObjectParameterStructListFieldValue";
13884
+ interfaceObjectParameterStructListFieldValue: OntologyIrInterfaceObjectParameterStructListFieldValue;
13885
+ }
13586
13886
  /**
13587
13887
  * StructFieldPrefill specifies what should initially suggested to users for a struct parameter's field.
13588
13888
  */
13589
- type OntologyIrStructFieldPrefill = OntologyIrStructFieldPrefill_objectParameterStructFieldValue | OntologyIrStructFieldPrefill_objectParameterStructListFieldValue;
13889
+ type OntologyIrStructFieldPrefill = OntologyIrStructFieldPrefill_objectParameterStructFieldValue | OntologyIrStructFieldPrefill_objectParameterStructListFieldValue | OntologyIrStructFieldPrefill_interfaceObjectParameterStructFieldValue | OntologyIrStructFieldPrefill_interfaceObjectParameterStructListFieldValue;
13590
13890
  interface OntologyIrStructFieldPrefillOverride {
13591
13891
  prefill: OntologyIrStructFieldPrefill;
13592
13892
  }
@@ -14624,6 +14924,10 @@ interface ParameterPrefill_interfaceParameterPropertyValue {
14624
14924
  type: "interfaceParameterPropertyValue";
14625
14925
  interfaceParameterPropertyValue: InterfaceParameterPropertyValue;
14626
14926
  }
14927
+ interface ParameterPrefill_interfaceParameterPropertyValueV2 {
14928
+ type: "interfaceParameterPropertyValueV2";
14929
+ interfaceParameterPropertyValueV2: InterfaceParameterPropertyValueV2;
14930
+ }
14627
14931
  interface ParameterPrefill_objectQueryPrefill {
14628
14932
  type: "objectQueryPrefill";
14629
14933
  objectQueryPrefill: ObjectQueryPrefill;
@@ -14643,7 +14947,7 @@ interface ParameterPrefill_redacted {
14643
14947
  /**
14644
14948
  * ParameterPrefill specifies what should initially suggested to users for this Parameter.
14645
14949
  */
14646
- type ParameterPrefill = ParameterPrefill_staticValue | ParameterPrefill_staticObject | ParameterPrefill_objectParameterPropertyValue | ParameterPrefill_interfaceParameterPropertyValue | ParameterPrefill_objectQueryPrefill | ParameterPrefill_objectQueryPropertyValue | ParameterPrefill_objectSetRidPrefill | ParameterPrefill_redacted;
14950
+ type ParameterPrefill = ParameterPrefill_staticValue | ParameterPrefill_staticObject | ParameterPrefill_objectParameterPropertyValue | ParameterPrefill_interfaceParameterPropertyValue | ParameterPrefill_interfaceParameterPropertyValueV2 | ParameterPrefill_objectQueryPrefill | ParameterPrefill_objectQueryPropertyValue | ParameterPrefill_objectSetRidPrefill | ParameterPrefill_redacted;
14647
14951
  interface ParameterPrefillModification_staticValue {
14648
14952
  type: "staticValue";
14649
14953
  staticValue: StaticValue;
@@ -14660,6 +14964,10 @@ interface ParameterPrefillModification_interfaceParameterPropertyValue {
14660
14964
  type: "interfaceParameterPropertyValue";
14661
14965
  interfaceParameterPropertyValue: InterfaceParameterPropertyValueModification;
14662
14966
  }
14967
+ interface ParameterPrefillModification_interfaceParameterPropertyValueV2 {
14968
+ type: "interfaceParameterPropertyValueV2";
14969
+ interfaceParameterPropertyValueV2: InterfaceParameterPropertyValueModificationV2;
14970
+ }
14663
14971
  interface ParameterPrefillModification_objectQueryPrefill {
14664
14972
  type: "objectQueryPrefill";
14665
14973
  objectQueryPrefill: ObjectQueryPrefillModification;
@@ -14679,7 +14987,7 @@ interface ParameterPrefillModification_redacted {
14679
14987
  /**
14680
14988
  * ParameterPrefillModification specifies what should initially suggested to users for this Parameter.
14681
14989
  */
14682
- type ParameterPrefillModification = ParameterPrefillModification_staticValue | ParameterPrefillModification_staticObject | ParameterPrefillModification_objectParameterPropertyValue | ParameterPrefillModification_interfaceParameterPropertyValue | ParameterPrefillModification_objectQueryPrefill | ParameterPrefillModification_objectQueryPropertyValue | ParameterPrefillModification_objectSetRidPrefill | ParameterPrefillModification_redacted;
14990
+ type ParameterPrefillModification = ParameterPrefillModification_staticValue | ParameterPrefillModification_staticObject | ParameterPrefillModification_objectParameterPropertyValue | ParameterPrefillModification_interfaceParameterPropertyValue | ParameterPrefillModification_interfaceParameterPropertyValueV2 | ParameterPrefillModification_objectQueryPrefill | ParameterPrefillModification_objectQueryPropertyValue | ParameterPrefillModification_objectSetRidPrefill | ParameterPrefillModification_redacted;
14683
14991
  interface ParameterPrefillOverride {
14684
14992
  prefill: ParameterPrefill;
14685
14993
  }
@@ -14893,9 +15201,28 @@ interface ParameterValueTypeOrEmpty_missingParameterValueType {
14893
15201
  /**
14894
15202
  * When a value type is deleted, and it is present on an action type's parameter, the parameter's allowed values
14895
15203
  * will become MissingParameterValueType. When users try to run an action with MissingParameterValueType, Actions
14896
- * will throw an error.
15204
+ * will return an invalid validation response. However, if the parameter is not required, a null value will pass
15205
+ * validations.
14897
15206
  */
14898
15207
  type ParameterValueTypeOrEmpty = ParameterValueTypeOrEmpty_valueType | ParameterValueTypeOrEmpty_missingParameterValueType;
15208
+ interface ParameterValueTypeWithVersionId {
15209
+ valueType: ValueTypeWithVersionId;
15210
+ }
15211
+ interface ParameterValueTypeWithVersionIdOrEmpty_valueType {
15212
+ type: "valueType";
15213
+ valueType: ParameterValueTypeWithVersionId;
15214
+ }
15215
+ interface ParameterValueTypeWithVersionIdOrEmpty_missingParameterValueType {
15216
+ type: "missingParameterValueType";
15217
+ missingParameterValueType: MissingParameterValueType;
15218
+ }
15219
+ /**
15220
+ * When a value type is deleted, and it is present on an action type's parameter, the parameter's allowed values
15221
+ * will become MissingParameterValueType. When users try to run an action with MissingParameterValueType, Actions
15222
+ * will return an invalid validation response. However, if the parameter is not required, a null value will pass
15223
+ * validations.
15224
+ */
15225
+ type ParameterValueTypeWithVersionIdOrEmpty = ParameterValueTypeWithVersionIdOrEmpty_valueType | ParameterValueTypeWithVersionIdOrEmpty_missingParameterValueType;
14899
15226
  interface PartialObjectType {
14900
15227
  authorizationRidColumnLocator?: ColumnLocator | null | undefined;
14901
15228
  description?: string | null | undefined;
@@ -14956,6 +15283,15 @@ interface PrePostFix {
14956
15283
  }
14957
15284
  interface PrimaryKeyPropertySecurityGroupType {
14958
15285
  }
15286
+ interface PrimitiveOrStructLogicRuleModification_logicRuleValueModification {
15287
+ type: "logicRuleValueModification";
15288
+ logicRuleValueModification: LogicRuleValueModification;
15289
+ }
15290
+ interface PrimitiveOrStructLogicRuleModification_structLogicRuleValueModification {
15291
+ type: "structLogicRuleValueModification";
15292
+ structLogicRuleValueModification: Array<StructFieldLogicRuleValueMappingModification>;
15293
+ }
15294
+ type PrimitiveOrStructLogicRuleModification = PrimitiveOrStructLogicRuleModification_logicRuleValueModification | PrimitiveOrStructLogicRuleModification_structLogicRuleValueModification;
14959
15295
  /**
14960
15296
  * The id of a Multipass Principal(Everyone/User/Group)
14961
15297
  */
@@ -15482,16 +15818,39 @@ interface RenderingSettings_anyNotificationRenderingCanFail {
15482
15818
  * Settings that determine the rendering behaviour for notifications in current ActionType
15483
15819
  */
15484
15820
  type RenderingSettings = RenderingSettings_allNotificationRenderingMustSucceed | RenderingSettings_anyNotificationRenderingCanFail;
15821
+ interface ResolvedBranch_default {
15822
+ type: "default";
15823
+ default: ResolvedDefaultBranch;
15824
+ }
15825
+ interface ResolvedBranch_nonDefault {
15826
+ type: "nonDefault";
15827
+ nonDefault: ResolvedNonDefaultBranch;
15828
+ }
15829
+ type ResolvedBranch = ResolvedBranch_default | ResolvedBranch_nonDefault;
15830
+ interface ResolvedDefaultBranch {
15831
+ rid: OntologyBranchRid;
15832
+ }
15485
15833
  /**
15486
15834
  * All information about the shape of the interface property. For now this all comes from shared properties, but
15487
15835
  * in the future it can also come from property constraints defined on the interface.
15488
15836
  */
15489
15837
  interface ResolvedInterfacePropertyType {
15490
15838
  apiName: InterfacePropertyTypeApiName;
15839
+ constraints: ResolvedInterfacePropertyTypeConstraints;
15491
15840
  displayMetadata: InterfacePropertyTypeDisplayMetadata;
15492
15841
  rid: InterfacePropertyTypeRid;
15493
15842
  type: Type;
15494
15843
  }
15844
+ interface ResolvedInterfacePropertyTypeConstraints {
15845
+ dataConstraints?: DataConstraints | null | undefined;
15846
+ indexedForSearch: boolean;
15847
+ requireImplementation: boolean;
15848
+ typeClasses: Array<TypeClass>;
15849
+ valueType?: ValueTypeReference$1 | null | undefined;
15850
+ }
15851
+ interface ResolvedNonDefaultBranch {
15852
+ rid: OntologyBranchRid;
15853
+ }
15495
15854
  /**
15496
15855
  * An rid identifying a Foundry restricted view. This rid is a randomly generated identifier and is safe to log.
15497
15856
  */
@@ -16104,6 +16463,7 @@ interface SharedPropertyTypeLoadRequest {
16104
16463
  interface SharedPropertyTypeLoadResponse {
16105
16464
  ontologyRid: OntologyRid;
16106
16465
  ontologyVersion: OntologyVersion;
16466
+ resolvedBranch: ResolvedBranch;
16107
16467
  sharedPropertyType: SharedPropertyType;
16108
16468
  }
16109
16469
  /**
@@ -16317,6 +16677,7 @@ interface StringPropertyType {
16317
16677
  isLongText: boolean;
16318
16678
  supportsEfficientLeadingWildcard?: boolean | null | undefined;
16319
16679
  supportsExactMatching: boolean;
16680
+ supportsFullTextRegex?: boolean | null | undefined;
16320
16681
  }
16321
16682
  interface StringTypeDataConstraints_regex$1 {
16322
16683
  type: "regex";
@@ -16424,10 +16785,18 @@ interface StructFieldPrefill_objectParameterStructListFieldValue {
16424
16785
  type: "objectParameterStructListFieldValue";
16425
16786
  objectParameterStructListFieldValue: ObjectParameterStructListFieldValue;
16426
16787
  }
16788
+ interface StructFieldPrefill_interfaceObjectParameterStructFieldValue {
16789
+ type: "interfaceObjectParameterStructFieldValue";
16790
+ interfaceObjectParameterStructFieldValue: InterfaceObjectParameterStructFieldValue;
16791
+ }
16792
+ interface StructFieldPrefill_interfaceObjectParameterStructListFieldValue {
16793
+ type: "interfaceObjectParameterStructListFieldValue";
16794
+ interfaceObjectParameterStructListFieldValue: InterfaceObjectParameterStructListFieldValue;
16795
+ }
16427
16796
  /**
16428
16797
  * StructFieldPrefill specifies what should initially suggested to users for a struct parameter's field.
16429
16798
  */
16430
- type StructFieldPrefill = StructFieldPrefill_objectParameterStructFieldValue | StructFieldPrefill_objectParameterStructListFieldValue;
16799
+ type StructFieldPrefill = StructFieldPrefill_objectParameterStructFieldValue | StructFieldPrefill_objectParameterStructListFieldValue | StructFieldPrefill_interfaceObjectParameterStructFieldValue | StructFieldPrefill_interfaceObjectParameterStructListFieldValue;
16431
16800
  interface StructFieldPrefillModification_objectParameterStructFieldValue {
16432
16801
  type: "objectParameterStructFieldValue";
16433
16802
  objectParameterStructFieldValue: ObjectParameterStructFieldValueModification;
@@ -16436,10 +16805,18 @@ interface StructFieldPrefillModification_objectParameterStructListFieldValue {
16436
16805
  type: "objectParameterStructListFieldValue";
16437
16806
  objectParameterStructListFieldValue: ObjectParameterStructListFieldValueModification;
16438
16807
  }
16808
+ interface StructFieldPrefillModification_interfaceObjectParameterStructFieldValue {
16809
+ type: "interfaceObjectParameterStructFieldValue";
16810
+ interfaceObjectParameterStructFieldValue: InterfaceObjectParameterStructFieldValueModification;
16811
+ }
16812
+ interface StructFieldPrefillModification_interfaceObjectParameterStructListFieldValue {
16813
+ type: "interfaceObjectParameterStructListFieldValue";
16814
+ interfaceObjectParameterStructListFieldValue: InterfaceObjectParameterStructListFieldValueModification;
16815
+ }
16439
16816
  /**
16440
16817
  * StructFieldPrefillModification specifies what should initially suggested to users for a struct parameter's field.
16441
16818
  */
16442
- type StructFieldPrefillModification = StructFieldPrefillModification_objectParameterStructFieldValue | StructFieldPrefillModification_objectParameterStructListFieldValue;
16819
+ type StructFieldPrefillModification = StructFieldPrefillModification_objectParameterStructFieldValue | StructFieldPrefillModification_objectParameterStructListFieldValue | StructFieldPrefillModification_interfaceObjectParameterStructFieldValue | StructFieldPrefillModification_interfaceObjectParameterStructListFieldValue;
16443
16820
  interface StructFieldPrefillOverride {
16444
16821
  prefill: StructFieldPrefill;
16445
16822
  }
@@ -16558,6 +16935,10 @@ interface StructPropertyFieldType_geohash {
16558
16935
  type: "geohash";
16559
16936
  geohash: GeohashPropertyType;
16560
16937
  }
16938
+ interface StructPropertyFieldType_geoshape {
16939
+ type: "geoshape";
16940
+ geoshape: GeoshapePropertyType;
16941
+ }
16561
16942
  interface StructPropertyFieldType_integer {
16562
16943
  type: "integer";
16563
16944
  integer: IntegerPropertyType;
@@ -16575,9 +16956,11 @@ interface StructPropertyFieldType_timestamp {
16575
16956
  timestamp: TimestampPropertyType;
16576
16957
  }
16577
16958
  /**
16578
- * Wrapper type for the various supported struct property field types.
16959
+ * Wrapper type for the various struct property field types supported in schema migrations. The ontology API
16960
+ * reuses Type, which is a superset of the types here, even though certain base types are unsupported. See
16961
+ * StructPropertyType.fieldType documentation for more information.
16579
16962
  */
16580
- type StructPropertyFieldType = StructPropertyFieldType_boolean | StructPropertyFieldType_date | StructPropertyFieldType_double | StructPropertyFieldType_geohash | StructPropertyFieldType_integer | StructPropertyFieldType_long | StructPropertyFieldType_string | StructPropertyFieldType_timestamp;
16963
+ type StructPropertyFieldType = StructPropertyFieldType_boolean | StructPropertyFieldType_date | StructPropertyFieldType_double | StructPropertyFieldType_geohash | StructPropertyFieldType_geoshape | StructPropertyFieldType_integer | StructPropertyFieldType_long | StructPropertyFieldType_string | StructPropertyFieldType_timestamp;
16581
16964
  interface StructPropertyType {
16582
16965
  structFields: Array<StructFieldType>;
16583
16966
  }
@@ -16700,6 +17083,8 @@ interface TextEmbeddingModel_foundryLiveDeployment {
16700
17083
  foundryLiveDeployment: FoundryLiveDeployment;
16701
17084
  }
16702
17085
  type TextEmbeddingModel = TextEmbeddingModel_lms | TextEmbeddingModel_foundryLiveDeployment;
17086
+ interface TextModality {
17087
+ }
16703
17088
  /**
16704
17089
  * A retention policy where the datasource will contain at least data from the specified time window.
16705
17090
  */
@@ -16975,6 +17360,7 @@ interface TypeGroupLoadResponse {
16975
17360
  numberOfObjectTypes?: number | null | undefined;
16976
17361
  ontologyRid: OntologyRid;
16977
17362
  ontologyVersion: OntologyVersion;
17363
+ resolvedBranch: ResolvedBranch;
16978
17364
  typeGroup: TypeGroup;
16979
17365
  }
16980
17366
  /**
@@ -17184,8 +17570,15 @@ interface ValueReferenceSource_propertyTypeRid {
17184
17570
  propertyTypeRid: PropertyTypeRid;
17185
17571
  }
17186
17572
  type ValueReferenceSource = ValueReferenceSource_propertyTypeRid;
17573
+ /**
17574
+ * When a user adds a value type to a parameter, the versionId will be empty, and the backend
17575
+ * will default to the latest version. When the user then updates the action type again, the
17576
+ * backend expects that the frontend will provide the current version of the value type that's in
17577
+ * use by the parameter.
17578
+ */
17187
17579
  interface ValueType {
17188
17580
  valueTypeRid: ValueTypeRid$1;
17581
+ valueTypeVersionId?: ValueTypeVersionId$1 | null | undefined;
17189
17582
  }
17190
17583
  interface ValueTypeApiNameReference {
17191
17584
  apiName: string;
@@ -17211,6 +17604,13 @@ interface ValueTypeReference$1 {
17211
17604
  }
17212
17605
  type ValueTypeRid$1 = string;
17213
17606
  type ValueTypeVersionId$1 = string;
17607
+ /**
17608
+ * Used in response with versionId of a value type always included.
17609
+ */
17610
+ interface ValueTypeWithVersionId {
17611
+ valueTypeRid: ValueTypeRid$1;
17612
+ valueTypeVersionId: ValueTypeVersionId$1;
17613
+ }
17214
17614
  /**
17215
17615
  * Represents a fixed size vector of floats. These can be used for vector similarity searches.
17216
17616
  */
@@ -18169,4 +18569,4 @@ type OntologyIrValueTypeBlockData = {
18169
18569
  valueTypes: OntologyIrValueTypeBlockDataEntry[];
18170
18570
  };
18171
18571
 
18172
- 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 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_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_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 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 AddInterfaceRule, type AddInterfaceRuleModification, type AddLinkRule, type AddObjectRule, type AddObjectRuleModification, type AddOrModifyObjectRule, type AddOrModifyObjectRuleModification, type AddOrModifyObjectRuleModificationV2, type AddOrModifyObjectRuleV2, type AliasEntityIdentifier, type AliasEntityIdentifier_objectTypeRid, type AliasEntityIdentifier_sharedPropertyTypeRid, type AllEditedObjectsFieldMapping, type AllFoundryRids, type AllNotificationRenderingMustSucceed, 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_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_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_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_oneOf, type AllowedStructFieldValuesModification_range, type AllowedStructFieldValuesModification_text, type AllowedStructFieldValuesOverride, type AllowedStructFieldValuesOverrideModification, type AllowedStructFieldValues_boolean, type AllowedStructFieldValues_datetime, type AllowedStructFieldValues_geohash, 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 ApiNameValueTypeReference, type ArrayPropertyType, 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 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 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 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_objectParameterPropertyValue, type ConditionValueModification_parameterId, type ConditionValueModification_parameterLength, type ConditionValueModification_staticValue, type ConditionValueModification_userProperty, type ConditionValue_interfaceParameterPropertyValue, 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 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 DatasourcePredicate, type DatasourcePredicate_hasRid, type DatasourcePredicate_isOnlyDatasource, type DatasourcePredicate_or, type DatasourceRid, type DatasourceType, 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 DateTypeDataConstraints$1 as DateTypeDataConstraints, type DateTypeDataValue$1 as DateTypeDataValue, type DateTypeRangeConstraint$1 as DateTypeRangeConstraint, 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 DirectSourceRid, type DirectedLinkTypeRid, type DisplayMetadataConfigurationDefaultLayout, type DisplayMetadataConfigurationDisplayAndFormat, 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_text, type Empty, type EndorsedObjectTypeStatus, 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 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 ImportedActionType, type ImportedInterfaceLinkType, type ImportedInterfaceType, type ImportedLinkDefinition, type ImportedLinkDefinition_manyToMany, type ImportedLinkDefinition_oneToMany, type ImportedLinkType, type ImportedManyToManyLinkDefinition, type ImportedObjectType, type ImportedOneToManyLinkDefinition, type ImportedOntologyEntitiesForProjectSpanOntologies, type ImportedParameter, type ImportedPropertyType, type ImportedSharedPropertyType, type ImportedTypes, 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 InterfaceLinkType, type InterfaceLinkTypeApiName, type InterfaceLinkTypeCardinality, type InterfaceLinkTypeIdInRequest, type InterfaceLinkTypeMetadata, type InterfaceLinkTypeRid, type InterfaceLinkTypeRidOrIdInRequest, type InterfaceLinkTypeRidOrIdInRequest_idInRequest, type InterfaceLinkTypeRidOrIdInRequest_rid, type InterfaceParameterPropertyValue, type InterfaceParameterPropertyValueModification, type InterfacePropertyImplementation, type InterfacePropertyType, type InterfacePropertyTypeApiName, type InterfacePropertyTypeDisplayMetadata, type InterfacePropertyTypeIdInRequest, type InterfacePropertyTypeRid, type InterfacePropertyTypeRidOrIdInRequest, type InterfacePropertyTypeRidOrIdInRequest_idInRequest, type InterfacePropertyTypeRidOrIdInRequest_rid, type InterfacePropertyType_sharedPropertyBasedPropertyType, type InterfaceSharedPropertyType, 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 IsOnlyDatasource, type JoinDefinition, type JoinDefinition_joinTable, type JoinDefinition_singleKey, type KnownFormatter, type KnownFormatter_artifactGidFormatter, type KnownFormatter_ridFormatter, 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 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 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 LogicRuleModification, type LogicRuleModification_addInterfaceLinkRule, 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 LogicRuleValue, type LogicRuleValueModification, type LogicRuleValueModification_currentTime, type LogicRuleValueModification_currentUser, type LogicRuleValueModification_interfaceParameterPropertyValue, 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_objectParameterPropertyValue, type LogicRuleValue_parameterId, type LogicRuleValue_staticValue, type LogicRuleValue_synchronousWebhookOutput, type LogicRuleValue_uniqueIdentifier, type LogicRule_addInterfaceLinkRule, 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 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 MarketplaceObjectTypeEntityMetadata, type MarkingFilter, type MarkingFilter_markingTypes, type MarkingId, 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 MissingAffectedObjectTypesForFunctionRule, type MissingParameterValueType, type ModifyInterfaceRule, type ModifyInterfaceRuleModification, type ModifyObjectRule, type ModifyObjectRuleModification, type ModuleRid, type MultipassUserFilter, type MultipassUserFilterModification, type MultipassUserFilterModification_groupFilter, type MultipassUserFilter_groupFilter, type MultipassUserInGroupFilter, type MultipassUserInGroupFilterModification, type MustBeEmpty, 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_objectTypeRidsNotFound, type ObjectTypeError_objectTypesAlreadyExist, type ObjectTypeError_objectTypesNotFound, type ObjectTypeError_patchBackupInitializationConfigurationSourceDoesNotExist, 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 ObjectTypeMediaDatasource, type ObjectTypeMediaSetViewDatasource, type ObjectTypeMetadataInputManagerRid, type ObjectTypePeeringMetadata, type ObjectTypePeeringMetadataV1, type ObjectTypePeeringMetadata_v1, type ObjectTypePeeringRid, type ObjectTypePermissionInformation, 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 OntologyInformation, type OntologyIr, type OntologyIrActionLogMetadata, type OntologyIrActionLogRule, 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_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 OntologyIrActionType, type OntologyIrActionTypeBlockDataV2, type OntologyIrActionTypeDisplayMetadata, type OntologyIrActionTypeEntities, type OntologyIrActionTypeLevelValidation, type OntologyIrActionTypeLogic, type OntologyIrActionTypeMetadata, 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 OntologyIrAddInterfaceRule, type OntologyIrAddObjectRule, type OntologyIrAddOrModifyObjectRule, type OntologyIrAddOrModifyObjectRuleV2, 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_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_oneOf, type OntologyIrAllowedStructFieldValues_range, type OntologyIrAllowedStructFieldValues_text, type OntologyIrAllowedValuesOverride, type OntologyIrAndCondition, type OntologyIrArrayPropertyType, 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 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 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 OntologyIrDeprecatedInterfaceTypeStatus, type OntologyIrDeprecatedLinkTypeStatus, type OntologyIrDeprecatedObjectTypeStatus, type OntologyIrDeprecatedPropertyTypeStatus, 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 OntologyIrImportedActionType, type OntologyIrImportedInterfaceType, type OntologyIrImportedObjectType, type OntologyIrImportedParameter, type OntologyIrImportedPropertyType, type OntologyIrImportedSharedPropertyType, type OntologyIrImportedTypes, type OntologyIrInlineActionType, type OntologyIrInterfaceLinkType, type OntologyIrInterfaceParameterPropertyValue, type OntologyIrInterfacePropertyImplementation, type OntologyIrInterfacePropertyType, type OntologyIrInterfacePropertyType_sharedPropertyBasedPropertyType, type OntologyIrInterfaceSharedPropertyType, type OntologyIrInterfaceType, type OntologyIrInterfaceTypeBlockDataV2, type OntologyIrInterfaceTypeStatus, type OntologyIrInterfaceTypeStatus_active, type OntologyIrInterfaceTypeStatus_deprecated, type OntologyIrInterfaceTypeStatus_example, type OntologyIrInterfaceTypeStatus_experimental, type OntologyIrIntermediaryLinkDefinition, type OntologyIrKnownMarketplaceIdentifiers, type OntologyIrLabelledValue, type OntologyIrLinkDefinition, 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_addInterfaceRule, type OntologyIrLogicRule_addLinkRule, type OntologyIrLogicRule_addObjectRule, type OntologyIrLogicRule_addOrModifyObjectRuleV2, type OntologyIrLogicRule_deleteLinkRule, type OntologyIrLogicRule_deleteObjectRule, type OntologyIrLogicRule_modifyInterfaceRule, type OntologyIrLogicRule_modifyObjectRule, type OntologyIrManyToManyLinkDefinition, type OntologyIrManyToManyLinkTypeDatasetDatasource, type OntologyIrManyToManyLinkTypeDatasource, type OntologyIrManyToManyLinkTypeDatasourceDefinition, type OntologyIrManyToManyLinkTypeDatasourceDefinition_dataset, type OntologyIrManyToManyLinkTypeStreamDatasource, type OntologyIrMarketplaceObjectTypeEntityMetadata, type OntologyIrMarkingsCondition, type OntologyIrMediaSourceRid, type OntologyIrMediaSourceRid_datasetRid, type OntologyIrMediaSourceRid_mediaSetRid, type OntologyIrModifyInterfaceRule, type OntologyIrModifyObjectRule, type OntologyIrMultipassUserFilter, type OntologyIrMultipassUserFilter_groupFilter, type OntologyIrMultipassUserInGroupFilter, 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_redacted, type OntologyIrParameterPrefill_staticObject, type OntologyIrParameterPrefill_staticValue, type OntologyIrParameterRange, type OntologyIrParameterRangeOrEmpty, type OntologyIrParameterRangeOrEmpty_empty, type OntologyIrParameterRangeOrEmpty_range, type OntologyIrParameterRangeValue, 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 OntologyIrRegexCondition, type OntologyIrResolvedInterfacePropertyType, type OntologyIrRidUrlTarget, type OntologyIrRuleSetBinding, 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 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 OntologyIrSharedPropertyBasedPropertyType, type OntologyIrSharedPropertyType, type OntologyIrSharedPropertyTypeBlockDataV2, type OntologyIrShortBody, type OntologyIrShortBody_basic, type OntologyIrStaticValue, type OntologyIrStaticWebhookWithDirectInput, type OntologyIrStaticWebhookWithFunctionResultInput, type OntologyIrStructFieldConditionalOverride, type OntologyIrStructFieldConditionalValidationBlock, type OntologyIrStructFieldPrefill, type OntologyIrStructFieldPrefillOverride, 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 OntologyIrStructPropertyType, type OntologyIrStructuredShortBody, type OntologyIrSynchronousPreWritebackWebhook, type OntologyIrSynchronousPreWritebackWebhook_staticDirectInput, type OntologyIrSynchronousPreWritebackWebhook_staticFunctionInput, type OntologyIrTemplateNotificationBody, 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 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 OntologySparkDelegateDataset, type OntologySparkInputManagerRid, type OntologySparkInputProperties, 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_objectParameterPropertyValue, type ParameterPrefillModification_objectQueryPrefill, type ParameterPrefillModification_objectQueryPropertyValue, type ParameterPrefillModification_objectSetRidPrefill, type ParameterPrefillModification_redacted, type ParameterPrefillModification_staticObject, type ParameterPrefillModification_staticValue, type ParameterPrefillOverride, type ParameterPrefillOverrideModification, type ParameterPrefill_interfaceParameterPropertyValue, type ParameterPrefill_objectParameterPropertyValue, type ParameterPrefill_objectQueryPrefill, type ParameterPrefill_objectQueryPropertyValue, type ParameterPrefill_objectSetRidPrefill, type ParameterPrefill_redacted, type ParameterPrefill_staticObject, 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 ParameterStructOrEmpty, type ParameterStructOrEmpty_delegateToAllowedStructFieldValues, type ParameterStructOrEmpty_empty, type ParameterTextRegex, type ParameterTimeSeriesReference, type ParameterTimeSeriesReferenceOrEmpty, type ParameterTimeSeriesReferenceOrEmpty_empty, type ParameterTimeSeriesReferenceOrEmpty_timeSeriesReference, 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 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 PrePostFix, type PrimaryKeyPropertySecurityGroupType, type PrincipalId, type ProjectEntityRid, type ProjectEntityRid_actionTypeRid, type ProjectEntityRid_interfaceTypeRid, type ProjectEntityRid_linkTypeRid, type ProjectEntityRid_objectTypeRid, type ProjectEntityRid_sharedPropertyTypeRid, type ProjectEntityRid_typeGroupRid, 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 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 QuiverDashboardReference, type QuiverDashboardRid, type QuiverDashboardVersion, type RangeSizeConstraint$1 as RangeSizeConstraint, type Redacted, type RedactionOverrideOptions, type RedactionOverrideOptions_everyoneTrusted, 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 ResolvedInterfacePropertyType, type RestrictedViewName, type RestrictedViewRid, type RestrictedViewTransactionRid, 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 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_sharedPropertyTypesAlreadyExist, type SharedPropertyTypeError_sharedPropertyTypesNotFound, type SharedPropertyTypeGothamMapping, type SharedPropertyTypeIdInRequest, type SharedPropertyTypeLoadRequest, type SharedPropertyTypeLoadResponse, type SharedPropertyTypeLogicRuleValueModification, 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 SimpleAnalyzer, type SingleKeyJoinDefinition, type SoftLink, type SoftLinkType, type SoftLinkType_sharedPropertyType, type StandardAnalyzer, type StaticObjectPrefill, type StaticValue, type StaticWebhookWithDirectInput, type StaticWebhookWithDirectInputModification, type StaticWebhookWithFunctionResultInput, type StaticWebhookWithFunctionResultInputModification, type StreamLocator, type StreamLocatorRid, type StreamName, type StreamViewRid, 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 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_objectParameterStructFieldValue, type StructFieldPrefillModification_objectParameterStructListFieldValue, type StructFieldPrefillOverride, type StructFieldPrefillOverrideModification, 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 StructParameterFieldDisplayMetadata, type StructParameterFieldDisplayMetadataV2, type StructParameterFieldValue, type StructPropertyFieldType, type StructPropertyFieldType_boolean, type StructPropertyFieldType_date, type StructPropertyFieldType_double, type StructPropertyFieldType_geohash, type StructPropertyFieldType_integer, type StructPropertyFieldType_long, type StructPropertyFieldType_string, type StructPropertyFieldType_timestamp, type StructPropertyType, type StructTypeDataConstraints$1 as StructTypeDataConstraints, type StructTypeElementsConstraint$1 as StructTypeElementsConstraint, type StructuredShortBody, type StructuredShortBodyModification, type SubmitAllValidOrNothingThrowingMode, type SubmitValidEntriesInOrderUntilFirstFailureMode, 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 TimeBasedRetentionPolicy, type TimeCodeFormat, 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 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 ValueType, 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 };
18572
+ 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 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 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 AddInterfaceRule, type AddInterfaceRuleModification, type AddLinkRule, type AddObjectRule, type AddObjectRuleModification, type AddOrModifyObjectRule, type AddOrModifyObjectRuleModification, type AddOrModifyObjectRuleModificationV2, type AddOrModifyObjectRuleV2, type AliasEntityIdentifier, type AliasEntityIdentifier_objectTypeRid, type AliasEntityIdentifier_sharedPropertyTypeRid, type AllEditedObjectsFieldMapping, type AllFoundryRids, type AllNotificationRenderingMustSucceed, 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_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_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_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_oneOf, type AllowedStructFieldValuesModification_range, type AllowedStructFieldValuesModification_text, type AllowedStructFieldValuesOverride, type AllowedStructFieldValuesOverrideModification, type AllowedStructFieldValues_boolean, type AllowedStructFieldValues_datetime, type AllowedStructFieldValues_geohash, 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 ApiNameValueTypeReference, type ArrayPropertyType, 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 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 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 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 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 DatasourcePredicate, type DatasourcePredicate_hasRid, type DatasourcePredicate_isOnlyDatasource, type DatasourcePredicate_or, type DatasourceRid, type DatasourceType, 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 DateTypeDataConstraints$1 as DateTypeDataConstraints, type DateTypeDataValue$1 as DateTypeDataValue, type DateTypeRangeConstraint$1 as DateTypeRangeConstraint, 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 DirectSourceRid, type DirectedLinkTypeRid, type DisplayMetadataConfigurationDefaultLayout, type DisplayMetadataConfigurationDisplayAndFormat, 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 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 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 ImportedActionType, type ImportedInterfaceLinkType, type ImportedInterfaceType, type ImportedLinkDefinition, type ImportedLinkDefinition_manyToMany, type ImportedLinkDefinition_oneToMany, type ImportedLinkType, type ImportedManyToManyLinkDefinition, type ImportedObjectType, type ImportedOneToManyLinkDefinition, type ImportedOntologyEntitiesForProjectSpanOntologies, type ImportedParameter, type ImportedPropertyType, type ImportedSharedPropertyType, type ImportedTypes, 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 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 InterfacePropertyTypeLogicRuleValueModification, type InterfacePropertyTypeRid, type InterfacePropertyTypeRidOrIdInRequest, type InterfacePropertyTypeRidOrIdInRequest_idInRequest, type InterfacePropertyTypeRidOrIdInRequest_rid, type InterfacePropertyType_sharedPropertyBasedPropertyType, type InterfaceSharedPropertyType, 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 IsOnlyDatasource, type JoinDefinition, type JoinDefinition_joinTable, type JoinDefinition_singleKey, type KnownFormatter, type KnownFormatter_artifactGidFormatter, type KnownFormatter_ridFormatter, 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 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 LogicRuleModification, type LogicRuleModification_addInterfaceLinkRule, 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 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_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 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 MarketplaceActiveInterfaceTypeStatus, type MarketplaceDeprecatedInterfaceTypeStatus, type MarketplaceExampleInterfaceTypeStatus, type MarketplaceExperimentalInterfaceTypeStatus, type MarketplaceInterfaceLinkType, type MarketplaceInterfaceLinkTypeCardinality, type MarketplaceInterfaceLinkTypeMetadata, type MarketplaceInterfacePropertyType, 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 MarkingFilter, type MarkingFilter_markingTypes, type MarkingGroupName, type MarkingId, 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 MustBeEmpty, 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_objectTypeRidsNotFound, type ObjectTypeError_objectTypesAlreadyExist, type ObjectTypeError_objectTypesNotFound, type ObjectTypeError_patchBackupInitializationConfigurationSourceDoesNotExist, 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 ObjectTypeMediaDatasource, type ObjectTypeMediaSetViewDatasource, type ObjectTypeMetadataInputManagerRid, type ObjectTypePeeringMetadata, type ObjectTypePeeringMetadataV1, type ObjectTypePeeringMetadata_v1, type ObjectTypePeeringRid, type ObjectTypePermissionInformation, 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 OntologyInformation, type OntologyIr, type OntologyIrActionLogMetadata, type OntologyIrActionLogRule, 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 OntologyIrActionType, type OntologyIrActionTypeBlockDataV2, type OntologyIrActionTypeDisplayMetadata, type OntologyIrActionTypeEntities, type OntologyIrActionTypeLevelValidation, type OntologyIrActionTypeLogic, type OntologyIrActionTypeMetadata, 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 OntologyIrAddInterfaceRule, type OntologyIrAddObjectRule, type OntologyIrAddOrModifyObjectRule, type OntologyIrAddOrModifyObjectRuleV2, 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_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_oneOf, type OntologyIrAllowedStructFieldValues_range, type OntologyIrAllowedStructFieldValues_text, type OntologyIrAllowedValuesOverride, type OntologyIrAndCondition, type OntologyIrArrayPropertyType, 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 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 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 OntologyIrImportedActionType, type OntologyIrImportedInterfaceType, type OntologyIrImportedObjectType, type OntologyIrImportedParameter, type OntologyIrImportedPropertyType, type OntologyIrImportedSharedPropertyType, type OntologyIrImportedTypes, type OntologyIrInlineActionType, type OntologyIrInterfaceObjectParameterStructFieldValue, type OntologyIrInterfaceObjectParameterStructListFieldValue, type OntologyIrInterfaceParameterPropertyValue, type OntologyIrInterfaceParameterPropertyValueV2, type OntologyIrInterfacePropertyImplementation, type OntologyIrInterfacePropertyLogicRuleValue, type OntologyIrInterfacePropertyLogicRuleValue_logicRuleValue, type OntologyIrInterfacePropertyLogicRuleValue_structLogicRuleValue, type OntologyIrInterfacePropertyTypeImplementation, type OntologyIrInterfacePropertyTypeImplementation_propertyTypeRid, type OntologyIrInterfaceSharedPropertyType, type OntologyIrInterfaceTypeBlockDataV2, type OntologyIrIntermediaryLinkDefinition, type OntologyIrKnownMarketplaceIdentifiers, type OntologyIrLabelledValue, type OntologyIrLinkDefinition, 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_addInterfaceRule, type OntologyIrLogicRule_addLinkRule, type OntologyIrLogicRule_addObjectRule, type OntologyIrLogicRule_addOrModifyObjectRuleV2, type OntologyIrLogicRule_deleteLinkRule, type OntologyIrLogicRule_deleteObjectRule, type OntologyIrLogicRule_modifyInterfaceRule, type OntologyIrLogicRule_modifyObjectRule, type OntologyIrMandatoryMarkingConstraint, type OntologyIrManyToManyLinkDefinition, type OntologyIrManyToManyLinkTypeDatasetDatasource, type OntologyIrManyToManyLinkTypeDatasource, type OntologyIrManyToManyLinkTypeDatasourceDefinition, type OntologyIrManyToManyLinkTypeDatasourceDefinition_dataset, type OntologyIrManyToManyLinkTypeStreamDatasource, type OntologyIrMarketplaceDeprecatedInterfaceTypeStatus, type OntologyIrMarketplaceInterfaceLinkType, type OntologyIrMarketplaceInterfacePropertyType, 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 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_redacted, type OntologyIrParameterPrefill_staticObject, type OntologyIrParameterPrefill_staticValue, type OntologyIrParameterRange, type OntologyIrParameterRangeOrEmpty, type OntologyIrParameterRangeOrEmpty_empty, type OntologyIrParameterRangeOrEmpty_range, type OntologyIrParameterRangeValue, 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 OntologyIrRegexCondition, type OntologyIrRidUrlTarget, type OntologyIrRuleSetBinding, 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 OntologyIrStaticValue, type OntologyIrStaticWebhookWithDirectInput, type OntologyIrStaticWebhookWithFunctionResultInput, type OntologyIrStructFieldConditionalOverride, type OntologyIrStructFieldConditionalValidationBlock, 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 OntologyIrStructPropertyType, type OntologyIrStructuredShortBody, type OntologyIrSynchronousPreWritebackWebhook, type OntologyIrSynchronousPreWritebackWebhook_staticDirectInput, type OntologyIrSynchronousPreWritebackWebhook_staticFunctionInput, type OntologyIrTemplateNotificationBody, 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 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 OntologySparkDelegateDataset, type OntologySparkInputManagerRid, type OntologySparkInputProperties, 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_redacted, type ParameterPrefillModification_staticObject, 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_redacted, type ParameterPrefill_staticObject, 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 ParameterStructOrEmpty, type ParameterStructOrEmpty_delegateToAllowedStructFieldValues, type ParameterStructOrEmpty_empty, type ParameterTextRegex, type ParameterTimeSeriesReference, type ParameterTimeSeriesReferenceOrEmpty, type ParameterTimeSeriesReferenceOrEmpty_empty, type ParameterTimeSeriesReferenceOrEmpty_timeSeriesReference, 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 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 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 ProjectEntityRid_typeGroupRid, 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 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 QuiverDashboardReference, type QuiverDashboardRid, type QuiverDashboardVersion, type RangeSizeConstraint$1 as RangeSizeConstraint, type Redacted, type RedactionOverrideOptions, type RedactionOverrideOptions_everyoneTrusted, 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 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 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_sharedPropertyTypesAlreadyExist, type SharedPropertyTypeError_sharedPropertyTypesNotFound, type SharedPropertyTypeGothamMapping, type SharedPropertyTypeIdInRequest, type SharedPropertyTypeLoadRequest, type SharedPropertyTypeLoadResponse, type SharedPropertyTypeLogicRuleValueModification, 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 SimpleAnalyzer, type SingleKeyJoinDefinition, type SoftLink, type SoftLinkType, type SoftLinkType_sharedPropertyType, type StandardAnalyzer, type StaticObjectPrefill, type StaticValue, type StaticWebhookWithDirectInput, type StaticWebhookWithDirectInputModification, type StaticWebhookWithFunctionResultInput, type StaticWebhookWithFunctionResultInputModification, type StreamLocator, type StreamLocatorRid, type StreamName, type StreamViewRid, 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 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 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 StructTypeDataConstraints$1 as StructTypeDataConstraints, type StructTypeElementsConstraint$1 as StructTypeElementsConstraint, type StructuredShortBody, type StructuredShortBodyModification, type SubmitAllValidOrNothingThrowingMode, type SubmitValidEntriesInOrderUntilFirstFailureMode, 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 TimeCodeFormat, 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 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 ValueType, 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 ValueTypeWithVersionId, 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 };