blob: 241e5b2785a098c3b97557b25f48474b11dec9f8 [file] [log] [blame]
/**
* 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.vcloud.director.v1_5.features.admin;
import java.net.URI;
import java.util.concurrent.TimeUnit;
import org.jclouds.concurrent.Timeout;
import org.jclouds.rest.annotations.Delegate;
import org.jclouds.vcloud.director.v1_5.domain.Task;
import org.jclouds.vcloud.director.v1_5.domain.network.Network;
import org.jclouds.vcloud.director.v1_5.domain.org.OrgNetwork;
import org.jclouds.vcloud.director.v1_5.features.MetadataApi;
import org.jclouds.vcloud.director.v1_5.features.NetworkApi;
/**
* Provides synchronous access to admin {@link Network} objects.
*
* @see AdminNetworkAsyncApi
* @author danikov
*/
@Timeout(duration = 180, timeUnit = TimeUnit.SECONDS)
public interface AdminNetworkApi extends NetworkApi {
/**
* Gets admin representation of network. This operation could return admin
* representation of organization network or external network. vApp networks
* do not have admin representation.
*
* <pre>
* GET /admin/network/{id}
* </pre>
*
* @param networkRef the reference for the network
* @return the network
*/
@Override
Network getNetwork(URI networkRef);
/**
* Modifies an org network
*
* <pre>
* PUT /admin/network/{id}
* </pre>
*
* @param networkRef the reference for the network
* @param network the updated network
* @return a task. This operation is asynchronous and the user should monitor the
* returned task status in order to check when it is completed.
*/
Task updateNetwork(URI networkRef, OrgNetwork network);
/**
* Reset(undeploy & redeploy) networking services on a logical network.
* The reset operation can be performed on:
* - external networks
* - organization networks
* - vApp networks
* The reset operation can be performed only on deployed networks.
*
* <pre>
* POST /admin/network/{id}/action/reset
* </pre>
*
* @param networkRef the reference for the network
* @return a task. This operation is asynchronous and the user should monitor the
* returned task status in order to check when it is completed.
*/
Task resetNetwork(URI networkRef);
/**
* @return synchronous access to admin {@link MetadataApi.Writeable} features
*/
@Override
@Delegate
MetadataApi.Writeable getMetadataApi();
}