com.huawei.openstack4j.api.compute.ext.InterfaceService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openstack4j Show documentation
Show all versions of openstack4j Show documentation
Huawei Cloud Open API SDK for Java
/*******************************************************************************
* Copyright 2016 ContainX and OpenStack4j
*
* Licensed 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 com.huawei.openstack4j.api.compute.ext;
import java.util.List;
import com.huawei.openstack4j.common.RestService;
import com.huawei.openstack4j.model.common.ActionResponse;
import com.huawei.openstack4j.model.compute.InterfaceAttachment;
import com.huawei.openstack4j.openstack.compute.domain.NovaInterfaceAttachmentCreate;
/**
* API to Create, list, get details for, and delete port interfaces on a Server Instance
*
* @author Jeremy Unruh
*/
public interface InterfaceService extends RestService {
/**
* Creates and uses a port interface to attach the port to a server instance.
*
* @param serverId the server id
* @param portId the port id to attach
* @return the attached interface
*/
InterfaceAttachment create(String serverId, String portId);
/**
* Creates and uses a port interface to attach the port to a server instance.
*
* @param serverId the server id
* @param novaInterfaceAttachmentCreate the interface info to attach
* @return the attached interface
*/
InterfaceAttachment create(String serverId, NovaInterfaceAttachmentCreate novaInterfaceAttachmentCreate);
/**
* List the port interfaces for the specified {@code serverId}
* @param serverId the server id
* @return List of interface attachments
*/
List extends InterfaceAttachment> list(String serverId);
/**
* Shows information about a specified port interface
*
* @param serverId the server id
* @param attachmentId the attachment identifier
* @return the interface attachment
*/
InterfaceAttachment get(String serverId, String attachmentId);
/**
* Detaches a specified port interface
*
* @param serverId the server id
* @param attachmentId the attachment identifier
* @return the action response indicating success or failure
*/
ActionResponse detach(String serverId, String attachmentId);
}