diff --git a/ansys-grantami-serverapi-openapi/pyproject.toml b/ansys-grantami-serverapi-openapi/pyproject.toml index e2409fa6..74520523 100644 --- a/ansys-grantami-serverapi-openapi/pyproject.toml +++ b/ansys-grantami-serverapi-openapi/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "ansys-grantami-serverapi-openapi" description = "Autogenerated client library for the Granta MI Server API." -version = "5.1.0.dev700" +version = "5.1.0.dev704" license = "MIT" authors = ["ANSYS, Inc. "] maintainers = ["ANSYS, Inc. "] diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/__init__.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/__init__.py index f6fa32a9..88447973 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/__init__.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/__init__.py @@ -20,4 +20,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -__version__ = "5.1.0.dev700" +__version__ = "5.1.0.dev704" diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/__init__.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/__init__.py index 39498a16..42eb36b6 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/__init__.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/__init__.py @@ -148,6 +148,7 @@ from .models.gsa_append_point_values import GsaAppendPointValues from .models.gsa_applicable_datum import GsaApplicableDatum from .models.gsa_applications_info import GsaApplicationsInfo +from .models.gsa_apply_options import GsaApplyOptions from .models.gsa_attribute import GsaAttribute from .models.gsa_attribute_aggregation import GsaAttributeAggregation from .models.gsa_attribute_aggregation_criterion import GsaAttributeAggregationCriterion @@ -798,6 +799,7 @@ from .models.gsa_long_text_datum_exists_criterion import GsaLongTextDatumExistsCriterion from .models.gsa_long_text_prefix_datum_criterion import GsaLongTextPrefixDatumCriterion from .models.gsa_mapping_of_object_identifier import GsaMappingOfObjectIdentifier +from .models.gsa_match_mode import GsaMatchMode from .models.gsa_maths_content import GsaMathsContent from .models.gsa_maths_functional_attribute import GsaMathsFunctionalAttribute from .models.gsa_maths_functional_attribute_error_detail import ( @@ -1057,6 +1059,7 @@ from .models.gsa_record_with_data import GsaRecordWithData from .models.gsa_referenced_by_type import GsaReferencedByType from .models.gsa_referential_integrity_model import GsaReferentialIntegrityModel +from .models.gsa_register_update_request import GsaRegisterUpdateRequest from .models.gsa_release_record_version_control_exception import ( GsaReleaseRecordVersionControlException, ) @@ -1322,6 +1325,7 @@ from .models.gsa_update_record_list_properties import GsaUpdateRecordListProperties from .models.gsa_update_replacement_string import GsaUpdateReplacementString from .models.gsa_update_root_folder_error_detail import GsaUpdateRootFolderErrorDetail +from .models.gsa_update_run_status import GsaUpdateRunStatus from .models.gsa_update_short_text_attribute import GsaUpdateShortTextAttribute from .models.gsa_update_smart_record_link_group import GsaUpdateSmartRecordLinkGroup from .models.gsa_update_standard_name import GsaUpdateStandardName @@ -1473,6 +1477,7 @@ "GsaAppendPointValues", "GsaApplicableDatum", "GsaApplicationsInfo", + "GsaApplyOptions", "GsaAttribute", "GsaAttributeAggregation", "GsaAttributeAggregationCriterion", @@ -1989,6 +1994,7 @@ "GsaLongTextDatumExistsCriterion", "GsaLongTextPrefixDatumCriterion", "GsaMappingOfObjectIdentifier", + "GsaMatchMode", "GsaMathsContent", "GsaMathsFunctionalAttribute", "GsaMathsFunctionalAttributeErrorDetail", @@ -2196,6 +2202,7 @@ "GsaRecordWithData", "GsaReferencedByType", "GsaReferentialIntegrityModel", + "GsaRegisterUpdateRequest", "GsaReleaseRecordVersionControlException", "GsaReleaseTableVersionControlException", "GsaReleasedDateProperty", @@ -2423,6 +2430,7 @@ "GsaUpdateRecordListProperties", "GsaUpdateReplacementString", "GsaUpdateRootFolderErrorDetail", + "GsaUpdateRunStatus", "GsaUpdateShortTextAttribute", "GsaUpdateSmartRecordLinkGroup", "GsaUpdateStandardName", diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/api/data_updater_api.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/api/data_updater_api.py index 998d04ac..2f3e7104 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/api/data_updater_api.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/api/data_updater_api.py @@ -48,6 +48,188 @@ class DataUpdaterApi(ApiBase): Ref: https://github.com/swagger-api/swagger-codegen """ + def apply_update(self, *, database_key: "str", update_token_guid: "str") -> "str": + """Start an apply job for a given update + + This method makes a synchronous HTTP request. + + Parameters + ---------- + database_key: str + See [Schema - Databases/GetAllDatabases](#/Schema%20-%20Databases/GetAllDatabases) + update_token_guid: str + + Returns + ------- + str + """ + data = self._apply_update_with_http_info( + database_key, update_token_guid, _return_http_data_only=True + ) + return data # type: ignore[no-any-return] + + def _apply_update_with_http_info( + self, database_key: "str", update_token_guid: "str", **kwargs: Any + ) -> Any: + all_params = [ + "database_key", + "update_token_guid", + "_return_http_data_only", + "_preload_content", + "_request_timeout", + ] + + params = locals() + for key, val in params["kwargs"].items(): + if key not in all_params: + raise TypeError( + f"Got an unexpected keyword argument '{key}' to method apply_update" + ) + params[key] = val + del params["kwargs"] + # verify the required parameter "database_key" is set + if "database_key" not in params or params["database_key"] is None: + raise ValueError( + "Missing the required parameter 'database_key' when calling 'apply_update'" + ) + # verify the required parameter "update_token_guid" is set + if "update_token_guid" not in params or params["update_token_guid"] is None: + raise ValueError( + "Missing the required parameter 'update_token_guid' when calling 'apply_update'" + ) + + collection_formats: dict[str, Any] = {} + + path_params: dict[str, Any] = {} + if "database_key" in params and database_key is not None: + path_params["database-key"] = params["database_key"] + if "update_token_guid" in params and update_token_guid is not None: + path_params["update-token-guid"] = params["update_token_guid"] + + query_params: list[Any] = [] + + header_params: dict[str, Any] = {} + + form_params: list[Any] = [] + local_var_files: dict[str, Any] = {} + + body_params = None + # HTTP header 'Accept' + header_params["Accept"] = self.api_client.select_header_accept( + ["text/plain", "application/json", "text/json"] + ) + + response_type_map: dict[int, Optional[str]] = { + 200: "str", + } + + return self.api_client.call_api( + "/v1alpha/dataupdater/updates/{database-key}/{update-token-guid}:apply", + "POST", + path_params, + query_params, + header_params, + body=body_params, + post_params=form_params, + files=local_var_files, + _return_http_data_only=params.get("_return_http_data_only"), + _preload_content=params.get("_preload_content", True), + _request_timeout=params.get("_request_timeout"), + collection_formats=collection_formats, + response_type_map=response_type_map, + ) + + def dry_run_update(self, *, database_key: "str", update_token_guid: "str") -> "str": + """Start a dry run job for a given update + + This method makes a synchronous HTTP request. + + Parameters + ---------- + database_key: str + See [Schema - Databases/GetAllDatabases](#/Schema%20-%20Databases/GetAllDatabases) + update_token_guid: str + + Returns + ------- + str + """ + data = self._dry_run_update_with_http_info( + database_key, update_token_guid, _return_http_data_only=True + ) + return data # type: ignore[no-any-return] + + def _dry_run_update_with_http_info( + self, database_key: "str", update_token_guid: "str", **kwargs: Any + ) -> Any: + all_params = [ + "database_key", + "update_token_guid", + "_return_http_data_only", + "_preload_content", + "_request_timeout", + ] + + params = locals() + for key, val in params["kwargs"].items(): + if key not in all_params: + raise TypeError( + f"Got an unexpected keyword argument '{key}' to method dry_run_update" + ) + params[key] = val + del params["kwargs"] + # verify the required parameter "database_key" is set + if "database_key" not in params or params["database_key"] is None: + raise ValueError( + "Missing the required parameter 'database_key' when calling 'dry_run_update'" + ) + # verify the required parameter "update_token_guid" is set + if "update_token_guid" not in params or params["update_token_guid"] is None: + raise ValueError( + "Missing the required parameter 'update_token_guid' when calling 'dry_run_update'" + ) + + collection_formats: dict[str, Any] = {} + + path_params: dict[str, Any] = {} + if "database_key" in params and database_key is not None: + path_params["database-key"] = params["database_key"] + if "update_token_guid" in params and update_token_guid is not None: + path_params["update-token-guid"] = params["update_token_guid"] + + query_params: list[Any] = [] + + header_params: dict[str, Any] = {} + + form_params: list[Any] = [] + local_var_files: dict[str, Any] = {} + + body_params = None + # HTTP header 'Accept' + header_params["Accept"] = self.api_client.select_header_accept( + ["text/plain", "application/json", "text/json"] + ) + + response_type_map: dict[int, Optional[str]] = { + 200: "str", + } + + return self.api_client.call_api( + "/v1alpha/dataupdater/updates/{database-key}/{update-token-guid}:dry-run", + "POST", + path_params, + query_params, + header_params, + body=body_params, + post_params=form_params, + files=local_var_files, + _return_http_data_only=params.get("_return_http_data_only"), + _preload_content=params.get("_preload_content", True), + _request_timeout=params.get("_request_timeout"), + collection_formats=collection_formats, + response_type_map=response_type_map, + ) + def get_all_updates(self) -> "list[GsaDataUpdate]": """get_all_updates @@ -277,3 +459,94 @@ def _get_updates_for_database_with_http_info(self, database_key: "str", **kwargs collection_formats=collection_formats, response_type_map=response_type_map, ) + + def register_update( + self, *, database_key: "str", body: "Optional[GsaRegisterUpdateRequest]" = None + ) -> "GsaDataUpdateToken": + """Register an update + + This method makes a synchronous HTTP request. + + Parameters + ---------- + database_key: str + See [Schema - Databases/GetAllDatabases](#/Schema%20-%20Databases/GetAllDatabases) + body: GsaRegisterUpdateRequest + + Returns + ------- + GsaDataUpdateToken + """ + data = self._register_update_with_http_info(database_key, body, _return_http_data_only=True) + return data # type: ignore[no-any-return] + + def _register_update_with_http_info( + self, database_key: "str", body: "Optional[GsaRegisterUpdateRequest]" = None, **kwargs: Any + ) -> Any: + all_params = [ + "database_key", + "body", + "_return_http_data_only", + "_preload_content", + "_request_timeout", + ] + + params = locals() + for key, val in params["kwargs"].items(): + if key not in all_params: + raise TypeError( + f"Got an unexpected keyword argument '{key}' to method register_update" + ) + params[key] = val + del params["kwargs"] + # verify the required parameter "database_key" is set + if "database_key" not in params or params["database_key"] is None: + raise ValueError( + "Missing the required parameter 'database_key' when calling 'register_update'" + ) + + collection_formats: dict[str, Any] = {} + + path_params: dict[str, Any] = {} + if "database_key" in params and database_key is not None: + path_params["database-key"] = params["database_key"] + + query_params: list[Any] = [] + + header_params: dict[str, Any] = {} + + form_params: list[Any] = [] + local_var_files: dict[str, Any] = {} + + body_params = None + if "body" in params and body is not None: + body_params = params["body"] + # HTTP header 'Accept' + header_params["Accept"] = self.api_client.select_header_accept( + ["text/plain", "application/json", "text/json"] + ) + + # HTTP header 'Content-Type' + header_params["Content-Type"] = self.api_client.select_header_content_type( + ["application/json-patch+json", "application/json", "text/json", "application/*+json"] + ) + + response_type_map: dict[int, Optional[str]] = { + 200: "GsaDataUpdateToken", + } + + return self.api_client.call_api( + "/v1alpha/dataupdater/updates/{database-key}", + "POST", + path_params, + query_params, + header_params, + body=body_params, + post_params=form_params, + files=local_var_files, + _return_http_data_only=params.get("_return_http_data_only"), + _preload_content=params.get("_preload_content", True), + _request_timeout=params.get("_request_timeout"), + collection_formats=collection_formats, + response_type_map=response_type_map, + ) diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/__init__.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/__init__.py index 7dedd800..384155aa 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/__init__.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/__init__.py @@ -95,6 +95,7 @@ from .gsa_append_point_values import GsaAppendPointValues from .gsa_applicable_datum import GsaApplicableDatum from .gsa_applications_info import GsaApplicationsInfo +from .gsa_apply_options import GsaApplyOptions from .gsa_attribute import GsaAttribute from .gsa_attribute_aggregation import GsaAttributeAggregation from .gsa_attribute_aggregation_criterion import GsaAttributeAggregationCriterion @@ -709,6 +710,7 @@ from .gsa_long_text_datum_exists_criterion import GsaLongTextDatumExistsCriterion from .gsa_long_text_prefix_datum_criterion import GsaLongTextPrefixDatumCriterion from .gsa_mapping_of_object_identifier import GsaMappingOfObjectIdentifier +from .gsa_match_mode import GsaMatchMode from .gsa_maths_content import GsaMathsContent from .gsa_maths_functional_attribute import GsaMathsFunctionalAttribute from .gsa_maths_functional_attribute_error_detail import GsaMathsFunctionalAttributeErrorDetail @@ -952,6 +954,7 @@ from .gsa_record_with_data import GsaRecordWithData from .gsa_referenced_by_type import GsaReferencedByType from .gsa_referential_integrity_model import GsaReferentialIntegrityModel +from .gsa_register_update_request import GsaRegisterUpdateRequest from .gsa_release_record_version_control_exception import GsaReleaseRecordVersionControlException from .gsa_release_table_version_control_exception import GsaReleaseTableVersionControlException from .gsa_released_date_property import GsaReleasedDateProperty @@ -1211,6 +1214,7 @@ from .gsa_update_record_list_properties import GsaUpdateRecordListProperties from .gsa_update_replacement_string import GsaUpdateReplacementString from .gsa_update_root_folder_error_detail import GsaUpdateRootFolderErrorDetail +from .gsa_update_run_status import GsaUpdateRunStatus from .gsa_update_short_text_attribute import GsaUpdateShortTextAttribute from .gsa_update_smart_record_link_group import GsaUpdateSmartRecordLinkGroup from .gsa_update_standard_name import GsaUpdateStandardName @@ -1312,6 +1316,7 @@ "GsaAppendPointValues", "GsaApplicableDatum", "GsaApplicationsInfo", + "GsaApplyOptions", "GsaAttribute", "GsaAttributeAggregation", "GsaAttributeAggregationCriterion", @@ -1828,6 +1833,7 @@ "GsaLongTextDatumExistsCriterion", "GsaLongTextPrefixDatumCriterion", "GsaMappingOfObjectIdentifier", + "GsaMatchMode", "GsaMathsContent", "GsaMathsFunctionalAttribute", "GsaMathsFunctionalAttributeErrorDetail", @@ -2035,6 +2041,7 @@ "GsaRecordWithData", "GsaReferencedByType", "GsaReferentialIntegrityModel", + "GsaRegisterUpdateRequest", "GsaReleaseRecordVersionControlException", "GsaReleaseTableVersionControlException", "GsaReleasedDateProperty", @@ -2262,6 +2269,7 @@ "GsaUpdateRecordListProperties", "GsaUpdateReplacementString", "GsaUpdateRootFolderErrorDetail", + "GsaUpdateRunStatus", "GsaUpdateShortTextAttribute", "GsaUpdateSmartRecordLinkGroup", "GsaUpdateStandardName", diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_apply_options.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_apply_options.py new file mode 100644 index 00000000..807db9da --- /dev/null +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_apply_options.py @@ -0,0 +1,211 @@ +# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates. +# SPDX-License-Identifier: MIT +# +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + +""" +MI Server API + +No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) + +OpenAPI spec version: v1 + +Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + +import re # noqa: F401 +from typing import TYPE_CHECKING, Any, BinaryIO, Optional # noqa: F401 + +from . import ModelBase, Unset, Unset_Type + +if TYPE_CHECKING: + from datetime import datetime + import pathlib + + from . import * + + +class GsaApplyOptions(ModelBase): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes + ---------- + swagger_types: dict[str, str] + The key is attribute name and the value is attribute type. + attribute_map: dict[str, str] + The key is attribute name and the value is json key in definition. + subtype_mapping: dict[str, str] + The key is the unmangled property name and the value is the corresponding type. + discriminator: Optional[str] + Name of the property used as discriminator for subtypes. + """ + swagger_types: dict[str, str] = { + "apply_adds_as_state": "bool", + "match_mode": "GsaMatchMode", + "retarget_tabular_attributes": "bool", + } + + attribute_map: dict[str, str] = { + "apply_adds_as_state": "applyAddsAsState", + "match_mode": "matchMode", + "retarget_tabular_attributes": "retargetTabularAttributes", + } + + subtype_mapping: dict[str, str] = { + "matchMode": "GsaMatchMode", + } + + discriminator: Optional[str] = None + + def __init__( + self, + *, + apply_adds_as_state: "bool | Unset_Type" = Unset, + match_mode: "GsaMatchMode | Unset_Type" = Unset, + retarget_tabular_attributes: "bool | Unset_Type" = Unset, + ) -> None: + """GsaApplyOptions - a model defined in Swagger + + Parameters + ---------- + apply_adds_as_state: bool, optional + match_mode: GsaMatchMode, optional + retarget_tabular_attributes: bool, optional + """ + self._match_mode: GsaMatchMode | Unset_Type = Unset + self._apply_adds_as_state: bool | Unset_Type = Unset + self._retarget_tabular_attributes: bool | Unset_Type = Unset + + if match_mode is not Unset: + self.match_mode = match_mode + if apply_adds_as_state is not Unset: + self.apply_adds_as_state = apply_adds_as_state + if retarget_tabular_attributes is not Unset: + self.retarget_tabular_attributes = retarget_tabular_attributes + + @property + def match_mode(self) -> "GsaMatchMode | Unset_Type": + """Gets the match_mode of this GsaApplyOptions. + + Returns + ------- + GsaMatchMode | Unset_Type + The match_mode of this GsaApplyOptions. + """ + return self._match_mode + + @match_mode.setter + def match_mode(self, match_mode: "GsaMatchMode | Unset_Type") -> None: + """Sets the match_mode of this GsaApplyOptions. + + Parameters + ---------- + match_mode: GsaMatchMode | Unset_Type + The match_mode of this GsaApplyOptions. + """ + # Field is not nullable + if match_mode is None: + raise ValueError("Invalid value for 'match_mode', must not be 'None'") + self._match_mode = match_mode + + @property + def apply_adds_as_state(self) -> "bool | Unset_Type": + """Gets the apply_adds_as_state of this GsaApplyOptions. + + Returns + ------- + bool | Unset_Type + The apply_adds_as_state of this GsaApplyOptions. + """ + return self._apply_adds_as_state + + @apply_adds_as_state.setter + def apply_adds_as_state(self, apply_adds_as_state: "bool | Unset_Type") -> None: + """Sets the apply_adds_as_state of this GsaApplyOptions. + + Parameters + ---------- + apply_adds_as_state: bool | Unset_Type + The apply_adds_as_state of this GsaApplyOptions. + """ + # Field is not nullable + if apply_adds_as_state is None: + raise ValueError("Invalid value for 'apply_adds_as_state', must not be 'None'") + self._apply_adds_as_state = apply_adds_as_state + + @property + def retarget_tabular_attributes(self) -> "bool | Unset_Type": + """Gets the retarget_tabular_attributes of this GsaApplyOptions. + + Returns + ------- + bool | Unset_Type + The retarget_tabular_attributes of this GsaApplyOptions. + """ + return self._retarget_tabular_attributes + + @retarget_tabular_attributes.setter + def retarget_tabular_attributes(self, retarget_tabular_attributes: "bool | Unset_Type") -> None: + """Sets the retarget_tabular_attributes of this GsaApplyOptions. + + Parameters + ---------- + retarget_tabular_attributes: bool | Unset_Type + The retarget_tabular_attributes of this GsaApplyOptions. + """ + # Field is not nullable + if retarget_tabular_attributes is None: + raise ValueError("Invalid value for 'retarget_tabular_attributes', must not be 'None'") + self._retarget_tabular_attributes = retarget_tabular_attributes + + @classmethod + def get_real_child_model(cls, data: dict[str, str]) -> str: + """Raises a NotImplementedError for a type without a discriminator defined. + + Parameters + ---------- + data: ModelBase + Object representing a subclass of this class + + Raises + ------ + NotImplementedError + This class has no discriminator, and hence no subclasses + """ + raise NotImplementedError() + + def __repr__(self) -> str: + """For 'print' and 'pprint'""" + return self.to_str() + + def __eq__(self, other: Any) -> bool: + """Returns true if both objects are equal""" + if not isinstance(other, GsaApplyOptions): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other: Any) -> bool: + """Returns true if both objects are not equal""" + return not self == other diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_data_update_header.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_data_update_header.py index 1278579f..7a27826b 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_data_update_header.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_data_update_header.py @@ -61,19 +61,39 @@ class GsaDataUpdateHeader(ModelBase): Name of the property used as discriminator for subtypes. """ swagger_types: dict[str, str] = { - "database_key": "str", + "contains_fallback_identifiers": "bool", + "create_date": "datetime", + "description": "str", + "mi_version": "str", + "name": "str", + "new_version_guid": "str", + "prerequisite_update_guid": "str", + "prerequisite_update_name": "str", + "project_guid": "str", "project_name": "str", - "update_description": "str", + "source_database_key": "str", + "source_volume_guid": "str", + "supported_objects_version": "int", + "update_format_version": "int", "update_guid": "str", - "update_name": "str", } attribute_map: dict[str, str] = { - "database_key": "databaseKey", + "contains_fallback_identifiers": "containsFallbackIdentifiers", + "create_date": "createDate", + "description": "description", + "mi_version": "miVersion", + "name": "name", + "new_version_guid": "newVersionGuid", + "prerequisite_update_guid": "prerequisiteUpdateGuid", + "prerequisite_update_name": "prerequisiteUpdateName", + "project_guid": "projectGuid", "project_name": "projectName", - "update_description": "updateDescription", + "source_database_key": "sourceDatabaseKey", + "source_volume_guid": "sourceVolumeGuid", + "supported_objects_version": "supportedObjectsVersion", + "update_format_version": "updateFormatVersion", "update_guid": "updateGuid", - "update_name": "updateName", } subtype_mapping: dict[str, str] = {} @@ -83,42 +103,120 @@ class GsaDataUpdateHeader(ModelBase): def __init__( self, *, - database_key: "str | None | Unset_Type" = Unset, + contains_fallback_identifiers: "bool | Unset_Type" = Unset, + create_date: "datetime | Unset_Type" = Unset, + description: "str | None | Unset_Type" = Unset, + mi_version: "str | None | Unset_Type" = Unset, + name: "str | None | Unset_Type" = Unset, + new_version_guid: "str | None | Unset_Type" = Unset, + prerequisite_update_guid: "str | None | Unset_Type" = Unset, + prerequisite_update_name: "str | None | Unset_Type" = Unset, + project_guid: "str | Unset_Type" = Unset, project_name: "str | None | Unset_Type" = Unset, - update_description: "str | None | Unset_Type" = Unset, + source_database_key: "str | None | Unset_Type" = Unset, + source_volume_guid: "str | Unset_Type" = Unset, + supported_objects_version: "int | Unset_Type" = Unset, + update_format_version: "int | Unset_Type" = Unset, update_guid: "str | Unset_Type" = Unset, - update_name: "str | None | Unset_Type" = Unset, ) -> None: """GsaDataUpdateHeader - a model defined in Swagger Parameters ---------- - database_key: str | None, optional + contains_fallback_identifiers: bool, optional + create_date: datetime, optional + description: str | None, optional + mi_version: str | None, optional + name: str | None, optional + new_version_guid: str | None, optional + prerequisite_update_guid: str | None, optional + prerequisite_update_name: str | None, optional + project_guid: str, optional project_name: str | None, optional - update_description: str | None, optional + source_database_key: str | None, optional + source_volume_guid: str, optional + supported_objects_version: int, optional + update_format_version: int, optional update_guid: str, optional - update_name: str | None, optional """ + self._create_date: datetime | Unset_Type = Unset self._update_guid: str | Unset_Type = Unset + self._prerequisite_update_guid: str | None | Unset_Type = Unset + self._prerequisite_update_name: str | None | Unset_Type = Unset + self._mi_version: str | None | Unset_Type = Unset + self._supported_objects_version: int | Unset_Type = Unset + self._update_format_version: int | Unset_Type = Unset + self._source_database_key: str | None | Unset_Type = Unset + self._source_volume_guid: str | Unset_Type = Unset + self._name: str | None | Unset_Type = Unset + self._description: str | None | Unset_Type = Unset self._project_name: str | None | Unset_Type = Unset - self._update_name: str | None | Unset_Type = Unset - self._update_description: str | None | Unset_Type = Unset - self._database_key: str | None | Unset_Type = Unset + self._project_guid: str | Unset_Type = Unset + self._contains_fallback_identifiers: bool | Unset_Type = Unset + self._new_version_guid: str | None | Unset_Type = Unset + if create_date is not Unset: + self.create_date = create_date if update_guid is not Unset: self.update_guid = update_guid + if prerequisite_update_guid is not Unset: + self.prerequisite_update_guid = prerequisite_update_guid + if prerequisite_update_name is not Unset: + self.prerequisite_update_name = prerequisite_update_name + if mi_version is not Unset: + self.mi_version = mi_version + if supported_objects_version is not Unset: + self.supported_objects_version = supported_objects_version + if update_format_version is not Unset: + self.update_format_version = update_format_version + if source_database_key is not Unset: + self.source_database_key = source_database_key + if source_volume_guid is not Unset: + self.source_volume_guid = source_volume_guid + if name is not Unset: + self.name = name + if description is not Unset: + self.description = description if project_name is not Unset: self.project_name = project_name - if update_name is not Unset: - self.update_name = update_name - if update_description is not Unset: - self.update_description = update_description - if database_key is not Unset: - self.database_key = database_key + if project_guid is not Unset: + self.project_guid = project_guid + if contains_fallback_identifiers is not Unset: + self.contains_fallback_identifiers = contains_fallback_identifiers + if new_version_guid is not Unset: + self.new_version_guid = new_version_guid + + @property + def create_date(self) -> "datetime | Unset_Type": + """Gets the create_date of this GsaDataUpdateHeader. + The date and time that the update was created. + + Returns + ------- + datetime | Unset_Type + The create_date of this GsaDataUpdateHeader. + """ + return self._create_date + + @create_date.setter + def create_date(self, create_date: "datetime | Unset_Type") -> None: + """Sets the create_date of this GsaDataUpdateHeader. + The date and time that the update was created. + + Parameters + ---------- + create_date: datetime | Unset_Type + The create_date of this GsaDataUpdateHeader. + """ + # Field is not nullable + if create_date is None: + raise ValueError("Invalid value for 'create_date', must not be 'None'") + self._create_date = create_date @property def update_guid(self) -> "str | Unset_Type": """Gets the update_guid of this GsaDataUpdateHeader. + A unique identity to disambiguate this update from all other updates. Returns ------- @@ -130,6 +228,7 @@ def update_guid(self) -> "str | Unset_Type": @update_guid.setter def update_guid(self, update_guid: "str | Unset_Type") -> None: """Sets the update_guid of this GsaDataUpdateHeader. + A unique identity to disambiguate this update from all other updates. Parameters ---------- @@ -141,9 +240,235 @@ def update_guid(self, update_guid: "str | Unset_Type") -> None: raise ValueError("Invalid value for 'update_guid', must not be 'None'") self._update_guid = update_guid + @property + def prerequisite_update_guid(self) -> "str | None | Unset_Type": + """Gets the prerequisite_update_guid of this GsaDataUpdateHeader. + GUID for the previous update that need to have been applied before this update can be applied. + + Returns + ------- + str | None | Unset_Type + The prerequisite_update_guid of this GsaDataUpdateHeader. + """ + return self._prerequisite_update_guid + + @prerequisite_update_guid.setter + def prerequisite_update_guid(self, prerequisite_update_guid: "str | None | Unset_Type") -> None: + """Sets the prerequisite_update_guid of this GsaDataUpdateHeader. + GUID for the previous update that need to have been applied before this update can be applied. + + Parameters + ---------- + prerequisite_update_guid: str | None | Unset_Type + The prerequisite_update_guid of this GsaDataUpdateHeader. + """ + self._prerequisite_update_guid = prerequisite_update_guid + + @property + def prerequisite_update_name(self) -> "str | None | Unset_Type": + """Gets the prerequisite_update_name of this GsaDataUpdateHeader. + Name of the previous update that need to have been applied before this update can be applied. This is used only for display purposes. + + Returns + ------- + str | None | Unset_Type + The prerequisite_update_name of this GsaDataUpdateHeader. + """ + return self._prerequisite_update_name + + @prerequisite_update_name.setter + def prerequisite_update_name(self, prerequisite_update_name: "str | None | Unset_Type") -> None: + """Sets the prerequisite_update_name of this GsaDataUpdateHeader. + Name of the previous update that need to have been applied before this update can be applied. This is used only for display purposes. + + Parameters + ---------- + prerequisite_update_name: str | None | Unset_Type + The prerequisite_update_name of this GsaDataUpdateHeader. + """ + self._prerequisite_update_name = prerequisite_update_name + + @property + def mi_version(self) -> "str | None | Unset_Type": + """Gets the mi_version of this GsaDataUpdateHeader. + Gets the version of MI that was used to create this update. + + Returns + ------- + str | None | Unset_Type + The mi_version of this GsaDataUpdateHeader. + """ + return self._mi_version + + @mi_version.setter + def mi_version(self, mi_version: "str | None | Unset_Type") -> None: + """Sets the mi_version of this GsaDataUpdateHeader. + Gets the version of MI that was used to create this update. + + Parameters + ---------- + mi_version: str | None | Unset_Type + The mi_version of this GsaDataUpdateHeader. + """ + self._mi_version = mi_version + + @property + def supported_objects_version(self) -> "int | Unset_Type": + """Gets the supported_objects_version of this GsaDataUpdateHeader. + Gets or sets the version number indicating the kinds of object that this update supports. A client will be able to process updates with an unrecognised SupportedObjectsVersion (although in doing so it will have to ignore fields describing objects it does not recognise). + + Returns + ------- + int | Unset_Type + The supported_objects_version of this GsaDataUpdateHeader. + """ + return self._supported_objects_version + + @supported_objects_version.setter + def supported_objects_version(self, supported_objects_version: "int | Unset_Type") -> None: + """Sets the supported_objects_version of this GsaDataUpdateHeader. + Gets or sets the version number indicating the kinds of object that this update supports. A client will be able to process updates with an unrecognised SupportedObjectsVersion (although in doing so it will have to ignore fields describing objects it does not recognise). + + Parameters + ---------- + supported_objects_version: int | Unset_Type + The supported_objects_version of this GsaDataUpdateHeader. + """ + # Field is not nullable + if supported_objects_version is None: + raise ValueError("Invalid value for 'supported_objects_version', must not be 'None'") + self._supported_objects_version = supported_objects_version + + @property + def update_format_version(self) -> "int | Unset_Type": + """Gets the update_format_version of this GsaDataUpdateHeader. + Gets or sets the version number of the format of the update. This will change if the meaning of any of the fields in the update changes. A client must not process an update with an UpdateFormatVersion field that it does not recognise, as it cannot be sure of the meaning of the fields it reads. + + Returns + ------- + int | Unset_Type + The update_format_version of this GsaDataUpdateHeader. + """ + return self._update_format_version + + @update_format_version.setter + def update_format_version(self, update_format_version: "int | Unset_Type") -> None: + """Sets the update_format_version of this GsaDataUpdateHeader. + Gets or sets the version number of the format of the update. This will change if the meaning of any of the fields in the update changes. A client must not process an update with an UpdateFormatVersion field that it does not recognise, as it cannot be sure of the meaning of the fields it reads. + + Parameters + ---------- + update_format_version: int | Unset_Type + The update_format_version of this GsaDataUpdateHeader. + """ + # Field is not nullable + if update_format_version is None: + raise ValueError("Invalid value for 'update_format_version', must not be 'None'") + self._update_format_version = update_format_version + + @property + def source_database_key(self) -> "str | None | Unset_Type": + """Gets the source_database_key of this GsaDataUpdateHeader. + Gets or sets the database key of the database from which this update was generated. + + Returns + ------- + str | None | Unset_Type + The source_database_key of this GsaDataUpdateHeader. + """ + return self._source_database_key + + @source_database_key.setter + def source_database_key(self, source_database_key: "str | None | Unset_Type") -> None: + """Sets the source_database_key of this GsaDataUpdateHeader. + Gets or sets the database key of the database from which this update was generated. + + Parameters + ---------- + source_database_key: str | None | Unset_Type + The source_database_key of this GsaDataUpdateHeader. + """ + self._source_database_key = source_database_key + + @property + def source_volume_guid(self) -> "str | Unset_Type": + """Gets the source_volume_guid of this GsaDataUpdateHeader. + Gets or sets the guid of the volume from which the update was generated. + + Returns + ------- + str | Unset_Type + The source_volume_guid of this GsaDataUpdateHeader. + """ + return self._source_volume_guid + + @source_volume_guid.setter + def source_volume_guid(self, source_volume_guid: "str | Unset_Type") -> None: + """Sets the source_volume_guid of this GsaDataUpdateHeader. + Gets or sets the guid of the volume from which the update was generated. + + Parameters + ---------- + source_volume_guid: str | Unset_Type + The source_volume_guid of this GsaDataUpdateHeader. + """ + # Field is not nullable + if source_volume_guid is None: + raise ValueError("Invalid value for 'source_volume_guid', must not be 'None'") + self._source_volume_guid = source_volume_guid + + @property + def name(self) -> "str | None | Unset_Type": + """Gets the name of this GsaDataUpdateHeader. + Gets or sets the name of the update. + + Returns + ------- + str | None | Unset_Type + The name of this GsaDataUpdateHeader. + """ + return self._name + + @name.setter + def name(self, name: "str | None | Unset_Type") -> None: + """Sets the name of this GsaDataUpdateHeader. + Gets or sets the name of the update. + + Parameters + ---------- + name: str | None | Unset_Type + The name of this GsaDataUpdateHeader. + """ + self._name = name + + @property + def description(self) -> "str | None | Unset_Type": + """Gets the description of this GsaDataUpdateHeader. + Gets or sets the description of the update. + + Returns + ------- + str | None | Unset_Type + The description of this GsaDataUpdateHeader. + """ + return self._description + + @description.setter + def description(self, description: "str | None | Unset_Type") -> None: + """Sets the description of this GsaDataUpdateHeader. + Gets or sets the description of the update. + + Parameters + ---------- + description: str | None | Unset_Type + The description of this GsaDataUpdateHeader. + """ + self._description = description + @property def project_name(self) -> "str | None | Unset_Type": """Gets the project_name of this GsaDataUpdateHeader. + Gets or sets the name of the project this update was created for. Returns ------- @@ -155,6 +480,7 @@ def project_name(self) -> "str | None | Unset_Type": @project_name.setter def project_name(self, project_name: "str | None | Unset_Type") -> None: """Sets the project_name of this GsaDataUpdateHeader. + Gets or sets the name of the project this update was created for. Parameters ---------- @@ -164,70 +490,86 @@ def project_name(self, project_name: "str | None | Unset_Type") -> None: self._project_name = project_name @property - def update_name(self) -> "str | None | Unset_Type": - """Gets the update_name of this GsaDataUpdateHeader. + def project_guid(self) -> "str | Unset_Type": + """Gets the project_guid of this GsaDataUpdateHeader. + Gets or sets the guid of the project this update was created for. Returns ------- - str | None | Unset_Type - The update_name of this GsaDataUpdateHeader. + str | Unset_Type + The project_guid of this GsaDataUpdateHeader. """ - return self._update_name + return self._project_guid - @update_name.setter - def update_name(self, update_name: "str | None | Unset_Type") -> None: - """Sets the update_name of this GsaDataUpdateHeader. + @project_guid.setter + def project_guid(self, project_guid: "str | Unset_Type") -> None: + """Sets the project_guid of this GsaDataUpdateHeader. + Gets or sets the guid of the project this update was created for. Parameters ---------- - update_name: str | None | Unset_Type - The update_name of this GsaDataUpdateHeader. + project_guid: str | Unset_Type + The project_guid of this GsaDataUpdateHeader. """ - self._update_name = update_name + # Field is not nullable + if project_guid is None: + raise ValueError("Invalid value for 'project_guid', must not be 'None'") + self._project_guid = project_guid @property - def update_description(self) -> "str | None | Unset_Type": - """Gets the update_description of this GsaDataUpdateHeader. + def contains_fallback_identifiers(self) -> "bool | Unset_Type": + """Gets the contains_fallback_identifiers of this GsaDataUpdateHeader. + Gets or sets the flag informing whether or not this update contains fallback identifiers (mostly names). Returns ------- - str | None | Unset_Type - The update_description of this GsaDataUpdateHeader. + bool | Unset_Type + The contains_fallback_identifiers of this GsaDataUpdateHeader. """ - return self._update_description + return self._contains_fallback_identifiers - @update_description.setter - def update_description(self, update_description: "str | None | Unset_Type") -> None: - """Sets the update_description of this GsaDataUpdateHeader. + @contains_fallback_identifiers.setter + def contains_fallback_identifiers( + self, contains_fallback_identifiers: "bool | Unset_Type" + ) -> None: + """Sets the contains_fallback_identifiers of this GsaDataUpdateHeader. + Gets or sets the flag informing whether or not this update contains fallback identifiers (mostly names). Parameters ---------- - update_description: str | None | Unset_Type - The update_description of this GsaDataUpdateHeader. + contains_fallback_identifiers: bool | Unset_Type + The contains_fallback_identifiers of this GsaDataUpdateHeader. """ - self._update_description = update_description + # Field is not nullable + if contains_fallback_identifiers is None: + raise ValueError( + "Invalid value for 'contains_fallback_identifiers', must not be 'None'" + ) + self._contains_fallback_identifiers = contains_fallback_identifiers @property - def database_key(self) -> "str | None | Unset_Type": - """Gets the database_key of this GsaDataUpdateHeader. + def new_version_guid(self) -> "str | None | Unset_Type": + """Gets the new_version_guid of this GsaDataUpdateHeader. + Gets or sets the value Database Version GUID should be updated to. If this field is set then we propose to retarget tabular attributes to link to new version of the database. Returns ------- str | None | Unset_Type - The database_key of this GsaDataUpdateHeader. + The new_version_guid of this GsaDataUpdateHeader. """ - return self._database_key + return self._new_version_guid - @database_key.setter - def database_key(self, database_key: "str | None | Unset_Type") -> None: - """Sets the database_key of this GsaDataUpdateHeader. + @new_version_guid.setter + def new_version_guid(self, new_version_guid: "str | None | Unset_Type") -> None: + """Sets the new_version_guid of this GsaDataUpdateHeader. + Gets or sets the value Database Version GUID should be updated to. If this field is set then we propose to retarget tabular attributes to link to new version of the database. Parameters ---------- - database_key: str | None | Unset_Type - The database_key of this GsaDataUpdateHeader. + new_version_guid: str | None | Unset_Type + The new_version_guid of this GsaDataUpdateHeader. """ - self._database_key = database_key + self._new_version_guid = new_version_guid @classmethod def get_real_child_model(cls, data: dict[str, str]) -> str: diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_data_update_run_info.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_data_update_run_info.py index a9886b1d..b04b2196 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_data_update_run_info.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_data_update_run_info.py @@ -61,177 +61,228 @@ class GsaDataUpdateRunInfo(ModelBase): Name of the property used as discriminator for subtypes. """ swagger_types: dict[str, str] = { - "allow_overwrite": "bool", "applied_date": "datetime", - "change_tabular": "bool", - "match_mode": "str", - "progress": "float", - "status": "str", + "apply_adds_as_state": "bool", + "database_key": "str", + "error_message": "str", + "match_mode": "GsaMatchMode", + "progress_percentage": "float", + "retarget_tabular_attributes": "bool", + "status": "GsaUpdateRunStatus", } attribute_map: dict[str, str] = { - "allow_overwrite": "allowOverwrite", "applied_date": "appliedDate", - "change_tabular": "changeTabular", + "apply_adds_as_state": "applyAddsAsState", + "database_key": "databaseKey", + "error_message": "errorMessage", "match_mode": "matchMode", - "progress": "progress", + "progress_percentage": "progressPercentage", + "retarget_tabular_attributes": "retargetTabularAttributes", "status": "status", } - subtype_mapping: dict[str, str] = {} + subtype_mapping: dict[str, str] = { + "matchMode": "GsaMatchMode", + "status": "GsaUpdateRunStatus", + } discriminator: Optional[str] = None def __init__( self, *, - allow_overwrite: "bool | None | Unset_Type" = Unset, applied_date: "datetime | None | Unset_Type" = Unset, - change_tabular: "bool | None | Unset_Type" = Unset, - match_mode: "str | None | Unset_Type" = Unset, - progress: "float | None | Unset_Type" = Unset, - status: "str | None | Unset_Type" = Unset, + apply_adds_as_state: "bool | Unset_Type" = Unset, + database_key: "str | None | Unset_Type" = Unset, + error_message: "str | None | Unset_Type" = Unset, + match_mode: "GsaMatchMode | Unset_Type" = Unset, + progress_percentage: "float | None | Unset_Type" = Unset, + retarget_tabular_attributes: "bool | Unset_Type" = Unset, + status: "GsaUpdateRunStatus | Unset_Type" = Unset, ) -> None: """GsaDataUpdateRunInfo - a model defined in Swagger Parameters ---------- - allow_overwrite: bool | None, optional applied_date: datetime | None, optional - change_tabular: bool | None, optional - match_mode: str | None, optional - progress: float | None, optional - status: str | None, optional + apply_adds_as_state: bool, optional + database_key: str | None, optional + error_message: str | None, optional + match_mode: GsaMatchMode, optional + progress_percentage: float | None, optional + retarget_tabular_attributes: bool, optional + status: GsaUpdateRunStatus, optional """ - self._match_mode: str | None | Unset_Type = Unset - self._allow_overwrite: bool | None | Unset_Type = Unset - self._change_tabular: bool | None | Unset_Type = Unset - self._status: str | None | Unset_Type = Unset - self._progress: float | None | Unset_Type = Unset + self._database_key: str | None | Unset_Type = Unset + self._match_mode: GsaMatchMode | Unset_Type = Unset + self._apply_adds_as_state: bool | Unset_Type = Unset + self._retarget_tabular_attributes: bool | Unset_Type = Unset + self._status: GsaUpdateRunStatus | Unset_Type = Unset + self._progress_percentage: float | None | Unset_Type = Unset self._applied_date: datetime | None | Unset_Type = Unset + self._error_message: str | None | Unset_Type = Unset + if database_key is not Unset: + self.database_key = database_key if match_mode is not Unset: self.match_mode = match_mode - if allow_overwrite is not Unset: - self.allow_overwrite = allow_overwrite - if change_tabular is not Unset: - self.change_tabular = change_tabular + if apply_adds_as_state is not Unset: + self.apply_adds_as_state = apply_adds_as_state + if retarget_tabular_attributes is not Unset: + self.retarget_tabular_attributes = retarget_tabular_attributes if status is not Unset: self.status = status - if progress is not Unset: - self.progress = progress + if progress_percentage is not Unset: + self.progress_percentage = progress_percentage if applied_date is not Unset: self.applied_date = applied_date + if error_message is not Unset: + self.error_message = error_message @property - def match_mode(self) -> "str | None | Unset_Type": - """Gets the match_mode of this GsaDataUpdateRunInfo. + def database_key(self) -> "str | None | Unset_Type": + """Gets the database_key of this GsaDataUpdateRunInfo. Returns ------- str | None | Unset_Type + The database_key of this GsaDataUpdateRunInfo. + """ + return self._database_key + + @database_key.setter + def database_key(self, database_key: "str | None | Unset_Type") -> None: + """Sets the database_key of this GsaDataUpdateRunInfo. + + Parameters + ---------- + database_key: str | None | Unset_Type + The database_key of this GsaDataUpdateRunInfo. + """ + self._database_key = database_key + + @property + def match_mode(self) -> "GsaMatchMode | Unset_Type": + """Gets the match_mode of this GsaDataUpdateRunInfo. + + Returns + ------- + GsaMatchMode | Unset_Type The match_mode of this GsaDataUpdateRunInfo. """ return self._match_mode @match_mode.setter - def match_mode(self, match_mode: "str | None | Unset_Type") -> None: + def match_mode(self, match_mode: "GsaMatchMode | Unset_Type") -> None: """Sets the match_mode of this GsaDataUpdateRunInfo. Parameters ---------- - match_mode: str | None | Unset_Type + match_mode: GsaMatchMode | Unset_Type The match_mode of this GsaDataUpdateRunInfo. """ + # Field is not nullable + if match_mode is None: + raise ValueError("Invalid value for 'match_mode', must not be 'None'") self._match_mode = match_mode @property - def allow_overwrite(self) -> "bool | None | Unset_Type": - """Gets the allow_overwrite of this GsaDataUpdateRunInfo. + def apply_adds_as_state(self) -> "bool | Unset_Type": + """Gets the apply_adds_as_state of this GsaDataUpdateRunInfo. Returns ------- - bool | None | Unset_Type - The allow_overwrite of this GsaDataUpdateRunInfo. + bool | Unset_Type + The apply_adds_as_state of this GsaDataUpdateRunInfo. """ - return self._allow_overwrite + return self._apply_adds_as_state - @allow_overwrite.setter - def allow_overwrite(self, allow_overwrite: "bool | None | Unset_Type") -> None: - """Sets the allow_overwrite of this GsaDataUpdateRunInfo. + @apply_adds_as_state.setter + def apply_adds_as_state(self, apply_adds_as_state: "bool | Unset_Type") -> None: + """Sets the apply_adds_as_state of this GsaDataUpdateRunInfo. Parameters ---------- - allow_overwrite: bool | None | Unset_Type - The allow_overwrite of this GsaDataUpdateRunInfo. + apply_adds_as_state: bool | Unset_Type + The apply_adds_as_state of this GsaDataUpdateRunInfo. """ - self._allow_overwrite = allow_overwrite + # Field is not nullable + if apply_adds_as_state is None: + raise ValueError("Invalid value for 'apply_adds_as_state', must not be 'None'") + self._apply_adds_as_state = apply_adds_as_state @property - def change_tabular(self) -> "bool | None | Unset_Type": - """Gets the change_tabular of this GsaDataUpdateRunInfo. + def retarget_tabular_attributes(self) -> "bool | Unset_Type": + """Gets the retarget_tabular_attributes of this GsaDataUpdateRunInfo. Returns ------- - bool | None | Unset_Type - The change_tabular of this GsaDataUpdateRunInfo. + bool | Unset_Type + The retarget_tabular_attributes of this GsaDataUpdateRunInfo. """ - return self._change_tabular + return self._retarget_tabular_attributes - @change_tabular.setter - def change_tabular(self, change_tabular: "bool | None | Unset_Type") -> None: - """Sets the change_tabular of this GsaDataUpdateRunInfo. + @retarget_tabular_attributes.setter + def retarget_tabular_attributes(self, retarget_tabular_attributes: "bool | Unset_Type") -> None: + """Sets the retarget_tabular_attributes of this GsaDataUpdateRunInfo. Parameters ---------- - change_tabular: bool | None | Unset_Type - The change_tabular of this GsaDataUpdateRunInfo. + retarget_tabular_attributes: bool | Unset_Type + The retarget_tabular_attributes of this GsaDataUpdateRunInfo. """ - self._change_tabular = change_tabular + # Field is not nullable + if retarget_tabular_attributes is None: + raise ValueError("Invalid value for 'retarget_tabular_attributes', must not be 'None'") + self._retarget_tabular_attributes = retarget_tabular_attributes @property - def status(self) -> "str | None | Unset_Type": + def status(self) -> "GsaUpdateRunStatus | Unset_Type": """Gets the status of this GsaDataUpdateRunInfo. Returns ------- - str | None | Unset_Type + GsaUpdateRunStatus | Unset_Type The status of this GsaDataUpdateRunInfo. """ return self._status @status.setter - def status(self, status: "str | None | Unset_Type") -> None: + def status(self, status: "GsaUpdateRunStatus | Unset_Type") -> None: """Sets the status of this GsaDataUpdateRunInfo. Parameters ---------- - status: str | None | Unset_Type + status: GsaUpdateRunStatus | Unset_Type The status of this GsaDataUpdateRunInfo. """ + # Field is not nullable + if status is None: + raise ValueError("Invalid value for 'status', must not be 'None'") self._status = status @property - def progress(self) -> "float | None | Unset_Type": - """Gets the progress of this GsaDataUpdateRunInfo. + def progress_percentage(self) -> "float | None | Unset_Type": + """Gets the progress_percentage of this GsaDataUpdateRunInfo. Returns ------- float | None | Unset_Type - The progress of this GsaDataUpdateRunInfo. + The progress_percentage of this GsaDataUpdateRunInfo. """ - return self._progress + return self._progress_percentage - @progress.setter - def progress(self, progress: "float | None | Unset_Type") -> None: - """Sets the progress of this GsaDataUpdateRunInfo. + @progress_percentage.setter + def progress_percentage(self, progress_percentage: "float | None | Unset_Type") -> None: + """Sets the progress_percentage of this GsaDataUpdateRunInfo. Parameters ---------- - progress: float | None | Unset_Type - The progress of this GsaDataUpdateRunInfo. + progress_percentage: float | None | Unset_Type + The progress_percentage of this GsaDataUpdateRunInfo. """ - self._progress = progress + self._progress_percentage = progress_percentage @property def applied_date(self) -> "datetime | None | Unset_Type": @@ -255,6 +306,28 @@ def applied_date(self, applied_date: "datetime | None | Unset_Type") -> None: """ self._applied_date = applied_date + @property + def error_message(self) -> "str | None | Unset_Type": + """Gets the error_message of this GsaDataUpdateRunInfo. + + Returns + ------- + str | None | Unset_Type + The error_message of this GsaDataUpdateRunInfo. + """ + return self._error_message + + @error_message.setter + def error_message(self, error_message: "str | None | Unset_Type") -> None: + """Sets the error_message of this GsaDataUpdateRunInfo. + + Parameters + ---------- + error_message: str | None | Unset_Type + The error_message of this GsaDataUpdateRunInfo. + """ + self._error_message = error_message + @classmethod def get_real_child_model(cls, data: dict[str, str]) -> str: """Raises a NotImplementedError for a type without a discriminator defined. diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_database_status.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_database_status.py index d61376e6..22d046aa 100644 --- a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_database_status.py +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_database_status.py @@ -52,3 +52,4 @@ class GsaDatabaseStatus(Enum): DISABLED = "Disabled" SCHEMAUPGRADEREQUIRED = "SchemaUpgradeRequired" SCHEMADOWNGRADEREQUIRED = "SchemaDowngradeRequired" + MISSING = "Missing" diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_match_mode.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_match_mode.py new file mode 100644 index 00000000..a71144dc --- /dev/null +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_match_mode.py @@ -0,0 +1,47 @@ +# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates. +# SPDX-License-Identifier: MIT +# +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + +""" +MI Server API + +No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) + +OpenAPI spec version: v1 + +Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + +from enum import Enum + + +class GsaMatchMode(Enum): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Allowed Enum values + """ + POS_0 = 0 + POS_1 = 1 + POS_2 = 2 diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_register_update_request.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_register_update_request.py new file mode 100644 index 00000000..c08cedcc --- /dev/null +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_register_update_request.py @@ -0,0 +1,180 @@ +# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates. +# SPDX-License-Identifier: MIT +# +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + +""" +MI Server API + +No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) + +OpenAPI spec version: v1 + +Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + +import re # noqa: F401 +from typing import TYPE_CHECKING, Any, BinaryIO, Optional # noqa: F401 + +from . import ModelBase, Unset, Unset_Type + +if TYPE_CHECKING: + from datetime import datetime + import pathlib + + from . import * + + +class GsaRegisterUpdateRequest(ModelBase): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Attributes + ---------- + swagger_types: dict[str, str] + The key is attribute name and the value is attribute type. + attribute_map: dict[str, str] + The key is attribute name and the value is json key in definition. + subtype_mapping: dict[str, str] + The key is the unmangled property name and the value is the corresponding type. + discriminator: Optional[str] + Name of the property used as discriminator for subtypes. + """ + swagger_types: dict[str, str] = { + "apply_options": "GsaApplyOptions", + "header": "GsaDataUpdateHeader", + } + + attribute_map: dict[str, str] = { + "apply_options": "applyOptions", + "header": "header", + } + + subtype_mapping: dict[str, str] = { + "header": "GsaDataUpdateHeader", + "applyOptions": "GsaApplyOptions", + } + + discriminator: Optional[str] = None + + def __init__( + self, + *, + apply_options: "GsaApplyOptions | Unset_Type" = Unset, + header: "GsaDataUpdateHeader | Unset_Type" = Unset, + ) -> None: + """GsaRegisterUpdateRequest - a model defined in Swagger + + Parameters + ---------- + apply_options: GsaApplyOptions, optional + header: GsaDataUpdateHeader, optional + """ + self._header: GsaDataUpdateHeader | Unset_Type = Unset + self._apply_options: GsaApplyOptions | Unset_Type = Unset + + if header is not Unset: + self.header = header + if apply_options is not Unset: + self.apply_options = apply_options + + @property + def header(self) -> "GsaDataUpdateHeader | Unset_Type": + """Gets the header of this GsaRegisterUpdateRequest. + + Returns + ------- + GsaDataUpdateHeader | Unset_Type + The header of this GsaRegisterUpdateRequest. + """ + return self._header + + @header.setter + def header(self, header: "GsaDataUpdateHeader | Unset_Type") -> None: + """Sets the header of this GsaRegisterUpdateRequest. + + Parameters + ---------- + header: GsaDataUpdateHeader | Unset_Type + The header of this GsaRegisterUpdateRequest. + """ + # Field is not nullable + if header is None: + raise ValueError("Invalid value for 'header', must not be 'None'") + self._header = header + + @property + def apply_options(self) -> "GsaApplyOptions | Unset_Type": + """Gets the apply_options of this GsaRegisterUpdateRequest. + + Returns + ------- + GsaApplyOptions | Unset_Type + The apply_options of this GsaRegisterUpdateRequest. + """ + return self._apply_options + + @apply_options.setter + def apply_options(self, apply_options: "GsaApplyOptions | Unset_Type") -> None: + """Sets the apply_options of this GsaRegisterUpdateRequest. + + Parameters + ---------- + apply_options: GsaApplyOptions | Unset_Type + The apply_options of this GsaRegisterUpdateRequest. + """ + # Field is not nullable + if apply_options is None: + raise ValueError("Invalid value for 'apply_options', must not be 'None'") + self._apply_options = apply_options + + @classmethod + def get_real_child_model(cls, data: dict[str, str]) -> str: + """Raises a NotImplementedError for a type without a discriminator defined. + + Parameters + ---------- + data: ModelBase + Object representing a subclass of this class + + Raises + ------ + NotImplementedError + This class has no discriminator, and hence no subclasses + """ + raise NotImplementedError() + + def __repr__(self) -> str: + """For 'print' and 'pprint'""" + return self.to_str() + + def __eq__(self, other: Any) -> bool: + """Returns true if both objects are equal""" + if not isinstance(other, GsaRegisterUpdateRequest): + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other: Any) -> bool: + """Returns true if both objects are not equal""" + return not self == other diff --git a/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_update_run_status.py b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_update_run_status.py new file mode 100644 index 00000000..cb7ae999 --- /dev/null +++ b/ansys-grantami-serverapi-openapi/src/ansys/grantami/serverapi_openapi/v2026r1/models/gsa_update_run_status.py @@ -0,0 +1,60 @@ +# Copyright (C) 2023 - 2025 ANSYS, Inc. and/or its affiliates. +# SPDX-License-Identifier: MIT +# +# +# Permission is hereby granted, free of charge, to any person obtaining a copy +# of this software and associated documentation files (the "Software"), to deal +# in the Software without restriction, including without limitation the rights +# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +# copies of the Software, and to permit persons to whom the Software is +# furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice shall be included in all +# copies or substantial portions of the Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +# SOFTWARE. + +""" +MI Server API + +No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) + +OpenAPI spec version: v1 + +Generated by: https://github.com/swagger-api/swagger-codegen.git +""" + +from enum import Enum + + +class GsaUpdateRunStatus(Enum): + """NOTE: This class is auto generated by the swagger code generator program. + + Do not edit the class manually. + """ + + """ + Allowed Enum values + """ + POS_0 = 0 + POS_1 = 1 + POS_2 = 2 + POS_3 = 3 + POS_4 = 4 + POS_5 = 5 + POS_6 = 6 + POS_7 = 7 + POS_8 = 8 + POS_9 = 9 + POS_10 = 10 + POS_11 = 11 + POS_12 = 12 + POS_13 = 13 + POS_14 = 14 + POS_15 = 15 diff --git a/yaml/server-api.json b/yaml/server-api.json index f18772cb..35bdc8fc 100644 --- a/yaml/server-api.json +++ b/yaml/server-api.json @@ -47,7 +47,7 @@ "description": "Get activity log entries after a specific date. Inclusive flag defaults to false. If date filter is specified either from or to date must be set.", "value": { "dateFilter": { - "dateFrom": "2025-07-24T00:00:00Z", + "dateFrom": "2025-07-28T00:00:00Z", "dateFromInclusive": false, "dateToInclusive": false } @@ -58,7 +58,7 @@ "description": "Get activity log entries after or on a specific date. Inclusive flag defaults to false. If date filter is specified either from or to date must be set.", "value": { "dateFilter": { - "dateFrom": "2025-07-24T00:00:00Z", + "dateFrom": "2025-07-28T00:00:00Z", "dateFromInclusive": true, "dateToInclusive": false } @@ -70,7 +70,7 @@ "value": { "dateFilter": { "dateFromInclusive": false, - "dateTo": "2025-07-26T00:00:00Z", + "dateTo": "2025-07-30T00:00:00Z", "dateToInclusive": false } } @@ -81,7 +81,7 @@ "value": { "dateFilter": { "dateFromInclusive": false, - "dateTo": "2025-07-26T00:00:00Z", + "dateTo": "2025-07-30T00:00:00Z", "dateToInclusive": true } } @@ -91,9 +91,9 @@ "description": "Get activity log entries between specific dates. Inclusive flag defaults to false. If both dates are specified, 'to date' must be later than 'from date'.", "value": { "dateFilter": { - "dateFrom": "2025-07-24T00:00:00Z", + "dateFrom": "2025-07-28T00:00:00Z", "dateFromInclusive": true, - "dateTo": "2025-07-26T00:00:00Z", + "dateTo": "2025-07-30T00:00:00Z", "dateToInclusive": true } } @@ -207,7 +207,7 @@ "description": "Get activity log entries since 7 days ago (inclusive), for which the username contains the word 'admin', with at least one application name matching 'MI Explore' (case-insensitive), database key that matches 'MI_Training' (case-insensitive) and usage mode equal to 'view'.", "value": { "dateFilter": { - "dateFrom": "2025-07-24T00:00:00Z", + "dateFrom": "2025-07-28T00:00:00Z", "dateFromInclusive": true, "dateToInclusive": false }, @@ -240,7 +240,7 @@ "description": "Get activity log entries after a specific date. Inclusive flag defaults to false. If date filter is specified either from or to date must be set.", "value": { "dateFilter": { - "dateFrom": "2025-07-24T00:00:00Z", + "dateFrom": "2025-07-28T00:00:00Z", "dateFromInclusive": false, "dateToInclusive": false } @@ -251,7 +251,7 @@ "description": "Get activity log entries after or on a specific date. Inclusive flag defaults to false. If date filter is specified either from or to date must be set.", "value": { "dateFilter": { - "dateFrom": "2025-07-24T00:00:00Z", + "dateFrom": "2025-07-28T00:00:00Z", "dateFromInclusive": true, "dateToInclusive": false } @@ -263,7 +263,7 @@ "value": { "dateFilter": { "dateFromInclusive": false, - "dateTo": "2025-07-26T00:00:00Z", + "dateTo": "2025-07-30T00:00:00Z", "dateToInclusive": false } } @@ -274,7 +274,7 @@ "value": { "dateFilter": { "dateFromInclusive": false, - "dateTo": "2025-07-26T00:00:00Z", + "dateTo": "2025-07-30T00:00:00Z", "dateToInclusive": true } } @@ -284,9 +284,9 @@ "description": "Get activity log entries between specific dates. Inclusive flag defaults to false. If both dates are specified, 'to date' must be later than 'from date'.", "value": { "dateFilter": { - "dateFrom": "2025-07-24T00:00:00Z", + "dateFrom": "2025-07-28T00:00:00Z", "dateFromInclusive": true, - "dateTo": "2025-07-26T00:00:00Z", + "dateTo": "2025-07-30T00:00:00Z", "dateToInclusive": true } } @@ -400,7 +400,7 @@ "description": "Get activity log entries since 7 days ago (inclusive), for which the username contains the word 'admin', with at least one application name matching 'MI Explore' (case-insensitive), database key that matches 'MI_Training' (case-insensitive) and usage mode equal to 'view'.", "value": { "dateFilter": { - "dateFrom": "2025-07-24T00:00:00Z", + "dateFrom": "2025-07-28T00:00:00Z", "dateFromInclusive": true, "dateToInclusive": false }, @@ -433,7 +433,7 @@ "description": "Get activity log entries after a specific date. Inclusive flag defaults to false. If date filter is specified either from or to date must be set.", "value": { "dateFilter": { - "dateFrom": "2025-07-24T00:00:00Z", + "dateFrom": "2025-07-28T00:00:00Z", "dateFromInclusive": false, "dateToInclusive": false } @@ -444,7 +444,7 @@ "description": "Get activity log entries after or on a specific date. Inclusive flag defaults to false. If date filter is specified either from or to date must be set.", "value": { "dateFilter": { - "dateFrom": "2025-07-24T00:00:00Z", + "dateFrom": "2025-07-28T00:00:00Z", "dateFromInclusive": true, "dateToInclusive": false } @@ -456,7 +456,7 @@ "value": { "dateFilter": { "dateFromInclusive": false, - "dateTo": "2025-07-26T00:00:00Z", + "dateTo": "2025-07-30T00:00:00Z", "dateToInclusive": false } } @@ -467,7 +467,7 @@ "value": { "dateFilter": { "dateFromInclusive": false, - "dateTo": "2025-07-26T00:00:00Z", + "dateTo": "2025-07-30T00:00:00Z", "dateToInclusive": true } } @@ -477,9 +477,9 @@ "description": "Get activity log entries between specific dates. Inclusive flag defaults to false. If both dates are specified, 'to date' must be later than 'from date'.", "value": { "dateFilter": { - "dateFrom": "2025-07-24T00:00:00Z", + "dateFrom": "2025-07-28T00:00:00Z", "dateFromInclusive": true, - "dateTo": "2025-07-26T00:00:00Z", + "dateTo": "2025-07-30T00:00:00Z", "dateToInclusive": true } } @@ -593,7 +593,7 @@ "description": "Get activity log entries since 7 days ago (inclusive), for which the username contains the word 'admin', with at least one application name matching 'MI Explore' (case-insensitive), database key that matches 'MI_Training' (case-insensitive) and usage mode equal to 'view'.", "value": { "dateFilter": { - "dateFrom": "2025-07-24T00:00:00Z", + "dateFrom": "2025-07-28T00:00:00Z", "dateFromInclusive": true, "dateToInclusive": false }, @@ -626,7 +626,7 @@ "description": "Get activity log entries after a specific date. Inclusive flag defaults to false. If date filter is specified either from or to date must be set.", "value": { "dateFilter": { - "dateFrom": "2025-07-24T00:00:00Z", + "dateFrom": "2025-07-28T00:00:00Z", "dateFromInclusive": false, "dateToInclusive": false } @@ -637,7 +637,7 @@ "description": "Get activity log entries after or on a specific date. Inclusive flag defaults to false. If date filter is specified either from or to date must be set.", "value": { "dateFilter": { - "dateFrom": "2025-07-24T00:00:00Z", + "dateFrom": "2025-07-28T00:00:00Z", "dateFromInclusive": true, "dateToInclusive": false } @@ -649,7 +649,7 @@ "value": { "dateFilter": { "dateFromInclusive": false, - "dateTo": "2025-07-26T00:00:00Z", + "dateTo": "2025-07-30T00:00:00Z", "dateToInclusive": false } } @@ -660,7 +660,7 @@ "value": { "dateFilter": { "dateFromInclusive": false, - "dateTo": "2025-07-26T00:00:00Z", + "dateTo": "2025-07-30T00:00:00Z", "dateToInclusive": true } } @@ -670,9 +670,9 @@ "description": "Get activity log entries between specific dates. Inclusive flag defaults to false. If both dates are specified, 'to date' must be later than 'from date'.", "value": { "dateFilter": { - "dateFrom": "2025-07-24T00:00:00Z", + "dateFrom": "2025-07-28T00:00:00Z", "dateFromInclusive": true, - "dateTo": "2025-07-26T00:00:00Z", + "dateTo": "2025-07-30T00:00:00Z", "dateToInclusive": true } } @@ -786,7 +786,7 @@ "description": "Get activity log entries since 7 days ago (inclusive), for which the username contains the word 'admin', with at least one application name matching 'MI Explore' (case-insensitive), database key that matches 'MI_Training' (case-insensitive) and usage mode equal to 'view'.", "value": { "dateFilter": { - "dateFrom": "2025-07-24T00:00:00Z", + "dateFrom": "2025-07-28T00:00:00Z", "dateFromInclusive": true, "dateToInclusive": false }, @@ -826,7 +826,7 @@ "value": { "entries": [ { - "date": "2025-07-31T00:00:00+00:00", + "date": "2025-08-04T00:00:00+00:00", "username": "mi_user", "applicationNames": [ "MI Viewer" @@ -835,7 +835,7 @@ "usageMode": "edit" }, { - "date": "2025-07-30T00:00:00+00:00", + "date": "2025-08-03T00:00:00+00:00", "username": "mi_user", "applicationNames": [ "MI Explore", @@ -860,7 +860,7 @@ "value": { "entries": [ { - "date": "2025-07-31T00:00:00+00:00", + "date": "2025-08-04T00:00:00+00:00", "username": "mi_user", "applicationNames": [ "MI Viewer" @@ -869,7 +869,7 @@ "usageMode": "edit" }, { - "date": "2025-07-30T00:00:00+00:00", + "date": "2025-08-03T00:00:00+00:00", "username": "mi_user", "applicationNames": [ "MI Explore", @@ -894,7 +894,7 @@ "value": { "entries": [ { - "date": "2025-07-31T00:00:00+00:00", + "date": "2025-08-04T00:00:00+00:00", "username": "mi_user", "applicationNames": [ "MI Viewer" @@ -903,7 +903,7 @@ "usageMode": "edit" }, { - "date": "2025-07-30T00:00:00+00:00", + "date": "2025-08-03T00:00:00+00:00", "username": "mi_user", "applicationNames": [ "MI Explore", @@ -1096,7 +1096,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "450ddc63-f4b2-4443-9791-bf4c96945db4", + "criterionGuid": "c1f3ea97-9c79-44b6-a00e-a912a221bd05", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1122,7 +1122,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "58bb9e11-3f11-45e9-b6e6-37d273bd5bb8", + "criterionGuid": "036e983c-5dff-4230-82e8-8f5f30ec5e65", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1154,7 +1154,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "838971fc-6c2d-4c72-a965-c63c8775f981", + "criterionGuid": "6307c84b-1038-4231-a6c9-8e0936bc2657", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1316,7 +1316,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "450ddc63-f4b2-4443-9791-bf4c96945db4", + "criterionGuid": "c1f3ea97-9c79-44b6-a00e-a912a221bd05", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1342,7 +1342,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "58bb9e11-3f11-45e9-b6e6-37d273bd5bb8", + "criterionGuid": "036e983c-5dff-4230-82e8-8f5f30ec5e65", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1374,7 +1374,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "838971fc-6c2d-4c72-a965-c63c8775f981", + "criterionGuid": "6307c84b-1038-4231-a6c9-8e0936bc2657", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1536,7 +1536,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "450ddc63-f4b2-4443-9791-bf4c96945db4", + "criterionGuid": "c1f3ea97-9c79-44b6-a00e-a912a221bd05", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1562,7 +1562,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "58bb9e11-3f11-45e9-b6e6-37d273bd5bb8", + "criterionGuid": "036e983c-5dff-4230-82e8-8f5f30ec5e65", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1594,7 +1594,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "838971fc-6c2d-4c72-a965-c63c8775f981", + "criterionGuid": "6307c84b-1038-4231-a6c9-8e0936bc2657", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1756,7 +1756,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "450ddc63-f4b2-4443-9791-bf4c96945db4", + "criterionGuid": "c1f3ea97-9c79-44b6-a00e-a912a221bd05", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1782,7 +1782,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "58bb9e11-3f11-45e9-b6e6-37d273bd5bb8", + "criterionGuid": "036e983c-5dff-4230-82e8-8f5f30ec5e65", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -1814,7 +1814,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "838971fc-6c2d-4c72-a965-c63c8775f981", + "criterionGuid": "6307c84b-1038-4231-a6c9-8e0936bc2657", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2062,7 +2062,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "c8af2ef4-214b-4e4f-bf27-c882716e6380", + "criterionGuid": "84cdda3b-9e8b-4f15-abe3-a10d6e41fe5b", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2088,7 +2088,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "4d3f395b-6200-46ed-88c2-34919a681de2", + "criterionGuid": "47d24423-35cc-44a4-9031-3bdbca8986aa", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2120,7 +2120,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "fb41c162-c18b-4b34-87c0-0ace1e09c8cc", + "criterionGuid": "7bc59ee0-e555-4089-a198-797e3c16b26a", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2282,7 +2282,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "c8af2ef4-214b-4e4f-bf27-c882716e6380", + "criterionGuid": "84cdda3b-9e8b-4f15-abe3-a10d6e41fe5b", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2308,7 +2308,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "4d3f395b-6200-46ed-88c2-34919a681de2", + "criterionGuid": "47d24423-35cc-44a4-9031-3bdbca8986aa", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2340,7 +2340,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "fb41c162-c18b-4b34-87c0-0ace1e09c8cc", + "criterionGuid": "7bc59ee0-e555-4089-a198-797e3c16b26a", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2502,7 +2502,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "c8af2ef4-214b-4e4f-bf27-c882716e6380", + "criterionGuid": "84cdda3b-9e8b-4f15-abe3-a10d6e41fe5b", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2528,7 +2528,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "4d3f395b-6200-46ed-88c2-34919a681de2", + "criterionGuid": "47d24423-35cc-44a4-9031-3bdbca8986aa", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2560,7 +2560,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "fb41c162-c18b-4b34-87c0-0ace1e09c8cc", + "criterionGuid": "7bc59ee0-e555-4089-a198-797e3c16b26a", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2722,7 +2722,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "c8af2ef4-214b-4e4f-bf27-c882716e6380", + "criterionGuid": "84cdda3b-9e8b-4f15-abe3-a10d6e41fe5b", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2748,7 +2748,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "4d3f395b-6200-46ed-88c2-34919a681de2", + "criterionGuid": "47d24423-35cc-44a4-9031-3bdbca8986aa", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -2780,7 +2780,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "fb41c162-c18b-4b34-87c0-0ace1e09c8cc", + "criterionGuid": "7bc59ee0-e555-4089-a198-797e3c16b26a", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3017,7 +3017,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "da2f2c1e-6e7c-4058-9fa4-6cd3764e83db", + "criterionGuid": "a2af74b5-ec12-47ac-ab58-41799927c6a3", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3043,7 +3043,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "c6cd5103-9592-4640-aadc-89025f6364d5", + "criterionGuid": "f3364063-7e8c-412d-be60-5d546d58559b", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3075,7 +3075,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "e5d0e146-a2fd-4769-afe2-9be35fb02992", + "criterionGuid": "87d5cba4-f522-4e25-9c8c-01e19dc4c5f7", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3237,7 +3237,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "da2f2c1e-6e7c-4058-9fa4-6cd3764e83db", + "criterionGuid": "a2af74b5-ec12-47ac-ab58-41799927c6a3", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3263,7 +3263,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "c6cd5103-9592-4640-aadc-89025f6364d5", + "criterionGuid": "f3364063-7e8c-412d-be60-5d546d58559b", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3295,7 +3295,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "e5d0e146-a2fd-4769-afe2-9be35fb02992", + "criterionGuid": "87d5cba4-f522-4e25-9c8c-01e19dc4c5f7", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3457,7 +3457,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "da2f2c1e-6e7c-4058-9fa4-6cd3764e83db", + "criterionGuid": "a2af74b5-ec12-47ac-ab58-41799927c6a3", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3483,7 +3483,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "c6cd5103-9592-4640-aadc-89025f6364d5", + "criterionGuid": "f3364063-7e8c-412d-be60-5d546d58559b", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3515,7 +3515,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "e5d0e146-a2fd-4769-afe2-9be35fb02992", + "criterionGuid": "87d5cba4-f522-4e25-9c8c-01e19dc4c5f7", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3677,7 +3677,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "da2f2c1e-6e7c-4058-9fa4-6cd3764e83db", + "criterionGuid": "a2af74b5-ec12-47ac-ab58-41799927c6a3", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3703,7 +3703,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "c6cd5103-9592-4640-aadc-89025f6364d5", + "criterionGuid": "f3364063-7e8c-412d-be60-5d546d58559b", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3735,7 +3735,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "e5d0e146-a2fd-4769-afe2-9be35fb02992", + "criterionGuid": "87d5cba4-f522-4e25-9c8c-01e19dc4c5f7", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3945,7 +3945,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "130ea1b0-42dc-4e78-b656-e983d9ceaa6e", + "criterionGuid": "301e7747-5374-49df-a464-7f471b6034d2", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -3971,7 +3971,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "8f49c348-0ada-4d3b-83ae-348ee3db170e", + "criterionGuid": "aa9922da-0d2d-48f4-b4e5-c2549337a1be", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -4003,7 +4003,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "83d384ec-9999-4c76-ad15-2bc44e92ee49", + "criterionGuid": "4cf1bbb3-3361-4f4e-8f47-8a91c528e2fe", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -4165,7 +4165,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "130ea1b0-42dc-4e78-b656-e983d9ceaa6e", + "criterionGuid": "301e7747-5374-49df-a464-7f471b6034d2", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -4191,7 +4191,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "8f49c348-0ada-4d3b-83ae-348ee3db170e", + "criterionGuid": "aa9922da-0d2d-48f4-b4e5-c2549337a1be", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -4223,7 +4223,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "83d384ec-9999-4c76-ad15-2bc44e92ee49", + "criterionGuid": "4cf1bbb3-3361-4f4e-8f47-8a91c528e2fe", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -4385,7 +4385,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "130ea1b0-42dc-4e78-b656-e983d9ceaa6e", + "criterionGuid": "301e7747-5374-49df-a464-7f471b6034d2", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -4411,7 +4411,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "8f49c348-0ada-4d3b-83ae-348ee3db170e", + "criterionGuid": "aa9922da-0d2d-48f4-b4e5-c2549337a1be", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -4443,7 +4443,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "83d384ec-9999-4c76-ad15-2bc44e92ee49", + "criterionGuid": "4cf1bbb3-3361-4f4e-8f47-8a91c528e2fe", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -4605,7 +4605,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "130ea1b0-42dc-4e78-b656-e983d9ceaa6e", + "criterionGuid": "301e7747-5374-49df-a464-7f471b6034d2", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -4631,7 +4631,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "8f49c348-0ada-4d3b-83ae-348ee3db170e", + "criterionGuid": "aa9922da-0d2d-48f4-b4e5-c2549337a1be", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -4663,7 +4663,7 @@ }, "aggregationCriteria": [ { - "criterionGuid": "83d384ec-9999-4c76-ad15-2bc44e92ee49", + "criterionGuid": "4cf1bbb3-3361-4f4e-8f47-8a91c528e2fe", "numberOfTerms": 10, "prefix": "st", "attributes": { @@ -8344,7 +8344,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-31T14:02:42.2146914+00:00" + "value": "2025-08-04T11:05:31.3200165+00:00" } }, "Example 11": { @@ -8567,7 +8567,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-31T14:02:42.2146914+00:00" + "value": "2025-08-04T11:05:31.3200165+00:00" } }, "Example 11": { @@ -8790,7 +8790,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-31T14:02:42.2146914+00:00" + "value": "2025-08-04T11:05:31.3200165+00:00" } }, "Example 11": { @@ -9013,7 +9013,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-31T14:02:42.2146914+00:00" + "value": "2025-08-04T11:05:31.3200165+00:00" } }, "Example 11": { @@ -9562,7 +9562,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-31T14:02:42.2303188+00:00" + "value": "2025-08-04T11:05:31.3356877+00:00" } }, "Example 25": { @@ -9785,7 +9785,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-31T14:02:42.2303188+00:00" + "value": "2025-08-04T11:05:31.3356877+00:00" } }, "Example 25": { @@ -10008,7 +10008,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-31T14:02:42.2303188+00:00" + "value": "2025-08-04T11:05:31.3356877+00:00" } }, "Example 25": { @@ -10231,7 +10231,7 @@ "description": "This example demonstrates how to set the value for a DateTime datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-31T14:02:42.2303188+00:00" + "value": "2025-08-04T11:05:31.3356877+00:00" } }, "Example 25": { @@ -10708,7 +10708,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-31T14:02:42.2303188+00:00" + "value": "2025-08-04T11:05:31.3356877+00:00" } }, "Example 8": { @@ -10805,7 +10805,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-31T14:02:42.2303188+00:00" + "value": "2025-08-04T11:05:31.3356877+00:00" } }, "Example 8": { @@ -10902,7 +10902,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-31T14:02:42.2303188+00:00" + "value": "2025-08-04T11:05:31.3356877+00:00" } }, "Example 8": { @@ -10999,7 +10999,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-31T14:02:42.2303188+00:00" + "value": "2025-08-04T11:05:31.3356877+00:00" } }, "Example 8": { @@ -11455,7 +11455,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-31T14:02:42.2459713+00:00" + "value": "2025-08-04T11:05:31.3356877+00:00" } }, "Example 17": { @@ -11552,7 +11552,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-31T14:02:42.2459713+00:00" + "value": "2025-08-04T11:05:31.3356877+00:00" } }, "Example 17": { @@ -11649,7 +11649,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-31T14:02:42.2459713+00:00" + "value": "2025-08-04T11:05:31.3356877+00:00" } }, "Example 17": { @@ -11746,7 +11746,7 @@ "description": "This example demonstrates how to set the value for a DateTime cell datum.", "value": { "setDatumType": "datetime", - "value": "2025-07-31T14:02:42.2459713+00:00" + "value": "2025-08-04T11:05:31.3356877+00:00" } }, "Example 17": { @@ -17797,6 +17797,72 @@ } } } + }, + "post": { + "tags": [ + "DataUpdater" + ], + "summary": "Register an update", + "operationId": "RegisterUpdate", + "parameters": [ + { + "name": "database-key", + "in": "path", + "description": "See [Schema - Databases/GetAllDatabases](#/Schema%20-%20Databases/GetAllDatabases)", + "required": true, + "schema": { + "type": "string", + "description": "See [Schema - Databases/GetAllDatabases](#/Schema%20-%20Databases/GetAllDatabases)", + "example": "MI_TRAINING" + } + } + ], + "requestBody": { + "content": { + "application/json-patch+json": { + "schema": { + "$ref": "#/components/schemas/GsaRegisterUpdateRequest" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GsaRegisterUpdateRequest" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GsaRegisterUpdateRequest" + } + }, + "application/*+json": { + "schema": { + "$ref": "#/components/schemas/GsaRegisterUpdateRequest" + } + } + } + }, + "responses": { + "200": { + "description": "OK", + "content": { + "text/plain": { + "schema": { + "$ref": "#/components/schemas/GsaDataUpdateToken" + } + }, + "application/json": { + "schema": { + "$ref": "#/components/schemas/GsaDataUpdateToken" + } + }, + "text/json": { + "schema": { + "$ref": "#/components/schemas/GsaDataUpdateToken" + } + } + } + } + } } }, "/v1alpha/dataupdater/updates/{database-key}/{update-token-guid}": { @@ -17851,6 +17917,118 @@ } } }, + "/v1alpha/dataupdater/updates/{database-key}/{update-token-guid}:dry-run": { + "post": { + "tags": [ + "DataUpdater" + ], + "summary": "Start a dry run job for a given update", + "operationId": "DryRunUpdate", + "parameters": [ + { + "name": "database-key", + "in": "path", + "description": "See [Schema - Databases/GetAllDatabases](#/Schema%20-%20Databases/GetAllDatabases)", + "required": true, + "schema": { + "type": "string", + "description": "See [Schema - Databases/GetAllDatabases](#/Schema%20-%20Databases/GetAllDatabases)", + "example": "MI_TRAINING" + } + }, + { + "name": "update-token-guid", + "in": "path", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, + "/v1alpha/dataupdater/updates/{database-key}/{update-token-guid}:apply": { + "post": { + "tags": [ + "DataUpdater" + ], + "summary": "Start an apply job for a given update", + "operationId": "ApplyUpdate", + "parameters": [ + { + "name": "database-key", + "in": "path", + "description": "See [Schema - Databases/GetAllDatabases](#/Schema%20-%20Databases/GetAllDatabases)", + "required": true, + "schema": { + "type": "string", + "description": "See [Schema - Databases/GetAllDatabases](#/Schema%20-%20Databases/GetAllDatabases)", + "example": "MI_TRAINING" + } + }, + { + "name": "update-token-guid", + "in": "path", + "required": true, + "schema": { + "type": "string", + "format": "uuid" + } + } + ], + "responses": { + "200": { + "description": "OK", + "content": { + "text/plain": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "application/json": { + "schema": { + "type": "string", + "format": "uuid" + } + }, + "text/json": { + "schema": { + "type": "string", + "format": "uuid" + } + } + } + } + } + } + }, "/v1alpha/databases/{database-key}/tables/{table-guid}/record-histories/{record-history-guid}/record-versions/{record-version-guid}/attributes/{attribute-guid}/graph": { "get": { "tags": [ @@ -21261,7 +21439,7 @@ "description": "Search for the audit log items for the first 10 times the given list had an item added or removed", "value": { "listIdentifiers": [ - "202251e0-d725-4f65-9111-cad46859b038" + "bf0e6256-c99b-4114-a1c5-ca17a8a8f228" ], "listActionsToInclude": [ "ItemAdded", @@ -21285,7 +21463,7 @@ "description": "Search for the audit log items for the first 10 times the given list had an item added or removed", "value": { "listIdentifiers": [ - "202251e0-d725-4f65-9111-cad46859b038" + "bf0e6256-c99b-4114-a1c5-ca17a8a8f228" ], "listActionsToInclude": [ "ItemAdded", @@ -21309,7 +21487,7 @@ "description": "Search for the audit log items for the first 10 times the given list had an item added or removed", "value": { "listIdentifiers": [ - "202251e0-d725-4f65-9111-cad46859b038" + "bf0e6256-c99b-4114-a1c5-ca17a8a8f228" ], "listActionsToInclude": [ "ItemAdded", @@ -21333,7 +21511,7 @@ "description": "Search for the audit log items for the first 10 times the given list had an item added or removed", "value": { "listIdentifiers": [ - "202251e0-d725-4f65-9111-cad46859b038" + "bf0e6256-c99b-4114-a1c5-ca17a8a8f228" ], "listActionsToInclude": [ "ItemAdded", @@ -22828,15 +23006,15 @@ "categories": [ { "name": "Geo", - "guid": "234d5696-ea0d-4dd0-92cc-c5f91fe78237" + "guid": "14a640c3-c5b3-49de-a12e-7701a5a82765" }, { "name": "Sensitivity", - "guid": "282b5ba5-5452-4a96-afdc-3573c888143e" + "guid": "eb3e33cf-388a-4981-8a15-77d7d16c3029" }, { "name": "Division", - "guid": "e95cb76b-47da-4536-abce-65d02fff56f3" + "guid": "13202738-6acf-4066-9f86-f79e199ed7d2" } ] } @@ -22896,19 +23074,19 @@ "permissions": [ { "name": "US", - "guid": "f3286f1a-be91-40d3-ae31-0a420c1bb667" + "guid": "135dac44-dee7-4284-b2cb-f5dfd8cd5c5c" }, { "name": "EMEA", - "guid": "6015cd25-6623-41b8-8aca-6825fcf46dff" + "guid": "0587a89a-a391-4e2e-bf03-3c0b63fa4831" }, { "name": "APAC", - "guid": "79c2e137-d067-4fee-8d12-d90231ac5cb2" + "guid": "168aae4e-ad90-4c56-ab97-ffe4b5fe6d9a" } ], "name": "Geo", - "guid": "234d5696-ea0d-4dd0-92cc-c5f91fe78237" + "guid": "14a640c3-c5b3-49de-a12e-7701a5a82765" } } } @@ -22966,15 +23144,15 @@ "permissions": [ { "name": "US", - "guid": "f3286f1a-be91-40d3-ae31-0a420c1bb667" + "guid": "135dac44-dee7-4284-b2cb-f5dfd8cd5c5c" }, { "name": "EMEA", - "guid": "6015cd25-6623-41b8-8aca-6825fcf46dff" + "guid": "0587a89a-a391-4e2e-bf03-3c0b63fa4831" }, { "name": "APAC", - "guid": "79c2e137-d067-4fee-8d12-d90231ac5cb2" + "guid": "168aae4e-ad90-4c56-ab97-ffe4b5fe6d9a" } ] } @@ -23045,7 +23223,7 @@ "setMessage": "Permission set", "unsetMessage": "No permission set", "name": "US", - "guid": "f3286f1a-be91-40d3-ae31-0a420c1bb667" + "guid": "135dac44-dee7-4284-b2cb-f5dfd8cd5c5c" } } } @@ -23338,7 +23516,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "91ef9b96-1dc1-4b63-9fd6-f0b8ac93cea9" + "guid": "c1a760fb-53ff-4ae8-ba88-55bef3081a1e" } }, "Example 4": { @@ -23400,7 +23578,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "91ef9b96-1dc1-4b63-9fd6-f0b8ac93cea9" + "guid": "c1a760fb-53ff-4ae8-ba88-55bef3081a1e" } }, "Example 4": { @@ -23462,7 +23640,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "91ef9b96-1dc1-4b63-9fd6-f0b8ac93cea9" + "guid": "c1a760fb-53ff-4ae8-ba88-55bef3081a1e" } }, "Example 4": { @@ -23524,7 +23702,7 @@ "parent": { "guid": "f92315e2-f836-4c2e-aba1-6d8a1a49e8a3" }, - "guid": "91ef9b96-1dc1-4b63-9fd6-f0b8ac93cea9" + "guid": "c1a760fb-53ff-4ae8-ba88-55bef3081a1e" } }, "Example 4": { @@ -23580,11 +23758,11 @@ "versionNumber": 1, "versionState": "unversioned", "name": "New Alumino Silicate Record", - "guid": "354b2f38-fc21-411f-808a-d4eb68e1560b" + "guid": "9e8cc213-4854-4aa1-aa70-0ba3b6de8660" } ], "subsets": [], - "guid": "7077714d-6a1e-4ad6-81fd-0263a64be0ba" + "guid": "aa2d709e-ef78-49e4-9daa-64fce199ef9e" } } } @@ -24321,7 +24499,7 @@ "guid": "0000b135-0010-4fff-8fff-dd92ffff0000" } ], - "guid": "2f012388-8a26-497e-b4ae-5ddcc6d355f8" + "guid": "675c03d4-c09a-4718-8ece-a29f7b86242c" } } } @@ -24611,7 +24789,7 @@ "guid": "0000b135-0010-4fff-8fff-dd92ffff0000" } ], - "guid": "02a64a97-b131-48ad-8ce3-773a0dc9e8d5" + "guid": "6f471145-61ed-4d32-a8a0-dad92a68f814" } } } @@ -25221,7 +25399,7 @@ "Example 3": { "summary": "Parent is not released.", "value": { - "message": "Cannot release record version with GUID '79783fe4-321e-4d92-944d-6318e5780317'.", + "message": "Cannot release record version with GUID '507e8662-ea73-4c8e-98a8-d46d17ea11f1'.", "code": "releaseRecordVersionControl", "errors": [ { @@ -25376,7 +25554,7 @@ "Example 3": { "summary": "Record version is not the latest version.", "value": { - "message": "Cannot create a new version from the record version with GUID 'dc61cbb8-6e30-42ff-9d0d-6a70a154ab89'.", + "message": "Cannot create a new version from the record version with GUID 'e50d04ba-a938-4de1-9625-f97a06e0a6e8'.", "code": "getModifiableRecordVersionControl", "errors": [ { @@ -25386,7 +25564,7 @@ "versionNumber": 2, "versionState": "unreleased", "name": "Arsenic trioxide [1327-53-3] - new version", - "guid": "bf6a1011-12e5-42af-ae3d-cef4676c8df3" + "guid": "9f195d68-a272-417e-8f34-6166e2560e74" } } ] @@ -25880,8 +26058,8 @@ "resolvedLinkTargets": [ { "linkTarget": { - "databaseGuid": "38184ee4-d885-464b-a241-117c3e95650e", - "tableGuid": "dd4221d3-f517-439f-b03b-b168552549b7" + "databaseGuid": "4bf95d0d-d818-454e-bfa6-df11b96e604d", + "tableGuid": "dbf51d6d-9cbe-400b-8dd7-5ace92d004f7" }, "tables": [] }, @@ -26082,7 +26260,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "ef02be10-9837-46df-a199-7c2998e206bf" + "guid": "72819acd-2bfb-49ac-9ca6-7d833dd6006d" } }, "Example 4": { @@ -26495,7 +26673,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "ef02be10-9837-46df-a199-7c2998e206bf" + "guid": "72819acd-2bfb-49ac-9ca6-7d833dd6006d" } }, "Example 4": { @@ -26908,7 +27086,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "ef02be10-9837-46df-a199-7c2998e206bf" + "guid": "72819acd-2bfb-49ac-9ca6-7d833dd6006d" } }, "Example 4": { @@ -27321,7 +27499,7 @@ "type": "dateTime", "defaultThresholdType": "atMost", "name": "Delivery date (guid)", - "guid": "ef02be10-9837-46df-a199-7c2998e206bf" + "guid": "72819acd-2bfb-49ac-9ca6-7d833dd6006d" } }, "Example 4": { @@ -27810,7 +27988,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "77e3626c-d5ac-412e-a17b-4b666ad9d525" + "guid": "54e9d7f5-954e-4df3-9aa7-b2a72b41ddc7" } ], "primarySmartLinkGroups": [], @@ -27978,8 +28156,8 @@ "code": "attributeCreation", "errors": [ { - "message": "Could not find discrete type with GUID '4147df11-8c93-430c-a134-ea46d14d532c' in database 'MI_Training'.", - "guid": "4147df11-8c93-430c-a134-ea46d14d532c", + "message": "Could not find discrete type with GUID '88553a14-c84a-4466-8384-62f4150462df' in database 'MI_Training'.", + "guid": "88553a14-c84a-4466-8384-62f4150462df", "databaseKey": "MI_Training", "entityType": "discreteType", "reason": "noSuchEntity" @@ -27995,8 +28173,8 @@ "code": "attributeCreation", "errors": [ { - "message": "Could not find unit with GUID '390202b7-0621-4a19-b1f7-91dbf460093d' in database 'MI_Training'.", - "guid": "390202b7-0621-4a19-b1f7-91dbf460093d", + "message": "Could not find unit with GUID '46f72980-07db-4cf8-a9f0-9414e0d24d10' in database 'MI_Training'.", + "guid": "46f72980-07db-4cf8-a9f0-9414e0d24d10", "databaseKey": "MI_Training", "entityType": "unit", "reason": "noSuchEntity" @@ -28009,9 +28187,9 @@ "reason": "noExpressions" }, { - "message": "Parameters in parameter contents must be from this attribute's parameters. GUIDs not found in attribute's parameters: '1db4a018-1d01-43e0-b6c5-d797f7a87e4e'.", + "message": "Parameters in parameter contents must be from this attribute's parameters. GUIDs not found in attribute's parameters: 'c2678daf-9b8a-4f72-b915-97b25cf9145c'.", "parameterGuids": [ - "1db4a018-1d01-43e0-b6c5-d797f7a87e4e" + "c2678daf-9b8a-4f72-b915-97b25cf9145c" ], "reason": "parameterContentUnknownParameters" } @@ -28214,7 +28392,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "37adf6b2-dfe3-4638-a19b-0e19ecc3b24c" + "guid": "afb761a2-92a8-4c0e-b862-86e8de37669e" } ], "primarySmartLinkGroups": [], @@ -29710,7 +29888,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "902af6c1-0917-4e1c-b412-3e33beb32b88" + "guid": "ddf94550-2c95-477a-bb9c-9ed15f36ac0a" } ], "primarySmartLinkGroups": [], @@ -30201,7 +30379,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "d9e4ace4-e09a-461c-b90f-b6adf7d659ea" + "guid": "bc501d95-ae44-45ff-a825-f3f8c0e43701" } ], "primarySmartLinkGroups": [], @@ -30697,7 +30875,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "dd5594b9-9d80-43f3-b063-1e039fdb2baa" + "guid": "0e20d30c-068e-431e-a21f-60088b4844fe" } ], "primarySmartLinkGroups": [], @@ -30908,7 +31086,7 @@ "$ref": "#/components/schemas/GsaAttributeDeletionException" }, "example": { - "message": "Cannot delete attribute with GUID '66755d92-1b6b-42d7-9a45-099e2ee22696'.", + "message": "Cannot delete attribute with GUID '6eac5499-a40e-40cd-ad30-af84d2f62d59'.", "code": "deletion", "errors": [ { @@ -30923,7 +31101,7 @@ "referencedBy": [ { "name": "Search mask that searches in Notes", - "guid": "f9017113-34c9-479b-b3a1-28d623678547" + "guid": "f6c2ed62-106a-4df0-8b03-4e617e24ad73" } ] } @@ -31243,7 +31421,7 @@ "foreignDataLinkGroups": [ { "name": "Source of data (MaterialUniverse)", - "guid": "523c8aeb-e031-4825-a30a-2b72ccaf46bf" + "guid": "50ca0502-66c8-43e6-897b-20a7666fadd7" } ], "primarySmartLinkGroups": [], @@ -31410,8 +31588,8 @@ "message": "The name or GUID is not valid.", "errors": [ { - "message": "MetaAttribute with GUID '3e8b8a4b-880c-4e64-831b-044d14393356' already exists.", - "guid": "3e8b8a4b-880c-4e64-831b-044d14393356", + "message": "MetaAttribute with GUID 'ac47f30b-3f43-48e0-810d-4f134ac00aed' already exists.", + "guid": "ac47f30b-3f43-48e0-810d-4f134ac00aed", "reason": "entityAlreadyExists", "entityType": "metaAttribute" } @@ -33904,7 +34082,7 @@ "description": "Basic configuration that can be used in explore.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "basic configuration", - "guid": "0b1d9513-3817-430b-af44-2fd6c53d1ffa" + "guid": "8dd44291-d6aa-4473-8f4c-e0bfb110f15c" } } } @@ -33929,7 +34107,7 @@ "description": "Basic configuration that can be used in explore.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "basic configuration", - "guid": "0b1d9513-3817-430b-af44-2fd6c53d1ffa" + "guid": "8dd44291-d6aa-4473-8f4c-e0bfb110f15c" } } } @@ -33954,7 +34132,7 @@ "description": "Basic configuration that can be used in explore.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "basic configuration", - "guid": "0b1d9513-3817-430b-af44-2fd6c53d1ffa" + "guid": "8dd44291-d6aa-4473-8f4c-e0bfb110f15c" } } } @@ -33979,7 +34157,7 @@ "description": "Basic configuration that can be used in explore.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "basic configuration", - "guid": "0b1d9513-3817-430b-af44-2fd6c53d1ffa" + "guid": "8dd44291-d6aa-4473-8f4c-e0bfb110f15c" } } } @@ -34170,7 +34348,7 @@ "description": "Updated description for MI_Training Explore 'examples' configuration.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "examples (updated)", - "guid": "c449759d-39e9-492d-99dc-c17d7f1dbae4" + "guid": "136b6155-33df-4695-8560-762256d2169c" } }, "Example 2": { @@ -34194,7 +34372,7 @@ "description": "Updated description for MI_Training Explore 'examples' configuration.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "examples (updated)", - "guid": "c449759d-39e9-492d-99dc-c17d7f1dbae4" + "guid": "136b6155-33df-4695-8560-762256d2169c" } }, "Example 2": { @@ -34218,7 +34396,7 @@ "description": "Updated description for MI_Training Explore 'examples' configuration.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "examples (updated)", - "guid": "c449759d-39e9-492d-99dc-c17d7f1dbae4" + "guid": "136b6155-33df-4695-8560-762256d2169c" } }, "Example 2": { @@ -34242,7 +34420,7 @@ "description": "Updated description for MI_Training Explore 'examples' configuration.", "value": "{\"configurations\": [{\"key\": \"training-materials\",\"displayName\": \"MI Training Materials\",\"default\": true,\"groups\": [\"MI Training examples\"],\"table\": \"MaterialUniverse\",\"loadDataOnDemand\": false,\"description\": \"Explore MaterialUniverse data in the MI Training database\",\"searchLayout\": \"All bulk materials\",\"dataSheetLayout\": \"All bulk materials\",\"editableDatasheetLayout\": \"All bulk materials\",\"searchListLayout\": \"Explore list layout Materials\",\"newRecordLocation\": \"NEW RECORDS/{Base}\",\"subset\": \"All bulk materials\",\"logsliders\": true,\"xyChart\": {\"colorAttribute\": \"UV radiation (sunlight)\",\"colorAttribute2\": \"Flammability\",\"colorAttribute3\": \"Food contact\",\"colorAttribute4\": \"Material form\",\"colorAttribute5\": \"Organic solvents\",\"colorAttribute6\": \"Oxidation at 500C\",\"colorAttribute7\": \"Strong acids\",\"colorAttribute8\": \"Strong alkalis\",\"colorAttribute9\": \"Weak acids\",\"colorAttribute10\": \"Weak alkalis\",\"colorAttribute11\": \"Water (fresh)\",\"colorAttribute12\": \"Water (salt)\",\"colorAttribute13\": \"Transparency\",\"colorAttribute14\": \"Wear resistance\",\"xAttribute\": \"Density\",\"yAttribute\": \"Yield strength (elastic limit)\",\"preventAxisChange\": false,\"xAxisLogarithmic\": true,\"yAxisLogarithmic\": true},\"showBlanks\": false,\"reportsDisabled\": false,\"exportersDisabled\": false,\"tabularEditingEnabled\": true,\"configSwitching\": \"keyOnly\",\"workflowEnabled\": true,\"useCustomFormatters\": {\"Recycle fraction in current supply\": \"recyclingPercent\",\"Recycle\": \"recyclingBool\",\"Biodegrade\": \"biodegradeBool\",\"UV radiation (sunlight)\": \"uvradiationsunlightDiscrete\",\"Flammability\": \"flammabilityDiscrete\",\"Food contact\": \"foodcontactDiscrete\",\"Material form\": \"materialformDiscrete\",\"Organic solvents\": \"organicsolventsDiscrete\",\"Oxidation at 500C\": \"oxidationat500cDiscrete\",\"Strong acids\": \"strongacidsDiscrete\",\"Strong alkalis\": \"strongalkalisDiscrete\",\"Weak acids\": \"weakacidsDiscrete\",\"Weak alkalis\": \"weakalkalisDiscrete\",\"Water (fresh)\": \"waterfreshDiscrete\",\"Water (salt)\": \"watersaltDiscrete\",\"Transparency\": \"transparencyDiscrete\",\"Wear resistance\": \"wearresistanceDiscrete\",\"A renewable resource?\": \"arenewableresourceBool\",\"Combust for energy recovery\": \"combustforenergyrecoveryBool\",\"Downcycle\": \"downcycleBool\",\"Flame retardant additive\": \"flameretardantadditiveBool\",\"Landfill\": \"landfillBool\",\"RoHS (EU) compliant grades?\": \"rohseucompliantgradesBool\",\"Substance declaration available?\": \"substancedeclarationavailableBool\"}}],\"customFormatterDefinitions\": {\"recyclingBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleYes.png\",\"tooltipValue\": \"Can be recycled\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/RecycleNo.png\",\"tooltipValue\": \"Can not be recycled\"},\"chart\": {\"renderColor\": \"red\"}}]},\"biodegradeBool\": {\"attributeFormatter\": {\"list\": {\"columnHeader\": false,\"columnWidth\": 40}},\"valueFormatters\": [{\"match\": true,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafGreen.png\",\"tooltipValue\": \"Can be biodegraded\"},\"chart\": {\"renderColor\": \"green\"}},{\"match\": false,\"list\": {\"iconUrl\": \"/mi_servicelayer/Assets/v1.svc/HelpPageFiles/MI_Training/ExploreImages/LeafRed.png\",\"tooltipValue\": \"Can not be biodegraded\"},\"chart\": {\"renderColor\": \"red\"}}]}}}", "name": "examples (updated)", - "guid": "c449759d-39e9-492d-99dc-c17d7f1dbae4" + "guid": "136b6155-33df-4695-8560-762256d2169c" } }, "Example 2": { @@ -34284,9 +34462,9 @@ "summary": "Invalid File name", "description": "This example demonstrates an error response returned for an invalid request that attempted to rename a Configuration file to ''.", "value": { - "message": "Cannot update Configuration file with GUID '4793b4a2-f234-411e-86d2-d16e6291e13d'.", + "message": "Cannot update Configuration file with GUID '9aafa000-7a17-4eef-b810-d1ca32a0172b'.", "code": "fileUpdate", - "fileGuid": "4793b4a2-f234-411e-86d2-d16e6291e13d", + "fileGuid": "9aafa000-7a17-4eef-b810-d1ca32a0172b", "folderType": "configuration", "errors": [ { @@ -34517,7 +34695,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "5ca2da60-f5b1-441a-9840-d7b3eacdd89f" + "guid": "d6faa0e1-b3b8-41cd-9fa3-3d27aaaa9f14" } }, "Example 3": { @@ -34550,7 +34728,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "5ca2da60-f5b1-441a-9840-d7b3eacdd89f" + "guid": "d6faa0e1-b3b8-41cd-9fa3-3d27aaaa9f14" } }, "Example 3": { @@ -34583,7 +34761,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "5ca2da60-f5b1-441a-9840-d7b3eacdd89f" + "guid": "d6faa0e1-b3b8-41cd-9fa3-3d27aaaa9f14" } }, "Example 3": { @@ -34616,7 +34794,7 @@ "value": { "value": 0.0072973525693, "name": "fine-structure constant (guid)", - "guid": "5ca2da60-f5b1-441a-9840-d7b3eacdd89f" + "guid": "d6faa0e1-b3b8-41cd-9fa3-3d27aaaa9f14" } }, "Example 3": { @@ -34763,7 +34941,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "6258973b-75a1-4712-9359-96fda982cf77" + "guid": "a3f67a90-67f6-4caf-940a-ff0ce6e7aa73" } }, "Example 2": { @@ -34778,7 +34956,7 @@ "description": "This example shows how to update the 'Guid' and 'Unit' properties of the 'Speed of light in Vacuum' constant (guid = 0000000f-0004-4fff-8fff-0000ffff0000) from the MI_Training database. Its unit is changed to 'Ohm'", "value": { "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", - "guid": "26de173b-7529-4e6c-93d4-4d367d89c438" + "guid": "2a896bd1-a18f-4655-a138-b067539eaf76" } } } @@ -34795,7 +34973,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "6258973b-75a1-4712-9359-96fda982cf77" + "guid": "a3f67a90-67f6-4caf-940a-ff0ce6e7aa73" } }, "Example 2": { @@ -34810,7 +34988,7 @@ "description": "This example shows how to update the 'Guid' and 'Unit' properties of the 'Speed of light in Vacuum' constant (guid = 0000000f-0004-4fff-8fff-0000ffff0000) from the MI_Training database. Its unit is changed to 'Ohm'", "value": { "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", - "guid": "26de173b-7529-4e6c-93d4-4d367d89c438" + "guid": "2a896bd1-a18f-4655-a138-b067539eaf76" } } } @@ -34827,7 +35005,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "6258973b-75a1-4712-9359-96fda982cf77" + "guid": "a3f67a90-67f6-4caf-940a-ff0ce6e7aa73" } }, "Example 2": { @@ -34842,7 +35020,7 @@ "description": "This example shows how to update the 'Guid' and 'Unit' properties of the 'Speed of light in Vacuum' constant (guid = 0000000f-0004-4fff-8fff-0000ffff0000) from the MI_Training database. Its unit is changed to 'Ohm'", "value": { "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", - "guid": "26de173b-7529-4e6c-93d4-4d367d89c438" + "guid": "2a896bd1-a18f-4655-a138-b067539eaf76" } } } @@ -34859,7 +35037,7 @@ "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", "value": 376.730313668, "name": "characteristic impedance of vacuum", - "guid": "6258973b-75a1-4712-9359-96fda982cf77" + "guid": "a3f67a90-67f6-4caf-940a-ff0ce6e7aa73" } }, "Example 2": { @@ -34874,7 +35052,7 @@ "description": "This example shows how to update the 'Guid' and 'Unit' properties of the 'Speed of light in Vacuum' constant (guid = 0000000f-0004-4fff-8fff-0000ffff0000) from the MI_Training database. Its unit is changed to 'Ohm'", "value": { "unitGuid": "00000059-0013-4fff-8fff-0000ffff0000", - "guid": "26de173b-7529-4e6c-93d4-4d367d89c438" + "guid": "2a896bd1-a18f-4655-a138-b067539eaf76" } } } @@ -35504,8 +35682,8 @@ "company": "ANSYS, Inc. (updated)", "notes": "MI Training Database for Granta MI v2022R2 and above. This database has been developed to support training classes. Any other use of this database will not be supported by Ansys Granta. (Updated)", "currencyCode": "PLN", - "versionGuid": "96ba03ac-4d69-44d1-b9c9-1d527ec0e569", - "guid": "071e1abb-75a6-4161-b3a0-f115f94e8745", + "versionGuid": "4571b96f-3372-4bb1-826d-51cab66d508f", + "guid": "7bf016ee-0983-4076-ae42-73ba0638e0eb", "name": "MI Training (Updated)" } }, @@ -35530,8 +35708,8 @@ "company": "ANSYS, Inc. (updated)", "notes": "MI Training Database for Granta MI v2022R2 and above. This database has been developed to support training classes. Any other use of this database will not be supported by Ansys Granta. (Updated)", "currencyCode": "PLN", - "versionGuid": "96ba03ac-4d69-44d1-b9c9-1d527ec0e569", - "guid": "071e1abb-75a6-4161-b3a0-f115f94e8745", + "versionGuid": "4571b96f-3372-4bb1-826d-51cab66d508f", + "guid": "7bf016ee-0983-4076-ae42-73ba0638e0eb", "name": "MI Training (Updated)" } }, @@ -35556,8 +35734,8 @@ "company": "ANSYS, Inc. (updated)", "notes": "MI Training Database for Granta MI v2022R2 and above. This database has been developed to support training classes. Any other use of this database will not be supported by Ansys Granta. (Updated)", "currencyCode": "PLN", - "versionGuid": "96ba03ac-4d69-44d1-b9c9-1d527ec0e569", - "guid": "071e1abb-75a6-4161-b3a0-f115f94e8745", + "versionGuid": "4571b96f-3372-4bb1-826d-51cab66d508f", + "guid": "7bf016ee-0983-4076-ae42-73ba0638e0eb", "name": "MI Training (Updated)" } }, @@ -35582,8 +35760,8 @@ "company": "ANSYS, Inc. (updated)", "notes": "MI Training Database for Granta MI v2022R2 and above. This database has been developed to support training classes. Any other use of this database will not be supported by Ansys Granta. (Updated)", "currencyCode": "PLN", - "versionGuid": "96ba03ac-4d69-44d1-b9c9-1d527ec0e569", - "guid": "071e1abb-75a6-4161-b3a0-f115f94e8745", + "versionGuid": "4571b96f-3372-4bb1-826d-51cab66d508f", + "guid": "7bf016ee-0983-4076-ae42-73ba0638e0eb", "name": "MI Training (Updated)" } }, @@ -36033,13 +36211,13 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "b472820b-4e51-43b5-a99d-3092ff26aa26", - "tableGuid": "454ae6c8-20eb-4a9c-b04f-6e4a003c5245" + "databaseGuid": "0617c412-266a-4e40-ad91-b709aa2e1107", + "tableGuid": "51782a19-217e-4351-b55c-b7f73dcc09a1" } }, "displayNames": {}, "name": "Cross database link group : MI Training MaterialUniverse - Second Training Database And Table", - "guid": "d83706b1-2817-43d1-83c4-3c29753ae91f" + "guid": "20a25352-5554-40a0-918f-ba287fe63811" }, { "type": "tabularAttribute", @@ -37030,7 +37208,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "f4c93975-d06f-4004-808d-989b1f04a77c" + "guid": "4558eeaa-00ec-4471-9624-40757de9e7d7" } } } @@ -37052,7 +37230,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "f4c93975-d06f-4004-808d-989b1f04a77c" + "guid": "4558eeaa-00ec-4471-9624-40757de9e7d7" } } } @@ -37074,7 +37252,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "f4c93975-d06f-4004-808d-989b1f04a77c" + "guid": "4558eeaa-00ec-4471-9624-40757de9e7d7" } } } @@ -37096,7 +37274,7 @@ "description": "This example demonstrates how to create a new discrete value with a specified guid value.", "value": { "name": "New Discrete Value 2", - "guid": "f4c93975-d06f-4004-808d-989b1f04a77c" + "guid": "4558eeaa-00ec-4471-9624-40757de9e7d7" } } } @@ -38440,7 +38618,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "42d8a28e-8b15-43f9-87d6-efab47e805b8" + "guid": "e3b6ae66-59d3-4e36-bc4f-05975e88a783" } } } @@ -38461,7 +38639,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "42d8a28e-8b15-43f9-87d6-efab47e805b8" + "guid": "e3b6ae66-59d3-4e36-bc4f-05975e88a783" } } } @@ -38482,7 +38660,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "42d8a28e-8b15-43f9-87d6-efab47e805b8" + "guid": "e3b6ae66-59d3-4e36-bc4f-05975e88a783" } } } @@ -38503,7 +38681,7 @@ "summary": "Change guid for Exporter Folder", "description": "This example demonstrates how to modify the guid of an existing Exporter folder.", "value": { - "guid": "42d8a28e-8b15-43f9-87d6-efab47e805b8" + "guid": "e3b6ae66-59d3-4e36-bc4f-05975e88a783" } } } @@ -39161,11 +39339,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "25c9618d-5818-4bae-ad16-83ff3066b5c4" + "guid": "ca013d15-607b-40ff-b8b0-b7f7c488bc94" }, { "name": "no-transform.xslt", - "guid": "d4ec883e-b0e4-4f92-b848-b02b6887f6f1" + "guid": "d10acd37-6578-48f5-a726-4bb31e5df475" } ] } @@ -39178,11 +39356,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "25c9618d-5818-4bae-ad16-83ff3066b5c4" + "guid": "ca013d15-607b-40ff-b8b0-b7f7c488bc94" }, { "name": "no-transform.xslt", - "guid": "d4ec883e-b0e4-4f92-b848-b02b6887f6f1" + "guid": "d10acd37-6578-48f5-a726-4bb31e5df475" } ] } @@ -39195,11 +39373,11 @@ "files": [ { "name": "exporter-1.exp", - "guid": "25c9618d-5818-4bae-ad16-83ff3066b5c4" + "guid": "ca013d15-607b-40ff-b8b0-b7f7c488bc94" }, { "name": "no-transform.xslt", - "guid": "d4ec883e-b0e4-4f92-b848-b02b6887f6f1" + "guid": "d10acd37-6578-48f5-a726-4bb31e5df475" } ] } @@ -39280,7 +39458,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "2bf10ef4-d8ab-4011-88b6-fdd548584a07" + "guid": "2c15ba17-93e8-44ce-bd97-75695363d8b2" } }, "application/json": { @@ -39294,7 +39472,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "2bf10ef4-d8ab-4011-88b6-fdd548584a07" + "guid": "2c15ba17-93e8-44ce-bd97-75695363d8b2" } }, "text/json": { @@ -39308,7 +39486,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "2bf10ef4-d8ab-4011-88b6-fdd548584a07" + "guid": "2c15ba17-93e8-44ce-bd97-75695363d8b2" } } } @@ -39476,7 +39654,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "fad06ca5-83f8-4406-a2bc-787ed1d198d8" + "guid": "19e42780-8360-4e41-8e8e-874cc3cf682c" } }, "application/json": { @@ -39490,7 +39668,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "fad06ca5-83f8-4406-a2bc-787ed1d198d8" + "guid": "19e42780-8360-4e41-8e8e-874cc3cf682c" } }, "text/json": { @@ -39504,7 +39682,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "fad06ca5-83f8-4406-a2bc-787ed1d198d8" + "guid": "19e42780-8360-4e41-8e8e-874cc3cf682c" } } } @@ -39576,7 +39754,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "80d1132f-f55a-4a94-9b50-efa2c964e142" + "guid": "8d01c8a9-b3af-41f9-aa77-2f19d323e26d" } } } @@ -39604,7 +39782,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "80d1132f-f55a-4a94-9b50-efa2c964e142" + "guid": "8d01c8a9-b3af-41f9-aa77-2f19d323e26d" } } } @@ -39632,7 +39810,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "80d1132f-f55a-4a94-9b50-efa2c964e142" + "guid": "8d01c8a9-b3af-41f9-aa77-2f19d323e26d" } } } @@ -39660,7 +39838,7 @@ "summary": "Change guid for Exporter File", "description": "This example demonstrates how to modify the guid of an existing Exporter file.", "value": { - "guid": "80d1132f-f55a-4a94-9b50-efa2c964e142" + "guid": "8d01c8a9-b3af-41f9-aa77-2f19d323e26d" } } } @@ -39682,7 +39860,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "067157ad-2655-4812-9fee-2706c8b45bc1" + "guid": "b972b2d6-d34e-4da6-8252-c577e307939c" } }, "application/json": { @@ -39696,7 +39874,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "067157ad-2655-4812-9fee-2706c8b45bc1" + "guid": "b972b2d6-d34e-4da6-8252-c577e307939c" } }, "text/json": { @@ -39710,7 +39888,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "067157ad-2655-4812-9fee-2706c8b45bc1" + "guid": "b972b2d6-d34e-4da6-8252-c577e307939c" } } } @@ -39727,9 +39905,9 @@ "summary": "File with same name already exists", "description": "This example demonstrates an error response returned for an invalid request that attempted to rename an Exporter file in the 'Abaqus' folder (GUID '41aba877-8fe0-4295-bddb-6f8b270a40ff') to have name 'AbaqusFunctions.xsl', but there is already a file with that name and parent.", "value": { - "message": "Cannot update Exporter file with GUID '46016bfd-3d97-400c-84db-05a2b9f0ff53'.", + "message": "Cannot update Exporter file with GUID 'c2154167-235e-410e-a1f4-a11729ffb6cc'.", "code": "fileUpdate", - "fileGuid": "46016bfd-3d97-400c-84db-05a2b9f0ff53", + "fileGuid": "c2154167-235e-410e-a1f4-a11729ffb6cc", "folderType": "exporter", "errors": [ { @@ -39759,9 +39937,9 @@ "summary": "File with same name already exists", "description": "This example demonstrates an error response returned for an invalid request that attempted to rename an Exporter file in the 'Abaqus' folder (GUID '41aba877-8fe0-4295-bddb-6f8b270a40ff') to have name 'AbaqusFunctions.xsl', but there is already a file with that name and parent.", "value": { - "message": "Cannot update Exporter file with GUID '46016bfd-3d97-400c-84db-05a2b9f0ff53'.", + "message": "Cannot update Exporter file with GUID 'c2154167-235e-410e-a1f4-a11729ffb6cc'.", "code": "fileUpdate", - "fileGuid": "46016bfd-3d97-400c-84db-05a2b9f0ff53", + "fileGuid": "c2154167-235e-410e-a1f4-a11729ffb6cc", "folderType": "exporter", "errors": [ { @@ -39791,9 +39969,9 @@ "summary": "File with same name already exists", "description": "This example demonstrates an error response returned for an invalid request that attempted to rename an Exporter file in the 'Abaqus' folder (GUID '41aba877-8fe0-4295-bddb-6f8b270a40ff') to have name 'AbaqusFunctions.xsl', but there is already a file with that name and parent.", "value": { - "message": "Cannot update Exporter file with GUID '46016bfd-3d97-400c-84db-05a2b9f0ff53'.", + "message": "Cannot update Exporter file with GUID 'c2154167-235e-410e-a1f4-a11729ffb6cc'.", "code": "fileUpdate", - "fileGuid": "46016bfd-3d97-400c-84db-05a2b9f0ff53", + "fileGuid": "c2154167-235e-410e-a1f4-a11729ffb6cc", "folderType": "exporter", "errors": [ { @@ -40092,7 +40270,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "37535540-a135-4d7e-8a76-01543f014dff" + "guid": "bc23bdc3-f02d-4e13-9e15-90bc8e083f73" } }, "application/json": { @@ -40106,7 +40284,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "37535540-a135-4d7e-8a76-01543f014dff" + "guid": "bc23bdc3-f02d-4e13-9e15-90bc8e083f73" } }, "text/json": { @@ -40120,7 +40298,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "37535540-a135-4d7e-8a76-01543f014dff" + "guid": "bc23bdc3-f02d-4e13-9e15-90bc8e083f73" } } } @@ -40135,16 +40313,16 @@ "examples": { "Example 1": { "summary": "New parent folder not found.", - "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID 'dc82b2ee-53e2-495b-be46-890c2199cd08', but there is no Exporter folder with that GUID.", + "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID '611a9aee-222f-4a94-970d-acc5e986dcf2', but there is no Exporter folder with that GUID.", "value": { - "message": "Cannot move Exporter file with GUID '8f0f6be0-a811-437d-a7ac-ed7f0be1b680'.", + "message": "Cannot move Exporter file with GUID '4a69ca8b-d977-49fd-bb69-c6c5d8d1532d'.", "code": "fileMove", - "fileGuid": "8f0f6be0-a811-437d-a7ac-ed7f0be1b680", + "fileGuid": "4a69ca8b-d977-49fd-bb69-c6c5d8d1532d", "folderType": "exporter", "errors": [ { - "message": "A Exporter folder with GUID 'dc82b2ee-53e2-495b-be46-890c2199cd08' does not exist in database MI_Training.", - "folderGuid": "dc82b2ee-53e2-495b-be46-890c2199cd08", + "message": "A Exporter folder with GUID '611a9aee-222f-4a94-970d-acc5e986dcf2' does not exist in database MI_Training.", + "folderGuid": "611a9aee-222f-4a94-970d-acc5e986dcf2", "folderType": "exporter", "databaseKey": "MI_Training", "reason": "noSuchNewParent" @@ -40161,16 +40339,16 @@ "examples": { "Example 1": { "summary": "New parent folder not found.", - "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID 'dc82b2ee-53e2-495b-be46-890c2199cd08', but there is no Exporter folder with that GUID.", + "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID '611a9aee-222f-4a94-970d-acc5e986dcf2', but there is no Exporter folder with that GUID.", "value": { - "message": "Cannot move Exporter file with GUID '8f0f6be0-a811-437d-a7ac-ed7f0be1b680'.", + "message": "Cannot move Exporter file with GUID '4a69ca8b-d977-49fd-bb69-c6c5d8d1532d'.", "code": "fileMove", - "fileGuid": "8f0f6be0-a811-437d-a7ac-ed7f0be1b680", + "fileGuid": "4a69ca8b-d977-49fd-bb69-c6c5d8d1532d", "folderType": "exporter", "errors": [ { - "message": "A Exporter folder with GUID 'dc82b2ee-53e2-495b-be46-890c2199cd08' does not exist in database MI_Training.", - "folderGuid": "dc82b2ee-53e2-495b-be46-890c2199cd08", + "message": "A Exporter folder with GUID '611a9aee-222f-4a94-970d-acc5e986dcf2' does not exist in database MI_Training.", + "folderGuid": "611a9aee-222f-4a94-970d-acc5e986dcf2", "folderType": "exporter", "databaseKey": "MI_Training", "reason": "noSuchNewParent" @@ -40187,16 +40365,16 @@ "examples": { "Example 1": { "summary": "New parent folder not found.", - "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID 'dc82b2ee-53e2-495b-be46-890c2199cd08', but there is no Exporter folder with that GUID.", + "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID '611a9aee-222f-4a94-970d-acc5e986dcf2', but there is no Exporter folder with that GUID.", "value": { - "message": "Cannot move Exporter file with GUID '8f0f6be0-a811-437d-a7ac-ed7f0be1b680'.", + "message": "Cannot move Exporter file with GUID '4a69ca8b-d977-49fd-bb69-c6c5d8d1532d'.", "code": "fileMove", - "fileGuid": "8f0f6be0-a811-437d-a7ac-ed7f0be1b680", + "fileGuid": "4a69ca8b-d977-49fd-bb69-c6c5d8d1532d", "folderType": "exporter", "errors": [ { - "message": "A Exporter folder with GUID 'dc82b2ee-53e2-495b-be46-890c2199cd08' does not exist in database MI_Training.", - "folderGuid": "dc82b2ee-53e2-495b-be46-890c2199cd08", + "message": "A Exporter folder with GUID '611a9aee-222f-4a94-970d-acc5e986dcf2' does not exist in database MI_Training.", + "folderGuid": "611a9aee-222f-4a94-970d-acc5e986dcf2", "folderType": "exporter", "databaseKey": "MI_Training", "reason": "noSuchNewParent" @@ -40353,7 +40531,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "b5a1a4e8-6409-4781-91bf-5886a97f98a9" + "guid": "e569099f-968e-4a51-be30-36fc4fee3d21" } }, "Example 3": { @@ -40388,7 +40566,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "b5a1a4e8-6409-4781-91bf-5886a97f98a9" + "guid": "e569099f-968e-4a51-be30-36fc4fee3d21" } }, "Example 3": { @@ -40423,7 +40601,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "b5a1a4e8-6409-4781-91bf-5886a97f98a9" + "guid": "e569099f-968e-4a51-be30-36fc4fee3d21" } }, "Example 3": { @@ -40458,7 +40636,7 @@ "value": { "value": "[A:Tensile strength] + [P:Stress Ratio] * [A:Yield strength (elastic limit)] / log10(20000000) + 5", "name": "Simple expression with specified guid", - "guid": "b5a1a4e8-6409-4781-91bf-5886a97f98a9" + "guid": "e569099f-968e-4a51-be30-36fc4fee3d21" } }, "Example 3": { @@ -40790,7 +40968,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "6f6ee658-ca14-4639-87ab-2ea5d76d190c" + "guid": "c0e9fb38-0ddb-412b-884c-91d277450930" } }, "Example 2": { @@ -40816,7 +40994,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "6f6ee658-ca14-4639-87ab-2ea5d76d190c" + "guid": "c0e9fb38-0ddb-412b-884c-91d277450930" } }, "Example 2": { @@ -40842,7 +41020,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "6f6ee658-ca14-4639-87ab-2ea5d76d190c" + "guid": "c0e9fb38-0ddb-412b-884c-91d277450930" } }, "Example 2": { @@ -40868,7 +41046,7 @@ "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, "name": "Fatigue Model (Updated)", - "guid": "6f6ee658-ca14-4639-87ab-2ea5d76d190c" + "guid": "c0e9fb38-0ddb-412b-884c-91d277450930" } }, "Example 2": { @@ -41671,7 +41849,7 @@ "summary": "Change guid for Help File Folder", "description": "This example demonstrates how to modify the guid of an existing help file folder.", "value": { - "guid": "ff2aeea8-7743-4494-824a-d6460a9bc33d" + "guid": "efe975a9-cca4-4858-88ce-abd03bae0171" } } } @@ -41692,7 +41870,7 @@ "summary": "Change guid for Help File Folder", "description": "This example demonstrates how to modify the guid of an existing help file folder.", "value": { - "guid": "ff2aeea8-7743-4494-824a-d6460a9bc33d" + "guid": "efe975a9-cca4-4858-88ce-abd03bae0171" } } } @@ -41713,7 +41891,7 @@ "summary": "Change guid for Help File Folder", "description": "This example demonstrates how to modify the guid of an existing help file folder.", "value": { - "guid": "ff2aeea8-7743-4494-824a-d6460a9bc33d" + "guid": "efe975a9-cca4-4858-88ce-abd03bae0171" } } } @@ -41734,7 +41912,7 @@ "summary": "Change guid for Help File Folder", "description": "This example demonstrates how to modify the guid of an existing help file folder.", "value": { - "guid": "ff2aeea8-7743-4494-824a-d6460a9bc33d" + "guid": "efe975a9-cca4-4858-88ce-abd03bae0171" } } } @@ -42458,7 +42636,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "dd5c8465-e76d-4670-9fbf-7448ee3be886" + "guid": "108d3133-be24-4f29-b34c-9c3ed4042ac5" } }, "application/json": { @@ -42472,7 +42650,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "dd5c8465-e76d-4670-9fbf-7448ee3be886" + "guid": "108d3133-be24-4f29-b34c-9c3ed4042ac5" } }, "text/json": { @@ -42486,7 +42664,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "dd5c8465-e76d-4670-9fbf-7448ee3be886" + "guid": "108d3133-be24-4f29-b34c-9c3ed4042ac5" } } } @@ -42730,7 +42908,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "4b974c14-ddeb-46fe-84c3-dbec429d97f2" + "guid": "015a8d30-0f30-4b30-9355-fe2192899784" } } } @@ -42758,7 +42936,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "4b974c14-ddeb-46fe-84c3-dbec429d97f2" + "guid": "015a8d30-0f30-4b30-9355-fe2192899784" } } } @@ -42786,7 +42964,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "4b974c14-ddeb-46fe-84c3-dbec429d97f2" + "guid": "015a8d30-0f30-4b30-9355-fe2192899784" } } } @@ -42814,7 +42992,7 @@ "summary": "Change guid for Help File", "description": "This example demonstrates how to modify the guid of an existing help file.", "value": { - "guid": "4b974c14-ddeb-46fe-84c3-dbec429d97f2" + "guid": "015a8d30-0f30-4b30-9355-fe2192899784" } } } @@ -42836,7 +43014,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "2b797c1f-2bd7-409f-8da2-92d8ff3f8d88" + "guid": "d7506189-b11b-4a21-a076-327302a52fb1" } }, "application/json": { @@ -42850,7 +43028,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "2b797c1f-2bd7-409f-8da2-92d8ff3f8d88" + "guid": "d7506189-b11b-4a21-a076-327302a52fb1" } }, "text/json": { @@ -42864,7 +43042,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "2b797c1f-2bd7-409f-8da2-92d8ff3f8d88" + "guid": "d7506189-b11b-4a21-a076-327302a52fb1" } } } @@ -42881,9 +43059,9 @@ "summary": "Invalid FIle name", "description": "This example demonstrates an error response returned for an invalid request that attempted to rename a HelpPage file to ''.", "value": { - "message": "Cannot update HelpPage file with GUID '1e301d7c-3a4a-4998-8ba8-8729ba51b7ad'.", + "message": "Cannot update HelpPage file with GUID 'd93cb66d-046b-4650-8ba4-4b20a4e68ccd'.", "code": "fileUpdate", - "fileGuid": "1e301d7c-3a4a-4998-8ba8-8729ba51b7ad", + "fileGuid": "d93cb66d-046b-4650-8ba4-4b20a4e68ccd", "folderType": "helpPage", "errors": [ { @@ -42905,9 +43083,9 @@ "summary": "Invalid FIle name", "description": "This example demonstrates an error response returned for an invalid request that attempted to rename a HelpPage file to ''.", "value": { - "message": "Cannot update HelpPage file with GUID '1e301d7c-3a4a-4998-8ba8-8729ba51b7ad'.", + "message": "Cannot update HelpPage file with GUID 'd93cb66d-046b-4650-8ba4-4b20a4e68ccd'.", "code": "fileUpdate", - "fileGuid": "1e301d7c-3a4a-4998-8ba8-8729ba51b7ad", + "fileGuid": "d93cb66d-046b-4650-8ba4-4b20a4e68ccd", "folderType": "helpPage", "errors": [ { @@ -42929,9 +43107,9 @@ "summary": "Invalid FIle name", "description": "This example demonstrates an error response returned for an invalid request that attempted to rename a HelpPage file to ''.", "value": { - "message": "Cannot update HelpPage file with GUID '1e301d7c-3a4a-4998-8ba8-8729ba51b7ad'.", + "message": "Cannot update HelpPage file with GUID 'd93cb66d-046b-4650-8ba4-4b20a4e68ccd'.", "code": "fileUpdate", - "fileGuid": "1e301d7c-3a4a-4998-8ba8-8729ba51b7ad", + "fileGuid": "d93cb66d-046b-4650-8ba4-4b20a4e68ccd", "folderType": "helpPage", "errors": [ { @@ -43222,7 +43400,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "ad9a0c23-8adf-44f1-b71e-fb516d25d650" + "guid": "4478970f-4600-4118-829c-14a93dacef01" } }, "application/json": { @@ -43236,7 +43414,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "ad9a0c23-8adf-44f1-b71e-fb516d25d650" + "guid": "4478970f-4600-4118-829c-14a93dacef01" } }, "text/json": { @@ -43250,7 +43428,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "ad9a0c23-8adf-44f1-b71e-fb516d25d650" + "guid": "4478970f-4600-4118-829c-14a93dacef01" } } } @@ -43265,16 +43443,16 @@ "examples": { "Example 1": { "summary": "New parent folder not found.", - "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID 'f6c98637-9f2b-44f3-b962-758f4acb5570', but there is no HelpPage folder with that GUID.", + "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID '28c52bb9-89cf-42e5-ace3-aaaf4b656d8b', but there is no HelpPage folder with that GUID.", "value": { - "message": "Cannot move HelpPage file with GUID '29f75714-1dee-4497-8b29-275c84584c0f'.", + "message": "Cannot move HelpPage file with GUID '8226e415-248b-44dc-a7fe-0972e8f2e485'.", "code": "fileMove", - "fileGuid": "29f75714-1dee-4497-8b29-275c84584c0f", + "fileGuid": "8226e415-248b-44dc-a7fe-0972e8f2e485", "folderType": "helpPage", "errors": [ { - "message": "A HelpPage folder with GUID 'f6c98637-9f2b-44f3-b962-758f4acb5570' does not exist in database MI_Training.", - "folderGuid": "f6c98637-9f2b-44f3-b962-758f4acb5570", + "message": "A HelpPage folder with GUID '28c52bb9-89cf-42e5-ace3-aaaf4b656d8b' does not exist in database MI_Training.", + "folderGuid": "28c52bb9-89cf-42e5-ace3-aaaf4b656d8b", "folderType": "helpPage", "databaseKey": "MI_Training", "reason": "noSuchNewParent" @@ -43291,16 +43469,16 @@ "examples": { "Example 1": { "summary": "New parent folder not found.", - "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID 'f6c98637-9f2b-44f3-b962-758f4acb5570', but there is no HelpPage folder with that GUID.", + "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID '28c52bb9-89cf-42e5-ace3-aaaf4b656d8b', but there is no HelpPage folder with that GUID.", "value": { - "message": "Cannot move HelpPage file with GUID '29f75714-1dee-4497-8b29-275c84584c0f'.", + "message": "Cannot move HelpPage file with GUID '8226e415-248b-44dc-a7fe-0972e8f2e485'.", "code": "fileMove", - "fileGuid": "29f75714-1dee-4497-8b29-275c84584c0f", + "fileGuid": "8226e415-248b-44dc-a7fe-0972e8f2e485", "folderType": "helpPage", "errors": [ { - "message": "A HelpPage folder with GUID 'f6c98637-9f2b-44f3-b962-758f4acb5570' does not exist in database MI_Training.", - "folderGuid": "f6c98637-9f2b-44f3-b962-758f4acb5570", + "message": "A HelpPage folder with GUID '28c52bb9-89cf-42e5-ace3-aaaf4b656d8b' does not exist in database MI_Training.", + "folderGuid": "28c52bb9-89cf-42e5-ace3-aaaf4b656d8b", "folderType": "helpPage", "databaseKey": "MI_Training", "reason": "noSuchNewParent" @@ -43317,16 +43495,16 @@ "examples": { "Example 1": { "summary": "New parent folder not found.", - "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID 'f6c98637-9f2b-44f3-b962-758f4acb5570', but there is no HelpPage folder with that GUID.", + "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID '28c52bb9-89cf-42e5-ace3-aaaf4b656d8b', but there is no HelpPage folder with that GUID.", "value": { - "message": "Cannot move HelpPage file with GUID '29f75714-1dee-4497-8b29-275c84584c0f'.", + "message": "Cannot move HelpPage file with GUID '8226e415-248b-44dc-a7fe-0972e8f2e485'.", "code": "fileMove", - "fileGuid": "29f75714-1dee-4497-8b29-275c84584c0f", + "fileGuid": "8226e415-248b-44dc-a7fe-0972e8f2e485", "folderType": "helpPage", "errors": [ { - "message": "A HelpPage folder with GUID 'f6c98637-9f2b-44f3-b962-758f4acb5570' does not exist in database MI_Training.", - "folderGuid": "f6c98637-9f2b-44f3-b962-758f4acb5570", + "message": "A HelpPage folder with GUID '28c52bb9-89cf-42e5-ace3-aaaf4b656d8b' does not exist in database MI_Training.", + "folderGuid": "28c52bb9-89cf-42e5-ace3-aaaf4b656d8b", "folderType": "helpPage", "databaseKey": "MI_Training", "reason": "noSuchNewParent" @@ -43438,7 +43616,7 @@ "hasFiles": false, "hasChildFolders": false, "name": "images", - "guid": "72ed3880-b029-4a79-a3d6-5189fb26dd96" + "guid": "17e4e44a-5f3f-446d-8c0a-a3ef31dca228" } ] } @@ -43460,7 +43638,7 @@ "hasFiles": false, "hasChildFolders": false, "name": "images", - "guid": "72ed3880-b029-4a79-a3d6-5189fb26dd96" + "guid": "17e4e44a-5f3f-446d-8c0a-a3ef31dca228" } ] } @@ -43482,7 +43660,7 @@ "hasFiles": false, "hasChildFolders": false, "name": "images", - "guid": "72ed3880-b029-4a79-a3d6-5189fb26dd96" + "guid": "17e4e44a-5f3f-446d-8c0a-a3ef31dca228" } ] } @@ -43833,7 +44011,7 @@ "hasFiles": false, "hasChildFolders": false, "name": "images", - "guid": "83e758a6-403b-4671-956c-a6d1f0547976" + "guid": "9bb101a6-8b6e-4081-ba19-43665a562a97" } }, "application/json": { @@ -43845,7 +44023,7 @@ "hasFiles": false, "hasChildFolders": false, "name": "images", - "guid": "83e758a6-403b-4671-956c-a6d1f0547976" + "guid": "9bb101a6-8b6e-4081-ba19-43665a562a97" } }, "text/json": { @@ -43857,7 +44035,7 @@ "hasFiles": false, "hasChildFolders": false, "name": "images", - "guid": "83e758a6-403b-4671-956c-a6d1f0547976" + "guid": "9bb101a6-8b6e-4081-ba19-43665a562a97" } } } @@ -43913,7 +44091,7 @@ "summary": "Change guid for Home Page Folder", "description": "This example demonstrates how to modify the guid of an existing home page folder.", "value": { - "guid": "24348ba2-9c39-4b33-8cb7-f71c1510f83c" + "guid": "ffd030e1-bc94-4dfc-9cb2-b0e8b29e1b5a" } } } @@ -43934,7 +44112,7 @@ "summary": "Change guid for Home Page Folder", "description": "This example demonstrates how to modify the guid of an existing home page folder.", "value": { - "guid": "24348ba2-9c39-4b33-8cb7-f71c1510f83c" + "guid": "ffd030e1-bc94-4dfc-9cb2-b0e8b29e1b5a" } } } @@ -43955,7 +44133,7 @@ "summary": "Change guid for Home Page Folder", "description": "This example demonstrates how to modify the guid of an existing home page folder.", "value": { - "guid": "24348ba2-9c39-4b33-8cb7-f71c1510f83c" + "guid": "ffd030e1-bc94-4dfc-9cb2-b0e8b29e1b5a" } } } @@ -43976,7 +44154,7 @@ "summary": "Change guid for Home Page Folder", "description": "This example demonstrates how to modify the guid of an existing home page folder.", "value": { - "guid": "24348ba2-9c39-4b33-8cb7-f71c1510f83c" + "guid": "ffd030e1-bc94-4dfc-9cb2-b0e8b29e1b5a" } } } @@ -44263,7 +44441,7 @@ "hasFiles": false, "hasChildFolders": false, "name": "images", - "guid": "3dc8270d-5dea-4411-bfcf-a2698879ed0d" + "guid": "3785de0b-a9b6-496f-bf52-78b755ebe07d" } ] } @@ -44279,7 +44457,7 @@ "hasFiles": false, "hasChildFolders": false, "name": "images", - "guid": "3dc8270d-5dea-4411-bfcf-a2698879ed0d" + "guid": "3785de0b-a9b6-496f-bf52-78b755ebe07d" } ] } @@ -44295,7 +44473,7 @@ "hasFiles": false, "hasChildFolders": false, "name": "images", - "guid": "3dc8270d-5dea-4411-bfcf-a2698879ed0d" + "guid": "3785de0b-a9b6-496f-bf52-78b755ebe07d" } ] } @@ -44560,11 +44738,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "b80967f8-c5f7-4914-a88c-246734068d7e" + "guid": "ae676126-e9e7-4c08-a183-95c2e9d30695" }, { "name": "home-page-2.html", - "guid": "6d9909a0-a34d-40c3-a111-4ee77c654ae3" + "guid": "99428429-5e0e-4a80-b70d-426baf6ab2bd" } ] } @@ -44577,11 +44755,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "b80967f8-c5f7-4914-a88c-246734068d7e" + "guid": "ae676126-e9e7-4c08-a183-95c2e9d30695" }, { "name": "home-page-2.html", - "guid": "6d9909a0-a34d-40c3-a111-4ee77c654ae3" + "guid": "99428429-5e0e-4a80-b70d-426baf6ab2bd" } ] } @@ -44594,11 +44772,11 @@ "files": [ { "name": "home-page-1.html", - "guid": "b80967f8-c5f7-4914-a88c-246734068d7e" + "guid": "ae676126-e9e7-4c08-a183-95c2e9d30695" }, { "name": "home-page-2.html", - "guid": "6d9909a0-a34d-40c3-a111-4ee77c654ae3" + "guid": "99428429-5e0e-4a80-b70d-426baf6ab2bd" } ] } @@ -44679,7 +44857,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "aa7008bc-103e-46aa-a532-b9d47dc607e5" + "guid": "2096a5e2-9936-4ed1-b9eb-29e2239100d9" } }, "application/json": { @@ -44693,7 +44871,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "aa7008bc-103e-46aa-a532-b9d47dc607e5" + "guid": "2096a5e2-9936-4ed1-b9eb-29e2239100d9" } }, "text/json": { @@ -44707,7 +44885,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "aa7008bc-103e-46aa-a532-b9d47dc607e5" + "guid": "2096a5e2-9936-4ed1-b9eb-29e2239100d9" } } } @@ -44851,7 +45029,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "42d13ba8-cc82-4e46-b7b1-80a5475cbaef" + "guid": "137cae6d-993e-4911-b14c-d10758720c64" } }, "application/json": { @@ -44865,7 +45043,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "42d13ba8-cc82-4e46-b7b1-80a5475cbaef" + "guid": "137cae6d-993e-4911-b14c-d10758720c64" } }, "text/json": { @@ -44879,7 +45057,7 @@ "dataLength": 12895, "path": "HomePages", "name": "home-page.html", - "guid": "42d13ba8-cc82-4e46-b7b1-80a5475cbaef" + "guid": "137cae6d-993e-4911-b14c-d10758720c64" } } } @@ -44951,7 +45129,7 @@ "summary": "Change guid for Home Page File", "description": "This example demonstrates how to modify the guid of an existing home page file.", "value": { - "guid": "15028a40-83eb-4460-9d61-4876f97d6404" + "guid": "b09a714e-6741-4419-951e-256d6212510e" } } } @@ -44979,7 +45157,7 @@ "summary": "Change guid for Home Page File", "description": "This example demonstrates how to modify the guid of an existing home page file.", "value": { - "guid": "15028a40-83eb-4460-9d61-4876f97d6404" + "guid": "b09a714e-6741-4419-951e-256d6212510e" } } } @@ -45007,7 +45185,7 @@ "summary": "Change guid for Home Page File", "description": "This example demonstrates how to modify the guid of an existing home page file.", "value": { - "guid": "15028a40-83eb-4460-9d61-4876f97d6404" + "guid": "b09a714e-6741-4419-951e-256d6212510e" } } } @@ -45035,7 +45213,7 @@ "summary": "Change guid for Home Page File", "description": "This example demonstrates how to modify the guid of an existing home page file.", "value": { - "guid": "15028a40-83eb-4460-9d61-4876f97d6404" + "guid": "b09a714e-6741-4419-951e-256d6212510e" } } } @@ -45057,7 +45235,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "529a751b-75fd-430e-a189-dc6d61447b79" + "guid": "a0e1ea6b-ef12-4cbe-abea-937527423d2f" } }, "application/json": { @@ -45071,7 +45249,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "529a751b-75fd-430e-a189-dc6d61447b79" + "guid": "a0e1ea6b-ef12-4cbe-abea-937527423d2f" } }, "text/json": { @@ -45085,7 +45263,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "529a751b-75fd-430e-a189-dc6d61447b79" + "guid": "a0e1ea6b-ef12-4cbe-abea-937527423d2f" } } } @@ -45102,9 +45280,9 @@ "summary": "Invalid File name", "description": "This example demonstrates an error response returned for an invalid request that attempted to rename a HomePage file to ''.", "value": { - "message": "Cannot update HomePage file with GUID '324e0f8e-108e-4251-8fad-d90f681a2446'.", + "message": "Cannot update HomePage file with GUID '7e68bafb-8cd7-4fc1-b2f1-386dd3a247ee'.", "code": "fileUpdate", - "fileGuid": "324e0f8e-108e-4251-8fad-d90f681a2446", + "fileGuid": "7e68bafb-8cd7-4fc1-b2f1-386dd3a247ee", "folderType": "homePage", "errors": [ { @@ -45126,9 +45304,9 @@ "summary": "Invalid File name", "description": "This example demonstrates an error response returned for an invalid request that attempted to rename a HomePage file to ''.", "value": { - "message": "Cannot update HomePage file with GUID '324e0f8e-108e-4251-8fad-d90f681a2446'.", + "message": "Cannot update HomePage file with GUID '7e68bafb-8cd7-4fc1-b2f1-386dd3a247ee'.", "code": "fileUpdate", - "fileGuid": "324e0f8e-108e-4251-8fad-d90f681a2446", + "fileGuid": "7e68bafb-8cd7-4fc1-b2f1-386dd3a247ee", "folderType": "homePage", "errors": [ { @@ -45150,9 +45328,9 @@ "summary": "Invalid File name", "description": "This example demonstrates an error response returned for an invalid request that attempted to rename a HomePage file to ''.", "value": { - "message": "Cannot update HomePage file with GUID '324e0f8e-108e-4251-8fad-d90f681a2446'.", + "message": "Cannot update HomePage file with GUID '7e68bafb-8cd7-4fc1-b2f1-386dd3a247ee'.", "code": "fileUpdate", - "fileGuid": "324e0f8e-108e-4251-8fad-d90f681a2446", + "fileGuid": "7e68bafb-8cd7-4fc1-b2f1-386dd3a247ee", "folderType": "homePage", "errors": [ { @@ -45443,7 +45621,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "7cc41abf-fe0e-4815-9b59-accb242f5e23" + "guid": "6c361040-c68b-46da-ae37-fda4236ff69f" } }, "application/json": { @@ -45457,7 +45635,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "7cc41abf-fe0e-4815-9b59-accb242f5e23" + "guid": "6c361040-c68b-46da-ae37-fda4236ff69f" } }, "text/json": { @@ -45471,7 +45649,7 @@ "dataLength": 12895, "path": "Exporters", "name": "exporter-1.exp", - "guid": "7cc41abf-fe0e-4815-9b59-accb242f5e23" + "guid": "6c361040-c68b-46da-ae37-fda4236ff69f" } } } @@ -45486,16 +45664,16 @@ "examples": { "Example 1": { "summary": "New parent folder not found.", - "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID 'b68c636b-9a87-442b-9fc5-4810b6c1792f', but there is no HomePage folder with that GUID.", + "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID '68b2b280-dd88-46e7-a6e9-18ab864c2854', but there is no HomePage folder with that GUID.", "value": { - "message": "Cannot move HomePage file with GUID '88a6d586-faac-4411-8677-e05752312391'.", + "message": "Cannot move HomePage file with GUID '563fbe5d-351b-48e2-ad1c-bbd9b8c51c5d'.", "code": "fileMove", - "fileGuid": "88a6d586-faac-4411-8677-e05752312391", + "fileGuid": "563fbe5d-351b-48e2-ad1c-bbd9b8c51c5d", "folderType": "homePage", "errors": [ { - "message": "A HomePage folder with GUID 'b68c636b-9a87-442b-9fc5-4810b6c1792f' does not exist in database MI_Training.", - "folderGuid": "b68c636b-9a87-442b-9fc5-4810b6c1792f", + "message": "A HomePage folder with GUID '68b2b280-dd88-46e7-a6e9-18ab864c2854' does not exist in database MI_Training.", + "folderGuid": "68b2b280-dd88-46e7-a6e9-18ab864c2854", "folderType": "homePage", "databaseKey": "MI_Training", "reason": "noSuchNewParent" @@ -45512,16 +45690,16 @@ "examples": { "Example 1": { "summary": "New parent folder not found.", - "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID 'b68c636b-9a87-442b-9fc5-4810b6c1792f', but there is no HomePage folder with that GUID.", + "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID '68b2b280-dd88-46e7-a6e9-18ab864c2854', but there is no HomePage folder with that GUID.", "value": { - "message": "Cannot move HomePage file with GUID '88a6d586-faac-4411-8677-e05752312391'.", + "message": "Cannot move HomePage file with GUID '563fbe5d-351b-48e2-ad1c-bbd9b8c51c5d'.", "code": "fileMove", - "fileGuid": "88a6d586-faac-4411-8677-e05752312391", + "fileGuid": "563fbe5d-351b-48e2-ad1c-bbd9b8c51c5d", "folderType": "homePage", "errors": [ { - "message": "A HomePage folder with GUID 'b68c636b-9a87-442b-9fc5-4810b6c1792f' does not exist in database MI_Training.", - "folderGuid": "b68c636b-9a87-442b-9fc5-4810b6c1792f", + "message": "A HomePage folder with GUID '68b2b280-dd88-46e7-a6e9-18ab864c2854' does not exist in database MI_Training.", + "folderGuid": "68b2b280-dd88-46e7-a6e9-18ab864c2854", "folderType": "homePage", "databaseKey": "MI_Training", "reason": "noSuchNewParent" @@ -45538,16 +45716,16 @@ "examples": { "Example 1": { "summary": "New parent folder not found.", - "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID 'b68c636b-9a87-442b-9fc5-4810b6c1792f', but there is no HomePage folder with that GUID.", + "description": "This example demonstrates an error response returned for an invalid request that attempted to move an existing file to a folder with GUID '68b2b280-dd88-46e7-a6e9-18ab864c2854', but there is no HomePage folder with that GUID.", "value": { - "message": "Cannot move HomePage file with GUID '88a6d586-faac-4411-8677-e05752312391'.", + "message": "Cannot move HomePage file with GUID '563fbe5d-351b-48e2-ad1c-bbd9b8c51c5d'.", "code": "fileMove", - "fileGuid": "88a6d586-faac-4411-8677-e05752312391", + "fileGuid": "563fbe5d-351b-48e2-ad1c-bbd9b8c51c5d", "folderType": "homePage", "errors": [ { - "message": "A HomePage folder with GUID 'b68c636b-9a87-442b-9fc5-4810b6c1792f' does not exist in database MI_Training.", - "folderGuid": "b68c636b-9a87-442b-9fc5-4810b6c1792f", + "message": "A HomePage folder with GUID '68b2b280-dd88-46e7-a6e9-18ab864c2854' does not exist in database MI_Training.", + "folderGuid": "68b2b280-dd88-46e7-a6e9-18ab864c2854", "folderType": "homePage", "databaseKey": "MI_Training", "reason": "noSuchNewParent" @@ -45688,9 +45866,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "13f51890-3126-4ce5-a24b-c6b54ec98d3d", + "underlyingEntityGuid": "7b0cc021-5536-46e7-b19b-e7499a525bff", "name": "Price", - "guid": "6c6a81d7-27d0-4685-bd69-815946db7f31" + "guid": "115723df-e07f-4c9e-aaba-2fe67302fc52" }, { "itemType": "attribute", @@ -45698,9 +45876,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "fa35dbc2-e0bc-45ae-82b8-06c724e9d100", + "underlyingEntityGuid": "65c609f0-86ef-4afb-a2fd-593ad0cb0992", "name": "Density", - "guid": "224d1833-6050-4a1a-ac1b-b5ecba6078d8" + "guid": "3b7993ba-aa73-4fa8-9fb3-efcab4569661" } ], "displayNames": { @@ -45719,9 +45897,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "bd84a309-36de-4fa5-a444-147d7ad95abf", + "underlyingEntityGuid": "8eae7b61-11c3-4996-bacc-0d8a2fd658e1", "name": "Young's modulus", - "guid": "4bb98501-d932-42c4-82a2-834cf435fb25" + "guid": "beec379b-7c1e-42da-9594-910ca7e9cc85" }, { "itemType": "attribute", @@ -45729,9 +45907,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "0ffb9b25-c3df-44a1-8870-0925dc0a5dea", + "underlyingEntityGuid": "69736048-ecae-4deb-b1ce-d9b91437d691", "name": "Tensile strength", - "guid": "ba8beffa-cecd-4d82-9e61-2bbb8381358d" + "guid": "f55af5fd-bd54-4760-b3e9-a8ca1ee02e9c" }, { "itemType": "attribute", @@ -45739,9 +45917,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "5beaa1c9-0b24-4ff4-931e-dffb5d7c20a4", + "underlyingEntityGuid": "19f62e04-08f5-402c-a24e-f9b5266f115b", "name": "Shape factor", - "guid": "91dcb60f-794e-4dad-abb0-5df16399aabd" + "guid": "49045cce-1c0b-44fc-86bb-4bb0459a3a62" } ], "displayNames": { @@ -45821,7 +45999,7 @@ "description": "This example demonstrates how to create a new layout section with a specified guid value in the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "Additional Properties (Guid)", - "guid": "385ccc71-8c33-4f8c-9c27-96a72bfeaac3" + "guid": "8e245896-e474-4a4f-9a30-6a4aeab09907" } } } @@ -45843,7 +46021,7 @@ "description": "This example demonstrates how to create a new layout section with a specified guid value in the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "Additional Properties (Guid)", - "guid": "385ccc71-8c33-4f8c-9c27-96a72bfeaac3" + "guid": "8e245896-e474-4a4f-9a30-6a4aeab09907" } } } @@ -45865,7 +46043,7 @@ "description": "This example demonstrates how to create a new layout section with a specified guid value in the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "Additional Properties (Guid)", - "guid": "385ccc71-8c33-4f8c-9c27-96a72bfeaac3" + "guid": "8e245896-e474-4a4f-9a30-6a4aeab09907" } } } @@ -45887,7 +46065,7 @@ "description": "This example demonstrates how to create a new layout section with a specified guid value in the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "Additional Properties (Guid)", - "guid": "385ccc71-8c33-4f8c-9c27-96a72bfeaac3" + "guid": "8e245896-e474-4a4f-9a30-6a4aeab09907" } } } @@ -45906,7 +46084,7 @@ "sectionDetailType": "slim", "displayNames": {}, "name": "Additional Properties", - "guid": "b983149e-9f64-43d5-9cb5-6c23b1b0aeaf" + "guid": "89bf3238-fa02-4012-9575-baea7d1c45c2" } } } @@ -46559,7 +46737,7 @@ "fr": "Testing Information French Display Name" }, "name": "Testing Information", - "guid": "8ff5d376-aaa3-4bea-bba8-f94fc05de627" + "guid": "faa0e80a-78aa-4d7c-95cf-38c71d134c6e" } }, "Example 2": { @@ -46574,9 +46752,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "3977c5b8-9382-4207-8a03-c333d40d9ec4", + "underlyingEntityGuid": "930ed5e1-8da5-442b-baed-00ec124f1df9", "name": "Form", - "guid": "c18a284a-8e71-489b-9526-4d00436ca70a" + "guid": "0c65982e-9a81-4acd-92a4-f53cb16a8235" }, { "itemType": "attribute", @@ -46589,34 +46767,34 @@ "attributeType": "longText", "required": true, "readOnly": false, - "underlyingEntityGuid": "043d411b-2522-4f8a-aebf-e6771f6f956a", + "underlyingEntityGuid": "0f7df240-a0c7-4f20-af6d-45a3f4cb92c9", "name": "Sources", - "guid": "9bfbb3d3-436c-4f40-8a86-e369864e07ee" + "guid": "058ae65b-a16f-495a-85b2-5ad481355f56" }, { "itemType": "attribute", "attributeType": "shortText", "required": true, "readOnly": false, - "underlyingEntityGuid": "5a7cb296-f1ab-4fae-bfc1-e32bd2ea1302", + "underlyingEntityGuid": "f0065f16-9880-4c9b-b5ab-bac649dfa16a", "name": "Notes", - "guid": "6eb500e8-e829-4e5b-9059-68252a68b950" + "guid": "c087c5d4-7fc1-4fe4-a047-807a3bd7bfde" } ], - "underlyingEntityGuid": "4dea74ca-a88f-45dd-abe6-66afe478a09f", + "underlyingEntityGuid": "8ebf2447-63a0-4170-82d7-6eee097fd035", "name": "Chemical resistance", - "guid": "70024eb1-2cbd-4cc2-b009-9cdf37469332" + "guid": "31766256-5434-40d4-ba39-a475681b6f78" }, { "itemType": "link", "linkType": "recordLink", - "targetDatabase": "774fa7e2-2a6b-4831-9e95-7c994b6fabb2", - "targetDatabaseVersion": "519662f0-4406-4045-b131-354758b67012", - "targetTable": "e614a883-dda7-43e9-9eca-f2b094c3721c", + "targetDatabase": "370d46ef-859f-4395-be95-9f8267d63e3f", + "targetDatabaseVersion": "7cc7544c-84e7-4d4a-8389-cb4aea3b6fbd", + "targetTable": "6a78dd5e-b64b-4249-833d-73ee5d96e2ab", "forwards": true, - "underlyingEntityGuid": "7934f31c-8ba4-4df0-ab00-d1b3c1e35150", + "underlyingEntityGuid": "d5bc85ed-b07f-4ef7-8007-0c9ba2eaa8a9", "name": "Material Pedigree", - "guid": "39237358-ed4e-429e-8d80-1cd242e83e94" + "guid": "66c19ea7-083c-4593-9dc0-61f521667127" }, { "itemType": "attribute", @@ -46627,42 +46805,42 @@ "tabularColumns": [ { "columnType": "linkedAttribute", - "tabularColumnGuid": "79e62572-13de-4c72-acad-e30d5b54b744", + "tabularColumnGuid": "6339ebd7-d9d2-46a8-b329-4cb25f3ad72b", "name": "Offset Yield Stress", - "guid": "24bffd32-534f-49c5-8129-2e00ed1c344a" + "guid": "50a5d472-919d-44dd-a369-69405c7b0511" }, { "columnType": "localShortText", - "tabularColumnGuid": "df5d3a54-ca48-4817-9491-6917ee056549", + "tabularColumnGuid": "b82b147a-9922-4c7b-b4bb-00348a8685b0", "name": "Young's Modulus Notes", - "guid": "4ccc76b5-d25e-4cfa-980f-9b70570ecef9" + "guid": "a6128020-3eec-48b3-a358-32595b64b688" } ], - "underlyingEntityGuid": "855f56d4-6a6e-4054-8441-4c6a45e3b756", + "underlyingEntityGuid": "6e01baef-01f1-42f8-8506-5733eaefe761", "name": "Reference Characteristics", - "guid": "e25b278c-a97a-42e6-ba11-f82614303ec2" + "guid": "a5f058a0-f06c-414c-980f-854408f4d5e0" }, { "itemType": "link", "linkType": "associationChain", - "targetDatabase": "774fa7e2-2a6b-4831-9e95-7c994b6fabb2", - "targetDatabaseVersion": "519662f0-4406-4045-b131-354758b67012", - "targetTable": "0eb7e3c7-cd18-4bf8-b188-f5351f8680be", + "targetDatabase": "370d46ef-859f-4395-be95-9f8267d63e3f", + "targetDatabaseVersion": "7cc7544c-84e7-4d4a-8389-cb4aea3b6fbd", + "targetTable": "08a7cb56-8e16-4b18-9bb3-e2a239821701", "forwards": true, "nextLink": { "itemType": "link", "linkType": "associationChain", - "targetDatabase": "774fa7e2-2a6b-4831-9e95-7c994b6fabb2", - "targetDatabaseVersion": "519662f0-4406-4045-b131-354758b67012", - "targetTable": "13355ab2-7e3e-4a26-8912-5de489e15be1", + "targetDatabase": "370d46ef-859f-4395-be95-9f8267d63e3f", + "targetDatabaseVersion": "7cc7544c-84e7-4d4a-8389-cb4aea3b6fbd", + "targetTable": "b70bb161-f9b0-4c9c-a683-177efcf676ba", "forwards": false, - "underlyingEntityGuid": "6e227b0f-de06-4c87-b2de-ff3f84e87ef2", + "underlyingEntityGuid": "989aac3b-46d3-403b-956b-9f9d7453dcfe", "name": "Pedigree information", - "guid": "a7e74e0d-4273-481b-8c27-1064a006d3cb" + "guid": "4c081601-9172-4121-bfb0-7d8f70447947" }, - "underlyingEntityGuid": "4c2b935d-27ac-45c7-b3e9-492849622283", + "underlyingEntityGuid": "3ed95929-f126-4d19-b1bf-23f2f0062b52", "name": "To Pedigree from Producers", - "guid": "665f9bf3-4b0b-43bb-9f66-c135f83f0764" + "guid": "58a06df1-7f34-44ed-96b5-80e090a72143" } ], "displayNames": { @@ -46670,7 +46848,7 @@ "fr": "Testing Information French Display Name" }, "name": "Testing Information", - "guid": "06096f54-db54-41b1-8f1b-47471537989b" + "guid": "02572ee3-94f1-4bdf-8adb-1191f8eff934" } } } @@ -46870,9 +47048,9 @@ "description": "This example demonstrates how to add a cross database link group to the 'General Properties' layout section (guid = b10170ab-ff56-4828-81b8-c4427674ed2f) of the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "itemType": "crossDatabaseLink", - "sourceDatabaseGuid": "6581f3bb-55c1-4826-b8f9-29f31304f4ad", - "sourceTableGuid": "7d24dafd-5419-4bdf-b808-992dada9a2b6", - "linkGroupGuid": "8b8c2dde-57bc-413c-87b6-46966c87b6c6" + "sourceDatabaseGuid": "517e032c-87a5-44b6-9d3f-f65f680fda61", + "sourceTableGuid": "0e810fdd-c652-4b4b-b76d-d0ade5e14d04", + "linkGroupGuid": "4dea7acf-63ca-42cc-9a74-9c004f68f6bf" } }, "Example 8": { @@ -46884,13 +47062,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "b4c08433-0726-4dcb-bacf-e3a581aa9f08", - "tabularAttributeGuid": "00baf8ce-47e7-4741-936c-54b2b2e39f39" + "sourceDatabaseVersionGuid": "2038ee7a-954a-4c43-afc0-85545095388a", + "tabularAttributeGuid": "7495d519-812e-4e34-a27a-e58f0dfef35c" }, { "forwards": false, - "sourceDatabaseVersionGuid": "53cef4fa-a965-41af-8697-49edaaddbc78", - "tabularAttributeGuid": "e4467657-ed1e-40d8-a6f0-85785b3bad76" + "sourceDatabaseVersionGuid": "75470c5f-8012-4849-acca-074fa4525ba8", + "tabularAttributeGuid": "a066d9ac-017f-404e-88fc-37bfe3fb1a95" } ] } @@ -46970,9 +47148,9 @@ "description": "This example demonstrates how to add a cross database link group to the 'General Properties' layout section (guid = b10170ab-ff56-4828-81b8-c4427674ed2f) of the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "itemType": "crossDatabaseLink", - "sourceDatabaseGuid": "6581f3bb-55c1-4826-b8f9-29f31304f4ad", - "sourceTableGuid": "7d24dafd-5419-4bdf-b808-992dada9a2b6", - "linkGroupGuid": "8b8c2dde-57bc-413c-87b6-46966c87b6c6" + "sourceDatabaseGuid": "517e032c-87a5-44b6-9d3f-f65f680fda61", + "sourceTableGuid": "0e810fdd-c652-4b4b-b76d-d0ade5e14d04", + "linkGroupGuid": "4dea7acf-63ca-42cc-9a74-9c004f68f6bf" } }, "Example 8": { @@ -46984,13 +47162,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "b4c08433-0726-4dcb-bacf-e3a581aa9f08", - "tabularAttributeGuid": "00baf8ce-47e7-4741-936c-54b2b2e39f39" + "sourceDatabaseVersionGuid": "2038ee7a-954a-4c43-afc0-85545095388a", + "tabularAttributeGuid": "7495d519-812e-4e34-a27a-e58f0dfef35c" }, { "forwards": false, - "sourceDatabaseVersionGuid": "53cef4fa-a965-41af-8697-49edaaddbc78", - "tabularAttributeGuid": "e4467657-ed1e-40d8-a6f0-85785b3bad76" + "sourceDatabaseVersionGuid": "75470c5f-8012-4849-acca-074fa4525ba8", + "tabularAttributeGuid": "a066d9ac-017f-404e-88fc-37bfe3fb1a95" } ] } @@ -47070,9 +47248,9 @@ "description": "This example demonstrates how to add a cross database link group to the 'General Properties' layout section (guid = b10170ab-ff56-4828-81b8-c4427674ed2f) of the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "itemType": "crossDatabaseLink", - "sourceDatabaseGuid": "6581f3bb-55c1-4826-b8f9-29f31304f4ad", - "sourceTableGuid": "7d24dafd-5419-4bdf-b808-992dada9a2b6", - "linkGroupGuid": "8b8c2dde-57bc-413c-87b6-46966c87b6c6" + "sourceDatabaseGuid": "517e032c-87a5-44b6-9d3f-f65f680fda61", + "sourceTableGuid": "0e810fdd-c652-4b4b-b76d-d0ade5e14d04", + "linkGroupGuid": "4dea7acf-63ca-42cc-9a74-9c004f68f6bf" } }, "Example 8": { @@ -47084,13 +47262,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "b4c08433-0726-4dcb-bacf-e3a581aa9f08", - "tabularAttributeGuid": "00baf8ce-47e7-4741-936c-54b2b2e39f39" + "sourceDatabaseVersionGuid": "2038ee7a-954a-4c43-afc0-85545095388a", + "tabularAttributeGuid": "7495d519-812e-4e34-a27a-e58f0dfef35c" }, { "forwards": false, - "sourceDatabaseVersionGuid": "53cef4fa-a965-41af-8697-49edaaddbc78", - "tabularAttributeGuid": "e4467657-ed1e-40d8-a6f0-85785b3bad76" + "sourceDatabaseVersionGuid": "75470c5f-8012-4849-acca-074fa4525ba8", + "tabularAttributeGuid": "a066d9ac-017f-404e-88fc-37bfe3fb1a95" } ] } @@ -47170,9 +47348,9 @@ "description": "This example demonstrates how to add a cross database link group to the 'General Properties' layout section (guid = b10170ab-ff56-4828-81b8-c4427674ed2f) of the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "itemType": "crossDatabaseLink", - "sourceDatabaseGuid": "6581f3bb-55c1-4826-b8f9-29f31304f4ad", - "sourceTableGuid": "7d24dafd-5419-4bdf-b808-992dada9a2b6", - "linkGroupGuid": "8b8c2dde-57bc-413c-87b6-46966c87b6c6" + "sourceDatabaseGuid": "517e032c-87a5-44b6-9d3f-f65f680fda61", + "sourceTableGuid": "0e810fdd-c652-4b4b-b76d-d0ade5e14d04", + "linkGroupGuid": "4dea7acf-63ca-42cc-9a74-9c004f68f6bf" } }, "Example 8": { @@ -47184,13 +47362,13 @@ "associationChainLinks": [ { "forwards": true, - "sourceDatabaseVersionGuid": "b4c08433-0726-4dcb-bacf-e3a581aa9f08", - "tabularAttributeGuid": "00baf8ce-47e7-4741-936c-54b2b2e39f39" + "sourceDatabaseVersionGuid": "2038ee7a-954a-4c43-afc0-85545095388a", + "tabularAttributeGuid": "7495d519-812e-4e34-a27a-e58f0dfef35c" }, { "forwards": false, - "sourceDatabaseVersionGuid": "53cef4fa-a965-41af-8697-49edaaddbc78", - "tabularAttributeGuid": "e4467657-ed1e-40d8-a6f0-85785b3bad76" + "sourceDatabaseVersionGuid": "75470c5f-8012-4849-acca-074fa4525ba8", + "tabularAttributeGuid": "a066d9ac-017f-404e-88fc-37bfe3fb1a95" } ] } @@ -47218,7 +47396,7 @@ "readOnly": false, "metaAttributes": null, "tabularColumnGuids": null, - "guid": "54c5975d-be03-4503-9898-22e31b2dd1ad" + "guid": "e65e053b-c1c7-479f-83dc-409d67254b58" } }, "Example 2": { @@ -47238,7 +47416,7 @@ } ], "tabularColumnGuids": null, - "guid": "55c64783-1d15-46cb-9226-b36908882185" + "guid": "7afa79f0-9116-48bf-bb39-838e4978dab2" } }, "Example 3": { @@ -47282,9 +47460,9 @@ "description": "This example demonstrates the response to creating a new cross database link group layout item. It was created by adding a cross database link group to the 'General Properties' layout section (guid = b10170ab-ff56-4828-81b8-c4427674ed2f) of the 'Ceramics' layout (guid = 00000b36-0009-4fff-8fff-dd92ffff0000) from the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "itemType": "crossDatabaseLink", - "sourceDatabaseGuid": "db68472d-ff6d-4488-96b9-c25bd9a6fb69", - "sourceTableGuid": "6b810ca7-3b6a-42d4-bbeb-ebfaf0246c0e", - "linkGroupGuid": "7d800c62-1720-4528-923a-7c1eaef37003", + "sourceDatabaseGuid": "962cb8a3-95d8-48c9-8ff1-8aa9a13ccccf", + "sourceTableGuid": "385f1497-ada2-4e4f-9fc1-1ef4f02a9e90", + "linkGroupGuid": "911f22e7-76ae-44e5-a986-e42608fa9399", "guid": null } }, @@ -47298,12 +47476,12 @@ { "forwards": true, "sourceDatabaseVersionGuid": "00000000-0000-0000-0000-000000000000", - "tabularAttributeGuid": "b4b616d2-b514-44c9-85e1-e8146334fe6d" + "tabularAttributeGuid": "778941a0-e606-4aeb-8314-2a19bd80e4f0" }, { "forwards": false, "sourceDatabaseVersionGuid": "00000000-0000-0000-0000-000000000000", - "tabularAttributeGuid": "1790a285-eff1-4ce1-89d3-5f0ab589a019" + "tabularAttributeGuid": "372ca05c-7bce-49bb-bf4d-43f89d81d04d" } ], "guid": null @@ -47549,7 +47727,7 @@ "description": "This example demonstrates how to create a new layout for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database with a specified guid value. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Composite materials (guid)", - "guid": "e6568635-4516-43fc-98f9-6f6392f4a996" + "guid": "9c59300a-dc12-452d-bad5-182355200b7e" } }, "Example 3": { @@ -47582,7 +47760,7 @@ "description": "This example demonstrates how to create a new layout for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database with a specified guid value. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Composite materials (guid)", - "guid": "e6568635-4516-43fc-98f9-6f6392f4a996" + "guid": "9c59300a-dc12-452d-bad5-182355200b7e" } }, "Example 3": { @@ -47615,7 +47793,7 @@ "description": "This example demonstrates how to create a new layout for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database with a specified guid value. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Composite materials (guid)", - "guid": "e6568635-4516-43fc-98f9-6f6392f4a996" + "guid": "9c59300a-dc12-452d-bad5-182355200b7e" } }, "Example 3": { @@ -47648,7 +47826,7 @@ "description": "This example demonstrates how to create a new layout for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database with a specified guid value. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Composite materials (guid)", - "guid": "e6568635-4516-43fc-98f9-6f6392f4a996" + "guid": "9c59300a-dc12-452d-bad5-182355200b7e" } }, "Example 3": { @@ -47678,7 +47856,7 @@ "applicableApplications": [], "displayNames": {}, "name": "Ceramics", - "guid": "c6454193-2482-40e2-aaa4-6b29165dfa1a" + "guid": "8eb4525c-af4c-4067-be41-c75e0a5d9586" } } } @@ -47822,9 +48000,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "df6cb17f-e1b2-4d88-b6c2-98ad0f174147", + "underlyingEntityGuid": "6ad809ed-451a-4b1d-88bd-0c5bb1a33d65", "name": "Price", - "guid": "09de082f-92c5-4734-b784-e3aa03be4aa5" + "guid": "c4420f33-dbbb-4514-8b42-665348b734df" }, { "itemType": "attribute", @@ -47832,9 +48010,9 @@ "required": false, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "c5cf6c70-8c13-4f5c-9605-f66c953f4aee", + "underlyingEntityGuid": "ac7cac7f-2bdb-49e2-964e-115b4e179f35", "name": "Density", - "guid": "f20953bd-57b9-409d-be19-517bd6244927" + "guid": "74b8c4d8-65db-402b-945f-006aee6ed461" } ], "displayNames": { @@ -47853,9 +48031,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "8344e952-36ff-4a1b-9327-2f310cea2ba7", + "underlyingEntityGuid": "f527a1a9-14fe-4bf2-9e97-a81af47d175f", "name": "Young's modulus", - "guid": "2f98eddc-eb12-4677-895b-7dc6b5de2788" + "guid": "4b940667-74ef-4b1f-aafd-a25a9b9a9a3a" }, { "itemType": "attribute", @@ -47863,9 +48041,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "eef4daa3-e030-4e8a-b9bb-e18676e2a6ef", + "underlyingEntityGuid": "9fa0e463-ded1-4bed-8c86-64cc2676dd44", "name": "Tensile strength", - "guid": "226bd7a0-c54c-4617-8feb-e6ba46999606" + "guid": "b7919bcf-421a-4f00-a4d1-067b99674879" }, { "itemType": "attribute", @@ -47873,9 +48051,9 @@ "required": true, "readOnly": false, "metaAttributes": [], - "underlyingEntityGuid": "c0e1ff7d-edbf-49d1-8aab-5769a3af9b22", + "underlyingEntityGuid": "cb1ef621-63e3-46c5-aa33-ceb9c53e65c4", "name": "Shape factor", - "guid": "07c74c70-21f6-4cd9-a73c-d2a9d7ea487c" + "guid": "25524d74-0e21-436e-84ad-731f20d51e04" } ], "displayNames": { @@ -47959,7 +48137,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "ecbda699-8c2b-4c89-b65c-e00e0432106f" + "guid": "19d5b35b-776a-483b-8f99-cf9cbc3224d9" } }, "Example 2": { @@ -47992,7 +48170,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "ecbda699-8c2b-4c89-b65c-e00e0432106f" + "guid": "19d5b35b-776a-483b-8f99-cf9cbc3224d9" } }, "Example 2": { @@ -48025,7 +48203,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "ecbda699-8c2b-4c89-b65c-e00e0432106f" + "guid": "19d5b35b-776a-483b-8f99-cf9cbc3224d9" } }, "Example 2": { @@ -48058,7 +48236,7 @@ "An Application" ], "name": "Ceramics (Updated)", - "guid": "ecbda699-8c2b-4c89-b65c-e00e0432106f" + "guid": "19d5b35b-776a-483b-8f99-cf9cbc3224d9" } }, "Example 2": { @@ -48091,7 +48269,7 @@ "applicableApplications": [], "displayNames": {}, "name": "Ceramics", - "guid": "3a34a923-9abc-4130-bb0c-df521beb810d" + "guid": "4fb37799-14e1-44f3-ac37-b69440513748" } } } @@ -48404,7 +48582,7 @@ { "type": "discrete", "name": "Red", - "guid": "a35c9170-ccd3-4d08-8867-ee6ad5afb94a" + "guid": "9bd04204-7f67-4094-be76-3baf01e82edb" }, { "type": "discrete", @@ -48414,7 +48592,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "60e47f2c-a812-4438-a1cb-3bdf6617f3b7" + "guid": "346de0b5-3b5f-4f7b-9df2-615987e9a1ba" } }, "Example 3": { @@ -48542,7 +48720,7 @@ { "type": "discrete", "name": "Red", - "guid": "a35c9170-ccd3-4d08-8867-ee6ad5afb94a" + "guid": "9bd04204-7f67-4094-be76-3baf01e82edb" }, { "type": "discrete", @@ -48552,7 +48730,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "60e47f2c-a812-4438-a1cb-3bdf6617f3b7" + "guid": "346de0b5-3b5f-4f7b-9df2-615987e9a1ba" } }, "Example 3": { @@ -48680,7 +48858,7 @@ { "type": "discrete", "name": "Red", - "guid": "a35c9170-ccd3-4d08-8867-ee6ad5afb94a" + "guid": "9bd04204-7f67-4094-be76-3baf01e82edb" }, { "type": "discrete", @@ -48690,7 +48868,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "60e47f2c-a812-4438-a1cb-3bdf6617f3b7" + "guid": "346de0b5-3b5f-4f7b-9df2-615987e9a1ba" } }, "Example 3": { @@ -48818,7 +48996,7 @@ { "type": "discrete", "name": "Red", - "guid": "a35c9170-ccd3-4d08-8867-ee6ad5afb94a" + "guid": "9bd04204-7f67-4094-be76-3baf01e82edb" }, { "type": "discrete", @@ -48828,7 +49006,7 @@ "type": "discrete", "defaultParameterValueIndex": 1, "name": "Color (guid)", - "guid": "60e47f2c-a812-4438-a1cb-3bdf6617f3b7" + "guid": "346de0b5-3b5f-4f7b-9df2-615987e9a1ba" } }, "Example 3": { @@ -48999,8 +49177,8 @@ "name": "Outside Temperature", "errors": [ { - "message": "Could not find unit with GUID '1b08c596-a1c1-4bbf-80f5-2028935009a7'.", - "guid": "1b08c596-a1c1-4bbf-80f5-2028935009a7", + "message": "Could not find unit with GUID '6735b8d7-3206-41cc-8482-43d98e0d4009'.", + "guid": "6735b8d7-3206-41cc-8482-43d98e0d4009", "reason": "noSuchUnit" }, { @@ -49160,7 +49338,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "42cab2f3-923a-4579-8be7-6ad2b304d0b0" + "guid": "c1b10a3b-7e06-45d5-b937-932dc791d4e8" } }, "Example 2": { @@ -49171,7 +49349,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "afa540d7-9608-4285-bf0e-9d2de83321f6" + "guid": "c1df8c8a-8c0a-40c4-aaf0-630dbb5f7895" } }, "Example 3": { @@ -49179,7 +49357,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Strain' parameter (GUID = '00000005-000a-4fff-8fff-0000ffff0000') from the MI_Training database. Guid can be updated for both kinds of parameters.", "value": { "type": "numeric", - "guid": "08be3272-1256-46d2-8b55-5f5ebb7632c6" + "guid": "a4a76b28-f727-4c00-8e7d-7d1f2614a209" } }, "Example 4": { @@ -49198,7 +49376,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "20539b5c-64d2-4d75-bfaf-27f4c37c7ad7" + "guid": "85fdbe09-047e-4b76-a479-e47652b20e0e" } }, "Example 6": { @@ -49264,7 +49442,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "42cab2f3-923a-4579-8be7-6ad2b304d0b0" + "guid": "c1b10a3b-7e06-45d5-b937-932dc791d4e8" } }, "Example 2": { @@ -49275,7 +49453,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "afa540d7-9608-4285-bf0e-9d2de83321f6" + "guid": "c1df8c8a-8c0a-40c4-aaf0-630dbb5f7895" } }, "Example 3": { @@ -49283,7 +49461,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Strain' parameter (GUID = '00000005-000a-4fff-8fff-0000ffff0000') from the MI_Training database. Guid can be updated for both kinds of parameters.", "value": { "type": "numeric", - "guid": "08be3272-1256-46d2-8b55-5f5ebb7632c6" + "guid": "a4a76b28-f727-4c00-8e7d-7d1f2614a209" } }, "Example 4": { @@ -49302,7 +49480,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "20539b5c-64d2-4d75-bfaf-27f4c37c7ad7" + "guid": "85fdbe09-047e-4b76-a479-e47652b20e0e" } }, "Example 6": { @@ -49368,7 +49546,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "42cab2f3-923a-4579-8be7-6ad2b304d0b0" + "guid": "c1b10a3b-7e06-45d5-b937-932dc791d4e8" } }, "Example 2": { @@ -49379,7 +49557,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "afa540d7-9608-4285-bf0e-9d2de83321f6" + "guid": "c1df8c8a-8c0a-40c4-aaf0-630dbb5f7895" } }, "Example 3": { @@ -49387,7 +49565,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Strain' parameter (GUID = '00000005-000a-4fff-8fff-0000ffff0000') from the MI_Training database. Guid can be updated for both kinds of parameters.", "value": { "type": "numeric", - "guid": "08be3272-1256-46d2-8b55-5f5ebb7632c6" + "guid": "a4a76b28-f727-4c00-8e7d-7d1f2614a209" } }, "Example 4": { @@ -49406,7 +49584,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "20539b5c-64d2-4d75-bfaf-27f4c37c7ad7" + "guid": "85fdbe09-047e-4b76-a479-e47652b20e0e" } }, "Example 6": { @@ -49472,7 +49650,7 @@ "helpPath": "help/strain-updated.html", "defaultParameterValueGuid": "173284fb-e557-406f-a7eb-f4e75f1d48a9", "name": "Strain (Updated)", - "guid": "42cab2f3-923a-4579-8be7-6ad2b304d0b0" + "guid": "c1b10a3b-7e06-45d5-b937-932dc791d4e8" } }, "Example 2": { @@ -49483,7 +49661,7 @@ "helpPath": "help/basis-updated.html", "defaultParameterValueGuid": "505b5d32-0a4a-48af-9a7a-90c4caacd35c", "name": "Basis (Updated)", - "guid": "afa540d7-9608-4285-bf0e-9d2de83321f6" + "guid": "c1df8c8a-8c0a-40c4-aaf0-630dbb5f7895" } }, "Example 3": { @@ -49491,7 +49669,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Strain' parameter (GUID = '00000005-000a-4fff-8fff-0000ffff0000') from the MI_Training database. Guid can be updated for both kinds of parameters.", "value": { "type": "numeric", - "guid": "08be3272-1256-46d2-8b55-5f5ebb7632c6" + "guid": "a4a76b28-f727-4c00-8e7d-7d1f2614a209" } }, "Example 4": { @@ -49510,7 +49688,7 @@ "unit": { "guid": "0000007a-0013-4fff-8fff-0000ffff0000" }, - "guid": "20539b5c-64d2-4d75-bfaf-27f4c37c7ad7" + "guid": "85fdbe09-047e-4b76-a479-e47652b20e0e" } }, "Example 6": { @@ -49618,8 +49796,8 @@ "parameterGuid": "00000001-000a-4fff-8fff-0000ffff0000", "errors": [ { - "message": "Could not find unit with GUID '8a931c9c-0465-434b-8d68-31a5dbc4a557'.", - "guid": "8a931c9c-0465-434b-8d68-31a5dbc4a557", + "message": "Could not find unit with GUID '9657ae0b-981b-4aad-b6f3-f092a7b7a818'.", + "guid": "9657ae0b-981b-4aad-b6f3-f092a7b7a818", "reason": "noSuchUnit" } ] @@ -49634,8 +49812,8 @@ "parameterGuid": "00000004-000a-4fff-8fff-0000ffff0000", "errors": [ { - "message": "Could not find unit with GUID 'd65ecbce-3f31-49a8-9165-c08fb753d542'.", - "guid": "d65ecbce-3f31-49a8-9165-c08fb753d542", + "message": "Could not find unit with GUID 'a5cebbd0-e959-44ac-a9f6-c1923d8ff85d'.", + "guid": "a5cebbd0-e959-44ac-a9f6-c1923d8ff85d", "reason": "noSuchUnit" }, { @@ -49901,7 +50079,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "36d890df-ed3c-4c44-a0b3-1fbbf5297b15" + "guid": "18cf7b94-80b0-4edb-bc97-02effc9a53bb" } }, "Example 2": { @@ -49910,7 +50088,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "0b369e29-5813-4ae7-8790-a03f172d29e5" + "guid": "5711c32f-655d-4ce3-9076-effa9cc2b782" } }, "Example 3": { @@ -49918,7 +50096,7 @@ "description": "This example demonstrates how to update guid of the 'Strain 0.1' numeric parameter value (guid = 173284fb-e557-406f-a7eb-f4e75f1d48a9) from the 'Strain' numeric parameter (guid = 00000005-000a-4fff-8fff-0000ffff0000) from the MI_Training database using a PATCH request.", "value": { "type": "numeric", - "guid": "322f2212-e2dd-451b-ba3a-11b5c23ae096" + "guid": "331ada93-6666-46ef-a877-5dcc70ce33e2" } } } @@ -49935,7 +50113,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "36d890df-ed3c-4c44-a0b3-1fbbf5297b15" + "guid": "18cf7b94-80b0-4edb-bc97-02effc9a53bb" } }, "Example 2": { @@ -49944,7 +50122,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "0b369e29-5813-4ae7-8790-a03f172d29e5" + "guid": "5711c32f-655d-4ce3-9076-effa9cc2b782" } }, "Example 3": { @@ -49952,7 +50130,7 @@ "description": "This example demonstrates how to update guid of the 'Strain 0.1' numeric parameter value (guid = 173284fb-e557-406f-a7eb-f4e75f1d48a9) from the 'Strain' numeric parameter (guid = 00000005-000a-4fff-8fff-0000ffff0000) from the MI_Training database using a PATCH request.", "value": { "type": "numeric", - "guid": "322f2212-e2dd-451b-ba3a-11b5c23ae096" + "guid": "331ada93-6666-46ef-a877-5dcc70ce33e2" } } } @@ -49969,7 +50147,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "36d890df-ed3c-4c44-a0b3-1fbbf5297b15" + "guid": "18cf7b94-80b0-4edb-bc97-02effc9a53bb" } }, "Example 2": { @@ -49978,7 +50156,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "0b369e29-5813-4ae7-8790-a03f172d29e5" + "guid": "5711c32f-655d-4ce3-9076-effa9cc2b782" } }, "Example 3": { @@ -49986,7 +50164,7 @@ "description": "This example demonstrates how to update guid of the 'Strain 0.1' numeric parameter value (guid = 173284fb-e557-406f-a7eb-f4e75f1d48a9) from the 'Strain' numeric parameter (guid = 00000005-000a-4fff-8fff-0000ffff0000) from the MI_Training database using a PATCH request.", "value": { "type": "numeric", - "guid": "322f2212-e2dd-451b-ba3a-11b5c23ae096" + "guid": "331ada93-6666-46ef-a877-5dcc70ce33e2" } } } @@ -50003,7 +50181,7 @@ "value": 10.0, "type": "numeric", "name": "Strain 0.1 (Updated)", - "guid": "36d890df-ed3c-4c44-a0b3-1fbbf5297b15" + "guid": "18cf7b94-80b0-4edb-bc97-02effc9a53bb" } }, "Example 2": { @@ -50012,7 +50190,7 @@ "value": { "type": "discrete", "name": "Mean (Updated)", - "guid": "0b369e29-5813-4ae7-8790-a03f172d29e5" + "guid": "5711c32f-655d-4ce3-9076-effa9cc2b782" } }, "Example 3": { @@ -50020,7 +50198,7 @@ "description": "This example demonstrates how to update guid of the 'Strain 0.1' numeric parameter value (guid = 173284fb-e557-406f-a7eb-f4e75f1d48a9) from the 'Strain' numeric parameter (guid = 00000005-000a-4fff-8fff-0000ffff0000) from the MI_Training database using a PATCH request.", "value": { "type": "numeric", - "guid": "322f2212-e2dd-451b-ba3a-11b5c23ae096" + "guid": "331ada93-6666-46ef-a877-5dcc70ce33e2" } } } @@ -50813,7 +50991,7 @@ "description": "This example demonstrates how to create a new profile with a specified guid. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "MI:Training Processes", - "guid": "38f0c194-8190-47a8-8a21-d97b98aca3f6" + "guid": "e159b5c4-da7b-4755-b4ab-bddd061a57dd" } }, "Example 3": { @@ -50824,7 +51002,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "626ab1a3-adf8-4260-9d79-ed48d0a8971c" + "guid": "b5b0b986-bcf4-46e4-886f-c4707e26469e" } } } @@ -50846,7 +51024,7 @@ "description": "This example demonstrates how to create a new profile with a specified guid. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "MI:Training Processes", - "guid": "38f0c194-8190-47a8-8a21-d97b98aca3f6" + "guid": "e159b5c4-da7b-4755-b4ab-bddd061a57dd" } }, "Example 3": { @@ -50857,7 +51035,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "626ab1a3-adf8-4260-9d79-ed48d0a8971c" + "guid": "b5b0b986-bcf4-46e4-886f-c4707e26469e" } } } @@ -50879,7 +51057,7 @@ "description": "This example demonstrates how to create a new profile with a specified guid. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "MI:Training Processes", - "guid": "38f0c194-8190-47a8-8a21-d97b98aca3f6" + "guid": "e159b5c4-da7b-4755-b4ab-bddd061a57dd" } }, "Example 3": { @@ -50890,7 +51068,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "626ab1a3-adf8-4260-9d79-ed48d0a8971c" + "guid": "b5b0b986-bcf4-46e4-886f-c4707e26469e" } } } @@ -50912,7 +51090,7 @@ "description": "This example demonstrates how to create a new profile with a specified guid. Normally, if the guid is not specified, a random new Guid will be generated.", "value": { "name": "MI:Training Processes", - "guid": "38f0c194-8190-47a8-8a21-d97b98aca3f6" + "guid": "e159b5c4-da7b-4755-b4ab-bddd061a57dd" } }, "Example 3": { @@ -50923,7 +51101,7 @@ "homepageUrl": "TrainingProfiles/TrainingProcesses", "groupName": "MI:Training Profiles", "name": "MI:Training Processes", - "guid": "626ab1a3-adf8-4260-9d79-ed48d0a8971c" + "guid": "b5b0b986-bcf4-46e4-886f-c4707e26469e" } } } @@ -51065,7 +51243,7 @@ "summary": "Update a guid", "description": "This example demonstrates how to update the 'Guid' property of the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "ec7cafab-d591-4ca8-973d-18b48e1d4698" + "guid": "358527ea-4113-4176-97e2-9eda258b0e7f" } }, "Example 2": { @@ -51085,7 +51263,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "f251e911-7c13-4686-a941-94fc01672f38", + "guid": "e09a0605-77a1-4030-84a2-c2c685ec1225", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -51101,7 +51279,7 @@ "summary": "Update a guid", "description": "This example demonstrates how to update the 'Guid' property of the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "ec7cafab-d591-4ca8-973d-18b48e1d4698" + "guid": "358527ea-4113-4176-97e2-9eda258b0e7f" } }, "Example 2": { @@ -51121,7 +51299,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "f251e911-7c13-4686-a941-94fc01672f38", + "guid": "e09a0605-77a1-4030-84a2-c2c685ec1225", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -51137,7 +51315,7 @@ "summary": "Update a guid", "description": "This example demonstrates how to update the 'Guid' property of the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "ec7cafab-d591-4ca8-973d-18b48e1d4698" + "guid": "358527ea-4113-4176-97e2-9eda258b0e7f" } }, "Example 2": { @@ -51157,7 +51335,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "f251e911-7c13-4686-a941-94fc01672f38", + "guid": "e09a0605-77a1-4030-84a2-c2c685ec1225", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -51173,7 +51351,7 @@ "summary": "Update a guid", "description": "This example demonstrates how to update the 'Guid' property of the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "ec7cafab-d591-4ca8-973d-18b48e1d4698" + "guid": "358527ea-4113-4176-97e2-9eda258b0e7f" } }, "Example 2": { @@ -51193,7 +51371,7 @@ "81bb4607-e2a3-4c78-81fc-a18a09979c72", "a7cb2018-8410-42fd-ac6a-8bc1b441ba6e" ], - "guid": "f251e911-7c13-4686-a941-94fc01672f38", + "guid": "e09a0605-77a1-4030-84a2-c2c685ec1225", "groupName": "MI:Training Profiles (Updated)", "name": "MI:Training Metals" } @@ -51375,7 +51553,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "f1a403b3-f7ab-458b-840e-64e6b3aad837" + "guid": "5ac86efe-5f1f-44ef-96d8-b65b8ff5290d" } }, "Example 3": { @@ -51386,7 +51564,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "a0306b7f-dddc-45f9-8fdd-14e7bfd8ba9a" + "guid": "276c8d66-d006-4d59-a7b3-d8ace8740129" } } } @@ -51410,7 +51588,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "f1a403b3-f7ab-458b-840e-64e6b3aad837" + "guid": "5ac86efe-5f1f-44ef-96d8-b65b8ff5290d" } }, "Example 3": { @@ -51421,7 +51599,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "a0306b7f-dddc-45f9-8fdd-14e7bfd8ba9a" + "guid": "276c8d66-d006-4d59-a7b3-d8ace8740129" } } } @@ -51445,7 +51623,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "f1a403b3-f7ab-458b-840e-64e6b3aad837" + "guid": "5ac86efe-5f1f-44ef-96d8-b65b8ff5290d" } }, "Example 3": { @@ -51456,7 +51634,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "a0306b7f-dddc-45f9-8fdd-14e7bfd8ba9a" + "guid": "276c8d66-d006-4d59-a7b3-d8ace8740129" } } } @@ -51480,7 +51658,7 @@ "value": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", - "guid": "f1a403b3-f7ab-458b-840e-64e6b3aad837" + "guid": "5ac86efe-5f1f-44ef-96d8-b65b8ff5290d" } }, "Example 3": { @@ -51491,7 +51669,7 @@ "tableGuid": "bc666ac6-8ac6-482b-9a16-502e6ab3730e", "subsetGuid": "c2a6b6d0-540c-4927-b861-840644fc3968", "layoutGuid": "f8379ae4-a8a8-4329-b9b5-cd0b2d285fd0", - "guid": "a0306b7f-dddc-45f9-8fdd-14e7bfd8ba9a" + "guid": "276c8d66-d006-4d59-a7b3-d8ace8740129" } } } @@ -51628,7 +51806,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "48058ecb-8d84-4a60-834f-6c3fb17c307b" + "guid": "556189a4-7504-4a02-acfe-1996ba64e1fb" } }, "Example 2": { @@ -51643,7 +51821,7 @@ "summary": "Just guid", "description": "This example shows how to update the 'Guid' property of the 'MaterialUniverse' profile table (guid = a7cb2018-8410-42fd-ac6a-8bc1b441ba6e) from the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "d89fe825-0ab2-41c8-8052-bf64b009a421" + "guid": "4e8a88c6-2a01-4630-aa6b-6f116d9551ac" } } } @@ -51659,7 +51837,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "48058ecb-8d84-4a60-834f-6c3fb17c307b" + "guid": "556189a4-7504-4a02-acfe-1996ba64e1fb" } }, "Example 2": { @@ -51674,7 +51852,7 @@ "summary": "Just guid", "description": "This example shows how to update the 'Guid' property of the 'MaterialUniverse' profile table (guid = a7cb2018-8410-42fd-ac6a-8bc1b441ba6e) from the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "d89fe825-0ab2-41c8-8052-bf64b009a421" + "guid": "4e8a88c6-2a01-4630-aa6b-6f116d9551ac" } } } @@ -51690,7 +51868,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "48058ecb-8d84-4a60-834f-6c3fb17c307b" + "guid": "556189a4-7504-4a02-acfe-1996ba64e1fb" } }, "Example 2": { @@ -51705,7 +51883,7 @@ "summary": "Just guid", "description": "This example shows how to update the 'Guid' property of the 'MaterialUniverse' profile table (guid = a7cb2018-8410-42fd-ac6a-8bc1b441ba6e) from the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "d89fe825-0ab2-41c8-8052-bf64b009a421" + "guid": "4e8a88c6-2a01-4630-aa6b-6f116d9551ac" } } } @@ -51721,7 +51899,7 @@ "value": { "subsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "layoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", - "guid": "48058ecb-8d84-4a60-834f-6c3fb17c307b" + "guid": "556189a4-7504-4a02-acfe-1996ba64e1fb" } }, "Example 2": { @@ -51736,7 +51914,7 @@ "summary": "Just guid", "description": "This example shows how to update the 'Guid' property of the 'MaterialUniverse' profile table (guid = a7cb2018-8410-42fd-ac6a-8bc1b441ba6e) from the 'MI:Training Metals' profile (guid = f76e3ce8-608a-42da-8d99-f0009dac966f).", "value": { - "guid": "d89fe825-0ab2-41c8-8052-bf64b009a421" + "guid": "4e8a88c6-2a01-4630-aa6b-6f116d9551ac" } } } @@ -51911,7 +52089,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "MI Training Exercise for Import - Second Training Database And Table", - "guid": "45de2714-1867-42f0-976d-090bde66466b" + "guid": "86c236b8-c7c3-435d-9ecd-5893a386eb1f" } ] } @@ -51984,7 +52162,7 @@ "includeIndirectLinks": true, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "76ce9563-ad3c-46b6-8dc8-fcb0d276ce44" + "guid": "8c7ed7ef-e4ef-4fc9-af4b-23f7aebf8382" } }, "Example 3": { @@ -51993,7 +52171,7 @@ "value": { "type": "crossDatabase", "linkTarget": { - "tableGuid": "2600c8aa-744c-4a6f-964e-e6840dca8fd2" + "tableGuid": "73528a36-e3b0-4ecd-ae99-652251ee5ca8" }, "includeIndirectLinks": false, "reverseName": "Cross database link to Material Universe", @@ -52006,13 +52184,13 @@ "value": { "type": "crossDatabase", "linkTarget": { - "databaseGuid": "eeb7bad5-5c2b-414b-9f9a-2cde546ff25f", - "tableGuid": "bcf72b9b-71f1-41c2-a253-ef35249423cf" + "databaseGuid": "6ed03ea9-6958-4538-9d86-8c9b30d44f77", + "tableGuid": "4e4b3b60-f667-4019-ba9e-5ffbe36a3eac" }, "includeIndirectLinks": true, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "d26dcf79-f67b-4ecc-9445-0f1e8d002b0f" + "guid": "493284dc-bed0-4e8b-8aa4-3f2fdf4ce14b" } }, "Example 5": { @@ -52057,7 +52235,7 @@ ], "reverseName": "Material Universe smart link", "name": "Process Universe smart link", - "guid": "e0771175-e3ae-4728-88dc-81e8d2db8605" + "guid": "b9580d8e-0b16-4897-b4db-2df7ec722b9c" } } } @@ -52091,7 +52269,7 @@ "includeIndirectLinks": true, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "76ce9563-ad3c-46b6-8dc8-fcb0d276ce44" + "guid": "8c7ed7ef-e4ef-4fc9-af4b-23f7aebf8382" } }, "Example 3": { @@ -52100,7 +52278,7 @@ "value": { "type": "crossDatabase", "linkTarget": { - "tableGuid": "2600c8aa-744c-4a6f-964e-e6840dca8fd2" + "tableGuid": "73528a36-e3b0-4ecd-ae99-652251ee5ca8" }, "includeIndirectLinks": false, "reverseName": "Cross database link to Material Universe", @@ -52113,13 +52291,13 @@ "value": { "type": "crossDatabase", "linkTarget": { - "databaseGuid": "eeb7bad5-5c2b-414b-9f9a-2cde546ff25f", - "tableGuid": "bcf72b9b-71f1-41c2-a253-ef35249423cf" + "databaseGuid": "6ed03ea9-6958-4538-9d86-8c9b30d44f77", + "tableGuid": "4e4b3b60-f667-4019-ba9e-5ffbe36a3eac" }, "includeIndirectLinks": true, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "d26dcf79-f67b-4ecc-9445-0f1e8d002b0f" + "guid": "493284dc-bed0-4e8b-8aa4-3f2fdf4ce14b" } }, "Example 5": { @@ -52164,7 +52342,7 @@ ], "reverseName": "Material Universe smart link", "name": "Process Universe smart link", - "guid": "e0771175-e3ae-4728-88dc-81e8d2db8605" + "guid": "b9580d8e-0b16-4897-b4db-2df7ec722b9c" } } } @@ -52198,7 +52376,7 @@ "includeIndirectLinks": true, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "76ce9563-ad3c-46b6-8dc8-fcb0d276ce44" + "guid": "8c7ed7ef-e4ef-4fc9-af4b-23f7aebf8382" } }, "Example 3": { @@ -52207,7 +52385,7 @@ "value": { "type": "crossDatabase", "linkTarget": { - "tableGuid": "2600c8aa-744c-4a6f-964e-e6840dca8fd2" + "tableGuid": "73528a36-e3b0-4ecd-ae99-652251ee5ca8" }, "includeIndirectLinks": false, "reverseName": "Cross database link to Material Universe", @@ -52220,13 +52398,13 @@ "value": { "type": "crossDatabase", "linkTarget": { - "databaseGuid": "eeb7bad5-5c2b-414b-9f9a-2cde546ff25f", - "tableGuid": "bcf72b9b-71f1-41c2-a253-ef35249423cf" + "databaseGuid": "6ed03ea9-6958-4538-9d86-8c9b30d44f77", + "tableGuid": "4e4b3b60-f667-4019-ba9e-5ffbe36a3eac" }, "includeIndirectLinks": true, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "d26dcf79-f67b-4ecc-9445-0f1e8d002b0f" + "guid": "493284dc-bed0-4e8b-8aa4-3f2fdf4ce14b" } }, "Example 5": { @@ -52271,7 +52449,7 @@ ], "reverseName": "Material Universe smart link", "name": "Process Universe smart link", - "guid": "e0771175-e3ae-4728-88dc-81e8d2db8605" + "guid": "b9580d8e-0b16-4897-b4db-2df7ec722b9c" } } } @@ -52305,7 +52483,7 @@ "includeIndirectLinks": true, "reverseName": "Material Universe static link", "name": "Process Universe static link", - "guid": "76ce9563-ad3c-46b6-8dc8-fcb0d276ce44" + "guid": "8c7ed7ef-e4ef-4fc9-af4b-23f7aebf8382" } }, "Example 3": { @@ -52314,7 +52492,7 @@ "value": { "type": "crossDatabase", "linkTarget": { - "tableGuid": "2600c8aa-744c-4a6f-964e-e6840dca8fd2" + "tableGuid": "73528a36-e3b0-4ecd-ae99-652251ee5ca8" }, "includeIndirectLinks": false, "reverseName": "Cross database link to Material Universe", @@ -52327,13 +52505,13 @@ "value": { "type": "crossDatabase", "linkTarget": { - "databaseGuid": "eeb7bad5-5c2b-414b-9f9a-2cde546ff25f", - "tableGuid": "bcf72b9b-71f1-41c2-a253-ef35249423cf" + "databaseGuid": "6ed03ea9-6958-4538-9d86-8c9b30d44f77", + "tableGuid": "4e4b3b60-f667-4019-ba9e-5ffbe36a3eac" }, "includeIndirectLinks": true, "reverseName": "Cross database link to MI Training - Material Universe", "name": "Cross database link from MI Training - Material Universe", - "guid": "d26dcf79-f67b-4ecc-9445-0f1e8d002b0f" + "guid": "493284dc-bed0-4e8b-8aa4-3f2fdf4ce14b" } }, "Example 5": { @@ -52378,7 +52556,7 @@ ], "reverseName": "Material Universe smart link", "name": "Process Universe smart link", - "guid": "e0771175-e3ae-4728-88dc-81e8d2db8605" + "guid": "b9580d8e-0b16-4897-b4db-2df7ec722b9c" } } } @@ -52433,8 +52611,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "ae7fdfb4-e50a-433b-b057-497e4cff7703", - "tableGuid": "2ff9a752-c09d-4881-ab7d-ca2d73cd4b49" + "databaseGuid": "c2b46d41-e369-4b63-b200-687704b16919", + "tableGuid": "421c930d-c476-4001-a79c-ca2aa152088b" } }, "identity": 1, @@ -52442,7 +52620,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "fed1ee86-132a-4f01-a3e1-da37366d9364" + "guid": "8ac44bc6-0667-4610-917c-d8ff2d5e5a98" } }, "Example 6": { @@ -52640,8 +52818,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "abd633ef-ce19-4f28-b7e9-71ef0c4db659", - "tableGuid": "65452f33-56c9-4e02-a69f-25e670265c29" + "databaseGuid": "391af7b8-07b5-4db6-ae72-520f500d6297", + "tableGuid": "23743391-8ddf-4342-9bfe-60e1fae26d5e" } }, "identity": 1, @@ -52649,7 +52827,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "f9da8ce5-7d7c-4a7c-9d9f-761760c06b17" + "guid": "531706cd-52ee-462f-ae6d-8782b7d1948d" } }, "Example 3": { @@ -52832,7 +53010,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Fatigue Test Data' static record link group (GUID = '485da78d-d094-4edb-a5a9-077fe1bc02f2') from the 'Fatigue Statistical Data' table (GUID = 'c9954321-b4d4-4443-949e-f9b161e2c8fb') from the MI_Training database.", "value": { "type": "static", - "guid": "c155810f-ff8e-4671-af98-16485c640d34" + "guid": "a1c66fb3-ae19-43f2-b7aa-59d8edbb169e" } }, "Example 2": { @@ -52852,7 +53030,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "32f91865-51be-4f4e-b60a-b92cb5db0243" + "guid": "e0b639ca-c4d1-461a-ae5d-73e3c81906aa" } }, "Example 4": { @@ -52863,7 +53041,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "a428266c-8a94-41d7-9866-02239dec66a2" + "guid": "55e92d8b-a938-4857-ad12-dcd4d608a09a" } }, "Example 5": { @@ -52885,7 +53063,7 @@ "type": "smart", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "07215c35-aaa8-4f67-936f-de71a8cfed84" + "guid": "d8295ce7-ae7e-4283-ad68-5e35a55ad290" } } } @@ -52900,7 +53078,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Fatigue Test Data' static record link group (GUID = '485da78d-d094-4edb-a5a9-077fe1bc02f2') from the 'Fatigue Statistical Data' table (GUID = 'c9954321-b4d4-4443-949e-f9b161e2c8fb') from the MI_Training database.", "value": { "type": "static", - "guid": "c155810f-ff8e-4671-af98-16485c640d34" + "guid": "a1c66fb3-ae19-43f2-b7aa-59d8edbb169e" } }, "Example 2": { @@ -52920,7 +53098,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "32f91865-51be-4f4e-b60a-b92cb5db0243" + "guid": "e0b639ca-c4d1-461a-ae5d-73e3c81906aa" } }, "Example 4": { @@ -52931,7 +53109,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "a428266c-8a94-41d7-9866-02239dec66a2" + "guid": "55e92d8b-a938-4857-ad12-dcd4d608a09a" } }, "Example 5": { @@ -52953,7 +53131,7 @@ "type": "smart", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "07215c35-aaa8-4f67-936f-de71a8cfed84" + "guid": "d8295ce7-ae7e-4283-ad68-5e35a55ad290" } } } @@ -52968,7 +53146,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Fatigue Test Data' static record link group (GUID = '485da78d-d094-4edb-a5a9-077fe1bc02f2') from the 'Fatigue Statistical Data' table (GUID = 'c9954321-b4d4-4443-949e-f9b161e2c8fb') from the MI_Training database.", "value": { "type": "static", - "guid": "c155810f-ff8e-4671-af98-16485c640d34" + "guid": "a1c66fb3-ae19-43f2-b7aa-59d8edbb169e" } }, "Example 2": { @@ -52988,7 +53166,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "32f91865-51be-4f4e-b60a-b92cb5db0243" + "guid": "e0b639ca-c4d1-461a-ae5d-73e3c81906aa" } }, "Example 4": { @@ -52999,7 +53177,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "a428266c-8a94-41d7-9866-02239dec66a2" + "guid": "55e92d8b-a938-4857-ad12-dcd4d608a09a" } }, "Example 5": { @@ -53021,7 +53199,7 @@ "type": "smart", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "07215c35-aaa8-4f67-936f-de71a8cfed84" + "guid": "d8295ce7-ae7e-4283-ad68-5e35a55ad290" } } } @@ -53036,7 +53214,7 @@ "description": "This example demonstrates how to update the 'Guid' property of the 'Fatigue Test Data' static record link group (GUID = '485da78d-d094-4edb-a5a9-077fe1bc02f2') from the 'Fatigue Statistical Data' table (GUID = 'c9954321-b4d4-4443-949e-f9b161e2c8fb') from the MI_Training database.", "value": { "type": "static", - "guid": "c155810f-ff8e-4671-af98-16485c640d34" + "guid": "a1c66fb3-ae19-43f2-b7aa-59d8edbb169e" } }, "Example 2": { @@ -53056,7 +53234,7 @@ "type": "static", "reverseName": "Fatigue Statistical Data (updated)", "name": "Fatigue Test Data (updated)", - "guid": "32f91865-51be-4f4e-b60a-b92cb5db0243" + "guid": "e0b639ca-c4d1-461a-ae5d-73e3c81906aa" } }, "Example 4": { @@ -53067,7 +53245,7 @@ "type": "crossDatabase", "reverseName": "Link To MI Training - Material Universe (Updated)", "name": "Link From MI Training - Material Universe (Updated)", - "guid": "a428266c-8a94-41d7-9866-02239dec66a2" + "guid": "55e92d8b-a938-4857-ad12-dcd4d608a09a" } }, "Example 5": { @@ -53089,7 +53267,7 @@ "type": "smart", "reverseName": "Further panel information (Updated)", "name": "Tensile test data (Updated)", - "guid": "07215c35-aaa8-4f67-936f-de71a8cfed84" + "guid": "d8295ce7-ae7e-4283-ad68-5e35a55ad290" } } } @@ -53144,8 +53322,8 @@ "tableGuid": "0000dd92-0011-4fff-8fff-0000ffff0000" }, "linkTarget": { - "databaseGuid": "4f9bcbcc-c151-440f-b325-6f42f4270547", - "tableGuid": "84ca5316-f6a0-4791-a66f-bbdc421efa8e" + "databaseGuid": "4e5ae98f-5821-42fe-a7a8-0643e1084b82", + "tableGuid": "feb49731-e179-46cf-a36d-7845b804801a" } }, "identity": 1, @@ -53153,7 +53331,7 @@ "reverseDisplayNames": {}, "displayNames": {}, "name": "Different database - different table", - "guid": "7c550603-5fce-4a91-9185-d7b714142fd7" + "guid": "dd02465f-0668-4c85-96f8-c86fb2c32be8" } }, "Example 9": { @@ -53310,7 +53488,7 @@ "value": { "value": "https://grantadesign.com/industry/support/granta-mi/{a:My Granta web folder}", "name": "Links to GRANTA MI support on the ANSYS Granta website", - "guid": "e120c2e6-a5a9-4e3b-a9b9-7b84416fa042" + "guid": "cd5a6c6a-63e7-491f-8ebf-ad0430598be3" } } } @@ -53334,7 +53512,7 @@ "value": { "value": "https://grantadesign.com/industry/support/granta-mi/{a:My Granta web folder}", "name": "Links to GRANTA MI support on the ANSYS Granta website", - "guid": "e120c2e6-a5a9-4e3b-a9b9-7b84416fa042" + "guid": "cd5a6c6a-63e7-491f-8ebf-ad0430598be3" } } } @@ -53358,7 +53536,7 @@ "value": { "value": "https://grantadesign.com/industry/support/granta-mi/{a:My Granta web folder}", "name": "Links to GRANTA MI support on the ANSYS Granta website", - "guid": "e120c2e6-a5a9-4e3b-a9b9-7b84416fa042" + "guid": "cd5a6c6a-63e7-491f-8ebf-ad0430598be3" } } } @@ -53382,7 +53560,7 @@ "value": { "value": "https://grantadesign.com/industry/support/granta-mi/{a:My Granta web folder}", "name": "Links to GRANTA MI support on the ANSYS Granta website", - "guid": "e120c2e6-a5a9-4e3b-a9b9-7b84416fa042" + "guid": "cd5a6c6a-63e7-491f-8ebf-ad0430598be3" } } } @@ -53511,7 +53689,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "571b6112-75ff-4016-8347-384c3d9545ea" + "guid": "adb93c27-28e5-45ec-9e11-420102fd99ac" } }, "Example 2": { @@ -53541,7 +53719,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "571b6112-75ff-4016-8347-384c3d9545ea" + "guid": "adb93c27-28e5-45ec-9e11-420102fd99ac" } }, "Example 2": { @@ -53571,7 +53749,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "571b6112-75ff-4016-8347-384c3d9545ea" + "guid": "adb93c27-28e5-45ec-9e11-420102fd99ac" } }, "Example 2": { @@ -53601,7 +53779,7 @@ "value": { "value": "New value for replacement string", "name": "New name for replacement string", - "guid": "571b6112-75ff-4016-8347-384c3d9545ea" + "guid": "adb93c27-28e5-45ec-9e11-420102fd99ac" } }, "Example 2": { @@ -53801,7 +53979,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "70513e44-abc1-42ac-b144-473e97839465" + "guid": "993cf6ad-72f6-4f35-8a82-3b08252fce58" } ], "name": "Unification" @@ -53882,7 +54060,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "70513e44-abc1-42ac-b144-473e97839465" + "guid": "993cf6ad-72f6-4f35-8a82-3b08252fce58" } ], "name": "Unification" @@ -53963,7 +54141,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "70513e44-abc1-42ac-b144-473e97839465" + "guid": "993cf6ad-72f6-4f35-8a82-3b08252fce58" } ], "name": "Unification" @@ -54044,7 +54222,7 @@ "value": { "mappedCrossDatabaseRecordLinkGroups": [ { - "guid": "70513e44-abc1-42ac-b144-473e97839465" + "guid": "993cf6ad-72f6-4f35-8a82-3b08252fce58" } ], "name": "Unification" @@ -54188,7 +54366,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' property of the 'Density' standard name (guid = 5f5b89f7-da4e-4ae2-8c65-485e3c1a98fd) from the MI_Training database.", "value": { - "guid": "782e7e9e-4a9a-4d99-bef5-fa11a67be926" + "guid": "e0fe9aa7-9c5f-40ee-9487-f09304f847a8" } }, "Example 3": { @@ -54238,7 +54416,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' property of the 'Density' standard name (guid = 5f5b89f7-da4e-4ae2-8c65-485e3c1a98fd) from the MI_Training database.", "value": { - "guid": "782e7e9e-4a9a-4d99-bef5-fa11a67be926" + "guid": "e0fe9aa7-9c5f-40ee-9487-f09304f847a8" } }, "Example 3": { @@ -54288,7 +54466,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' property of the 'Density' standard name (guid = 5f5b89f7-da4e-4ae2-8c65-485e3c1a98fd) from the MI_Training database.", "value": { - "guid": "782e7e9e-4a9a-4d99-bef5-fa11a67be926" + "guid": "e0fe9aa7-9c5f-40ee-9487-f09304f847a8" } }, "Example 3": { @@ -54338,7 +54516,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' property of the 'Density' standard name (guid = 5f5b89f7-da4e-4ae2-8c65-485e3c1a98fd) from the MI_Training database.", "value": { - "guid": "782e7e9e-4a9a-4d99-bef5-fa11a67be926" + "guid": "e0fe9aa7-9c5f-40ee-9487-f09304f847a8" } }, "Example 3": { @@ -54582,7 +54760,7 @@ "description": "This example demonstrates how to create a new subset with a specified guid value for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Alloys (guid)", - "guid": "a8bfb87a-3716-443d-b25b-638360e224b4" + "guid": "883c0292-e999-46a0-931e-bccfd6994ffd" } }, "Example 3": { @@ -54614,7 +54792,7 @@ "description": "This example demonstrates how to create a new subset with a specified guid value for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Alloys (guid)", - "guid": "a8bfb87a-3716-443d-b25b-638360e224b4" + "guid": "883c0292-e999-46a0-931e-bccfd6994ffd" } }, "Example 3": { @@ -54646,7 +54824,7 @@ "description": "This example demonstrates how to create a new subset with a specified guid value for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Alloys (guid)", - "guid": "a8bfb87a-3716-443d-b25b-638360e224b4" + "guid": "883c0292-e999-46a0-931e-bccfd6994ffd" } }, "Example 3": { @@ -54678,7 +54856,7 @@ "description": "This example demonstrates how to create a new subset with a specified guid value for the 'MaterialUniverse' table (guid = 0000dd92-0011-4fff-8fff-0000ffff0000) from the MI_Training database. Normally, if the guid is not specified, a random new Guid will be generated. ", "value": { "name": "Alloys (guid)", - "guid": "a8bfb87a-3716-443d-b25b-638360e224b4" + "guid": "883c0292-e999-46a0-931e-bccfd6994ffd" } }, "Example 3": { @@ -54877,7 +55055,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "352b4a85-8be1-4743-aa99-3739f84b4bab" + "guid": "4d328e05-295e-4a9b-8af2-8ea4eae8e67d" } }, "Example 2": { @@ -54918,7 +55096,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "352b4a85-8be1-4743-aa99-3739f84b4bab" + "guid": "4d328e05-295e-4a9b-8af2-8ea4eae8e67d" } }, "Example 2": { @@ -54959,7 +55137,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "352b4a85-8be1-4743-aa99-3739f84b4bab" + "guid": "4d328e05-295e-4a9b-8af2-8ea4eae8e67d" } }, "Example 2": { @@ -55000,7 +55178,7 @@ "guid": "0000b135-0009-4fff-8fff-dd92ffff0000" }, "name": "Ceramics (Updated)", - "guid": "352b4a85-8be1-4743-aa99-3739f84b4bab" + "guid": "4d328e05-295e-4a9b-8af2-8ea4eae8e67d" } }, "Example 2": { @@ -55525,7 +55703,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "bb5dfe6b-911d-424d-ae30-8e3a4f3cb6a5" + "guid": "afb36a7d-061c-4a53-9a03-27f1a3459eef" } }, "Example 3": { @@ -55560,7 +55738,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "bb5dfe6b-911d-424d-ae30-8e3a4f3cb6a5" + "guid": "afb36a7d-061c-4a53-9a03-27f1a3459eef" } }, "Example 3": { @@ -55595,7 +55773,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "bb5dfe6b-911d-424d-ae30-8e3a4f3cb6a5" + "guid": "afb36a7d-061c-4a53-9a03-27f1a3459eef" } }, "Example 3": { @@ -55630,7 +55808,7 @@ "isHiddenFromBrowse": false, "isHiddenFromSearch": false, "name": "Coatings (Guid)", - "guid": "bb5dfe6b-911d-424d-ae30-8e3a4f3cb6a5" + "guid": "afb36a7d-061c-4a53-9a03-27f1a3459eef" } }, "Example 3": { @@ -55874,7 +56052,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "8ffebdac-eba9-4cee-8d2d-0b4088ad2d25" + "guid": "7fd11fdf-2615-4b88-b189-1ae0ee319c6e" } }, "Example 2": { @@ -55935,7 +56113,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "8ffebdac-eba9-4cee-8d2d-0b4088ad2d25" + "guid": "7fd11fdf-2615-4b88-b189-1ae0ee319c6e" } }, "Example 2": { @@ -55996,7 +56174,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "8ffebdac-eba9-4cee-8d2d-0b4088ad2d25" + "guid": "7fd11fdf-2615-4b88-b189-1ae0ee319c6e" } }, "Example 2": { @@ -56057,7 +56235,7 @@ "defaultSubsetGuid": "00000b36-0010-4fff-8fff-dd92ffff0000", "defaultLayoutGuid": "00000b36-0009-4fff-8fff-dd92ffff0000", "name": "MaterialUniverse (Updated)", - "guid": "8ffebdac-eba9-4cee-8d2d-0b4088ad2d25" + "guid": "7fd11fdf-2615-4b88-b189-1ae0ee319c6e" } }, "Example 2": { @@ -56564,9 +56742,9 @@ "reverseDisplayNames": {}, "linkInfo": { "linkSource": { - "databaseGuid": "8a084106-563f-4a24-9866-ee55ee47d8b8", - "databaseVersionGuid": "3479401b-a327-407f-b57c-60cc8ee08b52", - "tableGuid": "52a73b6a-7e95-4111-a2ef-25345639fe16" + "databaseGuid": "d09bfefb-ed92-4ee6-8e01-b01d479a54f2", + "databaseVersionGuid": "baf874af-4d33-4fb2-a7c3-ae026fab8519", + "tableGuid": "e88b1b11-4fb8-4380-be57-b36be1d3255b" }, "linkTarget": { "databaseGuid": "43a43640-4919-428a-bac9-16efbc4ce6ed", @@ -56576,7 +56754,7 @@ }, "displayNames": {}, "name": "Cross database link group : Second Training Database And Table - MI Training MaterialUniverse", - "guid": "5084197d-f908-4338-b86c-e2f1e2dea67b" + "guid": "c177e1dc-3fdf-4a01-a485-8c7452a9a8ed" }, { "type": "tabularAttribute", @@ -57526,7 +57704,7 @@ "description": "This example demonstrates how to create a new unit system for the MI_Training database. Only guid and name can be set as the rest of fields is backend generated and changes via equivalents endpoints.", "value": { "name": "Hawaiian common", - "guid": "eda00416-b84c-4af2-a7f3-df102ea6bbc4" + "guid": "ac0378ae-bae6-4038-b61b-be92ac369a4c" } } } @@ -57541,7 +57719,7 @@ "description": "This example demonstrates how to create a new unit system for the MI_Training database. Only guid and name can be set as the rest of fields is backend generated and changes via equivalents endpoints.", "value": { "name": "Hawaiian common", - "guid": "eda00416-b84c-4af2-a7f3-df102ea6bbc4" + "guid": "ac0378ae-bae6-4038-b61b-be92ac369a4c" } } } @@ -57556,7 +57734,7 @@ "description": "This example demonstrates how to create a new unit system for the MI_Training database. Only guid and name can be set as the rest of fields is backend generated and changes via equivalents endpoints.", "value": { "name": "Hawaiian common", - "guid": "eda00416-b84c-4af2-a7f3-df102ea6bbc4" + "guid": "ac0378ae-bae6-4038-b61b-be92ac369a4c" } } } @@ -57571,7 +57749,7 @@ "description": "This example demonstrates how to create a new unit system for the MI_Training database. Only guid and name can be set as the rest of fields is backend generated and changes via equivalents endpoints.", "value": { "name": "Hawaiian common", - "guid": "eda00416-b84c-4af2-a7f3-df102ea6bbc4" + "guid": "ac0378ae-bae6-4038-b61b-be92ac369a4c" } } } @@ -57686,7 +57864,7 @@ "description": "This example demonstrates how to update all properties of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "name": "UK Imperial (Updated)", - "guid": "722057ca-f1d7-4bd0-89e2-c0a719feae95" + "guid": "a259af18-aab3-408b-9d61-04f30f036a14" } }, "Example 2": { @@ -57700,7 +57878,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { - "guid": "5e15e523-d51f-47c1-9fdf-8216bae060a0" + "guid": "78afc79d-51b7-4342-a28e-6c7efab12aec" } } } @@ -57715,7 +57893,7 @@ "description": "This example demonstrates how to update all properties of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "name": "UK Imperial (Updated)", - "guid": "722057ca-f1d7-4bd0-89e2-c0a719feae95" + "guid": "a259af18-aab3-408b-9d61-04f30f036a14" } }, "Example 2": { @@ -57729,7 +57907,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { - "guid": "5e15e523-d51f-47c1-9fdf-8216bae060a0" + "guid": "78afc79d-51b7-4342-a28e-6c7efab12aec" } } } @@ -57744,7 +57922,7 @@ "description": "This example demonstrates how to update all properties of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "name": "UK Imperial (Updated)", - "guid": "722057ca-f1d7-4bd0-89e2-c0a719feae95" + "guid": "a259af18-aab3-408b-9d61-04f30f036a14" } }, "Example 2": { @@ -57758,7 +57936,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { - "guid": "5e15e523-d51f-47c1-9fdf-8216bae060a0" + "guid": "78afc79d-51b7-4342-a28e-6c7efab12aec" } } } @@ -57773,7 +57951,7 @@ "description": "This example demonstrates how to update all properties of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { "name": "UK Imperial (Updated)", - "guid": "722057ca-f1d7-4bd0-89e2-c0a719feae95" + "guid": "a259af18-aab3-408b-9d61-04f30f036a14" } }, "Example 2": { @@ -57787,7 +57965,7 @@ "summary": "Update guid", "description": "This example demonstrates how to update the 'Guid' of the 'UK Imperial' unit system (guid = 00000007-0014-4fff-8fff-0000ffff0000) from the MI_Training database.", "value": { - "guid": "5e15e523-d51f-47c1-9fdf-8216bae060a0" + "guid": "78afc79d-51b7-4342-a28e-6c7efab12aec" } } } @@ -58252,8 +58430,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "5b2f87aa-15f7-4278-bb61-4ea49488d465", - "a65823a1-428f-40ac-aca6-43d4ef72806b" + "c0c8c598-6aaa-4423-b146-2d49fea78370", + "382c09f7-0a4f-463c-8569-9f2f1bf293fc" ], "type": "recordListMember" }, @@ -59053,8 +59231,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "5b2f87aa-15f7-4278-bb61-4ea49488d465", - "a65823a1-428f-40ac-aca6-43d4ef72806b" + "c0c8c598-6aaa-4423-b146-2d49fea78370", + "382c09f7-0a4f-463c-8569-9f2f1bf293fc" ], "type": "recordListMember" }, @@ -59854,8 +60032,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "5b2f87aa-15f7-4278-bb61-4ea49488d465", - "a65823a1-428f-40ac-aca6-43d4ef72806b" + "c0c8c598-6aaa-4423-b146-2d49fea78370", + "382c09f7-0a4f-463c-8569-9f2f1bf293fc" ], "type": "recordListMember" }, @@ -60655,8 +60833,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "5b2f87aa-15f7-4278-bb61-4ea49488d465", - "a65823a1-428f-40ac-aca6-43d4ef72806b" + "c0c8c598-6aaa-4423-b146-2d49fea78370", + "382c09f7-0a4f-463c-8569-9f2f1bf293fc" ], "type": "recordListMember" }, @@ -61539,8 +61717,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "1d5b544e-75ba-403f-b258-0836ff274fb5", - "2d0c7f44-0075-45fd-be8d-350588588dce" + "7536bfa9-2463-41d0-81ab-e46f836dd37e", + "b20ed2eb-a3b1-413b-833c-159d56e60da1" ], "type": "recordListMember" }, @@ -62340,8 +62518,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "1d5b544e-75ba-403f-b258-0836ff274fb5", - "2d0c7f44-0075-45fd-be8d-350588588dce" + "7536bfa9-2463-41d0-81ab-e46f836dd37e", + "b20ed2eb-a3b1-413b-833c-159d56e60da1" ], "type": "recordListMember" }, @@ -63141,8 +63319,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "1d5b544e-75ba-403f-b258-0836ff274fb5", - "2d0c7f44-0075-45fd-be8d-350588588dce" + "7536bfa9-2463-41d0-81ab-e46f836dd37e", + "b20ed2eb-a3b1-413b-833c-159d56e60da1" ], "type": "recordListMember" }, @@ -63942,8 +64120,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "1d5b544e-75ba-403f-b258-0836ff274fb5", - "2d0c7f44-0075-45fd-be8d-350588588dce" + "7536bfa9-2463-41d0-81ab-e46f836dd37e", + "b20ed2eb-a3b1-413b-833c-159d56e60da1" ], "type": "recordListMember" }, @@ -64815,8 +64993,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "96ba90ed-149a-4956-829a-219d8c80a52b", - "374f434f-fd9e-4a62-8d2a-aa639d01cdbb" + "f5b25d4c-b70b-4780-a62e-a939571e6dfb", + "6a42d01d-70ab-4387-b6ba-54f84ad8bf48" ], "type": "recordListMember" }, @@ -65702,8 +65880,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "96ba90ed-149a-4956-829a-219d8c80a52b", - "374f434f-fd9e-4a62-8d2a-aa639d01cdbb" + "f5b25d4c-b70b-4780-a62e-a939571e6dfb", + "6a42d01d-70ab-4387-b6ba-54f84ad8bf48" ], "type": "recordListMember" }, @@ -66589,8 +66767,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "96ba90ed-149a-4956-829a-219d8c80a52b", - "374f434f-fd9e-4a62-8d2a-aa639d01cdbb" + "f5b25d4c-b70b-4780-a62e-a939571e6dfb", + "6a42d01d-70ab-4387-b6ba-54f84ad8bf48" ], "type": "recordListMember" }, @@ -67476,8 +67654,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "96ba90ed-149a-4956-829a-219d8c80a52b", - "374f434f-fd9e-4a62-8d2a-aa639d01cdbb" + "f5b25d4c-b70b-4780-a62e-a939571e6dfb", + "6a42d01d-70ab-4387-b6ba-54f84ad8bf48" ], "type": "recordListMember" }, @@ -68408,8 +68586,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "a84d2e65-54d9-4838-9836-277d5d1476f1", - "9c0c6873-c5fc-468a-b9c7-02c0146a27e4" + "0b453e96-f437-4ddf-9f64-8908c958942e", + "385f8c4f-ad30-4d90-8a1b-b32685fa8128" ], "type": "recordListMember" }, @@ -69209,8 +69387,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "a84d2e65-54d9-4838-9836-277d5d1476f1", - "9c0c6873-c5fc-468a-b9c7-02c0146a27e4" + "0b453e96-f437-4ddf-9f64-8908c958942e", + "385f8c4f-ad30-4d90-8a1b-b32685fa8128" ], "type": "recordListMember" }, @@ -70010,8 +70188,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "a84d2e65-54d9-4838-9836-277d5d1476f1", - "9c0c6873-c5fc-468a-b9c7-02c0146a27e4" + "0b453e96-f437-4ddf-9f64-8908c958942e", + "385f8c4f-ad30-4d90-8a1b-b32685fa8128" ], "type": "recordListMember" }, @@ -70811,8 +70989,8 @@ "value": { "criterion": { "recordListIdentifiers": [ - "a84d2e65-54d9-4838-9836-277d5d1476f1", - "9c0c6873-c5fc-468a-b9c7-02c0146a27e4" + "0b453e96-f437-4ddf-9f64-8908c958942e", + "385f8c4f-ad30-4d90-8a1b-b32685fa8128" ], "type": "recordListMember" }, @@ -72487,6 +72665,21 @@ }, "additionalProperties": false }, + "GsaApplyOptions": { + "type": "object", + "properties": { + "matchMode": { + "$ref": "#/components/schemas/GsaMatchMode" + }, + "applyAddsAsState": { + "type": "boolean" + }, + "retargetTabularAttributes": { + "type": "boolean" + } + }, + "additionalProperties": false + }, "GsaAttribute": { "required": [ "defaultThresholdType", @@ -77129,24 +77322,80 @@ "GsaDataUpdateHeader": { "type": "object", "properties": { + "createDate": { + "type": "string", + "description": "The date and time that the update was created.", + "format": "date-time" + }, "updateGuid": { "type": "string", + "description": "A unique identity to disambiguate this update from all other updates.", "format": "uuid" }, - "projectName": { + "prerequisiteUpdateGuid": { "type": "string", + "description": "GUID for the previous update that need to have been applied before this update can be applied.", + "format": "uuid", "nullable": true }, - "updateName": { + "prerequisiteUpdateName": { "type": "string", + "description": "Name of the previous update that need to have been applied before this update can be applied. This is used only for display purposes.", "nullable": true }, - "updateDescription": { + "miVersion": { "type": "string", + "description": "Gets the version of MI that was used to create this update.", "nullable": true }, - "databaseKey": { + "supportedObjectsVersion": { + "type": "integer", + "description": "Gets or sets the version number indicating the kinds of object that this update supports. A client will be\r\nable to process updates with an unrecognised SupportedObjectsVersion (although in doing so it will have to\r\nignore fields describing objects it does not recognise).", + "format": "int32" + }, + "updateFormatVersion": { + "type": "integer", + "description": "Gets or sets the version number of the format of the update. This will change if the meaning of any of the\r\nfields in the update changes. A client must not process an update with an UpdateFormatVersion field that it\r\ndoes not recognise, as it cannot be sure of the meaning of the fields it reads.", + "format": "int32" + }, + "sourceDatabaseKey": { "type": "string", + "description": "Gets or sets the database key of the database from which this update was generated.", + "nullable": true + }, + "sourceVolumeGuid": { + "type": "string", + "description": "Gets or sets the guid of the volume from which the update was generated.", + "format": "uuid" + }, + "name": { + "type": "string", + "description": "Gets or sets the name of the update.", + "nullable": true + }, + "description": { + "type": "string", + "description": "Gets or sets the description of the update.", + "nullable": true + }, + "projectName": { + "type": "string", + "description": "Gets or sets the name of the project this update was created for.", + "nullable": true + }, + "projectGuid": { + "type": "string", + "description": "Gets or sets the guid of the project this update was created for.", + "format": "uuid" + }, + "containsFallbackIdentifiers": { + "type": "boolean", + "description": "Gets or sets the flag informing whether or not this update contains fallback identifiers (mostly names)." + }, + "newVersionGuid": { + "type": "string", + "description": "Gets or sets the value Database Version GUID should be updated to.\r\nIf this field is set then we propose to retarget tabular attributes to link to new version of the database.", + "format": "uuid", "nullable": true } }, @@ -77155,23 +77404,23 @@ "GsaDataUpdateRunInfo": { "type": "object", "properties": { - "matchMode": { + "databaseKey": { "type": "string", "nullable": true }, - "allowOverwrite": { - "type": "boolean", - "nullable": true + "matchMode": { + "$ref": "#/components/schemas/GsaMatchMode" }, - "changeTabular": { - "type": "boolean", - "nullable": true + "applyAddsAsState": { + "type": "boolean" + }, + "retargetTabularAttributes": { + "type": "boolean" }, "status": { - "type": "string", - "nullable": true + "$ref": "#/components/schemas/GsaUpdateRunStatus" }, - "progress": { + "progressPercentage": { "type": "number", "format": "double", "nullable": true @@ -77180,6 +77429,10 @@ "type": "string", "format": "date-time", "nullable": true + }, + "errorMessage": { + "type": "string", + "nullable": true } }, "additionalProperties": false @@ -77353,10 +77606,11 @@ "FailedToUnload", "Disabled", "SchemaUpgradeRequired", - "SchemaDowngradeRequired" + "SchemaDowngradeRequired", + "Missing" ], "type": "string", - "description": "

Possible values:

\r\n
    \r\n
  • Unknown: The current state is unknown.
  • \r\n
  • Ok: The database is working correctly.
  • \r\n
  • Unloaded: The database is not loaded.
  • \r\n
  • Loading: The database is currently being loaded.
  • \r\n
  • Unloading: The database is currently being unloaded.
  • \r\n
  • FailedToLoad: The database failed to be loaded.
  • \r\n
  • FailedToUnload: The database failed to be unloaded.
  • \r\n
  • Disabled: The database is currently disabled.
  • \r\n
  • SchemaUpgradeRequired: The database is at a lower version of the database schema than the current software
  • \r\n
  • SchemaDowngradeRequired: The database is at a higher version of the database schema than the current software
  • \r\n
\r\n" + "description": "

Possible values:

\r\n
    \r\n
  • Unknown: The current state is unknown.
  • \r\n
  • Ok: The database is working correctly.
  • \r\n
  • Unloaded: The database is not loaded.
  • \r\n
  • Loading: The database is currently being loaded.
  • \r\n
  • Unloading: The database is currently being unloaded.
  • \r\n
  • FailedToLoad: The database failed to be loaded.
  • \r\n
  • FailedToUnload: The database failed to be unloaded.
  • \r\n
  • Disabled: The database is currently disabled.
  • \r\n
  • SchemaUpgradeRequired: The database is at a lower version of the database schema than the current software
  • \r\n
  • SchemaDowngradeRequired: The database is at a higher version of the database schema than the current software
  • \r\n
  • Missing: The database is currently missing.
  • \r\n
\r\n" }, "GsaDatabaseStatusInformation": { "type": "object", @@ -85257,6 +85511,16 @@ "additionalProperties": false, "description": "A mapping between a source database item and an integration schema attribute." }, + "GsaMatchMode": { + "enum": [ + 0, + 1, + 2 + ], + "type": "integer", + "description": "How to match update items.

Possible values:

\r\n
    \r\n
  • BasicGuidMatch: Items are matched based on their guids alone.
  • \r\n
  • MatchOnGuidThenName: Items are matched based on their guids. Missing items are matched on name.
  • \r\n
  • FullGuidSync: Items are matched on their guids. Missing items are matched on name and have their guids rewritten to match those from the update file.
  • \r\n
\r\n", + "format": "int32" + }, "GsaMathsContent": { "required": [ "parameterContents", @@ -90188,6 +90452,18 @@ ], "type": "string" }, + "GsaRegisterUpdateRequest": { + "type": "object", + "properties": { + "header": { + "$ref": "#/components/schemas/GsaDataUpdateHeader" + }, + "applyOptions": { + "$ref": "#/components/schemas/GsaApplyOptions" + } + }, + "additionalProperties": false + }, "GsaReleaseRecordVersionControlException": { "type": "object", "properties": { @@ -95698,6 +95974,29 @@ "x-discriminator-value": "updateRoot", "x-discriminator-name": "reason" }, + "GsaUpdateRunStatus": { + "enum": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10, + 11, + 12, + 13, + 14, + 15 + ], + "type": "integer", + "description": "Represents the possible states of an update.

Possible values:

\r\n
    \r\n
  • Registered: The update token has been registered with the service.
  • \r\n
  • UploadInProgress: The update file has been partially uploaded.
  • \r\n
  • Uploaded: The update file has been completely uploaded.
  • \r\n
  • UploadFailed: The upload failed.
  • \r\n
  • DryRunPending: A dry run for this update has been queued, but it not yet in progress.
  • \r\n
  • DryRunCancelling: A request to cancel the dry run for this update has been issued but the dry run has not yet been cancelled.
  • \r\n
  • DryRunCancelled: The dry run for this update was cancelled.
  • \r\n
  • DryRunInProgress: The dry run for this update is in progress.
  • \r\n
  • DryRunComplete: The dry run for this update is complete.
  • \r\n
  • DryRunFailed: The dry run for this update failed.
  • \r\n
  • ApplyPending: An apply operation for this update has been queued, but is not yet in progress.
  • \r\n
  • ApplyInProgress: The update is being applied to the target database.
  • \r\n
  • ApplyCancelling: A request to cancel the apply process has been issued but the apply process has not yet been cancelled.
  • \r\n
  • ApplyCancelled: The update was cancelled during the apply process.
  • \r\n
  • ApplyComplete: The update was successfully applied to the target database.
  • \r\n
  • ApplyFailed: The update was not successfully applied to the target database.
  • \r\n
\r\n", + "format": "int32" + }, "GsaUpdateShortTextAttribute": { "type": "object", "allOf": [