Commit 2f414d37 authored by Pelayo Torres's avatar Pelayo Torres
Browse files

Routing API realease V18.6.0

parent 0b8c3aea
Loading
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -34,6 +34,7 @@ capif_routing_info/models/ipv6_address_range1.py
capif_routing_info/models/local2d_point_uncertainty_ellipse.py
capif_routing_info/models/local3d_point_uncertainty_ellipsoid.py
capif_routing_info/models/local_origin.py
capif_routing_info/models/o_auth_grant_type.py
capif_routing_info/models/operation.py
capif_routing_info/models/point.py
capif_routing_info/models/point_altitude.py
+1 −1
Original line number Diff line number Diff line
7.5.0
7.11.0
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ To run the server, please execute the following from the root directory:

```
pip3 install -r requirements.txt
python3 -m openapi_server
python3 -m capif_routing_info
```

and open your browser to here:
+41 −0
Original line number Diff line number Diff line
# flake8: noqa
# import models into model package
from capif_routing_info.models.aef_location import AefLocation
from capif_routing_info.models.aef_profile import AefProfile
from capif_routing_info.models.civic_address import CivicAddress
from capif_routing_info.models.communication_type import CommunicationType
from capif_routing_info.models.custom_operation import CustomOperation
from capif_routing_info.models.data_format import DataFormat
from capif_routing_info.models.ellipsoid_arc import EllipsoidArc
from capif_routing_info.models.gad_shape import GADShape
from capif_routing_info.models.geographic_area import GeographicArea
from capif_routing_info.models.geographical_coordinates import GeographicalCoordinates
from capif_routing_info.models.interface_description import InterfaceDescription
from capif_routing_info.models.invalid_param import InvalidParam
from capif_routing_info.models.ip_addr_range import IpAddrRange
from capif_routing_info.models.ipv4_address_range import Ipv4AddressRange
from capif_routing_info.models.ipv4_address_range1 import Ipv4AddressRange1
from capif_routing_info.models.ipv6_addr1 import Ipv6Addr1
from capif_routing_info.models.ipv6_address_range import Ipv6AddressRange
from capif_routing_info.models.ipv6_address_range1 import Ipv6AddressRange1
from capif_routing_info.models.local2d_point_uncertainty_ellipse import Local2dPointUncertaintyEllipse
from capif_routing_info.models.local3d_point_uncertainty_ellipsoid import Local3dPointUncertaintyEllipsoid
from capif_routing_info.models.local_origin import LocalOrigin
from capif_routing_info.models.o_auth_grant_type import OAuthGrantType
from capif_routing_info.models.operation import Operation
from capif_routing_info.models.point import Point
from capif_routing_info.models.point_altitude import PointAltitude
from capif_routing_info.models.point_altitude_uncertainty import PointAltitudeUncertainty
from capif_routing_info.models.point_uncertainty_circle import PointUncertaintyCircle
from capif_routing_info.models.point_uncertainty_ellipse import PointUncertaintyEllipse
from capif_routing_info.models.polygon import Polygon
from capif_routing_info.models.problem_details import ProblemDetails
from capif_routing_info.models.protocol import Protocol
from capif_routing_info.models.relative_cartesian_location import RelativeCartesianLocation
from capif_routing_info.models.resource import Resource
from capif_routing_info.models.routing_info import RoutingInfo
from capif_routing_info.models.routing_rule import RoutingRule
from capif_routing_info.models.security_method import SecurityMethod
from capif_routing_info.models.service_kpis import ServiceKpis
from capif_routing_info.models.supported_gad_shapes import SupportedGADShapes
from capif_routing_info.models.uncertainty_ellipse import UncertaintyEllipse
from capif_routing_info.models.uncertainty_ellipsoid import UncertaintyEllipsoid
from capif_routing_info.models.version import Version
+5 −2
Original line number Diff line number Diff line
from datetime import date, datetime  # noqa: F401

from typing import List, Dict  # noqa: F401

from capif_routing_info import util
from capif_routing_info.models.base_model import Model
from capif_routing_info.models.civic_address import CivicAddress
from capif_routing_info.models.geographic_area import GeographicArea
from capif_routing_info import util

from capif_routing_info.models.civic_address import CivicAddress  # noqa: E501
from capif_routing_info.models.geographic_area import GeographicArea  # noqa: E501


class AefLocation(Model):
    """NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

Loading