ExportReport exportAllSubsystems(Subject subject);
|
void validate(Subject subject, byte[] exportFile) throws ValidationException;
|
ImportConfigurationDefinition getImportConfigurationDefinition(String synchronizerClass);
|
List<ImportConfigurationDefinition> getImportConfigurationDefinitionOfAllSynchronizers();
|
ImportReport importAllSubsystems(Subject subject, byte[] exportFile, List<ImportConfiguration> importerConfigurations) throws ValidationException, ImportException;
|
void deleteDriftDefinition(Subject subject, EntityContext entityContext, String driftDefName);
|
PageList<DriftDefinition> findDriftDefinitionsByCriteria(Subject subject, DriftDefinitionCriteria criteria);
|
PageList<? extends DriftChangeSet<?>> findDriftChangeSetsByCriteria(Subject subject, DriftChangeSetCriteria criteria) throws Exception;
|
PageList<? extends Drift<?, ?>> findDriftsByCriteria(Subject subject, DriftCriteria criteria) throws Exception;
|
FileDiffReport generateUnifiedDiff(Subject subject, Drift<?, ?> drift);
|
FileDiffReport generateUnifiedDiff(Subject subject, Drift<?, ?> drift1, Drift<?, ?> drift2);
|
FileDiffReport generateUnifiedDiffByIds(Subject subject, String driftId1, String driftId2);
|
String getDriftFileBits(Subject subject, String hash);
|
DriftSnapshot getSnapshot(Subject subject, DriftSnapshotRequest request);
|
void pinSnapshot(Subject subject, int driftDefId, int snapshotVersion);
|
void updateDriftDefinition(Subject subject, EntityContext entityContext, DriftDefinition driftConfig);
|
PageList<DriftDefinitionTemplate> findTemplatesByCriteria(Subject subject, DriftDefinitionTemplateCriteria criteria);
|
DriftDefinitionTemplate createTemplate(Subject subject, int resourceTypeId, boolean isUserDefined, DriftDefinition definition);
|
void pinTemplate(Subject subject, int templateId, int snapshotDriftDefId, int snapshotVersion);
|
void updateTemplate(Subject subject, DriftDefinitionTemplate template);
|
void deleteTemplate(Subject subject, int templateId);
|
ResourceGroup createAutoClusterBackingGroup(Subject subject, ClusterKey clusterKey, boolean addResources);
|
ResourceGroup getAutoClusterBackingGroup(Subject subject, ClusterKey clusterKey);
|
List<Resource> getAutoClusterResources(Subject subject, ClusterKey clusterKey);
|
ClusterFlyweight getClusterTree(Subject subject, int groupId);
|
public PageList<Dashboard> findDashboardsByCriteria(Subject subject, DashboardCriteria criteria);
|
public Dashboard storeDashboard(Subject subject, Dashboard dashboard);
|
public void removeDashboard(Subject subject, int dashboardId);
|
int enableAlertDefinitions(Subject subject, int[] alertDefinitionIds);
|
int disableAlertDefinitions(Subject subject, int[] alertDefinitionIds);
|
int removeAlertDefinitions(Subject subject, int[] alertDefinitionIds);
|
String[] getAlertNotificationConfigurationPreview(Subject subject, AlertNotification[] notifications);
|
int deleteAlerts(Subject subject, int[] alertIds);
|
int deleteAlertsByContext(Subject subject, EntityContext context);
|
int acknowledgeAlerts(Subject subject, int[] alertIds);
|
int acknowledgeAlertsByContext(Subject subject, EntityContext context);
|
Old method
|
Changed method
|
---|---|
void deleteRoles(Subject subject, Integer[] roleIds);
|
void deleteRoles(Subject subject, int[] roleIds);
|
void setAssignedSubjectRoles(Subject subject, int subjectId, int[] roleIds)
|
Old method
|
Changed method
|
---|---|
BundleDestination createBundleDestination(Subject subject, int bundleId, String name, String description, String deployDir, Integer groupId) throws Exception;
|
BundleDestination createBundleDestination(Subject subject, int bundleId, String name, String description, String destBaseDirName, String deployDir, Integer groupId) throws Exception;
|
ResourceTypeBundleConfiguration getResourceTypeBundleConfiguration(Subject subject, int compatGroupId) throws Exception;
|
BundleVersion createBundleVersionViaByteArray(Subject subject, byte[] fileBytes) throws Exception;
|
void deleteBundles(Subject subject, int[] bundleIds) throws Exception;
|
void purgeBundleDestination(Subject subject, int bundleDestinationId) throws Exception;
|
public void deletePackageVersion(Subject subject, int resourceId);
|
PackageType findPackageType(Subject subject, Integer resourceTypeId, String packageTypeName);
|
PackageTypeAndVersionFormatComposite findPackageTypeWithVersionFormat (Subject subject, Integer resourceTypeId, String packageTypeName);
|
PageList<Package> findPackagesByCriteria(Subject subject,PackageCriteria criteria);
|
PageList<PackageAndLatestVersionComposite> findPackagesWithLatestVersion(Subject subject, PackageCriteria criteria);
|
Old method
|
Changed method
|
---|---|
int synchronizeRepos(Subject subject, Integer[] repoIds) throws Exception;
|
int synchronizeRepos(Subject subject, int[] repoIds) throws Exception;
|
PackageVersion getLatestPackageVersion(Subject subject, int packageId, int repoId);
|
boolean deletePackageVersionsFromRepo(Subject subject, int repoId, int[] packageVersionId);
|
Old method
|
Changed method
|
---|---|
void importResources(Subject subject, Integer[] resourceIds);
|
void importResources(Subject subject, int[] resourceIds);
|
void ignoreResources(Subject subject,Integer[] resourceIds);
|
void ignoreResources(Subject subject, int[] resourceIds);
|
void unignoreResources(Subject subject, Integer[] resourceIds);
|
void unignoreResources(Subject subject, int[] resourceIds);
|
PageList<MeasurementDataTrait> findTraitsByCriteria(Subject subject, MeasurementDataTraitCriteria criteria);
|
Old method
|
New method
|
---|---|
void createResource( Subject subject, int parentResourceId, int resourceTypeId, String resourceName, Configuration pluginConfiguration, Configuration resourceConfiguration);
|
CreateResourceHistory createResource( Subject subject, int parentResourceId, int resourceTypeId, String resourceName, Configuration pluginConfiguration, Configuration resourceConfiguration, Integer timeout);
|
void createPackageBackedResource(Subject subject, int parentResourceId, int newResourceTypeId, String newResourceName, Configuration pluginConfiguration, String packageName, String packageVersion, Integer architectureId, Configuration deploymentTimeConfiguration, byte[] packageBits);
|
CreateResourceHistory createPackageBackedResource(Subject subject, int parentResourceId, int newResourceTypeId, String newResourceName, Configuration pluginConfiguration, String packageName, String packageVersion, Integer architectureId, Configuration deploymentTimeConfiguration, byte[] packageBits, Integer timeout);
|
void deleteResource( Subject subject, int resourceId);
|
DeleteResourceHistory deleteResource(Subject subject, int resourceId);
|
public CreateResourceHistory createPackageBackedResourceViaPackageVersion(Subject subject, int parentResourceId, int newResourceTypeId, String newResourceName, Configuration pluginConfiguration, Configuration deploymentTimeConfiguration, int packageVersionId, Integer timeout);
|
List<DeleteResourceHistory> deleteResources(Subject subject, int[] resourceIds);
|
PageList<CreateResourceHistory> findCreateChildResourceHistory(Subject subject, int parentResourceId, Long beginDate, Long endDate, PageControl pageControl);
|
PageList<DeleteResourceHistory> findDeleteChildResourceHistory(Subject subject, int parentResourceId, Long beginDate, Long endDate, PageControl pageControl);
|
Resource updateResource(Subject subject, Resource resource);
|
Map<Integer, String> getResourcesAncestry(Subject subject, Integer[] resourceIds, ResourceAncestryFormat format);
|
PageList<ResourceComposite> findResourceComposites(Subject subject, ResourceCategory category, String typeName, int parentResourceId, String searchString, PageControl pageControl);
|
void deleteResourceGroups(Subject subject, int[] groupIds) throws ResourceGroupNotFoundException, ResourceGroupDeleteException;
|
Old Method
|
New Method
|
---|---|
public void updateSavedSearch(Subject subject, SavedSearch savedSearch);
|
public boolean updateSavedSearch(Subject subject, SavedSearch savedSearch);
|
ServerVersion getServerVersion(Subject subject) throws Exception;
|
ProductInfo getProductInfo(Subject subject);
|
ServerDetails getServerDetails(Subject subject);
|
Properties getSystemConfiguration(Subject subject);
|
SystemSettings getSystemSettings(Subject subject);
|
void setSystemConfiguration(Subject subject, Properties properties, boolean skipValidation) throws Exception;
|
void setSystemSettings(Subject subject, SystemSettings settings) throws Exception;
|
Properties getSystemConfiguration(Subject subject);
|
void setSystemConfiguration(Subject subject, Properties properties, boolean skipValidation) throws Exception;
|