
org.jclouds.trmk.ecloud.TerremarkECloudClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of trmk-ecloud Show documentation
Show all versions of trmk-ecloud Show documentation
jclouds Terremark Enterprise Cloud provider
The newest version!
/*
* 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.trmk.ecloud;
import java.net.URI;
import java.util.Set;
import org.jclouds.javax.annotation.Nullable;
import org.jclouds.rest.annotations.Delegate;
import org.jclouds.trmk.ecloud.domain.ECloudOrg;
import org.jclouds.trmk.ecloud.features.DataCenterOperationsClient;
import org.jclouds.trmk.ecloud.features.TagOperationsClient;
import org.jclouds.trmk.vcloud_0_8.TerremarkVCloudClient;
import org.jclouds.trmk.vcloud_0_8.domain.IpAddress;
import org.jclouds.trmk.vcloud_0_8.domain.Network;
import org.jclouds.trmk.vcloud_0_8.domain.NetworkExtendedInfo;
import org.jclouds.trmk.vcloud_0_8.domain.PublicIpAddress;
import org.jclouds.trmk.vcloud_0_8.domain.VAppExtendedInfo;
/**
* Provides access to VCloud resources via their REST API.
*
*
* @deprecated *Client classes will be moved to *Api in jclouds 1.7.0.
* @see
* @author Adrian Cole
*/
@Deprecated
public interface TerremarkECloudClient extends TerremarkVCloudClient {
/**
* Provides synchronous access to Data Center Operations.
*
*/
@Delegate
DataCenterOperationsClient getDataCenterOperationsClient();
/**
* Provides synchronous access to Data Center Operations.
*
*/
@Delegate
TagOperationsClient getTagOperationsClient();
/**
* {@inheritDoc}
*/
@Override
ECloudOrg getOrg(URI orgId);
/**
* Allocate a new public IP
*
* @param vDCId
* @return
* @throws org.jclouds.rest.InsufficientResourcesException
* if there's no additional ips available
*/
PublicIpAddress activatePublicIpInVDC(URI vDCId);
Network findNetworkInOrgVDCNamed(@Nullable String orgName, @Nullable String vdc, String networkName);
Network getNetwork(URI network);
NetworkExtendedInfo getNetworkExtendedInfo(URI network);
Set getIpAddresses(URI network);
/**
* Returns extended information for the vApp.
*
* @param vApp
* The URI at which the vApp information is available.
* @return Extended vApp information like tags, long name, network adapter
* information.
*/
VAppExtendedInfo getVAppExtendedInfo(URI href);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy