org.jclouds.digitalocean.DigitalOceanApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of digitalocean Show documentation
Show all versions of digitalocean Show documentation
ComputeService binding to the DigitalOcean API
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF 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.digitalocean;
import java.io.Closeable;
import org.jclouds.digitalocean.features.DropletApi;
import org.jclouds.digitalocean.features.EventApi;
import org.jclouds.digitalocean.features.ImageApi;
import org.jclouds.digitalocean.features.KeyPairApi;
import org.jclouds.digitalocean.features.RegionApi;
import org.jclouds.digitalocean.features.SizesApi;
import org.jclouds.rest.annotations.Delegate;
/**
* Provides synchronous access to DigitalOcean API.
*
* @author Sergi Castro
* @author Ignasi Barrera
*/
public interface DigitalOceanApi extends Closeable {
/**
* Returns the Droplet management API.
*/
@Delegate
DropletApi getDropletApi();
/**
* Returns the Image management API.
*/
@Delegate
ImageApi getImageApi();
/**
* Returns the Sizes management API.
*/
@Delegate
SizesApi getSizesApi();
/**
* Returns the Region management API.
*/
@Delegate
RegionApi getRegionApi();
/**
* Returns the SSH key management API.
*/
@Delegate
KeyPairApi getKeyPairApi();
/**
* Returns the Event API.
*/
@Delegate
EventApi getEventApi();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy