Add Rpc Provider Test Suites
[integration/test.git] / csit / libraries / ClusterManagement.robot
index 2841c2f56e1a9a002239f754264fc8060242b064..b3949685799458bb703bc8789e661de319805f87 100644 (file)
@@ -670,10 +670,15 @@ ClusterManagement__Parse_Sync_Status
     ${sync_status} =    Collections.Get_From_Dictionary    dictionary=${value_object}    key=SyncStatus
     [Return]    ${sync_status}
 
+List_All_Indices
+    [Documentation]    Create a new list of all indices.
+    ${return_list_copy} =    ClusterManagement__Given_Or_Internal_Index_List
+    BuiltIn.Return_From_Keyword    ${return_list_copy}
+
 List_Indices_Minus_Member
     [Arguments]    ${member_index}    ${member_index_list}=${EMPTY}
     [Documentation]    Create a new list which contains indices from ${member_index_list} (or all) without ${member_index}.
-    ${index_list} =    ClusterManagement__Given_Or_Empty_List    ${member_index_list}
+    ${index_list} =    ClusterManagement__Given_Or_Internal_Index_List    ${member_index_list}
     Collections.Remove Values From List    ${index_list}    ${member_index}
     [Return]    ${index_list}