All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jclouds.cloudstack.features.ISOAsyncClient Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
/**
 * Licensed to jclouds, Inc. (jclouds) under one or more
 * contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  jclouds licenses this file
 * to you 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 org.jclouds.cloudstack.features;

import java.util.Set;

import javax.ws.rs.Consumes;
import javax.ws.rs.GET;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.MediaType;

import org.jclouds.cloudstack.domain.AsyncCreateResponse;
import org.jclouds.cloudstack.domain.ExtractMode;
import org.jclouds.cloudstack.domain.ISO;
import org.jclouds.cloudstack.domain.ISOPermissions;
import org.jclouds.cloudstack.filters.AuthenticationFilter;
import org.jclouds.cloudstack.options.AccountInDomainOptions;
import org.jclouds.cloudstack.options.DeleteISOOptions;
import org.jclouds.cloudstack.options.ExtractISOOptions;
import org.jclouds.cloudstack.options.ListISOsOptions;
import org.jclouds.cloudstack.options.RegisterISOOptions;
import org.jclouds.cloudstack.options.UpdateISOOptions;
import org.jclouds.cloudstack.options.UpdateISOPermissionsOptions;
import org.jclouds.rest.annotations.ExceptionParser;
import org.jclouds.rest.annotations.OnlyElement;
import org.jclouds.rest.annotations.QueryParams;
import org.jclouds.rest.annotations.RequestFilters;
import org.jclouds.rest.annotations.SelectJson;
import org.jclouds.rest.annotations.Unwrap;
import org.jclouds.rest.functions.ReturnEmptySetOnNotFoundOr404;
import org.jclouds.rest.functions.ReturnNullOnNotFoundOr404;

import com.google.common.util.concurrent.ListenableFuture;

/**
 * 
 * 

* * @see ISOClient * @see http://download.cloud.com/releases/2.2.12/api/TOC_User.html * @author Richard Downer */ @RequestFilters(AuthenticationFilter.class) @QueryParams(keys = "response", values = "json") public interface ISOAsyncClient { /** * Attaches an ISO to a virtual machine. * * @param isoId the ID of the ISO file * @param vmId the ID of the virtual machine * @return an asynchronous job response. */ @GET @Consumes(MediaType.APPLICATION_JSON) @QueryParams(keys = "command", values = "attachIso") @Unwrap ListenableFuture attachISO(@QueryParam("id") String isoId, @QueryParam("virtualmachineid") String vmId); /** * Detaches any ISO file (if any) currently attached to a virtual machine. * * @param vmId The ID of the virtual machine * @return an asynchronous job response. */ @GET @Consumes(MediaType.APPLICATION_JSON) @QueryParams(keys = "command", values = "detachIso") @Unwrap ListenableFuture detachISO(@QueryParam("virtualmachineid") String vmId); /** * Gets information about an ISO by its ID. * * @param id the ID of the ISO file * @return the ISO object matching the ID */ @GET @Consumes(MediaType.APPLICATION_JSON) @QueryParams(keys = { "command", "listAll" }, values = { "listIsos", "true" }) @SelectJson("iso") @OnlyElement @ExceptionParser(ReturnNullOnNotFoundOr404.class) ListenableFuture getISO(@QueryParam("id") String id); /** * Lists all available ISO files. * * @param options optional arguments * @return a set of ISO objects the match the filter */ @GET @Consumes(MediaType.APPLICATION_JSON) @QueryParams(keys = { "command", "listAll" }, values = { "listIsos", "true" }) @SelectJson("iso") @ExceptionParser(ReturnEmptySetOnNotFoundOr404.class) ListenableFuture> listISOs(ListISOsOptions... options); /** * Registers an existing ISO into the Cloud.com Cloud. * * @param name the name of the ISO * @param displayText the display text of the ISO. This is usually used for display purposes. * @param url the URL to where the ISO is currently being hosted * @param zoneId the ID of the zone you wish to register the ISO to. * @param options optional arguments * @return the newly-added ISO */ @GET @Consumes(MediaType.APPLICATION_JSON) @QueryParams(keys = "command", values = "registerIso") @SelectJson("iso") @OnlyElement ListenableFuture registerISO(@QueryParam("name") String name, @QueryParam("displaytext") String displayText, @QueryParam("url") String url, @QueryParam("zoneid") String zoneId, RegisterISOOptions... options); /** * * * @param id the ID of the ISO file * @param options optional arguments * @return the ISO object matching the ID */ @GET @Consumes(MediaType.APPLICATION_JSON) @QueryParams(keys = "command", values = "updateIso") @Unwrap ListenableFuture updateISO(@QueryParam("id") String id, UpdateISOOptions... options); /** * Deletes an ISO file. * * @param id the ID of the ISO file * @param options optional arguments * @return an asynchronous job response. */ @GET @Consumes(MediaType.APPLICATION_JSON) @QueryParams(keys = "command", values = "deleteIso") @Unwrap ListenableFuture deleteISO(@QueryParam("id") String id, DeleteISOOptions... options); /** * Copies a template from one zone to another. * * @param isoId Template ID. * @param sourceZoneId ID of the zone the template is currently hosted on. * @param destZoneId ID of the zone the template is being copied to. * @return an asynchronous job response. */ @GET @Consumes(MediaType.APPLICATION_JSON) @QueryParams(keys = "command", values = "copyIso") @Unwrap ListenableFuture copyISO(@QueryParam("id") String isoId, @QueryParam("sourcezoneid") String sourceZoneId, @QueryParam("destzoneid") String destZoneId); /** * Updates iso permissions * * @param id the template ID * @param options optional arguments * @return */ @GET @Consumes(MediaType.APPLICATION_JSON) @QueryParams(keys = "command", values = "updateIsoPermissions") @Unwrap ListenableFuture updateISOPermissions(@QueryParam("id") String id, UpdateISOPermissionsOptions... options); /** * List template visibility and all accounts that have permissions to view this template. * * @param id the template ID * @param options optional arguments * @return A set of the permissions on this ISO */ @GET @Consumes(MediaType.APPLICATION_JSON) @QueryParams(keys = { "command", "listAll" }, values = { "listIsoPermissions", "true" }) @SelectJson("templatepermission") ListenableFuture listISOPermissions(@QueryParam("id") String id, AccountInDomainOptions... options); /** * Extracts an ISO * * @param id the ID of the ISO file * @param mode the mode of extraction - HTTP_DOWNLOAD or FTP_UPLOAD * @param zoneId the ID of the zone where the ISO is originally located * @param options optional arguments * @return an asynchronous job response. */ @GET @Consumes(MediaType.APPLICATION_JSON) @QueryParams(keys = "command", values = "extractIso") @Unwrap ListenableFuture extractISO(@QueryParam("id") String id, @QueryParam("mode") ExtractMode mode, @QueryParam("zoneid") String zoneId, ExtractISOOptions... options); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy