services.SystemService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of model Show documentation
Show all versions of model Show documentation
Model management tools for the oVirt Engine API.
/*
Copyright (c) 2015-2016 Red Hat, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package services;
import org.ovirt.api.metamodel.annotations.In;
import org.ovirt.api.metamodel.annotations.Out;
import org.ovirt.api.metamodel.annotations.Root;
import org.ovirt.api.metamodel.annotations.Service;
import services.aaa.DomainsService;
import services.aaa.GroupsService;
import services.aaa.UsersService;
import services.externalhostproviders.EngineKatelloErrataService;
import services.externalhostproviders.ExternalHostProvidersService;
import services.openstack.OpenstackImageProvidersService;
import services.openstack.OpenstackNetworkProvidersService;
import services.openstack.OpenstackVolumeProvidersService;
import types.Api;
@Root
public interface SystemService {
/**
* Returns basic information describing the API, like the product name, the version number and a summary of the
* number of relevant objects.
*/
interface Get {
@Out Api api();
}
interface ReloadConfigurations {
/**
* Indicates if the reload should be performed asynchronously.
*/
@In Boolean async();
}
@Service BookmarksService bookmarks();
@Service ClustersService clusters();
@Service CpuProfilesService cpuProfiles();
@Service DataCentersService dataCenters();
@Service DiskProfilesService diskProfiles();
@Service DisksService disks();
@Service DomainsService domains();
@Service EventsService events();
@Service ExternalHostProvidersService externalHostProviders();
@Service GroupsService groups();
@Service HostsService hosts();
@Service IconsService icons();
@Service InstanceTypesService instanceTypes();
@Service JobsService jobs();
@Service MacPoolsService macPools();
@Service NetworksService networks();
@Service OpenstackImageProvidersService openstackImageProviders();
@Service OpenstackNetworkProvidersService openstackNetworkProviders();
@Service OpenstackVolumeProvidersService openstackVolumeProviders();
@Service OperatingSystemsService operatingSystems();
@Service RolesService roles();
@Service SchedulingPoliciesService schedulingPolicies();
@Service SchedulingPolicyUnitsService schedulingPolicyUnits();
@Service StorageDomainsService storageDomains();
@Service StorageServerConnectionsService storageConnections();
@Service EngineKatelloErrataService katelloErrata();
@Service SystemPermissionsService permissions();
@Service TagsService tags();
@Service TemplatesService templates();
@Service UsersService users();
@Service VmPoolsService vmPools();
@Service VmsService vms();
@Service VnicProfilesService vnicProfiles();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy