Skip to main content

🚀 Platform improvements for week 12

Related products:Intelligent Application Manager
  • March 24, 2023
  • 0 replies
  • 70 views

Jeroen van den Belt
Administrator
Forum|alt.badge.img+10

Hi everyone!

We’ve released the following platform improvements this week:

IAM 2022.1 and up

  • 20230324 - Changing default status for model defined prefilters
    • When editing prefilters from the Windows GUI or Web GUI, it is possible to deviate from the model settings by indicating whether a prefilter should be active by default. However, this setting was not saved in the IAM user preferences. As a result, the change was lost after restarting the GUI. We have corrected this so that the changes are saved again in IAM.

      Image

IAM 2023.1

  • 20230320 - API change for update data migration source
    • ​​​​​We have released a platform improvement to address the job_id parameter of the add_job_to_update_data_migration_source_version task. After running the improvement, the API call can look as follows:


      Option 0 - Obtain from database:

      POST [indicium]/iam/sf/add_job_to_update_data_migration_source_version
      {
        "model_id": "[MODEL]",
        "branch_id": "[BRANCH]",
        "select_data_migration_source_version_option": 0,
        "runtime_configuration_id": "default"
      }


      Option 1 - Specific model version:

      POST [indicium]/iam/sf/add_job_to_update_data_migration_source_version
      {
        "model_id": "[MODEL]",
        "branch_id": "[BRANCH]",
        "select_data_migration_source_version_option": 1,
        "from_branch_id": "[BRANCH]",
        "from_model_vrs_id": "2023-03-18T12:00:20.859Z"
      }

      Â