mirror of https://github.com/apache/cloudstack.git
api_refactor: resource (limit) apis, move capability and cloud identifier
Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
This commit is contained in:
parent
7f9c490b5a
commit
46ed598894
|
|
@ -24,7 +24,7 @@ import java.util.Set;
|
|||
|
||||
import com.cloud.alert.Alert;
|
||||
import org.apache.cloudstack.api.ServerApiException;
|
||||
import org.apache.cloudstack.api.user.datacenter.command.ListCapabilitiesCmd;
|
||||
import org.apache.cloudstack.api.user.resource.command.ListCapabilitiesCmd;
|
||||
import org.apache.cloudstack.api.user.guest.command.ListGuestOsCmd;
|
||||
import org.apache.cloudstack.api.user.offering.command.ListDiskOfferingsCmd;
|
||||
import org.apache.cloudstack.api.user.offering.command.ListServiceOfferingsCmd;
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@
|
|||
// KIND, either express or implied. See the License for the
|
||||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
package org.apache.cloudstack.api.user.datacenter.command;
|
||||
package org.apache.cloudstack.api.user.resource.command;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
// KIND, either express or implied. See the License for the
|
||||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
package org.apache.cloudstack.api.user.datacenter.command;
|
||||
package org.apache.cloudstack.api.user.resource.command;
|
||||
|
||||
import java.util.Map;
|
||||
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
// KIND, either express or implied. See the License for the
|
||||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
package com.cloud.api.commands;
|
||||
package org.apache.cloudstack.api.user.resource.command;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
// KIND, either express or implied. See the License for the
|
||||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
package com.cloud.api.commands;
|
||||
package org.apache.cloudstack.api.user.resource.command;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
|
@ -14,7 +14,7 @@
|
|||
// KIND, either express or implied. See the License for the
|
||||
// specific language governing permissions and limitations
|
||||
// under the License.
|
||||
package com.cloud.api.commands;
|
||||
package org.apache.cloudstack.api.user.resource.command;
|
||||
|
||||
import org.apache.log4j.Logger;
|
||||
|
||||
|
|
@ -46,12 +46,12 @@ listDomains=com.cloud.api.commands.ListDomainsCmd;7
|
|||
listDomainChildren=com.cloud.api.commands.ListDomainChildrenCmd;7
|
||||
|
||||
####Cloud Identifier commands
|
||||
getCloudIdentifier=org.apache.cloudstack.api.user.datacenter.command.GetCloudIdentifierCmd;15
|
||||
getCloudIdentifier=org.apache.cloudstack.api.user.resource.command.GetCloudIdentifierCmd;15
|
||||
|
||||
#### Limit commands
|
||||
updateResourceLimit=com.cloud.api.commands.UpdateResourceLimitCmd;7
|
||||
updateResourceCount=com.cloud.api.commands.UpdateResourceCountCmd;7
|
||||
listResourceLimits=com.cloud.api.commands.ListResourceLimitsCmd;15
|
||||
updateResourceLimit=org.apache.cloudstack.api.user.resource.command.UpdateResourceLimitCmd;7
|
||||
updateResourceCount=org.apache.cloudstack.api.user.resource.command.UpdateResourceCountCmd;7
|
||||
listResourceLimits=org.apache.cloudstack.api.user.resource.command.ListResourceLimitsCmd;15
|
||||
|
||||
#### VM commands
|
||||
deployVirtualMachine=org.apache.cloudstack.api.user.vm.command.DeployVMCmd;15
|
||||
|
|
@ -199,7 +199,7 @@ updateConfiguration=com.cloud.api.commands.UpdateCfgCmd;1
|
|||
listConfigurations=com.cloud.api.commands.ListCfgsByCmd;1
|
||||
ldapConfig=com.cloud.api.commands.LDAPConfigCmd;1
|
||||
ldapRemove=com.cloud.api.commands.LDAPRemoveCmd;1
|
||||
listCapabilities=org.apache.cloudstack.api.user.datacenter.command.ListCapabilitiesCmd;15
|
||||
listCapabilities=org.apache.cloudstack.api.user.resource.command.ListCapabilitiesCmd;15
|
||||
|
||||
#### pod commands
|
||||
createPod=com.cloud.api.commands.CreatePodCmd;1
|
||||
|
|
|
|||
|
|
@ -42,7 +42,7 @@ import java.util.concurrent.TimeUnit;
|
|||
import javax.crypto.Mac;
|
||||
import javax.crypto.spec.SecretKeySpec;
|
||||
|
||||
import org.apache.cloudstack.api.user.datacenter.command.ListCapabilitiesCmd;
|
||||
import org.apache.cloudstack.api.user.resource.command.ListCapabilitiesCmd;
|
||||
import org.apache.cloudstack.api.user.guest.command.ListGuestOsCategoriesCmd;
|
||||
import org.apache.cloudstack.api.user.guest.command.ListGuestOsCmd;
|
||||
import org.apache.cloudstack.api.user.iso.command.ListIsosCmd;
|
||||
|
|
|
|||
Loading…
Reference in New Issue