/*- * ============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.neutron; import org.eclipse.emf.common.util.EList; /** * * A representation of the model object 'Create Subnet Request'. * * *

* The following features are supported: *

*

* * @see org.openecomp.ncomp.openstack.neutron.NeutronPackage#getCreateSubnetRequest() * @model * @generated */ public interface CreateSubnetRequest extends NeutronRequest { /** * 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.neutron.NeutronPackage#getCreateSubnetRequest_Name() * @model unique="false" * @generated */ String getName(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.neutron.CreateSubnetRequest#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'Network id' attribute. * *

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

* * @return the value of the 'Network id' attribute. * @see #setNetwork_id(String) * @see org.openecomp.ncomp.openstack.neutron.NeutronPackage#getCreateSubnetRequest_Network_id() * @model unique="false" required="true" * @generated */ String getNetwork_id(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.neutron.CreateSubnetRequest#getNetwork_id Network id}' attribute. * * * @param value the new value of the 'Network id' attribute. * @see #getNetwork_id() * @generated */ void setNetwork_id(String value); /** * Returns the value of the 'Ip version' attribute. * *

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

* * @return the value of the 'Ip version' attribute. * @see #setIp_version(int) * @see org.openecomp.ncomp.openstack.neutron.NeutronPackage#getCreateSubnetRequest_Ip_version() * @model unique="false" * @generated */ int getIp_version(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.neutron.CreateSubnetRequest#getIp_version Ip version}' attribute. * * * @param value the new value of the 'Ip version' attribute. * @see #getIp_version() * @generated */ void setIp_version(int value); /** * Returns the value of the 'Cidr' attribute. * *

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

* * @return the value of the 'Cidr' attribute. * @see #setCidr(String) * @see org.openecomp.ncomp.openstack.neutron.NeutronPackage#getCreateSubnetRequest_Cidr() * @model unique="false" * @generated */ String getCidr(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.neutron.CreateSubnetRequest#getCidr Cidr}' attribute. * * * @param value the new value of the 'Cidr' attribute. * @see #getCidr() * @generated */ void setCidr(String value); /** * Returns the value of the 'Allocation pools' containment reference list. * The list contents are of type {@link org.openecomp.ncomp.openstack.neutron.AllocationPool}. * *

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

* * @return the value of the 'Allocation pools' containment reference list. * @see org.openecomp.ncomp.openstack.neutron.NeutronPackage#getCreateSubnetRequest_Allocation_pools() * @model containment="true" * @generated */ EList getAllocation_pools(); /** * Returns the value of the 'Dns nameservers' attribute list. * The list contents are of type {@link java.lang.String}. * *

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

* * @return the value of the 'Dns nameservers' attribute list. * @see org.openecomp.ncomp.openstack.neutron.NeutronPackage#getCreateSubnetRequest_Dns_nameservers() * @model unique="false" * @generated */ EList getDns_nameservers(); /** * Returns the value of the 'Enable dhcp' attribute. * *

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

* * @return the value of the 'Enable dhcp' attribute. * @see #setEnable_dhcp(Boolean) * @see org.openecomp.ncomp.openstack.neutron.NeutronPackage#getCreateSubnetRequest_Enable_dhcp() * @model unique="false" * @generated */ Boolean getEnable_dhcp(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.neutron.CreateSubnetRequest#getEnable_dhcp Enable dhcp}' attribute. * * * @param value the new value of the 'Enable dhcp' attribute. * @see #getEnable_dhcp() * @generated */ void setEnable_dhcp(Boolean value); /** * Returns the value of the 'Gateway ip' attribute. * *

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

* * @return the value of the 'Gateway ip' attribute. * @see #setGateway_ip(String) * @see org.openecomp.ncomp.openstack.neutron.NeutronPackage#getCreateSubnetRequest_Gateway_ip() * @model unique="false" * @generated */ String getGateway_ip(); /** * Sets the value of the '{@link org.openecomp.ncomp.openstack.neutron.CreateSubnetRequest#getGateway_ip Gateway ip}' attribute. * * * @param value the new value of the 'Gateway ip' attribute. * @see #getGateway_ip() * @generated */ void setGateway_ip(String value); } // CreateSubnetRequest