You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Improve documentation and port copyDataObjectsByValue with SWIG
Renamed parameters for clarity in copyToDataspace and copyDataObjectsByValue methods, updated method documentation for accuracy and detail, and added copyDataObjectsByValue in SWIG interface.
* Copy by reference some dataspaces into another one.
1946
+
* A customer sends to a store to lock or unlock one or more dataspaces.
1947
1947
* This function should be used with caution if Dataspace OSDU Handlers have been overidden.
1948
-
* It actually sends a message and block the current thread until a response has been received from the store.
1948
+
* It actually sends a message and blocks the current thread until a response has been received from the store.
1949
+
* An OSDU locked dataspace will have its custom data "locked" to true. It will also have its custom datm "read-only" to true for all users.
1950
+
* As a reminder, a custom data "read-only" can be true with a custom data "locked" to false in case the dataspace is not locked but in read only for the particular current ETP user.
1949
1951
*
1950
-
* @param sourceDataspaceUris ETP general map : One each for each source dataspace to be copied. They are identified by their URI.
1951
-
* @param targetDataspaceUri The URI of the ETP dataspace where the sourceDataspaces have to be copied by reference.
1952
-
* @param return The map keys corresponding to the dataspaces which have been successfully copied into the target dataspace.
* A customer sends to a store to copy by value a dataobject in the same dataspace with potentially some of its sources based on their datatypes.
2060
+
* This function should be used with caution if Store OSDU Handlers have been overidden.
2061
+
* It actually sends a message and blocks the current thread until a response has been received from the store.
2062
+
*
2063
+
* @param sourceDataobjectUri The URI of the dataobject to be copied.
2064
+
* @param sourcesDepth The "depth" or how many "levels" (or "jumps") in the data model (graph) from the starting point (specified by the URI) that you want to copy
2065
+
* Depth MUST always be greater than zero.
2066
+
* @param dataObjectTypes Optionally, specify the types of data objects that you want to copy.
2067
+
* The default is an empty array, which means ALL data types negotiated for the current ETP session.
2068
+
* They ARE case sensitive. EXAMPLES: "witsml20.Well", "witsml20.Wellbore", "prodml21.WellTest", "resqml20.obj_TectonicBoundaryFeature", "eml21.DataAssuranceRecord"
2069
+
* To indicate that all data objects within a data schema version are supported, you can use a star (*) as a wildcard, EXAMPLE: "witsml20.*", "prodml21.*", "resqml20.*"
2070
+
* @param return The received dataobjects in a map where the key makes the link between the asked uris and the received dataobjects.
0 commit comments