openapi: 3.0.1 info: title: Equinix API Authentication VRFs API description: 'Equinix APIs use the OAuth 2.0 for authentication and authorization. Equinix supports the resource owner password and the client credentials flow. To begin, obtain OAuth 2.0 client credentials from the Equinix Developer Console under "My Apps". Then your client application requests an access token from the Equinix API Authorization endpoint, extracts the access_token from the response, and sends the Bearer token to the API that you want to access' termsOfService: https://www.equinix.com/about/legal/terms contact: name: Equinix API Support url: https://docs.equinix.com/api-support.htm version: '1.2' servers: - url: https://api.equinix.com tags: - description: 'VRF Management. A VRF is a project-scoped virtual router resource that defines a collection of customer-managed IP blocks that can be used in BGP peering on one or more virtual networks. Metal Gateways and Interconnection Virtual Circuits can take advantage of VRFs to enable Layer 3 routing with bespoke network ranges. Notice: VRFs are a test feature currently under active development, and only available to certain users. Please contact Customer Success for more information. ' name: VRFs paths: /bgp-dynamic-neighbors/{id}: delete: description: Trigger the removal of a BGP Neighbor range from a VRF operationId: deleteBgpDynamicNeighborById parameters: - description: BGP Dynamic Neighbor UUID in: path name: id required: true schema: format: uuid type: string - description: 'Nested attributes to include. Included objects will return their full attributes. Attribute names can be dotted (up to 3 levels) to included deeply nested objects.' explode: false in: query name: include schema: items: type: string type: array style: form - description: 'Nested attributes to exclude. Excluded objects will return only the href attribute. Attribute names can be dotted (up to 3 levels) to exclude deeply nested objects.' explode: false in: query name: exclude schema: items: type: string type: array style: form responses: '202': content: application/json: schema: $ref: '#/components/schemas/BgpDynamicNeighbor' description: Accepted '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: Unauthorized '403': content: application/json: schema: $ref: '#/components/schemas/Error' description: Forbidden '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: Not Found summary: Delete a VRF BGP Dynamic Neighbor tags: - VRFs get: description: Return a single BGP Dynamic Neighbor resource parameters: - description: BGP Dynamic Neighbor UUID in: path name: id required: true schema: format: uuid type: string - description: 'Nested attributes to include. Included objects will return their full attributes. Attribute names can be dotted (up to 3 levels) to included deeply nested objects.' explode: false in: query name: include schema: items: type: string type: array style: form - description: 'Nested attributes to exclude. Excluded objects will return only the href attribute. Attribute names can be dotted (up to 3 levels) to exclude deeply nested objects.' explode: false in: query name: exclude schema: items: type: string type: array style: form responses: '200': content: application/json: schema: $ref: '#/components/schemas/BgpDynamicNeighbor' description: OK '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: Unauthorized '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: Not Found summary: Retrieve a BGP Dynamic Neighbor tags: - VRFs /metal-gateways/{id}/bgp-dynamic-neighbors: get: description: Returns the list of VRF BGP Dynamic Neighbors for this Metal Gateway operationId: getBgpDynamicNeighbors parameters: - description: Metal Gateway UUID in: path name: id required: true schema: format: uuid type: string - description: 'Nested attributes to include. Included objects will return their full attributes. Attribute names can be dotted (up to 3 levels) to included deeply nested objects.' explode: false in: query name: include schema: items: type: string type: array style: form - description: 'Nested attributes to exclude. Excluded objects will return only the href attribute. Attribute names can be dotted (up to 3 levels) to exclude deeply nested objects.' explode: false in: query name: exclude schema: items: type: string type: array style: form responses: '200': content: application/json: schema: $ref: '#/components/schemas/BgpDynamicNeighborList' description: OK '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: Unauthorized '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: Not Found summary: List BGP Dynamic Neighbors tags: - VRFs post: description: 'Create a VRF BGP Dynamic Neighbor range. BGP Dynamic Neighbor records are limited to 2 per Virtual Network. Notice: VRFs are a test feature currently under active development, and only available to certain users. Please contact Customer Success for more information. ' operationId: createBgpDynamicNeighbor parameters: - description: Metal Gateway UUID in: path name: id required: true schema: format: uuid type: string - description: 'Nested attributes to include. Included objects will return their full attributes. Attribute names can be dotted (up to 3 levels) to included deeply nested objects.' explode: false in: query name: include schema: items: type: string type: array style: form - description: 'Nested attributes to exclude. Excluded objects will return only the href attribute. Attribute names can be dotted (up to 3 levels) to exclude deeply nested objects.' explode: false in: query name: exclude schema: items: type: string type: array style: form requestBody: content: application/json: schema: $ref: '#/components/schemas/BgpDynamicNeighborCreateInput' required: true responses: '201': content: application/json: schema: $ref: '#/components/schemas/BgpDynamicNeighbor' description: Created '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: Unauthorized '403': content: application/json: schema: $ref: '#/components/schemas/Error' description: Forbidden '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: Not Found '422': content: application/json: schema: $ref: '#/components/schemas/Error' description: Unprocessable entity summary: Create a VRF BGP Dynamic Neighbor range tags: - VRFs /projects/{id}/vrfs: get: description: Returns the list of VRFs for a single project. operationId: findVrfs parameters: - description: Project UUID in: path name: id required: true schema: format: uuid type: string - description: 'Nested attributes to include. Included objects will return their full attributes. Attribute names can be dotted (up to 3 levels) to included deeply nested objects.' explode: false in: query name: include schema: items: type: string type: array style: form - description: 'Nested attributes to exclude. Excluded objects will return only the href attribute. Attribute names can be dotted (up to 3 levels) to exclude deeply nested objects.' explode: false in: query name: exclude schema: items: type: string type: array style: form - description: Filter by Metro ID (uuid) or Metro Code in: query name: metro schema: type: string responses: '200': content: application/json: schema: $ref: '#/components/schemas/VrfList' description: ok '403': content: application/json: schema: $ref: '#/components/schemas/Error' description: forbidden '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: not found summary: Retrieve all VRFs in the project tags: - VRFs post: description: Creates a new VRF in the specified project operationId: createVrf parameters: - description: Project UUID in: path name: id required: true schema: format: uuid type: string - description: 'Nested attributes to include. Included objects will return their full attributes. Attribute names can be dotted (up to 3 levels) to included deeply nested objects.' explode: false in: query name: include schema: items: type: string type: array style: form - description: 'Nested attributes to exclude. Excluded objects will return only the href attribute. Attribute names can be dotted (up to 3 levels) to exclude deeply nested objects.' explode: false in: query name: exclude schema: items: type: string type: array style: form requestBody: content: application/json: schema: $ref: '#/components/schemas/VrfCreateInput' description: VRF to create required: true responses: '201': content: application/json: schema: $ref: '#/components/schemas/Vrf' description: created '403': content: application/json: schema: $ref: '#/components/schemas/Error' description: forbidden '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: not found '422': content: application/json: schema: $ref: '#/components/schemas/Error' description: unprocessable entity summary: Create a new VRF in the specified project tags: - VRFs /routes/{id}: delete: description: Trigger the deletion of a VRF Route resource. The status of the route will update to 'deleting', and the route resource will remain accessible while background operations remove the route from the network. Once the route has been removed from the network, the resource will be fully deleted. operationId: deleteVrfRouteById parameters: - description: VRF Route UUID in: path name: id required: true schema: format: uuid type: string - description: 'Nested attributes to include. Included objects will return their full attributes. Attribute names can be dotted (up to 3 levels) to included deeply nested objects.' explode: false in: query name: include schema: items: type: string type: array style: form - description: 'Nested attributes to exclude. Excluded objects will return only the href attribute. Attribute names can be dotted (up to 3 levels) to exclude deeply nested objects.' explode: false in: query name: exclude schema: items: type: string type: array style: form responses: '202': content: application/json: schema: $ref: '#/components/schemas/VrfRoute' description: Accepted '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: Unauthorized '403': content: application/json: schema: $ref: '#/components/schemas/Error' description: Forbidden '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: Not Found summary: Delete a VRF Route tags: - VRFs get: description: Returns a single VRF Route resource operationId: findVrfRouteById parameters: - description: VRF Route UUID in: path name: id required: true schema: format: uuid type: string - description: 'Nested attributes to include. Included objects will return their full attributes. Attribute names can be dotted (up to 3 levels) to included deeply nested objects.' explode: false in: query name: include schema: items: type: string type: array style: form - description: 'Nested attributes to exclude. Excluded objects will return only the href attribute. Attribute names can be dotted (up to 3 levels) to exclude deeply nested objects.' explode: false in: query name: exclude schema: items: type: string type: array style: form responses: '200': content: application/json: schema: $ref: '#/components/schemas/VrfRoute' description: OK '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: Unauthorized '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: Not Found summary: Retrieve a VRF Route tags: - VRFs put: description: Requests a VRF Route be redeployed across the network. Updating the prefix or next-hop address on a route is not currently supported. operationId: updateVrfRouteById parameters: - description: VRF Route UUID in: path name: id required: true schema: format: uuid type: string - description: 'Nested attributes to include. Included objects will return their full attributes. Attribute names can be dotted (up to 3 levels) to included deeply nested objects.' explode: false in: query name: include schema: items: type: string type: array style: form - description: 'Nested attributes to exclude. Excluded objects will return only the href attribute. Attribute names can be dotted (up to 3 levels) to exclude deeply nested objects.' explode: false in: query name: exclude schema: items: type: string type: array style: form requestBody: content: application/json: schema: $ref: '#/components/schemas/VrfRouteUpdateInput' required: true responses: '202': content: application/json: schema: $ref: '#/components/schemas/VrfRoute' description: Accepted '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: Unauthorized '403': content: application/json: schema: $ref: '#/components/schemas/Error' description: Forbidden '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: Not Found '422': content: application/json: schema: $ref: '#/components/schemas/Error' description: Unprocessable Entity '429': content: application/json: schema: $ref: '#/components/schemas/Error' description: Too Many Requests summary: Update a VRF Route tags: - VRFs /vrfs/{id}: delete: description: Deletes the VRF operationId: deleteVrf parameters: - description: VRF UUID in: path name: id required: true schema: format: uuid type: string responses: '204': description: no content '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: unauthorized '403': content: application/json: schema: $ref: '#/components/schemas/Error' description: forbidden '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: not found summary: Delete the VRF tags: - VRFs get: description: Returns a single VRF resource operationId: findVrfById parameters: - description: VRF UUID in: path name: id required: true schema: format: uuid type: string - description: 'Nested attributes to include. Included objects will return their full attributes. Attribute names can be dotted (up to 3 levels) to included deeply nested objects.' explode: false in: query name: include schema: items: type: string type: array style: form - description: 'Nested attributes to exclude. Excluded objects will return only the href attribute. Attribute names can be dotted (up to 3 levels) to exclude deeply nested objects.' explode: false in: query name: exclude schema: items: type: string type: array style: form responses: '200': content: application/json: schema: $ref: '#/components/schemas/Vrf' description: ok '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: unauthorized '403': content: application/json: schema: $ref: '#/components/schemas/Error' description: forbidden '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: not found summary: Retrieve a VRF tags: - VRFs put: description: Updates the VRF. operationId: updateVrf parameters: - description: VRF UUID in: path name: id required: true schema: format: uuid type: string - description: 'Nested attributes to include. Included objects will return their full attributes. Attribute names can be dotted (up to 3 levels) to included deeply nested objects.' explode: false in: query name: include schema: items: type: string type: array style: form - description: 'Nested attributes to exclude. Excluded objects will return only the href attribute. Attribute names can be dotted (up to 3 levels) to exclude deeply nested objects.' explode: false in: query name: exclude schema: items: type: string type: array style: form requestBody: content: application/json: schema: $ref: '#/components/schemas/VrfUpdateInput' description: VRF to update required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/Vrf' description: ok '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: unauthorized '403': content: application/json: schema: $ref: '#/components/schemas/Error' description: forbidden '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: not found '422': content: application/json: schema: $ref: '#/components/schemas/Error' description: unprocessable entity summary: Update the VRF tags: - VRFs /vrfs/{id}/ips: get: description: Returns the list of VRF IP Reservations for the VRF. operationId: findVrfIpReservations parameters: - description: VRF UUID in: path name: id required: true schema: format: uuid type: string - description: Nested attributes to include. Included objects will return their full attributes. Attribute names can be dotted (up to 3 levels) to included deeply nested objects. in: query name: include schema: items: type: string type: array style: form - description: Nested attributes to exclude. Excluded objects will return only the href attribute. Attribute names can be dotted (up to 3 levels) to exclude deeply nested objects. in: query name: exclude schema: items: type: string type: array style: form responses: '200': content: application/json: schema: $ref: '#/components/schemas/VrfIpReservationList' description: ok '403': content: application/json: schema: $ref: '#/components/schemas/Error' description: forbidden '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: not found summary: Retrieve all VRF IP Reservations in the VRF tags: - VRFs /vrfs/{vrf_id}/ips/{id}: get: description: Returns the IP Reservation for the VRF. operationId: findVrfIpReservation parameters: - description: VRF UUID in: path name: vrf_id required: true schema: format: uuid type: string - description: IP UUID in: path name: id required: true schema: format: uuid type: string - description: Nested attributes to include. Included objects will return their full attributes. Attribute names can be dotted (up to 3 levels) to included deeply nested objects. in: query name: include schema: items: type: string type: array style: form - description: Nested attributes to exclude. Excluded objects will return only the href attribute. Attribute names can be dotted (up to 3 levels) to exclude deeply nested objects. in: query name: exclude schema: items: type: string type: array style: form responses: '200': content: application/json: schema: $ref: '#/components/schemas/VrfIpReservation' description: ok '403': content: application/json: schema: $ref: '#/components/schemas/Error' description: forbidden '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: not found summary: Retrieve all VRF IP Reservations in the VRF tags: - VRFs /vrfs/{id}/routes: get: description: Returns the list of routes for the VRF operationId: getVrfRoutes parameters: - description: VRF UUID in: path name: id required: true schema: format: uuid type: string - description: 'Nested attributes to include. Included objects will return their full attributes. Attribute names can be dotted (up to 3 levels) to included deeply nested objects.' explode: false in: query name: include schema: items: type: string type: array style: form - description: 'Nested attributes to exclude. Excluded objects will return only the href attribute. Attribute names can be dotted (up to 3 levels) to exclude deeply nested objects.' explode: false in: query name: exclude schema: items: type: string type: array style: form responses: '200': content: application/json: schema: $ref: '#/components/schemas/VrfRouteList' description: OK '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: Unauthorized '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: Not Found summary: Retrieve all routes in the VRF tags: - VRFs post: description: 'Create a route in a VRF. Currently only static default routes are supported. Notice: VRFs are a test feature currently under active development, and only available to certain users. Please contact Customer Success for more information. ' operationId: createVrfRoute parameters: - description: VRF UUID in: path name: id required: true schema: format: uuid type: string - description: 'Nested attributes to include. Included objects will return their full attributes. Attribute names can be dotted (up to 3 levels) to included deeply nested objects.' explode: false in: query name: include schema: items: type: string type: array style: form - description: 'Nested attributes to exclude. Excluded objects will return only the href attribute. Attribute names can be dotted (up to 3 levels) to exclude deeply nested objects.' explode: false in: query name: exclude schema: items: type: string type: array style: form requestBody: content: application/json: schema: $ref: '#/components/schemas/VrfRouteCreateInput' required: true responses: '200': content: application/json: schema: $ref: '#/components/schemas/VrfRoute' description: OK '401': content: application/json: schema: $ref: '#/components/schemas/Error' description: Unauthorized '403': content: application/json: schema: $ref: '#/components/schemas/Error' description: Forbidden '404': content: application/json: schema: $ref: '#/components/schemas/Error' description: Not Found '422': content: application/json: schema: $ref: '#/components/schemas/Error' description: Unprocessable entity summary: Create a VRF route tags: - VRFs components: schemas: BgpDynamicNeighbor_state: enum: - active - deleting - pending - ready readOnly: true type: string VrfVirtualCircuit_status: description: The status changes of a VRF virtual circuit are generally the same as Virtual Circuits that aren't in a VRF. However, for VRF Virtual Circuits on Fabric VCs, the status will change to 'waiting_on_peering_details' once the Fabric service token associated with the virtual circuit has been redeemed on Fabric, and Metal has found the associated Fabric connection. At this point, users can update the subnet, MD5 password, customer IP and/or metal IP accordingly. For VRF Virtual Circuits on Dedicated Ports, we require all peering details to be set on creation of a VRF Virtual Circuit. The status will change to `changing_peering_details` whenever an active VRF Virtual Circuit has any of its peering details updated. enum: - pending - waiting_on_peering_details - activating - changing_peering_details - deactivating - deleting - active - expired - activation_failed - changing_peering_details_failed - deactivation_failed - delete_failed type: string Meta: example: next: href: href total: 0 last: href: href previous: href: href last_page: 1 self: href: href first: href: href current_page: 6 properties: first: $ref: '#/components/schemas/Href' last: $ref: '#/components/schemas/Href' next: $ref: '#/components/schemas/Href' previous: $ref: '#/components/schemas/Href' self: $ref: '#/components/schemas/Href' total: type: integer current_page: type: integer last_page: type: integer type: object BgpDynamicNeighborCreateInput: example: bgp_neighbor_asn: 12345 bgp_neighbor_range: 192.168.1.0/25 tags: - tags - tags properties: bgp_neighbor_range: description: Network range of the dynamic BGP neighbor in CIDR format example: 192.168.1.0/25 type: string bgp_neighbor_asn: description: The ASN of the dynamic BGP neighbor example: 12345 type: integer tags: items: type: string type: array required: - bgp_neighbor_asn - bgp_neighbor_range type: object VrfRouteCreateInput: example: prefix: 0.0.0.0/0 next_hop: 192.168.1.254 tags: - tags - tags properties: prefix: description: The IPv4 prefix for the route, in CIDR-style notation. For a static default route, this will always be "0.0.0.0/0" example: 0.0.0.0/0 type: string next_hop: description: The IPv4 address within the VRF of the host that will handle this route example: 192.168.1.254 format: ipv4 type: string tags: items: type: string type: array required: - next_hop - prefix type: object VrfRoute: example: metal_gateway: virtual_network: vxlan: 4 instances: - href: href - href: href description: description created_at: 2000-01-23 04:56:07+00:00 assigned_to_virtual_circuit: true tags: - tags - tags metal_gateways: - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null metro_code: metro_code metro: href: href href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 facility: href: href assigned_to: href: href updated_at: 2000-01-23 04:56:07+00:00 ip_reservation: address: address created_at: 2000-01-23 04:56:07+00:00 project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href bill: true project_lite: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href vrf: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href type: null created_by: href: href network: network tags: - tags - tags manageable: true metal_gateway: gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null address_family: 0 public: true netmask: netmask management: true metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 cidr: 6 details: details href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: state customdata: '{}' gateway: gateway created_at: 2000-01-23 04:56:07+00:00 project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null vrf: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href created_by: href: href virtual_network: vxlan: 4 instances: - href: href - href: href description: description created_at: 2000-01-23 04:56:07+00:00 assigned_to_virtual_circuit: true tags: - tags - tags metal_gateways: - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null metro_code: metro_code metro: href: href href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 facility: href: href assigned_to: href: href updated_at: 2000-01-23 04:56:07+00:00 prefix: 0.0.0.0/0 next_hop: 192.168.1.254 created_at: 2000-01-23 04:56:07+00:00 id: e1ff9c2b-051a-4688-965f-153e274f77e0 vrf: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href href: /routes/e1ff9c2b-051a-4688-965f-153e274f77e0 type: static status: active tags: - tags - tags properties: id: description: The unique identifier for the newly-created resource example: e1ff9c2b-051a-4688-965f-153e274f77e0 format: uuid readOnly: true type: string status: $ref: '#/components/schemas/VrfRoute_status' prefix: description: The IPv4 prefix for the route, in CIDR-style notation example: 0.0.0.0/0 type: string next_hop: description: The next-hop IPv4 address for the route example: 192.168.1.254 format: ipv4 type: string type: $ref: '#/components/schemas/VrfRoute_type' created_at: format: date-time readOnly: true type: string updated_at: format: date-time readOnly: true type: string metal_gateway: $ref: '#/components/schemas/VrfMetalGateway' virtual_network: $ref: '#/components/schemas/VirtualNetwork' vrf: $ref: '#/components/schemas/Vrf' href: example: /routes/e1ff9c2b-051a-4688-965f-153e274f77e0 readOnly: true type: string tags: items: type: string type: array type: object VrfVirtualCircuit: example: subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null properties: customer_ip: description: An IP address from the subnet that will be used on the Customer side. This parameter is optional, but if supplied, we will use the other usable IP address in the subnet as the Metal IP. By default, the last usable IP address in the subnet will be used. example: 12.0.0.2 type: string description: type: string id: format: uuid type: string md5: description: The MD5 password for the BGP peering in plaintext (not a checksum). type: string metal_ip: description: An IP address from the subnet that will be used on the Metal side. This parameter is optional, but if supplied, we will use the other usable IP address in the subnet as the Customer IP. By default, the first usable IP address in the subnet will be used. example: 12.0.0.1 type: string name: type: string port: $ref: '#/components/schemas/Href' nni_vlan: type: integer peer_asn: description: The peer ASN that will be used with the VRF on the Virtual Circuit. type: integer project: $ref: '#/components/schemas/Href' speed: description: integer representing bps speed type: integer status: $ref: '#/components/schemas/VrfVirtualCircuit_status' subnet: description: The /30 or /31 subnet of one of the VRF IP Blocks that will be used with the VRF for the Virtual Circuit. This subnet does not have to be an existing VRF IP reservation, as we will create the VRF IP reservation on creation if it does not exist. The Metal IP and Customer IP must be IPs from this subnet. For /30 subnets, the network and broadcast IPs cannot be used as the Metal or Customer IP. example: 12.0.0.0/30 type: string tags: items: type: string type: array type: $ref: '#/components/schemas/VrfIpReservation_type' vrf: $ref: '#/components/schemas/Vrf' created_at: format: date-time type: string updated_at: format: date-time type: string required: - vrf type: object Address: example: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code properties: address: type: string address2: type: string city: type: string coordinates: $ref: '#/components/schemas/Coordinates' country: type: string state: type: string zip_code: type: string required: - address - country - zip_code type: object VrfRouteUpdateInput: example: prefix: 0.0.0.0/0 next_hop: 192.168.1.254 tags: - tags - tags properties: prefix: description: The IPv4 prefix for the route, in CIDR-style notation. For a static default route, this will always be "0.0.0.0/0" example: 0.0.0.0/0 type: string next_hop: description: The IPv4 address within the VRF of the host that will handle this route example: 192.168.1.254 format: ipv4 type: string tags: items: type: string type: array type: object UserLimited: example: avatar_thumb_url: avatar_thumb_url full_name: full_name avatar_url: avatar_url href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 properties: avatar_thumb_url: description: Avatar thumbnail URL of the User type: string avatar_url: description: Avatar URL of the User type: string full_name: description: Full name of the User type: string href: description: API URL uniquely representing the User type: string id: description: ID of the User format: uuid type: string required: - id type: object VrfIpReservation: example: address: address created_at: 2000-01-23 04:56:07+00:00 project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href bill: true project_lite: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href vrf: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href type: null created_by: href: href network: network tags: - tags - tags manageable: true metal_gateway: gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null address_family: 0 public: true netmask: netmask management: true metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 cidr: 6 details: details href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: state customdata: '{}' gateway: gateway properties: address_family: type: integer cidr: type: integer created_at: format: date-time type: string created_by: $ref: '#/components/schemas/Href' details: type: string href: type: string id: format: uuid type: string metal_gateway: $ref: '#/components/schemas/MetalGatewayLite' netmask: type: string network: type: string project: $ref: '#/components/schemas/Project' state: type: string tags: items: type: string type: array type: $ref: '#/components/schemas/VrfIpReservation_type' vrf: $ref: '#/components/schemas/Vrf' public: type: boolean management: type: boolean manageable: type: boolean customdata: type: object bill: type: boolean project_lite: $ref: '#/components/schemas/Project' address: type: string gateway: type: string metro: $ref: '#/components/schemas/Metro' required: - type - vrf type: object Organization: example: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 properties: address: $ref: '#/components/schemas/Address' billing_address: $ref: '#/components/schemas/Address' created_at: format: date-time type: string credit_amount: format: float type: number customdata: type: object description: type: string enforce_2fa_at: description: Force to all members to have enabled the two factor authentication after that date, unless the value is null format: date-time type: string id: format: uuid type: string logo: type: string members: items: $ref: '#/components/schemas/Href' type: array memberships: items: $ref: '#/components/schemas/Href' type: array name: type: string projects: items: $ref: '#/components/schemas/Href' type: array terms: type: integer twitter: type: string updated_at: format: date-time type: string website: type: string type: object VrfRouteList: example: routes: - metal_gateway: virtual_network: vxlan: 4 instances: - href: href - href: href description: description created_at: 2000-01-23 04:56:07+00:00 assigned_to_virtual_circuit: true tags: - tags - tags metal_gateways: - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null metro_code: metro_code metro: href: href href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 facility: href: href assigned_to: href: href updated_at: 2000-01-23 04:56:07+00:00 ip_reservation: address: address created_at: 2000-01-23 04:56:07+00:00 project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href bill: true project_lite: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href vrf: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href type: null created_by: href: href network: network tags: - tags - tags manageable: true metal_gateway: gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null address_family: 0 public: true netmask: netmask management: true metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 cidr: 6 details: details href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: state customdata: '{}' gateway: gateway created_at: 2000-01-23 04:56:07+00:00 project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null vrf: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href created_by: href: href virtual_network: vxlan: 4 instances: - href: href - href: href description: description created_at: 2000-01-23 04:56:07+00:00 assigned_to_virtual_circuit: true tags: - tags - tags metal_gateways: - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null metro_code: metro_code metro: href: href href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 facility: href: href assigned_to: href: href updated_at: 2000-01-23 04:56:07+00:00 prefix: 0.0.0.0/0 next_hop: 192.168.1.254 created_at: 2000-01-23 04:56:07+00:00 id: e1ff9c2b-051a-4688-965f-153e274f77e0 vrf: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href href: /routes/e1ff9c2b-051a-4688-965f-153e274f77e0 type: static status: active tags: - tags - tags - metal_gateway: virtual_network: vxlan: 4 instances: - href: href - href: href description: description created_at: 2000-01-23 04:56:07+00:00 assigned_to_virtual_circuit: true tags: - tags - tags metal_gateways: - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null metro_code: metro_code metro: href: href href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 facility: href: href assigned_to: href: href updated_at: 2000-01-23 04:56:07+00:00 ip_reservation: address: address created_at: 2000-01-23 04:56:07+00:00 project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href bill: true project_lite: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href vrf: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href type: null created_by: href: href network: network tags: - tags - tags manageable: true metal_gateway: gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null address_family: 0 public: true netmask: netmask management: true metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 cidr: 6 details: details href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: state customdata: '{}' gateway: gateway created_at: 2000-01-23 04:56:07+00:00 project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null vrf: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href created_by: href: href virtual_network: vxlan: 4 instances: - href: href - href: href description: description created_at: 2000-01-23 04:56:07+00:00 assigned_to_virtual_circuit: true tags: - tags - tags metal_gateways: - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null metro_code: metro_code metro: href: href href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 facility: href: href assigned_to: href: href updated_at: 2000-01-23 04:56:07+00:00 prefix: 0.0.0.0/0 next_hop: 192.168.1.254 created_at: 2000-01-23 04:56:07+00:00 id: e1ff9c2b-051a-4688-965f-153e274f77e0 vrf: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href href: /routes/e1ff9c2b-051a-4688-965f-153e274f77e0 type: static status: active tags: - tags - tags meta: next: href: href total: 0 last: href: href previous: href: href last_page: 1 self: href: href first: href: href current_page: 6 properties: routes: items: $ref: '#/components/schemas/VrfRoute' type: array meta: $ref: '#/components/schemas/Meta' type: object Vrf: example: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href properties: id: format: uuid type: string name: type: string description: description: Optional field that can be set to describe the VRF type: string bill: default: false description: True if the VRF is being billed. Usage will start when the first VRF Virtual Circuit is active, and will only stop when the VRF has been deleted. type: boolean bgp_dynamic_neighbors_enabled: description: Toggle to enable the dynamic bgp neighbors feature on the VRF type: boolean bgp_dynamic_neighbors_export_route_map: description: Toggle to export the VRF route-map to the dynamic bgp neighbors type: boolean bgp_dynamic_neighbors_bfd_enabled: description: Toggle BFD on dynamic bgp neighbors sessions type: boolean local_asn: description: A 4-byte ASN associated with the VRF. format: int32 type: integer virtual_circuits: description: Virtual circuits that are in the VRF items: $ref: '#/components/schemas/VrfVirtualCircuit' type: array ip_ranges: description: A list of CIDR network addresses. Like ["10.0.0.0/16", "2001:d78::/56"]. items: type: string type: array project: $ref: '#/components/schemas/Project' metro: $ref: '#/components/schemas/Metro' created_by: $ref: '#/components/schemas/User' href: type: string created_at: format: date-time type: string updated_at: format: date-time type: string tags: items: type: string type: array type: object Project_type: description: The type of the project. Projects of type `vmce` are part of an in development feature and not available to all customers. enum: - default - vmce type: string VrfRoute_type: description: VRF route type, like 'bgp', 'connected', and 'static'. Currently, only static routes are supported enum: - static example: static readOnly: true type: string VrfMetalGateway: example: virtual_network: vxlan: 4 instances: - href: href - href: href description: description created_at: 2000-01-23 04:56:07+00:00 assigned_to_virtual_circuit: true tags: - tags - tags metal_gateways: - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null metro_code: metro_code metro: href: href href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 facility: href: href assigned_to: href: href updated_at: 2000-01-23 04:56:07+00:00 ip_reservation: address: address created_at: 2000-01-23 04:56:07+00:00 project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href bill: true project_lite: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href vrf: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href type: null created_by: href: href network: network tags: - tags - tags manageable: true metal_gateway: gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null address_family: 0 public: true netmask: netmask management: true metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 cidr: 6 details: details href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: state customdata: '{}' gateway: gateway created_at: 2000-01-23 04:56:07+00:00 project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null vrf: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href created_by: href: href properties: created_at: format: date-time type: string created_by: $ref: '#/components/schemas/Href' href: type: string id: format: uuid type: string ip_reservation: $ref: '#/components/schemas/VrfIpReservation' project: $ref: '#/components/schemas/Project' state: $ref: '#/components/schemas/MetalGateway_state' updated_at: format: date-time type: string virtual_network: $ref: '#/components/schemas/VirtualNetwork' vrf: $ref: '#/components/schemas/Vrf' type: object VrfIpReservation_type: enum: - vrf type: string Project: example: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href properties: bgp_config: $ref: '#/components/schemas/Href' created_at: format: date-time type: string customdata: type: object devices: items: $ref: '#/components/schemas/Href' type: array href: type: string id: format: uuid type: string invitations: items: $ref: '#/components/schemas/Href' type: array max_devices: type: object members: items: $ref: '#/components/schemas/Href' type: array memberships: items: $ref: '#/components/schemas/Href' type: array name: description: The name of the project. Cannot contain characters encoded in greater than 3 bytes such as emojis. maxLength: 80 minLength: 1 type: string network_status: type: object organization: $ref: '#/components/schemas/Organization' payment_method: $ref: '#/components/schemas/Href' ssh_keys: items: $ref: '#/components/schemas/Href' type: array updated_at: format: date-time type: string volumes: items: $ref: '#/components/schemas/Href' type: array type: $ref: '#/components/schemas/Project_type' tags: items: type: string type: array type: object VrfUpdateInput: example: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true ip_ranges: - ip_ranges - ip_ranges local_asn: 0 name: name bgp_dynamic_neighbors_enabled: true description: description tags: - tags - tags properties: bgp_dynamic_neighbors_enabled: description: Toggle to enable the dynamic bgp neighbors feature on the VRF type: boolean bgp_dynamic_neighbors_export_route_map: description: Toggle to export the VRF route-map to the dynamic bgp neighbors type: boolean bgp_dynamic_neighbors_bfd_enabled: description: Toggle BFD on dynamic bgp neighbors sessions type: boolean description: type: string ip_ranges: description: A list of CIDR network addresses. Like ["10.0.0.0/16", "2001:d78::/56"]. IPv4 blocks must be between /8 and /29 in size. IPv6 blocks must be between /56 and /64. A VRF\'s IP ranges must be defined in order to create VRF IP Reservations, which can then be used for Metal Gateways or Virtual Circuits. Adding a new CIDR address to the list will result in the creation of a new IP Range for this VRF. Removal of an existing CIDR address from the list will result in the deletion of an existing IP Range for this VRF. Deleting an IP Range will result in the deletion of any VRF IP Reservations contained within the IP Range, as well as the VRF IP Reservation\'s associated Metal Gateways or Virtual Circuits. If you do not wish to add or remove IP Ranges, either include the full existing list of IP Ranges in the update request, or do not specify the `ip_ranges` field in the update request. Specifying a value of `[]` will remove all existing IP Ranges from the VRF. items: type: string type: array local_asn: description: The new `local_asn` value for the VRF. This field cannot be updated when there are active Interconnection Virtual Circuits associated to the VRF, or if any of the VLANs of the VRF's metal gateway has been assigned on an instance. format: int32 type: integer name: type: string tags: items: type: string type: array type: object Coordinates: example: latitude: latitude longitude: longitude properties: latitude: type: string longitude: type: string type: object VrfCreateInput: example: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true ip_ranges: - ip_ranges - ip_ranges local_asn: 0 metro: metro name: name bgp_dynamic_neighbors_enabled: true description: description tags: - tags - tags properties: bgp_dynamic_neighbors_enabled: description: Toggle to enable the dynamic bgp neighbors feature on the VRF type: boolean bgp_dynamic_neighbors_export_route_map: description: Toggle to export the VRF route-map to the dynamic bgp neighbors type: boolean bgp_dynamic_neighbors_bfd_enabled: description: Toggle BFD on dynamic bgp neighbors sessions type: boolean description: type: string ip_ranges: description: A list of CIDR network addresses. Like ["10.0.0.0/16", "2001:d78::/56"]. IPv4 blocks must be between /8 and /29 in size. IPv6 blocks must be between /56 and /64. A VRF\'s IP ranges must be defined in order to create VRF IP Reservations, which can then be used for Metal Gateways or Virtual Circuits. items: type: string type: array local_asn: format: int32 type: integer metro: description: The UUID (or metro code) for the Metro in which to create this VRF. type: string name: type: string tags: items: type: string type: array required: - metro - name type: object VirtualNetwork: example: vxlan: 4 instances: - href: href - href: href description: description created_at: 2000-01-23 04:56:07+00:00 assigned_to_virtual_circuit: true tags: - tags - tags metal_gateways: - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null metro_code: metro_code metro: href: href href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 facility: href: href assigned_to: href: href properties: assigned_to: $ref: '#/components/schemas/Href' assigned_to_virtual_circuit: description: True if the virtual network is attached to a virtual circuit. False if not. type: boolean description: type: string facility: $ref: '#/components/schemas/Href' href: type: string created_at: format: date-time type: string id: format: uuid type: string instances: description: A list of instances with ports currently associated to this Virtual Network. items: $ref: '#/components/schemas/Href' type: array metal_gateways: description: A list of metal gateways currently associated to this Virtual Network. items: $ref: '#/components/schemas/MetalGatewayLite' type: array metro: $ref: '#/components/schemas/Href' metro_code: description: The Metro code of the metro in which this Virtual Network is defined. type: string vxlan: type: integer tags: items: type: string type: array type: object User: example: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email properties: avatar_thumb_url: type: string avatar_url: type: string created_at: format: date-time type: string customdata: type: object default_organization_id: format: uuid type: string default_project_id: format: uuid type: string email: type: string emails: items: $ref: '#/components/schemas/Href' type: array first_name: type: string fraud_score: type: string full_name: type: string href: type: string id: format: uuid type: string last_login_at: format: date-time type: string last_name: type: string max_organizations: type: integer max_projects: type: integer phone_number: type: string short_id: type: string timezone: type: string two_factor_auth: type: string updated_at: format: date-time type: string type: object VrfIpReservationList: example: ip_addresses: - address: address created_at: 2000-01-23 04:56:07+00:00 project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href bill: true project_lite: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href vrf: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href type: null created_by: href: href network: network tags: - tags - tags manageable: true metal_gateway: gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null address_family: 0 public: true netmask: netmask management: true metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 cidr: 6 details: details href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: state customdata: '{}' gateway: gateway - address: address created_at: 2000-01-23 04:56:07+00:00 project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href bill: true project_lite: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href vrf: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href type: null created_by: href: href network: network tags: - tags - tags manageable: true metal_gateway: gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null address_family: 0 public: true netmask: netmask management: true metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 cidr: 6 details: details href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: state customdata: '{}' gateway: gateway properties: ip_addresses: items: $ref: '#/components/schemas/VrfIpReservation' type: array type: object BgpDynamicNeighbor: example: metal_gateway: virtual_network: vxlan: 4 instances: - href: href - href: href description: description created_at: 2000-01-23 04:56:07+00:00 assigned_to_virtual_circuit: true tags: - tags - tags metal_gateways: - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null metro_code: metro_code metro: href: href href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 facility: href: href assigned_to: href: href updated_at: 2000-01-23 04:56:07+00:00 ip_reservation: address: address created_at: 2000-01-23 04:56:07+00:00 project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href bill: true project_lite: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href vrf: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href type: null created_by: href: href network: network tags: - tags - tags manageable: true metal_gateway: gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null address_family: 0 public: true netmask: netmask management: true metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 cidr: 6 details: details href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: state customdata: '{}' gateway: gateway created_at: 2000-01-23 04:56:07+00:00 project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null vrf: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href created_by: href: href bgp_neighbor_asn: 12345 updated_at: 2000-01-23 04:56:07+00:00 created_at: 2000-01-23 04:56:07+00:00 id: aea82f16-57ec-412c-9523-b7f2b27635b2 bgp_neighbor_range: 192.168.1.0/25 state: null href: /bgp-dynamic-neighbors/aea82f16-57ec-412c-9523-b7f2b27635b2 created_by: avatar_thumb_url: avatar_thumb_url full_name: full_name avatar_url: avatar_url href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 tags: - tags - tags properties: id: description: The unique identifier for the resource example: aea82f16-57ec-412c-9523-b7f2b27635b2 format: uuid readOnly: true type: string bgp_neighbor_asn: description: The ASN of the dynamic BGP neighbor example: 12345 type: integer bgp_neighbor_range: description: Network range of the dynamic BGP neighbor in CIDR format example: 192.168.1.0/25 type: string metal_gateway: $ref: '#/components/schemas/VrfMetalGateway' state: $ref: '#/components/schemas/BgpDynamicNeighbor_state' href: example: /bgp-dynamic-neighbors/aea82f16-57ec-412c-9523-b7f2b27635b2 readOnly: true type: string created_at: format: date-time readOnly: true type: string created_by: $ref: '#/components/schemas/UserLimited' updated_at: format: date-time readOnly: true type: string tags: items: type: string type: array type: object Metro: example: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 properties: code: type: string country: type: string id: format: uuid type: string name: type: string type: object VrfRoute_status: description: The status of the route. Potential values are "pending", "active", "deleting", and "error", representing various lifecycle states of the route and whether or not it has been successfully configured on the network enum: - pending - active - deleting - error example: active readOnly: true type: string MetalGatewayLite: example: gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null properties: created_at: format: date-time type: string gateway_address: description: The gateway address with subnet CIDR value for this Metal Gateway. For example, a Metal Gateway using an IP reservation with block 10.1.2.0/27 would have a gateway address of 10.1.2.1/27. example: 10.1.2.1/27 type: string href: type: string id: format: uuid type: string state: $ref: '#/components/schemas/MetalGateway_state' updated_at: format: date-time type: string vlan: description: The VLAN id of the Virtual Network record associated to this Metal Gateway. example: 1001 type: integer type: object VrfList: example: vrfs: - bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href - bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href properties: vrfs: items: $ref: '#/components/schemas/Vrf' type: array type: object Error: description: Error responses are included with 4xx and 5xx HTTP responses from the API service. Either "error" or "errors" will be set. properties: error: description: A description of the error that caused the request to fail. type: string errors: description: A list of errors that contributed to the request failing. items: description: An error message that contributed to the request failing. type: string type: array type: object MetalGateway_state: description: The current state of the Metal Gateway. 'Ready' indicates the gateway record has been configured, but is currently not active on the network. 'Active' indicates the gateway has been configured on the network. 'Deleting' is a temporary state used to indicate that the gateway is in the process of being un-configured from the network, after which the gateway record will be deleted. enum: - ready - active - deleting type: string BgpDynamicNeighborList: example: meta: next: href: href total: 0 last: href: href previous: href: href last_page: 1 self: href: href first: href: href current_page: 6 bgp_dynamic_neighbors: - metal_gateway: virtual_network: vxlan: 4 instances: - href: href - href: href description: description created_at: 2000-01-23 04:56:07+00:00 assigned_to_virtual_circuit: true tags: - tags - tags metal_gateways: - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null metro_code: metro_code metro: href: href href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 facility: href: href assigned_to: href: href updated_at: 2000-01-23 04:56:07+00:00 ip_reservation: address: address created_at: 2000-01-23 04:56:07+00:00 project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href bill: true project_lite: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href vrf: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href type: null created_by: href: href network: network tags: - tags - tags manageable: true metal_gateway: gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null address_family: 0 public: true netmask: netmask management: true metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 cidr: 6 details: details href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: state customdata: '{}' gateway: gateway created_at: 2000-01-23 04:56:07+00:00 project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null vrf: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href created_by: href: href bgp_neighbor_asn: 12345 updated_at: 2000-01-23 04:56:07+00:00 created_at: 2000-01-23 04:56:07+00:00 id: aea82f16-57ec-412c-9523-b7f2b27635b2 bgp_neighbor_range: 192.168.1.0/25 state: null href: /bgp-dynamic-neighbors/aea82f16-57ec-412c-9523-b7f2b27635b2 created_by: avatar_thumb_url: avatar_thumb_url full_name: full_name avatar_url: avatar_url href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 tags: - tags - tags - metal_gateway: virtual_network: vxlan: 4 instances: - href: href - href: href description: description created_at: 2000-01-23 04:56:07+00:00 assigned_to_virtual_circuit: true tags: - tags - tags metal_gateways: - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null - gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null metro_code: metro_code metro: href: href href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 facility: href: href assigned_to: href: href updated_at: 2000-01-23 04:56:07+00:00 ip_reservation: address: address created_at: 2000-01-23 04:56:07+00:00 project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href bill: true project_lite: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href vrf: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href type: null created_by: href: href network: network tags: - tags - tags manageable: true metal_gateway: gateway_address: 10.1.2.1/27 updated_at: 2000-01-23 04:56:07+00:00 vlan: 1001 created_at: 2000-01-23 04:56:07+00:00 href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null address_family: 0 public: true netmask: netmask management: true metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 cidr: 6 details: details href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: state customdata: '{}' gateway: gateway created_at: 2000-01-23 04:56:07+00:00 project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 state: null vrf: bgp_dynamic_neighbors_export_route_map: true bgp_dynamic_neighbors_bfd_enabled: true local_asn: 5 description: description bill: false bgp_dynamic_neighbors_enabled: true project: devices: - href: href - href: href volumes: - href: href - href: href created_at: 2000-01-23 04:56:07+00:00 type: null memberships: - href: href - href: href bgp_config: href: href tags: - tags - tags max_devices: '{}' ssh_keys: - href: href - href: href updated_at: 2000-01-23 04:56:07+00:00 invitations: - href: href - href: href members: - href: href - href: href organization: website: website address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code projects: - href: href - href: href credit_amount: 1.4658129 created_at: 2000-01-23 04:56:07+00:00 description: description billing_address: country: country address: address address2: address2 city: city coordinates: latitude: latitude longitude: longitude state: state zip_code: zip_code memberships: - href: href - href: href enforce_2fa_at: 2000-01-23 04:56:07+00:00 twitter: twitter updated_at: 2000-01-23 04:56:07+00:00 terms: 5 members: - href: href - href: href name: name logo: logo customdata: '{}' id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name network_status: '{}' customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 payment_method: href: href created_at: 2000-01-23 04:56:07+00:00 created_by: avatar_thumb_url: avatar_thumb_url last_login_at: 2000-01-23 04:56:07+00:00 max_projects: 2 timezone: timezone default_project_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 created_at: 2000-01-23 04:56:07+00:00 last_name: last_name short_id: short_id fraud_score: fraud_score emails: - href: href - href: href default_organization_id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 full_name: full_name avatar_url: avatar_url updated_at: 2000-01-23 04:56:07+00:00 phone_number: phone_number customdata: '{}' href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 first_name: first_name max_organizations: 3 two_factor_auth: two_factor_auth email: email tags: - tags - tags updated_at: 2000-01-23 04:56:07+00:00 virtual_circuits: - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null - subnet: 12.0.0.0/30 customer_ip: 12.0.0.2 description: description project: href: href created_at: 2000-01-23 04:56:07+00:00 vrf: null type: null metal_ip: 12.0.0.1 speed: 9 tags: - tags - tags nni_vlan: 2 updated_at: 2000-01-23 04:56:07+00:00 port: href: href name: name peer_asn: 7 id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 md5: md5 status: null ip_ranges: - ip_ranges - ip_ranges metro: country: country code: code name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 name: name id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 href: href created_by: href: href bgp_neighbor_asn: 12345 updated_at: 2000-01-23 04:56:07+00:00 created_at: 2000-01-23 04:56:07+00:00 id: aea82f16-57ec-412c-9523-b7f2b27635b2 bgp_neighbor_range: 192.168.1.0/25 state: null href: /bgp-dynamic-neighbors/aea82f16-57ec-412c-9523-b7f2b27635b2 created_by: avatar_thumb_url: avatar_thumb_url full_name: full_name avatar_url: avatar_url href: href id: 046b6c7f-0b8a-43b9-b35d-6489e6daee91 tags: - tags - tags properties: bgp_dynamic_neighbors: items: $ref: '#/components/schemas/BgpDynamicNeighbor' type: array meta: $ref: '#/components/schemas/Meta' type: object Href: example: href: href properties: href: type: string required: - href type: object x-eqx-api-linter-skip-rules: - 3 - 38