@osdk/foundry 2.60.0 → 2.62.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -202,7 +202,9 @@ declare type ActionLogicRule = ({
202
202
  type: "createInterfaceLink";
203
203
  } & CreateInterfaceLinkLogicRule) | ({
204
204
  type: "createInterface";
205
- } & CreateInterfaceLogicRule);
205
+ } & CreateInterfaceLogicRule) | ({
206
+ type: "applyScenario";
207
+ } & ApplyScenarioLogicRule);
206
208
 
207
209
  /**
208
210
  * Log Safety: SAFE
@@ -304,6 +306,8 @@ declare type ActionParameterType = ({
304
306
  } & _Core.BooleanType) | ({
305
307
  type: "marking";
306
308
  } & _Core.MarkingType) | ({
309
+ type: "scenarioReference";
310
+ } & _Core.ScenarioReferenceType) | ({
307
311
  type: "attachment";
308
312
  } & _Core.AttachmentType) | ({
309
313
  type: "mediaReference";
@@ -563,7 +567,18 @@ organizationRid: _Core.OrganizationRid,
563
567
  $body: _Admin.AddOrganizationRoleAssignmentsRequest
564
568
  ]): Promise<void>;
565
569
 
566
- /* Excluded from this release type: add_7 */
570
+ /**
571
+ * Add references to the given project
572
+ *
573
+ * @public
574
+ *
575
+ * Required Scopes: [api:filesystem-write]
576
+ * URL: /v2/filesystem/projects/{projectRid}/references/add
577
+ */
578
+ declare function add_7($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
579
+ projectRid: _Filesystem_2.ProjectRid,
580
+ $body: _Filesystem_2.AddProjectResourceReferencesRequest
581
+ ]): Promise<void>;
567
582
 
568
583
  /**
569
584
  * @public
@@ -769,7 +784,18 @@ declare interface AddMarkingRoleAssignmentsRequest {
769
784
  roleAssignments: Array<MarkingRoleUpdate>;
770
785
  }
771
786
 
772
- /* Excluded from this release type: addMarkings */
787
+ /**
788
+ * Adds a list of Markings to a resource.
789
+ *
790
+ * @public
791
+ *
792
+ * Required Scopes: [api:filesystem-write]
793
+ * URL: /v2/filesystem/resources/{resourceRid}/addMarkings
794
+ */
795
+ declare function addMarkings($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
796
+ resourceRid: _Filesystem_2.ResourceRid,
797
+ $body: _Filesystem_2.AddMarkingsRequest
798
+ ]): Promise<void>;
773
799
 
774
800
  /**
775
801
  * Could not addMarkings the Resource.
@@ -853,7 +879,18 @@ declare interface AddOrganizationRoleAssignmentsRequest {
853
879
  roleAssignments: Array<_Core.RoleAssignmentUpdate>;
854
880
  }
855
881
 
856
- /* Excluded from this release type: addOrganizations */
882
+ /**
883
+ * Adds a list of Organizations to a Project.
884
+ *
885
+ * @public
886
+ *
887
+ * Required Scopes: [api:filesystem-write]
888
+ * URL: /v2/filesystem/projects/{projectRid}/addOrganizations
889
+ */
890
+ declare function addOrganizations($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
891
+ projectRid: _Filesystem_2.ProjectRid,
892
+ $body: _Filesystem_2.AddOrganizationsRequest
893
+ ]): Promise<void>;
857
894
 
858
895
  /**
859
896
  * Could not addOrganizations the Project.
@@ -1524,6 +1561,7 @@ $queryParams?: {
1524
1561
  sdkVersion?: _Ontologies_2.SdkVersion | undefined;
1525
1562
  branch?: _Core.FoundryBranch | undefined;
1526
1563
  transactionId?: _Ontologies_2.OntologyTransactionId | undefined;
1564
+ scenarioRid?: _Ontologies_2.OntologyScenarioRid | undefined;
1527
1565
  },
1528
1566
  $headerParams?: {
1529
1567
  traceParent?: _Core.TraceParent | undefined;
@@ -1559,6 +1597,7 @@ declare interface AggregateObjectSetRequestV2 {
1559
1597
  groupBy: Array<AggregationGroupByV2>;
1560
1598
  accuracy?: AggregationAccuracyRequest;
1561
1599
  includeComputeUsage?: _Core.IncludeComputeUsage;
1600
+ executeInMemoryOnly?: boolean;
1562
1601
  }
1563
1602
 
1564
1603
  /**
@@ -2850,6 +2889,7 @@ $queryParams?: {
2850
2889
  sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
2851
2890
  sdkVersion?: _Ontologies_2.SdkVersion | undefined;
2852
2891
  transactionId?: _Ontologies_2.OntologyTransactionId | undefined;
2892
+ scenarioRid?: _Ontologies_2.OntologyScenarioRid | undefined;
2853
2893
  branch?: _Core.FoundryBranch | undefined;
2854
2894
  },
2855
2895
  $headerParams?: {
@@ -2950,6 +2990,8 @@ $queryParams?: {
2950
2990
  }
2951
2991
  ]): Promise<_Ontologies_2.BatchApplyActionResponseV2>;
2952
2992
 
2993
+ /* Excluded from this release type: applyBatchWithOverrides */
2994
+
2953
2995
  /**
2954
2996
  * Performs both apply reducers and extract main value to return the reduced main value.
2955
2997
  *
@@ -2966,6 +3008,37 @@ declare interface ApplyReducersAndExtractMainValueLoadLevel {
2966
3008
  declare interface ApplyReducersLoadLevel {
2967
3009
  }
2968
3010
 
3011
+ /**
3012
+ * An Action rule that merges the edits accumulated on a referenced Scenario into the ontology data context
3013
+ where the Action is applied. If the Action is applied against another Scenario, the edits are merged into
3014
+ that target Scenario.
3015
+ The scenario is supplied through the parameter identified by scenarioParameter, whose value type is
3016
+ scenarioReference. The affected object types and link types are explicitly enumerated in the scope.
3017
+ *
3018
+ * Log Safety: UNSAFE
3019
+ */
3020
+ declare interface ApplyScenarioLogicRule {
3021
+ scenarioParameter: ParameterId_2;
3022
+ objectTypeApiNames: Array<ObjectTypeApiName>;
3023
+ linkTypes: Array<ObjectTypeLinkTypeApiNameMapping>;
3024
+ }
3025
+
3026
+ /**
3027
+ * An Action rule that applies the edits accumulated on a referenced Scenario onto the ontology data context
3028
+ where the Action is applied. If the Action is applied in the context of main ontology data, the edits are
3029
+ applied there. If the Action is applied in the context of another Scenario, the edits are applied in that
3030
+ other Scenario.
3031
+ The scenario is supplied through the parameter identified by scenarioParameter of type
3032
+ scenarioReference. The affected object types and link types are explicitly enumerated in the scope.
3033
+ *
3034
+ * Log Safety: UNSAFE
3035
+ */
3036
+ declare interface ApplyScenarioRule {
3037
+ scenarioParameter: ParameterId_2;
3038
+ objectTypeApiNames: Array<ObjectTypeApiName>;
3039
+ linkTypes: Array<ObjectTypeLinkTypeApiNameMapping>;
3040
+ }
3041
+
2969
3042
  /* Excluded from this release type: applyWithOverrides */
2970
3043
 
2971
3044
  /**
@@ -3823,6 +3896,14 @@ declare interface BatchApplyActionRequestItem {
3823
3896
  parameters: Record<ParameterId_2, DataValue | undefined>;
3824
3897
  }
3825
3898
 
3899
+ /**
3900
+ * Log Safety: UNSAFE
3901
+ */
3902
+ declare interface BatchApplyActionRequestItemWithOverrides {
3903
+ parameters: Record<ParameterId_2, DataValue | undefined>;
3904
+ overrides?: ApplyActionOverrides;
3905
+ }
3906
+
3826
3907
  /**
3827
3908
  * Log Safety: SAFE
3828
3909
  */
@@ -3851,6 +3932,14 @@ declare interface BatchApplyActionResponseV2 {
3851
3932
  edits?: BatchActionResults;
3852
3933
  }
3853
3934
 
3935
+ /**
3936
+ * Log Safety: UNSAFE
3937
+ */
3938
+ declare interface BatchApplyActionWithOverridesRequest {
3939
+ options?: BatchApplyActionRequestOptions;
3940
+ requests: Array<BatchApplyActionRequestItemWithOverrides>;
3941
+ }
3942
+
3854
3943
  /**
3855
3944
  * Log Safety: UNSAFE
3856
3945
  */
@@ -5810,7 +5899,24 @@ declare interface CheckTypeNotSupported {
5810
5899
  };
5811
5900
  }
5812
5901
 
5813
- /* Excluded from this release type: children */
5902
+ /**
5903
+ * List all child Resources of the Folder.
5904
+ *
5905
+ * This is a paged endpoint. The page size will be limited to 2,000 results per page. If no page size is
5906
+ * provided, this page size will also be used as the default.
5907
+ *
5908
+ * @public
5909
+ *
5910
+ * Required Scopes: []
5911
+ * URL: /v2/filesystem/folders/{folderRid}/children
5912
+ */
5913
+ declare function children($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
5914
+ folderRid: _Filesystem_2.FolderRid,
5915
+ $queryParams?: {
5916
+ pageSize?: _Core.PageSize | undefined;
5917
+ pageToken?: _Core.PageToken | undefined;
5918
+ }
5919
+ ]): Promise<_Filesystem_2.ListChildrenOfFolderResponse>;
5814
5920
 
5815
5921
  /**
5816
5922
  * The Cipher Channel was not found.
@@ -7311,6 +7417,7 @@ export declare namespace Core {
7311
7417
  MapFieldType,
7312
7418
  MarkingId,
7313
7419
  MarkingType,
7420
+ MarkingTypeValue,
7314
7421
  MediaItemPath,
7315
7422
  MediaItemReadToken,
7316
7423
  MediaItemRid,
@@ -7369,6 +7476,7 @@ export declare namespace Core {
7369
7476
  RoleContext,
7370
7477
  RoleId,
7371
7478
  RoleSetId,
7479
+ ScenarioReferenceType,
7372
7480
  ScheduleRid,
7373
7481
  SchemaFieldType,
7374
7482
  SearchJsonQueryV2,
@@ -7540,6 +7648,7 @@ declare namespace _Core {
7540
7648
  MapFieldType,
7541
7649
  MarkingId,
7542
7650
  MarkingType,
7651
+ MarkingTypeValue,
7543
7652
  MediaItemPath,
7544
7653
  MediaItemReadToken,
7545
7654
  MediaItemRid,
@@ -7598,6 +7707,7 @@ declare namespace _Core {
7598
7707
  RoleContext,
7599
7708
  RoleId,
7600
7709
  RoleSetId,
7710
+ ScenarioReferenceType,
7601
7711
  ScheduleRid,
7602
7712
  SchemaFieldType,
7603
7713
  SearchJsonQueryV2,
@@ -7840,9 +7950,29 @@ declare function create_2($ctx: SharedClient | SharedClientContext | SharedClien
7840
7950
 
7841
7951
  /* Excluded from this release type: create_5 */
7842
7952
 
7843
- /* Excluded from this release type: create_6 */
7953
+ /**
7954
+ * Creates a new Folder.
7955
+ *
7956
+ * @public
7957
+ *
7958
+ * Required Scopes: [api:filesystem-write]
7959
+ * URL: /v2/filesystem/folders
7960
+ */
7961
+ declare function create_6($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [$body: _Filesystem_2.CreateFolderRequest]): Promise<_Filesystem_2.Folder>;
7844
7962
 
7845
- /* Excluded from this release type: create_7 */
7963
+ /**
7964
+ * Creates a new Project.
7965
+ *
7966
+ * Note that third-party applications using this endpoint via OAuth2 cannot be associated with an
7967
+ * Ontology SDK as this will reduce the scope of operations to only those within specified projects.
7968
+ * When creating the application, select "No, I won't use an Ontology SDK" on the Resources page.
7969
+ *
7970
+ * @public
7971
+ *
7972
+ * Required Scopes: [api:filesystem-write]
7973
+ * URL: /v2/filesystem/projects/create
7974
+ */
7975
+ declare function create_7($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [$body: _Filesystem_2.CreateProjectRequest]): Promise<_Filesystem_2.Project>;
7846
7976
 
7847
7977
  /* Excluded from this release type: create_8 */
7848
7978
 
@@ -8609,7 +8739,15 @@ declare interface CreateFolderRequest {
8609
8739
  displayName: ResourceDisplayName;
8610
8740
  }
8611
8741
 
8612
- /* Excluded from this release type: createFromTemplate */
8742
+ /**
8743
+ * Creates a project from a project template.
8744
+ *
8745
+ * @public
8746
+ *
8747
+ * Required Scopes: [api:filesystem-write]
8748
+ * URL: /v2/filesystem/projects/createFromTemplate
8749
+ */
8750
+ declare function createFromTemplate($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [$body: _Filesystem_2.CreateProjectFromTemplateRequest]): Promise<_Filesystem_2.Project>;
8613
8751
 
8614
8752
  /**
8615
8753
  * Could not create the Group.
@@ -8944,6 +9082,24 @@ declare interface CreateObjectRule {
8944
9082
  objectTypeApiName: ObjectTypeApiName;
8945
9083
  }
8946
9084
 
9085
+ /**
9086
+ * The request payload for creating an ontology scenario.
9087
+ *
9088
+ * Log Safety: UNSAFE
9089
+ */
9090
+ declare interface CreateOntologyScenarioRequest {
9091
+ base?: OntologyBase;
9092
+ }
9093
+
9094
+ /**
9095
+ * The response payload for creating an ontology scenario.
9096
+ *
9097
+ * Log Safety: SAFE
9098
+ */
9099
+ declare interface CreateOntologyScenarioResponse {
9100
+ scenarioRid: OntologyScenarioRid;
9101
+ }
9102
+
8947
9103
  /**
8948
9104
  * At least one organization:administrator role grant must be provided when creating a organization.
8949
9105
  *
@@ -9073,6 +9229,8 @@ declare interface CreateProjectRequest {
9073
9229
  resourceLevelRoleGrantsAllowed?: boolean;
9074
9230
  }
9075
9231
 
9232
+ /* Excluded from this release type: createScenario */
9233
+
9076
9234
  /**
9077
9235
  * Could not create the Schedule.
9078
9236
  *
@@ -10694,6 +10852,7 @@ declare type DataType = "UNDEFINED" | "BYTE" | "UINT16" | "INT16" | "UINT32" | "
10694
10852
  | Ontology Object Reference | JSON encoding of the object's primary key | 10033123 or "EMP1234" |
10695
10853
  | Ontology Interface Object Reference | JSON encoding of the object's API name and primary key| {"objectTypeApiName":"Employee", "primaryKeyValue":"EMP1234"} |
10696
10854
  | Ontology Object Type Reference | string of the object type's api name | "Employee" |
10855
+ | Scenario Reference | string of the scenario RID | "ri.actions..scenario.cf2a8a49-8b56-446d-ab04-a6bc7fadef48" |
10697
10856
  | Set | array | ["alpha", "bravo", "charlie"] |
10698
10857
  | Short | number | 8739 |
10699
10858
  | String | string | "Call me Ishmael" |
@@ -11227,7 +11386,16 @@ declare interface DeleteReleasePermissionDenied {
11227
11386
  };
11228
11387
  }
11229
11388
 
11230
- /* Excluded from this release type: deleteResource */
11389
+ /**
11390
+ * Move the given resource to the trash. Following this operation, the resource can be restored, using the
11391
+ * `restore` operation, or permanently deleted using the `permanentlyDelete` operation.
11392
+ *
11393
+ * @public
11394
+ *
11395
+ * Required Scopes: [api:filesystem-write]
11396
+ * URL: /v2/filesystem/resources/{resourceRid}
11397
+ */
11398
+ declare function deleteResource($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [resourceRid: _Filesystem_2.ResourceRid]): Promise<void>;
11231
11399
 
11232
11400
  /**
11233
11401
  * Could not delete the Resource.
@@ -13122,6 +13290,7 @@ $queryParams?: {
13122
13290
  sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
13123
13291
  sdkVersion?: _Ontologies_2.SdkVersion | undefined;
13124
13292
  transactionId?: _Ontologies_2.OntologyTransactionId | undefined;
13293
+ scenarioRid?: _Ontologies_2.OntologyScenarioRid | undefined;
13125
13294
  },
13126
13295
  $headerParams?: {
13127
13296
  attribution?: _Core.Attribution | undefined;
@@ -14827,6 +14996,7 @@ declare interface FileSizeLimitExceeded {
14827
14996
  datasetRid: unknown;
14828
14997
  path: unknown;
14829
14998
  fileSizeBytes: unknown;
14999
+ maxFileSizeBytes: unknown;
14830
15000
  };
14831
15001
  }
14832
15002
 
@@ -15503,7 +15673,10 @@ declare type FolderRid_5 = LooselyBrandedString_19<"FolderRid">;
15503
15673
 
15504
15674
  export declare namespace Folders {
15505
15675
  export {
15506
-
15676
+ create_6 as create,
15677
+ get_33 as get,
15678
+ getBatch_6 as getBatch,
15679
+ children
15507
15680
  }
15508
15681
  }
15509
15682
 
@@ -16566,14 +16739,13 @@ declare interface GeoShapeV2Query {
16566
16739
  }
16567
16740
 
16568
16741
  /**
16569
- * A single geotemporal data point representing the location of an entity at a specific point in time.
16742
+ * A single geotemporal data point. Each entry is a map from property API names to property values. Standard
16743
+ entries include "time" (ISO 8601 timestamp) and "position" (GeoPoint), and may include additional geotemporal
16744
+ series metadata fields such as speed, heading, or altitude.
16570
16745
  *
16571
16746
  * Log Safety: UNSAFE
16572
16747
  */
16573
- declare interface GeotemporalSeriesEntry {
16574
- time: string;
16575
- position: _Geo.GeoPoint;
16576
- }
16748
+ declare type GeotemporalSeriesEntry = Record<PropertyApiName_2, PropertyValue_2>;
16577
16749
 
16578
16750
  export declare namespace GeotemporalSeriesProperties {
16579
16751
  export {
@@ -16786,7 +16958,15 @@ $queryParams?: {
16786
16958
 
16787
16959
  /* Excluded from this release type: get_32 */
16788
16960
 
16789
- /* Excluded from this release type: get_33 */
16961
+ /**
16962
+ * Get the Folder with the specified rid.
16963
+ *
16964
+ * @public
16965
+ *
16966
+ * Required Scopes: [api:filesystem-read]
16967
+ * URL: /v2/filesystem/folders/{folderRid}
16968
+ */
16969
+ declare function get_33($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [folderRid: _Filesystem_2.FolderRid]): Promise<_Filesystem_2.Folder>;
16790
16970
 
16791
16971
  /**
16792
16972
  * Get the Project with the specified rid.
@@ -16798,7 +16978,15 @@ $queryParams?: {
16798
16978
  */
16799
16979
  declare function get_34($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [projectRid: _Filesystem_2.ProjectRid]): Promise<_Filesystem_2.Project>;
16800
16980
 
16801
- /* Excluded from this release type: get_35 */
16981
+ /**
16982
+ * Get the Resource with the specified rid.
16983
+ *
16984
+ * @public
16985
+ *
16986
+ * Required Scopes: [api:filesystem-read]
16987
+ * URL: /v2/filesystem/resources/{resourceRid}
16988
+ */
16989
+ declare function get_35($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [resourceRid: _Filesystem_2.ResourceRid]): Promise<_Filesystem_2.Resource>;
16802
16990
 
16803
16991
  /* Excluded from this release type: get_36 */
16804
16992
 
@@ -17063,7 +17251,16 @@ declare function get_8($ctx: SharedClient | SharedClientContext | SharedClient_2
17063
17251
  */
17064
17252
  declare function get_9($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [markingCategoryId: _Admin.MarkingCategoryId]): Promise<_Admin.MarkingCategory>;
17065
17253
 
17066
- /* Excluded from this release type: getAccessRequirements */
17254
+ /**
17255
+ * Returns a list of access requirements a user needs in order to view a resource. Access requirements are
17256
+ * composed of Organizations and Markings, and can either be applied directly to the resource or inherited.
17257
+ *
17258
+ * @public
17259
+ *
17260
+ * Required Scopes: [api:filesystem-read]
17261
+ * URL: /v2/filesystem/resources/{resourceRid}/getAccessRequirements
17262
+ */
17263
+ declare function getAccessRequirements($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [resourceRid: _Filesystem_2.ResourceRid]): Promise<_Filesystem_2.AccessRequirements>;
17067
17264
 
17068
17265
  /**
17069
17266
  * Could not getAccessRequirements the Resource.
@@ -17213,9 +17410,31 @@ declare function getBatch_4($ctx: SharedClient | SharedClientContext | SharedCli
17213
17410
 
17214
17411
  /* Excluded from this release type: getBatch_5 */
17215
17412
 
17216
- /* Excluded from this release type: getBatch_6 */
17413
+ /**
17414
+ * Fetches multiple folders in a single request.
17415
+ *
17416
+ * The maximum batch size for this endpoint is 1000.
17417
+ *
17418
+ * @public
17419
+ *
17420
+ * Required Scopes: [api:filesystem-read]
17421
+ * URL: /v2/filesystem/folders/getBatch
17422
+ */
17423
+ declare function getBatch_6($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [$body: Array<_Filesystem_2.GetFoldersBatchRequestElement>]): Promise<_Filesystem_2.GetFoldersBatchResponse>;
17217
17424
 
17218
- /* Excluded from this release type: getBatch_7 */
17425
+ /**
17426
+ * Fetches multiple resources in a single request.
17427
+ * Returns a map from RID to the corresponding resource. If a resource does not exist, or if it is a root folder or space, its RID will not be included in the map.
17428
+ * At most 1,000 resources should be requested at once.
17429
+ *
17430
+ * The maximum batch size for this endpoint is 1000.
17431
+ *
17432
+ * @public
17433
+ *
17434
+ * Required Scopes: [api:filesystem-read]
17435
+ * URL: /v2/filesystem/resources/getBatch
17436
+ */
17437
+ declare function getBatch_7($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [$body: Array<_Filesystem_2.GetResourcesBatchRequestElement>]): Promise<_Filesystem_2.GetResourcesBatchResponse>;
17219
17438
 
17220
17439
  /**
17221
17440
  * Execute multiple get requests on Build.
@@ -17263,9 +17482,32 @@ declare interface GetBuildsBatchResponse {
17263
17482
  data: Record<_Core.BuildRid, Build>;
17264
17483
  }
17265
17484
 
17266
- /* Excluded from this release type: getByPath */
17485
+ /**
17486
+ * Get a Resource by its absolute path.
17487
+ *
17488
+ * @public
17489
+ *
17490
+ * Required Scopes: [api:filesystem-read]
17491
+ * URL: /v2/filesystem/resources/getByPath
17492
+ */
17493
+ declare function getByPath($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [$queryParams: {
17494
+ path: _Filesystem_2.ResourcePath;
17495
+ }]): Promise<_Filesystem_2.Resource>;
17267
17496
 
17268
- /* Excluded from this release type: getByPathBatch */
17497
+ /**
17498
+ * Gets multiple Resources by their absolute paths.
17499
+ * Returns a list of resources. If a path does not exist, is inaccessible, or refers to
17500
+ * a root folder or space, it will not be included in the response.
17501
+ * At most 1,000 paths should be requested at once.
17502
+ *
17503
+ * The maximum batch size for this endpoint is 1000.
17504
+ *
17505
+ * @public
17506
+ *
17507
+ * Required Scopes: [api:filesystem-read]
17508
+ * URL: /v2/filesystem/resources/getByPathBatch
17509
+ */
17510
+ declare function getByPathBatch($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [$body: Array<_Filesystem_2.GetByPathResourcesBatchRequestElement>]): Promise<_Filesystem_2.GetByPathResourcesBatchResponse>;
17269
17511
 
17270
17512
  /**
17271
17513
  * Could not getByPath the Resource.
@@ -17735,8 +17977,6 @@ declare interface GetFoldersBatchResponse {
17735
17977
 
17736
17978
  /* Excluded from this release type: getFullMetadata_2 */
17737
17979
 
17738
- /* Excluded from this release type: getGeotemporalSeriesLatestValue */
17739
-
17740
17980
  /**
17741
17981
  * The provided token does not have permission to view the provider information for the given group.
17742
17982
  *
@@ -22892,7 +23132,22 @@ $queryParams?: {
22892
23132
  }
22893
23133
  ]): Promise<_Audit.ListLogFilesResponse>;
22894
23134
 
22895
- /* Excluded from this release type: list_25 */
23135
+ /**
23136
+ * List all references in the given project
23137
+ *
23138
+ * @public
23139
+ *
23140
+ * Required Scopes: [api:filesystem-read]
23141
+ * URL: /v2/filesystem/projects/{projectRid}/references
23142
+ */
23143
+ declare function list_25($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
23144
+ projectRid: _Filesystem_2.ProjectRid,
23145
+ $queryParams?: {
23146
+ referenceType?: _Filesystem_2.ProjectResourceReferenceType | undefined;
23147
+ pageSize?: _Core.PageSize | undefined;
23148
+ pageToken?: _Core.PageToken | undefined;
23149
+ }
23150
+ ]): Promise<_Filesystem_2.ListProjectResourceReferencesResponse>;
22896
23151
 
22897
23152
  /**
22898
23153
  * List the roles on a resource.
@@ -22911,7 +23166,22 @@ $queryParams?: {
22911
23166
  }
22912
23167
  ]): Promise<_Filesystem_2.ListResourceRolesResponse>;
22913
23168
 
22914
- /* Excluded from this release type: list_27 */
23169
+ /**
23170
+ * Lists all Spaces.
23171
+ *
23172
+ * This is a paged endpoint. Each page may be smaller or larger than the requested page size. However, it is guaranteed that if there are more results available, the `nextPageToken` field will be populated. To get the next page, make the same request again, but set the value of the `pageToken` query parameter to be value of the `nextPageToken` value of the previous response. If there is no `nextPageToken` field in the response, you are on the last page.
23173
+ *
23174
+ * @public
23175
+ *
23176
+ * Required Scopes: [api:filesystem-read]
23177
+ * URL: /v2/filesystem/spaces
23178
+ */
23179
+ declare function list_27($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
23180
+ $queryParams?: {
23181
+ pageSize?: _Core.PageSize | undefined;
23182
+ pageToken?: _Core.PageToken | undefined;
23183
+ }
23184
+ ]): Promise<_Filesystem_2.ListSpacesResponse>;
22915
23185
 
22916
23186
  /**
22917
23187
  * Lists all file imports defined for this connection.
@@ -23785,6 +24055,66 @@ declare interface ListRunsOfScheduleResponse {
23785
24055
  nextPageToken?: _Core.PageToken;
23786
24056
  }
23787
24057
 
24058
+ /* Excluded from this release type: listScenarioEditedEntityTypes */
24059
+
24060
+ /**
24061
+ * The object types and link types that have been modified within a scenario.
24062
+ *
24063
+ * Log Safety: UNSAFE
24064
+ */
24065
+ declare interface ListScenarioEditedEntityTypesResponse {
24066
+ objectTypes: Array<ObjectTypeApiName>;
24067
+ linkTypes: Array<ObjectTypeLinkTypeApiNameMapping>;
24068
+ }
24069
+
24070
+ /* Excluded from this release type: listScenarioEditedLinks */
24071
+
24072
+ /**
24073
+ * The linked objects that have been edited within a scenario for a given link type, grouped by source object.
24074
+ *
24075
+ * Log Safety: UNSAFE
24076
+ */
24077
+ declare interface ListScenarioEditedLinksResponse {
24078
+ data: Array<LinksFromObject>;
24079
+ nextPageToken?: _Core.PageToken;
24080
+ }
24081
+
24082
+ /* Excluded from this release type: listScenarioEditedLinkTypes */
24083
+
24084
+ /**
24085
+ * The link types that have been modified within a scenario.
24086
+ *
24087
+ * Log Safety: UNSAFE
24088
+ */
24089
+ declare interface ListScenarioEditedLinkTypesResponse {
24090
+ data: Array<LinkTypeApiName_2>;
24091
+ }
24092
+
24093
+ /* Excluded from this release type: listScenarioEditedObjects */
24094
+
24095
+ /**
24096
+ * The objects that have been edited within a scenario for a given object type.
24097
+ The Ontology Objects in this response will only ever have the __primaryKey and __apiName
24098
+ fields present, thus functioning as object locators rather than full objects.
24099
+ *
24100
+ * Log Safety: UNSAFE
24101
+ */
24102
+ declare interface ListScenarioEditedObjectsResponse {
24103
+ data: Array<OntologyObjectV2>;
24104
+ nextPageToken?: _Core.PageToken;
24105
+ }
24106
+
24107
+ /* Excluded from this release type: listScenarioEditedObjectTypes */
24108
+
24109
+ /**
24110
+ * The object types that have been modified within a scenario.
24111
+ *
24112
+ * Log Safety: UNSAFE
24113
+ */
24114
+ declare interface ListScenarioEditedObjectTypesResponse {
24115
+ data: Array<ObjectTypeApiName>;
24116
+ }
24117
+
23788
24118
  /**
23789
24119
  * Log Safety: UNSAFE
23790
24120
  */
@@ -24016,6 +24346,7 @@ $queryParams?: {
24016
24346
  sdkVersion?: _Ontologies_2.SdkVersion | undefined;
24017
24347
  branch?: _Core.FoundryBranch | undefined;
24018
24348
  transactionId?: _Ontologies_2.OntologyTransactionId | undefined;
24349
+ scenarioRid?: _Ontologies_2.OntologyScenarioRid | undefined;
24019
24350
  },
24020
24351
  $headerParams?: {
24021
24352
  traceParent?: _Core.TraceParent | undefined;
@@ -24046,6 +24377,39 @@ declare interface LoadByNameDocumentTypesRequest {
24046
24377
  ontologyRid: string;
24047
24378
  }
24048
24379
 
24380
+ /* Excluded from this release type: loadGeotemporalSeriesEntries */
24381
+
24382
+ /**
24383
+ * The request body for loading entries from a geotemporal series reference property.
24384
+ A geotemporal series represents time-indexed geographic observations for an object, such as the location history
24385
+ of a vehicle or aircraft. Each entry in the response is a map of property names to values, following the same
24386
+ structure as OntologyObjectV2.
24387
+ The range field is required and restricts results to a specific time window. Both startTime and endTime
24388
+ are required on range. The additionalProperties field controls which additional properties appear in each
24389
+ returned entry. Results are paginated; use pageToken from a previous response to retrieve additional pages.
24390
+ *
24391
+ * Log Safety: UNSAFE
24392
+ */
24393
+ declare interface LoadGeotemporalSeriesRequest {
24394
+ range: AbsoluteTimeRange;
24395
+ additionalProperties: Array<SelectedPropertyApiName>;
24396
+ pageToken?: _Core.PageToken;
24397
+ pageSize?: _Core.PageSize;
24398
+ }
24399
+
24400
+ /**
24401
+ * The response when loading entries from a geotemporal series reference property.
24402
+ Each entry in data is a map of property names to values containing the fields requested via
24403
+ additionalProperties in the corresponding LoadGeotemporalSeriesRequest. If nextPageToken is present,
24404
+ additional entries are available and can be retrieved by passing the token in a subsequent request.
24405
+ *
24406
+ * Log Safety: UNSAFE
24407
+ */
24408
+ declare interface LoadGeotemporalSeriesResponse {
24409
+ data: Array<GeotemporalSeriesEntry>;
24410
+ nextPageToken?: _Core.PageToken;
24411
+ }
24412
+
24049
24413
  /* Excluded from this release type: loadLinks */
24050
24414
 
24051
24415
  /* Excluded from this release type: loadMetadata */
@@ -24073,6 +24437,7 @@ declare interface LoadObjectSetLinksRequestV2 {
24073
24437
  links: Array<LinkTypeApiName_2>;
24074
24438
  pageToken?: _Core.PageToken;
24075
24439
  includeComputeUsage?: _Core.IncludeComputeUsage;
24440
+ executeInMemoryOnly?: boolean;
24076
24441
  }
24077
24442
 
24078
24443
  /**
@@ -24171,6 +24536,7 @@ declare interface LoadObjectSetV2ObjectsOrInterfacesRequest {
24171
24536
  pageSize?: _Core.PageSize;
24172
24537
  excludeRid?: boolean;
24173
24538
  snapshot?: boolean;
24539
+ executeInMemoryOnly?: boolean;
24174
24540
  }
24175
24541
 
24176
24542
  /**
@@ -24257,7 +24623,9 @@ declare type LogicRule = ({
24257
24623
  type: "createObject";
24258
24624
  } & CreateObjectRule) | ({
24259
24625
  type: "createLink";
24260
- } & CreateLinkRule);
24626
+ } & CreateLinkRule) | ({
24627
+ type: "applyScenario";
24628
+ } & ApplyScenarioRule);
24261
24629
 
24262
24630
  /**
24263
24631
  * Represents an argument for a logic rule operation. An argument can be passed in via the action parameters, as a static value, or as some other value.
@@ -25047,12 +25415,28 @@ export declare namespace Markings {
25047
25415
  }
25048
25416
  }
25049
25417
 
25050
- /* Excluded from this release type: markings */
25418
+ /**
25419
+ * List of Markings directly applied to a resource. The number of Markings on a resource is typically small
25420
+ * so the `pageSize` and `pageToken` parameters are not required.
25421
+ *
25422
+ * @public
25423
+ *
25424
+ * Required Scopes: []
25425
+ * URL: /v2/filesystem/resources/{resourceRid}/markings
25426
+ */
25427
+ declare function markings($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
25428
+ resourceRid: _Filesystem_2.ResourceRid,
25429
+ $queryParams?: {
25430
+ pageSize?: _Core.PageSize | undefined;
25431
+ pageToken?: _Core.PageToken | undefined;
25432
+ }
25433
+ ]): Promise<_Filesystem_2.ListMarkingsOfResourceResponse>;
25051
25434
 
25052
25435
  /**
25053
25436
  * Log Safety: SAFE
25054
25437
  */
25055
25438
  declare interface MarkingType {
25439
+ markingType?: MarkingTypeValue;
25056
25440
  }
25057
25441
 
25058
25442
  /**
@@ -25060,6 +25444,16 @@ declare interface MarkingType {
25060
25444
  */
25061
25445
  declare type MarkingType_2 = "MANDATORY" | "CBAC";
25062
25446
 
25447
+ /**
25448
+ * The kind of marking applied by a marking property type.
25449
+
25450
+ CBAC: Classification-based access control markings.
25451
+ MANDATORY: Standard non-classification markings. Example - Organizations.
25452
+ *
25453
+ * Log Safety: SAFE
25454
+ */
25455
+ declare type MarkingTypeValue = "CBAC" | "MANDATORY";
25456
+
25063
25457
  /**
25064
25458
  * Matches intervals containing the terms in the query
25065
25459
  *
@@ -26153,6 +26547,22 @@ declare interface MissingTrigger {
26153
26547
  parameters: {};
26154
26548
  }
26155
26549
 
26550
+ /**
26551
+ * This struct value type references another value type which either doesn't exist, or the user doesn't have access to.
26552
+ *
26553
+ * Log Safety: SAFE
26554
+ */
26555
+ declare interface MissingValueTypeReference {
26556
+ errorCode: "INVALID_ARGUMENT";
26557
+ errorName: "MissingValueTypeReference";
26558
+ errorDescription: "This struct value type references another value type which either doesn't exist, or the user doesn't have access to.";
26559
+ errorInstanceId: string;
26560
+ parameters: {
26561
+ referencedRid: unknown;
26562
+ rid: unknown;
26563
+ };
26564
+ }
26565
+
26156
26566
  /**
26157
26567
  * A variable defined on the template requested for project creation does not have a value set in the request.
26158
26568
  *
@@ -29000,6 +29410,17 @@ declare interface ObjectTypeInterfaceImplementation {
29000
29410
  links: Record<InterfaceLinkTypeApiName, Array<LinkTypeApiName_2>>;
29001
29411
  }
29002
29412
 
29413
+ /**
29414
+ * Groups link type API names by the object type they're scoped to. Link type API names are only unique within
29415
+ an object type, so this pairing is required to identify a link type unambiguously.
29416
+ *
29417
+ * Log Safety: UNSAFE
29418
+ */
29419
+ declare interface ObjectTypeLinkTypeApiNameMapping {
29420
+ objectTypeApiName: ObjectTypeApiName;
29421
+ linkTypes: Array<LinkTypeApiName_2>;
29422
+ }
29423
+
29003
29424
  /**
29004
29425
  * The requested object type is not found, or the client token does not have access to it.
29005
29426
  *
@@ -29329,6 +29750,8 @@ export declare namespace Ontologies {
29329
29750
  ApplyActionWithOverridesRequest,
29330
29751
  ApplyReducersAndExtractMainValueLoadLevel,
29331
29752
  ApplyReducersLoadLevel,
29753
+ ApplyScenarioLogicRule,
29754
+ ApplyScenarioRule,
29332
29755
  ApproximateDistinctAggregation,
29333
29756
  ApproximateDistinctAggregationV2,
29334
29757
  ApproximatePercentileAggregationV2,
@@ -29359,10 +29782,12 @@ export declare namespace Ontologies {
29359
29782
  BatchActionResults,
29360
29783
  BatchApplyActionRequest,
29361
29784
  BatchApplyActionRequestItem,
29785
+ BatchApplyActionRequestItemWithOverrides,
29362
29786
  BatchApplyActionRequestOptions,
29363
29787
  BatchApplyActionRequestV2,
29364
29788
  BatchApplyActionResponse,
29365
29789
  BatchApplyActionResponseV2,
29790
+ BatchApplyActionWithOverridesRequest,
29366
29791
  BatchedFunctionLogicRule,
29367
29792
  BatchReturnEditsMode,
29368
29793
  BlueprintIcon,
@@ -29391,6 +29816,8 @@ export declare namespace Ontologies {
29391
29816
  CreateLinkRule,
29392
29817
  CreateObjectLogicRule,
29393
29818
  CreateObjectRule,
29819
+ CreateOntologyScenarioRequest,
29820
+ CreateOntologyScenarioResponse,
29394
29821
  CreateOrModifyObjectLogicRule,
29395
29822
  CreateOrModifyObjectLogicRuleV2,
29396
29823
  CreateTemporaryObjectSetRequestV2,
@@ -29561,6 +29988,13 @@ export declare namespace Ontologies {
29561
29988
  ListOutgoingLinkTypesResponseV2,
29562
29989
  ListQueryTypesResponse,
29563
29990
  ListQueryTypesResponseV2,
29991
+ ListScenarioEditedEntityTypesResponse,
29992
+ ListScenarioEditedLinksResponse,
29993
+ ListScenarioEditedLinkTypesResponse,
29994
+ ListScenarioEditedObjectsResponse,
29995
+ ListScenarioEditedObjectTypesResponse,
29996
+ LoadGeotemporalSeriesRequest,
29997
+ LoadGeotemporalSeriesResponse,
29564
29998
  LoadObjectSetLinksRequestV2,
29565
29999
  LoadObjectSetLinksResponseV2,
29566
30000
  LoadObjectSetRequestV2,
@@ -29661,6 +30095,7 @@ export declare namespace Ontologies {
29661
30095
  ObjectTypeFullMetadata,
29662
30096
  ObjectTypeId_2 as ObjectTypeId,
29663
30097
  ObjectTypeInterfaceImplementation,
30098
+ ObjectTypeLinkTypeApiNameMapping,
29664
30099
  ObjectTypeRid_2 as ObjectTypeRid,
29665
30100
  ObjectTypeV2,
29666
30101
  ObjectTypeVisibility,
@@ -29669,6 +30104,8 @@ export declare namespace Ontologies {
29669
30104
  Ontology,
29670
30105
  OntologyApiName,
29671
30106
  OntologyArrayType,
30107
+ OntologyBase,
30108
+ OntologyBaseBranch,
29672
30109
  OntologyDataType,
29673
30110
  OntologyFullMetadata,
29674
30111
  OntologyIdentifier_2 as OntologyIdentifier,
@@ -29686,6 +30123,8 @@ export declare namespace Ontologies {
29686
30123
  OntologyObjectTypeReferenceType,
29687
30124
  OntologyObjectV2,
29688
30125
  OntologyRid,
30126
+ OntologyScenario,
30127
+ OntologyScenarioRid,
29689
30128
  OntologySetType,
29690
30129
  OntologyStructField,
29691
30130
  OntologyStructType,
@@ -29713,6 +30152,7 @@ export declare namespace Ontologies {
29713
30152
  PreciseTimeUnit,
29714
30153
  PrefixOnLastTokenRule,
29715
30154
  PrefixQuery,
30155
+ PrimaryKeyPropertySelector,
29716
30156
  PrimaryKeyValue,
29717
30157
  PrimaryKeyValueV2,
29718
30158
  Property,
@@ -29826,8 +30266,6 @@ export declare namespace Ontologies {
29826
30266
  SpatialFilterMode,
29827
30267
  StartsWithQuery_2 as StartsWithQuery,
29828
30268
  StaticArgument,
29829
- StreamGeotemporalSeriesValuesRequest,
29830
- StreamGeotemporalSeriesValuesResponse,
29831
30269
  StreamingOutputFormat,
29832
30270
  StreamMessage,
29833
30271
  StreamTimeSeriesPointsRequest,
@@ -29883,6 +30321,7 @@ export declare namespace Ontologies {
29883
30321
  TimeSeriesWindowType,
29884
30322
  TimestampValue,
29885
30323
  TimeUnit_2 as TimeUnit,
30324
+ TitlePropertySelector,
29886
30325
  TransactionEdit,
29887
30326
  TwoDimensionalAggregation,
29888
30327
  TypeClass,
@@ -30007,6 +30446,7 @@ export declare namespace Ontologies {
30007
30446
  MarketplaceSdkPropertyMappingNotFound,
30008
30447
  MarketplaceSdkQueryMappingNotFound,
30009
30448
  MissingParameter,
30449
+ MissingValueTypeReference,
30010
30450
  MultipleGroupByOnFieldNotSupported,
30011
30451
  MultiplePropertyValuesNotSupported,
30012
30452
  NotCipherFormatted,
@@ -30077,6 +30517,7 @@ export declare namespace Ontologies {
30077
30517
  OntologyInterfaces,
30078
30518
  OntologyObjectSets,
30079
30519
  OntologyObjectsV2,
30520
+ OntologyScenarios,
30080
30521
  OntologyTransactions,
30081
30522
  OntologiesV2,
30082
30523
  OntologyValueTypes,
@@ -30160,6 +30601,8 @@ declare namespace _Ontologies {
30160
30601
  ApplyActionWithOverridesRequest,
30161
30602
  ApplyReducersAndExtractMainValueLoadLevel,
30162
30603
  ApplyReducersLoadLevel,
30604
+ ApplyScenarioLogicRule,
30605
+ ApplyScenarioRule,
30163
30606
  ApproximateDistinctAggregation,
30164
30607
  ApproximateDistinctAggregationV2,
30165
30608
  ApproximatePercentileAggregationV2,
@@ -30190,10 +30633,12 @@ declare namespace _Ontologies {
30190
30633
  BatchActionResults,
30191
30634
  BatchApplyActionRequest,
30192
30635
  BatchApplyActionRequestItem,
30636
+ BatchApplyActionRequestItemWithOverrides,
30193
30637
  BatchApplyActionRequestOptions,
30194
30638
  BatchApplyActionRequestV2,
30195
30639
  BatchApplyActionResponse,
30196
30640
  BatchApplyActionResponseV2,
30641
+ BatchApplyActionWithOverridesRequest,
30197
30642
  BatchedFunctionLogicRule,
30198
30643
  BatchReturnEditsMode,
30199
30644
  BlueprintIcon,
@@ -30222,6 +30667,8 @@ declare namespace _Ontologies {
30222
30667
  CreateLinkRule,
30223
30668
  CreateObjectLogicRule,
30224
30669
  CreateObjectRule,
30670
+ CreateOntologyScenarioRequest,
30671
+ CreateOntologyScenarioResponse,
30225
30672
  CreateOrModifyObjectLogicRule,
30226
30673
  CreateOrModifyObjectLogicRuleV2,
30227
30674
  CreateTemporaryObjectSetRequestV2,
@@ -30392,6 +30839,13 @@ declare namespace _Ontologies {
30392
30839
  ListOutgoingLinkTypesResponseV2,
30393
30840
  ListQueryTypesResponse,
30394
30841
  ListQueryTypesResponseV2,
30842
+ ListScenarioEditedEntityTypesResponse,
30843
+ ListScenarioEditedLinksResponse,
30844
+ ListScenarioEditedLinkTypesResponse,
30845
+ ListScenarioEditedObjectsResponse,
30846
+ ListScenarioEditedObjectTypesResponse,
30847
+ LoadGeotemporalSeriesRequest,
30848
+ LoadGeotemporalSeriesResponse,
30395
30849
  LoadObjectSetLinksRequestV2,
30396
30850
  LoadObjectSetLinksResponseV2,
30397
30851
  LoadObjectSetRequestV2,
@@ -30492,6 +30946,7 @@ declare namespace _Ontologies {
30492
30946
  ObjectTypeFullMetadata,
30493
30947
  ObjectTypeId_2 as ObjectTypeId,
30494
30948
  ObjectTypeInterfaceImplementation,
30949
+ ObjectTypeLinkTypeApiNameMapping,
30495
30950
  ObjectTypeRid_2 as ObjectTypeRid,
30496
30951
  ObjectTypeV2,
30497
30952
  ObjectTypeVisibility,
@@ -30500,6 +30955,8 @@ declare namespace _Ontologies {
30500
30955
  Ontology,
30501
30956
  OntologyApiName,
30502
30957
  OntologyArrayType,
30958
+ OntologyBase,
30959
+ OntologyBaseBranch,
30503
30960
  OntologyDataType,
30504
30961
  OntologyFullMetadata,
30505
30962
  OntologyIdentifier_2 as OntologyIdentifier,
@@ -30517,6 +30974,8 @@ declare namespace _Ontologies {
30517
30974
  OntologyObjectTypeReferenceType,
30518
30975
  OntologyObjectV2,
30519
30976
  OntologyRid,
30977
+ OntologyScenario,
30978
+ OntologyScenarioRid,
30520
30979
  OntologySetType,
30521
30980
  OntologyStructField,
30522
30981
  OntologyStructType,
@@ -30544,6 +31003,7 @@ declare namespace _Ontologies {
30544
31003
  PreciseTimeUnit,
30545
31004
  PrefixOnLastTokenRule,
30546
31005
  PrefixQuery,
31006
+ PrimaryKeyPropertySelector,
30547
31007
  PrimaryKeyValue,
30548
31008
  PrimaryKeyValueV2,
30549
31009
  Property,
@@ -30657,8 +31117,6 @@ declare namespace _Ontologies {
30657
31117
  SpatialFilterMode,
30658
31118
  StartsWithQuery_2 as StartsWithQuery,
30659
31119
  StaticArgument,
30660
- StreamGeotemporalSeriesValuesRequest,
30661
- StreamGeotemporalSeriesValuesResponse,
30662
31120
  StreamingOutputFormat,
30663
31121
  StreamMessage,
30664
31122
  StreamTimeSeriesPointsRequest,
@@ -30714,6 +31172,7 @@ declare namespace _Ontologies {
30714
31172
  TimeSeriesWindowType,
30715
31173
  TimestampValue,
30716
31174
  TimeUnit_2 as TimeUnit,
31175
+ TitlePropertySelector,
30717
31176
  TransactionEdit,
30718
31177
  TwoDimensionalAggregation,
30719
31178
  TypeClass,
@@ -30838,6 +31297,7 @@ declare namespace _Ontologies {
30838
31297
  MarketplaceSdkPropertyMappingNotFound,
30839
31298
  MarketplaceSdkQueryMappingNotFound,
30840
31299
  MissingParameter,
31300
+ MissingValueTypeReference,
30841
31301
  MultipleGroupByOnFieldNotSupported,
30842
31302
  MultiplePropertyValuesNotSupported,
30843
31303
  NotCipherFormatted,
@@ -30908,6 +31368,7 @@ declare namespace _Ontologies {
30908
31368
  OntologyInterfaces,
30909
31369
  OntologyObjectSets,
30910
31370
  OntologyObjectsV2,
31371
+ OntologyScenarios,
30911
31372
  OntologyTransactions,
30912
31373
  OntologiesV2,
30913
31374
  OntologyValueTypes,
@@ -30992,6 +31453,8 @@ declare namespace _Ontologies_2 {
30992
31453
  ApplyActionWithOverridesRequest,
30993
31454
  ApplyReducersAndExtractMainValueLoadLevel,
30994
31455
  ApplyReducersLoadLevel,
31456
+ ApplyScenarioLogicRule,
31457
+ ApplyScenarioRule,
30995
31458
  ApproximateDistinctAggregation,
30996
31459
  ApproximateDistinctAggregationV2,
30997
31460
  ApproximatePercentileAggregationV2,
@@ -31022,10 +31485,12 @@ declare namespace _Ontologies_2 {
31022
31485
  BatchActionResults,
31023
31486
  BatchApplyActionRequest,
31024
31487
  BatchApplyActionRequestItem,
31488
+ BatchApplyActionRequestItemWithOverrides,
31025
31489
  BatchApplyActionRequestOptions,
31026
31490
  BatchApplyActionRequestV2,
31027
31491
  BatchApplyActionResponse,
31028
31492
  BatchApplyActionResponseV2,
31493
+ BatchApplyActionWithOverridesRequest,
31029
31494
  BatchedFunctionLogicRule,
31030
31495
  BatchReturnEditsMode,
31031
31496
  BlueprintIcon,
@@ -31054,6 +31519,8 @@ declare namespace _Ontologies_2 {
31054
31519
  CreateLinkRule,
31055
31520
  CreateObjectLogicRule,
31056
31521
  CreateObjectRule,
31522
+ CreateOntologyScenarioRequest,
31523
+ CreateOntologyScenarioResponse,
31057
31524
  CreateOrModifyObjectLogicRule,
31058
31525
  CreateOrModifyObjectLogicRuleV2,
31059
31526
  CreateTemporaryObjectSetRequestV2,
@@ -31224,6 +31691,13 @@ declare namespace _Ontologies_2 {
31224
31691
  ListOutgoingLinkTypesResponseV2,
31225
31692
  ListQueryTypesResponse,
31226
31693
  ListQueryTypesResponseV2,
31694
+ ListScenarioEditedEntityTypesResponse,
31695
+ ListScenarioEditedLinksResponse,
31696
+ ListScenarioEditedLinkTypesResponse,
31697
+ ListScenarioEditedObjectsResponse,
31698
+ ListScenarioEditedObjectTypesResponse,
31699
+ LoadGeotemporalSeriesRequest,
31700
+ LoadGeotemporalSeriesResponse,
31227
31701
  LoadObjectSetLinksRequestV2,
31228
31702
  LoadObjectSetLinksResponseV2,
31229
31703
  LoadObjectSetRequestV2,
@@ -31324,6 +31798,7 @@ declare namespace _Ontologies_2 {
31324
31798
  ObjectTypeFullMetadata,
31325
31799
  ObjectTypeId_2 as ObjectTypeId,
31326
31800
  ObjectTypeInterfaceImplementation,
31801
+ ObjectTypeLinkTypeApiNameMapping,
31327
31802
  ObjectTypeRid_2 as ObjectTypeRid,
31328
31803
  ObjectTypeV2,
31329
31804
  ObjectTypeVisibility,
@@ -31332,6 +31807,8 @@ declare namespace _Ontologies_2 {
31332
31807
  Ontology,
31333
31808
  OntologyApiName,
31334
31809
  OntologyArrayType,
31810
+ OntologyBase,
31811
+ OntologyBaseBranch,
31335
31812
  OntologyDataType,
31336
31813
  OntologyFullMetadata,
31337
31814
  OntologyIdentifier_2 as OntologyIdentifier,
@@ -31349,6 +31826,8 @@ declare namespace _Ontologies_2 {
31349
31826
  OntologyObjectTypeReferenceType,
31350
31827
  OntologyObjectV2,
31351
31828
  OntologyRid,
31829
+ OntologyScenario,
31830
+ OntologyScenarioRid,
31352
31831
  OntologySetType,
31353
31832
  OntologyStructField,
31354
31833
  OntologyStructType,
@@ -31376,6 +31855,7 @@ declare namespace _Ontologies_2 {
31376
31855
  PreciseTimeUnit,
31377
31856
  PrefixOnLastTokenRule,
31378
31857
  PrefixQuery,
31858
+ PrimaryKeyPropertySelector,
31379
31859
  PrimaryKeyValue,
31380
31860
  PrimaryKeyValueV2,
31381
31861
  Property,
@@ -31489,8 +31969,6 @@ declare namespace _Ontologies_2 {
31489
31969
  SpatialFilterMode,
31490
31970
  StartsWithQuery_2 as StartsWithQuery,
31491
31971
  StaticArgument,
31492
- StreamGeotemporalSeriesValuesRequest,
31493
- StreamGeotemporalSeriesValuesResponse,
31494
31972
  StreamingOutputFormat,
31495
31973
  StreamMessage,
31496
31974
  StreamTimeSeriesPointsRequest,
@@ -31546,6 +32024,7 @@ declare namespace _Ontologies_2 {
31546
32024
  TimeSeriesWindowType,
31547
32025
  TimestampValue,
31548
32026
  TimeUnit_2 as TimeUnit,
32027
+ TitlePropertySelector,
31549
32028
  TransactionEdit,
31550
32029
  TwoDimensionalAggregation,
31551
32030
  TypeClass,
@@ -31629,6 +32108,24 @@ declare interface OntologyArrayType {
31629
32108
  itemType: OntologyDataType;
31630
32109
  }
31631
32110
 
32111
+ /**
32112
+ * The base used to initialize a scenario.
32113
+ *
32114
+ * Log Safety: UNSAFE
32115
+ */
32116
+ declare type OntologyBase = {
32117
+ type: "branch";
32118
+ } & OntologyBaseBranch;
32119
+
32120
+ /**
32121
+ * A branch reference used to initialize a scenario.
32122
+ *
32123
+ * Log Safety: SAFE
32124
+ */
32125
+ declare interface OntologyBaseBranch {
32126
+ branch: _Core.FoundryBranch;
32127
+ }
32128
+
31632
32129
  /**
31633
32130
  * An ontologyBinding is required when creating or replacing a model function.
31634
32131
  *
@@ -31956,6 +32453,24 @@ declare type OntologyRid = LooselyBrandedString_5<"OntologyRid">;
31956
32453
  */
31957
32454
  declare type OntologyRid_2 = LooselyBrandedString_15<"OntologyRid">;
31958
32455
 
32456
+ /**
32457
+ * Log Safety: UNSAFE
32458
+ */
32459
+ declare type OntologyScenario = LooselyBrandedString_5<"OntologyScenario">;
32460
+
32461
+ /**
32462
+ * The unique resource identifier of an ontology scenario.
32463
+ *
32464
+ * Log Safety: SAFE
32465
+ */
32466
+ declare type OntologyScenarioRid = LooselyBrandedString_5<"OntologyScenarioRid">;
32467
+
32468
+ export declare namespace OntologyScenarios {
32469
+ export {
32470
+
32471
+ }
32472
+ }
32473
+
31959
32474
  /**
31960
32475
  * A specification of an Ontology SDK used by a widget set.
31961
32476
  *
@@ -32922,7 +33437,22 @@ export declare namespace Organizations {
32922
33437
  }
32923
33438
  }
32924
33439
 
32925
- /* Excluded from this release type: organizations */
33440
+ /**
33441
+ * List of Organizations directly applied to a Project. The number of Organizations on a Project is
33442
+ * typically small so the `pageSize` and `pageToken` parameters are not required.
33443
+ *
33444
+ * @public
33445
+ *
33446
+ * Required Scopes: []
33447
+ * URL: /v2/filesystem/projects/{projectRid}/organizations
33448
+ */
33449
+ declare function organizations($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
33450
+ projectRid: _Filesystem_2.ProjectRid,
33451
+ $queryParams?: {
33452
+ pageSize?: _Core.PageSize | undefined;
33453
+ pageToken?: _Core.PageToken | undefined;
33454
+ }
33455
+ ]): Promise<_Filesystem_2.ListOrganizationsOfProjectResponse>;
32926
33456
 
32927
33457
  /**
32928
33458
  * At least one organization RID could not be found.
@@ -34014,7 +34544,16 @@ declare interface PercentageValueBelowMinimum {
34014
34544
  */
34015
34545
  declare type PerformanceMode = "MORE_ECONOMICAL" | "MORE_PERFORMANT";
34016
34546
 
34017
- /* Excluded from this release type: permanentlyDelete */
34547
+ /**
34548
+ * Permanently delete the given resource from the trash. If the Resource is not directly trashed, a
34549
+ * `ResourceNotTrashed` error will be thrown.
34550
+ *
34551
+ * @public
34552
+ *
34553
+ * Required Scopes: [api:filesystem-write]
34554
+ * URL: /v2/filesystem/resources/{resourceRid}/permanentlyDelete
34555
+ */
34556
+ declare function permanentlyDelete($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [resourceRid: _Filesystem_2.ResourceRid]): Promise<void>;
34018
34557
 
34019
34558
  /**
34020
34559
  * Could not permanentlyDelete the Resource.
@@ -34316,6 +34855,14 @@ declare interface PrimaryKeyLatestWinsResolutionStrategy {
34316
34855
  columns: Array<string>;
34317
34856
  }
34318
34857
 
34858
+ /**
34859
+ * Specifies the primary key property of an object type which is present on all object types.
34860
+ *
34861
+ * Log Safety: SAFE
34862
+ */
34863
+ declare interface PrimaryKeyPropertySelector {
34864
+ }
34865
+
34319
34866
  /**
34320
34867
  * Duplicate primary key values may exist within the dataset – resolution required.
34321
34868
  *
@@ -34558,7 +35105,9 @@ declare interface ProjectResourceReference {
34558
35105
 
34559
35106
  export declare namespace ProjectResourceReferences {
34560
35107
  export {
34561
-
35108
+ list_25 as list,
35109
+ add_7 as add,
35110
+ remove_7 as remove
34562
35111
  }
34563
35112
  }
34564
35113
 
@@ -34599,7 +35148,12 @@ declare type ProjectRid_2 = LooselyBrandedString_10<"ProjectRid">;
34599
35148
 
34600
35149
  export declare namespace Projects {
34601
35150
  export {
34602
- get_34 as get
35151
+ get_34 as get,
35152
+ create_7 as create,
35153
+ createFromTemplate,
35154
+ addOrganizations,
35155
+ removeOrganizations,
35156
+ organizations
34603
35157
  }
34604
35158
  }
34605
35159
 
@@ -34983,7 +35537,11 @@ declare type PropertyIdentifier_2 = ({
34983
35537
  type: "structField";
34984
35538
  } & StructFieldSelector_2) | ({
34985
35539
  type: "propertyWithLoadLevel";
34986
- } & PropertyWithLoadLevelSelector);
35540
+ } & PropertyWithLoadLevelSelector) | ({
35541
+ type: "titleProperty";
35542
+ } & TitlePropertySelector) | ({
35543
+ type: "primaryKeyProperty";
35544
+ } & PrimaryKeyPropertySelector);
34987
35545
 
34988
35546
  /**
34989
35547
  * Log Safety: UNSAFE
@@ -37104,7 +37662,18 @@ organizationRid: _Core.OrganizationRid,
37104
37662
  $body: _Admin.RemoveOrganizationRoleAssignmentsRequest
37105
37663
  ]): Promise<void>;
37106
37664
 
37107
- /* Excluded from this release type: remove_7 */
37665
+ /**
37666
+ * Remove references from the given project
37667
+ *
37668
+ * @public
37669
+ *
37670
+ * Required Scopes: [api:filesystem-write]
37671
+ * URL: /v2/filesystem/projects/{projectRid}/references/remove
37672
+ */
37673
+ declare function remove_7($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
37674
+ projectRid: _Filesystem_2.ProjectRid,
37675
+ $body: _Filesystem_2.RemoveProjectResourceReferencesRequest
37676
+ ]): Promise<void>;
37108
37677
 
37109
37678
  /**
37110
37679
  * @public
@@ -37259,7 +37828,18 @@ declare interface RemoveMarkingRoleAssignmentsRequest {
37259
37828
  roleAssignments: Array<MarkingRoleUpdate>;
37260
37829
  }
37261
37830
 
37262
- /* Excluded from this release type: removeMarkings */
37831
+ /**
37832
+ * Removes Markings from a resource.
37833
+ *
37834
+ * @public
37835
+ *
37836
+ * Required Scopes: [api:filesystem-write]
37837
+ * URL: /v2/filesystem/resources/{resourceRid}/removeMarkings
37838
+ */
37839
+ declare function removeMarkings($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
37840
+ resourceRid: _Filesystem_2.ResourceRid,
37841
+ $body: _Filesystem_2.RemoveMarkingsRequest
37842
+ ]): Promise<void>;
37263
37843
 
37264
37844
  /**
37265
37845
  * Could not removeMarkings the Resource.
@@ -37327,7 +37907,18 @@ declare interface RemoveOrganizationRoleAssignmentsRequest {
37327
37907
  roleAssignments: Array<_Core.RoleAssignmentUpdate>;
37328
37908
  }
37329
37909
 
37330
- /* Excluded from this release type: removeOrganizations */
37910
+ /**
37911
+ * Removes Organizations from a Project.
37912
+ *
37913
+ * @public
37914
+ *
37915
+ * Required Scopes: [api:filesystem-write]
37916
+ * URL: /v2/filesystem/projects/{projectRid}/removeOrganizations
37917
+ */
37918
+ declare function removeOrganizations($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
37919
+ projectRid: _Filesystem_2.ProjectRid,
37920
+ $body: _Filesystem_2.RemoveOrganizationsRequest
37921
+ ]): Promise<void>;
37331
37922
 
37332
37923
  /**
37333
37924
  * Could not removeOrganizations the Project.
@@ -38814,7 +39405,17 @@ export declare namespace ResourceRoles {
38814
39405
 
38815
39406
  export declare namespace Resources {
38816
39407
  export {
38817
-
39408
+ deleteResource,
39409
+ get_35 as get,
39410
+ getBatch_7 as getBatch,
39411
+ getByPath,
39412
+ getByPathBatch,
39413
+ restore,
39414
+ permanentlyDelete,
39415
+ addMarkings,
39416
+ removeMarkings,
39417
+ getAccessRequirements,
39418
+ markings
38818
39419
  }
38819
39420
  }
38820
39421
 
@@ -38884,7 +39485,16 @@ declare interface RestConnectionConfiguration {
38884
39485
  declare interface RestConnectionOAuth2 {
38885
39486
  }
38886
39487
 
38887
- /* Excluded from this release type: restore */
39488
+ /**
39489
+ * Restore the given resource and any directly trashed ancestors from the trash. If the resource is not
39490
+ * trashed, this operation will be ignored.
39491
+ *
39492
+ * @public
39493
+ *
39494
+ * Required Scopes: [api:filesystem-write]
39495
+ * URL: /v2/filesystem/resources/{resourceRid}/restore
39496
+ */
39497
+ declare function restore($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [resourceRid: _Filesystem_2.ResourceRid]): Promise<void>;
38888
39498
 
38889
39499
  /**
38890
39500
  * Could not restore the Resource.
@@ -39361,6 +39971,12 @@ declare interface ScanningInProgress {
39361
39971
  };
39362
39972
  }
39363
39973
 
39974
+ /**
39975
+ * Log Safety: SAFE
39976
+ */
39977
+ declare interface ScenarioReferenceType {
39978
+ }
39979
+
39364
39980
  /**
39365
39981
  * The sensitivity threshold for scene detection.
39366
39982
  *
@@ -40607,6 +41223,7 @@ declare interface SearchObjectsRequestV2 {
40607
41223
  selectV2: Array<PropertyIdentifier_2>;
40608
41224
  excludeRid?: boolean;
40609
41225
  snapshot?: boolean;
41226
+ executeInMemoryOnly?: boolean;
40610
41227
  }
40611
41228
 
40612
41229
  /**
@@ -41586,7 +42203,7 @@ declare type SpaceRid = LooselyBrandedString_10<"SpaceRid">;
41586
42203
 
41587
42204
  export declare namespace Spaces {
41588
42205
  export {
41589
-
42206
+ list_27 as list
41590
42207
  }
41591
42208
  }
41592
42209
 
@@ -41836,22 +42453,6 @@ declare interface Stream {
41836
42453
  compressed: Compressed;
41837
42454
  }
41838
42455
 
41839
- /* Excluded from this release type: streamGeotemporalSeriesHistoricValues */
41840
-
41841
- /**
41842
- * Log Safety: UNSAFE
41843
- */
41844
- declare interface StreamGeotemporalSeriesValuesRequest {
41845
- range?: TimeRange;
41846
- }
41847
-
41848
- /**
41849
- * Log Safety: UNSAFE
41850
- */
41851
- declare interface StreamGeotemporalSeriesValuesResponse {
41852
- data: Array<GeotemporalSeriesEntry>;
41853
- }
41854
-
41855
42456
  /* Excluded from this release type: streamingContinue */
41856
42457
 
41857
42458
  /**
@@ -43629,6 +44230,14 @@ declare type TimeUnit = "MILLISECONDS" | "SECONDS" | "MINUTES" | "HOURS" | "DAYS
43629
44230
  */
43630
44231
  declare type TimeUnit_2 = "MILLISECONDS" | "SECONDS" | "MINUTES" | "HOURS" | "DAYS" | "WEEKS" | "MONTHS" | "YEARS" | "QUARTERS";
43631
44232
 
44233
+ /**
44234
+ * Specifies the title property of an object type which is present on all object types.
44235
+ *
44236
+ * Log Safety: SAFE
44237
+ */
44238
+ declare interface TitlePropertySelector {
44239
+ }
44240
+
43632
44241
  /**
43633
44242
  * A tool call with its input and output.
43634
44243
  *