/*- * ============LICENSE_START========================================== * OPENECOMP - DCAE * =================================================================== * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. * =================================================================== * 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. * ============LICENSE_END============================================ */ /** */ package org.openecomp.ncomp.openstack.compute; import org.openecomp.ncomp.openstack.core.OpenStackRequest; import org.openecomp.ncomp.openstack.core.VirtualMachineType; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Openstack Request New Server'. * * *

* The following features are supported: *

* * * @see org.openecomp.ncomp.openstack.compute.ComputePackage#getOpenstackRequestNewServer() * @model * @generated */ public interface OpenstackRequestNewServer extends OpenStackRequest { /** * Returns the value of the 'Name' attribute. * *

* If the meaning of the 'Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Name' attribute. * @see #setName(String) * @see org.openecomp.ncomp.openstack.compute.ComputePackage#getOpenstackRequestNewServer_Name() * @model unique="false" * @generated */ String getName(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.compute.OpenstackRequestNewServer#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Hypervisor' attribute. * *

* If the meaning of the 'Hypervisor' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Hypervisor' attribute. * @see #setHypervisor(String) * @see org.openecomp.ncomp.openstack.compute.ComputePackage#getOpenstackRequestNewServer_Hypervisor() * @model unique="false" * @generated */ String getHypervisor(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.compute.OpenstackRequestNewServer#getHypervisor Hypervisor}' attribute. * * * @param value the new value of the 'Hypervisor' attribute. * @see #getHypervisor() * @generated */ void setHypervisor(String value); /** * Returns the value of the 'User' attribute. * *

* If the meaning of the 'User' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'User' attribute. * @see #setUser(String) * @see org.openecomp.ncomp.openstack.compute.ComputePackage#getOpenstackRequestNewServer_User() * @model unique="false" * @generated */ String getUser(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.compute.OpenstackRequestNewServer#getUser User}' attribute. * * * @param value the new value of the 'User' attribute. * @see #getUser() * @generated */ void setUser(String value); /** * Returns the value of the 'Networks' attribute list. * The list contents are of type {@link java.lang.String}. * *

* If the meaning of the 'Networks' attribute list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Networks' attribute list. * @see org.openecomp.ncomp.openstack.compute.ComputePackage#getOpenstackRequestNewServer_Networks() * @model unique="false" * @generated */ EList getNetworks(); /** * Returns the value of the 'Ports' attribute list. * The list contents are of type {@link java.lang.String}. * *

* If the meaning of the 'Ports' attribute list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Ports' attribute list. * @see org.openecomp.ncomp.openstack.compute.ComputePackage#getOpenstackRequestNewServer_Ports() * @model unique="false" * @generated */ EList getPorts(); /** * Returns the value of the 'User data' attribute. * *

* If the meaning of the 'User data' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'User data' attribute. * @see #setUser_data(String) * @see org.openecomp.ncomp.openstack.compute.ComputePackage#getOpenstackRequestNewServer_User_data() * @model unique="false" * @generated */ String getUser_data(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.compute.OpenstackRequestNewServer#getUser_data User data}' attribute. * * * @param value the new value of the 'User data' attribute. * @see #getUser_data() * @generated */ void setUser_data(String value); /** * Returns the value of the 'Floating Ip' attribute. * *

* If the meaning of the 'Floating Ip' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Floating Ip' attribute. * @see #setFloatingIp(String) * @see org.openecomp.ncomp.openstack.compute.ComputePackage#getOpenstackRequestNewServer_FloatingIp() * @model unique="false" * @generated */ String getFloatingIp(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.compute.OpenstackRequestNewServer#getFloatingIp Floating Ip}' attribute. * * * @param value the new value of the 'Floating Ip' attribute. * @see #getFloatingIp() * @generated */ void setFloatingIp(String value); /** * Returns the value of the 'Vm Type' containment reference. * *

* If the meaning of the 'Vm Type' containment reference isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Vm Type' containment reference. * @see #setVmType(VirtualMachineType) * @see org.openecomp.ncomp.openstack.compute.ComputePackage#getOpenstackRequestNewServer_VmType() * @model containment="true" * @generated */ VirtualMachineType getVmType(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.compute.OpenstackRequestNewServer#getVmType Vm Type}' containment reference. * * * @param value the new value of the 'Vm Type' containment reference. * @see #getVmType() * @generated */ void setVmType(VirtualMachineType value); } // OpenstackRequestNewServer