/** * Copyright (c) 2015-2016 Inria * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * - Fawaz Paraiso <fawaz.paraiso@inria.fr> * - Philippe Merle <philippe.merle@inria.fr> */ package org.occiware.clouddesigner.occi.cloud; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Machine Rack Space</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * </p> * <ul> * <li>{@link org.occiware.clouddesigner.occi.cloud.Machine_RackSpace#getProvider <em>Provider</em>}</li> * <li>{@link org.occiware.clouddesigner.occi.cloud.Machine_RackSpace#getUsername <em>Username</em>}</li> * <li>{@link org.occiware.clouddesigner.occi.cloud.Machine_RackSpace#getApi_key <em>Api key</em>}</li> * <li>{@link org.occiware.clouddesigner.occi.cloud.Machine_RackSpace#getRegion <em>Region</em>}</li> * <li>{@link org.occiware.clouddesigner.occi.cloud.Machine_RackSpace#getImage <em>Image</em>}</li> * </ul> * * @see org.occiware.clouddesigner.occi.cloud.CloudPackage#getMachine_RackSpace() * @model annotation="OCCIE2Ecore title='Machine on RackSpace'" * @generated */ public interface Machine_RackSpace extends Machine { /** * Returns the value of the '<em><b>Provider</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Provider</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Provider</em>' attribute. * @see #setProvider(String) * @see org.occiware.clouddesigner.occi.cloud.CloudPackage#getMachine_RackSpace_Provider() * @model dataType="org.occiware.clouddesigner.occi.String" required="true" * annotation="OCCIE2Ecore description='null'" * @generated */ String getProvider(); /** * Sets the value of the '{@link org.occiware.clouddesigner.occi.cloud.Machine_RackSpace#getProvider <em>Provider</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Provider</em>' attribute. * @see #getProvider() * @generated */ void setProvider(String value); /** * Returns the value of the '<em><b>Username</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Username</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Username</em>' attribute. * @see #setUsername(String) * @see org.occiware.clouddesigner.occi.cloud.CloudPackage#getMachine_RackSpace_Username() * @model dataType="org.occiware.clouddesigner.occi.String" required="true" * annotation="OCCIE2Ecore description='null'" * @generated */ String getUsername(); /** * Sets the value of the '{@link org.occiware.clouddesigner.occi.cloud.Machine_RackSpace#getUsername <em>Username</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Username</em>' attribute. * @see #getUsername() * @generated */ void setUsername(String value); /** * Returns the value of the '<em><b>Api key</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Api key</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Api key</em>' attribute. * @see #setApi_key(String) * @see org.occiware.clouddesigner.occi.cloud.CloudPackage#getMachine_RackSpace_Api_key() * @model dataType="org.occiware.clouddesigner.occi.String" required="true" * annotation="OCCIE2Ecore description='null'" * @generated */ String getApi_key(); /** * Sets the value of the '{@link org.occiware.clouddesigner.occi.cloud.Machine_RackSpace#getApi_key <em>Api key</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Api key</em>' attribute. * @see #getApi_key() * @generated */ void setApi_key(String value); /** * Returns the value of the '<em><b>Region</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Region</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Region</em>' attribute. * @see #setRegion(String) * @see org.occiware.clouddesigner.occi.cloud.CloudPackage#getMachine_RackSpace_Region() * @model dataType="org.occiware.clouddesigner.occi.String" * annotation="OCCIE2Ecore description='null'" * @generated */ String getRegion(); /** * Sets the value of the '{@link org.occiware.clouddesigner.occi.cloud.Machine_RackSpace#getRegion <em>Region</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Region</em>' attribute. * @see #getRegion() * @generated */ void setRegion(String value); /** * Returns the value of the '<em><b>Image</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Image</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Image</em>' attribute. * @see #setImage(String) * @see org.occiware.clouddesigner.occi.cloud.CloudPackage#getMachine_RackSpace_Image() * @model dataType="org.occiware.clouddesigner.occi.String" * annotation="OCCIE2Ecore description='null'" * @generated */ String getImage(); /** * Sets the value of the '{@link org.occiware.clouddesigner.occi.cloud.Machine_RackSpace#getImage <em>Image</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Image</em>' attribute. * @see #getImage() * @generated */ void setImage(String value); } // Machine_RackSpace