@osdk/foundry 2.60.0 → 2.61.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.
@@ -7369,6 +7475,7 @@ export declare namespace Core {
7369
7475
  RoleContext,
7370
7476
  RoleId,
7371
7477
  RoleSetId,
7478
+ ScenarioReferenceType,
7372
7479
  ScheduleRid,
7373
7480
  SchemaFieldType,
7374
7481
  SearchJsonQueryV2,
@@ -7598,6 +7705,7 @@ declare namespace _Core {
7598
7705
  RoleContext,
7599
7706
  RoleId,
7600
7707
  RoleSetId,
7708
+ ScenarioReferenceType,
7601
7709
  ScheduleRid,
7602
7710
  SchemaFieldType,
7603
7711
  SearchJsonQueryV2,
@@ -7840,9 +7948,29 @@ declare function create_2($ctx: SharedClient | SharedClientContext | SharedClien
7840
7948
 
7841
7949
  /* Excluded from this release type: create_5 */
7842
7950
 
7843
- /* Excluded from this release type: create_6 */
7951
+ /**
7952
+ * Creates a new Folder.
7953
+ *
7954
+ * @public
7955
+ *
7956
+ * Required Scopes: [api:filesystem-write]
7957
+ * URL: /v2/filesystem/folders
7958
+ */
7959
+ declare function create_6($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [$body: _Filesystem_2.CreateFolderRequest]): Promise<_Filesystem_2.Folder>;
7844
7960
 
7845
- /* Excluded from this release type: create_7 */
7961
+ /**
7962
+ * Creates a new Project.
7963
+ *
7964
+ * Note that third-party applications using this endpoint via OAuth2 cannot be associated with an
7965
+ * Ontology SDK as this will reduce the scope of operations to only those within specified projects.
7966
+ * When creating the application, select "No, I won't use an Ontology SDK" on the Resources page.
7967
+ *
7968
+ * @public
7969
+ *
7970
+ * Required Scopes: [api:filesystem-write]
7971
+ * URL: /v2/filesystem/projects/create
7972
+ */
7973
+ declare function create_7($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [$body: _Filesystem_2.CreateProjectRequest]): Promise<_Filesystem_2.Project>;
7846
7974
 
7847
7975
  /* Excluded from this release type: create_8 */
7848
7976
 
@@ -8609,7 +8737,15 @@ declare interface CreateFolderRequest {
8609
8737
  displayName: ResourceDisplayName;
8610
8738
  }
8611
8739
 
8612
- /* Excluded from this release type: createFromTemplate */
8740
+ /**
8741
+ * Creates a project from a project template.
8742
+ *
8743
+ * @public
8744
+ *
8745
+ * Required Scopes: [api:filesystem-write]
8746
+ * URL: /v2/filesystem/projects/createFromTemplate
8747
+ */
8748
+ declare function createFromTemplate($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [$body: _Filesystem_2.CreateProjectFromTemplateRequest]): Promise<_Filesystem_2.Project>;
8613
8749
 
8614
8750
  /**
8615
8751
  * Could not create the Group.
@@ -8944,6 +9080,24 @@ declare interface CreateObjectRule {
8944
9080
  objectTypeApiName: ObjectTypeApiName;
8945
9081
  }
8946
9082
 
9083
+ /**
9084
+ * The request payload for creating an ontology scenario.
9085
+ *
9086
+ * Log Safety: UNSAFE
9087
+ */
9088
+ declare interface CreateOntologyScenarioRequest {
9089
+ base?: OntologyBase;
9090
+ }
9091
+
9092
+ /**
9093
+ * The response payload for creating an ontology scenario.
9094
+ *
9095
+ * Log Safety: SAFE
9096
+ */
9097
+ declare interface CreateOntologyScenarioResponse {
9098
+ scenarioRid: OntologyScenarioRid;
9099
+ }
9100
+
8947
9101
  /**
8948
9102
  * At least one organization:administrator role grant must be provided when creating a organization.
8949
9103
  *
@@ -9073,6 +9227,8 @@ declare interface CreateProjectRequest {
9073
9227
  resourceLevelRoleGrantsAllowed?: boolean;
9074
9228
  }
9075
9229
 
9230
+ /* Excluded from this release type: createScenario */
9231
+
9076
9232
  /**
9077
9233
  * Could not create the Schedule.
9078
9234
  *
@@ -10694,6 +10850,7 @@ declare type DataType = "UNDEFINED" | "BYTE" | "UINT16" | "INT16" | "UINT32" | "
10694
10850
  | Ontology Object Reference | JSON encoding of the object's primary key | 10033123 or "EMP1234" |
10695
10851
  | Ontology Interface Object Reference | JSON encoding of the object's API name and primary key| {"objectTypeApiName":"Employee", "primaryKeyValue":"EMP1234"} |
10696
10852
  | Ontology Object Type Reference | string of the object type's api name | "Employee" |
10853
+ | Scenario Reference | string of the scenario RID | "ri.actions..scenario.cf2a8a49-8b56-446d-ab04-a6bc7fadef48" |
10697
10854
  | Set | array | ["alpha", "bravo", "charlie"] |
10698
10855
  | Short | number | 8739 |
10699
10856
  | String | string | "Call me Ishmael" |
@@ -11227,7 +11384,16 @@ declare interface DeleteReleasePermissionDenied {
11227
11384
  };
11228
11385
  }
11229
11386
 
11230
- /* Excluded from this release type: deleteResource */
11387
+ /**
11388
+ * Move the given resource to the trash. Following this operation, the resource can be restored, using the
11389
+ * `restore` operation, or permanently deleted using the `permanentlyDelete` operation.
11390
+ *
11391
+ * @public
11392
+ *
11393
+ * Required Scopes: [api:filesystem-write]
11394
+ * URL: /v2/filesystem/resources/{resourceRid}
11395
+ */
11396
+ declare function deleteResource($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [resourceRid: _Filesystem_2.ResourceRid]): Promise<void>;
11231
11397
 
11232
11398
  /**
11233
11399
  * Could not delete the Resource.
@@ -13122,6 +13288,7 @@ $queryParams?: {
13122
13288
  sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
13123
13289
  sdkVersion?: _Ontologies_2.SdkVersion | undefined;
13124
13290
  transactionId?: _Ontologies_2.OntologyTransactionId | undefined;
13291
+ scenarioRid?: _Ontologies_2.OntologyScenarioRid | undefined;
13125
13292
  },
13126
13293
  $headerParams?: {
13127
13294
  attribution?: _Core.Attribution | undefined;
@@ -14827,6 +14994,7 @@ declare interface FileSizeLimitExceeded {
14827
14994
  datasetRid: unknown;
14828
14995
  path: unknown;
14829
14996
  fileSizeBytes: unknown;
14997
+ maxFileSizeBytes: unknown;
14830
14998
  };
14831
14999
  }
14832
15000
 
@@ -15503,7 +15671,10 @@ declare type FolderRid_5 = LooselyBrandedString_19<"FolderRid">;
15503
15671
 
15504
15672
  export declare namespace Folders {
15505
15673
  export {
15506
-
15674
+ create_6 as create,
15675
+ get_33 as get,
15676
+ getBatch_6 as getBatch,
15677
+ children
15507
15678
  }
15508
15679
  }
15509
15680
 
@@ -16566,14 +16737,13 @@ declare interface GeoShapeV2Query {
16566
16737
  }
16567
16738
 
16568
16739
  /**
16569
- * A single geotemporal data point representing the location of an entity at a specific point in time.
16740
+ * A single geotemporal data point. Each entry is a map from property API names to property values. Standard
16741
+ entries include "time" (ISO 8601 timestamp) and "position" (GeoPoint), and may include additional geotemporal
16742
+ series metadata fields such as speed, heading, or altitude.
16570
16743
  *
16571
16744
  * Log Safety: UNSAFE
16572
16745
  */
16573
- declare interface GeotemporalSeriesEntry {
16574
- time: string;
16575
- position: _Geo.GeoPoint;
16576
- }
16746
+ declare type GeotemporalSeriesEntry = Record<PropertyApiName_2, PropertyValue_2>;
16577
16747
 
16578
16748
  export declare namespace GeotemporalSeriesProperties {
16579
16749
  export {
@@ -16786,7 +16956,15 @@ $queryParams?: {
16786
16956
 
16787
16957
  /* Excluded from this release type: get_32 */
16788
16958
 
16789
- /* Excluded from this release type: get_33 */
16959
+ /**
16960
+ * Get the Folder with the specified rid.
16961
+ *
16962
+ * @public
16963
+ *
16964
+ * Required Scopes: [api:filesystem-read]
16965
+ * URL: /v2/filesystem/folders/{folderRid}
16966
+ */
16967
+ declare function get_33($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [folderRid: _Filesystem_2.FolderRid]): Promise<_Filesystem_2.Folder>;
16790
16968
 
16791
16969
  /**
16792
16970
  * Get the Project with the specified rid.
@@ -16798,7 +16976,15 @@ $queryParams?: {
16798
16976
  */
16799
16977
  declare function get_34($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [projectRid: _Filesystem_2.ProjectRid]): Promise<_Filesystem_2.Project>;
16800
16978
 
16801
- /* Excluded from this release type: get_35 */
16979
+ /**
16980
+ * Get the Resource with the specified rid.
16981
+ *
16982
+ * @public
16983
+ *
16984
+ * Required Scopes: [api:filesystem-read]
16985
+ * URL: /v2/filesystem/resources/{resourceRid}
16986
+ */
16987
+ declare function get_35($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [resourceRid: _Filesystem_2.ResourceRid]): Promise<_Filesystem_2.Resource>;
16802
16988
 
16803
16989
  /* Excluded from this release type: get_36 */
16804
16990
 
@@ -17063,7 +17249,16 @@ declare function get_8($ctx: SharedClient | SharedClientContext | SharedClient_2
17063
17249
  */
17064
17250
  declare function get_9($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [markingCategoryId: _Admin.MarkingCategoryId]): Promise<_Admin.MarkingCategory>;
17065
17251
 
17066
- /* Excluded from this release type: getAccessRequirements */
17252
+ /**
17253
+ * Returns a list of access requirements a user needs in order to view a resource. Access requirements are
17254
+ * composed of Organizations and Markings, and can either be applied directly to the resource or inherited.
17255
+ *
17256
+ * @public
17257
+ *
17258
+ * Required Scopes: [api:filesystem-read]
17259
+ * URL: /v2/filesystem/resources/{resourceRid}/getAccessRequirements
17260
+ */
17261
+ declare function getAccessRequirements($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [resourceRid: _Filesystem_2.ResourceRid]): Promise<_Filesystem_2.AccessRequirements>;
17067
17262
 
17068
17263
  /**
17069
17264
  * Could not getAccessRequirements the Resource.
@@ -17213,9 +17408,31 @@ declare function getBatch_4($ctx: SharedClient | SharedClientContext | SharedCli
17213
17408
 
17214
17409
  /* Excluded from this release type: getBatch_5 */
17215
17410
 
17216
- /* Excluded from this release type: getBatch_6 */
17411
+ /**
17412
+ * Fetches multiple folders in a single request.
17413
+ *
17414
+ * The maximum batch size for this endpoint is 1000.
17415
+ *
17416
+ * @public
17417
+ *
17418
+ * Required Scopes: [api:filesystem-read]
17419
+ * URL: /v2/filesystem/folders/getBatch
17420
+ */
17421
+ declare function getBatch_6($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [$body: Array<_Filesystem_2.GetFoldersBatchRequestElement>]): Promise<_Filesystem_2.GetFoldersBatchResponse>;
17217
17422
 
17218
- /* Excluded from this release type: getBatch_7 */
17423
+ /**
17424
+ * Fetches multiple resources in a single request.
17425
+ * 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.
17426
+ * At most 1,000 resources should be requested at once.
17427
+ *
17428
+ * The maximum batch size for this endpoint is 1000.
17429
+ *
17430
+ * @public
17431
+ *
17432
+ * Required Scopes: [api:filesystem-read]
17433
+ * URL: /v2/filesystem/resources/getBatch
17434
+ */
17435
+ declare function getBatch_7($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [$body: Array<_Filesystem_2.GetResourcesBatchRequestElement>]): Promise<_Filesystem_2.GetResourcesBatchResponse>;
17219
17436
 
17220
17437
  /**
17221
17438
  * Execute multiple get requests on Build.
@@ -17263,9 +17480,32 @@ declare interface GetBuildsBatchResponse {
17263
17480
  data: Record<_Core.BuildRid, Build>;
17264
17481
  }
17265
17482
 
17266
- /* Excluded from this release type: getByPath */
17483
+ /**
17484
+ * Get a Resource by its absolute path.
17485
+ *
17486
+ * @public
17487
+ *
17488
+ * Required Scopes: [api:filesystem-read]
17489
+ * URL: /v2/filesystem/resources/getByPath
17490
+ */
17491
+ declare function getByPath($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [$queryParams: {
17492
+ path: _Filesystem_2.ResourcePath;
17493
+ }]): Promise<_Filesystem_2.Resource>;
17267
17494
 
17268
- /* Excluded from this release type: getByPathBatch */
17495
+ /**
17496
+ * Gets multiple Resources by their absolute paths.
17497
+ * Returns a list of resources. If a path does not exist, is inaccessible, or refers to
17498
+ * a root folder or space, it will not be included in the response.
17499
+ * At most 1,000 paths should be requested at once.
17500
+ *
17501
+ * The maximum batch size for this endpoint is 1000.
17502
+ *
17503
+ * @public
17504
+ *
17505
+ * Required Scopes: [api:filesystem-read]
17506
+ * URL: /v2/filesystem/resources/getByPathBatch
17507
+ */
17508
+ declare function getByPathBatch($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [$body: Array<_Filesystem_2.GetByPathResourcesBatchRequestElement>]): Promise<_Filesystem_2.GetByPathResourcesBatchResponse>;
17269
17509
 
17270
17510
  /**
17271
17511
  * Could not getByPath the Resource.
@@ -17735,8 +17975,6 @@ declare interface GetFoldersBatchResponse {
17735
17975
 
17736
17976
  /* Excluded from this release type: getFullMetadata_2 */
17737
17977
 
17738
- /* Excluded from this release type: getGeotemporalSeriesLatestValue */
17739
-
17740
17978
  /**
17741
17979
  * The provided token does not have permission to view the provider information for the given group.
17742
17980
  *
@@ -22892,7 +23130,22 @@ $queryParams?: {
22892
23130
  }
22893
23131
  ]): Promise<_Audit.ListLogFilesResponse>;
22894
23132
 
22895
- /* Excluded from this release type: list_25 */
23133
+ /**
23134
+ * List all references in the given project
23135
+ *
23136
+ * @public
23137
+ *
23138
+ * Required Scopes: [api:filesystem-read]
23139
+ * URL: /v2/filesystem/projects/{projectRid}/references
23140
+ */
23141
+ declare function list_25($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
23142
+ projectRid: _Filesystem_2.ProjectRid,
23143
+ $queryParams?: {
23144
+ referenceType?: _Filesystem_2.ProjectResourceReferenceType | undefined;
23145
+ pageSize?: _Core.PageSize | undefined;
23146
+ pageToken?: _Core.PageToken | undefined;
23147
+ }
23148
+ ]): Promise<_Filesystem_2.ListProjectResourceReferencesResponse>;
22896
23149
 
22897
23150
  /**
22898
23151
  * List the roles on a resource.
@@ -22911,7 +23164,22 @@ $queryParams?: {
22911
23164
  }
22912
23165
  ]): Promise<_Filesystem_2.ListResourceRolesResponse>;
22913
23166
 
22914
- /* Excluded from this release type: list_27 */
23167
+ /**
23168
+ * Lists all Spaces.
23169
+ *
23170
+ * 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.
23171
+ *
23172
+ * @public
23173
+ *
23174
+ * Required Scopes: [api:filesystem-read]
23175
+ * URL: /v2/filesystem/spaces
23176
+ */
23177
+ declare function list_27($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
23178
+ $queryParams?: {
23179
+ pageSize?: _Core.PageSize | undefined;
23180
+ pageToken?: _Core.PageToken | undefined;
23181
+ }
23182
+ ]): Promise<_Filesystem_2.ListSpacesResponse>;
22915
23183
 
22916
23184
  /**
22917
23185
  * Lists all file imports defined for this connection.
@@ -23785,6 +24053,66 @@ declare interface ListRunsOfScheduleResponse {
23785
24053
  nextPageToken?: _Core.PageToken;
23786
24054
  }
23787
24055
 
24056
+ /* Excluded from this release type: listScenarioEditedEntityTypes */
24057
+
24058
+ /**
24059
+ * The object types and link types that have been modified within a scenario.
24060
+ *
24061
+ * Log Safety: UNSAFE
24062
+ */
24063
+ declare interface ListScenarioEditedEntityTypesResponse {
24064
+ objectTypes: Array<ObjectTypeApiName>;
24065
+ linkTypes: Array<ObjectTypeLinkTypeApiNameMapping>;
24066
+ }
24067
+
24068
+ /* Excluded from this release type: listScenarioEditedLinks */
24069
+
24070
+ /**
24071
+ * The linked objects that have been edited within a scenario for a given link type, grouped by source object.
24072
+ *
24073
+ * Log Safety: UNSAFE
24074
+ */
24075
+ declare interface ListScenarioEditedLinksResponse {
24076
+ data: Array<LinksFromObject>;
24077
+ nextPageToken?: _Core.PageToken;
24078
+ }
24079
+
24080
+ /* Excluded from this release type: listScenarioEditedLinkTypes */
24081
+
24082
+ /**
24083
+ * The link types that have been modified within a scenario.
24084
+ *
24085
+ * Log Safety: UNSAFE
24086
+ */
24087
+ declare interface ListScenarioEditedLinkTypesResponse {
24088
+ data: Array<LinkTypeApiName_2>;
24089
+ }
24090
+
24091
+ /* Excluded from this release type: listScenarioEditedObjects */
24092
+
24093
+ /**
24094
+ * The objects that have been edited within a scenario for a given object type.
24095
+ The Ontology Objects in this response will only ever have the __primaryKey and __apiName
24096
+ fields present, thus functioning as object locators rather than full objects.
24097
+ *
24098
+ * Log Safety: UNSAFE
24099
+ */
24100
+ declare interface ListScenarioEditedObjectsResponse {
24101
+ data: Array<OntologyObjectV2>;
24102
+ nextPageToken?: _Core.PageToken;
24103
+ }
24104
+
24105
+ /* Excluded from this release type: listScenarioEditedObjectTypes */
24106
+
24107
+ /**
24108
+ * The object types that have been modified within a scenario.
24109
+ *
24110
+ * Log Safety: UNSAFE
24111
+ */
24112
+ declare interface ListScenarioEditedObjectTypesResponse {
24113
+ data: Array<ObjectTypeApiName>;
24114
+ }
24115
+
23788
24116
  /**
23789
24117
  * Log Safety: UNSAFE
23790
24118
  */
@@ -24016,6 +24344,7 @@ $queryParams?: {
24016
24344
  sdkVersion?: _Ontologies_2.SdkVersion | undefined;
24017
24345
  branch?: _Core.FoundryBranch | undefined;
24018
24346
  transactionId?: _Ontologies_2.OntologyTransactionId | undefined;
24347
+ scenarioRid?: _Ontologies_2.OntologyScenarioRid | undefined;
24019
24348
  },
24020
24349
  $headerParams?: {
24021
24350
  traceParent?: _Core.TraceParent | undefined;
@@ -24046,6 +24375,39 @@ declare interface LoadByNameDocumentTypesRequest {
24046
24375
  ontologyRid: string;
24047
24376
  }
24048
24377
 
24378
+ /* Excluded from this release type: loadGeotemporalSeriesEntries */
24379
+
24380
+ /**
24381
+ * The request body for loading entries from a geotemporal series reference property.
24382
+ A geotemporal series represents time-indexed geographic observations for an object, such as the location history
24383
+ of a vehicle or aircraft. Each entry in the response is a map of property names to values, following the same
24384
+ structure as OntologyObjectV2.
24385
+ The range field is required and restricts results to a specific time window. Both startTime and endTime
24386
+ are required on range. The additionalProperties field controls which additional properties appear in each
24387
+ returned entry. Results are paginated; use pageToken from a previous response to retrieve additional pages.
24388
+ *
24389
+ * Log Safety: UNSAFE
24390
+ */
24391
+ declare interface LoadGeotemporalSeriesRequest {
24392
+ range: AbsoluteTimeRange;
24393
+ additionalProperties: Array<SelectedPropertyApiName>;
24394
+ pageToken?: _Core.PageToken;
24395
+ pageSize?: _Core.PageSize;
24396
+ }
24397
+
24398
+ /**
24399
+ * The response when loading entries from a geotemporal series reference property.
24400
+ Each entry in data is a map of property names to values containing the fields requested via
24401
+ additionalProperties in the corresponding LoadGeotemporalSeriesRequest. If nextPageToken is present,
24402
+ additional entries are available and can be retrieved by passing the token in a subsequent request.
24403
+ *
24404
+ * Log Safety: UNSAFE
24405
+ */
24406
+ declare interface LoadGeotemporalSeriesResponse {
24407
+ data: Array<GeotemporalSeriesEntry>;
24408
+ nextPageToken?: _Core.PageToken;
24409
+ }
24410
+
24049
24411
  /* Excluded from this release type: loadLinks */
24050
24412
 
24051
24413
  /* Excluded from this release type: loadMetadata */
@@ -24073,6 +24435,7 @@ declare interface LoadObjectSetLinksRequestV2 {
24073
24435
  links: Array<LinkTypeApiName_2>;
24074
24436
  pageToken?: _Core.PageToken;
24075
24437
  includeComputeUsage?: _Core.IncludeComputeUsage;
24438
+ executeInMemoryOnly?: boolean;
24076
24439
  }
24077
24440
 
24078
24441
  /**
@@ -24171,6 +24534,7 @@ declare interface LoadObjectSetV2ObjectsOrInterfacesRequest {
24171
24534
  pageSize?: _Core.PageSize;
24172
24535
  excludeRid?: boolean;
24173
24536
  snapshot?: boolean;
24537
+ executeInMemoryOnly?: boolean;
24174
24538
  }
24175
24539
 
24176
24540
  /**
@@ -24257,7 +24621,9 @@ declare type LogicRule = ({
24257
24621
  type: "createObject";
24258
24622
  } & CreateObjectRule) | ({
24259
24623
  type: "createLink";
24260
- } & CreateLinkRule);
24624
+ } & CreateLinkRule) | ({
24625
+ type: "applyScenario";
24626
+ } & ApplyScenarioRule);
24261
24627
 
24262
24628
  /**
24263
24629
  * 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,7 +25413,22 @@ export declare namespace Markings {
25047
25413
  }
25048
25414
  }
25049
25415
 
25050
- /* Excluded from this release type: markings */
25416
+ /**
25417
+ * List of Markings directly applied to a resource. The number of Markings on a resource is typically small
25418
+ * so the `pageSize` and `pageToken` parameters are not required.
25419
+ *
25420
+ * @public
25421
+ *
25422
+ * Required Scopes: []
25423
+ * URL: /v2/filesystem/resources/{resourceRid}/markings
25424
+ */
25425
+ declare function markings($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
25426
+ resourceRid: _Filesystem_2.ResourceRid,
25427
+ $queryParams?: {
25428
+ pageSize?: _Core.PageSize | undefined;
25429
+ pageToken?: _Core.PageToken | undefined;
25430
+ }
25431
+ ]): Promise<_Filesystem_2.ListMarkingsOfResourceResponse>;
25051
25432
 
25052
25433
  /**
25053
25434
  * Log Safety: SAFE
@@ -26153,6 +26534,22 @@ declare interface MissingTrigger {
26153
26534
  parameters: {};
26154
26535
  }
26155
26536
 
26537
+ /**
26538
+ * This struct value type references another value type which either doesn't exist, or the user doesn't have access to.
26539
+ *
26540
+ * Log Safety: SAFE
26541
+ */
26542
+ declare interface MissingValueTypeReference {
26543
+ errorCode: "INVALID_ARGUMENT";
26544
+ errorName: "MissingValueTypeReference";
26545
+ errorDescription: "This struct value type references another value type which either doesn't exist, or the user doesn't have access to.";
26546
+ errorInstanceId: string;
26547
+ parameters: {
26548
+ referencedRid: unknown;
26549
+ rid: unknown;
26550
+ };
26551
+ }
26552
+
26156
26553
  /**
26157
26554
  * A variable defined on the template requested for project creation does not have a value set in the request.
26158
26555
  *
@@ -29000,6 +29397,17 @@ declare interface ObjectTypeInterfaceImplementation {
29000
29397
  links: Record<InterfaceLinkTypeApiName, Array<LinkTypeApiName_2>>;
29001
29398
  }
29002
29399
 
29400
+ /**
29401
+ * Groups link type API names by the object type they're scoped to. Link type API names are only unique within
29402
+ an object type, so this pairing is required to identify a link type unambiguously.
29403
+ *
29404
+ * Log Safety: UNSAFE
29405
+ */
29406
+ declare interface ObjectTypeLinkTypeApiNameMapping {
29407
+ objectTypeApiName: ObjectTypeApiName;
29408
+ linkTypes: Array<LinkTypeApiName_2>;
29409
+ }
29410
+
29003
29411
  /**
29004
29412
  * The requested object type is not found, or the client token does not have access to it.
29005
29413
  *
@@ -29329,6 +29737,8 @@ export declare namespace Ontologies {
29329
29737
  ApplyActionWithOverridesRequest,
29330
29738
  ApplyReducersAndExtractMainValueLoadLevel,
29331
29739
  ApplyReducersLoadLevel,
29740
+ ApplyScenarioLogicRule,
29741
+ ApplyScenarioRule,
29332
29742
  ApproximateDistinctAggregation,
29333
29743
  ApproximateDistinctAggregationV2,
29334
29744
  ApproximatePercentileAggregationV2,
@@ -29359,10 +29769,12 @@ export declare namespace Ontologies {
29359
29769
  BatchActionResults,
29360
29770
  BatchApplyActionRequest,
29361
29771
  BatchApplyActionRequestItem,
29772
+ BatchApplyActionRequestItemWithOverrides,
29362
29773
  BatchApplyActionRequestOptions,
29363
29774
  BatchApplyActionRequestV2,
29364
29775
  BatchApplyActionResponse,
29365
29776
  BatchApplyActionResponseV2,
29777
+ BatchApplyActionWithOverridesRequest,
29366
29778
  BatchedFunctionLogicRule,
29367
29779
  BatchReturnEditsMode,
29368
29780
  BlueprintIcon,
@@ -29391,6 +29803,8 @@ export declare namespace Ontologies {
29391
29803
  CreateLinkRule,
29392
29804
  CreateObjectLogicRule,
29393
29805
  CreateObjectRule,
29806
+ CreateOntologyScenarioRequest,
29807
+ CreateOntologyScenarioResponse,
29394
29808
  CreateOrModifyObjectLogicRule,
29395
29809
  CreateOrModifyObjectLogicRuleV2,
29396
29810
  CreateTemporaryObjectSetRequestV2,
@@ -29561,6 +29975,13 @@ export declare namespace Ontologies {
29561
29975
  ListOutgoingLinkTypesResponseV2,
29562
29976
  ListQueryTypesResponse,
29563
29977
  ListQueryTypesResponseV2,
29978
+ ListScenarioEditedEntityTypesResponse,
29979
+ ListScenarioEditedLinksResponse,
29980
+ ListScenarioEditedLinkTypesResponse,
29981
+ ListScenarioEditedObjectsResponse,
29982
+ ListScenarioEditedObjectTypesResponse,
29983
+ LoadGeotemporalSeriesRequest,
29984
+ LoadGeotemporalSeriesResponse,
29564
29985
  LoadObjectSetLinksRequestV2,
29565
29986
  LoadObjectSetLinksResponseV2,
29566
29987
  LoadObjectSetRequestV2,
@@ -29661,6 +30082,7 @@ export declare namespace Ontologies {
29661
30082
  ObjectTypeFullMetadata,
29662
30083
  ObjectTypeId_2 as ObjectTypeId,
29663
30084
  ObjectTypeInterfaceImplementation,
30085
+ ObjectTypeLinkTypeApiNameMapping,
29664
30086
  ObjectTypeRid_2 as ObjectTypeRid,
29665
30087
  ObjectTypeV2,
29666
30088
  ObjectTypeVisibility,
@@ -29669,6 +30091,8 @@ export declare namespace Ontologies {
29669
30091
  Ontology,
29670
30092
  OntologyApiName,
29671
30093
  OntologyArrayType,
30094
+ OntologyBase,
30095
+ OntologyBaseBranch,
29672
30096
  OntologyDataType,
29673
30097
  OntologyFullMetadata,
29674
30098
  OntologyIdentifier_2 as OntologyIdentifier,
@@ -29686,6 +30110,8 @@ export declare namespace Ontologies {
29686
30110
  OntologyObjectTypeReferenceType,
29687
30111
  OntologyObjectV2,
29688
30112
  OntologyRid,
30113
+ OntologyScenario,
30114
+ OntologyScenarioRid,
29689
30115
  OntologySetType,
29690
30116
  OntologyStructField,
29691
30117
  OntologyStructType,
@@ -29713,6 +30139,7 @@ export declare namespace Ontologies {
29713
30139
  PreciseTimeUnit,
29714
30140
  PrefixOnLastTokenRule,
29715
30141
  PrefixQuery,
30142
+ PrimaryKeyPropertySelector,
29716
30143
  PrimaryKeyValue,
29717
30144
  PrimaryKeyValueV2,
29718
30145
  Property,
@@ -29826,8 +30253,6 @@ export declare namespace Ontologies {
29826
30253
  SpatialFilterMode,
29827
30254
  StartsWithQuery_2 as StartsWithQuery,
29828
30255
  StaticArgument,
29829
- StreamGeotemporalSeriesValuesRequest,
29830
- StreamGeotemporalSeriesValuesResponse,
29831
30256
  StreamingOutputFormat,
29832
30257
  StreamMessage,
29833
30258
  StreamTimeSeriesPointsRequest,
@@ -29883,6 +30308,7 @@ export declare namespace Ontologies {
29883
30308
  TimeSeriesWindowType,
29884
30309
  TimestampValue,
29885
30310
  TimeUnit_2 as TimeUnit,
30311
+ TitlePropertySelector,
29886
30312
  TransactionEdit,
29887
30313
  TwoDimensionalAggregation,
29888
30314
  TypeClass,
@@ -30007,6 +30433,7 @@ export declare namespace Ontologies {
30007
30433
  MarketplaceSdkPropertyMappingNotFound,
30008
30434
  MarketplaceSdkQueryMappingNotFound,
30009
30435
  MissingParameter,
30436
+ MissingValueTypeReference,
30010
30437
  MultipleGroupByOnFieldNotSupported,
30011
30438
  MultiplePropertyValuesNotSupported,
30012
30439
  NotCipherFormatted,
@@ -30077,6 +30504,7 @@ export declare namespace Ontologies {
30077
30504
  OntologyInterfaces,
30078
30505
  OntologyObjectSets,
30079
30506
  OntologyObjectsV2,
30507
+ OntologyScenarios,
30080
30508
  OntologyTransactions,
30081
30509
  OntologiesV2,
30082
30510
  OntologyValueTypes,
@@ -30160,6 +30588,8 @@ declare namespace _Ontologies {
30160
30588
  ApplyActionWithOverridesRequest,
30161
30589
  ApplyReducersAndExtractMainValueLoadLevel,
30162
30590
  ApplyReducersLoadLevel,
30591
+ ApplyScenarioLogicRule,
30592
+ ApplyScenarioRule,
30163
30593
  ApproximateDistinctAggregation,
30164
30594
  ApproximateDistinctAggregationV2,
30165
30595
  ApproximatePercentileAggregationV2,
@@ -30190,10 +30620,12 @@ declare namespace _Ontologies {
30190
30620
  BatchActionResults,
30191
30621
  BatchApplyActionRequest,
30192
30622
  BatchApplyActionRequestItem,
30623
+ BatchApplyActionRequestItemWithOverrides,
30193
30624
  BatchApplyActionRequestOptions,
30194
30625
  BatchApplyActionRequestV2,
30195
30626
  BatchApplyActionResponse,
30196
30627
  BatchApplyActionResponseV2,
30628
+ BatchApplyActionWithOverridesRequest,
30197
30629
  BatchedFunctionLogicRule,
30198
30630
  BatchReturnEditsMode,
30199
30631
  BlueprintIcon,
@@ -30222,6 +30654,8 @@ declare namespace _Ontologies {
30222
30654
  CreateLinkRule,
30223
30655
  CreateObjectLogicRule,
30224
30656
  CreateObjectRule,
30657
+ CreateOntologyScenarioRequest,
30658
+ CreateOntologyScenarioResponse,
30225
30659
  CreateOrModifyObjectLogicRule,
30226
30660
  CreateOrModifyObjectLogicRuleV2,
30227
30661
  CreateTemporaryObjectSetRequestV2,
@@ -30392,6 +30826,13 @@ declare namespace _Ontologies {
30392
30826
  ListOutgoingLinkTypesResponseV2,
30393
30827
  ListQueryTypesResponse,
30394
30828
  ListQueryTypesResponseV2,
30829
+ ListScenarioEditedEntityTypesResponse,
30830
+ ListScenarioEditedLinksResponse,
30831
+ ListScenarioEditedLinkTypesResponse,
30832
+ ListScenarioEditedObjectsResponse,
30833
+ ListScenarioEditedObjectTypesResponse,
30834
+ LoadGeotemporalSeriesRequest,
30835
+ LoadGeotemporalSeriesResponse,
30395
30836
  LoadObjectSetLinksRequestV2,
30396
30837
  LoadObjectSetLinksResponseV2,
30397
30838
  LoadObjectSetRequestV2,
@@ -30492,6 +30933,7 @@ declare namespace _Ontologies {
30492
30933
  ObjectTypeFullMetadata,
30493
30934
  ObjectTypeId_2 as ObjectTypeId,
30494
30935
  ObjectTypeInterfaceImplementation,
30936
+ ObjectTypeLinkTypeApiNameMapping,
30495
30937
  ObjectTypeRid_2 as ObjectTypeRid,
30496
30938
  ObjectTypeV2,
30497
30939
  ObjectTypeVisibility,
@@ -30500,6 +30942,8 @@ declare namespace _Ontologies {
30500
30942
  Ontology,
30501
30943
  OntologyApiName,
30502
30944
  OntologyArrayType,
30945
+ OntologyBase,
30946
+ OntologyBaseBranch,
30503
30947
  OntologyDataType,
30504
30948
  OntologyFullMetadata,
30505
30949
  OntologyIdentifier_2 as OntologyIdentifier,
@@ -30517,6 +30961,8 @@ declare namespace _Ontologies {
30517
30961
  OntologyObjectTypeReferenceType,
30518
30962
  OntologyObjectV2,
30519
30963
  OntologyRid,
30964
+ OntologyScenario,
30965
+ OntologyScenarioRid,
30520
30966
  OntologySetType,
30521
30967
  OntologyStructField,
30522
30968
  OntologyStructType,
@@ -30544,6 +30990,7 @@ declare namespace _Ontologies {
30544
30990
  PreciseTimeUnit,
30545
30991
  PrefixOnLastTokenRule,
30546
30992
  PrefixQuery,
30993
+ PrimaryKeyPropertySelector,
30547
30994
  PrimaryKeyValue,
30548
30995
  PrimaryKeyValueV2,
30549
30996
  Property,
@@ -30657,8 +31104,6 @@ declare namespace _Ontologies {
30657
31104
  SpatialFilterMode,
30658
31105
  StartsWithQuery_2 as StartsWithQuery,
30659
31106
  StaticArgument,
30660
- StreamGeotemporalSeriesValuesRequest,
30661
- StreamGeotemporalSeriesValuesResponse,
30662
31107
  StreamingOutputFormat,
30663
31108
  StreamMessage,
30664
31109
  StreamTimeSeriesPointsRequest,
@@ -30714,6 +31159,7 @@ declare namespace _Ontologies {
30714
31159
  TimeSeriesWindowType,
30715
31160
  TimestampValue,
30716
31161
  TimeUnit_2 as TimeUnit,
31162
+ TitlePropertySelector,
30717
31163
  TransactionEdit,
30718
31164
  TwoDimensionalAggregation,
30719
31165
  TypeClass,
@@ -30838,6 +31284,7 @@ declare namespace _Ontologies {
30838
31284
  MarketplaceSdkPropertyMappingNotFound,
30839
31285
  MarketplaceSdkQueryMappingNotFound,
30840
31286
  MissingParameter,
31287
+ MissingValueTypeReference,
30841
31288
  MultipleGroupByOnFieldNotSupported,
30842
31289
  MultiplePropertyValuesNotSupported,
30843
31290
  NotCipherFormatted,
@@ -30908,6 +31355,7 @@ declare namespace _Ontologies {
30908
31355
  OntologyInterfaces,
30909
31356
  OntologyObjectSets,
30910
31357
  OntologyObjectsV2,
31358
+ OntologyScenarios,
30911
31359
  OntologyTransactions,
30912
31360
  OntologiesV2,
30913
31361
  OntologyValueTypes,
@@ -30992,6 +31440,8 @@ declare namespace _Ontologies_2 {
30992
31440
  ApplyActionWithOverridesRequest,
30993
31441
  ApplyReducersAndExtractMainValueLoadLevel,
30994
31442
  ApplyReducersLoadLevel,
31443
+ ApplyScenarioLogicRule,
31444
+ ApplyScenarioRule,
30995
31445
  ApproximateDistinctAggregation,
30996
31446
  ApproximateDistinctAggregationV2,
30997
31447
  ApproximatePercentileAggregationV2,
@@ -31022,10 +31472,12 @@ declare namespace _Ontologies_2 {
31022
31472
  BatchActionResults,
31023
31473
  BatchApplyActionRequest,
31024
31474
  BatchApplyActionRequestItem,
31475
+ BatchApplyActionRequestItemWithOverrides,
31025
31476
  BatchApplyActionRequestOptions,
31026
31477
  BatchApplyActionRequestV2,
31027
31478
  BatchApplyActionResponse,
31028
31479
  BatchApplyActionResponseV2,
31480
+ BatchApplyActionWithOverridesRequest,
31029
31481
  BatchedFunctionLogicRule,
31030
31482
  BatchReturnEditsMode,
31031
31483
  BlueprintIcon,
@@ -31054,6 +31506,8 @@ declare namespace _Ontologies_2 {
31054
31506
  CreateLinkRule,
31055
31507
  CreateObjectLogicRule,
31056
31508
  CreateObjectRule,
31509
+ CreateOntologyScenarioRequest,
31510
+ CreateOntologyScenarioResponse,
31057
31511
  CreateOrModifyObjectLogicRule,
31058
31512
  CreateOrModifyObjectLogicRuleV2,
31059
31513
  CreateTemporaryObjectSetRequestV2,
@@ -31224,6 +31678,13 @@ declare namespace _Ontologies_2 {
31224
31678
  ListOutgoingLinkTypesResponseV2,
31225
31679
  ListQueryTypesResponse,
31226
31680
  ListQueryTypesResponseV2,
31681
+ ListScenarioEditedEntityTypesResponse,
31682
+ ListScenarioEditedLinksResponse,
31683
+ ListScenarioEditedLinkTypesResponse,
31684
+ ListScenarioEditedObjectsResponse,
31685
+ ListScenarioEditedObjectTypesResponse,
31686
+ LoadGeotemporalSeriesRequest,
31687
+ LoadGeotemporalSeriesResponse,
31227
31688
  LoadObjectSetLinksRequestV2,
31228
31689
  LoadObjectSetLinksResponseV2,
31229
31690
  LoadObjectSetRequestV2,
@@ -31324,6 +31785,7 @@ declare namespace _Ontologies_2 {
31324
31785
  ObjectTypeFullMetadata,
31325
31786
  ObjectTypeId_2 as ObjectTypeId,
31326
31787
  ObjectTypeInterfaceImplementation,
31788
+ ObjectTypeLinkTypeApiNameMapping,
31327
31789
  ObjectTypeRid_2 as ObjectTypeRid,
31328
31790
  ObjectTypeV2,
31329
31791
  ObjectTypeVisibility,
@@ -31332,6 +31794,8 @@ declare namespace _Ontologies_2 {
31332
31794
  Ontology,
31333
31795
  OntologyApiName,
31334
31796
  OntologyArrayType,
31797
+ OntologyBase,
31798
+ OntologyBaseBranch,
31335
31799
  OntologyDataType,
31336
31800
  OntologyFullMetadata,
31337
31801
  OntologyIdentifier_2 as OntologyIdentifier,
@@ -31349,6 +31813,8 @@ declare namespace _Ontologies_2 {
31349
31813
  OntologyObjectTypeReferenceType,
31350
31814
  OntologyObjectV2,
31351
31815
  OntologyRid,
31816
+ OntologyScenario,
31817
+ OntologyScenarioRid,
31352
31818
  OntologySetType,
31353
31819
  OntologyStructField,
31354
31820
  OntologyStructType,
@@ -31376,6 +31842,7 @@ declare namespace _Ontologies_2 {
31376
31842
  PreciseTimeUnit,
31377
31843
  PrefixOnLastTokenRule,
31378
31844
  PrefixQuery,
31845
+ PrimaryKeyPropertySelector,
31379
31846
  PrimaryKeyValue,
31380
31847
  PrimaryKeyValueV2,
31381
31848
  Property,
@@ -31489,8 +31956,6 @@ declare namespace _Ontologies_2 {
31489
31956
  SpatialFilterMode,
31490
31957
  StartsWithQuery_2 as StartsWithQuery,
31491
31958
  StaticArgument,
31492
- StreamGeotemporalSeriesValuesRequest,
31493
- StreamGeotemporalSeriesValuesResponse,
31494
31959
  StreamingOutputFormat,
31495
31960
  StreamMessage,
31496
31961
  StreamTimeSeriesPointsRequest,
@@ -31546,6 +32011,7 @@ declare namespace _Ontologies_2 {
31546
32011
  TimeSeriesWindowType,
31547
32012
  TimestampValue,
31548
32013
  TimeUnit_2 as TimeUnit,
32014
+ TitlePropertySelector,
31549
32015
  TransactionEdit,
31550
32016
  TwoDimensionalAggregation,
31551
32017
  TypeClass,
@@ -31629,6 +32095,24 @@ declare interface OntologyArrayType {
31629
32095
  itemType: OntologyDataType;
31630
32096
  }
31631
32097
 
32098
+ /**
32099
+ * The base used to initialize a scenario.
32100
+ *
32101
+ * Log Safety: UNSAFE
32102
+ */
32103
+ declare type OntologyBase = {
32104
+ type: "branch";
32105
+ } & OntologyBaseBranch;
32106
+
32107
+ /**
32108
+ * A branch reference used to initialize a scenario.
32109
+ *
32110
+ * Log Safety: SAFE
32111
+ */
32112
+ declare interface OntologyBaseBranch {
32113
+ branch: _Core.FoundryBranch;
32114
+ }
32115
+
31632
32116
  /**
31633
32117
  * An ontologyBinding is required when creating or replacing a model function.
31634
32118
  *
@@ -31956,6 +32440,24 @@ declare type OntologyRid = LooselyBrandedString_5<"OntologyRid">;
31956
32440
  */
31957
32441
  declare type OntologyRid_2 = LooselyBrandedString_15<"OntologyRid">;
31958
32442
 
32443
+ /**
32444
+ * Log Safety: UNSAFE
32445
+ */
32446
+ declare type OntologyScenario = LooselyBrandedString_5<"OntologyScenario">;
32447
+
32448
+ /**
32449
+ * The unique resource identifier of an ontology scenario.
32450
+ *
32451
+ * Log Safety: SAFE
32452
+ */
32453
+ declare type OntologyScenarioRid = LooselyBrandedString_5<"OntologyScenarioRid">;
32454
+
32455
+ export declare namespace OntologyScenarios {
32456
+ export {
32457
+
32458
+ }
32459
+ }
32460
+
31959
32461
  /**
31960
32462
  * A specification of an Ontology SDK used by a widget set.
31961
32463
  *
@@ -32922,7 +33424,22 @@ export declare namespace Organizations {
32922
33424
  }
32923
33425
  }
32924
33426
 
32925
- /* Excluded from this release type: organizations */
33427
+ /**
33428
+ * List of Organizations directly applied to a Project. The number of Organizations on a Project is
33429
+ * typically small so the `pageSize` and `pageToken` parameters are not required.
33430
+ *
33431
+ * @public
33432
+ *
33433
+ * Required Scopes: []
33434
+ * URL: /v2/filesystem/projects/{projectRid}/organizations
33435
+ */
33436
+ declare function organizations($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
33437
+ projectRid: _Filesystem_2.ProjectRid,
33438
+ $queryParams?: {
33439
+ pageSize?: _Core.PageSize | undefined;
33440
+ pageToken?: _Core.PageToken | undefined;
33441
+ }
33442
+ ]): Promise<_Filesystem_2.ListOrganizationsOfProjectResponse>;
32926
33443
 
32927
33444
  /**
32928
33445
  * At least one organization RID could not be found.
@@ -34014,7 +34531,16 @@ declare interface PercentageValueBelowMinimum {
34014
34531
  */
34015
34532
  declare type PerformanceMode = "MORE_ECONOMICAL" | "MORE_PERFORMANT";
34016
34533
 
34017
- /* Excluded from this release type: permanentlyDelete */
34534
+ /**
34535
+ * Permanently delete the given resource from the trash. If the Resource is not directly trashed, a
34536
+ * `ResourceNotTrashed` error will be thrown.
34537
+ *
34538
+ * @public
34539
+ *
34540
+ * Required Scopes: [api:filesystem-write]
34541
+ * URL: /v2/filesystem/resources/{resourceRid}/permanentlyDelete
34542
+ */
34543
+ declare function permanentlyDelete($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [resourceRid: _Filesystem_2.ResourceRid]): Promise<void>;
34018
34544
 
34019
34545
  /**
34020
34546
  * Could not permanentlyDelete the Resource.
@@ -34316,6 +34842,14 @@ declare interface PrimaryKeyLatestWinsResolutionStrategy {
34316
34842
  columns: Array<string>;
34317
34843
  }
34318
34844
 
34845
+ /**
34846
+ * Specifies the primary key property of an object type which is present on all object types.
34847
+ *
34848
+ * Log Safety: SAFE
34849
+ */
34850
+ declare interface PrimaryKeyPropertySelector {
34851
+ }
34852
+
34319
34853
  /**
34320
34854
  * Duplicate primary key values may exist within the dataset – resolution required.
34321
34855
  *
@@ -34558,7 +35092,9 @@ declare interface ProjectResourceReference {
34558
35092
 
34559
35093
  export declare namespace ProjectResourceReferences {
34560
35094
  export {
34561
-
35095
+ list_25 as list,
35096
+ add_7 as add,
35097
+ remove_7 as remove
34562
35098
  }
34563
35099
  }
34564
35100
 
@@ -34599,7 +35135,12 @@ declare type ProjectRid_2 = LooselyBrandedString_10<"ProjectRid">;
34599
35135
 
34600
35136
  export declare namespace Projects {
34601
35137
  export {
34602
- get_34 as get
35138
+ get_34 as get,
35139
+ create_7 as create,
35140
+ createFromTemplate,
35141
+ addOrganizations,
35142
+ removeOrganizations,
35143
+ organizations
34603
35144
  }
34604
35145
  }
34605
35146
 
@@ -34983,7 +35524,11 @@ declare type PropertyIdentifier_2 = ({
34983
35524
  type: "structField";
34984
35525
  } & StructFieldSelector_2) | ({
34985
35526
  type: "propertyWithLoadLevel";
34986
- } & PropertyWithLoadLevelSelector);
35527
+ } & PropertyWithLoadLevelSelector) | ({
35528
+ type: "titleProperty";
35529
+ } & TitlePropertySelector) | ({
35530
+ type: "primaryKeyProperty";
35531
+ } & PrimaryKeyPropertySelector);
34987
35532
 
34988
35533
  /**
34989
35534
  * Log Safety: UNSAFE
@@ -37104,7 +37649,18 @@ organizationRid: _Core.OrganizationRid,
37104
37649
  $body: _Admin.RemoveOrganizationRoleAssignmentsRequest
37105
37650
  ]): Promise<void>;
37106
37651
 
37107
- /* Excluded from this release type: remove_7 */
37652
+ /**
37653
+ * Remove references from the given project
37654
+ *
37655
+ * @public
37656
+ *
37657
+ * Required Scopes: [api:filesystem-write]
37658
+ * URL: /v2/filesystem/projects/{projectRid}/references/remove
37659
+ */
37660
+ declare function remove_7($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
37661
+ projectRid: _Filesystem_2.ProjectRid,
37662
+ $body: _Filesystem_2.RemoveProjectResourceReferencesRequest
37663
+ ]): Promise<void>;
37108
37664
 
37109
37665
  /**
37110
37666
  * @public
@@ -37259,7 +37815,18 @@ declare interface RemoveMarkingRoleAssignmentsRequest {
37259
37815
  roleAssignments: Array<MarkingRoleUpdate>;
37260
37816
  }
37261
37817
 
37262
- /* Excluded from this release type: removeMarkings */
37818
+ /**
37819
+ * Removes Markings from a resource.
37820
+ *
37821
+ * @public
37822
+ *
37823
+ * Required Scopes: [api:filesystem-write]
37824
+ * URL: /v2/filesystem/resources/{resourceRid}/removeMarkings
37825
+ */
37826
+ declare function removeMarkings($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
37827
+ resourceRid: _Filesystem_2.ResourceRid,
37828
+ $body: _Filesystem_2.RemoveMarkingsRequest
37829
+ ]): Promise<void>;
37263
37830
 
37264
37831
  /**
37265
37832
  * Could not removeMarkings the Resource.
@@ -37327,7 +37894,18 @@ declare interface RemoveOrganizationRoleAssignmentsRequest {
37327
37894
  roleAssignments: Array<_Core.RoleAssignmentUpdate>;
37328
37895
  }
37329
37896
 
37330
- /* Excluded from this release type: removeOrganizations */
37897
+ /**
37898
+ * Removes Organizations from a Project.
37899
+ *
37900
+ * @public
37901
+ *
37902
+ * Required Scopes: [api:filesystem-write]
37903
+ * URL: /v2/filesystem/projects/{projectRid}/removeOrganizations
37904
+ */
37905
+ declare function removeOrganizations($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [
37906
+ projectRid: _Filesystem_2.ProjectRid,
37907
+ $body: _Filesystem_2.RemoveOrganizationsRequest
37908
+ ]): Promise<void>;
37331
37909
 
37332
37910
  /**
37333
37911
  * Could not removeOrganizations the Project.
@@ -38814,7 +39392,17 @@ export declare namespace ResourceRoles {
38814
39392
 
38815
39393
  export declare namespace Resources {
38816
39394
  export {
38817
-
39395
+ deleteResource,
39396
+ get_35 as get,
39397
+ getBatch_7 as getBatch,
39398
+ getByPath,
39399
+ getByPathBatch,
39400
+ restore,
39401
+ permanentlyDelete,
39402
+ addMarkings,
39403
+ removeMarkings,
39404
+ getAccessRequirements,
39405
+ markings
38818
39406
  }
38819
39407
  }
38820
39408
 
@@ -38884,7 +39472,16 @@ declare interface RestConnectionConfiguration {
38884
39472
  declare interface RestConnectionOAuth2 {
38885
39473
  }
38886
39474
 
38887
- /* Excluded from this release type: restore */
39475
+ /**
39476
+ * Restore the given resource and any directly trashed ancestors from the trash. If the resource is not
39477
+ * trashed, this operation will be ignored.
39478
+ *
39479
+ * @public
39480
+ *
39481
+ * Required Scopes: [api:filesystem-write]
39482
+ * URL: /v2/filesystem/resources/{resourceRid}/restore
39483
+ */
39484
+ declare function restore($ctx: SharedClient | SharedClientContext | SharedClient_2 | SharedClientContext_2, ...args: [resourceRid: _Filesystem_2.ResourceRid]): Promise<void>;
38888
39485
 
38889
39486
  /**
38890
39487
  * Could not restore the Resource.
@@ -39361,6 +39958,12 @@ declare interface ScanningInProgress {
39361
39958
  };
39362
39959
  }
39363
39960
 
39961
+ /**
39962
+ * Log Safety: SAFE
39963
+ */
39964
+ declare interface ScenarioReferenceType {
39965
+ }
39966
+
39364
39967
  /**
39365
39968
  * The sensitivity threshold for scene detection.
39366
39969
  *
@@ -40607,6 +41210,7 @@ declare interface SearchObjectsRequestV2 {
40607
41210
  selectV2: Array<PropertyIdentifier_2>;
40608
41211
  excludeRid?: boolean;
40609
41212
  snapshot?: boolean;
41213
+ executeInMemoryOnly?: boolean;
40610
41214
  }
40611
41215
 
40612
41216
  /**
@@ -41586,7 +42190,7 @@ declare type SpaceRid = LooselyBrandedString_10<"SpaceRid">;
41586
42190
 
41587
42191
  export declare namespace Spaces {
41588
42192
  export {
41589
-
42193
+ list_27 as list
41590
42194
  }
41591
42195
  }
41592
42196
 
@@ -41836,22 +42440,6 @@ declare interface Stream {
41836
42440
  compressed: Compressed;
41837
42441
  }
41838
42442
 
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
42443
  /* Excluded from this release type: streamingContinue */
41856
42444
 
41857
42445
  /**
@@ -43629,6 +44217,14 @@ declare type TimeUnit = "MILLISECONDS" | "SECONDS" | "MINUTES" | "HOURS" | "DAYS
43629
44217
  */
43630
44218
  declare type TimeUnit_2 = "MILLISECONDS" | "SECONDS" | "MINUTES" | "HOURS" | "DAYS" | "WEEKS" | "MONTHS" | "YEARS" | "QUARTERS";
43631
44219
 
44220
+ /**
44221
+ * Specifies the title property of an object type which is present on all object types.
44222
+ *
44223
+ * Log Safety: SAFE
44224
+ */
44225
+ declare interface TitlePropertySelector {
44226
+ }
44227
+
43632
44228
  /**
43633
44229
  * A tool call with its input and output.
43634
44230
  *